1 /*- 2 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 3 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 4 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are met: 8 * 9 * a) Redistributions of source code must retain the above copyright notice, 10 * this list of conditions and the following disclaimer. 11 * 12 * b) Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the distribution. 15 * 16 * c) Neither the name of Cisco Systems, Inc. nor the names of its 17 * contributors may be used to endorse or promote products derived 18 * from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 22 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30 * THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include <netinet/sctp_os.h> 37 #include <sys/proc.h> 38 #include <netinet/sctp_var.h> 39 #include <netinet/sctp_sysctl.h> 40 #include <netinet/sctp_header.h> 41 #include <netinet/sctp_pcb.h> 42 #include <netinet/sctputil.h> 43 #include <netinet/sctp_output.h> 44 #include <netinet/sctp_uio.h> 45 #include <netinet/sctputil.h> 46 #include <netinet/sctp_auth.h> 47 #include <netinet/sctp_timer.h> 48 #include <netinet/sctp_asconf.h> 49 #include <netinet/sctp_indata.h> 50 #include <netinet/sctp_bsd_addr.h> 51 #include <netinet/sctp_input.h> 52 #include <netinet/sctp_crc32.h> 53 #include <netinet/udp.h> 54 #include <netinet/udp_var.h> 55 #include <machine/in_cksum.h> 56 57 58 59 #define SCTP_MAX_GAPS_INARRAY 4 60 struct sack_track { 61 uint8_t right_edge; /* mergable on the right edge */ 62 uint8_t left_edge; /* mergable on the left edge */ 63 uint8_t num_entries; 64 uint8_t spare; 65 struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY]; 66 }; 67 68 struct sack_track sack_array[256] = { 69 {0, 0, 0, 0, /* 0x00 */ 70 {{0, 0}, 71 {0, 0}, 72 {0, 0}, 73 {0, 0} 74 } 75 }, 76 {1, 0, 1, 0, /* 0x01 */ 77 {{0, 0}, 78 {0, 0}, 79 {0, 0}, 80 {0, 0} 81 } 82 }, 83 {0, 0, 1, 0, /* 0x02 */ 84 {{1, 1}, 85 {0, 0}, 86 {0, 0}, 87 {0, 0} 88 } 89 }, 90 {1, 0, 1, 0, /* 0x03 */ 91 {{0, 1}, 92 {0, 0}, 93 {0, 0}, 94 {0, 0} 95 } 96 }, 97 {0, 0, 1, 0, /* 0x04 */ 98 {{2, 2}, 99 {0, 0}, 100 {0, 0}, 101 {0, 0} 102 } 103 }, 104 {1, 0, 2, 0, /* 0x05 */ 105 {{0, 0}, 106 {2, 2}, 107 {0, 0}, 108 {0, 0} 109 } 110 }, 111 {0, 0, 1, 0, /* 0x06 */ 112 {{1, 2}, 113 {0, 0}, 114 {0, 0}, 115 {0, 0} 116 } 117 }, 118 {1, 0, 1, 0, /* 0x07 */ 119 {{0, 2}, 120 {0, 0}, 121 {0, 0}, 122 {0, 0} 123 } 124 }, 125 {0, 0, 1, 0, /* 0x08 */ 126 {{3, 3}, 127 {0, 0}, 128 {0, 0}, 129 {0, 0} 130 } 131 }, 132 {1, 0, 2, 0, /* 0x09 */ 133 {{0, 0}, 134 {3, 3}, 135 {0, 0}, 136 {0, 0} 137 } 138 }, 139 {0, 0, 2, 0, /* 0x0a */ 140 {{1, 1}, 141 {3, 3}, 142 {0, 0}, 143 {0, 0} 144 } 145 }, 146 {1, 0, 2, 0, /* 0x0b */ 147 {{0, 1}, 148 {3, 3}, 149 {0, 0}, 150 {0, 0} 151 } 152 }, 153 {0, 0, 1, 0, /* 0x0c */ 154 {{2, 3}, 155 {0, 0}, 156 {0, 0}, 157 {0, 0} 158 } 159 }, 160 {1, 0, 2, 0, /* 0x0d */ 161 {{0, 0}, 162 {2, 3}, 163 {0, 0}, 164 {0, 0} 165 } 166 }, 167 {0, 0, 1, 0, /* 0x0e */ 168 {{1, 3}, 169 {0, 0}, 170 {0, 0}, 171 {0, 0} 172 } 173 }, 174 {1, 0, 1, 0, /* 0x0f */ 175 {{0, 3}, 176 {0, 0}, 177 {0, 0}, 178 {0, 0} 179 } 180 }, 181 {0, 0, 1, 0, /* 0x10 */ 182 {{4, 4}, 183 {0, 0}, 184 {0, 0}, 185 {0, 0} 186 } 187 }, 188 {1, 0, 2, 0, /* 0x11 */ 189 {{0, 0}, 190 {4, 4}, 191 {0, 0}, 192 {0, 0} 193 } 194 }, 195 {0, 0, 2, 0, /* 0x12 */ 196 {{1, 1}, 197 {4, 4}, 198 {0, 0}, 199 {0, 0} 200 } 201 }, 202 {1, 0, 2, 0, /* 0x13 */ 203 {{0, 1}, 204 {4, 4}, 205 {0, 0}, 206 {0, 0} 207 } 208 }, 209 {0, 0, 2, 0, /* 0x14 */ 210 {{2, 2}, 211 {4, 4}, 212 {0, 0}, 213 {0, 0} 214 } 215 }, 216 {1, 0, 3, 0, /* 0x15 */ 217 {{0, 0}, 218 {2, 2}, 219 {4, 4}, 220 {0, 0} 221 } 222 }, 223 {0, 0, 2, 0, /* 0x16 */ 224 {{1, 2}, 225 {4, 4}, 226 {0, 0}, 227 {0, 0} 228 } 229 }, 230 {1, 0, 2, 0, /* 0x17 */ 231 {{0, 2}, 232 {4, 4}, 233 {0, 0}, 234 {0, 0} 235 } 236 }, 237 {0, 0, 1, 0, /* 0x18 */ 238 {{3, 4}, 239 {0, 0}, 240 {0, 0}, 241 {0, 0} 242 } 243 }, 244 {1, 0, 2, 0, /* 0x19 */ 245 {{0, 0}, 246 {3, 4}, 247 {0, 0}, 248 {0, 0} 249 } 250 }, 251 {0, 0, 2, 0, /* 0x1a */ 252 {{1, 1}, 253 {3, 4}, 254 {0, 0}, 255 {0, 0} 256 } 257 }, 258 {1, 0, 2, 0, /* 0x1b */ 259 {{0, 1}, 260 {3, 4}, 261 {0, 0}, 262 {0, 0} 263 } 264 }, 265 {0, 0, 1, 0, /* 0x1c */ 266 {{2, 4}, 267 {0, 0}, 268 {0, 0}, 269 {0, 0} 270 } 271 }, 272 {1, 0, 2, 0, /* 0x1d */ 273 {{0, 0}, 274 {2, 4}, 275 {0, 0}, 276 {0, 0} 277 } 278 }, 279 {0, 0, 1, 0, /* 0x1e */ 280 {{1, 4}, 281 {0, 0}, 282 {0, 0}, 283 {0, 0} 284 } 285 }, 286 {1, 0, 1, 0, /* 0x1f */ 287 {{0, 4}, 288 {0, 0}, 289 {0, 0}, 290 {0, 0} 291 } 292 }, 293 {0, 0, 1, 0, /* 0x20 */ 294 {{5, 5}, 295 {0, 0}, 296 {0, 0}, 297 {0, 0} 298 } 299 }, 300 {1, 0, 2, 0, /* 0x21 */ 301 {{0, 0}, 302 {5, 5}, 303 {0, 0}, 304 {0, 0} 305 } 306 }, 307 {0, 0, 2, 0, /* 0x22 */ 308 {{1, 1}, 309 {5, 5}, 310 {0, 0}, 311 {0, 0} 312 } 313 }, 314 {1, 0, 2, 0, /* 0x23 */ 315 {{0, 1}, 316 {5, 5}, 317 {0, 0}, 318 {0, 0} 319 } 320 }, 321 {0, 0, 2, 0, /* 0x24 */ 322 {{2, 2}, 323 {5, 5}, 324 {0, 0}, 325 {0, 0} 326 } 327 }, 328 {1, 0, 3, 0, /* 0x25 */ 329 {{0, 0}, 330 {2, 2}, 331 {5, 5}, 332 {0, 0} 333 } 334 }, 335 {0, 0, 2, 0, /* 0x26 */ 336 {{1, 2}, 337 {5, 5}, 338 {0, 0}, 339 {0, 0} 340 } 341 }, 342 {1, 0, 2, 0, /* 0x27 */ 343 {{0, 2}, 344 {5, 5}, 345 {0, 0}, 346 {0, 0} 347 } 348 }, 349 {0, 0, 2, 0, /* 0x28 */ 350 {{3, 3}, 351 {5, 5}, 352 {0, 0}, 353 {0, 0} 354 } 355 }, 356 {1, 0, 3, 0, /* 0x29 */ 357 {{0, 0}, 358 {3, 3}, 359 {5, 5}, 360 {0, 0} 361 } 362 }, 363 {0, 0, 3, 0, /* 0x2a */ 364 {{1, 1}, 365 {3, 3}, 366 {5, 5}, 367 {0, 0} 368 } 369 }, 370 {1, 0, 3, 0, /* 0x2b */ 371 {{0, 1}, 372 {3, 3}, 373 {5, 5}, 374 {0, 0} 375 } 376 }, 377 {0, 0, 2, 0, /* 0x2c */ 378 {{2, 3}, 379 {5, 5}, 380 {0, 0}, 381 {0, 0} 382 } 383 }, 384 {1, 0, 3, 0, /* 0x2d */ 385 {{0, 0}, 386 {2, 3}, 387 {5, 5}, 388 {0, 0} 389 } 390 }, 391 {0, 0, 2, 0, /* 0x2e */ 392 {{1, 3}, 393 {5, 5}, 394 {0, 0}, 395 {0, 0} 396 } 397 }, 398 {1, 0, 2, 0, /* 0x2f */ 399 {{0, 3}, 400 {5, 5}, 401 {0, 0}, 402 {0, 0} 403 } 404 }, 405 {0, 0, 1, 0, /* 0x30 */ 406 {{4, 5}, 407 {0, 0}, 408 {0, 0}, 409 {0, 0} 410 } 411 }, 412 {1, 0, 2, 0, /* 0x31 */ 413 {{0, 0}, 414 {4, 5}, 415 {0, 0}, 416 {0, 0} 417 } 418 }, 419 {0, 0, 2, 0, /* 0x32 */ 420 {{1, 1}, 421 {4, 5}, 422 {0, 0}, 423 {0, 0} 424 } 425 }, 426 {1, 0, 2, 0, /* 0x33 */ 427 {{0, 1}, 428 {4, 5}, 429 {0, 0}, 430 {0, 0} 431 } 432 }, 433 {0, 0, 2, 0, /* 0x34 */ 434 {{2, 2}, 435 {4, 5}, 436 {0, 0}, 437 {0, 0} 438 } 439 }, 440 {1, 0, 3, 0, /* 0x35 */ 441 {{0, 0}, 442 {2, 2}, 443 {4, 5}, 444 {0, 0} 445 } 446 }, 447 {0, 0, 2, 0, /* 0x36 */ 448 {{1, 2}, 449 {4, 5}, 450 {0, 0}, 451 {0, 0} 452 } 453 }, 454 {1, 0, 2, 0, /* 0x37 */ 455 {{0, 2}, 456 {4, 5}, 457 {0, 0}, 458 {0, 0} 459 } 460 }, 461 {0, 0, 1, 0, /* 0x38 */ 462 {{3, 5}, 463 {0, 0}, 464 {0, 0}, 465 {0, 0} 466 } 467 }, 468 {1, 0, 2, 0, /* 0x39 */ 469 {{0, 0}, 470 {3, 5}, 471 {0, 0}, 472 {0, 0} 473 } 474 }, 475 {0, 0, 2, 0, /* 0x3a */ 476 {{1, 1}, 477 {3, 5}, 478 {0, 0}, 479 {0, 0} 480 } 481 }, 482 {1, 0, 2, 0, /* 0x3b */ 483 {{0, 1}, 484 {3, 5}, 485 {0, 0}, 486 {0, 0} 487 } 488 }, 489 {0, 0, 1, 0, /* 0x3c */ 490 {{2, 5}, 491 {0, 0}, 492 {0, 0}, 493 {0, 0} 494 } 495 }, 496 {1, 0, 2, 0, /* 0x3d */ 497 {{0, 0}, 498 {2, 5}, 499 {0, 0}, 500 {0, 0} 501 } 502 }, 503 {0, 0, 1, 0, /* 0x3e */ 504 {{1, 5}, 505 {0, 0}, 506 {0, 0}, 507 {0, 0} 508 } 509 }, 510 {1, 0, 1, 0, /* 0x3f */ 511 {{0, 5}, 512 {0, 0}, 513 {0, 0}, 514 {0, 0} 515 } 516 }, 517 {0, 0, 1, 0, /* 0x40 */ 518 {{6, 6}, 519 {0, 0}, 520 {0, 0}, 521 {0, 0} 522 } 523 }, 524 {1, 0, 2, 0, /* 0x41 */ 525 {{0, 0}, 526 {6, 6}, 527 {0, 0}, 528 {0, 0} 529 } 530 }, 531 {0, 0, 2, 0, /* 0x42 */ 532 {{1, 1}, 533 {6, 6}, 534 {0, 0}, 535 {0, 0} 536 } 537 }, 538 {1, 0, 2, 0, /* 0x43 */ 539 {{0, 1}, 540 {6, 6}, 541 {0, 0}, 542 {0, 0} 543 } 544 }, 545 {0, 0, 2, 0, /* 0x44 */ 546 {{2, 2}, 547 {6, 6}, 548 {0, 0}, 549 {0, 0} 550 } 551 }, 552 {1, 0, 3, 0, /* 0x45 */ 553 {{0, 0}, 554 {2, 2}, 555 {6, 6}, 556 {0, 0} 557 } 558 }, 559 {0, 0, 2, 0, /* 0x46 */ 560 {{1, 2}, 561 {6, 6}, 562 {0, 0}, 563 {0, 0} 564 } 565 }, 566 {1, 0, 2, 0, /* 0x47 */ 567 {{0, 2}, 568 {6, 6}, 569 {0, 0}, 570 {0, 0} 571 } 572 }, 573 {0, 0, 2, 0, /* 0x48 */ 574 {{3, 3}, 575 {6, 6}, 576 {0, 0}, 577 {0, 0} 578 } 579 }, 580 {1, 0, 3, 0, /* 0x49 */ 581 {{0, 0}, 582 {3, 3}, 583 {6, 6}, 584 {0, 0} 585 } 586 }, 587 {0, 0, 3, 0, /* 0x4a */ 588 {{1, 1}, 589 {3, 3}, 590 {6, 6}, 591 {0, 0} 592 } 593 }, 594 {1, 0, 3, 0, /* 0x4b */ 595 {{0, 1}, 596 {3, 3}, 597 {6, 6}, 598 {0, 0} 599 } 600 }, 601 {0, 0, 2, 0, /* 0x4c */ 602 {{2, 3}, 603 {6, 6}, 604 {0, 0}, 605 {0, 0} 606 } 607 }, 608 {1, 0, 3, 0, /* 0x4d */ 609 {{0, 0}, 610 {2, 3}, 611 {6, 6}, 612 {0, 0} 613 } 614 }, 615 {0, 0, 2, 0, /* 0x4e */ 616 {{1, 3}, 617 {6, 6}, 618 {0, 0}, 619 {0, 0} 620 } 621 }, 622 {1, 0, 2, 0, /* 0x4f */ 623 {{0, 3}, 624 {6, 6}, 625 {0, 0}, 626 {0, 0} 627 } 628 }, 629 {0, 0, 2, 0, /* 0x50 */ 630 {{4, 4}, 631 {6, 6}, 632 {0, 0}, 633 {0, 0} 634 } 635 }, 636 {1, 0, 3, 0, /* 0x51 */ 637 {{0, 0}, 638 {4, 4}, 639 {6, 6}, 640 {0, 0} 641 } 642 }, 643 {0, 0, 3, 0, /* 0x52 */ 644 {{1, 1}, 645 {4, 4}, 646 {6, 6}, 647 {0, 0} 648 } 649 }, 650 {1, 0, 3, 0, /* 0x53 */ 651 {{0, 1}, 652 {4, 4}, 653 {6, 6}, 654 {0, 0} 655 } 656 }, 657 {0, 0, 3, 0, /* 0x54 */ 658 {{2, 2}, 659 {4, 4}, 660 {6, 6}, 661 {0, 0} 662 } 663 }, 664 {1, 0, 4, 0, /* 0x55 */ 665 {{0, 0}, 666 {2, 2}, 667 {4, 4}, 668 {6, 6} 669 } 670 }, 671 {0, 0, 3, 0, /* 0x56 */ 672 {{1, 2}, 673 {4, 4}, 674 {6, 6}, 675 {0, 0} 676 } 677 }, 678 {1, 0, 3, 0, /* 0x57 */ 679 {{0, 2}, 680 {4, 4}, 681 {6, 6}, 682 {0, 0} 683 } 684 }, 685 {0, 0, 2, 0, /* 0x58 */ 686 {{3, 4}, 687 {6, 6}, 688 {0, 0}, 689 {0, 0} 690 } 691 }, 692 {1, 0, 3, 0, /* 0x59 */ 693 {{0, 0}, 694 {3, 4}, 695 {6, 6}, 696 {0, 0} 697 } 698 }, 699 {0, 0, 3, 0, /* 0x5a */ 700 {{1, 1}, 701 {3, 4}, 702 {6, 6}, 703 {0, 0} 704 } 705 }, 706 {1, 0, 3, 0, /* 0x5b */ 707 {{0, 1}, 708 {3, 4}, 709 {6, 6}, 710 {0, 0} 711 } 712 }, 713 {0, 0, 2, 0, /* 0x5c */ 714 {{2, 4}, 715 {6, 6}, 716 {0, 0}, 717 {0, 0} 718 } 719 }, 720 {1, 0, 3, 0, /* 0x5d */ 721 {{0, 0}, 722 {2, 4}, 723 {6, 6}, 724 {0, 0} 725 } 726 }, 727 {0, 0, 2, 0, /* 0x5e */ 728 {{1, 4}, 729 {6, 6}, 730 {0, 0}, 731 {0, 0} 732 } 733 }, 734 {1, 0, 2, 0, /* 0x5f */ 735 {{0, 4}, 736 {6, 6}, 737 {0, 0}, 738 {0, 0} 739 } 740 }, 741 {0, 0, 1, 0, /* 0x60 */ 742 {{5, 6}, 743 {0, 0}, 744 {0, 0}, 745 {0, 0} 746 } 747 }, 748 {1, 0, 2, 0, /* 0x61 */ 749 {{0, 0}, 750 {5, 6}, 751 {0, 0}, 752 {0, 0} 753 } 754 }, 755 {0, 0, 2, 0, /* 0x62 */ 756 {{1, 1}, 757 {5, 6}, 758 {0, 0}, 759 {0, 0} 760 } 761 }, 762 {1, 0, 2, 0, /* 0x63 */ 763 {{0, 1}, 764 {5, 6}, 765 {0, 0}, 766 {0, 0} 767 } 768 }, 769 {0, 0, 2, 0, /* 0x64 */ 770 {{2, 2}, 771 {5, 6}, 772 {0, 0}, 773 {0, 0} 774 } 775 }, 776 {1, 0, 3, 0, /* 0x65 */ 777 {{0, 0}, 778 {2, 2}, 779 {5, 6}, 780 {0, 0} 781 } 782 }, 783 {0, 0, 2, 0, /* 0x66 */ 784 {{1, 2}, 785 {5, 6}, 786 {0, 0}, 787 {0, 0} 788 } 789 }, 790 {1, 0, 2, 0, /* 0x67 */ 791 {{0, 2}, 792 {5, 6}, 793 {0, 0}, 794 {0, 0} 795 } 796 }, 797 {0, 0, 2, 0, /* 0x68 */ 798 {{3, 3}, 799 {5, 6}, 800 {0, 0}, 801 {0, 0} 802 } 803 }, 804 {1, 0, 3, 0, /* 0x69 */ 805 {{0, 0}, 806 {3, 3}, 807 {5, 6}, 808 {0, 0} 809 } 810 }, 811 {0, 0, 3, 0, /* 0x6a */ 812 {{1, 1}, 813 {3, 3}, 814 {5, 6}, 815 {0, 0} 816 } 817 }, 818 {1, 0, 3, 0, /* 0x6b */ 819 {{0, 1}, 820 {3, 3}, 821 {5, 6}, 822 {0, 0} 823 } 824 }, 825 {0, 0, 2, 0, /* 0x6c */ 826 {{2, 3}, 827 {5, 6}, 828 {0, 0}, 829 {0, 0} 830 } 831 }, 832 {1, 0, 3, 0, /* 0x6d */ 833 {{0, 0}, 834 {2, 3}, 835 {5, 6}, 836 {0, 0} 837 } 838 }, 839 {0, 0, 2, 0, /* 0x6e */ 840 {{1, 3}, 841 {5, 6}, 842 {0, 0}, 843 {0, 0} 844 } 845 }, 846 {1, 0, 2, 0, /* 0x6f */ 847 {{0, 3}, 848 {5, 6}, 849 {0, 0}, 850 {0, 0} 851 } 852 }, 853 {0, 0, 1, 0, /* 0x70 */ 854 {{4, 6}, 855 {0, 0}, 856 {0, 0}, 857 {0, 0} 858 } 859 }, 860 {1, 0, 2, 0, /* 0x71 */ 861 {{0, 0}, 862 {4, 6}, 863 {0, 0}, 864 {0, 0} 865 } 866 }, 867 {0, 0, 2, 0, /* 0x72 */ 868 {{1, 1}, 869 {4, 6}, 870 {0, 0}, 871 {0, 0} 872 } 873 }, 874 {1, 0, 2, 0, /* 0x73 */ 875 {{0, 1}, 876 {4, 6}, 877 {0, 0}, 878 {0, 0} 879 } 880 }, 881 {0, 0, 2, 0, /* 0x74 */ 882 {{2, 2}, 883 {4, 6}, 884 {0, 0}, 885 {0, 0} 886 } 887 }, 888 {1, 0, 3, 0, /* 0x75 */ 889 {{0, 0}, 890 {2, 2}, 891 {4, 6}, 892 {0, 0} 893 } 894 }, 895 {0, 0, 2, 0, /* 0x76 */ 896 {{1, 2}, 897 {4, 6}, 898 {0, 0}, 899 {0, 0} 900 } 901 }, 902 {1, 0, 2, 0, /* 0x77 */ 903 {{0, 2}, 904 {4, 6}, 905 {0, 0}, 906 {0, 0} 907 } 908 }, 909 {0, 0, 1, 0, /* 0x78 */ 910 {{3, 6}, 911 {0, 0}, 912 {0, 0}, 913 {0, 0} 914 } 915 }, 916 {1, 0, 2, 0, /* 0x79 */ 917 {{0, 0}, 918 {3, 6}, 919 {0, 0}, 920 {0, 0} 921 } 922 }, 923 {0, 0, 2, 0, /* 0x7a */ 924 {{1, 1}, 925 {3, 6}, 926 {0, 0}, 927 {0, 0} 928 } 929 }, 930 {1, 0, 2, 0, /* 0x7b */ 931 {{0, 1}, 932 {3, 6}, 933 {0, 0}, 934 {0, 0} 935 } 936 }, 937 {0, 0, 1, 0, /* 0x7c */ 938 {{2, 6}, 939 {0, 0}, 940 {0, 0}, 941 {0, 0} 942 } 943 }, 944 {1, 0, 2, 0, /* 0x7d */ 945 {{0, 0}, 946 {2, 6}, 947 {0, 0}, 948 {0, 0} 949 } 950 }, 951 {0, 0, 1, 0, /* 0x7e */ 952 {{1, 6}, 953 {0, 0}, 954 {0, 0}, 955 {0, 0} 956 } 957 }, 958 {1, 0, 1, 0, /* 0x7f */ 959 {{0, 6}, 960 {0, 0}, 961 {0, 0}, 962 {0, 0} 963 } 964 }, 965 {0, 1, 1, 0, /* 0x80 */ 966 {{7, 7}, 967 {0, 0}, 968 {0, 0}, 969 {0, 0} 970 } 971 }, 972 {1, 1, 2, 0, /* 0x81 */ 973 {{0, 0}, 974 {7, 7}, 975 {0, 0}, 976 {0, 0} 977 } 978 }, 979 {0, 1, 2, 0, /* 0x82 */ 980 {{1, 1}, 981 {7, 7}, 982 {0, 0}, 983 {0, 0} 984 } 985 }, 986 {1, 1, 2, 0, /* 0x83 */ 987 {{0, 1}, 988 {7, 7}, 989 {0, 0}, 990 {0, 0} 991 } 992 }, 993 {0, 1, 2, 0, /* 0x84 */ 994 {{2, 2}, 995 {7, 7}, 996 {0, 0}, 997 {0, 0} 998 } 999 }, 1000 {1, 1, 3, 0, /* 0x85 */ 1001 {{0, 0}, 1002 {2, 2}, 1003 {7, 7}, 1004 {0, 0} 1005 } 1006 }, 1007 {0, 1, 2, 0, /* 0x86 */ 1008 {{1, 2}, 1009 {7, 7}, 1010 {0, 0}, 1011 {0, 0} 1012 } 1013 }, 1014 {1, 1, 2, 0, /* 0x87 */ 1015 {{0, 2}, 1016 {7, 7}, 1017 {0, 0}, 1018 {0, 0} 1019 } 1020 }, 1021 {0, 1, 2, 0, /* 0x88 */ 1022 {{3, 3}, 1023 {7, 7}, 1024 {0, 0}, 1025 {0, 0} 1026 } 1027 }, 1028 {1, 1, 3, 0, /* 0x89 */ 1029 {{0, 0}, 1030 {3, 3}, 1031 {7, 7}, 1032 {0, 0} 1033 } 1034 }, 1035 {0, 1, 3, 0, /* 0x8a */ 1036 {{1, 1}, 1037 {3, 3}, 1038 {7, 7}, 1039 {0, 0} 1040 } 1041 }, 1042 {1, 1, 3, 0, /* 0x8b */ 1043 {{0, 1}, 1044 {3, 3}, 1045 {7, 7}, 1046 {0, 0} 1047 } 1048 }, 1049 {0, 1, 2, 0, /* 0x8c */ 1050 {{2, 3}, 1051 {7, 7}, 1052 {0, 0}, 1053 {0, 0} 1054 } 1055 }, 1056 {1, 1, 3, 0, /* 0x8d */ 1057 {{0, 0}, 1058 {2, 3}, 1059 {7, 7}, 1060 {0, 0} 1061 } 1062 }, 1063 {0, 1, 2, 0, /* 0x8e */ 1064 {{1, 3}, 1065 {7, 7}, 1066 {0, 0}, 1067 {0, 0} 1068 } 1069 }, 1070 {1, 1, 2, 0, /* 0x8f */ 1071 {{0, 3}, 1072 {7, 7}, 1073 {0, 0}, 1074 {0, 0} 1075 } 1076 }, 1077 {0, 1, 2, 0, /* 0x90 */ 1078 {{4, 4}, 1079 {7, 7}, 1080 {0, 0}, 1081 {0, 0} 1082 } 1083 }, 1084 {1, 1, 3, 0, /* 0x91 */ 1085 {{0, 0}, 1086 {4, 4}, 1087 {7, 7}, 1088 {0, 0} 1089 } 1090 }, 1091 {0, 1, 3, 0, /* 0x92 */ 1092 {{1, 1}, 1093 {4, 4}, 1094 {7, 7}, 1095 {0, 0} 1096 } 1097 }, 1098 {1, 1, 3, 0, /* 0x93 */ 1099 {{0, 1}, 1100 {4, 4}, 1101 {7, 7}, 1102 {0, 0} 1103 } 1104 }, 1105 {0, 1, 3, 0, /* 0x94 */ 1106 {{2, 2}, 1107 {4, 4}, 1108 {7, 7}, 1109 {0, 0} 1110 } 1111 }, 1112 {1, 1, 4, 0, /* 0x95 */ 1113 {{0, 0}, 1114 {2, 2}, 1115 {4, 4}, 1116 {7, 7} 1117 } 1118 }, 1119 {0, 1, 3, 0, /* 0x96 */ 1120 {{1, 2}, 1121 {4, 4}, 1122 {7, 7}, 1123 {0, 0} 1124 } 1125 }, 1126 {1, 1, 3, 0, /* 0x97 */ 1127 {{0, 2}, 1128 {4, 4}, 1129 {7, 7}, 1130 {0, 0} 1131 } 1132 }, 1133 {0, 1, 2, 0, /* 0x98 */ 1134 {{3, 4}, 1135 {7, 7}, 1136 {0, 0}, 1137 {0, 0} 1138 } 1139 }, 1140 {1, 1, 3, 0, /* 0x99 */ 1141 {{0, 0}, 1142 {3, 4}, 1143 {7, 7}, 1144 {0, 0} 1145 } 1146 }, 1147 {0, 1, 3, 0, /* 0x9a */ 1148 {{1, 1}, 1149 {3, 4}, 1150 {7, 7}, 1151 {0, 0} 1152 } 1153 }, 1154 {1, 1, 3, 0, /* 0x9b */ 1155 {{0, 1}, 1156 {3, 4}, 1157 {7, 7}, 1158 {0, 0} 1159 } 1160 }, 1161 {0, 1, 2, 0, /* 0x9c */ 1162 {{2, 4}, 1163 {7, 7}, 1164 {0, 0}, 1165 {0, 0} 1166 } 1167 }, 1168 {1, 1, 3, 0, /* 0x9d */ 1169 {{0, 0}, 1170 {2, 4}, 1171 {7, 7}, 1172 {0, 0} 1173 } 1174 }, 1175 {0, 1, 2, 0, /* 0x9e */ 1176 {{1, 4}, 1177 {7, 7}, 1178 {0, 0}, 1179 {0, 0} 1180 } 1181 }, 1182 {1, 1, 2, 0, /* 0x9f */ 1183 {{0, 4}, 1184 {7, 7}, 1185 {0, 0}, 1186 {0, 0} 1187 } 1188 }, 1189 {0, 1, 2, 0, /* 0xa0 */ 1190 {{5, 5}, 1191 {7, 7}, 1192 {0, 0}, 1193 {0, 0} 1194 } 1195 }, 1196 {1, 1, 3, 0, /* 0xa1 */ 1197 {{0, 0}, 1198 {5, 5}, 1199 {7, 7}, 1200 {0, 0} 1201 } 1202 }, 1203 {0, 1, 3, 0, /* 0xa2 */ 1204 {{1, 1}, 1205 {5, 5}, 1206 {7, 7}, 1207 {0, 0} 1208 } 1209 }, 1210 {1, 1, 3, 0, /* 0xa3 */ 1211 {{0, 1}, 1212 {5, 5}, 1213 {7, 7}, 1214 {0, 0} 1215 } 1216 }, 1217 {0, 1, 3, 0, /* 0xa4 */ 1218 {{2, 2}, 1219 {5, 5}, 1220 {7, 7}, 1221 {0, 0} 1222 } 1223 }, 1224 {1, 1, 4, 0, /* 0xa5 */ 1225 {{0, 0}, 1226 {2, 2}, 1227 {5, 5}, 1228 {7, 7} 1229 } 1230 }, 1231 {0, 1, 3, 0, /* 0xa6 */ 1232 {{1, 2}, 1233 {5, 5}, 1234 {7, 7}, 1235 {0, 0} 1236 } 1237 }, 1238 {1, 1, 3, 0, /* 0xa7 */ 1239 {{0, 2}, 1240 {5, 5}, 1241 {7, 7}, 1242 {0, 0} 1243 } 1244 }, 1245 {0, 1, 3, 0, /* 0xa8 */ 1246 {{3, 3}, 1247 {5, 5}, 1248 {7, 7}, 1249 {0, 0} 1250 } 1251 }, 1252 {1, 1, 4, 0, /* 0xa9 */ 1253 {{0, 0}, 1254 {3, 3}, 1255 {5, 5}, 1256 {7, 7} 1257 } 1258 }, 1259 {0, 1, 4, 0, /* 0xaa */ 1260 {{1, 1}, 1261 {3, 3}, 1262 {5, 5}, 1263 {7, 7} 1264 } 1265 }, 1266 {1, 1, 4, 0, /* 0xab */ 1267 {{0, 1}, 1268 {3, 3}, 1269 {5, 5}, 1270 {7, 7} 1271 } 1272 }, 1273 {0, 1, 3, 0, /* 0xac */ 1274 {{2, 3}, 1275 {5, 5}, 1276 {7, 7}, 1277 {0, 0} 1278 } 1279 }, 1280 {1, 1, 4, 0, /* 0xad */ 1281 {{0, 0}, 1282 {2, 3}, 1283 {5, 5}, 1284 {7, 7} 1285 } 1286 }, 1287 {0, 1, 3, 0, /* 0xae */ 1288 {{1, 3}, 1289 {5, 5}, 1290 {7, 7}, 1291 {0, 0} 1292 } 1293 }, 1294 {1, 1, 3, 0, /* 0xaf */ 1295 {{0, 3}, 1296 {5, 5}, 1297 {7, 7}, 1298 {0, 0} 1299 } 1300 }, 1301 {0, 1, 2, 0, /* 0xb0 */ 1302 {{4, 5}, 1303 {7, 7}, 1304 {0, 0}, 1305 {0, 0} 1306 } 1307 }, 1308 {1, 1, 3, 0, /* 0xb1 */ 1309 {{0, 0}, 1310 {4, 5}, 1311 {7, 7}, 1312 {0, 0} 1313 } 1314 }, 1315 {0, 1, 3, 0, /* 0xb2 */ 1316 {{1, 1}, 1317 {4, 5}, 1318 {7, 7}, 1319 {0, 0} 1320 } 1321 }, 1322 {1, 1, 3, 0, /* 0xb3 */ 1323 {{0, 1}, 1324 {4, 5}, 1325 {7, 7}, 1326 {0, 0} 1327 } 1328 }, 1329 {0, 1, 3, 0, /* 0xb4 */ 1330 {{2, 2}, 1331 {4, 5}, 1332 {7, 7}, 1333 {0, 0} 1334 } 1335 }, 1336 {1, 1, 4, 0, /* 0xb5 */ 1337 {{0, 0}, 1338 {2, 2}, 1339 {4, 5}, 1340 {7, 7} 1341 } 1342 }, 1343 {0, 1, 3, 0, /* 0xb6 */ 1344 {{1, 2}, 1345 {4, 5}, 1346 {7, 7}, 1347 {0, 0} 1348 } 1349 }, 1350 {1, 1, 3, 0, /* 0xb7 */ 1351 {{0, 2}, 1352 {4, 5}, 1353 {7, 7}, 1354 {0, 0} 1355 } 1356 }, 1357 {0, 1, 2, 0, /* 0xb8 */ 1358 {{3, 5}, 1359 {7, 7}, 1360 {0, 0}, 1361 {0, 0} 1362 } 1363 }, 1364 {1, 1, 3, 0, /* 0xb9 */ 1365 {{0, 0}, 1366 {3, 5}, 1367 {7, 7}, 1368 {0, 0} 1369 } 1370 }, 1371 {0, 1, 3, 0, /* 0xba */ 1372 {{1, 1}, 1373 {3, 5}, 1374 {7, 7}, 1375 {0, 0} 1376 } 1377 }, 1378 {1, 1, 3, 0, /* 0xbb */ 1379 {{0, 1}, 1380 {3, 5}, 1381 {7, 7}, 1382 {0, 0} 1383 } 1384 }, 1385 {0, 1, 2, 0, /* 0xbc */ 1386 {{2, 5}, 1387 {7, 7}, 1388 {0, 0}, 1389 {0, 0} 1390 } 1391 }, 1392 {1, 1, 3, 0, /* 0xbd */ 1393 {{0, 0}, 1394 {2, 5}, 1395 {7, 7}, 1396 {0, 0} 1397 } 1398 }, 1399 {0, 1, 2, 0, /* 0xbe */ 1400 {{1, 5}, 1401 {7, 7}, 1402 {0, 0}, 1403 {0, 0} 1404 } 1405 }, 1406 {1, 1, 2, 0, /* 0xbf */ 1407 {{0, 5}, 1408 {7, 7}, 1409 {0, 0}, 1410 {0, 0} 1411 } 1412 }, 1413 {0, 1, 1, 0, /* 0xc0 */ 1414 {{6, 7}, 1415 {0, 0}, 1416 {0, 0}, 1417 {0, 0} 1418 } 1419 }, 1420 {1, 1, 2, 0, /* 0xc1 */ 1421 {{0, 0}, 1422 {6, 7}, 1423 {0, 0}, 1424 {0, 0} 1425 } 1426 }, 1427 {0, 1, 2, 0, /* 0xc2 */ 1428 {{1, 1}, 1429 {6, 7}, 1430 {0, 0}, 1431 {0, 0} 1432 } 1433 }, 1434 {1, 1, 2, 0, /* 0xc3 */ 1435 {{0, 1}, 1436 {6, 7}, 1437 {0, 0}, 1438 {0, 0} 1439 } 1440 }, 1441 {0, 1, 2, 0, /* 0xc4 */ 1442 {{2, 2}, 1443 {6, 7}, 1444 {0, 0}, 1445 {0, 0} 1446 } 1447 }, 1448 {1, 1, 3, 0, /* 0xc5 */ 1449 {{0, 0}, 1450 {2, 2}, 1451 {6, 7}, 1452 {0, 0} 1453 } 1454 }, 1455 {0, 1, 2, 0, /* 0xc6 */ 1456 {{1, 2}, 1457 {6, 7}, 1458 {0, 0}, 1459 {0, 0} 1460 } 1461 }, 1462 {1, 1, 2, 0, /* 0xc7 */ 1463 {{0, 2}, 1464 {6, 7}, 1465 {0, 0}, 1466 {0, 0} 1467 } 1468 }, 1469 {0, 1, 2, 0, /* 0xc8 */ 1470 {{3, 3}, 1471 {6, 7}, 1472 {0, 0}, 1473 {0, 0} 1474 } 1475 }, 1476 {1, 1, 3, 0, /* 0xc9 */ 1477 {{0, 0}, 1478 {3, 3}, 1479 {6, 7}, 1480 {0, 0} 1481 } 1482 }, 1483 {0, 1, 3, 0, /* 0xca */ 1484 {{1, 1}, 1485 {3, 3}, 1486 {6, 7}, 1487 {0, 0} 1488 } 1489 }, 1490 {1, 1, 3, 0, /* 0xcb */ 1491 {{0, 1}, 1492 {3, 3}, 1493 {6, 7}, 1494 {0, 0} 1495 } 1496 }, 1497 {0, 1, 2, 0, /* 0xcc */ 1498 {{2, 3}, 1499 {6, 7}, 1500 {0, 0}, 1501 {0, 0} 1502 } 1503 }, 1504 {1, 1, 3, 0, /* 0xcd */ 1505 {{0, 0}, 1506 {2, 3}, 1507 {6, 7}, 1508 {0, 0} 1509 } 1510 }, 1511 {0, 1, 2, 0, /* 0xce */ 1512 {{1, 3}, 1513 {6, 7}, 1514 {0, 0}, 1515 {0, 0} 1516 } 1517 }, 1518 {1, 1, 2, 0, /* 0xcf */ 1519 {{0, 3}, 1520 {6, 7}, 1521 {0, 0}, 1522 {0, 0} 1523 } 1524 }, 1525 {0, 1, 2, 0, /* 0xd0 */ 1526 {{4, 4}, 1527 {6, 7}, 1528 {0, 0}, 1529 {0, 0} 1530 } 1531 }, 1532 {1, 1, 3, 0, /* 0xd1 */ 1533 {{0, 0}, 1534 {4, 4}, 1535 {6, 7}, 1536 {0, 0} 1537 } 1538 }, 1539 {0, 1, 3, 0, /* 0xd2 */ 1540 {{1, 1}, 1541 {4, 4}, 1542 {6, 7}, 1543 {0, 0} 1544 } 1545 }, 1546 {1, 1, 3, 0, /* 0xd3 */ 1547 {{0, 1}, 1548 {4, 4}, 1549 {6, 7}, 1550 {0, 0} 1551 } 1552 }, 1553 {0, 1, 3, 0, /* 0xd4 */ 1554 {{2, 2}, 1555 {4, 4}, 1556 {6, 7}, 1557 {0, 0} 1558 } 1559 }, 1560 {1, 1, 4, 0, /* 0xd5 */ 1561 {{0, 0}, 1562 {2, 2}, 1563 {4, 4}, 1564 {6, 7} 1565 } 1566 }, 1567 {0, 1, 3, 0, /* 0xd6 */ 1568 {{1, 2}, 1569 {4, 4}, 1570 {6, 7}, 1571 {0, 0} 1572 } 1573 }, 1574 {1, 1, 3, 0, /* 0xd7 */ 1575 {{0, 2}, 1576 {4, 4}, 1577 {6, 7}, 1578 {0, 0} 1579 } 1580 }, 1581 {0, 1, 2, 0, /* 0xd8 */ 1582 {{3, 4}, 1583 {6, 7}, 1584 {0, 0}, 1585 {0, 0} 1586 } 1587 }, 1588 {1, 1, 3, 0, /* 0xd9 */ 1589 {{0, 0}, 1590 {3, 4}, 1591 {6, 7}, 1592 {0, 0} 1593 } 1594 }, 1595 {0, 1, 3, 0, /* 0xda */ 1596 {{1, 1}, 1597 {3, 4}, 1598 {6, 7}, 1599 {0, 0} 1600 } 1601 }, 1602 {1, 1, 3, 0, /* 0xdb */ 1603 {{0, 1}, 1604 {3, 4}, 1605 {6, 7}, 1606 {0, 0} 1607 } 1608 }, 1609 {0, 1, 2, 0, /* 0xdc */ 1610 {{2, 4}, 1611 {6, 7}, 1612 {0, 0}, 1613 {0, 0} 1614 } 1615 }, 1616 {1, 1, 3, 0, /* 0xdd */ 1617 {{0, 0}, 1618 {2, 4}, 1619 {6, 7}, 1620 {0, 0} 1621 } 1622 }, 1623 {0, 1, 2, 0, /* 0xde */ 1624 {{1, 4}, 1625 {6, 7}, 1626 {0, 0}, 1627 {0, 0} 1628 } 1629 }, 1630 {1, 1, 2, 0, /* 0xdf */ 1631 {{0, 4}, 1632 {6, 7}, 1633 {0, 0}, 1634 {0, 0} 1635 } 1636 }, 1637 {0, 1, 1, 0, /* 0xe0 */ 1638 {{5, 7}, 1639 {0, 0}, 1640 {0, 0}, 1641 {0, 0} 1642 } 1643 }, 1644 {1, 1, 2, 0, /* 0xe1 */ 1645 {{0, 0}, 1646 {5, 7}, 1647 {0, 0}, 1648 {0, 0} 1649 } 1650 }, 1651 {0, 1, 2, 0, /* 0xe2 */ 1652 {{1, 1}, 1653 {5, 7}, 1654 {0, 0}, 1655 {0, 0} 1656 } 1657 }, 1658 {1, 1, 2, 0, /* 0xe3 */ 1659 {{0, 1}, 1660 {5, 7}, 1661 {0, 0}, 1662 {0, 0} 1663 } 1664 }, 1665 {0, 1, 2, 0, /* 0xe4 */ 1666 {{2, 2}, 1667 {5, 7}, 1668 {0, 0}, 1669 {0, 0} 1670 } 1671 }, 1672 {1, 1, 3, 0, /* 0xe5 */ 1673 {{0, 0}, 1674 {2, 2}, 1675 {5, 7}, 1676 {0, 0} 1677 } 1678 }, 1679 {0, 1, 2, 0, /* 0xe6 */ 1680 {{1, 2}, 1681 {5, 7}, 1682 {0, 0}, 1683 {0, 0} 1684 } 1685 }, 1686 {1, 1, 2, 0, /* 0xe7 */ 1687 {{0, 2}, 1688 {5, 7}, 1689 {0, 0}, 1690 {0, 0} 1691 } 1692 }, 1693 {0, 1, 2, 0, /* 0xe8 */ 1694 {{3, 3}, 1695 {5, 7}, 1696 {0, 0}, 1697 {0, 0} 1698 } 1699 }, 1700 {1, 1, 3, 0, /* 0xe9 */ 1701 {{0, 0}, 1702 {3, 3}, 1703 {5, 7}, 1704 {0, 0} 1705 } 1706 }, 1707 {0, 1, 3, 0, /* 0xea */ 1708 {{1, 1}, 1709 {3, 3}, 1710 {5, 7}, 1711 {0, 0} 1712 } 1713 }, 1714 {1, 1, 3, 0, /* 0xeb */ 1715 {{0, 1}, 1716 {3, 3}, 1717 {5, 7}, 1718 {0, 0} 1719 } 1720 }, 1721 {0, 1, 2, 0, /* 0xec */ 1722 {{2, 3}, 1723 {5, 7}, 1724 {0, 0}, 1725 {0, 0} 1726 } 1727 }, 1728 {1, 1, 3, 0, /* 0xed */ 1729 {{0, 0}, 1730 {2, 3}, 1731 {5, 7}, 1732 {0, 0} 1733 } 1734 }, 1735 {0, 1, 2, 0, /* 0xee */ 1736 {{1, 3}, 1737 {5, 7}, 1738 {0, 0}, 1739 {0, 0} 1740 } 1741 }, 1742 {1, 1, 2, 0, /* 0xef */ 1743 {{0, 3}, 1744 {5, 7}, 1745 {0, 0}, 1746 {0, 0} 1747 } 1748 }, 1749 {0, 1, 1, 0, /* 0xf0 */ 1750 {{4, 7}, 1751 {0, 0}, 1752 {0, 0}, 1753 {0, 0} 1754 } 1755 }, 1756 {1, 1, 2, 0, /* 0xf1 */ 1757 {{0, 0}, 1758 {4, 7}, 1759 {0, 0}, 1760 {0, 0} 1761 } 1762 }, 1763 {0, 1, 2, 0, /* 0xf2 */ 1764 {{1, 1}, 1765 {4, 7}, 1766 {0, 0}, 1767 {0, 0} 1768 } 1769 }, 1770 {1, 1, 2, 0, /* 0xf3 */ 1771 {{0, 1}, 1772 {4, 7}, 1773 {0, 0}, 1774 {0, 0} 1775 } 1776 }, 1777 {0, 1, 2, 0, /* 0xf4 */ 1778 {{2, 2}, 1779 {4, 7}, 1780 {0, 0}, 1781 {0, 0} 1782 } 1783 }, 1784 {1, 1, 3, 0, /* 0xf5 */ 1785 {{0, 0}, 1786 {2, 2}, 1787 {4, 7}, 1788 {0, 0} 1789 } 1790 }, 1791 {0, 1, 2, 0, /* 0xf6 */ 1792 {{1, 2}, 1793 {4, 7}, 1794 {0, 0}, 1795 {0, 0} 1796 } 1797 }, 1798 {1, 1, 2, 0, /* 0xf7 */ 1799 {{0, 2}, 1800 {4, 7}, 1801 {0, 0}, 1802 {0, 0} 1803 } 1804 }, 1805 {0, 1, 1, 0, /* 0xf8 */ 1806 {{3, 7}, 1807 {0, 0}, 1808 {0, 0}, 1809 {0, 0} 1810 } 1811 }, 1812 {1, 1, 2, 0, /* 0xf9 */ 1813 {{0, 0}, 1814 {3, 7}, 1815 {0, 0}, 1816 {0, 0} 1817 } 1818 }, 1819 {0, 1, 2, 0, /* 0xfa */ 1820 {{1, 1}, 1821 {3, 7}, 1822 {0, 0}, 1823 {0, 0} 1824 } 1825 }, 1826 {1, 1, 2, 0, /* 0xfb */ 1827 {{0, 1}, 1828 {3, 7}, 1829 {0, 0}, 1830 {0, 0} 1831 } 1832 }, 1833 {0, 1, 1, 0, /* 0xfc */ 1834 {{2, 7}, 1835 {0, 0}, 1836 {0, 0}, 1837 {0, 0} 1838 } 1839 }, 1840 {1, 1, 2, 0, /* 0xfd */ 1841 {{0, 0}, 1842 {2, 7}, 1843 {0, 0}, 1844 {0, 0} 1845 } 1846 }, 1847 {0, 1, 1, 0, /* 0xfe */ 1848 {{1, 7}, 1849 {0, 0}, 1850 {0, 0}, 1851 {0, 0} 1852 } 1853 }, 1854 {1, 1, 1, 0, /* 0xff */ 1855 {{0, 7}, 1856 {0, 0}, 1857 {0, 0}, 1858 {0, 0} 1859 } 1860 } 1861 }; 1862 1863 1864 int 1865 sctp_is_address_in_scope(struct sctp_ifa *ifa, 1866 struct sctp_scoping *scope, 1867 int do_update) 1868 { 1869 if ((scope->loopback_scope == 0) && 1870 (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) { 1871 /* 1872 * skip loopback if not in scope * 1873 */ 1874 return (0); 1875 } 1876 switch (ifa->address.sa.sa_family) { 1877 #ifdef INET 1878 case AF_INET: 1879 if (scope->ipv4_addr_legal) { 1880 struct sockaddr_in *sin; 1881 1882 sin = (struct sockaddr_in *)&ifa->address.sin; 1883 if (sin->sin_addr.s_addr == 0) { 1884 /* not in scope , unspecified */ 1885 return (0); 1886 } 1887 if ((scope->ipv4_local_scope == 0) && 1888 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1889 /* private address not in scope */ 1890 return (0); 1891 } 1892 } else { 1893 return (0); 1894 } 1895 break; 1896 #endif 1897 #ifdef INET6 1898 case AF_INET6: 1899 if (scope->ipv6_addr_legal) { 1900 struct sockaddr_in6 *sin6; 1901 1902 /* 1903 * Must update the flags, bummer, which means any 1904 * IFA locks must now be applied HERE <-> 1905 */ 1906 if (do_update) { 1907 sctp_gather_internal_ifa_flags(ifa); 1908 } 1909 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 1910 return (0); 1911 } 1912 /* ok to use deprecated addresses? */ 1913 sin6 = (struct sockaddr_in6 *)&ifa->address.sin6; 1914 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1915 /* skip unspecifed addresses */ 1916 return (0); 1917 } 1918 if ( /* (local_scope == 0) && */ 1919 (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) { 1920 return (0); 1921 } 1922 if ((scope->site_scope == 0) && 1923 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1924 return (0); 1925 } 1926 } else { 1927 return (0); 1928 } 1929 break; 1930 #endif 1931 default: 1932 return (0); 1933 } 1934 return (1); 1935 } 1936 1937 static struct mbuf * 1938 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t * len) 1939 { 1940 #if defined(INET) || defined(INET6) 1941 struct sctp_paramhdr *parmh; 1942 struct mbuf *mret; 1943 uint16_t plen; 1944 1945 #endif 1946 1947 switch (ifa->address.sa.sa_family) { 1948 #ifdef INET 1949 case AF_INET: 1950 plen = (uint16_t) sizeof(struct sctp_ipv4addr_param); 1951 break; 1952 #endif 1953 #ifdef INET6 1954 case AF_INET6: 1955 plen = (uint16_t) sizeof(struct sctp_ipv6addr_param); 1956 break; 1957 #endif 1958 default: 1959 return (m); 1960 } 1961 #if defined(INET) || defined(INET6) 1962 if (M_TRAILINGSPACE(m) >= plen) { 1963 /* easy side we just drop it on the end */ 1964 parmh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m))); 1965 mret = m; 1966 } else { 1967 /* Need more space */ 1968 mret = m; 1969 while (SCTP_BUF_NEXT(mret) != NULL) { 1970 mret = SCTP_BUF_NEXT(mret); 1971 } 1972 SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA); 1973 if (SCTP_BUF_NEXT(mret) == NULL) { 1974 /* We are hosed, can't add more addresses */ 1975 return (m); 1976 } 1977 mret = SCTP_BUF_NEXT(mret); 1978 parmh = mtod(mret, struct sctp_paramhdr *); 1979 } 1980 /* now add the parameter */ 1981 switch (ifa->address.sa.sa_family) { 1982 #ifdef INET 1983 case AF_INET: 1984 { 1985 struct sctp_ipv4addr_param *ipv4p; 1986 struct sockaddr_in *sin; 1987 1988 sin = (struct sockaddr_in *)&ifa->address.sin; 1989 ipv4p = (struct sctp_ipv4addr_param *)parmh; 1990 parmh->param_type = htons(SCTP_IPV4_ADDRESS); 1991 parmh->param_length = htons(plen); 1992 ipv4p->addr = sin->sin_addr.s_addr; 1993 SCTP_BUF_LEN(mret) += plen; 1994 break; 1995 } 1996 #endif 1997 #ifdef INET6 1998 case AF_INET6: 1999 { 2000 struct sctp_ipv6addr_param *ipv6p; 2001 struct sockaddr_in6 *sin6; 2002 2003 sin6 = (struct sockaddr_in6 *)&ifa->address.sin6; 2004 ipv6p = (struct sctp_ipv6addr_param *)parmh; 2005 parmh->param_type = htons(SCTP_IPV6_ADDRESS); 2006 parmh->param_length = htons(plen); 2007 memcpy(ipv6p->addr, &sin6->sin6_addr, 2008 sizeof(ipv6p->addr)); 2009 /* clear embedded scope in the address */ 2010 in6_clearscope((struct in6_addr *)ipv6p->addr); 2011 SCTP_BUF_LEN(mret) += plen; 2012 break; 2013 } 2014 #endif 2015 default: 2016 return (m); 2017 } 2018 if (len != NULL) { 2019 *len += plen; 2020 } 2021 return (mret); 2022 #endif 2023 } 2024 2025 2026 struct mbuf * 2027 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 2028 struct sctp_scoping *scope, 2029 struct mbuf *m_at, int cnt_inits_to, 2030 uint16_t * padding_len, uint16_t * chunk_len) 2031 { 2032 struct sctp_vrf *vrf = NULL; 2033 int cnt, limit_out = 0, total_count; 2034 uint32_t vrf_id; 2035 2036 vrf_id = inp->def_vrf_id; 2037 SCTP_IPI_ADDR_RLOCK(); 2038 vrf = sctp_find_vrf(vrf_id); 2039 if (vrf == NULL) { 2040 SCTP_IPI_ADDR_RUNLOCK(); 2041 return (m_at); 2042 } 2043 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 2044 struct sctp_ifa *sctp_ifap; 2045 struct sctp_ifn *sctp_ifnp; 2046 2047 cnt = cnt_inits_to; 2048 if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) { 2049 limit_out = 1; 2050 cnt = SCTP_ADDRESS_LIMIT; 2051 goto skip_count; 2052 } 2053 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2054 if ((scope->loopback_scope == 0) && 2055 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2056 /* 2057 * Skip loopback devices if loopback_scope 2058 * not set 2059 */ 2060 continue; 2061 } 2062 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2063 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2064 continue; 2065 } 2066 if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) { 2067 continue; 2068 } 2069 cnt++; 2070 if (cnt > SCTP_ADDRESS_LIMIT) { 2071 break; 2072 } 2073 } 2074 if (cnt > SCTP_ADDRESS_LIMIT) { 2075 break; 2076 } 2077 } 2078 skip_count: 2079 if (cnt > 1) { 2080 total_count = 0; 2081 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2082 cnt = 0; 2083 if ((scope->loopback_scope == 0) && 2084 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2085 /* 2086 * Skip loopback devices if 2087 * loopback_scope not set 2088 */ 2089 continue; 2090 } 2091 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2092 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2093 continue; 2094 } 2095 if (sctp_is_address_in_scope(sctp_ifap, 2096 scope, 0) == 0) { 2097 continue; 2098 } 2099 if ((chunk_len != NULL) && 2100 (padding_len != NULL) && 2101 (*padding_len > 0)) { 2102 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2103 SCTP_BUF_LEN(m_at) += *padding_len; 2104 *chunk_len += *padding_len; 2105 *padding_len = 0; 2106 } 2107 m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len); 2108 if (limit_out) { 2109 cnt++; 2110 total_count++; 2111 if (cnt >= 2) { 2112 /* 2113 * two from each 2114 * address 2115 */ 2116 break; 2117 } 2118 if (total_count > SCTP_ADDRESS_LIMIT) { 2119 /* No more addresses */ 2120 break; 2121 } 2122 } 2123 } 2124 } 2125 } 2126 } else { 2127 struct sctp_laddr *laddr; 2128 2129 cnt = cnt_inits_to; 2130 /* First, how many ? */ 2131 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2132 if (laddr->ifa == NULL) { 2133 continue; 2134 } 2135 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) 2136 /* 2137 * Address being deleted by the system, dont 2138 * list. 2139 */ 2140 continue; 2141 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2142 /* 2143 * Address being deleted on this ep don't 2144 * list. 2145 */ 2146 continue; 2147 } 2148 if (sctp_is_address_in_scope(laddr->ifa, 2149 scope, 1) == 0) { 2150 continue; 2151 } 2152 cnt++; 2153 } 2154 /* 2155 * To get through a NAT we only list addresses if we have 2156 * more than one. That way if you just bind a single address 2157 * we let the source of the init dictate our address. 2158 */ 2159 if (cnt > 1) { 2160 cnt = cnt_inits_to; 2161 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2162 if (laddr->ifa == NULL) { 2163 continue; 2164 } 2165 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) { 2166 continue; 2167 } 2168 if (sctp_is_address_in_scope(laddr->ifa, 2169 scope, 0) == 0) { 2170 continue; 2171 } 2172 if ((chunk_len != NULL) && 2173 (padding_len != NULL) && 2174 (*padding_len > 0)) { 2175 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2176 SCTP_BUF_LEN(m_at) += *padding_len; 2177 *chunk_len += *padding_len; 2178 *padding_len = 0; 2179 } 2180 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len); 2181 cnt++; 2182 if (cnt >= SCTP_ADDRESS_LIMIT) { 2183 break; 2184 } 2185 } 2186 } 2187 } 2188 SCTP_IPI_ADDR_RUNLOCK(); 2189 return (m_at); 2190 } 2191 2192 static struct sctp_ifa * 2193 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa, 2194 uint8_t dest_is_loop, 2195 uint8_t dest_is_priv, 2196 sa_family_t fam) 2197 { 2198 uint8_t dest_is_global = 0; 2199 2200 /* dest_is_priv is true if destination is a private address */ 2201 /* dest_is_loop is true if destination is a loopback addresses */ 2202 2203 /** 2204 * Here we determine if its a preferred address. A preferred address 2205 * means it is the same scope or higher scope then the destination. 2206 * L = loopback, P = private, G = global 2207 * ----------------------------------------- 2208 * src | dest | result 2209 * ---------------------------------------- 2210 * L | L | yes 2211 * ----------------------------------------- 2212 * P | L | yes-v4 no-v6 2213 * ----------------------------------------- 2214 * G | L | yes-v4 no-v6 2215 * ----------------------------------------- 2216 * L | P | no 2217 * ----------------------------------------- 2218 * P | P | yes 2219 * ----------------------------------------- 2220 * G | P | no 2221 * ----------------------------------------- 2222 * L | G | no 2223 * ----------------------------------------- 2224 * P | G | no 2225 * ----------------------------------------- 2226 * G | G | yes 2227 * ----------------------------------------- 2228 */ 2229 2230 if (ifa->address.sa.sa_family != fam) { 2231 /* forget mis-matched family */ 2232 return (NULL); 2233 } 2234 if ((dest_is_priv == 0) && (dest_is_loop == 0)) { 2235 dest_is_global = 1; 2236 } 2237 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:"); 2238 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa); 2239 /* Ok the address may be ok */ 2240 #ifdef INET6 2241 if (fam == AF_INET6) { 2242 /* ok to use deprecated addresses? no lets not! */ 2243 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2244 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n"); 2245 return (NULL); 2246 } 2247 if (ifa->src_is_priv && !ifa->src_is_loop) { 2248 if (dest_is_loop) { 2249 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n"); 2250 return (NULL); 2251 } 2252 } 2253 if (ifa->src_is_glob) { 2254 if (dest_is_loop) { 2255 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n"); 2256 return (NULL); 2257 } 2258 } 2259 } 2260 #endif 2261 /* 2262 * Now that we know what is what, implement or table this could in 2263 * theory be done slicker (it used to be), but this is 2264 * straightforward and easier to validate :-) 2265 */ 2266 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n", 2267 ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob); 2268 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n", 2269 dest_is_loop, dest_is_priv, dest_is_global); 2270 2271 if ((ifa->src_is_loop) && (dest_is_priv)) { 2272 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n"); 2273 return (NULL); 2274 } 2275 if ((ifa->src_is_glob) && (dest_is_priv)) { 2276 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n"); 2277 return (NULL); 2278 } 2279 if ((ifa->src_is_loop) && (dest_is_global)) { 2280 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n"); 2281 return (NULL); 2282 } 2283 if ((ifa->src_is_priv) && (dest_is_global)) { 2284 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n"); 2285 return (NULL); 2286 } 2287 SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n"); 2288 /* its a preferred address */ 2289 return (ifa); 2290 } 2291 2292 static struct sctp_ifa * 2293 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, 2294 uint8_t dest_is_loop, 2295 uint8_t dest_is_priv, 2296 sa_family_t fam) 2297 { 2298 uint8_t dest_is_global = 0; 2299 2300 /** 2301 * Here we determine if its a acceptable address. A acceptable 2302 * address means it is the same scope or higher scope but we can 2303 * allow for NAT which means its ok to have a global dest and a 2304 * private src. 2305 * 2306 * L = loopback, P = private, G = global 2307 * ----------------------------------------- 2308 * src | dest | result 2309 * ----------------------------------------- 2310 * L | L | yes 2311 * ----------------------------------------- 2312 * P | L | yes-v4 no-v6 2313 * ----------------------------------------- 2314 * G | L | yes 2315 * ----------------------------------------- 2316 * L | P | no 2317 * ----------------------------------------- 2318 * P | P | yes 2319 * ----------------------------------------- 2320 * G | P | yes - May not work 2321 * ----------------------------------------- 2322 * L | G | no 2323 * ----------------------------------------- 2324 * P | G | yes - May not work 2325 * ----------------------------------------- 2326 * G | G | yes 2327 * ----------------------------------------- 2328 */ 2329 2330 if (ifa->address.sa.sa_family != fam) { 2331 /* forget non matching family */ 2332 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n", 2333 ifa->address.sa.sa_family, fam); 2334 return (NULL); 2335 } 2336 /* Ok the address may be ok */ 2337 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa); 2338 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n", 2339 dest_is_loop, dest_is_priv); 2340 if ((dest_is_loop == 0) && (dest_is_priv == 0)) { 2341 dest_is_global = 1; 2342 } 2343 #ifdef INET6 2344 if (fam == AF_INET6) { 2345 /* ok to use deprecated addresses? */ 2346 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2347 return (NULL); 2348 } 2349 if (ifa->src_is_priv) { 2350 /* Special case, linklocal to loop */ 2351 if (dest_is_loop) 2352 return (NULL); 2353 } 2354 } 2355 #endif 2356 /* 2357 * Now that we know what is what, implement our table. This could in 2358 * theory be done slicker (it used to be), but this is 2359 * straightforward and easier to validate :-) 2360 */ 2361 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n", 2362 ifa->src_is_loop, 2363 dest_is_priv); 2364 if ((ifa->src_is_loop == 1) && (dest_is_priv)) { 2365 return (NULL); 2366 } 2367 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n", 2368 ifa->src_is_loop, 2369 dest_is_global); 2370 if ((ifa->src_is_loop == 1) && (dest_is_global)) { 2371 return (NULL); 2372 } 2373 SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n"); 2374 /* its an acceptable address */ 2375 return (ifa); 2376 } 2377 2378 int 2379 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa) 2380 { 2381 struct sctp_laddr *laddr; 2382 2383 if (stcb == NULL) { 2384 /* There are no restrictions, no TCB :-) */ 2385 return (0); 2386 } 2387 LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) { 2388 if (laddr->ifa == NULL) { 2389 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2390 __FUNCTION__); 2391 continue; 2392 } 2393 if (laddr->ifa == ifa) { 2394 /* Yes it is on the list */ 2395 return (1); 2396 } 2397 } 2398 return (0); 2399 } 2400 2401 2402 int 2403 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa) 2404 { 2405 struct sctp_laddr *laddr; 2406 2407 if (ifa == NULL) 2408 return (0); 2409 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2410 if (laddr->ifa == NULL) { 2411 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2412 __FUNCTION__); 2413 continue; 2414 } 2415 if ((laddr->ifa == ifa) && laddr->action == 0) 2416 /* same pointer */ 2417 return (1); 2418 } 2419 return (0); 2420 } 2421 2422 2423 2424 static struct sctp_ifa * 2425 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp, 2426 sctp_route_t * ro, 2427 uint32_t vrf_id, 2428 int non_asoc_addr_ok, 2429 uint8_t dest_is_priv, 2430 uint8_t dest_is_loop, 2431 sa_family_t fam) 2432 { 2433 struct sctp_laddr *laddr, *starting_point; 2434 void *ifn; 2435 int resettotop = 0; 2436 struct sctp_ifn *sctp_ifn; 2437 struct sctp_ifa *sctp_ifa, *sifa; 2438 struct sctp_vrf *vrf; 2439 uint32_t ifn_index; 2440 2441 vrf = sctp_find_vrf(vrf_id); 2442 if (vrf == NULL) 2443 return (NULL); 2444 2445 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2446 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2447 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2448 /* 2449 * first question, is the ifn we will emit on in our list, if so, we 2450 * want such an address. Note that we first looked for a preferred 2451 * address. 2452 */ 2453 if (sctp_ifn) { 2454 /* is a preferred one on the interface we route out? */ 2455 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2456 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2457 (non_asoc_addr_ok == 0)) 2458 continue; 2459 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, 2460 dest_is_loop, 2461 dest_is_priv, fam); 2462 if (sifa == NULL) 2463 continue; 2464 if (sctp_is_addr_in_ep(inp, sifa)) { 2465 atomic_add_int(&sifa->refcount, 1); 2466 return (sifa); 2467 } 2468 } 2469 } 2470 /* 2471 * ok, now we now need to find one on the list of the addresses. We 2472 * can't get one on the emitting interface so let's find first a 2473 * preferred one. If not that an acceptable one otherwise... we 2474 * return NULL. 2475 */ 2476 starting_point = inp->next_addr_touse; 2477 once_again: 2478 if (inp->next_addr_touse == NULL) { 2479 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2480 resettotop = 1; 2481 } 2482 for (laddr = inp->next_addr_touse; laddr; 2483 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2484 if (laddr->ifa == NULL) { 2485 /* address has been removed */ 2486 continue; 2487 } 2488 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2489 /* address is being deleted */ 2490 continue; 2491 } 2492 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, 2493 dest_is_priv, fam); 2494 if (sifa == NULL) 2495 continue; 2496 atomic_add_int(&sifa->refcount, 1); 2497 return (sifa); 2498 } 2499 if (resettotop == 0) { 2500 inp->next_addr_touse = NULL; 2501 goto once_again; 2502 } 2503 inp->next_addr_touse = starting_point; 2504 resettotop = 0; 2505 once_again_too: 2506 if (inp->next_addr_touse == NULL) { 2507 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2508 resettotop = 1; 2509 } 2510 /* ok, what about an acceptable address in the inp */ 2511 for (laddr = inp->next_addr_touse; laddr; 2512 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2513 if (laddr->ifa == NULL) { 2514 /* address has been removed */ 2515 continue; 2516 } 2517 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2518 /* address is being deleted */ 2519 continue; 2520 } 2521 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2522 dest_is_priv, fam); 2523 if (sifa == NULL) 2524 continue; 2525 atomic_add_int(&sifa->refcount, 1); 2526 return (sifa); 2527 } 2528 if (resettotop == 0) { 2529 inp->next_addr_touse = NULL; 2530 goto once_again_too; 2531 } 2532 /* 2533 * no address bound can be a source for the destination we are in 2534 * trouble 2535 */ 2536 return (NULL); 2537 } 2538 2539 2540 2541 static struct sctp_ifa * 2542 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp, 2543 struct sctp_tcb *stcb, 2544 sctp_route_t * ro, 2545 uint32_t vrf_id, 2546 uint8_t dest_is_priv, 2547 uint8_t dest_is_loop, 2548 int non_asoc_addr_ok, 2549 sa_family_t fam) 2550 { 2551 struct sctp_laddr *laddr, *starting_point; 2552 void *ifn; 2553 struct sctp_ifn *sctp_ifn; 2554 struct sctp_ifa *sctp_ifa, *sifa; 2555 uint8_t start_at_beginning = 0; 2556 struct sctp_vrf *vrf; 2557 uint32_t ifn_index; 2558 2559 /* 2560 * first question, is the ifn we will emit on in our list, if so, we 2561 * want that one. 2562 */ 2563 vrf = sctp_find_vrf(vrf_id); 2564 if (vrf == NULL) 2565 return (NULL); 2566 2567 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2568 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2569 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2570 2571 /* 2572 * first question, is the ifn we will emit on in our list? If so, 2573 * we want that one. First we look for a preferred. Second, we go 2574 * for an acceptable. 2575 */ 2576 if (sctp_ifn) { 2577 /* first try for a preferred address on the ep */ 2578 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2579 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2580 continue; 2581 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2582 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2583 if (sifa == NULL) 2584 continue; 2585 if (((non_asoc_addr_ok == 0) && 2586 (sctp_is_addr_restricted(stcb, sifa))) || 2587 (non_asoc_addr_ok && 2588 (sctp_is_addr_restricted(stcb, sifa)) && 2589 (!sctp_is_addr_pending(stcb, sifa)))) { 2590 /* on the no-no list */ 2591 continue; 2592 } 2593 atomic_add_int(&sifa->refcount, 1); 2594 return (sifa); 2595 } 2596 } 2597 /* next try for an acceptable address on the ep */ 2598 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2599 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2600 continue; 2601 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2602 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2603 if (sifa == NULL) 2604 continue; 2605 if (((non_asoc_addr_ok == 0) && 2606 (sctp_is_addr_restricted(stcb, sifa))) || 2607 (non_asoc_addr_ok && 2608 (sctp_is_addr_restricted(stcb, sifa)) && 2609 (!sctp_is_addr_pending(stcb, sifa)))) { 2610 /* on the no-no list */ 2611 continue; 2612 } 2613 atomic_add_int(&sifa->refcount, 1); 2614 return (sifa); 2615 } 2616 } 2617 2618 } 2619 /* 2620 * if we can't find one like that then we must look at all addresses 2621 * bound to pick one at first preferable then secondly acceptable. 2622 */ 2623 starting_point = stcb->asoc.last_used_address; 2624 sctp_from_the_top: 2625 if (stcb->asoc.last_used_address == NULL) { 2626 start_at_beginning = 1; 2627 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2628 } 2629 /* search beginning with the last used address */ 2630 for (laddr = stcb->asoc.last_used_address; laddr; 2631 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2632 if (laddr->ifa == NULL) { 2633 /* address has been removed */ 2634 continue; 2635 } 2636 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2637 /* address is being deleted */ 2638 continue; 2639 } 2640 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam); 2641 if (sifa == NULL) 2642 continue; 2643 if (((non_asoc_addr_ok == 0) && 2644 (sctp_is_addr_restricted(stcb, sifa))) || 2645 (non_asoc_addr_ok && 2646 (sctp_is_addr_restricted(stcb, sifa)) && 2647 (!sctp_is_addr_pending(stcb, sifa)))) { 2648 /* on the no-no list */ 2649 continue; 2650 } 2651 stcb->asoc.last_used_address = laddr; 2652 atomic_add_int(&sifa->refcount, 1); 2653 return (sifa); 2654 } 2655 if (start_at_beginning == 0) { 2656 stcb->asoc.last_used_address = NULL; 2657 goto sctp_from_the_top; 2658 } 2659 /* now try for any higher scope than the destination */ 2660 stcb->asoc.last_used_address = starting_point; 2661 start_at_beginning = 0; 2662 sctp_from_the_top2: 2663 if (stcb->asoc.last_used_address == NULL) { 2664 start_at_beginning = 1; 2665 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2666 } 2667 /* search beginning with the last used address */ 2668 for (laddr = stcb->asoc.last_used_address; laddr; 2669 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2670 if (laddr->ifa == NULL) { 2671 /* address has been removed */ 2672 continue; 2673 } 2674 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2675 /* address is being deleted */ 2676 continue; 2677 } 2678 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2679 dest_is_priv, fam); 2680 if (sifa == NULL) 2681 continue; 2682 if (((non_asoc_addr_ok == 0) && 2683 (sctp_is_addr_restricted(stcb, sifa))) || 2684 (non_asoc_addr_ok && 2685 (sctp_is_addr_restricted(stcb, sifa)) && 2686 (!sctp_is_addr_pending(stcb, sifa)))) { 2687 /* on the no-no list */ 2688 continue; 2689 } 2690 stcb->asoc.last_used_address = laddr; 2691 atomic_add_int(&sifa->refcount, 1); 2692 return (sifa); 2693 } 2694 if (start_at_beginning == 0) { 2695 stcb->asoc.last_used_address = NULL; 2696 goto sctp_from_the_top2; 2697 } 2698 return (NULL); 2699 } 2700 2701 static struct sctp_ifa * 2702 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn, 2703 struct sctp_tcb *stcb, 2704 int non_asoc_addr_ok, 2705 uint8_t dest_is_loop, 2706 uint8_t dest_is_priv, 2707 int addr_wanted, 2708 sa_family_t fam, 2709 sctp_route_t * ro 2710 ) 2711 { 2712 struct sctp_ifa *ifa, *sifa; 2713 int num_eligible_addr = 0; 2714 2715 #ifdef INET6 2716 struct sockaddr_in6 sin6, lsa6; 2717 2718 if (fam == AF_INET6) { 2719 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6)); 2720 (void)sa6_recoverscope(&sin6); 2721 } 2722 #endif /* INET6 */ 2723 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2724 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2725 (non_asoc_addr_ok == 0)) 2726 continue; 2727 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2728 dest_is_priv, fam); 2729 if (sifa == NULL) 2730 continue; 2731 #ifdef INET6 2732 if (fam == AF_INET6 && 2733 dest_is_loop && 2734 sifa->src_is_loop && sifa->src_is_priv) { 2735 /* 2736 * don't allow fe80::1 to be a src on loop ::1, we 2737 * don't list it to the peer so we will get an 2738 * abort. 2739 */ 2740 continue; 2741 } 2742 if (fam == AF_INET6 && 2743 IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) && 2744 IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) { 2745 /* 2746 * link-local <-> link-local must belong to the same 2747 * scope. 2748 */ 2749 memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6)); 2750 (void)sa6_recoverscope(&lsa6); 2751 if (sin6.sin6_scope_id != lsa6.sin6_scope_id) { 2752 continue; 2753 } 2754 } 2755 #endif /* INET6 */ 2756 2757 /* 2758 * Check if the IPv6 address matches to next-hop. In the 2759 * mobile case, old IPv6 address may be not deleted from the 2760 * interface. Then, the interface has previous and new 2761 * addresses. We should use one corresponding to the 2762 * next-hop. (by micchie) 2763 */ 2764 #ifdef INET6 2765 if (stcb && fam == AF_INET6 && 2766 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2767 if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro) 2768 == 0) { 2769 continue; 2770 } 2771 } 2772 #endif 2773 #ifdef INET 2774 /* Avoid topologically incorrect IPv4 address */ 2775 if (stcb && fam == AF_INET && 2776 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2777 if (sctp_v4src_match_nexthop(sifa, ro) == 0) { 2778 continue; 2779 } 2780 } 2781 #endif 2782 if (stcb) { 2783 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2784 continue; 2785 } 2786 if (((non_asoc_addr_ok == 0) && 2787 (sctp_is_addr_restricted(stcb, sifa))) || 2788 (non_asoc_addr_ok && 2789 (sctp_is_addr_restricted(stcb, sifa)) && 2790 (!sctp_is_addr_pending(stcb, sifa)))) { 2791 /* 2792 * It is restricted for some reason.. 2793 * probably not yet added. 2794 */ 2795 continue; 2796 } 2797 } 2798 if (num_eligible_addr >= addr_wanted) { 2799 return (sifa); 2800 } 2801 num_eligible_addr++; 2802 } 2803 return (NULL); 2804 } 2805 2806 2807 static int 2808 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn, 2809 struct sctp_tcb *stcb, 2810 int non_asoc_addr_ok, 2811 uint8_t dest_is_loop, 2812 uint8_t dest_is_priv, 2813 sa_family_t fam) 2814 { 2815 struct sctp_ifa *ifa, *sifa; 2816 int num_eligible_addr = 0; 2817 2818 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2819 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2820 (non_asoc_addr_ok == 0)) { 2821 continue; 2822 } 2823 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2824 dest_is_priv, fam); 2825 if (sifa == NULL) { 2826 continue; 2827 } 2828 if (stcb) { 2829 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2830 continue; 2831 } 2832 if (((non_asoc_addr_ok == 0) && 2833 (sctp_is_addr_restricted(stcb, sifa))) || 2834 (non_asoc_addr_ok && 2835 (sctp_is_addr_restricted(stcb, sifa)) && 2836 (!sctp_is_addr_pending(stcb, sifa)))) { 2837 /* 2838 * It is restricted for some reason.. 2839 * probably not yet added. 2840 */ 2841 continue; 2842 } 2843 } 2844 num_eligible_addr++; 2845 } 2846 return (num_eligible_addr); 2847 } 2848 2849 static struct sctp_ifa * 2850 sctp_choose_boundall(struct sctp_tcb *stcb, 2851 struct sctp_nets *net, 2852 sctp_route_t * ro, 2853 uint32_t vrf_id, 2854 uint8_t dest_is_priv, 2855 uint8_t dest_is_loop, 2856 int non_asoc_addr_ok, 2857 sa_family_t fam) 2858 { 2859 int cur_addr_num = 0, num_preferred = 0; 2860 void *ifn; 2861 struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn; 2862 struct sctp_ifa *sctp_ifa, *sifa; 2863 uint32_t ifn_index; 2864 struct sctp_vrf *vrf; 2865 2866 #ifdef INET 2867 int retried = 0; 2868 2869 #endif 2870 2871 /*- 2872 * For boundall we can use any address in the association. 2873 * If non_asoc_addr_ok is set we can use any address (at least in 2874 * theory). So we look for preferred addresses first. If we find one, 2875 * we use it. Otherwise we next try to get an address on the 2876 * interface, which we should be able to do (unless non_asoc_addr_ok 2877 * is false and we are routed out that way). In these cases where we 2878 * can't use the address of the interface we go through all the 2879 * ifn's looking for an address we can use and fill that in. Punting 2880 * means we send back address 0, which will probably cause problems 2881 * actually since then IP will fill in the address of the route ifn, 2882 * which means we probably already rejected it.. i.e. here comes an 2883 * abort :-<. 2884 */ 2885 vrf = sctp_find_vrf(vrf_id); 2886 if (vrf == NULL) 2887 return (NULL); 2888 2889 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2890 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2891 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index); 2892 emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2893 if (sctp_ifn == NULL) { 2894 /* ?? We don't have this guy ?? */ 2895 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n"); 2896 goto bound_all_plan_b; 2897 } 2898 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n", 2899 ifn_index, sctp_ifn->ifn_name); 2900 2901 if (net) { 2902 cur_addr_num = net->indx_of_eligible_next_to_use; 2903 } 2904 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, 2905 stcb, 2906 non_asoc_addr_ok, 2907 dest_is_loop, 2908 dest_is_priv, fam); 2909 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n", 2910 num_preferred, sctp_ifn->ifn_name); 2911 if (num_preferred == 0) { 2912 /* 2913 * no eligible addresses, we must use some other interface 2914 * address if we can find one. 2915 */ 2916 goto bound_all_plan_b; 2917 } 2918 /* 2919 * Ok we have num_eligible_addr set with how many we can use, this 2920 * may vary from call to call due to addresses being deprecated 2921 * etc.. 2922 */ 2923 if (cur_addr_num >= num_preferred) { 2924 cur_addr_num = 0; 2925 } 2926 /* 2927 * select the nth address from the list (where cur_addr_num is the 2928 * nth) and 0 is the first one, 1 is the second one etc... 2929 */ 2930 SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num); 2931 2932 sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop, 2933 dest_is_priv, cur_addr_num, fam, ro); 2934 2935 /* if sctp_ifa is NULL something changed??, fall to plan b. */ 2936 if (sctp_ifa) { 2937 atomic_add_int(&sctp_ifa->refcount, 1); 2938 if (net) { 2939 /* save off where the next one we will want */ 2940 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 2941 } 2942 return (sctp_ifa); 2943 } 2944 /* 2945 * plan_b: Look at all interfaces and find a preferred address. If 2946 * no preferred fall through to plan_c. 2947 */ 2948 bound_all_plan_b: 2949 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n"); 2950 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 2951 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n", 2952 sctp_ifn->ifn_name); 2953 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 2954 /* wrong base scope */ 2955 SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n"); 2956 continue; 2957 } 2958 if ((sctp_ifn == looked_at) && looked_at) { 2959 /* already looked at this guy */ 2960 SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n"); 2961 continue; 2962 } 2963 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, stcb, non_asoc_addr_ok, 2964 dest_is_loop, dest_is_priv, fam); 2965 SCTPDBG(SCTP_DEBUG_OUTPUT2, 2966 "Found ifn:%p %d preferred source addresses\n", 2967 ifn, num_preferred); 2968 if (num_preferred == 0) { 2969 /* None on this interface. */ 2970 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefered -- skipping to next\n"); 2971 continue; 2972 } 2973 SCTPDBG(SCTP_DEBUG_OUTPUT2, 2974 "num preferred:%d on interface:%p cur_addr_num:%d\n", 2975 num_preferred, (void *)sctp_ifn, cur_addr_num); 2976 2977 /* 2978 * Ok we have num_eligible_addr set with how many we can 2979 * use, this may vary from call to call due to addresses 2980 * being deprecated etc.. 2981 */ 2982 if (cur_addr_num >= num_preferred) { 2983 cur_addr_num = 0; 2984 } 2985 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, stcb, non_asoc_addr_ok, dest_is_loop, 2986 dest_is_priv, cur_addr_num, fam, ro); 2987 if (sifa == NULL) 2988 continue; 2989 if (net) { 2990 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 2991 SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n", 2992 cur_addr_num); 2993 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:"); 2994 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 2995 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:"); 2996 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa); 2997 } 2998 atomic_add_int(&sifa->refcount, 1); 2999 return (sifa); 3000 } 3001 #ifdef INET 3002 again_with_private_addresses_allowed: 3003 #endif 3004 /* plan_c: do we have an acceptable address on the emit interface */ 3005 sifa = NULL; 3006 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n"); 3007 if (emit_ifn == NULL) { 3008 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n"); 3009 goto plan_d; 3010 } 3011 LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) { 3012 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa); 3013 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3014 (non_asoc_addr_ok == 0)) { 3015 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n"); 3016 continue; 3017 } 3018 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, 3019 dest_is_priv, fam); 3020 if (sifa == NULL) { 3021 SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n"); 3022 continue; 3023 } 3024 if (stcb) { 3025 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3026 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n"); 3027 sifa = NULL; 3028 continue; 3029 } 3030 if (((non_asoc_addr_ok == 0) && 3031 (sctp_is_addr_restricted(stcb, sifa))) || 3032 (non_asoc_addr_ok && 3033 (sctp_is_addr_restricted(stcb, sifa)) && 3034 (!sctp_is_addr_pending(stcb, sifa)))) { 3035 /* 3036 * It is restricted for some reason.. 3037 * probably not yet added. 3038 */ 3039 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its resticted\n"); 3040 sifa = NULL; 3041 continue; 3042 } 3043 } else { 3044 SCTP_PRINTF("Stcb is null - no print\n"); 3045 } 3046 atomic_add_int(&sifa->refcount, 1); 3047 goto out; 3048 } 3049 plan_d: 3050 /* 3051 * plan_d: We are in trouble. No preferred address on the emit 3052 * interface. And not even a preferred address on all interfaces. Go 3053 * out and see if we can find an acceptable address somewhere 3054 * amongst all interfaces. 3055 */ 3056 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at); 3057 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3058 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3059 /* wrong base scope */ 3060 continue; 3061 } 3062 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3063 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3064 (non_asoc_addr_ok == 0)) 3065 continue; 3066 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3067 dest_is_loop, 3068 dest_is_priv, fam); 3069 if (sifa == NULL) 3070 continue; 3071 if (stcb) { 3072 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3073 sifa = NULL; 3074 continue; 3075 } 3076 if (((non_asoc_addr_ok == 0) && 3077 (sctp_is_addr_restricted(stcb, sifa))) || 3078 (non_asoc_addr_ok && 3079 (sctp_is_addr_restricted(stcb, sifa)) && 3080 (!sctp_is_addr_pending(stcb, sifa)))) { 3081 /* 3082 * It is restricted for some 3083 * reason.. probably not yet added. 3084 */ 3085 sifa = NULL; 3086 continue; 3087 } 3088 } 3089 goto out; 3090 } 3091 } 3092 #ifdef INET 3093 if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) { 3094 stcb->asoc.scope.ipv4_local_scope = 1; 3095 retried = 1; 3096 goto again_with_private_addresses_allowed; 3097 } else if (retried == 1) { 3098 stcb->asoc.scope.ipv4_local_scope = 0; 3099 } 3100 #endif 3101 out: 3102 #ifdef INET 3103 if (sifa) { 3104 if (retried == 1) { 3105 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3106 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3107 /* wrong base scope */ 3108 continue; 3109 } 3110 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3111 struct sctp_ifa *tmp_sifa; 3112 3113 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3114 (non_asoc_addr_ok == 0)) 3115 continue; 3116 tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3117 dest_is_loop, 3118 dest_is_priv, fam); 3119 if (tmp_sifa == NULL) { 3120 continue; 3121 } 3122 if (tmp_sifa == sifa) { 3123 continue; 3124 } 3125 if (stcb) { 3126 if (sctp_is_address_in_scope(tmp_sifa, 3127 &stcb->asoc.scope, 0) == 0) { 3128 continue; 3129 } 3130 if (((non_asoc_addr_ok == 0) && 3131 (sctp_is_addr_restricted(stcb, tmp_sifa))) || 3132 (non_asoc_addr_ok && 3133 (sctp_is_addr_restricted(stcb, tmp_sifa)) && 3134 (!sctp_is_addr_pending(stcb, tmp_sifa)))) { 3135 /* 3136 * It is restricted 3137 * for some reason.. 3138 * probably not yet 3139 * added. 3140 */ 3141 continue; 3142 } 3143 } 3144 if ((tmp_sifa->address.sin.sin_family == AF_INET) && 3145 (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) { 3146 sctp_add_local_addr_restricted(stcb, tmp_sifa); 3147 } 3148 } 3149 } 3150 } 3151 atomic_add_int(&sifa->refcount, 1); 3152 } 3153 #endif 3154 return (sifa); 3155 } 3156 3157 3158 3159 /* tcb may be NULL */ 3160 struct sctp_ifa * 3161 sctp_source_address_selection(struct sctp_inpcb *inp, 3162 struct sctp_tcb *stcb, 3163 sctp_route_t * ro, 3164 struct sctp_nets *net, 3165 int non_asoc_addr_ok, uint32_t vrf_id) 3166 { 3167 struct sctp_ifa *answer; 3168 uint8_t dest_is_priv, dest_is_loop; 3169 sa_family_t fam; 3170 3171 #ifdef INET 3172 struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst; 3173 3174 #endif 3175 #ifdef INET6 3176 struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst; 3177 3178 #endif 3179 3180 /** 3181 * Rules: - Find the route if needed, cache if I can. - Look at 3182 * interface address in route, Is it in the bound list. If so we 3183 * have the best source. - If not we must rotate amongst the 3184 * addresses. 3185 * 3186 * Cavets and issues 3187 * 3188 * Do we need to pay attention to scope. We can have a private address 3189 * or a global address we are sourcing or sending to. So if we draw 3190 * it out 3191 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3192 * For V4 3193 * ------------------------------------------ 3194 * source * dest * result 3195 * ----------------------------------------- 3196 * <a> Private * Global * NAT 3197 * ----------------------------------------- 3198 * <b> Private * Private * No problem 3199 * ----------------------------------------- 3200 * <c> Global * Private * Huh, How will this work? 3201 * ----------------------------------------- 3202 * <d> Global * Global * No Problem 3203 *------------------------------------------ 3204 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3205 * For V6 3206 *------------------------------------------ 3207 * source * dest * result 3208 * ----------------------------------------- 3209 * <a> Linklocal * Global * 3210 * ----------------------------------------- 3211 * <b> Linklocal * Linklocal * No problem 3212 * ----------------------------------------- 3213 * <c> Global * Linklocal * Huh, How will this work? 3214 * ----------------------------------------- 3215 * <d> Global * Global * No Problem 3216 *------------------------------------------ 3217 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3218 * 3219 * And then we add to that what happens if there are multiple addresses 3220 * assigned to an interface. Remember the ifa on a ifn is a linked 3221 * list of addresses. So one interface can have more than one IP 3222 * address. What happens if we have both a private and a global 3223 * address? Do we then use context of destination to sort out which 3224 * one is best? And what about NAT's sending P->G may get you a NAT 3225 * translation, or should you select the G thats on the interface in 3226 * preference. 3227 * 3228 * Decisions: 3229 * 3230 * - count the number of addresses on the interface. 3231 * - if it is one, no problem except case <c>. 3232 * For <a> we will assume a NAT out there. 3233 * - if there are more than one, then we need to worry about scope P 3234 * or G. We should prefer G -> G and P -> P if possible. 3235 * Then as a secondary fall back to mixed types G->P being a last 3236 * ditch one. 3237 * - The above all works for bound all, but bound specific we need to 3238 * use the same concept but instead only consider the bound 3239 * addresses. If the bound set is NOT assigned to the interface then 3240 * we must use rotation amongst the bound addresses.. 3241 */ 3242 if (ro->ro_rt == NULL) { 3243 /* 3244 * Need a route to cache. 3245 */ 3246 SCTP_RTALLOC(ro, vrf_id); 3247 } 3248 if (ro->ro_rt == NULL) { 3249 return (NULL); 3250 } 3251 fam = ro->ro_dst.sa_family; 3252 dest_is_priv = dest_is_loop = 0; 3253 /* Setup our scopes for the destination */ 3254 switch (fam) { 3255 #ifdef INET 3256 case AF_INET: 3257 /* Scope based on outbound address */ 3258 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) { 3259 dest_is_loop = 1; 3260 if (net != NULL) { 3261 /* mark it as local */ 3262 net->addr_is_local = 1; 3263 } 3264 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) { 3265 dest_is_priv = 1; 3266 } 3267 break; 3268 #endif 3269 #ifdef INET6 3270 case AF_INET6: 3271 /* Scope based on outbound address */ 3272 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) || 3273 SCTP_ROUTE_IS_REAL_LOOP(ro)) { 3274 /* 3275 * If the address is a loopback address, which 3276 * consists of "::1" OR "fe80::1%lo0", we are 3277 * loopback scope. But we don't use dest_is_priv 3278 * (link local addresses). 3279 */ 3280 dest_is_loop = 1; 3281 if (net != NULL) { 3282 /* mark it as local */ 3283 net->addr_is_local = 1; 3284 } 3285 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) { 3286 dest_is_priv = 1; 3287 } 3288 break; 3289 #endif 3290 } 3291 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:"); 3292 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst); 3293 SCTP_IPI_ADDR_RLOCK(); 3294 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 3295 /* 3296 * Bound all case 3297 */ 3298 answer = sctp_choose_boundall(stcb, net, ro, vrf_id, 3299 dest_is_priv, dest_is_loop, 3300 non_asoc_addr_ok, fam); 3301 SCTP_IPI_ADDR_RUNLOCK(); 3302 return (answer); 3303 } 3304 /* 3305 * Subset bound case 3306 */ 3307 if (stcb) { 3308 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro, 3309 vrf_id, dest_is_priv, 3310 dest_is_loop, 3311 non_asoc_addr_ok, fam); 3312 } else { 3313 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id, 3314 non_asoc_addr_ok, 3315 dest_is_priv, 3316 dest_is_loop, fam); 3317 } 3318 SCTP_IPI_ADDR_RUNLOCK(); 3319 return (answer); 3320 } 3321 3322 static int 3323 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize) 3324 { 3325 struct cmsghdr cmh; 3326 int tlen, at, found; 3327 struct sctp_sndinfo sndinfo; 3328 struct sctp_prinfo prinfo; 3329 struct sctp_authinfo authinfo; 3330 3331 tlen = SCTP_BUF_LEN(control); 3332 at = 0; 3333 found = 0; 3334 /* 3335 * Independent of how many mbufs, find the c_type inside the control 3336 * structure and copy out the data. 3337 */ 3338 while (at < tlen) { 3339 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3340 /* There is not enough room for one more. */ 3341 return (found); 3342 } 3343 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3344 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3345 /* We dont't have a complete CMSG header. */ 3346 return (found); 3347 } 3348 if (((int)cmh.cmsg_len + at) > tlen) { 3349 /* We don't have the complete CMSG. */ 3350 return (found); 3351 } 3352 if ((cmh.cmsg_level == IPPROTO_SCTP) && 3353 ((c_type == cmh.cmsg_type) || 3354 ((c_type == SCTP_SNDRCV) && 3355 ((cmh.cmsg_type == SCTP_SNDINFO) || 3356 (cmh.cmsg_type == SCTP_PRINFO) || 3357 (cmh.cmsg_type == SCTP_AUTHINFO))))) { 3358 if (c_type == cmh.cmsg_type) { 3359 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < cpsize) { 3360 return (found); 3361 } 3362 /* It is exactly what we want. Copy it out. */ 3363 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), cpsize, (caddr_t)data); 3364 return (1); 3365 } else { 3366 struct sctp_sndrcvinfo *sndrcvinfo; 3367 3368 sndrcvinfo = (struct sctp_sndrcvinfo *)data; 3369 if (found == 0) { 3370 if (cpsize < sizeof(struct sctp_sndrcvinfo)) { 3371 return (found); 3372 } 3373 memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo)); 3374 } 3375 switch (cmh.cmsg_type) { 3376 case SCTP_SNDINFO: 3377 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_sndinfo)) { 3378 return (found); 3379 } 3380 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo); 3381 sndrcvinfo->sinfo_stream = sndinfo.snd_sid; 3382 sndrcvinfo->sinfo_flags = sndinfo.snd_flags; 3383 sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid; 3384 sndrcvinfo->sinfo_context = sndinfo.snd_context; 3385 sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id; 3386 break; 3387 case SCTP_PRINFO: 3388 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_prinfo)) { 3389 return (found); 3390 } 3391 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_prinfo), (caddr_t)&prinfo); 3392 if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) { 3393 sndrcvinfo->sinfo_timetolive = prinfo.pr_value; 3394 } else { 3395 sndrcvinfo->sinfo_timetolive = 0; 3396 } 3397 sndrcvinfo->sinfo_flags |= prinfo.pr_policy; 3398 break; 3399 case SCTP_AUTHINFO: 3400 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_authinfo)) { 3401 return (found); 3402 } 3403 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_authinfo), (caddr_t)&authinfo); 3404 sndrcvinfo->sinfo_keynumber_valid = 1; 3405 sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber; 3406 break; 3407 default: 3408 return (found); 3409 } 3410 found = 1; 3411 } 3412 } 3413 at += CMSG_ALIGN(cmh.cmsg_len); 3414 } 3415 return (found); 3416 } 3417 3418 static int 3419 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error) 3420 { 3421 struct cmsghdr cmh; 3422 int tlen, at; 3423 struct sctp_initmsg initmsg; 3424 3425 #ifdef INET 3426 struct sockaddr_in sin; 3427 3428 #endif 3429 #ifdef INET6 3430 struct sockaddr_in6 sin6; 3431 3432 #endif 3433 3434 tlen = SCTP_BUF_LEN(control); 3435 at = 0; 3436 while (at < tlen) { 3437 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3438 /* There is not enough room for one more. */ 3439 *error = EINVAL; 3440 return (1); 3441 } 3442 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3443 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3444 /* We dont't have a complete CMSG header. */ 3445 *error = EINVAL; 3446 return (1); 3447 } 3448 if (((int)cmh.cmsg_len + at) > tlen) { 3449 /* We don't have the complete CMSG. */ 3450 *error = EINVAL; 3451 return (1); 3452 } 3453 if (cmh.cmsg_level == IPPROTO_SCTP) { 3454 switch (cmh.cmsg_type) { 3455 case SCTP_INIT: 3456 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) { 3457 *error = EINVAL; 3458 return (1); 3459 } 3460 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg); 3461 if (initmsg.sinit_max_attempts) 3462 stcb->asoc.max_init_times = initmsg.sinit_max_attempts; 3463 if (initmsg.sinit_num_ostreams) 3464 stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams; 3465 if (initmsg.sinit_max_instreams) 3466 stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams; 3467 if (initmsg.sinit_max_init_timeo) 3468 stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo; 3469 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) { 3470 struct sctp_stream_out *tmp_str; 3471 unsigned int i; 3472 3473 /* Default is NOT correct */ 3474 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n", 3475 stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams); 3476 SCTP_TCB_UNLOCK(stcb); 3477 SCTP_MALLOC(tmp_str, 3478 struct sctp_stream_out *, 3479 (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)), 3480 SCTP_M_STRMO); 3481 SCTP_TCB_LOCK(stcb); 3482 if (tmp_str != NULL) { 3483 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO); 3484 stcb->asoc.strmout = tmp_str; 3485 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams; 3486 } else { 3487 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt; 3488 } 3489 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3490 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 3491 stcb->asoc.strmout[i].chunks_on_queues = 0; 3492 stcb->asoc.strmout[i].next_sequence_send = 0; 3493 stcb->asoc.strmout[i].stream_no = i; 3494 stcb->asoc.strmout[i].last_msg_incomplete = 0; 3495 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL); 3496 } 3497 } 3498 break; 3499 #ifdef INET 3500 case SCTP_DSTADDRV4: 3501 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) { 3502 *error = EINVAL; 3503 return (1); 3504 } 3505 memset(&sin, 0, sizeof(struct sockaddr_in)); 3506 sin.sin_family = AF_INET; 3507 sin.sin_len = sizeof(struct sockaddr_in); 3508 sin.sin_port = stcb->rport; 3509 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3510 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3511 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3512 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3513 *error = EINVAL; 3514 return (1); 3515 } 3516 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, 3517 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3518 *error = ENOBUFS; 3519 return (1); 3520 } 3521 break; 3522 #endif 3523 #ifdef INET6 3524 case SCTP_DSTADDRV6: 3525 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) { 3526 *error = EINVAL; 3527 return (1); 3528 } 3529 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3530 sin6.sin6_family = AF_INET6; 3531 sin6.sin6_len = sizeof(struct sockaddr_in6); 3532 sin6.sin6_port = stcb->rport; 3533 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3534 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) || 3535 IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) { 3536 *error = EINVAL; 3537 return (1); 3538 } 3539 #ifdef INET 3540 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3541 in6_sin6_2_sin(&sin, &sin6); 3542 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3543 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3544 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3545 *error = EINVAL; 3546 return (1); 3547 } 3548 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, 3549 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3550 *error = ENOBUFS; 3551 return (1); 3552 } 3553 } else 3554 #endif 3555 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, 3556 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3557 *error = ENOBUFS; 3558 return (1); 3559 } 3560 break; 3561 #endif 3562 default: 3563 break; 3564 } 3565 } 3566 at += CMSG_ALIGN(cmh.cmsg_len); 3567 } 3568 return (0); 3569 } 3570 3571 static struct sctp_tcb * 3572 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p, 3573 uint16_t port, 3574 struct mbuf *control, 3575 struct sctp_nets **net_p, 3576 int *error) 3577 { 3578 struct cmsghdr cmh; 3579 int tlen, at; 3580 struct sctp_tcb *stcb; 3581 struct sockaddr *addr; 3582 3583 #ifdef INET 3584 struct sockaddr_in sin; 3585 3586 #endif 3587 #ifdef INET6 3588 struct sockaddr_in6 sin6; 3589 3590 #endif 3591 3592 tlen = SCTP_BUF_LEN(control); 3593 at = 0; 3594 while (at < tlen) { 3595 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3596 /* There is not enough room for one more. */ 3597 *error = EINVAL; 3598 return (NULL); 3599 } 3600 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3601 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3602 /* We dont't have a complete CMSG header. */ 3603 *error = EINVAL; 3604 return (NULL); 3605 } 3606 if (((int)cmh.cmsg_len + at) > tlen) { 3607 /* We don't have the complete CMSG. */ 3608 *error = EINVAL; 3609 return (NULL); 3610 } 3611 if (cmh.cmsg_level == IPPROTO_SCTP) { 3612 switch (cmh.cmsg_type) { 3613 #ifdef INET 3614 case SCTP_DSTADDRV4: 3615 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) { 3616 *error = EINVAL; 3617 return (NULL); 3618 } 3619 memset(&sin, 0, sizeof(struct sockaddr_in)); 3620 sin.sin_family = AF_INET; 3621 sin.sin_len = sizeof(struct sockaddr_in); 3622 sin.sin_port = port; 3623 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3624 addr = (struct sockaddr *)&sin; 3625 break; 3626 #endif 3627 #ifdef INET6 3628 case SCTP_DSTADDRV6: 3629 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) { 3630 *error = EINVAL; 3631 return (NULL); 3632 } 3633 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3634 sin6.sin6_family = AF_INET6; 3635 sin6.sin6_len = sizeof(struct sockaddr_in6); 3636 sin6.sin6_port = port; 3637 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3638 #ifdef INET 3639 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3640 in6_sin6_2_sin(&sin, &sin6); 3641 addr = (struct sockaddr *)&sin; 3642 } else 3643 #endif 3644 addr = (struct sockaddr *)&sin6; 3645 break; 3646 #endif 3647 default: 3648 addr = NULL; 3649 break; 3650 } 3651 if (addr) { 3652 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL); 3653 if (stcb != NULL) { 3654 return (stcb); 3655 } 3656 } 3657 } 3658 at += CMSG_ALIGN(cmh.cmsg_len); 3659 } 3660 return (NULL); 3661 } 3662 3663 static struct mbuf * 3664 sctp_add_cookie(struct mbuf *init, int init_offset, 3665 struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t ** signature) 3666 { 3667 struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret; 3668 struct sctp_state_cookie *stc; 3669 struct sctp_paramhdr *ph; 3670 uint8_t *foo; 3671 int sig_offset; 3672 uint16_t cookie_sz; 3673 3674 mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) + 3675 sizeof(struct sctp_paramhdr)), 0, 3676 M_NOWAIT, 1, MT_DATA); 3677 if (mret == NULL) { 3678 return (NULL); 3679 } 3680 copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT); 3681 if (copy_init == NULL) { 3682 sctp_m_freem(mret); 3683 return (NULL); 3684 } 3685 #ifdef SCTP_MBUF_LOGGING 3686 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3687 struct mbuf *mat; 3688 3689 for (mat = copy_init; mat; mat = SCTP_BUF_NEXT(mat)) { 3690 if (SCTP_BUF_IS_EXTENDED(mat)) { 3691 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 3692 } 3693 } 3694 } 3695 #endif 3696 copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL, 3697 M_NOWAIT); 3698 if (copy_initack == NULL) { 3699 sctp_m_freem(mret); 3700 sctp_m_freem(copy_init); 3701 return (NULL); 3702 } 3703 #ifdef SCTP_MBUF_LOGGING 3704 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3705 struct mbuf *mat; 3706 3707 for (mat = copy_initack; mat; mat = SCTP_BUF_NEXT(mat)) { 3708 if (SCTP_BUF_IS_EXTENDED(mat)) { 3709 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 3710 } 3711 } 3712 } 3713 #endif 3714 /* easy side we just drop it on the end */ 3715 ph = mtod(mret, struct sctp_paramhdr *); 3716 SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) + 3717 sizeof(struct sctp_paramhdr); 3718 stc = (struct sctp_state_cookie *)((caddr_t)ph + 3719 sizeof(struct sctp_paramhdr)); 3720 ph->param_type = htons(SCTP_STATE_COOKIE); 3721 ph->param_length = 0; /* fill in at the end */ 3722 /* Fill in the stc cookie data */ 3723 memcpy(stc, stc_in, sizeof(struct sctp_state_cookie)); 3724 3725 /* tack the INIT and then the INIT-ACK onto the chain */ 3726 cookie_sz = 0; 3727 for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3728 cookie_sz += SCTP_BUF_LEN(m_at); 3729 if (SCTP_BUF_NEXT(m_at) == NULL) { 3730 SCTP_BUF_NEXT(m_at) = copy_init; 3731 break; 3732 } 3733 } 3734 for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3735 cookie_sz += SCTP_BUF_LEN(m_at); 3736 if (SCTP_BUF_NEXT(m_at) == NULL) { 3737 SCTP_BUF_NEXT(m_at) = copy_initack; 3738 break; 3739 } 3740 } 3741 for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3742 cookie_sz += SCTP_BUF_LEN(m_at); 3743 if (SCTP_BUF_NEXT(m_at) == NULL) { 3744 break; 3745 } 3746 } 3747 sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA); 3748 if (sig == NULL) { 3749 /* no space, so free the entire chain */ 3750 sctp_m_freem(mret); 3751 return (NULL); 3752 } 3753 SCTP_BUF_LEN(sig) = 0; 3754 SCTP_BUF_NEXT(m_at) = sig; 3755 sig_offset = 0; 3756 foo = (uint8_t *) (mtod(sig, caddr_t)+sig_offset); 3757 memset(foo, 0, SCTP_SIGNATURE_SIZE); 3758 *signature = foo; 3759 SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE; 3760 cookie_sz += SCTP_SIGNATURE_SIZE; 3761 ph->param_length = htons(cookie_sz); 3762 return (mret); 3763 } 3764 3765 3766 static uint8_t 3767 sctp_get_ect(struct sctp_tcb *stcb) 3768 { 3769 if ((stcb != NULL) && (stcb->asoc.ecn_allowed == 1)) { 3770 return (SCTP_ECT0_BIT); 3771 } else { 3772 return (0); 3773 } 3774 } 3775 3776 #if defined(INET) || defined(INET6) 3777 static void 3778 sctp_handle_no_route(struct sctp_tcb *stcb, 3779 struct sctp_nets *net, 3780 int so_locked) 3781 { 3782 SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n"); 3783 3784 if (net) { 3785 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was "); 3786 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa); 3787 if (net->dest_state & SCTP_ADDR_CONFIRMED) { 3788 if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) { 3789 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net); 3790 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 3791 stcb, 0, 3792 (void *)net, 3793 so_locked); 3794 net->dest_state &= ~SCTP_ADDR_REACHABLE; 3795 net->dest_state &= ~SCTP_ADDR_PF; 3796 } 3797 } 3798 if (stcb) { 3799 if (net == stcb->asoc.primary_destination) { 3800 /* need a new primary */ 3801 struct sctp_nets *alt; 3802 3803 alt = sctp_find_alternate_net(stcb, net, 0); 3804 if (alt != net) { 3805 if (stcb->asoc.alternate) { 3806 sctp_free_remote_addr(stcb->asoc.alternate); 3807 } 3808 stcb->asoc.alternate = alt; 3809 atomic_add_int(&stcb->asoc.alternate->ref_count, 1); 3810 if (net->ro._s_addr) { 3811 sctp_free_ifa(net->ro._s_addr); 3812 net->ro._s_addr = NULL; 3813 } 3814 net->src_addr_selected = 0; 3815 } 3816 } 3817 } 3818 } 3819 } 3820 3821 #endif 3822 3823 static int 3824 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp, 3825 struct sctp_tcb *stcb, /* may be NULL */ 3826 struct sctp_nets *net, 3827 struct sockaddr *to, 3828 struct mbuf *m, 3829 uint32_t auth_offset, 3830 struct sctp_auth_chunk *auth, 3831 uint16_t auth_keyid, 3832 int nofragment_flag, 3833 int ecn_ok, 3834 int out_of_asoc_ok, 3835 uint16_t src_port, 3836 uint16_t dest_port, 3837 uint32_t v_tag, 3838 uint16_t port, 3839 union sctp_sockstore *over_addr, 3840 uint8_t use_mflowid, uint32_t mflowid, 3841 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 3842 int so_locked SCTP_UNUSED 3843 #else 3844 int so_locked 3845 #endif 3846 ) 3847 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */ 3848 { 3849 /** 3850 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header 3851 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure: 3852 * - fill in the HMAC digest of any AUTH chunk in the packet. 3853 * - calculate and fill in the SCTP checksum. 3854 * - prepend an IP address header. 3855 * - if boundall use INADDR_ANY. 3856 * - if boundspecific do source address selection. 3857 * - set fragmentation option for ipV4. 3858 * - On return from IP output, check/adjust mtu size of output 3859 * interface and smallest_mtu size as well. 3860 */ 3861 /* Will need ifdefs around this */ 3862 struct mbuf *newm; 3863 struct sctphdr *sctphdr; 3864 int packet_length; 3865 int ret; 3866 3867 #if defined(INET) || defined(INET6) 3868 uint32_t vrf_id; 3869 3870 #endif 3871 #if defined(INET) || defined(INET6) 3872 struct mbuf *o_pak; 3873 sctp_route_t *ro = NULL; 3874 struct udphdr *udp = NULL; 3875 3876 #endif 3877 uint8_t tos_value; 3878 3879 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 3880 struct socket *so = NULL; 3881 3882 #endif 3883 3884 if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) { 3885 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 3886 sctp_m_freem(m); 3887 return (EFAULT); 3888 } 3889 #if defined(INET) || defined(INET6) 3890 if (stcb) { 3891 vrf_id = stcb->asoc.vrf_id; 3892 } else { 3893 vrf_id = inp->def_vrf_id; 3894 } 3895 #endif 3896 /* fill in the HMAC digest for any AUTH chunk in the packet */ 3897 if ((auth != NULL) && (stcb != NULL)) { 3898 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid); 3899 } 3900 if (net) { 3901 tos_value = net->dscp; 3902 } else if (stcb) { 3903 tos_value = stcb->asoc.default_dscp; 3904 } else { 3905 tos_value = inp->sctp_ep.default_dscp; 3906 } 3907 3908 switch (to->sa_family) { 3909 #ifdef INET 3910 case AF_INET: 3911 { 3912 struct ip *ip = NULL; 3913 sctp_route_t iproute; 3914 int len; 3915 3916 len = sizeof(struct ip) + sizeof(struct sctphdr); 3917 if (port) { 3918 len += sizeof(struct udphdr); 3919 } 3920 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 3921 if (newm == NULL) { 3922 sctp_m_freem(m); 3923 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 3924 return (ENOMEM); 3925 } 3926 SCTP_ALIGN_TO_END(newm, len); 3927 SCTP_BUF_LEN(newm) = len; 3928 SCTP_BUF_NEXT(newm) = m; 3929 m = newm; 3930 if (net != NULL) { 3931 #ifdef INVARIANTS 3932 if (net->flowidset == 0) { 3933 panic("Flow ID not set"); 3934 } 3935 #endif 3936 m->m_pkthdr.flowid = net->flowid; 3937 m->m_flags |= M_FLOWID; 3938 } else { 3939 if (use_mflowid != 0) { 3940 m->m_pkthdr.flowid = mflowid; 3941 m->m_flags |= M_FLOWID; 3942 } 3943 } 3944 packet_length = sctp_calculate_len(m); 3945 ip = mtod(m, struct ip *); 3946 ip->ip_v = IPVERSION; 3947 ip->ip_hl = (sizeof(struct ip) >> 2); 3948 if (tos_value == 0) { 3949 /* 3950 * This means especially, that it is not set 3951 * at the SCTP layer. So use the value from 3952 * the IP layer. 3953 */ 3954 tos_value = inp->ip_inp.inp.inp_ip_tos; 3955 } 3956 tos_value &= 0xfc; 3957 if (ecn_ok) { 3958 tos_value |= sctp_get_ect(stcb); 3959 } 3960 if ((nofragment_flag) && (port == 0)) { 3961 ip->ip_off = htons(IP_DF); 3962 } else { 3963 ip->ip_off = htons(0); 3964 } 3965 /* FreeBSD has a function for ip_id's */ 3966 ip->ip_id = ip_newid(); 3967 3968 ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl; 3969 ip->ip_len = htons(packet_length); 3970 ip->ip_tos = tos_value; 3971 if (port) { 3972 ip->ip_p = IPPROTO_UDP; 3973 } else { 3974 ip->ip_p = IPPROTO_SCTP; 3975 } 3976 ip->ip_sum = 0; 3977 if (net == NULL) { 3978 ro = &iproute; 3979 memset(&iproute, 0, sizeof(iproute)); 3980 memcpy(&ro->ro_dst, to, to->sa_len); 3981 } else { 3982 ro = (sctp_route_t *) & net->ro; 3983 } 3984 /* Now the address selection part */ 3985 ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr; 3986 3987 /* call the routine to select the src address */ 3988 if (net && out_of_asoc_ok == 0) { 3989 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 3990 sctp_free_ifa(net->ro._s_addr); 3991 net->ro._s_addr = NULL; 3992 net->src_addr_selected = 0; 3993 if (ro->ro_rt) { 3994 RTFREE(ro->ro_rt); 3995 ro->ro_rt = NULL; 3996 } 3997 } 3998 if (net->src_addr_selected == 0) { 3999 /* Cache the source address */ 4000 net->ro._s_addr = sctp_source_address_selection(inp, stcb, 4001 ro, net, 0, 4002 vrf_id); 4003 net->src_addr_selected = 1; 4004 } 4005 if (net->ro._s_addr == NULL) { 4006 /* No route to host */ 4007 net->src_addr_selected = 0; 4008 sctp_handle_no_route(stcb, net, so_locked); 4009 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4010 sctp_m_freem(m); 4011 return (EHOSTUNREACH); 4012 } 4013 ip->ip_src = net->ro._s_addr->address.sin.sin_addr; 4014 } else { 4015 if (over_addr == NULL) { 4016 struct sctp_ifa *_lsrc; 4017 4018 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4019 net, 4020 out_of_asoc_ok, 4021 vrf_id); 4022 if (_lsrc == NULL) { 4023 sctp_handle_no_route(stcb, net, so_locked); 4024 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4025 sctp_m_freem(m); 4026 return (EHOSTUNREACH); 4027 } 4028 ip->ip_src = _lsrc->address.sin.sin_addr; 4029 sctp_free_ifa(_lsrc); 4030 } else { 4031 ip->ip_src = over_addr->sin.sin_addr; 4032 SCTP_RTALLOC(ro, vrf_id); 4033 } 4034 } 4035 if (port) { 4036 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4037 sctp_handle_no_route(stcb, net, so_locked); 4038 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4039 sctp_m_freem(m); 4040 return (EHOSTUNREACH); 4041 } 4042 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 4043 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4044 udp->uh_dport = port; 4045 udp->uh_ulen = htons(packet_length - sizeof(struct ip)); 4046 if (V_udp_cksum) { 4047 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 4048 } else { 4049 udp->uh_sum = 0; 4050 } 4051 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4052 } else { 4053 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip)); 4054 } 4055 4056 sctphdr->src_port = src_port; 4057 sctphdr->dest_port = dest_port; 4058 sctphdr->v_tag = v_tag; 4059 sctphdr->checksum = 0; 4060 4061 /* 4062 * If source address selection fails and we find no 4063 * route then the ip_output should fail as well with 4064 * a NO_ROUTE_TO_HOST type error. We probably should 4065 * catch that somewhere and abort the association 4066 * right away (assuming this is an INIT being sent). 4067 */ 4068 if (ro->ro_rt == NULL) { 4069 /* 4070 * src addr selection failed to find a route 4071 * (or valid source addr), so we can't get 4072 * there from here (yet)! 4073 */ 4074 sctp_handle_no_route(stcb, net, so_locked); 4075 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4076 sctp_m_freem(m); 4077 return (EHOSTUNREACH); 4078 } 4079 if (ro != &iproute) { 4080 memcpy(&iproute, ro, sizeof(*ro)); 4081 } 4082 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n", 4083 (uint32_t) (ntohl(ip->ip_src.s_addr))); 4084 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n", 4085 (uint32_t) (ntohl(ip->ip_dst.s_addr))); 4086 SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n", 4087 (void *)ro->ro_rt); 4088 4089 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4090 /* failed to prepend data, give up */ 4091 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4092 sctp_m_freem(m); 4093 return (ENOMEM); 4094 } 4095 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4096 if (port) { 4097 #if defined(SCTP_WITH_NO_CSUM) 4098 SCTP_STAT_INCR(sctps_sendnocrc); 4099 #else 4100 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr)); 4101 SCTP_STAT_INCR(sctps_sendswcrc); 4102 #endif 4103 if (V_udp_cksum) { 4104 SCTP_ENABLE_UDP_CSUM(o_pak); 4105 } 4106 } else { 4107 #if defined(SCTP_WITH_NO_CSUM) 4108 SCTP_STAT_INCR(sctps_sendnocrc); 4109 #else 4110 m->m_pkthdr.csum_flags = CSUM_SCTP; 4111 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4112 SCTP_STAT_INCR(sctps_sendhwcrc); 4113 #endif 4114 } 4115 #ifdef SCTP_PACKET_LOGGING 4116 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4117 sctp_packet_log(o_pak); 4118 #endif 4119 /* send it out. table id is taken from stcb */ 4120 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4121 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4122 so = SCTP_INP_SO(inp); 4123 SCTP_SOCKET_UNLOCK(so, 0); 4124 } 4125 #endif 4126 SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id); 4127 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4128 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4129 atomic_add_int(&stcb->asoc.refcnt, 1); 4130 SCTP_TCB_UNLOCK(stcb); 4131 SCTP_SOCKET_LOCK(so, 0); 4132 SCTP_TCB_LOCK(stcb); 4133 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4134 } 4135 #endif 4136 SCTP_STAT_INCR(sctps_sendpackets); 4137 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4138 if (ret) 4139 SCTP_STAT_INCR(sctps_senderrors); 4140 4141 SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret); 4142 if (net == NULL) { 4143 /* free tempy routes */ 4144 RO_RTFREE(ro); 4145 } else { 4146 /* 4147 * PMTU check versus smallest asoc MTU goes 4148 * here 4149 */ 4150 if ((ro->ro_rt != NULL) && 4151 (net->ro._s_addr)) { 4152 uint32_t mtu; 4153 4154 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt); 4155 if (net->port) { 4156 mtu -= sizeof(struct udphdr); 4157 } 4158 if (mtu && (stcb->asoc.smallest_mtu > mtu)) { 4159 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4160 net->mtu = mtu; 4161 } 4162 } else if (ro->ro_rt == NULL) { 4163 /* route was freed */ 4164 if (net->ro._s_addr && 4165 net->src_addr_selected) { 4166 sctp_free_ifa(net->ro._s_addr); 4167 net->ro._s_addr = NULL; 4168 } 4169 net->src_addr_selected = 0; 4170 } 4171 } 4172 return (ret); 4173 } 4174 #endif 4175 #ifdef INET6 4176 case AF_INET6: 4177 { 4178 uint32_t flowlabel, flowinfo; 4179 struct ip6_hdr *ip6h; 4180 struct route_in6 ip6route; 4181 struct ifnet *ifp; 4182 struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp; 4183 int prev_scope = 0; 4184 struct sockaddr_in6 lsa6_storage; 4185 int error; 4186 u_short prev_port = 0; 4187 int len; 4188 4189 if (net) { 4190 flowlabel = net->flowlabel; 4191 } else if (stcb) { 4192 flowlabel = stcb->asoc.default_flowlabel; 4193 } else { 4194 flowlabel = inp->sctp_ep.default_flowlabel; 4195 } 4196 if (flowlabel == 0) { 4197 /* 4198 * This means especially, that it is not set 4199 * at the SCTP layer. So use the value from 4200 * the IP layer. 4201 */ 4202 flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo); 4203 } 4204 flowlabel &= 0x000fffff; 4205 len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr); 4206 if (port) { 4207 len += sizeof(struct udphdr); 4208 } 4209 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4210 if (newm == NULL) { 4211 sctp_m_freem(m); 4212 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4213 return (ENOMEM); 4214 } 4215 SCTP_ALIGN_TO_END(newm, len); 4216 SCTP_BUF_LEN(newm) = len; 4217 SCTP_BUF_NEXT(newm) = m; 4218 m = newm; 4219 if (net != NULL) { 4220 #ifdef INVARIANTS 4221 if (net->flowidset == 0) { 4222 panic("Flow ID not set"); 4223 } 4224 #endif 4225 m->m_pkthdr.flowid = net->flowid; 4226 m->m_flags |= M_FLOWID; 4227 } else { 4228 if (use_mflowid != 0) { 4229 m->m_pkthdr.flowid = mflowid; 4230 m->m_flags |= M_FLOWID; 4231 } 4232 } 4233 packet_length = sctp_calculate_len(m); 4234 4235 ip6h = mtod(m, struct ip6_hdr *); 4236 /* protect *sin6 from overwrite */ 4237 sin6 = (struct sockaddr_in6 *)to; 4238 tmp = *sin6; 4239 sin6 = &tmp; 4240 4241 /* KAME hack: embed scopeid */ 4242 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4243 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4244 return (EINVAL); 4245 } 4246 if (net == NULL) { 4247 memset(&ip6route, 0, sizeof(ip6route)); 4248 ro = (sctp_route_t *) & ip6route; 4249 memcpy(&ro->ro_dst, sin6, sin6->sin6_len); 4250 } else { 4251 ro = (sctp_route_t *) & net->ro; 4252 } 4253 /* 4254 * We assume here that inp_flow is in host byte 4255 * order within the TCB! 4256 */ 4257 if (tos_value == 0) { 4258 /* 4259 * This means especially, that it is not set 4260 * at the SCTP layer. So use the value from 4261 * the IP layer. 4262 */ 4263 tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff; 4264 } 4265 tos_value &= 0xfc; 4266 if (ecn_ok) { 4267 tos_value |= sctp_get_ect(stcb); 4268 } 4269 flowinfo = 0x06; 4270 flowinfo <<= 8; 4271 flowinfo |= tos_value; 4272 flowinfo <<= 20; 4273 flowinfo |= flowlabel; 4274 ip6h->ip6_flow = htonl(flowinfo); 4275 if (port) { 4276 ip6h->ip6_nxt = IPPROTO_UDP; 4277 } else { 4278 ip6h->ip6_nxt = IPPROTO_SCTP; 4279 } 4280 ip6h->ip6_plen = (packet_length - sizeof(struct ip6_hdr)); 4281 ip6h->ip6_dst = sin6->sin6_addr; 4282 4283 /* 4284 * Add SRC address selection here: we can only reuse 4285 * to a limited degree the kame src-addr-sel, since 4286 * we can try their selection but it may not be 4287 * bound. 4288 */ 4289 bzero(&lsa6_tmp, sizeof(lsa6_tmp)); 4290 lsa6_tmp.sin6_family = AF_INET6; 4291 lsa6_tmp.sin6_len = sizeof(lsa6_tmp); 4292 lsa6 = &lsa6_tmp; 4293 if (net && out_of_asoc_ok == 0) { 4294 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4295 sctp_free_ifa(net->ro._s_addr); 4296 net->ro._s_addr = NULL; 4297 net->src_addr_selected = 0; 4298 if (ro->ro_rt) { 4299 RTFREE(ro->ro_rt); 4300 ro->ro_rt = NULL; 4301 } 4302 } 4303 if (net->src_addr_selected == 0) { 4304 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4305 /* KAME hack: embed scopeid */ 4306 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4307 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4308 return (EINVAL); 4309 } 4310 /* Cache the source address */ 4311 net->ro._s_addr = sctp_source_address_selection(inp, 4312 stcb, 4313 ro, 4314 net, 4315 0, 4316 vrf_id); 4317 (void)sa6_recoverscope(sin6); 4318 net->src_addr_selected = 1; 4319 } 4320 if (net->ro._s_addr == NULL) { 4321 SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n"); 4322 net->src_addr_selected = 0; 4323 sctp_handle_no_route(stcb, net, so_locked); 4324 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4325 sctp_m_freem(m); 4326 return (EHOSTUNREACH); 4327 } 4328 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr; 4329 } else { 4330 sin6 = (struct sockaddr_in6 *)&ro->ro_dst; 4331 /* KAME hack: embed scopeid */ 4332 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4333 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4334 return (EINVAL); 4335 } 4336 if (over_addr == NULL) { 4337 struct sctp_ifa *_lsrc; 4338 4339 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4340 net, 4341 out_of_asoc_ok, 4342 vrf_id); 4343 if (_lsrc == NULL) { 4344 sctp_handle_no_route(stcb, net, so_locked); 4345 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4346 sctp_m_freem(m); 4347 return (EHOSTUNREACH); 4348 } 4349 lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr; 4350 sctp_free_ifa(_lsrc); 4351 } else { 4352 lsa6->sin6_addr = over_addr->sin6.sin6_addr; 4353 SCTP_RTALLOC(ro, vrf_id); 4354 } 4355 (void)sa6_recoverscope(sin6); 4356 } 4357 lsa6->sin6_port = inp->sctp_lport; 4358 4359 if (ro->ro_rt == NULL) { 4360 /* 4361 * src addr selection failed to find a route 4362 * (or valid source addr), so we can't get 4363 * there from here! 4364 */ 4365 sctp_handle_no_route(stcb, net, so_locked); 4366 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4367 sctp_m_freem(m); 4368 return (EHOSTUNREACH); 4369 } 4370 /* 4371 * XXX: sa6 may not have a valid sin6_scope_id in 4372 * the non-SCOPEDROUTING case. 4373 */ 4374 bzero(&lsa6_storage, sizeof(lsa6_storage)); 4375 lsa6_storage.sin6_family = AF_INET6; 4376 lsa6_storage.sin6_len = sizeof(lsa6_storage); 4377 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4378 if ((error = sa6_recoverscope(&lsa6_storage)) != 0) { 4379 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error); 4380 sctp_m_freem(m); 4381 return (error); 4382 } 4383 /* XXX */ 4384 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4385 lsa6_storage.sin6_port = inp->sctp_lport; 4386 lsa6 = &lsa6_storage; 4387 ip6h->ip6_src = lsa6->sin6_addr; 4388 4389 if (port) { 4390 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4391 sctp_handle_no_route(stcb, net, so_locked); 4392 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4393 sctp_m_freem(m); 4394 return (EHOSTUNREACH); 4395 } 4396 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4397 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4398 udp->uh_dport = port; 4399 udp->uh_ulen = htons(packet_length - sizeof(struct ip6_hdr)); 4400 udp->uh_sum = 0; 4401 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4402 } else { 4403 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4404 } 4405 4406 sctphdr->src_port = src_port; 4407 sctphdr->dest_port = dest_port; 4408 sctphdr->v_tag = v_tag; 4409 sctphdr->checksum = 0; 4410 4411 /* 4412 * We set the hop limit now since there is a good 4413 * chance that our ro pointer is now filled 4414 */ 4415 ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro); 4416 ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 4417 4418 #ifdef SCTP_DEBUG 4419 /* Copy to be sure something bad is not happening */ 4420 sin6->sin6_addr = ip6h->ip6_dst; 4421 lsa6->sin6_addr = ip6h->ip6_src; 4422 #endif 4423 4424 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n"); 4425 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: "); 4426 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6); 4427 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: "); 4428 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6); 4429 if (net) { 4430 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4431 /* 4432 * preserve the port and scope for link 4433 * local send 4434 */ 4435 prev_scope = sin6->sin6_scope_id; 4436 prev_port = sin6->sin6_port; 4437 } 4438 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4439 /* failed to prepend data, give up */ 4440 sctp_m_freem(m); 4441 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4442 return (ENOMEM); 4443 } 4444 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4445 if (port) { 4446 #if defined(SCTP_WITH_NO_CSUM) 4447 SCTP_STAT_INCR(sctps_sendnocrc); 4448 #else 4449 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 4450 SCTP_STAT_INCR(sctps_sendswcrc); 4451 #endif 4452 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) { 4453 udp->uh_sum = 0xffff; 4454 } 4455 } else { 4456 #if defined(SCTP_WITH_NO_CSUM) 4457 SCTP_STAT_INCR(sctps_sendnocrc); 4458 #else 4459 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 4460 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4461 SCTP_STAT_INCR(sctps_sendhwcrc); 4462 #endif 4463 } 4464 /* send it out. table id is taken from stcb */ 4465 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4466 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4467 so = SCTP_INP_SO(inp); 4468 SCTP_SOCKET_UNLOCK(so, 0); 4469 } 4470 #endif 4471 #ifdef SCTP_PACKET_LOGGING 4472 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4473 sctp_packet_log(o_pak); 4474 #endif 4475 SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id); 4476 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4477 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4478 atomic_add_int(&stcb->asoc.refcnt, 1); 4479 SCTP_TCB_UNLOCK(stcb); 4480 SCTP_SOCKET_LOCK(so, 0); 4481 SCTP_TCB_LOCK(stcb); 4482 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4483 } 4484 #endif 4485 if (net) { 4486 /* for link local this must be done */ 4487 sin6->sin6_scope_id = prev_scope; 4488 sin6->sin6_port = prev_port; 4489 } 4490 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 4491 SCTP_STAT_INCR(sctps_sendpackets); 4492 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4493 if (ret) { 4494 SCTP_STAT_INCR(sctps_senderrors); 4495 } 4496 if (net == NULL) { 4497 /* Now if we had a temp route free it */ 4498 RO_RTFREE(ro); 4499 } else { 4500 /* 4501 * PMTU check versus smallest asoc MTU goes 4502 * here 4503 */ 4504 if (ro->ro_rt == NULL) { 4505 /* Route was freed */ 4506 if (net->ro._s_addr && 4507 net->src_addr_selected) { 4508 sctp_free_ifa(net->ro._s_addr); 4509 net->ro._s_addr = NULL; 4510 } 4511 net->src_addr_selected = 0; 4512 } 4513 if ((ro->ro_rt != NULL) && 4514 (net->ro._s_addr)) { 4515 uint32_t mtu; 4516 4517 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt); 4518 if (mtu && 4519 (stcb->asoc.smallest_mtu > mtu)) { 4520 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4521 net->mtu = mtu; 4522 if (net->port) { 4523 net->mtu -= sizeof(struct udphdr); 4524 } 4525 } 4526 } else if (ifp) { 4527 if (ND_IFINFO(ifp)->linkmtu && 4528 (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) { 4529 sctp_mtu_size_reset(inp, 4530 &stcb->asoc, 4531 ND_IFINFO(ifp)->linkmtu); 4532 } 4533 } 4534 } 4535 return (ret); 4536 } 4537 #endif 4538 default: 4539 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 4540 ((struct sockaddr *)to)->sa_family); 4541 sctp_m_freem(m); 4542 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4543 return (EFAULT); 4544 } 4545 } 4546 4547 4548 void 4549 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked 4550 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 4551 SCTP_UNUSED 4552 #endif 4553 ) 4554 { 4555 struct mbuf *m; 4556 struct sctp_nets *net; 4557 struct sctp_init_chunk *init; 4558 struct sctp_supported_addr_param *sup_addr; 4559 struct sctp_adaptation_layer_indication *ali; 4560 struct sctp_supported_chunk_types_param *pr_supported; 4561 struct sctp_paramhdr *ph; 4562 int cnt_inits_to = 0; 4563 int ret; 4564 uint16_t num_ext, chunk_len, padding_len, parameter_len; 4565 4566 /* INIT's always go to the primary (and usually ONLY address) */ 4567 net = stcb->asoc.primary_destination; 4568 if (net == NULL) { 4569 net = TAILQ_FIRST(&stcb->asoc.nets); 4570 if (net == NULL) { 4571 /* TSNH */ 4572 return; 4573 } 4574 /* we confirm any address we send an INIT to */ 4575 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4576 (void)sctp_set_primary_addr(stcb, NULL, net); 4577 } else { 4578 /* we confirm any address we send an INIT to */ 4579 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4580 } 4581 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n"); 4582 #ifdef INET6 4583 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4584 /* 4585 * special hook, if we are sending to link local it will not 4586 * show up in our private address count. 4587 */ 4588 if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr)) 4589 cnt_inits_to = 1; 4590 } 4591 #endif 4592 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 4593 /* This case should not happen */ 4594 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n"); 4595 return; 4596 } 4597 /* start the INIT timer */ 4598 sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net); 4599 4600 m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA); 4601 if (m == NULL) { 4602 /* No memory, INIT timer will re-attempt. */ 4603 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n"); 4604 return; 4605 } 4606 chunk_len = (uint16_t) sizeof(struct sctp_init_chunk); 4607 padding_len = 0; 4608 /* 4609 * assume peer supports asconf in order to be able to queue local 4610 * address changes while an INIT is in flight and before the assoc 4611 * is established. 4612 */ 4613 stcb->asoc.peer_supports_asconf = 1; 4614 /* Now lets put the chunk header in place */ 4615 init = mtod(m, struct sctp_init_chunk *); 4616 /* now the chunk header */ 4617 init->ch.chunk_type = SCTP_INITIATION; 4618 init->ch.chunk_flags = 0; 4619 /* fill in later from mbuf we build */ 4620 init->ch.chunk_length = 0; 4621 /* place in my tag */ 4622 init->init.initiate_tag = htonl(stcb->asoc.my_vtag); 4623 /* set up some of the credits. */ 4624 init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0, 4625 SCTP_MINIMAL_RWND)); 4626 init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams); 4627 init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams); 4628 init->init.initial_tsn = htonl(stcb->asoc.init_seq_number); 4629 4630 if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) { 4631 uint8_t i; 4632 4633 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr); 4634 if (stcb->asoc.scope.ipv4_addr_legal) { 4635 parameter_len += (uint16_t) sizeof(uint16_t); 4636 } 4637 if (stcb->asoc.scope.ipv6_addr_legal) { 4638 parameter_len += (uint16_t) sizeof(uint16_t); 4639 } 4640 sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len); 4641 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE); 4642 sup_addr->ph.param_length = htons(parameter_len); 4643 i = 0; 4644 if (stcb->asoc.scope.ipv4_addr_legal) { 4645 sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS); 4646 } 4647 if (stcb->asoc.scope.ipv6_addr_legal) { 4648 sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS); 4649 } 4650 padding_len = 4 - 2 * i; 4651 chunk_len += parameter_len; 4652 } 4653 /* Adaptation layer indication parameter */ 4654 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 4655 if (padding_len > 0) { 4656 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4657 chunk_len += padding_len; 4658 padding_len = 0; 4659 } 4660 parameter_len = (uint16_t) sizeof(struct sctp_adaptation_layer_indication); 4661 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 4662 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 4663 ali->ph.param_length = htons(parameter_len); 4664 ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator); 4665 chunk_len += parameter_len; 4666 } 4667 if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) { 4668 /* Add NAT friendly parameter. */ 4669 if (padding_len > 0) { 4670 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4671 chunk_len += padding_len; 4672 padding_len = 0; 4673 } 4674 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr); 4675 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4676 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 4677 ph->param_length = htons(parameter_len); 4678 chunk_len += parameter_len; 4679 } 4680 /* now any cookie time extensions */ 4681 if (stcb->asoc.cookie_preserve_req) { 4682 struct sctp_cookie_perserve_param *cookie_preserve; 4683 4684 if (padding_len > 0) { 4685 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4686 chunk_len += padding_len; 4687 padding_len = 0; 4688 } 4689 parameter_len = (uint16_t) sizeof(struct sctp_cookie_perserve_param); 4690 cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len); 4691 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE); 4692 cookie_preserve->ph.param_length = htons(parameter_len); 4693 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req); 4694 stcb->asoc.cookie_preserve_req = 0; 4695 chunk_len += parameter_len; 4696 } 4697 /* ECN parameter */ 4698 if (stcb->asoc.ecn_allowed == 1) { 4699 if (padding_len > 0) { 4700 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4701 chunk_len += padding_len; 4702 padding_len = 0; 4703 } 4704 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr); 4705 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4706 ph->param_type = htons(SCTP_ECN_CAPABLE); 4707 ph->param_length = htons(parameter_len); 4708 chunk_len += parameter_len; 4709 } 4710 /* And now tell the peer we do support PR-SCTP. */ 4711 if (padding_len > 0) { 4712 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4713 chunk_len += padding_len; 4714 padding_len = 0; 4715 } 4716 parameter_len = (uint16_t) sizeof(struct sctp_paramhdr); 4717 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4718 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 4719 ph->param_length = htons(parameter_len); 4720 chunk_len += parameter_len; 4721 4722 /* And now tell the peer we do all the extensions */ 4723 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 4724 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 4725 num_ext = 0; 4726 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 4727 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 4728 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 4729 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 4730 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 4731 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) { 4732 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 4733 } 4734 if (stcb->asoc.sctp_nr_sack_on_off == 1) { 4735 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 4736 } 4737 parameter_len = (uint16_t) sizeof(struct sctp_supported_chunk_types_param) + num_ext; 4738 pr_supported->ph.param_length = htons(parameter_len); 4739 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4740 chunk_len += parameter_len; 4741 4742 /* add authentication parameters */ 4743 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) { 4744 /* attach RANDOM parameter, if available */ 4745 if (stcb->asoc.authinfo.random != NULL) { 4746 struct sctp_auth_random *randp; 4747 4748 if (padding_len > 0) { 4749 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4750 chunk_len += padding_len; 4751 padding_len = 0; 4752 } 4753 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 4754 parameter_len = (uint16_t) sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len; 4755 /* random key already contains the header */ 4756 memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len); 4757 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4758 chunk_len += parameter_len; 4759 } 4760 /* add HMAC_ALGO parameter */ 4761 if ((stcb->asoc.local_hmacs != NULL) && 4762 (stcb->asoc.local_hmacs->num_algo > 0)) { 4763 struct sctp_auth_hmac_algo *hmacs; 4764 4765 if (padding_len > 0) { 4766 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4767 chunk_len += padding_len; 4768 padding_len = 0; 4769 } 4770 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 4771 parameter_len = (uint16_t) (sizeof(struct sctp_auth_hmac_algo) + 4772 stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t)); 4773 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 4774 hmacs->ph.param_length = htons(parameter_len); 4775 sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *) hmacs->hmac_ids); 4776 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4777 chunk_len += parameter_len; 4778 } 4779 /* add CHUNKS parameter */ 4780 if (sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks) > 0) { 4781 struct sctp_auth_chunk_list *chunks; 4782 4783 if (padding_len > 0) { 4784 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4785 chunk_len += padding_len; 4786 padding_len = 0; 4787 } 4788 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 4789 parameter_len = (uint16_t) (sizeof(struct sctp_auth_chunk_list) + 4790 sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks)); 4791 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 4792 chunks->ph.param_length = htons(parameter_len); 4793 sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types); 4794 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4795 chunk_len += parameter_len; 4796 } 4797 } 4798 SCTP_BUF_LEN(m) = chunk_len; 4799 4800 /* now the addresses */ 4801 /* 4802 * To optimize this we could put the scoping stuff into a structure 4803 * and remove the individual uint8's from the assoc structure. Then 4804 * we could just sifa in the address within the stcb. But for now 4805 * this is a quick hack to get the address stuff teased apart. 4806 */ 4807 sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, m, cnt_inits_to, &padding_len, &chunk_len); 4808 4809 init->ch.chunk_length = htons(chunk_len); 4810 if (padding_len > 0) { 4811 struct mbuf *m_at, *mp_last; 4812 4813 mp_last = NULL; 4814 for (m_at = m; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 4815 if (SCTP_BUF_NEXT(m_at) == NULL) 4816 mp_last = m_at; 4817 } 4818 if ((mp_last == NULL) || sctp_add_pad_tombuf(mp_last, padding_len)) { 4819 sctp_m_freem(m); 4820 return; 4821 } 4822 } 4823 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n"); 4824 ret = sctp_lowlevel_chunk_output(inp, stcb, net, 4825 (struct sockaddr *)&net->ro._l_addr, 4826 m, 0, NULL, 0, 0, 0, 0, 4827 inp->sctp_lport, stcb->rport, htonl(0), 4828 net->port, NULL, 4829 0, 0, 4830 so_locked); 4831 SCTPDBG(SCTP_DEBUG_OUTPUT4, "lowlevel_output - %d\n", ret); 4832 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 4833 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 4834 } 4835 4836 struct mbuf * 4837 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt, 4838 int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly) 4839 { 4840 /* 4841 * Given a mbuf containing an INIT or INIT-ACK with the param_offset 4842 * being equal to the beginning of the params i.e. (iphlen + 4843 * sizeof(struct sctp_init_msg) parse through the parameters to the 4844 * end of the mbuf verifying that all parameters are known. 4845 * 4846 * For unknown parameters build and return a mbuf with 4847 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop 4848 * processing this chunk stop, and set *abort_processing to 1. 4849 * 4850 * By having param_offset be pre-set to where parameters begin it is 4851 * hoped that this routine may be reused in the future by new 4852 * features. 4853 */ 4854 struct sctp_paramhdr *phdr, params; 4855 4856 struct mbuf *mat, *op_err; 4857 char tempbuf[SCTP_PARAM_BUFFER_SIZE]; 4858 int at, limit, pad_needed; 4859 uint16_t ptype, plen, padded_size; 4860 int err_at; 4861 4862 *abort_processing = 0; 4863 mat = in_initpkt; 4864 err_at = 0; 4865 limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk); 4866 at = param_offset; 4867 op_err = NULL; 4868 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n"); 4869 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 4870 while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) { 4871 ptype = ntohs(phdr->param_type); 4872 plen = ntohs(phdr->param_length); 4873 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) { 4874 /* wacked parameter */ 4875 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen); 4876 goto invalid_size; 4877 } 4878 limit -= SCTP_SIZE32(plen); 4879 /*- 4880 * All parameters for all chunks that we know/understand are 4881 * listed here. We process them other places and make 4882 * appropriate stop actions per the upper bits. However this 4883 * is the generic routine processor's can call to get back 4884 * an operr.. to either incorporate (init-ack) or send. 4885 */ 4886 padded_size = SCTP_SIZE32(plen); 4887 switch (ptype) { 4888 /* Param's with variable size */ 4889 case SCTP_HEARTBEAT_INFO: 4890 case SCTP_STATE_COOKIE: 4891 case SCTP_UNRECOG_PARAM: 4892 case SCTP_ERROR_CAUSE_IND: 4893 /* ok skip fwd */ 4894 at += padded_size; 4895 break; 4896 /* Param's with variable size within a range */ 4897 case SCTP_CHUNK_LIST: 4898 case SCTP_SUPPORTED_CHUNK_EXT: 4899 if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) { 4900 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen); 4901 goto invalid_size; 4902 } 4903 at += padded_size; 4904 break; 4905 case SCTP_SUPPORTED_ADDRTYPE: 4906 if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) { 4907 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen); 4908 goto invalid_size; 4909 } 4910 at += padded_size; 4911 break; 4912 case SCTP_RANDOM: 4913 if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) { 4914 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen); 4915 goto invalid_size; 4916 } 4917 at += padded_size; 4918 break; 4919 case SCTP_SET_PRIM_ADDR: 4920 case SCTP_DEL_IP_ADDRESS: 4921 case SCTP_ADD_IP_ADDRESS: 4922 if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) && 4923 (padded_size != sizeof(struct sctp_asconf_addr_param))) { 4924 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen); 4925 goto invalid_size; 4926 } 4927 at += padded_size; 4928 break; 4929 /* Param's with a fixed size */ 4930 case SCTP_IPV4_ADDRESS: 4931 if (padded_size != sizeof(struct sctp_ipv4addr_param)) { 4932 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen); 4933 goto invalid_size; 4934 } 4935 at += padded_size; 4936 break; 4937 case SCTP_IPV6_ADDRESS: 4938 if (padded_size != sizeof(struct sctp_ipv6addr_param)) { 4939 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen); 4940 goto invalid_size; 4941 } 4942 at += padded_size; 4943 break; 4944 case SCTP_COOKIE_PRESERVE: 4945 if (padded_size != sizeof(struct sctp_cookie_perserve_param)) { 4946 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen); 4947 goto invalid_size; 4948 } 4949 at += padded_size; 4950 break; 4951 case SCTP_HAS_NAT_SUPPORT: 4952 *nat_friendly = 1; 4953 /* fall through */ 4954 case SCTP_PRSCTP_SUPPORTED: 4955 4956 if (padded_size != sizeof(struct sctp_paramhdr)) { 4957 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen); 4958 goto invalid_size; 4959 } 4960 at += padded_size; 4961 break; 4962 case SCTP_ECN_CAPABLE: 4963 if (padded_size != sizeof(struct sctp_ecn_supported_param)) { 4964 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen); 4965 goto invalid_size; 4966 } 4967 at += padded_size; 4968 break; 4969 case SCTP_ULP_ADAPTATION: 4970 if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) { 4971 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen); 4972 goto invalid_size; 4973 } 4974 at += padded_size; 4975 break; 4976 case SCTP_SUCCESS_REPORT: 4977 if (padded_size != sizeof(struct sctp_asconf_paramhdr)) { 4978 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen); 4979 goto invalid_size; 4980 } 4981 at += padded_size; 4982 break; 4983 case SCTP_HOSTNAME_ADDRESS: 4984 { 4985 /* We can NOT handle HOST NAME addresses!! */ 4986 int l_len; 4987 4988 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n"); 4989 *abort_processing = 1; 4990 if (op_err == NULL) { 4991 /* Ok need to try to get a mbuf */ 4992 #ifdef INET6 4993 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 4994 #else 4995 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 4996 #endif 4997 l_len += plen; 4998 l_len += sizeof(struct sctp_paramhdr); 4999 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5000 if (op_err) { 5001 SCTP_BUF_LEN(op_err) = 0; 5002 /* 5003 * pre-reserve space for ip 5004 * and sctp header and 5005 * chunk hdr 5006 */ 5007 #ifdef INET6 5008 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5009 #else 5010 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5011 #endif 5012 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5013 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5014 } 5015 } 5016 if (op_err) { 5017 /* If we have space */ 5018 struct sctp_paramhdr s; 5019 5020 if (err_at % 4) { 5021 uint32_t cpthis = 0; 5022 5023 pad_needed = 4 - (err_at % 4); 5024 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5025 err_at += pad_needed; 5026 } 5027 s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR); 5028 s.param_length = htons(sizeof(s) + plen); 5029 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5030 err_at += sizeof(s); 5031 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen)); 5032 if (phdr == NULL) { 5033 sctp_m_freem(op_err); 5034 /* 5035 * we are out of memory but 5036 * we still need to have a 5037 * look at what to do (the 5038 * system is in trouble 5039 * though). 5040 */ 5041 return (NULL); 5042 } 5043 m_copyback(op_err, err_at, plen, (caddr_t)phdr); 5044 } 5045 return (op_err); 5046 break; 5047 } 5048 default: 5049 /* 5050 * we do not recognize the parameter figure out what 5051 * we do. 5052 */ 5053 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype); 5054 if ((ptype & 0x4000) == 0x4000) { 5055 /* Report bit is set?? */ 5056 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n"); 5057 if (op_err == NULL) { 5058 int l_len; 5059 5060 /* Ok need to try to get an mbuf */ 5061 #ifdef INET6 5062 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5063 #else 5064 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5065 #endif 5066 l_len += plen; 5067 l_len += sizeof(struct sctp_paramhdr); 5068 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5069 if (op_err) { 5070 SCTP_BUF_LEN(op_err) = 0; 5071 #ifdef INET6 5072 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5073 #else 5074 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5075 #endif 5076 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5077 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5078 } 5079 } 5080 if (op_err) { 5081 /* If we have space */ 5082 struct sctp_paramhdr s; 5083 5084 if (err_at % 4) { 5085 uint32_t cpthis = 0; 5086 5087 pad_needed = 4 - (err_at % 4); 5088 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5089 err_at += pad_needed; 5090 } 5091 s.param_type = htons(SCTP_UNRECOG_PARAM); 5092 s.param_length = htons(sizeof(s) + plen); 5093 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5094 err_at += sizeof(s); 5095 if (plen > sizeof(tempbuf)) { 5096 plen = sizeof(tempbuf); 5097 } 5098 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, min(sizeof(tempbuf), plen)); 5099 if (phdr == NULL) { 5100 sctp_m_freem(op_err); 5101 /* 5102 * we are out of memory but 5103 * we still need to have a 5104 * look at what to do (the 5105 * system is in trouble 5106 * though). 5107 */ 5108 op_err = NULL; 5109 goto more_processing; 5110 } 5111 m_copyback(op_err, err_at, plen, (caddr_t)phdr); 5112 err_at += plen; 5113 } 5114 } 5115 more_processing: 5116 if ((ptype & 0x8000) == 0x0000) { 5117 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n"); 5118 return (op_err); 5119 } else { 5120 /* skip this chunk and continue processing */ 5121 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n"); 5122 at += SCTP_SIZE32(plen); 5123 } 5124 break; 5125 5126 } 5127 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 5128 } 5129 return (op_err); 5130 invalid_size: 5131 SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n"); 5132 *abort_processing = 1; 5133 if ((op_err == NULL) && phdr) { 5134 int l_len; 5135 5136 #ifdef INET6 5137 l_len = sizeof(struct ip6_hdr) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5138 #else 5139 l_len = sizeof(struct ip) + sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 5140 #endif 5141 l_len += (2 * sizeof(struct sctp_paramhdr)); 5142 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5143 if (op_err) { 5144 SCTP_BUF_LEN(op_err) = 0; 5145 #ifdef INET6 5146 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5147 #else 5148 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5149 #endif 5150 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5151 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5152 } 5153 } 5154 if ((op_err) && phdr) { 5155 struct sctp_paramhdr s; 5156 5157 if (err_at % 4) { 5158 uint32_t cpthis = 0; 5159 5160 pad_needed = 4 - (err_at % 4); 5161 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5162 err_at += pad_needed; 5163 } 5164 s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 5165 s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr)); 5166 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5167 err_at += sizeof(s); 5168 /* Only copy back the p-hdr that caused the issue */ 5169 m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr); 5170 } 5171 return (op_err); 5172 } 5173 5174 static int 5175 sctp_are_there_new_addresses(struct sctp_association *asoc, 5176 struct mbuf *in_initpkt, int offset, struct sockaddr *src) 5177 { 5178 /* 5179 * Given a INIT packet, look through the packet to verify that there 5180 * are NO new addresses. As we go through the parameters add reports 5181 * of any un-understood parameters that require an error. Also we 5182 * must return (1) to drop the packet if we see a un-understood 5183 * parameter that tells us to drop the chunk. 5184 */ 5185 struct sockaddr *sa_touse; 5186 struct sockaddr *sa; 5187 struct sctp_paramhdr *phdr, params; 5188 uint16_t ptype, plen; 5189 uint8_t fnd; 5190 struct sctp_nets *net; 5191 5192 #ifdef INET 5193 struct sockaddr_in sin4, *sa4; 5194 5195 #endif 5196 #ifdef INET6 5197 struct sockaddr_in6 sin6, *sa6; 5198 5199 #endif 5200 5201 #ifdef INET 5202 memset(&sin4, 0, sizeof(sin4)); 5203 sin4.sin_family = AF_INET; 5204 sin4.sin_len = sizeof(sin4); 5205 #endif 5206 #ifdef INET6 5207 memset(&sin6, 0, sizeof(sin6)); 5208 sin6.sin6_family = AF_INET6; 5209 sin6.sin6_len = sizeof(sin6); 5210 #endif 5211 /* First what about the src address of the pkt ? */ 5212 fnd = 0; 5213 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5214 sa = (struct sockaddr *)&net->ro._l_addr; 5215 if (sa->sa_family == src->sa_family) { 5216 #ifdef INET 5217 if (sa->sa_family == AF_INET) { 5218 struct sockaddr_in *src4; 5219 5220 sa4 = (struct sockaddr_in *)sa; 5221 src4 = (struct sockaddr_in *)src; 5222 if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) { 5223 fnd = 1; 5224 break; 5225 } 5226 } 5227 #endif 5228 #ifdef INET6 5229 if (sa->sa_family == AF_INET6) { 5230 struct sockaddr_in6 *src6; 5231 5232 sa6 = (struct sockaddr_in6 *)sa; 5233 src6 = (struct sockaddr_in6 *)src; 5234 if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) { 5235 fnd = 1; 5236 break; 5237 } 5238 } 5239 #endif 5240 } 5241 } 5242 if (fnd == 0) { 5243 /* New address added! no need to look futher. */ 5244 return (1); 5245 } 5246 /* Ok so far lets munge through the rest of the packet */ 5247 offset += sizeof(struct sctp_init_chunk); 5248 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5249 while (phdr) { 5250 sa_touse = NULL; 5251 ptype = ntohs(phdr->param_type); 5252 plen = ntohs(phdr->param_length); 5253 switch (ptype) { 5254 #ifdef INET 5255 case SCTP_IPV4_ADDRESS: 5256 { 5257 struct sctp_ipv4addr_param *p4, p4_buf; 5258 5259 phdr = sctp_get_next_param(in_initpkt, offset, 5260 (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf)); 5261 if (plen != sizeof(struct sctp_ipv4addr_param) || 5262 phdr == NULL) { 5263 return (1); 5264 } 5265 p4 = (struct sctp_ipv4addr_param *)phdr; 5266 sin4.sin_addr.s_addr = p4->addr; 5267 sa_touse = (struct sockaddr *)&sin4; 5268 break; 5269 } 5270 #endif 5271 #ifdef INET6 5272 case SCTP_IPV6_ADDRESS: 5273 { 5274 struct sctp_ipv6addr_param *p6, p6_buf; 5275 5276 phdr = sctp_get_next_param(in_initpkt, offset, 5277 (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf)); 5278 if (plen != sizeof(struct sctp_ipv6addr_param) || 5279 phdr == NULL) { 5280 return (1); 5281 } 5282 p6 = (struct sctp_ipv6addr_param *)phdr; 5283 memcpy((caddr_t)&sin6.sin6_addr, p6->addr, 5284 sizeof(p6->addr)); 5285 sa_touse = (struct sockaddr *)&sin6; 5286 break; 5287 } 5288 #endif 5289 default: 5290 sa_touse = NULL; 5291 break; 5292 } 5293 if (sa_touse) { 5294 /* ok, sa_touse points to one to check */ 5295 fnd = 0; 5296 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5297 sa = (struct sockaddr *)&net->ro._l_addr; 5298 if (sa->sa_family != sa_touse->sa_family) { 5299 continue; 5300 } 5301 #ifdef INET 5302 if (sa->sa_family == AF_INET) { 5303 sa4 = (struct sockaddr_in *)sa; 5304 if (sa4->sin_addr.s_addr == 5305 sin4.sin_addr.s_addr) { 5306 fnd = 1; 5307 break; 5308 } 5309 } 5310 #endif 5311 #ifdef INET6 5312 if (sa->sa_family == AF_INET6) { 5313 sa6 = (struct sockaddr_in6 *)sa; 5314 if (SCTP6_ARE_ADDR_EQUAL( 5315 sa6, &sin6)) { 5316 fnd = 1; 5317 break; 5318 } 5319 } 5320 #endif 5321 } 5322 if (!fnd) { 5323 /* New addr added! no need to look further */ 5324 return (1); 5325 } 5326 } 5327 offset += SCTP_SIZE32(plen); 5328 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5329 } 5330 return (0); 5331 } 5332 5333 /* 5334 * Given a MBUF chain that was sent into us containing an INIT. Build a 5335 * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done 5336 * a pullup to include IPv6/4header, SCTP header and initial part of INIT 5337 * message (i.e. the struct sctp_init_msg). 5338 */ 5339 void 5340 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 5341 struct mbuf *init_pkt, int iphlen, int offset, 5342 struct sockaddr *src, struct sockaddr *dst, 5343 struct sctphdr *sh, struct sctp_init_chunk *init_chk, 5344 uint8_t use_mflowid, uint32_t mflowid, 5345 uint32_t vrf_id, uint16_t port, int hold_inp_lock) 5346 { 5347 struct sctp_association *asoc; 5348 struct mbuf *m, *m_at, *m_tmp, *m_cookie, *op_err, *mp_last; 5349 struct sctp_init_ack_chunk *initack; 5350 struct sctp_adaptation_layer_indication *ali; 5351 struct sctp_ecn_supported_param *ecn; 5352 struct sctp_prsctp_supported_param *prsctp; 5353 struct sctp_supported_chunk_types_param *pr_supported; 5354 union sctp_sockstore *over_addr; 5355 5356 #ifdef INET 5357 struct sockaddr_in *dst4 = (struct sockaddr_in *)dst; 5358 struct sockaddr_in *src4 = (struct sockaddr_in *)src; 5359 struct sockaddr_in *sin; 5360 5361 #endif 5362 #ifdef INET6 5363 struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst; 5364 struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src; 5365 struct sockaddr_in6 *sin6; 5366 5367 #endif 5368 struct sockaddr *to; 5369 struct sctp_state_cookie stc; 5370 struct sctp_nets *net = NULL; 5371 uint8_t *signature = NULL; 5372 int cnt_inits_to = 0; 5373 uint16_t his_limit, i_want; 5374 int abort_flag, padval; 5375 int num_ext; 5376 int p_len; 5377 int nat_friendly = 0; 5378 struct socket *so; 5379 5380 if (stcb) { 5381 asoc = &stcb->asoc; 5382 } else { 5383 asoc = NULL; 5384 } 5385 mp_last = NULL; 5386 if ((asoc != NULL) && 5387 (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT) && 5388 (sctp_are_there_new_addresses(asoc, init_pkt, offset, src))) { 5389 /* new addresses, out of here in non-cookie-wait states */ 5390 /* 5391 * Send a ABORT, we don't add the new address error clause 5392 * though we even set the T bit and copy in the 0 tag.. this 5393 * looks no different than if no listener was present. 5394 */ 5395 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, NULL, 5396 use_mflowid, mflowid, 5397 vrf_id, port); 5398 return; 5399 } 5400 abort_flag = 0; 5401 op_err = sctp_arethere_unrecognized_parameters(init_pkt, 5402 (offset + sizeof(struct sctp_init_chunk)), 5403 &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly); 5404 if (abort_flag) { 5405 do_a_abort: 5406 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 5407 init_chk->init.initiate_tag, op_err, 5408 use_mflowid, mflowid, 5409 vrf_id, port); 5410 return; 5411 } 5412 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 5413 if (m == NULL) { 5414 /* No memory, INIT timer will re-attempt. */ 5415 if (op_err) 5416 sctp_m_freem(op_err); 5417 return; 5418 } 5419 SCTP_BUF_LEN(m) = sizeof(struct sctp_init_chunk); 5420 5421 /* 5422 * We might not overwrite the identification[] completely and on 5423 * some platforms time_entered will contain some padding. Therefore 5424 * zero out the cookie to avoid putting uninitialized memory on the 5425 * wire. 5426 */ 5427 memset(&stc, 0, sizeof(struct sctp_state_cookie)); 5428 5429 /* the time I built cookie */ 5430 (void)SCTP_GETTIME_TIMEVAL(&stc.time_entered); 5431 5432 /* populate any tie tags */ 5433 if (asoc != NULL) { 5434 /* unlock before tag selections */ 5435 stc.tie_tag_my_vtag = asoc->my_vtag_nonce; 5436 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce; 5437 stc.cookie_life = asoc->cookie_life; 5438 net = asoc->primary_destination; 5439 } else { 5440 stc.tie_tag_my_vtag = 0; 5441 stc.tie_tag_peer_vtag = 0; 5442 /* life I will award this cookie */ 5443 stc.cookie_life = inp->sctp_ep.def_cookie_life; 5444 } 5445 5446 /* copy in the ports for later check */ 5447 stc.myport = sh->dest_port; 5448 stc.peerport = sh->src_port; 5449 5450 /* 5451 * If we wanted to honor cookie life extentions, we would add to 5452 * stc.cookie_life. For now we should NOT honor any extension 5453 */ 5454 stc.site_scope = stc.local_scope = stc.loopback_scope = 0; 5455 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5456 stc.ipv6_addr_legal = 1; 5457 if (SCTP_IPV6_V6ONLY(inp)) { 5458 stc.ipv4_addr_legal = 0; 5459 } else { 5460 stc.ipv4_addr_legal = 1; 5461 } 5462 } else { 5463 stc.ipv6_addr_legal = 0; 5464 stc.ipv4_addr_legal = 1; 5465 } 5466 #ifdef SCTP_DONT_DO_PRIVADDR_SCOPE 5467 stc.ipv4_scope = 1; 5468 #else 5469 stc.ipv4_scope = 0; 5470 #endif 5471 if (net == NULL) { 5472 to = src; 5473 switch (dst->sa_family) { 5474 #ifdef INET 5475 case AF_INET: 5476 { 5477 /* lookup address */ 5478 stc.address[0] = src4->sin_addr.s_addr; 5479 stc.address[1] = 0; 5480 stc.address[2] = 0; 5481 stc.address[3] = 0; 5482 stc.addr_type = SCTP_IPV4_ADDRESS; 5483 /* local from address */ 5484 stc.laddress[0] = dst4->sin_addr.s_addr; 5485 stc.laddress[1] = 0; 5486 stc.laddress[2] = 0; 5487 stc.laddress[3] = 0; 5488 stc.laddr_type = SCTP_IPV4_ADDRESS; 5489 /* scope_id is only for v6 */ 5490 stc.scope_id = 0; 5491 #ifndef SCTP_DONT_DO_PRIVADDR_SCOPE 5492 if (IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) { 5493 stc.ipv4_scope = 1; 5494 } 5495 #else 5496 stc.ipv4_scope = 1; 5497 #endif /* SCTP_DONT_DO_PRIVADDR_SCOPE */ 5498 /* Must use the address in this case */ 5499 if (sctp_is_address_on_local_host(src, vrf_id)) { 5500 stc.loopback_scope = 1; 5501 stc.ipv4_scope = 1; 5502 stc.site_scope = 1; 5503 stc.local_scope = 0; 5504 } 5505 break; 5506 } 5507 #endif 5508 #ifdef INET6 5509 case AF_INET6: 5510 { 5511 stc.addr_type = SCTP_IPV6_ADDRESS; 5512 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr)); 5513 stc.scope_id = in6_getscope(&src6->sin6_addr); 5514 if (sctp_is_address_on_local_host(src, vrf_id)) { 5515 stc.loopback_scope = 1; 5516 stc.local_scope = 0; 5517 stc.site_scope = 1; 5518 stc.ipv4_scope = 1; 5519 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr)) { 5520 /* 5521 * If the new destination is a 5522 * LINK_LOCAL we must have common 5523 * both site and local scope. Don't 5524 * set local scope though since we 5525 * must depend on the source to be 5526 * added implicitly. We cannot 5527 * assure just because we share one 5528 * link that all links are common. 5529 */ 5530 stc.local_scope = 0; 5531 stc.site_scope = 1; 5532 stc.ipv4_scope = 1; 5533 /* 5534 * we start counting for the private 5535 * address stuff at 1. since the 5536 * link local we source from won't 5537 * show up in our scoped count. 5538 */ 5539 cnt_inits_to = 1; 5540 /* 5541 * pull out the scope_id from 5542 * incoming pkt 5543 */ 5544 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr)) { 5545 /* 5546 * If the new destination is 5547 * SITE_LOCAL then we must have site 5548 * scope in common. 5549 */ 5550 stc.site_scope = 1; 5551 } 5552 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr)); 5553 stc.laddr_type = SCTP_IPV6_ADDRESS; 5554 break; 5555 } 5556 #endif 5557 default: 5558 /* TSNH */ 5559 goto do_a_abort; 5560 break; 5561 } 5562 } else { 5563 /* set the scope per the existing tcb */ 5564 5565 #ifdef INET6 5566 struct sctp_nets *lnet; 5567 5568 #endif 5569 5570 stc.loopback_scope = asoc->scope.loopback_scope; 5571 stc.ipv4_scope = asoc->scope.ipv4_local_scope; 5572 stc.site_scope = asoc->scope.site_scope; 5573 stc.local_scope = asoc->scope.local_scope; 5574 #ifdef INET6 5575 /* Why do we not consider IPv4 LL addresses? */ 5576 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 5577 if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) { 5578 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) { 5579 /* 5580 * if we have a LL address, start 5581 * counting at 1. 5582 */ 5583 cnt_inits_to = 1; 5584 } 5585 } 5586 } 5587 #endif 5588 /* use the net pointer */ 5589 to = (struct sockaddr *)&net->ro._l_addr; 5590 switch (to->sa_family) { 5591 #ifdef INET 5592 case AF_INET: 5593 sin = (struct sockaddr_in *)to; 5594 stc.address[0] = sin->sin_addr.s_addr; 5595 stc.address[1] = 0; 5596 stc.address[2] = 0; 5597 stc.address[3] = 0; 5598 stc.addr_type = SCTP_IPV4_ADDRESS; 5599 if (net->src_addr_selected == 0) { 5600 /* 5601 * strange case here, the INIT should have 5602 * did the selection. 5603 */ 5604 net->ro._s_addr = sctp_source_address_selection(inp, 5605 stcb, (sctp_route_t *) & net->ro, 5606 net, 0, vrf_id); 5607 if (net->ro._s_addr == NULL) 5608 return; 5609 5610 net->src_addr_selected = 1; 5611 5612 } 5613 stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr; 5614 stc.laddress[1] = 0; 5615 stc.laddress[2] = 0; 5616 stc.laddress[3] = 0; 5617 stc.laddr_type = SCTP_IPV4_ADDRESS; 5618 /* scope_id is only for v6 */ 5619 stc.scope_id = 0; 5620 break; 5621 #endif 5622 #ifdef INET6 5623 case AF_INET6: 5624 sin6 = (struct sockaddr_in6 *)to; 5625 memcpy(&stc.address, &sin6->sin6_addr, 5626 sizeof(struct in6_addr)); 5627 stc.addr_type = SCTP_IPV6_ADDRESS; 5628 stc.scope_id = sin6->sin6_scope_id; 5629 if (net->src_addr_selected == 0) { 5630 /* 5631 * strange case here, the INIT should have 5632 * done the selection. 5633 */ 5634 net->ro._s_addr = sctp_source_address_selection(inp, 5635 stcb, (sctp_route_t *) & net->ro, 5636 net, 0, vrf_id); 5637 if (net->ro._s_addr == NULL) 5638 return; 5639 5640 net->src_addr_selected = 1; 5641 } 5642 memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr, 5643 sizeof(struct in6_addr)); 5644 stc.laddr_type = SCTP_IPV6_ADDRESS; 5645 break; 5646 #endif 5647 } 5648 } 5649 /* Now lets put the SCTP header in place */ 5650 initack = mtod(m, struct sctp_init_ack_chunk *); 5651 /* Save it off for quick ref */ 5652 stc.peers_vtag = init_chk->init.initiate_tag; 5653 /* who are we */ 5654 memcpy(stc.identification, SCTP_VERSION_STRING, 5655 min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification))); 5656 memset(stc.reserved, 0, SCTP_RESERVE_SPACE); 5657 /* now the chunk header */ 5658 initack->ch.chunk_type = SCTP_INITIATION_ACK; 5659 initack->ch.chunk_flags = 0; 5660 /* fill in later from mbuf we build */ 5661 initack->ch.chunk_length = 0; 5662 /* place in my tag */ 5663 if ((asoc != NULL) && 5664 ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 5665 (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) || 5666 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) { 5667 /* re-use the v-tags and init-seq here */ 5668 initack->init.initiate_tag = htonl(asoc->my_vtag); 5669 initack->init.initial_tsn = htonl(asoc->init_seq_number); 5670 } else { 5671 uint32_t vtag, itsn; 5672 5673 if (hold_inp_lock) { 5674 SCTP_INP_INCR_REF(inp); 5675 SCTP_INP_RUNLOCK(inp); 5676 } 5677 if (asoc) { 5678 atomic_add_int(&asoc->refcnt, 1); 5679 SCTP_TCB_UNLOCK(stcb); 5680 new_tag: 5681 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5682 if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) { 5683 /* 5684 * Got a duplicate vtag on some guy behind a 5685 * nat make sure we don't use it. 5686 */ 5687 goto new_tag; 5688 } 5689 initack->init.initiate_tag = htonl(vtag); 5690 /* get a TSN to use too */ 5691 itsn = sctp_select_initial_TSN(&inp->sctp_ep); 5692 initack->init.initial_tsn = htonl(itsn); 5693 SCTP_TCB_LOCK(stcb); 5694 atomic_add_int(&asoc->refcnt, -1); 5695 } else { 5696 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5697 initack->init.initiate_tag = htonl(vtag); 5698 /* get a TSN to use too */ 5699 initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep)); 5700 } 5701 if (hold_inp_lock) { 5702 SCTP_INP_RLOCK(inp); 5703 SCTP_INP_DECR_REF(inp); 5704 } 5705 } 5706 /* save away my tag to */ 5707 stc.my_vtag = initack->init.initiate_tag; 5708 5709 /* set up some of the credits. */ 5710 so = inp->sctp_socket; 5711 if (so == NULL) { 5712 /* memory problem */ 5713 sctp_m_freem(m); 5714 return; 5715 } else { 5716 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND)); 5717 } 5718 /* set what I want */ 5719 his_limit = ntohs(init_chk->init.num_inbound_streams); 5720 /* choose what I want */ 5721 if (asoc != NULL) { 5722 if (asoc->streamoutcnt > inp->sctp_ep.pre_open_stream_count) { 5723 i_want = asoc->streamoutcnt; 5724 } else { 5725 i_want = inp->sctp_ep.pre_open_stream_count; 5726 } 5727 } else { 5728 i_want = inp->sctp_ep.pre_open_stream_count; 5729 } 5730 if (his_limit < i_want) { 5731 /* I Want more :< */ 5732 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams; 5733 } else { 5734 /* I can have what I want :> */ 5735 initack->init.num_outbound_streams = htons(i_want); 5736 } 5737 /* tell him his limit. */ 5738 initack->init.num_inbound_streams = 5739 htons(inp->sctp_ep.max_open_streams_intome); 5740 5741 /* adaptation layer indication parameter */ 5742 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 5743 ali = (struct sctp_adaptation_layer_indication *)((caddr_t)initack + sizeof(*initack)); 5744 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 5745 ali->ph.param_length = htons(sizeof(*ali)); 5746 ali->indication = ntohl(inp->sctp_ep.adaptation_layer_indicator); 5747 SCTP_BUF_LEN(m) += sizeof(*ali); 5748 ecn = (struct sctp_ecn_supported_param *)((caddr_t)ali + sizeof(*ali)); 5749 } else { 5750 ecn = (struct sctp_ecn_supported_param *)((caddr_t)initack + sizeof(*initack)); 5751 } 5752 5753 /* ECN parameter */ 5754 if (((asoc != NULL) && (asoc->ecn_allowed == 1)) || 5755 (inp->sctp_ecn_enable == 1)) { 5756 ecn->ph.param_type = htons(SCTP_ECN_CAPABLE); 5757 ecn->ph.param_length = htons(sizeof(*ecn)); 5758 SCTP_BUF_LEN(m) += sizeof(*ecn); 5759 5760 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn + 5761 sizeof(*ecn)); 5762 } else { 5763 prsctp = (struct sctp_prsctp_supported_param *)((caddr_t)ecn); 5764 } 5765 /* And now tell the peer we do pr-sctp */ 5766 prsctp->ph.param_type = htons(SCTP_PRSCTP_SUPPORTED); 5767 prsctp->ph.param_length = htons(sizeof(*prsctp)); 5768 SCTP_BUF_LEN(m) += sizeof(*prsctp); 5769 if (nat_friendly) { 5770 /* Add NAT friendly parameter */ 5771 struct sctp_paramhdr *ph; 5772 5773 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5774 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 5775 ph->param_length = htons(sizeof(struct sctp_paramhdr)); 5776 SCTP_BUF_LEN(m) += sizeof(struct sctp_paramhdr); 5777 } 5778 /* And now tell the peer we do all the extensions */ 5779 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5780 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 5781 num_ext = 0; 5782 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 5783 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 5784 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 5785 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 5786 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 5787 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) 5788 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 5789 if (SCTP_BASE_SYSCTL(sctp_nr_sack_on_off)) 5790 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 5791 p_len = sizeof(*pr_supported) + num_ext; 5792 pr_supported->ph.param_length = htons(p_len); 5793 bzero((caddr_t)pr_supported + p_len, SCTP_SIZE32(p_len) - p_len); 5794 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5795 5796 /* add authentication parameters */ 5797 if (!SCTP_BASE_SYSCTL(sctp_auth_disable)) { 5798 struct sctp_auth_random *randp; 5799 struct sctp_auth_hmac_algo *hmacs; 5800 struct sctp_auth_chunk_list *chunks; 5801 uint16_t random_len; 5802 5803 /* generate and add RANDOM parameter */ 5804 random_len = SCTP_AUTH_RANDOM_SIZE_DEFAULT; 5805 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5806 randp->ph.param_type = htons(SCTP_RANDOM); 5807 p_len = sizeof(*randp) + random_len; 5808 randp->ph.param_length = htons(p_len); 5809 SCTP_READ_RANDOM(randp->random_data, random_len); 5810 /* zero out any padding required */ 5811 bzero((caddr_t)randp + p_len, SCTP_SIZE32(p_len) - p_len); 5812 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5813 5814 /* add HMAC_ALGO parameter */ 5815 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5816 p_len = sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs, 5817 (uint8_t *) hmacs->hmac_ids); 5818 if (p_len > 0) { 5819 p_len += sizeof(*hmacs); 5820 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 5821 hmacs->ph.param_length = htons(p_len); 5822 /* zero out any padding required */ 5823 bzero((caddr_t)hmacs + p_len, SCTP_SIZE32(p_len) - p_len); 5824 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5825 } 5826 /* add CHUNKS parameter */ 5827 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+SCTP_BUF_LEN(m)); 5828 p_len = sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks, 5829 chunks->chunk_types); 5830 if (p_len > 0) { 5831 p_len += sizeof(*chunks); 5832 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 5833 chunks->ph.param_length = htons(p_len); 5834 /* zero out any padding required */ 5835 bzero((caddr_t)chunks + p_len, SCTP_SIZE32(p_len) - p_len); 5836 SCTP_BUF_LEN(m) += SCTP_SIZE32(p_len); 5837 } 5838 } 5839 m_at = m; 5840 /* now the addresses */ 5841 { 5842 struct sctp_scoping scp; 5843 5844 /* 5845 * To optimize this we could put the scoping stuff into a 5846 * structure and remove the individual uint8's from the stc 5847 * structure. Then we could just sifa in the address within 5848 * the stc.. but for now this is a quick hack to get the 5849 * address stuff teased apart. 5850 */ 5851 scp.ipv4_addr_legal = stc.ipv4_addr_legal; 5852 scp.ipv6_addr_legal = stc.ipv6_addr_legal; 5853 scp.loopback_scope = stc.loopback_scope; 5854 scp.ipv4_local_scope = stc.ipv4_scope; 5855 scp.local_scope = stc.local_scope; 5856 scp.site_scope = stc.site_scope; 5857 m_at = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_at, cnt_inits_to, NULL, NULL); 5858 } 5859 5860 /* tack on the operational error if present */ 5861 if (op_err) { 5862 struct mbuf *ol; 5863 int llen; 5864 5865 llen = 0; 5866 ol = op_err; 5867 5868 while (ol) { 5869 llen += SCTP_BUF_LEN(ol); 5870 ol = SCTP_BUF_NEXT(ol); 5871 } 5872 if (llen % 4) { 5873 /* must add a pad to the param */ 5874 uint32_t cpthis = 0; 5875 int padlen; 5876 5877 padlen = 4 - (llen % 4); 5878 m_copyback(op_err, llen, padlen, (caddr_t)&cpthis); 5879 } 5880 while (SCTP_BUF_NEXT(m_at) != NULL) { 5881 m_at = SCTP_BUF_NEXT(m_at); 5882 } 5883 SCTP_BUF_NEXT(m_at) = op_err; 5884 while (SCTP_BUF_NEXT(m_at) != NULL) { 5885 m_at = SCTP_BUF_NEXT(m_at); 5886 } 5887 } 5888 /* pre-calulate the size and update pkt header and chunk header */ 5889 p_len = 0; 5890 for (m_tmp = m; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 5891 p_len += SCTP_BUF_LEN(m_tmp); 5892 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 5893 /* m_tmp should now point to last one */ 5894 break; 5895 } 5896 } 5897 5898 /* Now we must build a cookie */ 5899 m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature); 5900 if (m_cookie == NULL) { 5901 /* memory problem */ 5902 sctp_m_freem(m); 5903 return; 5904 } 5905 /* Now append the cookie to the end and update the space/size */ 5906 SCTP_BUF_NEXT(m_tmp) = m_cookie; 5907 5908 for (m_tmp = m_cookie; m_tmp; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 5909 p_len += SCTP_BUF_LEN(m_tmp); 5910 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 5911 /* m_tmp should now point to last one */ 5912 mp_last = m_tmp; 5913 break; 5914 } 5915 } 5916 /* 5917 * Place in the size, but we don't include the last pad (if any) in 5918 * the INIT-ACK. 5919 */ 5920 initack->ch.chunk_length = htons(p_len); 5921 5922 /* 5923 * Time to sign the cookie, we don't sign over the cookie signature 5924 * though thus we set trailer. 5925 */ 5926 (void)sctp_hmac_m(SCTP_HMAC, 5927 (uint8_t *) inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)], 5928 SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr), 5929 (uint8_t *) signature, SCTP_SIGNATURE_SIZE); 5930 /* 5931 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return 5932 * here since the timer will drive a retranmission. 5933 */ 5934 padval = p_len % 4; 5935 if ((padval) && (mp_last)) { 5936 /* see my previous comments on mp_last */ 5937 if (sctp_add_pad_tombuf(mp_last, (4 - padval))) { 5938 /* Houston we have a problem, no space */ 5939 sctp_m_freem(m); 5940 return; 5941 } 5942 } 5943 if (stc.loopback_scope) { 5944 over_addr = (union sctp_sockstore *)dst; 5945 } else { 5946 over_addr = NULL; 5947 } 5948 5949 (void)sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0, 5950 0, 0, 5951 inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag, 5952 port, over_addr, 5953 use_mflowid, mflowid, 5954 SCTP_SO_NOT_LOCKED); 5955 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 5956 } 5957 5958 5959 static void 5960 sctp_prune_prsctp(struct sctp_tcb *stcb, 5961 struct sctp_association *asoc, 5962 struct sctp_sndrcvinfo *srcv, 5963 int dataout) 5964 { 5965 int freed_spc = 0; 5966 struct sctp_tmit_chunk *chk, *nchk; 5967 5968 SCTP_TCB_LOCK_ASSERT(stcb); 5969 if ((asoc->peer_supports_prsctp) && 5970 (asoc->sent_queue_cnt_removeable > 0)) { 5971 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 5972 /* 5973 * Look for chunks marked with the PR_SCTP flag AND 5974 * the buffer space flag. If the one being sent is 5975 * equal or greater priority then purge the old one 5976 * and free some space. 5977 */ 5978 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 5979 /* 5980 * This one is PR-SCTP AND buffer space 5981 * limited type 5982 */ 5983 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 5984 /* 5985 * Lower numbers equates to higher 5986 * priority so if the one we are 5987 * looking at has a larger or equal 5988 * priority we want to drop the data 5989 * and NOT retransmit it. 5990 */ 5991 if (chk->data) { 5992 /* 5993 * We release the book_size 5994 * if the mbuf is here 5995 */ 5996 int ret_spc; 5997 uint8_t sent; 5998 5999 if (chk->sent > SCTP_DATAGRAM_UNSENT) 6000 sent = 1; 6001 else 6002 sent = 0; 6003 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6004 sent, 6005 SCTP_SO_LOCKED); 6006 freed_spc += ret_spc; 6007 if (freed_spc >= dataout) { 6008 return; 6009 } 6010 } /* if chunk was present */ 6011 } /* if of sufficent priority */ 6012 } /* if chunk has enabled */ 6013 } /* tailqforeach */ 6014 6015 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 6016 /* Here we must move to the sent queue and mark */ 6017 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6018 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 6019 if (chk->data) { 6020 /* 6021 * We release the book_size 6022 * if the mbuf is here 6023 */ 6024 int ret_spc; 6025 6026 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6027 0, SCTP_SO_LOCKED); 6028 6029 freed_spc += ret_spc; 6030 if (freed_spc >= dataout) { 6031 return; 6032 } 6033 } /* end if chk->data */ 6034 } /* end if right class */ 6035 } /* end if chk pr-sctp */ 6036 } /* tailqforeachsafe (chk) */ 6037 } /* if enabled in asoc */ 6038 } 6039 6040 int 6041 sctp_get_frag_point(struct sctp_tcb *stcb, 6042 struct sctp_association *asoc) 6043 { 6044 int siz, ovh; 6045 6046 /* 6047 * For endpoints that have both v6 and v4 addresses we must reserve 6048 * room for the ipv6 header, for those that are only dealing with V4 6049 * we use a larger frag point. 6050 */ 6051 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6052 ovh = SCTP_MED_OVERHEAD; 6053 } else { 6054 ovh = SCTP_MED_V4_OVERHEAD; 6055 } 6056 6057 if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu) 6058 siz = asoc->smallest_mtu - ovh; 6059 else 6060 siz = (stcb->asoc.sctp_frag_point - ovh); 6061 /* 6062 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) { 6063 */ 6064 /* A data chunk MUST fit in a cluster */ 6065 /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */ 6066 /* } */ 6067 6068 /* adjust for an AUTH chunk if DATA requires auth */ 6069 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) 6070 siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 6071 6072 if (siz % 4) { 6073 /* make it an even word boundary please */ 6074 siz -= (siz % 4); 6075 } 6076 return (siz); 6077 } 6078 6079 static void 6080 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp) 6081 { 6082 /* 6083 * We assume that the user wants PR_SCTP_TTL if the user provides a 6084 * positive lifetime but does not specify any PR_SCTP policy. 6085 */ 6086 if (PR_SCTP_ENABLED(sp->sinfo_flags)) { 6087 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6088 } else if (sp->timetolive > 0) { 6089 sp->sinfo_flags |= SCTP_PR_SCTP_TTL; 6090 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6091 } else { 6092 return; 6093 } 6094 switch (PR_SCTP_POLICY(sp->sinfo_flags)) { 6095 case CHUNK_FLAGS_PR_SCTP_BUF: 6096 /* 6097 * Time to live is a priority stored in tv_sec when doing 6098 * the buffer drop thing. 6099 */ 6100 sp->ts.tv_sec = sp->timetolive; 6101 sp->ts.tv_usec = 0; 6102 break; 6103 case CHUNK_FLAGS_PR_SCTP_TTL: 6104 { 6105 struct timeval tv; 6106 6107 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6108 tv.tv_sec = sp->timetolive / 1000; 6109 tv.tv_usec = (sp->timetolive * 1000) % 1000000; 6110 /* 6111 * TODO sctp_constants.h needs alternative time 6112 * macros when _KERNEL is undefined. 6113 */ 6114 timevaladd(&sp->ts, &tv); 6115 } 6116 break; 6117 case CHUNK_FLAGS_PR_SCTP_RTX: 6118 /* 6119 * Time to live is a the number or retransmissions stored in 6120 * tv_sec. 6121 */ 6122 sp->ts.tv_sec = sp->timetolive; 6123 sp->ts.tv_usec = 0; 6124 break; 6125 default: 6126 SCTPDBG(SCTP_DEBUG_USRREQ1, 6127 "Unknown PR_SCTP policy %u.\n", 6128 PR_SCTP_POLICY(sp->sinfo_flags)); 6129 break; 6130 } 6131 } 6132 6133 static int 6134 sctp_msg_append(struct sctp_tcb *stcb, 6135 struct sctp_nets *net, 6136 struct mbuf *m, 6137 struct sctp_sndrcvinfo *srcv, int hold_stcb_lock) 6138 { 6139 int error = 0; 6140 struct mbuf *at; 6141 struct sctp_stream_queue_pending *sp = NULL; 6142 struct sctp_stream_out *strm; 6143 6144 /* 6145 * Given an mbuf chain, put it into the association send queue and 6146 * place it on the wheel 6147 */ 6148 if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) { 6149 /* Invalid stream number */ 6150 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6151 error = EINVAL; 6152 goto out_now; 6153 } 6154 if ((stcb->asoc.stream_locked) && 6155 (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) { 6156 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6157 error = EINVAL; 6158 goto out_now; 6159 } 6160 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 6161 /* Now can we send this? */ 6162 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) || 6163 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 6164 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 6165 (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) { 6166 /* got data while shutting down */ 6167 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 6168 error = ECONNRESET; 6169 goto out_now; 6170 } 6171 sctp_alloc_a_strmoq(stcb, sp); 6172 if (sp == NULL) { 6173 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6174 error = ENOMEM; 6175 goto out_now; 6176 } 6177 sp->sinfo_flags = srcv->sinfo_flags; 6178 sp->timetolive = srcv->sinfo_timetolive; 6179 sp->ppid = srcv->sinfo_ppid; 6180 sp->context = srcv->sinfo_context; 6181 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 6182 sp->net = net; 6183 atomic_add_int(&sp->net->ref_count, 1); 6184 } else { 6185 sp->net = NULL; 6186 } 6187 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6188 sp->stream = srcv->sinfo_stream; 6189 sp->msg_is_complete = 1; 6190 sp->sender_all_done = 1; 6191 sp->some_taken = 0; 6192 sp->data = m; 6193 sp->tail_mbuf = NULL; 6194 sctp_set_prsctp_policy(sp); 6195 /* 6196 * We could in theory (for sendall) sifa the length in, but we would 6197 * still have to hunt through the chain since we need to setup the 6198 * tail_mbuf 6199 */ 6200 sp->length = 0; 6201 for (at = m; at; at = SCTP_BUF_NEXT(at)) { 6202 if (SCTP_BUF_NEXT(at) == NULL) 6203 sp->tail_mbuf = at; 6204 sp->length += SCTP_BUF_LEN(at); 6205 } 6206 if (srcv->sinfo_keynumber_valid) { 6207 sp->auth_keyid = srcv->sinfo_keynumber; 6208 } else { 6209 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 6210 } 6211 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 6212 sctp_auth_key_acquire(stcb, sp->auth_keyid); 6213 sp->holds_key_ref = 1; 6214 } 6215 if (hold_stcb_lock == 0) { 6216 SCTP_TCB_SEND_LOCK(stcb); 6217 } 6218 sctp_snd_sb_alloc(stcb, sp->length); 6219 atomic_add_int(&stcb->asoc.stream_queue_cnt, 1); 6220 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 6221 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1); 6222 m = NULL; 6223 if (hold_stcb_lock == 0) { 6224 SCTP_TCB_SEND_UNLOCK(stcb); 6225 } 6226 out_now: 6227 if (m) { 6228 sctp_m_freem(m); 6229 } 6230 return (error); 6231 } 6232 6233 6234 static struct mbuf * 6235 sctp_copy_mbufchain(struct mbuf *clonechain, 6236 struct mbuf *outchain, 6237 struct mbuf **endofchain, 6238 int can_take_mbuf, 6239 int sizeofcpy, 6240 uint8_t copy_by_ref) 6241 { 6242 struct mbuf *m; 6243 struct mbuf *appendchain; 6244 caddr_t cp; 6245 int len; 6246 6247 if (endofchain == NULL) { 6248 /* error */ 6249 error_out: 6250 if (outchain) 6251 sctp_m_freem(outchain); 6252 return (NULL); 6253 } 6254 if (can_take_mbuf) { 6255 appendchain = clonechain; 6256 } else { 6257 if (!copy_by_ref && 6258 (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN))) 6259 ) { 6260 /* Its not in a cluster */ 6261 if (*endofchain == NULL) { 6262 /* lets get a mbuf cluster */ 6263 if (outchain == NULL) { 6264 /* This is the general case */ 6265 new_mbuf: 6266 outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6267 if (outchain == NULL) { 6268 goto error_out; 6269 } 6270 SCTP_BUF_LEN(outchain) = 0; 6271 *endofchain = outchain; 6272 /* get the prepend space */ 6273 SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4)); 6274 } else { 6275 /* 6276 * We really should not get a NULL 6277 * in endofchain 6278 */ 6279 /* find end */ 6280 m = outchain; 6281 while (m) { 6282 if (SCTP_BUF_NEXT(m) == NULL) { 6283 *endofchain = m; 6284 break; 6285 } 6286 m = SCTP_BUF_NEXT(m); 6287 } 6288 /* sanity */ 6289 if (*endofchain == NULL) { 6290 /* 6291 * huh, TSNH XXX maybe we 6292 * should panic 6293 */ 6294 sctp_m_freem(outchain); 6295 goto new_mbuf; 6296 } 6297 } 6298 /* get the new end of length */ 6299 len = M_TRAILINGSPACE(*endofchain); 6300 } else { 6301 /* how much is left at the end? */ 6302 len = M_TRAILINGSPACE(*endofchain); 6303 } 6304 /* Find the end of the data, for appending */ 6305 cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain))); 6306 6307 /* Now lets copy it out */ 6308 if (len >= sizeofcpy) { 6309 /* It all fits, copy it in */ 6310 m_copydata(clonechain, 0, sizeofcpy, cp); 6311 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6312 } else { 6313 /* fill up the end of the chain */ 6314 if (len > 0) { 6315 m_copydata(clonechain, 0, len, cp); 6316 SCTP_BUF_LEN((*endofchain)) += len; 6317 /* now we need another one */ 6318 sizeofcpy -= len; 6319 } 6320 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6321 if (m == NULL) { 6322 /* We failed */ 6323 goto error_out; 6324 } 6325 SCTP_BUF_NEXT((*endofchain)) = m; 6326 *endofchain = m; 6327 cp = mtod((*endofchain), caddr_t); 6328 m_copydata(clonechain, len, sizeofcpy, cp); 6329 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6330 } 6331 return (outchain); 6332 } else { 6333 /* copy the old fashion way */ 6334 appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT); 6335 #ifdef SCTP_MBUF_LOGGING 6336 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6337 struct mbuf *mat; 6338 6339 for (mat = appendchain; mat; mat = SCTP_BUF_NEXT(mat)) { 6340 if (SCTP_BUF_IS_EXTENDED(mat)) { 6341 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 6342 } 6343 } 6344 } 6345 #endif 6346 } 6347 } 6348 if (appendchain == NULL) { 6349 /* error */ 6350 if (outchain) 6351 sctp_m_freem(outchain); 6352 return (NULL); 6353 } 6354 if (outchain) { 6355 /* tack on to the end */ 6356 if (*endofchain != NULL) { 6357 SCTP_BUF_NEXT(((*endofchain))) = appendchain; 6358 } else { 6359 m = outchain; 6360 while (m) { 6361 if (SCTP_BUF_NEXT(m) == NULL) { 6362 SCTP_BUF_NEXT(m) = appendchain; 6363 break; 6364 } 6365 m = SCTP_BUF_NEXT(m); 6366 } 6367 } 6368 /* 6369 * save off the end and update the end-chain postion 6370 */ 6371 m = appendchain; 6372 while (m) { 6373 if (SCTP_BUF_NEXT(m) == NULL) { 6374 *endofchain = m; 6375 break; 6376 } 6377 m = SCTP_BUF_NEXT(m); 6378 } 6379 return (outchain); 6380 } else { 6381 /* save off the end and update the end-chain postion */ 6382 m = appendchain; 6383 while (m) { 6384 if (SCTP_BUF_NEXT(m) == NULL) { 6385 *endofchain = m; 6386 break; 6387 } 6388 m = SCTP_BUF_NEXT(m); 6389 } 6390 return (appendchain); 6391 } 6392 } 6393 6394 static int 6395 sctp_med_chunk_output(struct sctp_inpcb *inp, 6396 struct sctp_tcb *stcb, 6397 struct sctp_association *asoc, 6398 int *num_out, 6399 int *reason_code, 6400 int control_only, int from_where, 6401 struct timeval *now, int *now_filled, int frag_point, int so_locked 6402 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6403 SCTP_UNUSED 6404 #endif 6405 ); 6406 6407 static void 6408 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, 6409 uint32_t val SCTP_UNUSED) 6410 { 6411 struct sctp_copy_all *ca; 6412 struct mbuf *m; 6413 int ret = 0; 6414 int added_control = 0; 6415 int un_sent, do_chunk_output = 1; 6416 struct sctp_association *asoc; 6417 struct sctp_nets *net; 6418 6419 ca = (struct sctp_copy_all *)ptr; 6420 if (ca->m == NULL) { 6421 return; 6422 } 6423 if (ca->inp != inp) { 6424 /* TSNH */ 6425 return; 6426 } 6427 if (ca->sndlen > 0) { 6428 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT); 6429 if (m == NULL) { 6430 /* can't copy so we are done */ 6431 ca->cnt_failed++; 6432 return; 6433 } 6434 #ifdef SCTP_MBUF_LOGGING 6435 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6436 struct mbuf *mat; 6437 6438 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) { 6439 if (SCTP_BUF_IS_EXTENDED(mat)) { 6440 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 6441 } 6442 } 6443 } 6444 #endif 6445 } else { 6446 m = NULL; 6447 } 6448 SCTP_TCB_LOCK_ASSERT(stcb); 6449 if (stcb->asoc.alternate) { 6450 net = stcb->asoc.alternate; 6451 } else { 6452 net = stcb->asoc.primary_destination; 6453 } 6454 if (ca->sndrcv.sinfo_flags & SCTP_ABORT) { 6455 /* Abort this assoc with m as the user defined reason */ 6456 if (m != NULL) { 6457 SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT); 6458 } else { 6459 m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 6460 0, M_NOWAIT, 1, MT_DATA); 6461 SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr); 6462 } 6463 if (m != NULL) { 6464 struct sctp_paramhdr *ph; 6465 6466 ph = mtod(m, struct sctp_paramhdr *); 6467 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 6468 ph->param_length = htons(sizeof(struct sctp_paramhdr) + ca->sndlen); 6469 } 6470 /* 6471 * We add one here to keep the assoc from dis-appearing on 6472 * us. 6473 */ 6474 atomic_add_int(&stcb->asoc.refcnt, 1); 6475 sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED); 6476 /* 6477 * sctp_abort_an_association calls sctp_free_asoc() free 6478 * association will NOT free it since we incremented the 6479 * refcnt .. we do this to prevent it being freed and things 6480 * getting tricky since we could end up (from free_asoc) 6481 * calling inpcb_free which would get a recursive lock call 6482 * to the iterator lock.. But as a consequence of that the 6483 * stcb will return to us un-locked.. since free_asoc 6484 * returns with either no TCB or the TCB unlocked, we must 6485 * relock.. to unlock in the iterator timer :-0 6486 */ 6487 SCTP_TCB_LOCK(stcb); 6488 atomic_add_int(&stcb->asoc.refcnt, -1); 6489 goto no_chunk_output; 6490 } else { 6491 if (m) { 6492 ret = sctp_msg_append(stcb, net, m, 6493 &ca->sndrcv, 1); 6494 } 6495 asoc = &stcb->asoc; 6496 if (ca->sndrcv.sinfo_flags & SCTP_EOF) { 6497 /* shutdown this assoc */ 6498 int cnt; 6499 6500 cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED); 6501 6502 if (TAILQ_EMPTY(&asoc->send_queue) && 6503 TAILQ_EMPTY(&asoc->sent_queue) && 6504 (cnt == 0)) { 6505 if (asoc->locked_on_sending) { 6506 goto abort_anyway; 6507 } 6508 /* 6509 * there is nothing queued to send, so I'm 6510 * done... 6511 */ 6512 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 6513 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6514 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6515 /* 6516 * only send SHUTDOWN the first time 6517 * through 6518 */ 6519 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 6520 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 6521 } 6522 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 6523 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 6524 sctp_stop_timers_for_shutdown(stcb); 6525 sctp_send_shutdown(stcb, net); 6526 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 6527 net); 6528 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6529 asoc->primary_destination); 6530 added_control = 1; 6531 do_chunk_output = 0; 6532 } 6533 } else { 6534 /* 6535 * we still got (or just got) data to send, 6536 * so set SHUTDOWN_PENDING 6537 */ 6538 /* 6539 * XXX sockets draft says that SCTP_EOF 6540 * should be sent with no data. currently, 6541 * we will allow user data to be sent first 6542 * and move to SHUTDOWN-PENDING 6543 */ 6544 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 6545 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6546 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6547 if (asoc->locked_on_sending) { 6548 /* 6549 * Locked to send out the 6550 * data 6551 */ 6552 struct sctp_stream_queue_pending *sp; 6553 6554 sp = TAILQ_LAST(&asoc->locked_on_sending->outqueue, sctp_streamhead); 6555 if (sp) { 6556 if ((sp->length == 0) && (sp->msg_is_complete == 0)) 6557 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 6558 } 6559 } 6560 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 6561 if (TAILQ_EMPTY(&asoc->send_queue) && 6562 TAILQ_EMPTY(&asoc->sent_queue) && 6563 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 6564 abort_anyway: 6565 atomic_add_int(&stcb->asoc.refcnt, 1); 6566 sctp_abort_an_association(stcb->sctp_ep, stcb, 6567 NULL, SCTP_SO_NOT_LOCKED); 6568 atomic_add_int(&stcb->asoc.refcnt, -1); 6569 goto no_chunk_output; 6570 } 6571 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6572 asoc->primary_destination); 6573 } 6574 } 6575 6576 } 6577 } 6578 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 6579 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 6580 6581 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 6582 (stcb->asoc.total_flight > 0) && 6583 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 6584 do_chunk_output = 0; 6585 } 6586 if (do_chunk_output) 6587 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED); 6588 else if (added_control) { 6589 int num_out = 0, reason = 0, now_filled = 0; 6590 struct timeval now; 6591 int frag_point; 6592 6593 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 6594 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 6595 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED); 6596 } 6597 no_chunk_output: 6598 if (ret) { 6599 ca->cnt_failed++; 6600 } else { 6601 ca->cnt_sent++; 6602 } 6603 } 6604 6605 static void 6606 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED) 6607 { 6608 struct sctp_copy_all *ca; 6609 6610 ca = (struct sctp_copy_all *)ptr; 6611 /* 6612 * Do a notify here? Kacheong suggests that the notify be done at 6613 * the send time.. so you would push up a notification if any send 6614 * failed. Don't know if this is feasable since the only failures we 6615 * have is "memory" related and if you cannot get an mbuf to send 6616 * the data you surely can't get an mbuf to send up to notify the 6617 * user you can't send the data :-> 6618 */ 6619 6620 /* now free everything */ 6621 sctp_m_freem(ca->m); 6622 SCTP_FREE(ca, SCTP_M_COPYAL); 6623 } 6624 6625 6626 #define MC_ALIGN(m, len) do { \ 6627 SCTP_BUF_RESV_UF(m, ((MCLBYTES - (len)) & ~(sizeof(long) - 1)); \ 6628 } while (0) 6629 6630 6631 6632 static struct mbuf * 6633 sctp_copy_out_all(struct uio *uio, int len) 6634 { 6635 struct mbuf *ret, *at; 6636 int left, willcpy, cancpy, error; 6637 6638 ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA); 6639 if (ret == NULL) { 6640 /* TSNH */ 6641 return (NULL); 6642 } 6643 left = len; 6644 SCTP_BUF_LEN(ret) = 0; 6645 /* save space for the data chunk header */ 6646 cancpy = M_TRAILINGSPACE(ret); 6647 willcpy = min(cancpy, left); 6648 at = ret; 6649 while (left > 0) { 6650 /* Align data to the end */ 6651 error = uiomove(mtod(at, caddr_t), willcpy, uio); 6652 if (error) { 6653 err_out_now: 6654 sctp_m_freem(at); 6655 return (NULL); 6656 } 6657 SCTP_BUF_LEN(at) = willcpy; 6658 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0; 6659 left -= willcpy; 6660 if (left > 0) { 6661 SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA); 6662 if (SCTP_BUF_NEXT(at) == NULL) { 6663 goto err_out_now; 6664 } 6665 at = SCTP_BUF_NEXT(at); 6666 SCTP_BUF_LEN(at) = 0; 6667 cancpy = M_TRAILINGSPACE(at); 6668 willcpy = min(cancpy, left); 6669 } 6670 } 6671 return (ret); 6672 } 6673 6674 static int 6675 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m, 6676 struct sctp_sndrcvinfo *srcv) 6677 { 6678 int ret; 6679 struct sctp_copy_all *ca; 6680 6681 SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all), 6682 SCTP_M_COPYAL); 6683 if (ca == NULL) { 6684 sctp_m_freem(m); 6685 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6686 return (ENOMEM); 6687 } 6688 memset(ca, 0, sizeof(struct sctp_copy_all)); 6689 6690 ca->inp = inp; 6691 if (srcv) { 6692 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo)); 6693 } 6694 /* 6695 * take off the sendall flag, it would be bad if we failed to do 6696 * this :-0 6697 */ 6698 ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL; 6699 /* get length and mbuf chain */ 6700 if (uio) { 6701 ca->sndlen = uio->uio_resid; 6702 ca->m = sctp_copy_out_all(uio, ca->sndlen); 6703 if (ca->m == NULL) { 6704 SCTP_FREE(ca, SCTP_M_COPYAL); 6705 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6706 return (ENOMEM); 6707 } 6708 } else { 6709 /* Gather the length of the send */ 6710 struct mbuf *mat; 6711 6712 ca->sndlen = 0; 6713 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) { 6714 ca->sndlen += SCTP_BUF_LEN(mat); 6715 } 6716 } 6717 ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL, 6718 SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES, 6719 SCTP_ASOC_ANY_STATE, 6720 (void *)ca, 0, 6721 sctp_sendall_completes, inp, 1); 6722 if (ret) { 6723 SCTP_PRINTF("Failed to initiate iterator for sendall\n"); 6724 SCTP_FREE(ca, SCTP_M_COPYAL); 6725 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 6726 return (EFAULT); 6727 } 6728 return (0); 6729 } 6730 6731 6732 void 6733 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc) 6734 { 6735 struct sctp_tmit_chunk *chk, *nchk; 6736 6737 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6738 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 6739 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6740 if (chk->data) { 6741 sctp_m_freem(chk->data); 6742 chk->data = NULL; 6743 } 6744 asoc->ctrl_queue_cnt--; 6745 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6746 } 6747 } 6748 } 6749 6750 void 6751 sctp_toss_old_asconf(struct sctp_tcb *stcb) 6752 { 6753 struct sctp_association *asoc; 6754 struct sctp_tmit_chunk *chk, *nchk; 6755 struct sctp_asconf_chunk *acp; 6756 6757 asoc = &stcb->asoc; 6758 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 6759 /* find SCTP_ASCONF chunk in queue */ 6760 if (chk->rec.chunk_id.id == SCTP_ASCONF) { 6761 if (chk->data) { 6762 acp = mtod(chk->data, struct sctp_asconf_chunk *); 6763 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) { 6764 /* Not Acked yet */ 6765 break; 6766 } 6767 } 6768 TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next); 6769 if (chk->data) { 6770 sctp_m_freem(chk->data); 6771 chk->data = NULL; 6772 } 6773 asoc->ctrl_queue_cnt--; 6774 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6775 } 6776 } 6777 } 6778 6779 6780 static void 6781 sctp_clean_up_datalist(struct sctp_tcb *stcb, 6782 struct sctp_association *asoc, 6783 struct sctp_tmit_chunk **data_list, 6784 int bundle_at, 6785 struct sctp_nets *net) 6786 { 6787 int i; 6788 struct sctp_tmit_chunk *tp1; 6789 6790 for (i = 0; i < bundle_at; i++) { 6791 /* off of the send queue */ 6792 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next); 6793 asoc->send_queue_cnt--; 6794 if (i > 0) { 6795 /* 6796 * Any chunk NOT 0 you zap the time chunk 0 gets 6797 * zapped or set based on if a RTO measurment is 6798 * needed. 6799 */ 6800 data_list[i]->do_rtt = 0; 6801 } 6802 /* record time */ 6803 data_list[i]->sent_rcv_time = net->last_sent_time; 6804 data_list[i]->rec.data.cwnd_at_send = net->cwnd; 6805 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.TSN_seq; 6806 if (data_list[i]->whoTo == NULL) { 6807 data_list[i]->whoTo = net; 6808 atomic_add_int(&net->ref_count, 1); 6809 } 6810 /* on to the sent queue */ 6811 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead); 6812 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) { 6813 struct sctp_tmit_chunk *tpp; 6814 6815 /* need to move back */ 6816 back_up_more: 6817 tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next); 6818 if (tpp == NULL) { 6819 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next); 6820 goto all_done; 6821 } 6822 tp1 = tpp; 6823 if (SCTP_TSN_GT(tp1->rec.data.TSN_seq, data_list[i]->rec.data.TSN_seq)) { 6824 goto back_up_more; 6825 } 6826 TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next); 6827 } else { 6828 TAILQ_INSERT_TAIL(&asoc->sent_queue, 6829 data_list[i], 6830 sctp_next); 6831 } 6832 all_done: 6833 /* This does not lower until the cum-ack passes it */ 6834 asoc->sent_queue_cnt++; 6835 if ((asoc->peers_rwnd <= 0) && 6836 (asoc->total_flight == 0) && 6837 (bundle_at == 1)) { 6838 /* Mark the chunk as being a window probe */ 6839 SCTP_STAT_INCR(sctps_windowprobed); 6840 } 6841 #ifdef SCTP_AUDITING_ENABLED 6842 sctp_audit_log(0xC2, 3); 6843 #endif 6844 data_list[i]->sent = SCTP_DATAGRAM_SENT; 6845 data_list[i]->snd_count = 1; 6846 data_list[i]->rec.data.chunk_was_revoked = 0; 6847 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 6848 sctp_misc_ints(SCTP_FLIGHT_LOG_UP, 6849 data_list[i]->whoTo->flight_size, 6850 data_list[i]->book_size, 6851 (uintptr_t) data_list[i]->whoTo, 6852 data_list[i]->rec.data.TSN_seq); 6853 } 6854 sctp_flight_size_increase(data_list[i]); 6855 sctp_total_flight_increase(stcb, data_list[i]); 6856 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 6857 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 6858 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 6859 } 6860 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 6861 (uint32_t) (data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 6862 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 6863 /* SWS sender side engages */ 6864 asoc->peers_rwnd = 0; 6865 } 6866 } 6867 if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) { 6868 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net); 6869 } 6870 } 6871 6872 static void 6873 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked 6874 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6875 SCTP_UNUSED 6876 #endif 6877 ) 6878 { 6879 struct sctp_tmit_chunk *chk, *nchk; 6880 6881 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6882 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 6883 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 6884 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 6885 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 6886 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) || 6887 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 6888 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 6889 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 6890 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 6891 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 6892 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 6893 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 6894 /* Stray chunks must be cleaned up */ 6895 clean_up_anyway: 6896 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6897 if (chk->data) { 6898 sctp_m_freem(chk->data); 6899 chk->data = NULL; 6900 } 6901 asoc->ctrl_queue_cnt--; 6902 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) 6903 asoc->fwd_tsn_cnt--; 6904 sctp_free_a_chunk(stcb, chk, so_locked); 6905 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 6906 /* special handling, we must look into the param */ 6907 if (chk != asoc->str_reset) { 6908 goto clean_up_anyway; 6909 } 6910 } 6911 } 6912 } 6913 6914 6915 static int 6916 sctp_can_we_split_this(struct sctp_tcb *stcb, 6917 uint32_t length, 6918 uint32_t goal_mtu, uint32_t frag_point, int eeor_on) 6919 { 6920 /* 6921 * Make a decision on if I should split a msg into multiple parts. 6922 * This is only asked of incomplete messages. 6923 */ 6924 if (eeor_on) { 6925 /* 6926 * If we are doing EEOR we need to always send it if its the 6927 * entire thing, since it might be all the guy is putting in 6928 * the hopper. 6929 */ 6930 if (goal_mtu >= length) { 6931 /*- 6932 * If we have data outstanding, 6933 * we get another chance when the sack 6934 * arrives to transmit - wait for more data 6935 */ 6936 if (stcb->asoc.total_flight == 0) { 6937 /* 6938 * If nothing is in flight, we zero the 6939 * packet counter. 6940 */ 6941 return (length); 6942 } 6943 return (0); 6944 6945 } else { 6946 /* You can fill the rest */ 6947 return (goal_mtu); 6948 } 6949 } 6950 /*- 6951 * For those strange folk that make the send buffer 6952 * smaller than our fragmentation point, we can't 6953 * get a full msg in so we have to allow splitting. 6954 */ 6955 if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) { 6956 return (length); 6957 } 6958 if ((length <= goal_mtu) || 6959 ((length - goal_mtu) < SCTP_BASE_SYSCTL(sctp_min_residual))) { 6960 /* Sub-optimial residual don't split in non-eeor mode. */ 6961 return (0); 6962 } 6963 /* 6964 * If we reach here length is larger than the goal_mtu. Do we wish 6965 * to split it for the sake of packet putting together? 6966 */ 6967 if (goal_mtu >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) { 6968 /* Its ok to split it */ 6969 return (min(goal_mtu, frag_point)); 6970 } 6971 /* Nope, can't split */ 6972 return (0); 6973 6974 } 6975 6976 static uint32_t 6977 sctp_move_to_outqueue(struct sctp_tcb *stcb, 6978 struct sctp_stream_out *strq, 6979 uint32_t goal_mtu, 6980 uint32_t frag_point, 6981 int *locked, 6982 int *giveup, 6983 int eeor_mode, 6984 int *bail, 6985 int so_locked 6986 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6987 SCTP_UNUSED 6988 #endif 6989 ) 6990 { 6991 /* Move from the stream to the send_queue keeping track of the total */ 6992 struct sctp_association *asoc; 6993 struct sctp_stream_queue_pending *sp; 6994 struct sctp_tmit_chunk *chk; 6995 struct sctp_data_chunk *dchkh; 6996 uint32_t to_move, length; 6997 uint8_t rcv_flags = 0; 6998 uint8_t some_taken; 6999 uint8_t send_lock_up = 0; 7000 7001 SCTP_TCB_LOCK_ASSERT(stcb); 7002 asoc = &stcb->asoc; 7003 one_more_time: 7004 /* sa_ignore FREED_MEMORY */ 7005 sp = TAILQ_FIRST(&strq->outqueue); 7006 if (sp == NULL) { 7007 *locked = 0; 7008 if (send_lock_up == 0) { 7009 SCTP_TCB_SEND_LOCK(stcb); 7010 send_lock_up = 1; 7011 } 7012 sp = TAILQ_FIRST(&strq->outqueue); 7013 if (sp) { 7014 goto one_more_time; 7015 } 7016 if (strq->last_msg_incomplete) { 7017 SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n", 7018 strq->stream_no, 7019 strq->last_msg_incomplete); 7020 strq->last_msg_incomplete = 0; 7021 } 7022 to_move = 0; 7023 if (send_lock_up) { 7024 SCTP_TCB_SEND_UNLOCK(stcb); 7025 send_lock_up = 0; 7026 } 7027 goto out_of; 7028 } 7029 if ((sp->msg_is_complete) && (sp->length == 0)) { 7030 if (sp->sender_all_done) { 7031 /* 7032 * We are doing differed cleanup. Last time through 7033 * when we took all the data the sender_all_done was 7034 * not set. 7035 */ 7036 if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) { 7037 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 7038 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7039 sp->sender_all_done, 7040 sp->length, 7041 sp->msg_is_complete, 7042 sp->put_last_out, 7043 send_lock_up); 7044 } 7045 if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) { 7046 SCTP_TCB_SEND_LOCK(stcb); 7047 send_lock_up = 1; 7048 } 7049 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7050 TAILQ_REMOVE(&strq->outqueue, sp, next); 7051 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7052 if (sp->net) { 7053 sctp_free_remote_addr(sp->net); 7054 sp->net = NULL; 7055 } 7056 if (sp->data) { 7057 sctp_m_freem(sp->data); 7058 sp->data = NULL; 7059 } 7060 sctp_free_a_strmoq(stcb, sp, so_locked); 7061 /* we can't be locked to it */ 7062 *locked = 0; 7063 stcb->asoc.locked_on_sending = NULL; 7064 if (send_lock_up) { 7065 SCTP_TCB_SEND_UNLOCK(stcb); 7066 send_lock_up = 0; 7067 } 7068 /* back to get the next msg */ 7069 goto one_more_time; 7070 } else { 7071 /* 7072 * sender just finished this but still holds a 7073 * reference 7074 */ 7075 *locked = 1; 7076 *giveup = 1; 7077 to_move = 0; 7078 goto out_of; 7079 } 7080 } else { 7081 /* is there some to get */ 7082 if (sp->length == 0) { 7083 /* no */ 7084 *locked = 1; 7085 *giveup = 1; 7086 to_move = 0; 7087 goto out_of; 7088 } else if (sp->discard_rest) { 7089 if (send_lock_up == 0) { 7090 SCTP_TCB_SEND_LOCK(stcb); 7091 send_lock_up = 1; 7092 } 7093 /* Whack down the size */ 7094 atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length); 7095 if ((stcb->sctp_socket != NULL) && \ 7096 ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 7097 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 7098 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length); 7099 } 7100 if (sp->data) { 7101 sctp_m_freem(sp->data); 7102 sp->data = NULL; 7103 sp->tail_mbuf = NULL; 7104 } 7105 sp->length = 0; 7106 sp->some_taken = 1; 7107 *locked = 1; 7108 *giveup = 1; 7109 to_move = 0; 7110 goto out_of; 7111 } 7112 } 7113 some_taken = sp->some_taken; 7114 if (stcb->asoc.state & SCTP_STATE_CLOSED_SOCKET) { 7115 sp->msg_is_complete = 1; 7116 } 7117 re_look: 7118 length = sp->length; 7119 if (sp->msg_is_complete) { 7120 /* The message is complete */ 7121 to_move = min(length, frag_point); 7122 if (to_move == length) { 7123 /* All of it fits in the MTU */ 7124 if (sp->some_taken) { 7125 rcv_flags |= SCTP_DATA_LAST_FRAG; 7126 sp->put_last_out = 1; 7127 } else { 7128 rcv_flags |= SCTP_DATA_NOT_FRAG; 7129 sp->put_last_out = 1; 7130 } 7131 } else { 7132 /* Not all of it fits, we fragment */ 7133 if (sp->some_taken == 0) { 7134 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7135 } 7136 sp->some_taken = 1; 7137 } 7138 } else { 7139 to_move = sctp_can_we_split_this(stcb, length, goal_mtu, frag_point, eeor_mode); 7140 if (to_move) { 7141 /*- 7142 * We use a snapshot of length in case it 7143 * is expanding during the compare. 7144 */ 7145 uint32_t llen; 7146 7147 llen = length; 7148 if (to_move >= llen) { 7149 to_move = llen; 7150 if (send_lock_up == 0) { 7151 /*- 7152 * We are taking all of an incomplete msg 7153 * thus we need a send lock. 7154 */ 7155 SCTP_TCB_SEND_LOCK(stcb); 7156 send_lock_up = 1; 7157 if (sp->msg_is_complete) { 7158 /* 7159 * the sender finished the 7160 * msg 7161 */ 7162 goto re_look; 7163 } 7164 } 7165 } 7166 if (sp->some_taken == 0) { 7167 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7168 sp->some_taken = 1; 7169 } 7170 } else { 7171 /* Nothing to take. */ 7172 if (sp->some_taken) { 7173 *locked = 1; 7174 } 7175 *giveup = 1; 7176 to_move = 0; 7177 goto out_of; 7178 } 7179 } 7180 7181 /* If we reach here, we can copy out a chunk */ 7182 sctp_alloc_a_chunk(stcb, chk); 7183 if (chk == NULL) { 7184 /* No chunk memory */ 7185 *giveup = 1; 7186 to_move = 0; 7187 goto out_of; 7188 } 7189 /* 7190 * Setup for unordered if needed by looking at the user sent info 7191 * flags. 7192 */ 7193 if (sp->sinfo_flags & SCTP_UNORDERED) { 7194 rcv_flags |= SCTP_DATA_UNORDERED; 7195 } 7196 if ((SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && ((sp->sinfo_flags & SCTP_EOF) == SCTP_EOF)) || 7197 ((sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) == SCTP_SACK_IMMEDIATELY)) { 7198 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7199 } 7200 /* clear out the chunk before setting up */ 7201 memset(chk, 0, sizeof(*chk)); 7202 chk->rec.data.rcv_flags = rcv_flags; 7203 7204 if (to_move >= length) { 7205 /* we think we can steal the whole thing */ 7206 if ((sp->sender_all_done == 0) && (send_lock_up == 0)) { 7207 SCTP_TCB_SEND_LOCK(stcb); 7208 send_lock_up = 1; 7209 } 7210 if (to_move < sp->length) { 7211 /* bail, it changed */ 7212 goto dont_do_it; 7213 } 7214 chk->data = sp->data; 7215 chk->last_mbuf = sp->tail_mbuf; 7216 /* register the stealing */ 7217 sp->data = sp->tail_mbuf = NULL; 7218 } else { 7219 struct mbuf *m; 7220 7221 dont_do_it: 7222 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT); 7223 chk->last_mbuf = NULL; 7224 if (chk->data == NULL) { 7225 sp->some_taken = some_taken; 7226 sctp_free_a_chunk(stcb, chk, so_locked); 7227 *bail = 1; 7228 to_move = 0; 7229 goto out_of; 7230 } 7231 #ifdef SCTP_MBUF_LOGGING 7232 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 7233 struct mbuf *mat; 7234 7235 for (mat = chk->data; mat; mat = SCTP_BUF_NEXT(mat)) { 7236 if (SCTP_BUF_IS_EXTENDED(mat)) { 7237 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 7238 } 7239 } 7240 } 7241 #endif 7242 /* Pull off the data */ 7243 m_adj(sp->data, to_move); 7244 /* Now lets work our way down and compact it */ 7245 m = sp->data; 7246 while (m && (SCTP_BUF_LEN(m) == 0)) { 7247 sp->data = SCTP_BUF_NEXT(m); 7248 SCTP_BUF_NEXT(m) = NULL; 7249 if (sp->tail_mbuf == m) { 7250 /*- 7251 * Freeing tail? TSNH since 7252 * we supposedly were taking less 7253 * than the sp->length. 7254 */ 7255 #ifdef INVARIANTS 7256 panic("Huh, freing tail? - TSNH"); 7257 #else 7258 SCTP_PRINTF("Huh, freeing tail? - TSNH\n"); 7259 sp->tail_mbuf = sp->data = NULL; 7260 sp->length = 0; 7261 #endif 7262 7263 } 7264 sctp_m_free(m); 7265 m = sp->data; 7266 } 7267 } 7268 if (SCTP_BUF_IS_EXTENDED(chk->data)) { 7269 chk->copy_by_ref = 1; 7270 } else { 7271 chk->copy_by_ref = 0; 7272 } 7273 /* 7274 * get last_mbuf and counts of mb useage This is ugly but hopefully 7275 * its only one mbuf. 7276 */ 7277 if (chk->last_mbuf == NULL) { 7278 chk->last_mbuf = chk->data; 7279 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) { 7280 chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf); 7281 } 7282 } 7283 if (to_move > length) { 7284 /*- This should not happen either 7285 * since we always lower to_move to the size 7286 * of sp->length if its larger. 7287 */ 7288 #ifdef INVARIANTS 7289 panic("Huh, how can to_move be larger?"); 7290 #else 7291 SCTP_PRINTF("Huh, how can to_move be larger?\n"); 7292 sp->length = 0; 7293 #endif 7294 } else { 7295 atomic_subtract_int(&sp->length, to_move); 7296 } 7297 if (M_LEADINGSPACE(chk->data) < (int)sizeof(struct sctp_data_chunk)) { 7298 /* Not enough room for a chunk header, get some */ 7299 struct mbuf *m; 7300 7301 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA); 7302 if (m == NULL) { 7303 /* 7304 * we're in trouble here. _PREPEND below will free 7305 * all the data if there is no leading space, so we 7306 * must put the data back and restore. 7307 */ 7308 if (send_lock_up == 0) { 7309 SCTP_TCB_SEND_LOCK(stcb); 7310 send_lock_up = 1; 7311 } 7312 if (chk->data == NULL) { 7313 /* unsteal the data */ 7314 sp->data = chk->data; 7315 sp->tail_mbuf = chk->last_mbuf; 7316 } else { 7317 struct mbuf *m_tmp; 7318 7319 /* reassemble the data */ 7320 m_tmp = sp->data; 7321 sp->data = chk->data; 7322 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp; 7323 } 7324 sp->some_taken = some_taken; 7325 atomic_add_int(&sp->length, to_move); 7326 chk->data = NULL; 7327 *bail = 1; 7328 sctp_free_a_chunk(stcb, chk, so_locked); 7329 to_move = 0; 7330 goto out_of; 7331 } else { 7332 SCTP_BUF_LEN(m) = 0; 7333 SCTP_BUF_NEXT(m) = chk->data; 7334 chk->data = m; 7335 M_ALIGN(chk->data, 4); 7336 } 7337 } 7338 SCTP_BUF_PREPEND(chk->data, sizeof(struct sctp_data_chunk), M_NOWAIT); 7339 if (chk->data == NULL) { 7340 /* HELP, TSNH since we assured it would not above? */ 7341 #ifdef INVARIANTS 7342 panic("prepend failes HELP?"); 7343 #else 7344 SCTP_PRINTF("prepend fails HELP?\n"); 7345 sctp_free_a_chunk(stcb, chk, so_locked); 7346 #endif 7347 *bail = 1; 7348 to_move = 0; 7349 goto out_of; 7350 } 7351 sctp_snd_sb_alloc(stcb, sizeof(struct sctp_data_chunk)); 7352 chk->book_size = chk->send_size = (to_move + sizeof(struct sctp_data_chunk)); 7353 chk->book_size_scale = 0; 7354 chk->sent = SCTP_DATAGRAM_UNSENT; 7355 7356 chk->flags = 0; 7357 chk->asoc = &stcb->asoc; 7358 chk->pad_inplace = 0; 7359 chk->no_fr_allowed = 0; 7360 chk->rec.data.stream_seq = strq->next_sequence_send; 7361 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7362 strq->next_sequence_send++; 7363 } 7364 chk->rec.data.stream_number = sp->stream; 7365 chk->rec.data.payloadtype = sp->ppid; 7366 chk->rec.data.context = sp->context; 7367 chk->rec.data.doing_fast_retransmit = 0; 7368 7369 chk->rec.data.timetodrop = sp->ts; 7370 chk->flags = sp->act_flags; 7371 7372 if (sp->net) { 7373 chk->whoTo = sp->net; 7374 atomic_add_int(&chk->whoTo->ref_count, 1); 7375 } else 7376 chk->whoTo = NULL; 7377 7378 if (sp->holds_key_ref) { 7379 chk->auth_keyid = sp->auth_keyid; 7380 sctp_auth_key_acquire(stcb, chk->auth_keyid); 7381 chk->holds_key_ref = 1; 7382 } 7383 chk->rec.data.TSN_seq = atomic_fetchadd_int(&asoc->sending_seq, 1); 7384 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) { 7385 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND, 7386 (uintptr_t) stcb, sp->length, 7387 (uint32_t) ((chk->rec.data.stream_number << 16) | chk->rec.data.stream_seq), 7388 chk->rec.data.TSN_seq); 7389 } 7390 dchkh = mtod(chk->data, struct sctp_data_chunk *); 7391 /* 7392 * Put the rest of the things in place now. Size was done earlier in 7393 * previous loop prior to padding. 7394 */ 7395 7396 #ifdef SCTP_ASOCLOG_OF_TSNS 7397 SCTP_TCB_LOCK_ASSERT(stcb); 7398 if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) { 7399 asoc->tsn_out_at = 0; 7400 asoc->tsn_out_wrapped = 1; 7401 } 7402 asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.TSN_seq; 7403 asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.stream_number; 7404 asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.stream_seq; 7405 asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size; 7406 asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags; 7407 asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb; 7408 asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at; 7409 asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2; 7410 asoc->tsn_out_at++; 7411 #endif 7412 7413 dchkh->ch.chunk_type = SCTP_DATA; 7414 dchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7415 dchkh->dp.tsn = htonl(chk->rec.data.TSN_seq); 7416 dchkh->dp.stream_id = htons(strq->stream_no); 7417 dchkh->dp.stream_sequence = htons(chk->rec.data.stream_seq); 7418 dchkh->dp.protocol_id = chk->rec.data.payloadtype; 7419 dchkh->ch.chunk_length = htons(chk->send_size); 7420 /* Now advance the chk->send_size by the actual pad needed. */ 7421 if (chk->send_size < SCTP_SIZE32(chk->book_size)) { 7422 /* need a pad */ 7423 struct mbuf *lm; 7424 int pads; 7425 7426 pads = SCTP_SIZE32(chk->book_size) - chk->send_size; 7427 if (sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf) == 0) { 7428 chk->pad_inplace = 1; 7429 } 7430 if ((lm = SCTP_BUF_NEXT(chk->last_mbuf)) != NULL) { 7431 /* pad added an mbuf */ 7432 chk->last_mbuf = lm; 7433 } 7434 chk->send_size += pads; 7435 } 7436 if (PR_SCTP_ENABLED(chk->flags)) { 7437 asoc->pr_sctp_cnt++; 7438 } 7439 if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) { 7440 /* All done pull and kill the message */ 7441 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7442 if (sp->put_last_out == 0) { 7443 SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n"); 7444 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7445 sp->sender_all_done, 7446 sp->length, 7447 sp->msg_is_complete, 7448 sp->put_last_out, 7449 send_lock_up); 7450 } 7451 if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) { 7452 SCTP_TCB_SEND_LOCK(stcb); 7453 send_lock_up = 1; 7454 } 7455 TAILQ_REMOVE(&strq->outqueue, sp, next); 7456 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7457 if (sp->net) { 7458 sctp_free_remote_addr(sp->net); 7459 sp->net = NULL; 7460 } 7461 if (sp->data) { 7462 sctp_m_freem(sp->data); 7463 sp->data = NULL; 7464 } 7465 sctp_free_a_strmoq(stcb, sp, so_locked); 7466 7467 /* we can't be locked to it */ 7468 *locked = 0; 7469 stcb->asoc.locked_on_sending = NULL; 7470 } else { 7471 /* more to go, we are locked */ 7472 *locked = 1; 7473 } 7474 asoc->chunks_on_out_queue++; 7475 strq->chunks_on_queues++; 7476 TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next); 7477 asoc->send_queue_cnt++; 7478 out_of: 7479 if (send_lock_up) { 7480 SCTP_TCB_SEND_UNLOCK(stcb); 7481 } 7482 return (to_move); 7483 } 7484 7485 7486 static void 7487 sctp_fill_outqueue(struct sctp_tcb *stcb, 7488 struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked 7489 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7490 SCTP_UNUSED 7491 #endif 7492 ) 7493 { 7494 struct sctp_association *asoc; 7495 struct sctp_stream_out *strq; 7496 int goal_mtu, moved_how_much, total_moved = 0, bail = 0; 7497 int locked, giveup; 7498 7499 SCTP_TCB_LOCK_ASSERT(stcb); 7500 asoc = &stcb->asoc; 7501 switch (net->ro._l_addr.sa.sa_family) { 7502 #ifdef INET 7503 case AF_INET: 7504 goal_mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 7505 break; 7506 #endif 7507 #ifdef INET6 7508 case AF_INET6: 7509 goal_mtu = net->mtu - SCTP_MIN_OVERHEAD; 7510 break; 7511 #endif 7512 default: 7513 /* TSNH */ 7514 goal_mtu = net->mtu; 7515 break; 7516 } 7517 /* Need an allowance for the data chunk header too */ 7518 goal_mtu -= sizeof(struct sctp_data_chunk); 7519 7520 /* must make even word boundary */ 7521 goal_mtu &= 0xfffffffc; 7522 if (asoc->locked_on_sending) { 7523 /* We are stuck on one stream until the message completes. */ 7524 strq = asoc->locked_on_sending; 7525 locked = 1; 7526 } else { 7527 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7528 locked = 0; 7529 } 7530 while ((goal_mtu > 0) && strq) { 7531 giveup = 0; 7532 bail = 0; 7533 moved_how_much = sctp_move_to_outqueue(stcb, strq, goal_mtu, frag_point, &locked, 7534 &giveup, eeor_mode, &bail, so_locked); 7535 if (moved_how_much) 7536 stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved_how_much); 7537 7538 if (locked) { 7539 asoc->locked_on_sending = strq; 7540 if ((moved_how_much == 0) || (giveup) || bail) 7541 /* no more to move for now */ 7542 break; 7543 } else { 7544 asoc->locked_on_sending = NULL; 7545 if ((giveup) || bail) { 7546 break; 7547 } 7548 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7549 if (strq == NULL) { 7550 break; 7551 } 7552 } 7553 total_moved += moved_how_much; 7554 goal_mtu -= (moved_how_much + sizeof(struct sctp_data_chunk)); 7555 goal_mtu &= 0xfffffffc; 7556 } 7557 if (bail) 7558 *quit_now = 1; 7559 7560 stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc); 7561 7562 if (total_moved == 0) { 7563 if ((stcb->asoc.sctp_cmt_on_off == 0) && 7564 (net == stcb->asoc.primary_destination)) { 7565 /* ran dry for primary network net */ 7566 SCTP_STAT_INCR(sctps_primary_randry); 7567 } else if (stcb->asoc.sctp_cmt_on_off > 0) { 7568 /* ran dry with CMT on */ 7569 SCTP_STAT_INCR(sctps_cmt_randry); 7570 } 7571 } 7572 } 7573 7574 void 7575 sctp_fix_ecn_echo(struct sctp_association *asoc) 7576 { 7577 struct sctp_tmit_chunk *chk; 7578 7579 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7580 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 7581 chk->sent = SCTP_DATAGRAM_UNSENT; 7582 } 7583 } 7584 } 7585 7586 void 7587 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net) 7588 { 7589 struct sctp_association *asoc; 7590 struct sctp_tmit_chunk *chk; 7591 struct sctp_stream_queue_pending *sp; 7592 unsigned int i; 7593 7594 if (net == NULL) { 7595 return; 7596 } 7597 asoc = &stcb->asoc; 7598 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 7599 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) { 7600 if (sp->net == net) { 7601 sctp_free_remote_addr(sp->net); 7602 sp->net = NULL; 7603 } 7604 } 7605 } 7606 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7607 if (chk->whoTo == net) { 7608 sctp_free_remote_addr(chk->whoTo); 7609 chk->whoTo = NULL; 7610 } 7611 } 7612 } 7613 7614 int 7615 sctp_med_chunk_output(struct sctp_inpcb *inp, 7616 struct sctp_tcb *stcb, 7617 struct sctp_association *asoc, 7618 int *num_out, 7619 int *reason_code, 7620 int control_only, int from_where, 7621 struct timeval *now, int *now_filled, int frag_point, int so_locked 7622 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7623 SCTP_UNUSED 7624 #endif 7625 ) 7626 { 7627 /** 7628 * Ok this is the generic chunk service queue. we must do the 7629 * following: - Service the stream queue that is next, moving any 7630 * message (note I must get a complete message i.e. FIRST/MIDDLE and 7631 * LAST to the out queue in one pass) and assigning TSN's - Check to 7632 * see if the cwnd/rwnd allows any output, if so we go ahead and 7633 * fomulate and send the low level chunks. Making sure to combine 7634 * any control in the control chunk queue also. 7635 */ 7636 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; 7637 struct mbuf *outchain, *endoutchain; 7638 struct sctp_tmit_chunk *chk, *nchk; 7639 7640 /* temp arrays for unlinking */ 7641 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 7642 int no_fragmentflg, error; 7643 unsigned int max_rwnd_per_dest, max_send_per_dest; 7644 int one_chunk, hbflag, skip_data_for_this_net; 7645 int asconf, cookie, no_out_cnt; 7646 int bundle_at, ctl_cnt, no_data_chunks, eeor_mode; 7647 unsigned int mtu, r_mtu, omtu, mx_mtu, to_out; 7648 int tsns_sent = 0; 7649 uint32_t auth_offset = 0; 7650 struct sctp_auth_chunk *auth = NULL; 7651 uint16_t auth_keyid; 7652 int override_ok = 1; 7653 int skip_fill_up = 0; 7654 int data_auth_reqd = 0; 7655 7656 /* 7657 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the 7658 * destination. 7659 */ 7660 int quit_now = 0; 7661 7662 *num_out = 0; 7663 auth_keyid = stcb->asoc.authinfo.active_keyid; 7664 7665 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) || 7666 (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) || 7667 (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 7668 eeor_mode = 1; 7669 } else { 7670 eeor_mode = 0; 7671 } 7672 ctl_cnt = no_out_cnt = asconf = cookie = 0; 7673 /* 7674 * First lets prime the pump. For each destination, if there is room 7675 * in the flight size, attempt to pull an MTU's worth out of the 7676 * stream queues into the general send_queue 7677 */ 7678 #ifdef SCTP_AUDITING_ENABLED 7679 sctp_audit_log(0xC2, 2); 7680 #endif 7681 SCTP_TCB_LOCK_ASSERT(stcb); 7682 hbflag = 0; 7683 if ((control_only) || (asoc->stream_reset_outstanding)) 7684 no_data_chunks = 1; 7685 else 7686 no_data_chunks = 0; 7687 7688 /* Nothing to possible to send? */ 7689 if ((TAILQ_EMPTY(&asoc->control_send_queue) || 7690 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) && 7691 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7692 TAILQ_EMPTY(&asoc->send_queue) && 7693 stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 7694 nothing_to_send: 7695 *reason_code = 9; 7696 return (0); 7697 } 7698 if (asoc->peers_rwnd == 0) { 7699 /* No room in peers rwnd */ 7700 *reason_code = 1; 7701 if (asoc->total_flight > 0) { 7702 /* we are allowed one chunk in flight */ 7703 no_data_chunks = 1; 7704 } 7705 } 7706 if (stcb->asoc.ecn_echo_cnt_onq) { 7707 /* Record where a sack goes, if any */ 7708 if (no_data_chunks && 7709 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) { 7710 /* Nothing but ECNe to send - we don't do that */ 7711 goto nothing_to_send; 7712 } 7713 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7714 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7715 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 7716 sack_goes_to = chk->whoTo; 7717 break; 7718 } 7719 } 7720 } 7721 max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets); 7722 if (stcb->sctp_socket) 7723 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets; 7724 else 7725 max_send_per_dest = 0; 7726 if (no_data_chunks == 0) { 7727 /* How many non-directed chunks are there? */ 7728 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7729 if (chk->whoTo == NULL) { 7730 /* 7731 * We already have non-directed chunks on 7732 * the queue, no need to do a fill-up. 7733 */ 7734 skip_fill_up = 1; 7735 break; 7736 } 7737 } 7738 7739 } 7740 if ((no_data_chunks == 0) && 7741 (skip_fill_up == 0) && 7742 (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) { 7743 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 7744 /* 7745 * This for loop we are in takes in each net, if 7746 * its's got space in cwnd and has data sent to it 7747 * (when CMT is off) then it calls 7748 * sctp_fill_outqueue for the net. This gets data on 7749 * the send queue for that network. 7750 * 7751 * In sctp_fill_outqueue TSN's are assigned and data is 7752 * copied out of the stream buffers. Note mostly 7753 * copy by reference (we hope). 7754 */ 7755 net->window_probe = 0; 7756 if ((net != stcb->asoc.alternate) && 7757 ((net->dest_state & SCTP_ADDR_PF) || 7758 (!(net->dest_state & SCTP_ADDR_REACHABLE)) || 7759 (net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 7760 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7761 sctp_log_cwnd(stcb, net, 1, 7762 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7763 } 7764 continue; 7765 } 7766 if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) && 7767 (net->flight_size == 0)) { 7768 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net); 7769 } 7770 if (net->flight_size >= net->cwnd) { 7771 /* skip this network, no room - can't fill */ 7772 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7773 sctp_log_cwnd(stcb, net, 3, 7774 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7775 } 7776 continue; 7777 } 7778 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7779 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7780 } 7781 sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked); 7782 if (quit_now) { 7783 /* memory alloc failure */ 7784 no_data_chunks = 1; 7785 break; 7786 } 7787 } 7788 } 7789 /* now service each destination and send out what we can for it */ 7790 /* Nothing to send? */ 7791 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7792 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7793 TAILQ_EMPTY(&asoc->send_queue)) { 7794 *reason_code = 8; 7795 return (0); 7796 } 7797 if (asoc->sctp_cmt_on_off > 0) { 7798 /* get the last start point */ 7799 start_at = asoc->last_net_cmt_send_started; 7800 if (start_at == NULL) { 7801 /* null so to beginning */ 7802 start_at = TAILQ_FIRST(&asoc->nets); 7803 } else { 7804 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next); 7805 if (start_at == NULL) { 7806 start_at = TAILQ_FIRST(&asoc->nets); 7807 } 7808 } 7809 asoc->last_net_cmt_send_started = start_at; 7810 } else { 7811 start_at = TAILQ_FIRST(&asoc->nets); 7812 } 7813 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7814 if (chk->whoTo == NULL) { 7815 if (asoc->alternate) { 7816 chk->whoTo = asoc->alternate; 7817 } else { 7818 chk->whoTo = asoc->primary_destination; 7819 } 7820 atomic_add_int(&chk->whoTo->ref_count, 1); 7821 } 7822 } 7823 old_start_at = NULL; 7824 again_one_more_time: 7825 for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) { 7826 /* how much can we send? */ 7827 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */ 7828 if (old_start_at && (old_start_at == net)) { 7829 /* through list ocmpletely. */ 7830 break; 7831 } 7832 tsns_sent = 0xa; 7833 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7834 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7835 (net->flight_size >= net->cwnd)) { 7836 /* 7837 * Nothing on control or asconf and flight is full, 7838 * we can skip even in the CMT case. 7839 */ 7840 continue; 7841 } 7842 bundle_at = 0; 7843 endoutchain = outchain = NULL; 7844 no_fragmentflg = 1; 7845 one_chunk = 0; 7846 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 7847 skip_data_for_this_net = 1; 7848 } else { 7849 skip_data_for_this_net = 0; 7850 } 7851 if ((net->ro.ro_rt) && (net->ro.ro_rt->rt_ifp)) { 7852 /* 7853 * if we have a route and an ifp check to see if we 7854 * have room to send to this guy 7855 */ 7856 struct ifnet *ifp; 7857 7858 ifp = net->ro.ro_rt->rt_ifp; 7859 if ((ifp->if_snd.ifq_len + 2) >= ifp->if_snd.ifq_maxlen) { 7860 SCTP_STAT_INCR(sctps_ifnomemqueued); 7861 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 7862 sctp_log_maxburst(stcb, net, ifp->if_snd.ifq_len, ifp->if_snd.ifq_maxlen, SCTP_MAX_IFP_APPLIED); 7863 } 7864 continue; 7865 } 7866 } 7867 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 7868 #ifdef INET 7869 case AF_INET: 7870 mtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr)); 7871 break; 7872 #endif 7873 #ifdef INET6 7874 case AF_INET6: 7875 mtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)); 7876 break; 7877 #endif 7878 default: 7879 /* TSNH */ 7880 mtu = net->mtu; 7881 break; 7882 } 7883 mx_mtu = mtu; 7884 to_out = 0; 7885 if (mtu > asoc->peers_rwnd) { 7886 if (asoc->total_flight > 0) { 7887 /* We have a packet in flight somewhere */ 7888 r_mtu = asoc->peers_rwnd; 7889 } else { 7890 /* We are always allowed to send one MTU out */ 7891 one_chunk = 1; 7892 r_mtu = mtu; 7893 } 7894 } else { 7895 r_mtu = mtu; 7896 } 7897 /************************/ 7898 /* ASCONF transmission */ 7899 /************************/ 7900 /* Now first lets go through the asconf queue */ 7901 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 7902 if (chk->rec.chunk_id.id != SCTP_ASCONF) { 7903 continue; 7904 } 7905 if (chk->whoTo == NULL) { 7906 if (asoc->alternate == NULL) { 7907 if (asoc->primary_destination != net) { 7908 break; 7909 } 7910 } else { 7911 if (asoc->alternate != net) { 7912 break; 7913 } 7914 } 7915 } else { 7916 if (chk->whoTo != net) { 7917 break; 7918 } 7919 } 7920 if (chk->data == NULL) { 7921 break; 7922 } 7923 if (chk->sent != SCTP_DATAGRAM_UNSENT && 7924 chk->sent != SCTP_DATAGRAM_RESEND) { 7925 break; 7926 } 7927 /* 7928 * if no AUTH is yet included and this chunk 7929 * requires it, make sure to account for it. We 7930 * don't apply the size until the AUTH chunk is 7931 * actually added below in case there is no room for 7932 * this chunk. NOTE: we overload the use of "omtu" 7933 * here 7934 */ 7935 if ((auth == NULL) && 7936 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 7937 stcb->asoc.peer_auth_chunks)) { 7938 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 7939 } else 7940 omtu = 0; 7941 /* Here we do NOT factor the r_mtu */ 7942 if ((chk->send_size < (int)(mtu - omtu)) || 7943 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 7944 /* 7945 * We probably should glom the mbuf chain 7946 * from the chk->data for control but the 7947 * problem is it becomes yet one more level 7948 * of tracking to do if for some reason 7949 * output fails. Then I have got to 7950 * reconstruct the merged control chain.. el 7951 * yucko.. for now we take the easy way and 7952 * do the copy 7953 */ 7954 /* 7955 * Add an AUTH chunk, if chunk requires it 7956 * save the offset into the chain for AUTH 7957 */ 7958 if ((auth == NULL) && 7959 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 7960 stcb->asoc.peer_auth_chunks))) { 7961 outchain = sctp_add_auth_chunk(outchain, 7962 &endoutchain, 7963 &auth, 7964 &auth_offset, 7965 stcb, 7966 chk->rec.chunk_id.id); 7967 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 7968 } 7969 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 7970 (int)chk->rec.chunk_id.can_take_data, 7971 chk->send_size, chk->copy_by_ref); 7972 if (outchain == NULL) { 7973 *reason_code = 8; 7974 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 7975 return (ENOMEM); 7976 } 7977 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 7978 /* update our MTU size */ 7979 if (mtu > (chk->send_size + omtu)) 7980 mtu -= (chk->send_size + omtu); 7981 else 7982 mtu = 0; 7983 to_out += (chk->send_size + omtu); 7984 /* Do clear IP_DF ? */ 7985 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 7986 no_fragmentflg = 0; 7987 } 7988 if (chk->rec.chunk_id.can_take_data) 7989 chk->data = NULL; 7990 /* 7991 * set hb flag since we can use these for 7992 * RTO 7993 */ 7994 hbflag = 1; 7995 asconf = 1; 7996 /* 7997 * should sysctl this: don't bundle data 7998 * with ASCONF since it requires AUTH 7999 */ 8000 no_data_chunks = 1; 8001 chk->sent = SCTP_DATAGRAM_SENT; 8002 if (chk->whoTo == NULL) { 8003 chk->whoTo = net; 8004 atomic_add_int(&net->ref_count, 1); 8005 } 8006 chk->snd_count++; 8007 if (mtu == 0) { 8008 /* 8009 * Ok we are out of room but we can 8010 * output without effecting the 8011 * flight size since this little guy 8012 * is a control only packet. 8013 */ 8014 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8015 /* 8016 * do NOT clear the asconf flag as 8017 * it is used to do appropriate 8018 * source address selection. 8019 */ 8020 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8021 (struct sockaddr *)&net->ro._l_addr, 8022 outchain, auth_offset, auth, 8023 stcb->asoc.authinfo.active_keyid, 8024 no_fragmentflg, 0, asconf, 8025 inp->sctp_lport, stcb->rport, 8026 htonl(stcb->asoc.peer_vtag), 8027 net->port, NULL, 8028 0, 0, 8029 so_locked))) { 8030 if (error == ENOBUFS) { 8031 asoc->ifp_had_enobuf = 1; 8032 SCTP_STAT_INCR(sctps_lowlevelerr); 8033 } 8034 if (from_where == 0) { 8035 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8036 } 8037 if (*now_filled == 0) { 8038 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8039 *now_filled = 1; 8040 *now = net->last_sent_time; 8041 } else { 8042 net->last_sent_time = *now; 8043 } 8044 hbflag = 0; 8045 /* error, could not output */ 8046 if (error == EHOSTUNREACH) { 8047 /* 8048 * Destination went 8049 * unreachable 8050 * during this send 8051 */ 8052 sctp_move_chunks_from_net(stcb, net); 8053 } 8054 *reason_code = 7; 8055 continue; 8056 } else 8057 asoc->ifp_had_enobuf = 0; 8058 if (*now_filled == 0) { 8059 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8060 *now_filled = 1; 8061 *now = net->last_sent_time; 8062 } else { 8063 net->last_sent_time = *now; 8064 } 8065 hbflag = 0; 8066 /* 8067 * increase the number we sent, if a 8068 * cookie is sent we don't tell them 8069 * any was sent out. 8070 */ 8071 outchain = endoutchain = NULL; 8072 auth = NULL; 8073 auth_offset = 0; 8074 if (!no_out_cnt) 8075 *num_out += ctl_cnt; 8076 /* recalc a clean slate and setup */ 8077 switch (net->ro._l_addr.sa.sa_family) { 8078 #ifdef INET 8079 case AF_INET: 8080 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8081 break; 8082 #endif 8083 #ifdef INET6 8084 case AF_INET6: 8085 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8086 break; 8087 #endif 8088 default: 8089 /* TSNH */ 8090 mtu = net->mtu; 8091 break; 8092 } 8093 to_out = 0; 8094 no_fragmentflg = 1; 8095 } 8096 } 8097 } 8098 /************************/ 8099 /* Control transmission */ 8100 /************************/ 8101 /* Now first lets go through the control queue */ 8102 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 8103 if ((sack_goes_to) && 8104 (chk->rec.chunk_id.id == SCTP_ECN_ECHO) && 8105 (chk->whoTo != sack_goes_to)) { 8106 /* 8107 * if we have a sack in queue, and we are 8108 * looking at an ecn echo that is NOT queued 8109 * to where the sack is going.. 8110 */ 8111 if (chk->whoTo == net) { 8112 /* 8113 * Don't transmit it to where its 8114 * going (current net) 8115 */ 8116 continue; 8117 } else if (sack_goes_to == net) { 8118 /* 8119 * But do transmit it to this 8120 * address 8121 */ 8122 goto skip_net_check; 8123 } 8124 } 8125 if (chk->whoTo == NULL) { 8126 if (asoc->alternate == NULL) { 8127 if (asoc->primary_destination != net) { 8128 continue; 8129 } 8130 } else { 8131 if (asoc->alternate != net) { 8132 continue; 8133 } 8134 } 8135 } else { 8136 if (chk->whoTo != net) { 8137 continue; 8138 } 8139 } 8140 skip_net_check: 8141 if (chk->data == NULL) { 8142 continue; 8143 } 8144 if (chk->sent != SCTP_DATAGRAM_UNSENT) { 8145 /* 8146 * It must be unsent. Cookies and ASCONF's 8147 * hang around but there timers will force 8148 * when marked for resend. 8149 */ 8150 continue; 8151 } 8152 /* 8153 * if no AUTH is yet included and this chunk 8154 * requires it, make sure to account for it. We 8155 * don't apply the size until the AUTH chunk is 8156 * actually added below in case there is no room for 8157 * this chunk. NOTE: we overload the use of "omtu" 8158 * here 8159 */ 8160 if ((auth == NULL) && 8161 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8162 stcb->asoc.peer_auth_chunks)) { 8163 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8164 } else 8165 omtu = 0; 8166 /* Here we do NOT factor the r_mtu */ 8167 if ((chk->send_size <= (int)(mtu - omtu)) || 8168 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8169 /* 8170 * We probably should glom the mbuf chain 8171 * from the chk->data for control but the 8172 * problem is it becomes yet one more level 8173 * of tracking to do if for some reason 8174 * output fails. Then I have got to 8175 * reconstruct the merged control chain.. el 8176 * yucko.. for now we take the easy way and 8177 * do the copy 8178 */ 8179 /* 8180 * Add an AUTH chunk, if chunk requires it 8181 * save the offset into the chain for AUTH 8182 */ 8183 if ((auth == NULL) && 8184 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8185 stcb->asoc.peer_auth_chunks))) { 8186 outchain = sctp_add_auth_chunk(outchain, 8187 &endoutchain, 8188 &auth, 8189 &auth_offset, 8190 stcb, 8191 chk->rec.chunk_id.id); 8192 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8193 } 8194 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8195 (int)chk->rec.chunk_id.can_take_data, 8196 chk->send_size, chk->copy_by_ref); 8197 if (outchain == NULL) { 8198 *reason_code = 8; 8199 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8200 return (ENOMEM); 8201 } 8202 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8203 /* update our MTU size */ 8204 if (mtu > (chk->send_size + omtu)) 8205 mtu -= (chk->send_size + omtu); 8206 else 8207 mtu = 0; 8208 to_out += (chk->send_size + omtu); 8209 /* Do clear IP_DF ? */ 8210 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8211 no_fragmentflg = 0; 8212 } 8213 if (chk->rec.chunk_id.can_take_data) 8214 chk->data = NULL; 8215 /* Mark things to be removed, if needed */ 8216 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8217 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 8218 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 8219 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 8220 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 8221 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 8222 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 8223 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 8224 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 8225 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 8226 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 8227 if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) { 8228 hbflag = 1; 8229 } 8230 /* remove these chunks at the end */ 8231 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8232 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 8233 /* turn off the timer */ 8234 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 8235 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 8236 inp, stcb, net, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1); 8237 } 8238 } 8239 ctl_cnt++; 8240 } else { 8241 /* 8242 * Other chunks, since they have 8243 * timers running (i.e. COOKIE) we 8244 * just "trust" that it gets sent or 8245 * retransmitted. 8246 */ 8247 ctl_cnt++; 8248 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 8249 cookie = 1; 8250 no_out_cnt = 1; 8251 } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 8252 /* 8253 * Increment ecne send count 8254 * here this means we may be 8255 * over-zealous in our 8256 * counting if the send 8257 * fails, but its the best 8258 * place to do it (we used 8259 * to do it in the queue of 8260 * the chunk, but that did 8261 * not tell how many times 8262 * it was sent. 8263 */ 8264 SCTP_STAT_INCR(sctps_sendecne); 8265 } 8266 chk->sent = SCTP_DATAGRAM_SENT; 8267 if (chk->whoTo == NULL) { 8268 chk->whoTo = net; 8269 atomic_add_int(&net->ref_count, 1); 8270 } 8271 chk->snd_count++; 8272 } 8273 if (mtu == 0) { 8274 /* 8275 * Ok we are out of room but we can 8276 * output without effecting the 8277 * flight size since this little guy 8278 * is a control only packet. 8279 */ 8280 if (asconf) { 8281 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8282 /* 8283 * do NOT clear the asconf 8284 * flag as it is used to do 8285 * appropriate source 8286 * address selection. 8287 */ 8288 } 8289 if (cookie) { 8290 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8291 cookie = 0; 8292 } 8293 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8294 (struct sockaddr *)&net->ro._l_addr, 8295 outchain, 8296 auth_offset, auth, 8297 stcb->asoc.authinfo.active_keyid, 8298 no_fragmentflg, 0, asconf, 8299 inp->sctp_lport, stcb->rport, 8300 htonl(stcb->asoc.peer_vtag), 8301 net->port, NULL, 8302 0, 0, 8303 so_locked))) { 8304 if (error == ENOBUFS) { 8305 asoc->ifp_had_enobuf = 1; 8306 SCTP_STAT_INCR(sctps_lowlevelerr); 8307 } 8308 if (from_where == 0) { 8309 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8310 } 8311 /* error, could not output */ 8312 if (hbflag) { 8313 if (*now_filled == 0) { 8314 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8315 *now_filled = 1; 8316 *now = net->last_sent_time; 8317 } else { 8318 net->last_sent_time = *now; 8319 } 8320 hbflag = 0; 8321 } 8322 if (error == EHOSTUNREACH) { 8323 /* 8324 * Destination went 8325 * unreachable 8326 * during this send 8327 */ 8328 sctp_move_chunks_from_net(stcb, net); 8329 } 8330 *reason_code = 7; 8331 continue; 8332 } else 8333 asoc->ifp_had_enobuf = 0; 8334 /* Only HB or ASCONF advances time */ 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 /* 8346 * increase the number we sent, if a 8347 * cookie is sent we don't tell them 8348 * any was sent out. 8349 */ 8350 outchain = endoutchain = NULL; 8351 auth = NULL; 8352 auth_offset = 0; 8353 if (!no_out_cnt) 8354 *num_out += ctl_cnt; 8355 /* recalc a clean slate and setup */ 8356 switch (net->ro._l_addr.sa.sa_family) { 8357 #ifdef INET 8358 case AF_INET: 8359 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8360 break; 8361 #endif 8362 #ifdef INET6 8363 case AF_INET6: 8364 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8365 break; 8366 #endif 8367 default: 8368 /* TSNH */ 8369 mtu = net->mtu; 8370 break; 8371 } 8372 to_out = 0; 8373 no_fragmentflg = 1; 8374 } 8375 } 8376 } 8377 /* JRI: if dest is in PF state, do not send data to it */ 8378 if ((asoc->sctp_cmt_on_off > 0) && 8379 (net != stcb->asoc.alternate) && 8380 (net->dest_state & SCTP_ADDR_PF)) { 8381 goto no_data_fill; 8382 } 8383 if (net->flight_size >= net->cwnd) { 8384 goto no_data_fill; 8385 } 8386 if ((asoc->sctp_cmt_on_off > 0) && 8387 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) && 8388 (net->flight_size > max_rwnd_per_dest)) { 8389 goto no_data_fill; 8390 } 8391 /* 8392 * We need a specific accounting for the usage of the send 8393 * buffer. We also need to check the number of messages per 8394 * net. For now, this is better than nothing and it disabled 8395 * by default... 8396 */ 8397 if ((asoc->sctp_cmt_on_off > 0) && 8398 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) && 8399 (max_send_per_dest > 0) && 8400 (net->flight_size > max_send_per_dest)) { 8401 goto no_data_fill; 8402 } 8403 /*********************/ 8404 /* Data transmission */ 8405 /*********************/ 8406 /* 8407 * if AUTH for DATA is required and no AUTH has been added 8408 * yet, account for this in the mtu now... if no data can be 8409 * bundled, this adjustment won't matter anyways since the 8410 * packet will be going out... 8411 */ 8412 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, 8413 stcb->asoc.peer_auth_chunks); 8414 if (data_auth_reqd && (auth == NULL)) { 8415 mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8416 } 8417 /* now lets add any data within the MTU constraints */ 8418 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8419 #ifdef INET 8420 case AF_INET: 8421 if (net->mtu > (sizeof(struct ip) + sizeof(struct sctphdr))) 8422 omtu = net->mtu - (sizeof(struct ip) + sizeof(struct sctphdr)); 8423 else 8424 omtu = 0; 8425 break; 8426 #endif 8427 #ifdef INET6 8428 case AF_INET6: 8429 if (net->mtu > (sizeof(struct ip6_hdr) + sizeof(struct sctphdr))) 8430 omtu = net->mtu - (sizeof(struct ip6_hdr) + sizeof(struct sctphdr)); 8431 else 8432 omtu = 0; 8433 break; 8434 #endif 8435 default: 8436 /* TSNH */ 8437 omtu = 0; 8438 break; 8439 } 8440 if ((((asoc->state & SCTP_STATE_OPEN) == SCTP_STATE_OPEN) && 8441 (skip_data_for_this_net == 0)) || 8442 (cookie)) { 8443 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 8444 if (no_data_chunks) { 8445 /* let only control go out */ 8446 *reason_code = 1; 8447 break; 8448 } 8449 if (net->flight_size >= net->cwnd) { 8450 /* skip this net, no room for data */ 8451 *reason_code = 2; 8452 break; 8453 } 8454 if ((chk->whoTo != NULL) && 8455 (chk->whoTo != net)) { 8456 /* Don't send the chunk on this net */ 8457 continue; 8458 } 8459 if (asoc->sctp_cmt_on_off == 0) { 8460 if ((asoc->alternate) && 8461 (asoc->alternate != net) && 8462 (chk->whoTo == NULL)) { 8463 continue; 8464 } else if ((net != asoc->primary_destination) && 8465 (asoc->alternate == NULL) && 8466 (chk->whoTo == NULL)) { 8467 continue; 8468 } 8469 } 8470 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) { 8471 /*- 8472 * strange, we have a chunk that is 8473 * to big for its destination and 8474 * yet no fragment ok flag. 8475 * Something went wrong when the 8476 * PMTU changed...we did not mark 8477 * this chunk for some reason?? I 8478 * will fix it here by letting IP 8479 * fragment it for now and printing 8480 * a warning. This really should not 8481 * happen ... 8482 */ 8483 SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n", 8484 chk->send_size, mtu); 8485 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 8486 } 8487 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 8488 ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) { 8489 struct sctp_data_chunk *dchkh; 8490 8491 dchkh = mtod(chk->data, struct sctp_data_chunk *); 8492 dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY; 8493 } 8494 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) || 8495 ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) { 8496 /* ok we will add this one */ 8497 8498 /* 8499 * Add an AUTH chunk, if chunk 8500 * requires it, save the offset into 8501 * the chain for AUTH 8502 */ 8503 if (data_auth_reqd) { 8504 if (auth == NULL) { 8505 outchain = sctp_add_auth_chunk(outchain, 8506 &endoutchain, 8507 &auth, 8508 &auth_offset, 8509 stcb, 8510 SCTP_DATA); 8511 auth_keyid = chk->auth_keyid; 8512 override_ok = 0; 8513 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8514 } else if (override_ok) { 8515 /* 8516 * use this data's 8517 * keyid 8518 */ 8519 auth_keyid = chk->auth_keyid; 8520 override_ok = 0; 8521 } else if (auth_keyid != chk->auth_keyid) { 8522 /* 8523 * different keyid, 8524 * so done bundling 8525 */ 8526 break; 8527 } 8528 } 8529 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0, 8530 chk->send_size, chk->copy_by_ref); 8531 if (outchain == NULL) { 8532 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n"); 8533 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 8534 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8535 } 8536 *reason_code = 3; 8537 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8538 return (ENOMEM); 8539 } 8540 /* upate our MTU size */ 8541 /* Do clear IP_DF ? */ 8542 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8543 no_fragmentflg = 0; 8544 } 8545 /* unsigned subtraction of mtu */ 8546 if (mtu > chk->send_size) 8547 mtu -= chk->send_size; 8548 else 8549 mtu = 0; 8550 /* unsigned subtraction of r_mtu */ 8551 if (r_mtu > chk->send_size) 8552 r_mtu -= chk->send_size; 8553 else 8554 r_mtu = 0; 8555 8556 to_out += chk->send_size; 8557 if ((to_out > mx_mtu) && no_fragmentflg) { 8558 #ifdef INVARIANTS 8559 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out); 8560 #else 8561 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n", 8562 mx_mtu, to_out); 8563 #endif 8564 } 8565 chk->window_probe = 0; 8566 data_list[bundle_at++] = chk; 8567 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 8568 break; 8569 } 8570 if (chk->sent == SCTP_DATAGRAM_UNSENT) { 8571 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) { 8572 SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks); 8573 } else { 8574 SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks); 8575 } 8576 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) && 8577 ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0)) 8578 /* 8579 * Count number of 8580 * user msg's that 8581 * were fragmented 8582 * we do this by 8583 * counting when we 8584 * see a LAST 8585 * fragment only. 8586 */ 8587 SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs); 8588 } 8589 if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) { 8590 if ((one_chunk) && (stcb->asoc.total_flight == 0)) { 8591 data_list[0]->window_probe = 1; 8592 net->window_probe = 1; 8593 } 8594 break; 8595 } 8596 } else { 8597 /* 8598 * Must be sent in order of the 8599 * TSN's (on a network) 8600 */ 8601 break; 8602 } 8603 } /* for (chunk gather loop for this net) */ 8604 } /* if asoc.state OPEN */ 8605 no_data_fill: 8606 /* Is there something to send for this destination? */ 8607 if (outchain) { 8608 /* We may need to start a control timer or two */ 8609 if (asconf) { 8610 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, 8611 stcb, net); 8612 /* 8613 * do NOT clear the asconf flag as it is 8614 * used to do appropriate source address 8615 * selection. 8616 */ 8617 } 8618 if (cookie) { 8619 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8620 cookie = 0; 8621 } 8622 /* must start a send timer if data is being sent */ 8623 if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) { 8624 /* 8625 * no timer running on this destination 8626 * restart it. 8627 */ 8628 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8629 } 8630 /* Now send it, if there is anything to send :> */ 8631 if ((error = sctp_lowlevel_chunk_output(inp, 8632 stcb, 8633 net, 8634 (struct sockaddr *)&net->ro._l_addr, 8635 outchain, 8636 auth_offset, 8637 auth, 8638 auth_keyid, 8639 no_fragmentflg, 8640 bundle_at, 8641 asconf, 8642 inp->sctp_lport, stcb->rport, 8643 htonl(stcb->asoc.peer_vtag), 8644 net->port, NULL, 8645 0, 0, 8646 so_locked))) { 8647 /* error, we could not output */ 8648 if (error == ENOBUFS) { 8649 SCTP_STAT_INCR(sctps_lowlevelerr); 8650 asoc->ifp_had_enobuf = 1; 8651 } 8652 if (from_where == 0) { 8653 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8654 } 8655 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8656 if (hbflag) { 8657 if (*now_filled == 0) { 8658 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8659 *now_filled = 1; 8660 *now = net->last_sent_time; 8661 } else { 8662 net->last_sent_time = *now; 8663 } 8664 hbflag = 0; 8665 } 8666 if (error == EHOSTUNREACH) { 8667 /* 8668 * Destination went unreachable 8669 * during this send 8670 */ 8671 sctp_move_chunks_from_net(stcb, net); 8672 } 8673 *reason_code = 6; 8674 /*- 8675 * I add this line to be paranoid. As far as 8676 * I can tell the continue, takes us back to 8677 * the top of the for, but just to make sure 8678 * I will reset these again here. 8679 */ 8680 ctl_cnt = bundle_at = 0; 8681 continue; /* This takes us back to the 8682 * for() for the nets. */ 8683 } else { 8684 asoc->ifp_had_enobuf = 0; 8685 } 8686 endoutchain = NULL; 8687 auth = NULL; 8688 auth_offset = 0; 8689 if (bundle_at || hbflag) { 8690 /* For data/asconf and hb set time */ 8691 if (*now_filled == 0) { 8692 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 8693 *now_filled = 1; 8694 *now = net->last_sent_time; 8695 } else { 8696 net->last_sent_time = *now; 8697 } 8698 } 8699 if (!no_out_cnt) { 8700 *num_out += (ctl_cnt + bundle_at); 8701 } 8702 if (bundle_at) { 8703 /* setup for a RTO measurement */ 8704 tsns_sent = data_list[0]->rec.data.TSN_seq; 8705 /* fill time if not already filled */ 8706 if (*now_filled == 0) { 8707 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 8708 *now_filled = 1; 8709 *now = asoc->time_last_sent; 8710 } else { 8711 asoc->time_last_sent = *now; 8712 } 8713 if (net->rto_needed) { 8714 data_list[0]->do_rtt = 1; 8715 net->rto_needed = 0; 8716 } 8717 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at); 8718 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net); 8719 } 8720 if (one_chunk) { 8721 break; 8722 } 8723 } 8724 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8725 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND); 8726 } 8727 } 8728 if (old_start_at == NULL) { 8729 old_start_at = start_at; 8730 start_at = TAILQ_FIRST(&asoc->nets); 8731 if (old_start_at) 8732 goto again_one_more_time; 8733 } 8734 /* 8735 * At the end there should be no NON timed chunks hanging on this 8736 * queue. 8737 */ 8738 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8739 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND); 8740 } 8741 if ((*num_out == 0) && (*reason_code == 0)) { 8742 *reason_code = 4; 8743 } else { 8744 *reason_code = 5; 8745 } 8746 sctp_clean_up_ctl(stcb, asoc, so_locked); 8747 return (0); 8748 } 8749 8750 void 8751 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err) 8752 { 8753 /*- 8754 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of 8755 * the control chunk queue. 8756 */ 8757 struct sctp_chunkhdr *hdr; 8758 struct sctp_tmit_chunk *chk; 8759 struct mbuf *mat; 8760 8761 SCTP_TCB_LOCK_ASSERT(stcb); 8762 sctp_alloc_a_chunk(stcb, chk); 8763 if (chk == NULL) { 8764 /* no memory */ 8765 sctp_m_freem(op_err); 8766 return; 8767 } 8768 chk->copy_by_ref = 0; 8769 SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT); 8770 if (op_err == NULL) { 8771 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 8772 return; 8773 } 8774 chk->send_size = 0; 8775 mat = op_err; 8776 while (mat != NULL) { 8777 chk->send_size += SCTP_BUF_LEN(mat); 8778 mat = SCTP_BUF_NEXT(mat); 8779 } 8780 chk->rec.chunk_id.id = SCTP_OPERATION_ERROR; 8781 chk->rec.chunk_id.can_take_data = 1; 8782 chk->sent = SCTP_DATAGRAM_UNSENT; 8783 chk->snd_count = 0; 8784 chk->flags = 0; 8785 chk->asoc = &stcb->asoc; 8786 chk->data = op_err; 8787 chk->whoTo = NULL; 8788 hdr = mtod(op_err, struct sctp_chunkhdr *); 8789 hdr->chunk_type = SCTP_OPERATION_ERROR; 8790 hdr->chunk_flags = 0; 8791 hdr->chunk_length = htons(chk->send_size); 8792 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, 8793 chk, 8794 sctp_next); 8795 chk->asoc->ctrl_queue_cnt++; 8796 } 8797 8798 int 8799 sctp_send_cookie_echo(struct mbuf *m, 8800 int offset, 8801 struct sctp_tcb *stcb, 8802 struct sctp_nets *net) 8803 { 8804 /*- 8805 * pull out the cookie and put it at the front of the control chunk 8806 * queue. 8807 */ 8808 int at; 8809 struct mbuf *cookie; 8810 struct sctp_paramhdr parm, *phdr; 8811 struct sctp_chunkhdr *hdr; 8812 struct sctp_tmit_chunk *chk; 8813 uint16_t ptype, plen; 8814 8815 /* First find the cookie in the param area */ 8816 cookie = NULL; 8817 at = offset + sizeof(struct sctp_init_chunk); 8818 8819 SCTP_TCB_LOCK_ASSERT(stcb); 8820 do { 8821 phdr = sctp_get_next_param(m, at, &parm, sizeof(parm)); 8822 if (phdr == NULL) { 8823 return (-3); 8824 } 8825 ptype = ntohs(phdr->param_type); 8826 plen = ntohs(phdr->param_length); 8827 if (ptype == SCTP_STATE_COOKIE) { 8828 int pad; 8829 8830 /* found the cookie */ 8831 if ((pad = (plen % 4))) { 8832 plen += 4 - pad; 8833 } 8834 cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT); 8835 if (cookie == NULL) { 8836 /* No memory */ 8837 return (-2); 8838 } 8839 #ifdef SCTP_MBUF_LOGGING 8840 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 8841 struct mbuf *mat; 8842 8843 for (mat = cookie; mat; mat = SCTP_BUF_NEXT(mat)) { 8844 if (SCTP_BUF_IS_EXTENDED(mat)) { 8845 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 8846 } 8847 } 8848 } 8849 #endif 8850 break; 8851 } 8852 at += SCTP_SIZE32(plen); 8853 } while (phdr); 8854 if (cookie == NULL) { 8855 /* Did not find the cookie */ 8856 return (-3); 8857 } 8858 /* ok, we got the cookie lets change it into a cookie echo chunk */ 8859 8860 /* first the change from param to cookie */ 8861 hdr = mtod(cookie, struct sctp_chunkhdr *); 8862 hdr->chunk_type = SCTP_COOKIE_ECHO; 8863 hdr->chunk_flags = 0; 8864 /* get the chunk stuff now and place it in the FRONT of the queue */ 8865 sctp_alloc_a_chunk(stcb, chk); 8866 if (chk == NULL) { 8867 /* no memory */ 8868 sctp_m_freem(cookie); 8869 return (-5); 8870 } 8871 chk->copy_by_ref = 0; 8872 chk->send_size = plen; 8873 chk->rec.chunk_id.id = SCTP_COOKIE_ECHO; 8874 chk->rec.chunk_id.can_take_data = 0; 8875 chk->sent = SCTP_DATAGRAM_UNSENT; 8876 chk->snd_count = 0; 8877 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 8878 chk->asoc = &stcb->asoc; 8879 chk->data = cookie; 8880 chk->whoTo = net; 8881 atomic_add_int(&chk->whoTo->ref_count, 1); 8882 TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next); 8883 chk->asoc->ctrl_queue_cnt++; 8884 return (0); 8885 } 8886 8887 void 8888 sctp_send_heartbeat_ack(struct sctp_tcb *stcb, 8889 struct mbuf *m, 8890 int offset, 8891 int chk_length, 8892 struct sctp_nets *net) 8893 { 8894 /* 8895 * take a HB request and make it into a HB ack and send it. 8896 */ 8897 struct mbuf *outchain; 8898 struct sctp_chunkhdr *chdr; 8899 struct sctp_tmit_chunk *chk; 8900 8901 8902 if (net == NULL) 8903 /* must have a net pointer */ 8904 return; 8905 8906 outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT); 8907 if (outchain == NULL) { 8908 /* gak out of memory */ 8909 return; 8910 } 8911 #ifdef SCTP_MBUF_LOGGING 8912 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 8913 struct mbuf *mat; 8914 8915 for (mat = outchain; mat; mat = SCTP_BUF_NEXT(mat)) { 8916 if (SCTP_BUF_IS_EXTENDED(mat)) { 8917 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 8918 } 8919 } 8920 } 8921 #endif 8922 chdr = mtod(outchain, struct sctp_chunkhdr *); 8923 chdr->chunk_type = SCTP_HEARTBEAT_ACK; 8924 chdr->chunk_flags = 0; 8925 if (chk_length % 4) { 8926 /* need pad */ 8927 uint32_t cpthis = 0; 8928 int padlen; 8929 8930 padlen = 4 - (chk_length % 4); 8931 m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis); 8932 } 8933 sctp_alloc_a_chunk(stcb, chk); 8934 if (chk == NULL) { 8935 /* no memory */ 8936 sctp_m_freem(outchain); 8937 return; 8938 } 8939 chk->copy_by_ref = 0; 8940 chk->send_size = chk_length; 8941 chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK; 8942 chk->rec.chunk_id.can_take_data = 1; 8943 chk->sent = SCTP_DATAGRAM_UNSENT; 8944 chk->snd_count = 0; 8945 chk->flags = 0; 8946 chk->asoc = &stcb->asoc; 8947 chk->data = outchain; 8948 chk->whoTo = net; 8949 atomic_add_int(&chk->whoTo->ref_count, 1); 8950 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 8951 chk->asoc->ctrl_queue_cnt++; 8952 } 8953 8954 void 8955 sctp_send_cookie_ack(struct sctp_tcb *stcb) 8956 { 8957 /* formulate and queue a cookie-ack back to sender */ 8958 struct mbuf *cookie_ack; 8959 struct sctp_chunkhdr *hdr; 8960 struct sctp_tmit_chunk *chk; 8961 8962 SCTP_TCB_LOCK_ASSERT(stcb); 8963 8964 cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 8965 if (cookie_ack == NULL) { 8966 /* no mbuf's */ 8967 return; 8968 } 8969 SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD); 8970 sctp_alloc_a_chunk(stcb, chk); 8971 if (chk == NULL) { 8972 /* no memory */ 8973 sctp_m_freem(cookie_ack); 8974 return; 8975 } 8976 chk->copy_by_ref = 0; 8977 chk->send_size = sizeof(struct sctp_chunkhdr); 8978 chk->rec.chunk_id.id = SCTP_COOKIE_ACK; 8979 chk->rec.chunk_id.can_take_data = 1; 8980 chk->sent = SCTP_DATAGRAM_UNSENT; 8981 chk->snd_count = 0; 8982 chk->flags = 0; 8983 chk->asoc = &stcb->asoc; 8984 chk->data = cookie_ack; 8985 if (chk->asoc->last_control_chunk_from != NULL) { 8986 chk->whoTo = chk->asoc->last_control_chunk_from; 8987 atomic_add_int(&chk->whoTo->ref_count, 1); 8988 } else { 8989 chk->whoTo = NULL; 8990 } 8991 hdr = mtod(cookie_ack, struct sctp_chunkhdr *); 8992 hdr->chunk_type = SCTP_COOKIE_ACK; 8993 hdr->chunk_flags = 0; 8994 hdr->chunk_length = htons(chk->send_size); 8995 SCTP_BUF_LEN(cookie_ack) = chk->send_size; 8996 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 8997 chk->asoc->ctrl_queue_cnt++; 8998 return; 8999 } 9000 9001 9002 void 9003 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net) 9004 { 9005 /* formulate and queue a SHUTDOWN-ACK back to the sender */ 9006 struct mbuf *m_shutdown_ack; 9007 struct sctp_shutdown_ack_chunk *ack_cp; 9008 struct sctp_tmit_chunk *chk; 9009 9010 m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9011 if (m_shutdown_ack == NULL) { 9012 /* no mbuf's */ 9013 return; 9014 } 9015 SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD); 9016 sctp_alloc_a_chunk(stcb, chk); 9017 if (chk == NULL) { 9018 /* no memory */ 9019 sctp_m_freem(m_shutdown_ack); 9020 return; 9021 } 9022 chk->copy_by_ref = 0; 9023 chk->send_size = sizeof(struct sctp_chunkhdr); 9024 chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK; 9025 chk->rec.chunk_id.can_take_data = 1; 9026 chk->sent = SCTP_DATAGRAM_UNSENT; 9027 chk->snd_count = 0; 9028 chk->flags = 0; 9029 chk->asoc = &stcb->asoc; 9030 chk->data = m_shutdown_ack; 9031 chk->whoTo = net; 9032 if (chk->whoTo) { 9033 atomic_add_int(&chk->whoTo->ref_count, 1); 9034 } 9035 ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *); 9036 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK; 9037 ack_cp->ch.chunk_flags = 0; 9038 ack_cp->ch.chunk_length = htons(chk->send_size); 9039 SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size; 9040 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9041 chk->asoc->ctrl_queue_cnt++; 9042 return; 9043 } 9044 9045 void 9046 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net) 9047 { 9048 /* formulate and queue a SHUTDOWN to the sender */ 9049 struct mbuf *m_shutdown; 9050 struct sctp_shutdown_chunk *shutdown_cp; 9051 struct sctp_tmit_chunk *chk; 9052 9053 m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9054 if (m_shutdown == NULL) { 9055 /* no mbuf's */ 9056 return; 9057 } 9058 SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD); 9059 sctp_alloc_a_chunk(stcb, chk); 9060 if (chk == NULL) { 9061 /* no memory */ 9062 sctp_m_freem(m_shutdown); 9063 return; 9064 } 9065 chk->copy_by_ref = 0; 9066 chk->send_size = sizeof(struct sctp_shutdown_chunk); 9067 chk->rec.chunk_id.id = SCTP_SHUTDOWN; 9068 chk->rec.chunk_id.can_take_data = 1; 9069 chk->sent = SCTP_DATAGRAM_UNSENT; 9070 chk->snd_count = 0; 9071 chk->flags = 0; 9072 chk->asoc = &stcb->asoc; 9073 chk->data = m_shutdown; 9074 chk->whoTo = net; 9075 if (chk->whoTo) { 9076 atomic_add_int(&chk->whoTo->ref_count, 1); 9077 } 9078 shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *); 9079 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN; 9080 shutdown_cp->ch.chunk_flags = 0; 9081 shutdown_cp->ch.chunk_length = htons(chk->send_size); 9082 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9083 SCTP_BUF_LEN(m_shutdown) = chk->send_size; 9084 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9085 chk->asoc->ctrl_queue_cnt++; 9086 return; 9087 } 9088 9089 void 9090 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked) 9091 { 9092 /* 9093 * formulate and queue an ASCONF to the peer. ASCONF parameters 9094 * should be queued on the assoc queue. 9095 */ 9096 struct sctp_tmit_chunk *chk; 9097 struct mbuf *m_asconf; 9098 int len; 9099 9100 SCTP_TCB_LOCK_ASSERT(stcb); 9101 9102 if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) && 9103 (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) { 9104 /* can't send a new one if there is one in flight already */ 9105 return; 9106 } 9107 /* compose an ASCONF chunk, maximum length is PMTU */ 9108 m_asconf = sctp_compose_asconf(stcb, &len, addr_locked); 9109 if (m_asconf == NULL) { 9110 return; 9111 } 9112 sctp_alloc_a_chunk(stcb, chk); 9113 if (chk == NULL) { 9114 /* no memory */ 9115 sctp_m_freem(m_asconf); 9116 return; 9117 } 9118 chk->copy_by_ref = 0; 9119 chk->data = m_asconf; 9120 chk->send_size = len; 9121 chk->rec.chunk_id.id = SCTP_ASCONF; 9122 chk->rec.chunk_id.can_take_data = 0; 9123 chk->sent = SCTP_DATAGRAM_UNSENT; 9124 chk->snd_count = 0; 9125 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9126 chk->asoc = &stcb->asoc; 9127 chk->whoTo = net; 9128 if (chk->whoTo) { 9129 atomic_add_int(&chk->whoTo->ref_count, 1); 9130 } 9131 TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next); 9132 chk->asoc->ctrl_queue_cnt++; 9133 return; 9134 } 9135 9136 void 9137 sctp_send_asconf_ack(struct sctp_tcb *stcb) 9138 { 9139 /* 9140 * formulate and queue a asconf-ack back to sender. the asconf-ack 9141 * must be stored in the tcb. 9142 */ 9143 struct sctp_tmit_chunk *chk; 9144 struct sctp_asconf_ack *ack, *latest_ack; 9145 struct mbuf *m_ack; 9146 struct sctp_nets *net = NULL; 9147 9148 SCTP_TCB_LOCK_ASSERT(stcb); 9149 /* Get the latest ASCONF-ACK */ 9150 latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead); 9151 if (latest_ack == NULL) { 9152 return; 9153 } 9154 if (latest_ack->last_sent_to != NULL && 9155 latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) { 9156 /* we're doing a retransmission */ 9157 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0); 9158 if (net == NULL) { 9159 /* no alternate */ 9160 if (stcb->asoc.last_control_chunk_from == NULL) { 9161 if (stcb->asoc.alternate) { 9162 net = stcb->asoc.alternate; 9163 } else { 9164 net = stcb->asoc.primary_destination; 9165 } 9166 } else { 9167 net = stcb->asoc.last_control_chunk_from; 9168 } 9169 } 9170 } else { 9171 /* normal case */ 9172 if (stcb->asoc.last_control_chunk_from == NULL) { 9173 if (stcb->asoc.alternate) { 9174 net = stcb->asoc.alternate; 9175 } else { 9176 net = stcb->asoc.primary_destination; 9177 } 9178 } else { 9179 net = stcb->asoc.last_control_chunk_from; 9180 } 9181 } 9182 latest_ack->last_sent_to = net; 9183 9184 TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) { 9185 if (ack->data == NULL) { 9186 continue; 9187 } 9188 /* copy the asconf_ack */ 9189 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT); 9190 if (m_ack == NULL) { 9191 /* couldn't copy it */ 9192 return; 9193 } 9194 #ifdef SCTP_MBUF_LOGGING 9195 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9196 struct mbuf *mat; 9197 9198 for (mat = m_ack; mat; mat = SCTP_BUF_NEXT(mat)) { 9199 if (SCTP_BUF_IS_EXTENDED(mat)) { 9200 sctp_log_mb(mat, SCTP_MBUF_ICOPY); 9201 } 9202 } 9203 } 9204 #endif 9205 9206 sctp_alloc_a_chunk(stcb, chk); 9207 if (chk == NULL) { 9208 /* no memory */ 9209 if (m_ack) 9210 sctp_m_freem(m_ack); 9211 return; 9212 } 9213 chk->copy_by_ref = 0; 9214 9215 chk->whoTo = net; 9216 if (chk->whoTo) { 9217 atomic_add_int(&chk->whoTo->ref_count, 1); 9218 } 9219 chk->data = m_ack; 9220 chk->send_size = 0; 9221 /* Get size */ 9222 chk->send_size = ack->len; 9223 chk->rec.chunk_id.id = SCTP_ASCONF_ACK; 9224 chk->rec.chunk_id.can_take_data = 1; 9225 chk->sent = SCTP_DATAGRAM_UNSENT; 9226 chk->snd_count = 0; 9227 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; /* XXX */ 9228 chk->asoc = &stcb->asoc; 9229 9230 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9231 chk->asoc->ctrl_queue_cnt++; 9232 } 9233 return; 9234 } 9235 9236 9237 static int 9238 sctp_chunk_retransmission(struct sctp_inpcb *inp, 9239 struct sctp_tcb *stcb, 9240 struct sctp_association *asoc, 9241 int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked 9242 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9243 SCTP_UNUSED 9244 #endif 9245 ) 9246 { 9247 /*- 9248 * send out one MTU of retransmission. If fast_retransmit is 9249 * happening we ignore the cwnd. Otherwise we obey the cwnd and 9250 * rwnd. For a Cookie or Asconf in the control chunk queue we 9251 * retransmit them by themselves. 9252 * 9253 * For data chunks we will pick out the lowest TSN's in the sent_queue 9254 * marked for resend and bundle them all together (up to a MTU of 9255 * destination). The address to send to should have been 9256 * selected/changed where the retransmission was marked (i.e. in FR 9257 * or t3-timeout routines). 9258 */ 9259 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 9260 struct sctp_tmit_chunk *chk, *fwd; 9261 struct mbuf *m, *endofchain; 9262 struct sctp_nets *net = NULL; 9263 uint32_t tsns_sent = 0; 9264 int no_fragmentflg, bundle_at, cnt_thru; 9265 unsigned int mtu; 9266 int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started; 9267 struct sctp_auth_chunk *auth = NULL; 9268 uint32_t auth_offset = 0; 9269 uint16_t auth_keyid; 9270 int override_ok = 1; 9271 int data_auth_reqd = 0; 9272 uint32_t dmtu = 0; 9273 9274 SCTP_TCB_LOCK_ASSERT(stcb); 9275 tmr_started = ctl_cnt = bundle_at = error = 0; 9276 no_fragmentflg = 1; 9277 fwd_tsn = 0; 9278 *cnt_out = 0; 9279 fwd = NULL; 9280 endofchain = m = NULL; 9281 auth_keyid = stcb->asoc.authinfo.active_keyid; 9282 #ifdef SCTP_AUDITING_ENABLED 9283 sctp_audit_log(0xC3, 1); 9284 #endif 9285 if ((TAILQ_EMPTY(&asoc->sent_queue)) && 9286 (TAILQ_EMPTY(&asoc->control_send_queue))) { 9287 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n", 9288 asoc->sent_queue_retran_cnt); 9289 asoc->sent_queue_cnt = 0; 9290 asoc->sent_queue_cnt_removeable = 0; 9291 /* send back 0/0 so we enter normal transmission */ 9292 *cnt_out = 0; 9293 return (0); 9294 } 9295 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 9296 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) || 9297 (chk->rec.chunk_id.id == SCTP_STREAM_RESET) || 9298 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) { 9299 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9300 continue; 9301 } 9302 if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 9303 if (chk != asoc->str_reset) { 9304 /* 9305 * not eligible for retran if its 9306 * not ours 9307 */ 9308 continue; 9309 } 9310 } 9311 ctl_cnt++; 9312 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 9313 fwd_tsn = 1; 9314 } 9315 /* 9316 * Add an AUTH chunk, if chunk requires it save the 9317 * offset into the chain for AUTH 9318 */ 9319 if ((auth == NULL) && 9320 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 9321 stcb->asoc.peer_auth_chunks))) { 9322 m = sctp_add_auth_chunk(m, &endofchain, 9323 &auth, &auth_offset, 9324 stcb, 9325 chk->rec.chunk_id.id); 9326 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9327 } 9328 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9329 break; 9330 } 9331 } 9332 one_chunk = 0; 9333 cnt_thru = 0; 9334 /* do we have control chunks to retransmit? */ 9335 if (m != NULL) { 9336 /* Start a timer no matter if we suceed or fail */ 9337 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 9338 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo); 9339 } else if (chk->rec.chunk_id.id == SCTP_ASCONF) 9340 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo); 9341 chk->snd_count++; /* update our count */ 9342 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo, 9343 (struct sockaddr *)&chk->whoTo->ro._l_addr, m, 9344 auth_offset, auth, stcb->asoc.authinfo.active_keyid, 9345 no_fragmentflg, 0, 0, 9346 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9347 chk->whoTo->port, NULL, 9348 0, 0, 9349 so_locked))) { 9350 SCTP_STAT_INCR(sctps_lowlevelerr); 9351 return (error); 9352 } 9353 endofchain = NULL; 9354 auth = NULL; 9355 auth_offset = 0; 9356 /* 9357 * We don't want to mark the net->sent time here since this 9358 * we use this for HB and retrans cannot measure RTT 9359 */ 9360 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */ 9361 *cnt_out += 1; 9362 chk->sent = SCTP_DATAGRAM_SENT; 9363 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt); 9364 if (fwd_tsn == 0) { 9365 return (0); 9366 } else { 9367 /* Clean up the fwd-tsn list */ 9368 sctp_clean_up_ctl(stcb, asoc, so_locked); 9369 return (0); 9370 } 9371 } 9372 /* 9373 * Ok, it is just data retransmission we need to do or that and a 9374 * fwd-tsn with it all. 9375 */ 9376 if (TAILQ_EMPTY(&asoc->sent_queue)) { 9377 return (SCTP_RETRAN_DONE); 9378 } 9379 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) || 9380 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) { 9381 /* not yet open, resend the cookie and that is it */ 9382 return (1); 9383 } 9384 #ifdef SCTP_AUDITING_ENABLED 9385 sctp_auditing(20, inp, stcb, NULL); 9386 #endif 9387 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks); 9388 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 9389 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9390 /* No, not sent to this net or not ready for rtx */ 9391 continue; 9392 } 9393 if (chk->data == NULL) { 9394 SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n", 9395 chk->rec.data.TSN_seq, chk->snd_count, chk->sent); 9396 continue; 9397 } 9398 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) && 9399 (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) { 9400 /* Gak, we have exceeded max unlucky retran, abort! */ 9401 SCTP_PRINTF("Gak, chk->snd_count:%d >= max:%d - send abort\n", 9402 chk->snd_count, 9403 SCTP_BASE_SYSCTL(sctp_max_retran_chunk)); 9404 atomic_add_int(&stcb->asoc.refcnt, 1); 9405 sctp_abort_an_association(stcb->sctp_ep, stcb, NULL, so_locked); 9406 SCTP_TCB_LOCK(stcb); 9407 atomic_subtract_int(&stcb->asoc.refcnt, 1); 9408 return (SCTP_RETRAN_EXIT); 9409 } 9410 /* pick up the net */ 9411 net = chk->whoTo; 9412 switch (net->ro._l_addr.sa.sa_family) { 9413 #ifdef INET 9414 case AF_INET: 9415 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 9416 break; 9417 #endif 9418 #ifdef INET6 9419 case AF_INET6: 9420 mtu = net->mtu - SCTP_MIN_OVERHEAD; 9421 break; 9422 #endif 9423 default: 9424 /* TSNH */ 9425 mtu = net->mtu; 9426 break; 9427 } 9428 9429 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) { 9430 /* No room in peers rwnd */ 9431 uint32_t tsn; 9432 9433 tsn = asoc->last_acked_seq + 1; 9434 if (tsn == chk->rec.data.TSN_seq) { 9435 /* 9436 * we make a special exception for this 9437 * case. The peer has no rwnd but is missing 9438 * the lowest chunk.. which is probably what 9439 * is holding up the rwnd. 9440 */ 9441 goto one_chunk_around; 9442 } 9443 return (1); 9444 } 9445 one_chunk_around: 9446 if (asoc->peers_rwnd < mtu) { 9447 one_chunk = 1; 9448 if ((asoc->peers_rwnd == 0) && 9449 (asoc->total_flight == 0)) { 9450 chk->window_probe = 1; 9451 chk->whoTo->window_probe = 1; 9452 } 9453 } 9454 #ifdef SCTP_AUDITING_ENABLED 9455 sctp_audit_log(0xC3, 2); 9456 #endif 9457 bundle_at = 0; 9458 m = NULL; 9459 net->fast_retran_ip = 0; 9460 if (chk->rec.data.doing_fast_retransmit == 0) { 9461 /* 9462 * if no FR in progress skip destination that have 9463 * flight_size > cwnd. 9464 */ 9465 if (net->flight_size >= net->cwnd) { 9466 continue; 9467 } 9468 } else { 9469 /* 9470 * Mark the destination net to have FR recovery 9471 * limits put on it. 9472 */ 9473 *fr_done = 1; 9474 net->fast_retran_ip = 1; 9475 } 9476 9477 /* 9478 * if no AUTH is yet included and this chunk requires it, 9479 * make sure to account for it. We don't apply the size 9480 * until the AUTH chunk is actually added below in case 9481 * there is no room for this chunk. 9482 */ 9483 if (data_auth_reqd && (auth == NULL)) { 9484 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9485 } else 9486 dmtu = 0; 9487 9488 if ((chk->send_size <= (mtu - dmtu)) || 9489 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 9490 /* ok we will add this one */ 9491 if (data_auth_reqd) { 9492 if (auth == NULL) { 9493 m = sctp_add_auth_chunk(m, 9494 &endofchain, 9495 &auth, 9496 &auth_offset, 9497 stcb, 9498 SCTP_DATA); 9499 auth_keyid = chk->auth_keyid; 9500 override_ok = 0; 9501 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9502 } else if (override_ok) { 9503 auth_keyid = chk->auth_keyid; 9504 override_ok = 0; 9505 } else if (chk->auth_keyid != auth_keyid) { 9506 /* different keyid, so done bundling */ 9507 break; 9508 } 9509 } 9510 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9511 if (m == NULL) { 9512 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9513 return (ENOMEM); 9514 } 9515 /* Do clear IP_DF ? */ 9516 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9517 no_fragmentflg = 0; 9518 } 9519 /* upate our MTU size */ 9520 if (mtu > (chk->send_size + dmtu)) 9521 mtu -= (chk->send_size + dmtu); 9522 else 9523 mtu = 0; 9524 data_list[bundle_at++] = chk; 9525 if (one_chunk && (asoc->total_flight <= 0)) { 9526 SCTP_STAT_INCR(sctps_windowprobed); 9527 } 9528 } 9529 if (one_chunk == 0) { 9530 /* 9531 * now are there anymore forward from chk to pick 9532 * up? 9533 */ 9534 for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) { 9535 if (fwd->sent != SCTP_DATAGRAM_RESEND) { 9536 /* Nope, not for retran */ 9537 continue; 9538 } 9539 if (fwd->whoTo != net) { 9540 /* Nope, not the net in question */ 9541 continue; 9542 } 9543 if (data_auth_reqd && (auth == NULL)) { 9544 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9545 } else 9546 dmtu = 0; 9547 if (fwd->send_size <= (mtu - dmtu)) { 9548 if (data_auth_reqd) { 9549 if (auth == NULL) { 9550 m = sctp_add_auth_chunk(m, 9551 &endofchain, 9552 &auth, 9553 &auth_offset, 9554 stcb, 9555 SCTP_DATA); 9556 auth_keyid = fwd->auth_keyid; 9557 override_ok = 0; 9558 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9559 } else if (override_ok) { 9560 auth_keyid = fwd->auth_keyid; 9561 override_ok = 0; 9562 } else if (fwd->auth_keyid != auth_keyid) { 9563 /* 9564 * different keyid, 9565 * so done bundling 9566 */ 9567 break; 9568 } 9569 } 9570 m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref); 9571 if (m == NULL) { 9572 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9573 return (ENOMEM); 9574 } 9575 /* Do clear IP_DF ? */ 9576 if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9577 no_fragmentflg = 0; 9578 } 9579 /* upate our MTU size */ 9580 if (mtu > (fwd->send_size + dmtu)) 9581 mtu -= (fwd->send_size + dmtu); 9582 else 9583 mtu = 0; 9584 data_list[bundle_at++] = fwd; 9585 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 9586 break; 9587 } 9588 } else { 9589 /* can't fit so we are done */ 9590 break; 9591 } 9592 } 9593 } 9594 /* Is there something to send for this destination? */ 9595 if (m) { 9596 /* 9597 * No matter if we fail/or suceed we should start a 9598 * timer. A failure is like a lost IP packet :-) 9599 */ 9600 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9601 /* 9602 * no timer running on this destination 9603 * restart it. 9604 */ 9605 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9606 tmr_started = 1; 9607 } 9608 /* Now lets send it, if there is anything to send :> */ 9609 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 9610 (struct sockaddr *)&net->ro._l_addr, m, 9611 auth_offset, auth, auth_keyid, 9612 no_fragmentflg, 0, 0, 9613 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9614 net->port, NULL, 9615 0, 0, 9616 so_locked))) { 9617 /* error, we could not output */ 9618 SCTP_STAT_INCR(sctps_lowlevelerr); 9619 return (error); 9620 } 9621 endofchain = NULL; 9622 auth = NULL; 9623 auth_offset = 0; 9624 /* For HB's */ 9625 /* 9626 * We don't want to mark the net->sent time here 9627 * since this we use this for HB and retrans cannot 9628 * measure RTT 9629 */ 9630 /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */ 9631 9632 /* For auto-close */ 9633 cnt_thru++; 9634 if (*now_filled == 0) { 9635 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 9636 *now = asoc->time_last_sent; 9637 *now_filled = 1; 9638 } else { 9639 asoc->time_last_sent = *now; 9640 } 9641 *cnt_out += bundle_at; 9642 #ifdef SCTP_AUDITING_ENABLED 9643 sctp_audit_log(0xC4, bundle_at); 9644 #endif 9645 if (bundle_at) { 9646 tsns_sent = data_list[0]->rec.data.TSN_seq; 9647 } 9648 for (i = 0; i < bundle_at; i++) { 9649 SCTP_STAT_INCR(sctps_sendretransdata); 9650 data_list[i]->sent = SCTP_DATAGRAM_SENT; 9651 /* 9652 * When we have a revoked data, and we 9653 * retransmit it, then we clear the revoked 9654 * flag since this flag dictates if we 9655 * subtracted from the fs 9656 */ 9657 if (data_list[i]->rec.data.chunk_was_revoked) { 9658 /* Deflate the cwnd */ 9659 data_list[i]->whoTo->cwnd -= data_list[i]->book_size; 9660 data_list[i]->rec.data.chunk_was_revoked = 0; 9661 } 9662 data_list[i]->snd_count++; 9663 sctp_ucount_decr(asoc->sent_queue_retran_cnt); 9664 /* record the time */ 9665 data_list[i]->sent_rcv_time = asoc->time_last_sent; 9666 if (data_list[i]->book_size_scale) { 9667 /* 9668 * need to double the book size on 9669 * this one 9670 */ 9671 data_list[i]->book_size_scale = 0; 9672 /* 9673 * Since we double the booksize, we 9674 * must also double the output queue 9675 * size, since this get shrunk when 9676 * we free by this amount. 9677 */ 9678 atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size); 9679 data_list[i]->book_size *= 2; 9680 9681 9682 } else { 9683 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 9684 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 9685 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 9686 } 9687 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 9688 (uint32_t) (data_list[i]->send_size + 9689 SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 9690 } 9691 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 9692 sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND, 9693 data_list[i]->whoTo->flight_size, 9694 data_list[i]->book_size, 9695 (uintptr_t) data_list[i]->whoTo, 9696 data_list[i]->rec.data.TSN_seq); 9697 } 9698 sctp_flight_size_increase(data_list[i]); 9699 sctp_total_flight_increase(stcb, data_list[i]); 9700 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 9701 /* SWS sender side engages */ 9702 asoc->peers_rwnd = 0; 9703 } 9704 if ((i == 0) && 9705 (data_list[i]->rec.data.doing_fast_retransmit)) { 9706 SCTP_STAT_INCR(sctps_sendfastretrans); 9707 if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) && 9708 (tmr_started == 0)) { 9709 /*- 9710 * ok we just fast-retrans'd 9711 * the lowest TSN, i.e the 9712 * first on the list. In 9713 * this case we want to give 9714 * some more time to get a 9715 * SACK back without a 9716 * t3-expiring. 9717 */ 9718 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net, 9719 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4); 9720 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9721 } 9722 } 9723 } 9724 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9725 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND); 9726 } 9727 #ifdef SCTP_AUDITING_ENABLED 9728 sctp_auditing(21, inp, stcb, NULL); 9729 #endif 9730 } else { 9731 /* None will fit */ 9732 return (1); 9733 } 9734 if (asoc->sent_queue_retran_cnt <= 0) { 9735 /* all done we have no more to retran */ 9736 asoc->sent_queue_retran_cnt = 0; 9737 break; 9738 } 9739 if (one_chunk) { 9740 /* No more room in rwnd */ 9741 return (1); 9742 } 9743 /* stop the for loop here. we sent out a packet */ 9744 break; 9745 } 9746 return (0); 9747 } 9748 9749 static void 9750 sctp_timer_validation(struct sctp_inpcb *inp, 9751 struct sctp_tcb *stcb, 9752 struct sctp_association *asoc) 9753 { 9754 struct sctp_nets *net; 9755 9756 /* Validate that a timer is running somewhere */ 9757 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9758 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9759 /* Here is a timer */ 9760 return; 9761 } 9762 } 9763 SCTP_TCB_LOCK_ASSERT(stcb); 9764 /* Gak, we did not have a timer somewhere */ 9765 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n"); 9766 if (asoc->alternate) { 9767 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate); 9768 } else { 9769 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination); 9770 } 9771 return; 9772 } 9773 9774 void 9775 sctp_chunk_output(struct sctp_inpcb *inp, 9776 struct sctp_tcb *stcb, 9777 int from_where, 9778 int so_locked 9779 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9780 SCTP_UNUSED 9781 #endif 9782 ) 9783 { 9784 /*- 9785 * Ok this is the generic chunk service queue. we must do the 9786 * following: 9787 * - See if there are retransmits pending, if so we must 9788 * do these first. 9789 * - Service the stream queue that is next, moving any 9790 * message (note I must get a complete message i.e. 9791 * FIRST/MIDDLE and LAST to the out queue in one pass) and assigning 9792 * TSN's 9793 * - Check to see if the cwnd/rwnd allows any output, if so we 9794 * go ahead and fomulate and send the low level chunks. Making sure 9795 * to combine any control in the control chunk queue also. 9796 */ 9797 struct sctp_association *asoc; 9798 struct sctp_nets *net; 9799 int error = 0, num_out = 0, tot_out = 0, ret = 0, reason_code = 0; 9800 unsigned int burst_cnt = 0; 9801 struct timeval now; 9802 int now_filled = 0; 9803 int nagle_on; 9804 int frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 9805 int un_sent = 0; 9806 int fr_done; 9807 unsigned int tot_frs = 0; 9808 9809 asoc = &stcb->asoc; 9810 /* The Nagle algorithm is only applied when handling a send call. */ 9811 if (from_where == SCTP_OUTPUT_FROM_USR_SEND) { 9812 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) { 9813 nagle_on = 0; 9814 } else { 9815 nagle_on = 1; 9816 } 9817 } else { 9818 nagle_on = 0; 9819 } 9820 SCTP_TCB_LOCK_ASSERT(stcb); 9821 9822 un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 9823 9824 if ((un_sent <= 0) && 9825 (TAILQ_EMPTY(&asoc->control_send_queue)) && 9826 (TAILQ_EMPTY(&asoc->asconf_send_queue)) && 9827 (asoc->sent_queue_retran_cnt == 0)) { 9828 /* Nothing to do unless there is something to be sent left */ 9829 return; 9830 } 9831 /* 9832 * Do we have something to send, data or control AND a sack timer 9833 * running, if so piggy-back the sack. 9834 */ 9835 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 9836 sctp_send_sack(stcb, so_locked); 9837 (void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer); 9838 } 9839 while (asoc->sent_queue_retran_cnt) { 9840 /*- 9841 * Ok, it is retransmission time only, we send out only ONE 9842 * packet with a single call off to the retran code. 9843 */ 9844 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) { 9845 /*- 9846 * Special hook for handling cookiess discarded 9847 * by peer that carried data. Send cookie-ack only 9848 * and then the next call with get the retran's. 9849 */ 9850 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 9851 from_where, 9852 &now, &now_filled, frag_point, so_locked); 9853 return; 9854 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) { 9855 /* if its not from a HB then do it */ 9856 fr_done = 0; 9857 ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked); 9858 if (fr_done) { 9859 tot_frs++; 9860 } 9861 } else { 9862 /* 9863 * its from any other place, we don't allow retran 9864 * output (only control) 9865 */ 9866 ret = 1; 9867 } 9868 if (ret > 0) { 9869 /* Can't send anymore */ 9870 /*- 9871 * now lets push out control by calling med-level 9872 * output once. this assures that we WILL send HB's 9873 * if queued too. 9874 */ 9875 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 9876 from_where, 9877 &now, &now_filled, frag_point, so_locked); 9878 #ifdef SCTP_AUDITING_ENABLED 9879 sctp_auditing(8, inp, stcb, NULL); 9880 #endif 9881 sctp_timer_validation(inp, stcb, asoc); 9882 return; 9883 } 9884 if (ret < 0) { 9885 /*- 9886 * The count was off.. retran is not happening so do 9887 * the normal retransmission. 9888 */ 9889 #ifdef SCTP_AUDITING_ENABLED 9890 sctp_auditing(9, inp, stcb, NULL); 9891 #endif 9892 if (ret == SCTP_RETRAN_EXIT) { 9893 return; 9894 } 9895 break; 9896 } 9897 if (from_where == SCTP_OUTPUT_FROM_T3) { 9898 /* Only one transmission allowed out of a timeout */ 9899 #ifdef SCTP_AUDITING_ENABLED 9900 sctp_auditing(10, inp, stcb, NULL); 9901 #endif 9902 /* Push out any control */ 9903 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where, 9904 &now, &now_filled, frag_point, so_locked); 9905 return; 9906 } 9907 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) { 9908 /* Hit FR burst limit */ 9909 return; 9910 } 9911 if ((num_out == 0) && (ret == 0)) { 9912 /* No more retrans to send */ 9913 break; 9914 } 9915 } 9916 #ifdef SCTP_AUDITING_ENABLED 9917 sctp_auditing(12, inp, stcb, NULL); 9918 #endif 9919 /* Check for bad destinations, if they exist move chunks around. */ 9920 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9921 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) { 9922 /*- 9923 * if possible move things off of this address we 9924 * still may send below due to the dormant state but 9925 * we try to find an alternate address to send to 9926 * and if we have one we move all queued data on the 9927 * out wheel to this alternate address. 9928 */ 9929 if (net->ref_count > 1) 9930 sctp_move_chunks_from_net(stcb, net); 9931 } else { 9932 /*- 9933 * if ((asoc->sat_network) || (net->addr_is_local)) 9934 * { burst_limit = asoc->max_burst * 9935 * SCTP_SAT_NETWORK_BURST_INCR; } 9936 */ 9937 if (asoc->max_burst > 0) { 9938 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) { 9939 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) { 9940 /* 9941 * JRS - Use the congestion 9942 * control given in the 9943 * congestion control module 9944 */ 9945 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst); 9946 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 9947 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED); 9948 } 9949 SCTP_STAT_INCR(sctps_maxburstqueued); 9950 } 9951 net->fast_retran_ip = 0; 9952 } else { 9953 if (net->flight_size == 0) { 9954 /* 9955 * Should be decaying the 9956 * cwnd here 9957 */ 9958 ; 9959 } 9960 } 9961 } 9962 } 9963 9964 } 9965 burst_cnt = 0; 9966 do { 9967 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out, 9968 &reason_code, 0, from_where, 9969 &now, &now_filled, frag_point, so_locked); 9970 if (error) { 9971 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error); 9972 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 9973 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP); 9974 } 9975 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9976 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES); 9977 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES); 9978 } 9979 break; 9980 } 9981 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out); 9982 9983 tot_out += num_out; 9984 burst_cnt++; 9985 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9986 sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES); 9987 if (num_out == 0) { 9988 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES); 9989 } 9990 } 9991 if (nagle_on) { 9992 /* 9993 * When the Nagle algorithm is used, look at how 9994 * much is unsent, then if its smaller than an MTU 9995 * and we have data in flight we stop, except if we 9996 * are handling a fragmented user message. 9997 */ 9998 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 9999 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 10000 if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) && 10001 (stcb->asoc.total_flight > 0) && 10002 ((stcb->asoc.locked_on_sending == NULL) || 10003 sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 10004 break; 10005 } 10006 } 10007 if (TAILQ_EMPTY(&asoc->control_send_queue) && 10008 TAILQ_EMPTY(&asoc->send_queue) && 10009 stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc)) { 10010 /* Nothing left to send */ 10011 break; 10012 } 10013 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) { 10014 /* Nothing left to send */ 10015 break; 10016 } 10017 } while (num_out && 10018 ((asoc->max_burst == 0) || 10019 SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) || 10020 (burst_cnt < asoc->max_burst))); 10021 10022 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) { 10023 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) { 10024 SCTP_STAT_INCR(sctps_maxburstqueued); 10025 asoc->burst_limit_applied = 1; 10026 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10027 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED); 10028 } 10029 } else { 10030 asoc->burst_limit_applied = 0; 10031 } 10032 } 10033 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10034 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES); 10035 } 10036 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n", 10037 tot_out); 10038 10039 /*- 10040 * Now we need to clean up the control chunk chain if a ECNE is on 10041 * it. It must be marked as UNSENT again so next call will continue 10042 * to send it until such time that we get a CWR, to remove it. 10043 */ 10044 if (stcb->asoc.ecn_echo_cnt_onq) 10045 sctp_fix_ecn_echo(asoc); 10046 return; 10047 } 10048 10049 10050 int 10051 sctp_output( 10052 struct sctp_inpcb *inp, 10053 struct mbuf *m, 10054 struct sockaddr *addr, 10055 struct mbuf *control, 10056 struct thread *p, 10057 int flags) 10058 { 10059 if (inp == NULL) { 10060 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10061 return (EINVAL); 10062 } 10063 if (inp->sctp_socket == NULL) { 10064 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10065 return (EINVAL); 10066 } 10067 return (sctp_sosend(inp->sctp_socket, 10068 addr, 10069 (struct uio *)NULL, 10070 m, 10071 control, 10072 flags, p 10073 )); 10074 } 10075 10076 void 10077 send_forward_tsn(struct sctp_tcb *stcb, 10078 struct sctp_association *asoc) 10079 { 10080 struct sctp_tmit_chunk *chk; 10081 struct sctp_forward_tsn_chunk *fwdtsn; 10082 uint32_t advance_peer_ack_point; 10083 10084 SCTP_TCB_LOCK_ASSERT(stcb); 10085 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10086 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 10087 /* mark it to unsent */ 10088 chk->sent = SCTP_DATAGRAM_UNSENT; 10089 chk->snd_count = 0; 10090 /* Do we correct its output location? */ 10091 if (chk->whoTo) { 10092 sctp_free_remote_addr(chk->whoTo); 10093 chk->whoTo = NULL; 10094 } 10095 goto sctp_fill_in_rest; 10096 } 10097 } 10098 /* Ok if we reach here we must build one */ 10099 sctp_alloc_a_chunk(stcb, chk); 10100 if (chk == NULL) { 10101 return; 10102 } 10103 asoc->fwd_tsn_cnt++; 10104 chk->copy_by_ref = 0; 10105 chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN; 10106 chk->rec.chunk_id.can_take_data = 0; 10107 chk->asoc = asoc; 10108 chk->whoTo = NULL; 10109 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 10110 if (chk->data == NULL) { 10111 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 10112 return; 10113 } 10114 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 10115 chk->sent = SCTP_DATAGRAM_UNSENT; 10116 chk->snd_count = 0; 10117 TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next); 10118 asoc->ctrl_queue_cnt++; 10119 sctp_fill_in_rest: 10120 /*- 10121 * Here we go through and fill out the part that deals with 10122 * stream/seq of the ones we skip. 10123 */ 10124 SCTP_BUF_LEN(chk->data) = 0; 10125 { 10126 struct sctp_tmit_chunk *at, *tp1, *last; 10127 struct sctp_strseq *strseq; 10128 unsigned int cnt_of_space, i, ovh; 10129 unsigned int space_needed; 10130 unsigned int cnt_of_skipped = 0; 10131 10132 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10133 if ((at->sent != SCTP_FORWARD_TSN_SKIP) && 10134 (at->sent != SCTP_DATAGRAM_NR_ACKED)) { 10135 /* no more to look at */ 10136 break; 10137 } 10138 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10139 /* We don't report these */ 10140 continue; 10141 } 10142 cnt_of_skipped++; 10143 } 10144 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10145 (cnt_of_skipped * sizeof(struct sctp_strseq))); 10146 10147 cnt_of_space = M_TRAILINGSPACE(chk->data); 10148 10149 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 10150 ovh = SCTP_MIN_OVERHEAD; 10151 } else { 10152 ovh = SCTP_MIN_V4_OVERHEAD; 10153 } 10154 if (cnt_of_space > (asoc->smallest_mtu - ovh)) { 10155 /* trim to a mtu size */ 10156 cnt_of_space = asoc->smallest_mtu - ovh; 10157 } 10158 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10159 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10160 0xff, 0, cnt_of_skipped, 10161 asoc->advanced_peer_ack_point); 10162 10163 } 10164 advance_peer_ack_point = asoc->advanced_peer_ack_point; 10165 if (cnt_of_space < space_needed) { 10166 /*- 10167 * ok we must trim down the chunk by lowering the 10168 * advance peer ack point. 10169 */ 10170 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10171 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10172 0xff, 0xff, cnt_of_space, 10173 space_needed); 10174 } 10175 cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk); 10176 cnt_of_skipped /= sizeof(struct sctp_strseq); 10177 /*- 10178 * Go through and find the TSN that will be the one 10179 * we report. 10180 */ 10181 at = TAILQ_FIRST(&asoc->sent_queue); 10182 if (at != NULL) { 10183 for (i = 0; i < cnt_of_skipped; i++) { 10184 tp1 = TAILQ_NEXT(at, sctp_next); 10185 if (tp1 == NULL) { 10186 break; 10187 } 10188 at = tp1; 10189 } 10190 } 10191 if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10192 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10193 0xff, cnt_of_skipped, at->rec.data.TSN_seq, 10194 asoc->advanced_peer_ack_point); 10195 } 10196 last = at; 10197 /*- 10198 * last now points to last one I can report, update 10199 * peer ack point 10200 */ 10201 if (last) 10202 advance_peer_ack_point = last->rec.data.TSN_seq; 10203 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10204 cnt_of_skipped * sizeof(struct sctp_strseq); 10205 } 10206 chk->send_size = space_needed; 10207 /* Setup the chunk */ 10208 fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *); 10209 fwdtsn->ch.chunk_length = htons(chk->send_size); 10210 fwdtsn->ch.chunk_flags = 0; 10211 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN; 10212 fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point); 10213 SCTP_BUF_LEN(chk->data) = chk->send_size; 10214 fwdtsn++; 10215 /*- 10216 * Move pointer to after the fwdtsn and transfer to the 10217 * strseq pointer. 10218 */ 10219 strseq = (struct sctp_strseq *)fwdtsn; 10220 /*- 10221 * Now populate the strseq list. This is done blindly 10222 * without pulling out duplicate stream info. This is 10223 * inefficent but won't harm the process since the peer will 10224 * look at these in sequence and will thus release anything. 10225 * It could mean we exceed the PMTU and chop off some that 10226 * we could have included.. but this is unlikely (aka 1432/4 10227 * would mean 300+ stream seq's would have to be reported in 10228 * one FWD-TSN. With a bit of work we can later FIX this to 10229 * optimize and pull out duplcates.. but it does add more 10230 * overhead. So for now... not! 10231 */ 10232 at = TAILQ_FIRST(&asoc->sent_queue); 10233 for (i = 0; i < cnt_of_skipped; i++) { 10234 tp1 = TAILQ_NEXT(at, sctp_next); 10235 if (tp1 == NULL) 10236 break; 10237 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10238 /* We don't report these */ 10239 i--; 10240 at = tp1; 10241 continue; 10242 } 10243 if (at->rec.data.TSN_seq == advance_peer_ack_point) { 10244 at->rec.data.fwd_tsn_cnt = 0; 10245 } 10246 strseq->stream = ntohs(at->rec.data.stream_number); 10247 strseq->sequence = ntohs(at->rec.data.stream_seq); 10248 strseq++; 10249 at = tp1; 10250 } 10251 } 10252 return; 10253 } 10254 10255 void 10256 sctp_send_sack(struct sctp_tcb *stcb, int so_locked 10257 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10258 SCTP_UNUSED 10259 #endif 10260 ) 10261 { 10262 /*- 10263 * Queue up a SACK or NR-SACK in the control queue. 10264 * We must first check to see if a SACK or NR-SACK is 10265 * somehow on the control queue. 10266 * If so, we will take and and remove the old one. 10267 */ 10268 struct sctp_association *asoc; 10269 struct sctp_tmit_chunk *chk, *a_chk; 10270 struct sctp_sack_chunk *sack; 10271 struct sctp_nr_sack_chunk *nr_sack; 10272 struct sctp_gap_ack_block *gap_descriptor; 10273 struct sack_track *selector; 10274 int mergeable = 0; 10275 int offset; 10276 caddr_t limit; 10277 uint32_t *dup; 10278 int limit_reached = 0; 10279 unsigned int i, siz, j; 10280 unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space; 10281 int num_dups = 0; 10282 int space_req; 10283 uint32_t highest_tsn; 10284 uint8_t flags; 10285 uint8_t type; 10286 uint8_t tsn_map; 10287 10288 if ((stcb->asoc.sctp_nr_sack_on_off == 1) && 10289 (stcb->asoc.peer_supports_nr_sack == 1)) { 10290 type = SCTP_NR_SELECTIVE_ACK; 10291 } else { 10292 type = SCTP_SELECTIVE_ACK; 10293 } 10294 a_chk = NULL; 10295 asoc = &stcb->asoc; 10296 SCTP_TCB_LOCK_ASSERT(stcb); 10297 if (asoc->last_data_chunk_from == NULL) { 10298 /* Hmm we never received anything */ 10299 return; 10300 } 10301 sctp_slide_mapping_arrays(stcb); 10302 sctp_set_rwnd(stcb, asoc); 10303 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10304 if (chk->rec.chunk_id.id == type) { 10305 /* Hmm, found a sack already on queue, remove it */ 10306 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 10307 asoc->ctrl_queue_cnt--; 10308 a_chk = chk; 10309 if (a_chk->data) { 10310 sctp_m_freem(a_chk->data); 10311 a_chk->data = NULL; 10312 } 10313 if (a_chk->whoTo) { 10314 sctp_free_remote_addr(a_chk->whoTo); 10315 a_chk->whoTo = NULL; 10316 } 10317 break; 10318 } 10319 } 10320 if (a_chk == NULL) { 10321 sctp_alloc_a_chunk(stcb, a_chk); 10322 if (a_chk == NULL) { 10323 /* No memory so we drop the idea, and set a timer */ 10324 if (stcb->asoc.delayed_ack) { 10325 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10326 stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5); 10327 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10328 stcb->sctp_ep, stcb, NULL); 10329 } else { 10330 stcb->asoc.send_sack = 1; 10331 } 10332 return; 10333 } 10334 a_chk->copy_by_ref = 0; 10335 a_chk->rec.chunk_id.id = type; 10336 a_chk->rec.chunk_id.can_take_data = 1; 10337 } 10338 /* Clear our pkt counts */ 10339 asoc->data_pkts_seen = 0; 10340 10341 a_chk->asoc = asoc; 10342 a_chk->snd_count = 0; 10343 a_chk->send_size = 0; /* fill in later */ 10344 a_chk->sent = SCTP_DATAGRAM_UNSENT; 10345 a_chk->whoTo = NULL; 10346 10347 if ((asoc->numduptsns) || 10348 (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE))) { 10349 /*- 10350 * Ok, we have some duplicates or the destination for the 10351 * sack is unreachable, lets see if we can select an 10352 * alternate than asoc->last_data_chunk_from 10353 */ 10354 if ((asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE) && 10355 (asoc->used_alt_onsack > asoc->numnets)) { 10356 /* We used an alt last time, don't this time */ 10357 a_chk->whoTo = NULL; 10358 } else { 10359 asoc->used_alt_onsack++; 10360 a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0); 10361 } 10362 if (a_chk->whoTo == NULL) { 10363 /* Nope, no alternate */ 10364 a_chk->whoTo = asoc->last_data_chunk_from; 10365 asoc->used_alt_onsack = 0; 10366 } 10367 } else { 10368 /* 10369 * No duplicates so we use the last place we received data 10370 * from. 10371 */ 10372 asoc->used_alt_onsack = 0; 10373 a_chk->whoTo = asoc->last_data_chunk_from; 10374 } 10375 if (a_chk->whoTo) { 10376 atomic_add_int(&a_chk->whoTo->ref_count, 1); 10377 } 10378 if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) { 10379 highest_tsn = asoc->highest_tsn_inside_map; 10380 } else { 10381 highest_tsn = asoc->highest_tsn_inside_nr_map; 10382 } 10383 if (highest_tsn == asoc->cumulative_tsn) { 10384 /* no gaps */ 10385 if (type == SCTP_SELECTIVE_ACK) { 10386 space_req = sizeof(struct sctp_sack_chunk); 10387 } else { 10388 space_req = sizeof(struct sctp_nr_sack_chunk); 10389 } 10390 } else { 10391 /* gaps get a cluster */ 10392 space_req = MCLBYTES; 10393 } 10394 /* Ok now lets formulate a MBUF with our sack */ 10395 a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA); 10396 if ((a_chk->data == NULL) || 10397 (a_chk->whoTo == NULL)) { 10398 /* rats, no mbuf memory */ 10399 if (a_chk->data) { 10400 /* was a problem with the destination */ 10401 sctp_m_freem(a_chk->data); 10402 a_chk->data = NULL; 10403 } 10404 sctp_free_a_chunk(stcb, a_chk, so_locked); 10405 /* sa_ignore NO_NULL_CHK */ 10406 if (stcb->asoc.delayed_ack) { 10407 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10408 stcb->sctp_ep, stcb, NULL, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6); 10409 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10410 stcb->sctp_ep, stcb, NULL); 10411 } else { 10412 stcb->asoc.send_sack = 1; 10413 } 10414 return; 10415 } 10416 /* ok, lets go through and fill it in */ 10417 SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD); 10418 space = M_TRAILINGSPACE(a_chk->data); 10419 if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) { 10420 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD); 10421 } 10422 limit = mtod(a_chk->data, caddr_t); 10423 limit += space; 10424 10425 flags = 0; 10426 10427 if ((asoc->sctp_cmt_on_off > 0) && 10428 SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) { 10429 /*- 10430 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been 10431 * received, then set high bit to 1, else 0. Reset 10432 * pkts_rcvd. 10433 */ 10434 flags |= (asoc->cmt_dac_pkts_rcvd << 6); 10435 asoc->cmt_dac_pkts_rcvd = 0; 10436 } 10437 #ifdef SCTP_ASOCLOG_OF_TSNS 10438 stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn; 10439 stcb->asoc.cumack_log_atsnt++; 10440 if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) { 10441 stcb->asoc.cumack_log_atsnt = 0; 10442 } 10443 #endif 10444 /* reset the readers interpretation */ 10445 stcb->freed_by_sorcv_sincelast = 0; 10446 10447 if (type == SCTP_SELECTIVE_ACK) { 10448 sack = mtod(a_chk->data, struct sctp_sack_chunk *); 10449 nr_sack = NULL; 10450 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk)); 10451 if (highest_tsn > asoc->mapping_array_base_tsn) { 10452 siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10453 } else { 10454 siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8; 10455 } 10456 } else { 10457 sack = NULL; 10458 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *); 10459 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk)); 10460 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) { 10461 siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10462 } else { 10463 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8; 10464 } 10465 } 10466 10467 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10468 offset = 1; 10469 } else { 10470 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10471 } 10472 if (((type == SCTP_SELECTIVE_ACK) && 10473 SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) || 10474 ((type == SCTP_NR_SELECTIVE_ACK) && 10475 SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) { 10476 /* we have a gap .. maybe */ 10477 for (i = 0; i < siz; i++) { 10478 tsn_map = asoc->mapping_array[i]; 10479 if (type == SCTP_SELECTIVE_ACK) { 10480 tsn_map |= asoc->nr_mapping_array[i]; 10481 } 10482 if (i == 0) { 10483 /* 10484 * Clear all bits corresponding to TSNs 10485 * smaller or equal to the cumulative TSN. 10486 */ 10487 tsn_map &= (~0 << (1 - offset)); 10488 } 10489 selector = &sack_array[tsn_map]; 10490 if (mergeable && selector->right_edge) { 10491 /* 10492 * Backup, left and right edges were ok to 10493 * merge. 10494 */ 10495 num_gap_blocks--; 10496 gap_descriptor--; 10497 } 10498 if (selector->num_entries == 0) 10499 mergeable = 0; 10500 else { 10501 for (j = 0; j < selector->num_entries; j++) { 10502 if (mergeable && selector->right_edge) { 10503 /* 10504 * do a merge by NOT setting 10505 * the left side 10506 */ 10507 mergeable = 0; 10508 } else { 10509 /* 10510 * no merge, set the left 10511 * side 10512 */ 10513 mergeable = 0; 10514 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10515 } 10516 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10517 num_gap_blocks++; 10518 gap_descriptor++; 10519 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10520 /* no more room */ 10521 limit_reached = 1; 10522 break; 10523 } 10524 } 10525 if (selector->left_edge) { 10526 mergeable = 1; 10527 } 10528 } 10529 if (limit_reached) { 10530 /* Reached the limit stop */ 10531 break; 10532 } 10533 offset += 8; 10534 } 10535 } 10536 if ((type == SCTP_NR_SELECTIVE_ACK) && 10537 (limit_reached == 0)) { 10538 10539 mergeable = 0; 10540 10541 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) { 10542 siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10543 } else { 10544 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8; 10545 } 10546 10547 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10548 offset = 1; 10549 } else { 10550 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10551 } 10552 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) { 10553 /* we have a gap .. maybe */ 10554 for (i = 0; i < siz; i++) { 10555 tsn_map = asoc->nr_mapping_array[i]; 10556 if (i == 0) { 10557 /* 10558 * Clear all bits corresponding to 10559 * TSNs smaller or equal to the 10560 * cumulative TSN. 10561 */ 10562 tsn_map &= (~0 << (1 - offset)); 10563 } 10564 selector = &sack_array[tsn_map]; 10565 if (mergeable && selector->right_edge) { 10566 /* 10567 * Backup, left and right edges were 10568 * ok to merge. 10569 */ 10570 num_nr_gap_blocks--; 10571 gap_descriptor--; 10572 } 10573 if (selector->num_entries == 0) 10574 mergeable = 0; 10575 else { 10576 for (j = 0; j < selector->num_entries; j++) { 10577 if (mergeable && selector->right_edge) { 10578 /* 10579 * do a merge by NOT 10580 * setting the left 10581 * side 10582 */ 10583 mergeable = 0; 10584 } else { 10585 /* 10586 * no merge, set the 10587 * left side 10588 */ 10589 mergeable = 0; 10590 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10591 } 10592 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10593 num_nr_gap_blocks++; 10594 gap_descriptor++; 10595 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10596 /* no more room */ 10597 limit_reached = 1; 10598 break; 10599 } 10600 } 10601 if (selector->left_edge) { 10602 mergeable = 1; 10603 } 10604 } 10605 if (limit_reached) { 10606 /* Reached the limit stop */ 10607 break; 10608 } 10609 offset += 8; 10610 } 10611 } 10612 } 10613 /* now we must add any dups we are going to report. */ 10614 if ((limit_reached == 0) && (asoc->numduptsns)) { 10615 dup = (uint32_t *) gap_descriptor; 10616 for (i = 0; i < asoc->numduptsns; i++) { 10617 *dup = htonl(asoc->dup_tsns[i]); 10618 dup++; 10619 num_dups++; 10620 if (((caddr_t)dup + sizeof(uint32_t)) > limit) { 10621 /* no more room */ 10622 break; 10623 } 10624 } 10625 asoc->numduptsns = 0; 10626 } 10627 /* 10628 * now that the chunk is prepared queue it to the control chunk 10629 * queue. 10630 */ 10631 if (type == SCTP_SELECTIVE_ACK) { 10632 a_chk->send_size = sizeof(struct sctp_sack_chunk) + 10633 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10634 num_dups * sizeof(int32_t); 10635 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10636 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10637 sack->sack.a_rwnd = htonl(asoc->my_rwnd); 10638 sack->sack.num_gap_ack_blks = htons(num_gap_blocks); 10639 sack->sack.num_dup_tsns = htons(num_dups); 10640 sack->ch.chunk_type = type; 10641 sack->ch.chunk_flags = flags; 10642 sack->ch.chunk_length = htons(a_chk->send_size); 10643 } else { 10644 a_chk->send_size = sizeof(struct sctp_nr_sack_chunk) + 10645 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10646 num_dups * sizeof(int32_t); 10647 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10648 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10649 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd); 10650 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks); 10651 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks); 10652 nr_sack->nr_sack.num_dup_tsns = htons(num_dups); 10653 nr_sack->nr_sack.reserved = 0; 10654 nr_sack->ch.chunk_type = type; 10655 nr_sack->ch.chunk_flags = flags; 10656 nr_sack->ch.chunk_length = htons(a_chk->send_size); 10657 } 10658 TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next); 10659 asoc->my_last_reported_rwnd = asoc->my_rwnd; 10660 asoc->ctrl_queue_cnt++; 10661 asoc->send_sack = 0; 10662 SCTP_STAT_INCR(sctps_sendsacks); 10663 return; 10664 } 10665 10666 void 10667 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked 10668 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10669 SCTP_UNUSED 10670 #endif 10671 ) 10672 { 10673 struct mbuf *m_abort, *m, *m_last; 10674 struct mbuf *m_out, *m_end = NULL; 10675 struct sctp_abort_chunk *abort; 10676 struct sctp_auth_chunk *auth = NULL; 10677 struct sctp_nets *net; 10678 uint32_t vtag; 10679 uint32_t auth_offset = 0; 10680 uint16_t cause_len, chunk_len, padding_len; 10681 10682 SCTP_TCB_LOCK_ASSERT(stcb); 10683 /*- 10684 * Add an AUTH chunk, if chunk requires it and save the offset into 10685 * the chain for AUTH 10686 */ 10687 if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION, 10688 stcb->asoc.peer_auth_chunks)) { 10689 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset, 10690 stcb, SCTP_ABORT_ASSOCIATION); 10691 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10692 } else { 10693 m_out = NULL; 10694 } 10695 m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER); 10696 if (m_abort == NULL) { 10697 if (m_out) { 10698 sctp_m_freem(m_out); 10699 } 10700 if (operr) { 10701 sctp_m_freem(operr); 10702 } 10703 return; 10704 } 10705 /* link in any error */ 10706 SCTP_BUF_NEXT(m_abort) = operr; 10707 cause_len = 0; 10708 m_last = NULL; 10709 for (m = operr; m; m = SCTP_BUF_NEXT(m)) { 10710 cause_len += (uint16_t) SCTP_BUF_LEN(m); 10711 if (SCTP_BUF_NEXT(m) == NULL) { 10712 m_last = m; 10713 } 10714 } 10715 SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk); 10716 chunk_len = (uint16_t) sizeof(struct sctp_abort_chunk) + cause_len; 10717 padding_len = SCTP_SIZE32(chunk_len) - chunk_len; 10718 if (m_out == NULL) { 10719 /* NO Auth chunk prepended, so reserve space in front */ 10720 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD); 10721 m_out = m_abort; 10722 } else { 10723 /* Put AUTH chunk at the front of the chain */ 10724 SCTP_BUF_NEXT(m_end) = m_abort; 10725 } 10726 if (stcb->asoc.alternate) { 10727 net = stcb->asoc.alternate; 10728 } else { 10729 net = stcb->asoc.primary_destination; 10730 } 10731 /* Fill in the ABORT chunk header. */ 10732 abort = mtod(m_abort, struct sctp_abort_chunk *); 10733 abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION; 10734 if (stcb->asoc.peer_vtag == 0) { 10735 /* This happens iff the assoc is in COOKIE-WAIT state. */ 10736 vtag = stcb->asoc.my_vtag; 10737 abort->ch.chunk_flags = SCTP_HAD_NO_TCB; 10738 } else { 10739 vtag = stcb->asoc.peer_vtag; 10740 abort->ch.chunk_flags = 0; 10741 } 10742 abort->ch.chunk_length = htons(chunk_len); 10743 /* Add padding, if necessary. */ 10744 if (padding_len > 0) { 10745 if ((m_last == NULL) || sctp_add_pad_tombuf(m_last, padding_len)) { 10746 sctp_m_freem(m_out); 10747 return; 10748 } 10749 } 10750 (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10751 (struct sockaddr *)&net->ro._l_addr, 10752 m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0, 10753 stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag), 10754 stcb->asoc.primary_destination->port, NULL, 10755 0, 0, 10756 so_locked); 10757 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10758 } 10759 10760 void 10761 sctp_send_shutdown_complete(struct sctp_tcb *stcb, 10762 struct sctp_nets *net, 10763 int reflect_vtag) 10764 { 10765 /* formulate and SEND a SHUTDOWN-COMPLETE */ 10766 struct mbuf *m_shutdown_comp; 10767 struct sctp_shutdown_complete_chunk *shutdown_complete; 10768 uint32_t vtag; 10769 uint8_t flags; 10770 10771 m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 10772 if (m_shutdown_comp == NULL) { 10773 /* no mbuf's */ 10774 return; 10775 } 10776 if (reflect_vtag) { 10777 flags = SCTP_HAD_NO_TCB; 10778 vtag = stcb->asoc.my_vtag; 10779 } else { 10780 flags = 0; 10781 vtag = stcb->asoc.peer_vtag; 10782 } 10783 shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *); 10784 shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE; 10785 shutdown_complete->ch.chunk_flags = flags; 10786 shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk)); 10787 SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk); 10788 (void)sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10789 (struct sockaddr *)&net->ro._l_addr, 10790 m_shutdown_comp, 0, NULL, 0, 1, 0, 0, 10791 stcb->sctp_ep->sctp_lport, stcb->rport, 10792 htonl(vtag), 10793 net->port, NULL, 10794 0, 0, 10795 SCTP_SO_NOT_LOCKED); 10796 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10797 return; 10798 } 10799 10800 static void 10801 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst, 10802 struct sctphdr *sh, uint32_t vtag, 10803 uint8_t type, struct mbuf *cause, 10804 uint8_t use_mflowid, uint32_t mflowid, 10805 uint32_t vrf_id, uint16_t port) 10806 { 10807 struct mbuf *o_pak; 10808 struct mbuf *mout; 10809 struct sctphdr *shout; 10810 struct sctp_chunkhdr *ch; 10811 struct udphdr *udp; 10812 int len, cause_len, padding_len; 10813 10814 #if defined(INET) || defined(INET6) 10815 int ret; 10816 10817 #endif 10818 #ifdef INET 10819 struct sockaddr_in *src_sin, *dst_sin; 10820 struct ip *ip; 10821 10822 #endif 10823 #ifdef INET6 10824 struct sockaddr_in6 *src_sin6, *dst_sin6; 10825 struct ip6_hdr *ip6; 10826 10827 #endif 10828 10829 /* Compute the length of the cause and add final padding. */ 10830 cause_len = 0; 10831 if (cause != NULL) { 10832 struct mbuf *m_at, *m_last = NULL; 10833 10834 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 10835 if (SCTP_BUF_NEXT(m_at) == NULL) 10836 m_last = m_at; 10837 cause_len += SCTP_BUF_LEN(m_at); 10838 } 10839 padding_len = cause_len % 4; 10840 if (padding_len != 0) { 10841 padding_len = 4 - padding_len; 10842 } 10843 if (padding_len != 0) { 10844 if (sctp_add_pad_tombuf(m_last, padding_len)) { 10845 sctp_m_freem(cause); 10846 return; 10847 } 10848 } 10849 } else { 10850 padding_len = 0; 10851 } 10852 /* Get an mbuf for the header. */ 10853 len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 10854 switch (dst->sa_family) { 10855 #ifdef INET 10856 case AF_INET: 10857 len += sizeof(struct ip); 10858 break; 10859 #endif 10860 #ifdef INET6 10861 case AF_INET6: 10862 len += sizeof(struct ip6_hdr); 10863 break; 10864 #endif 10865 default: 10866 break; 10867 } 10868 if (port) { 10869 len += sizeof(struct udphdr); 10870 } 10871 mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA); 10872 if (mout == NULL) { 10873 if (cause) { 10874 sctp_m_freem(cause); 10875 } 10876 return; 10877 } 10878 SCTP_BUF_RESV_UF(mout, max_linkhdr); 10879 SCTP_BUF_LEN(mout) = len; 10880 SCTP_BUF_NEXT(mout) = cause; 10881 if (use_mflowid != 0) { 10882 mout->m_pkthdr.flowid = mflowid; 10883 mout->m_flags |= M_FLOWID; 10884 } 10885 #ifdef INET 10886 ip = NULL; 10887 #endif 10888 #ifdef INET6 10889 ip6 = NULL; 10890 #endif 10891 switch (dst->sa_family) { 10892 #ifdef INET 10893 case AF_INET: 10894 src_sin = (struct sockaddr_in *)src; 10895 dst_sin = (struct sockaddr_in *)dst; 10896 ip = mtod(mout, struct ip *); 10897 ip->ip_v = IPVERSION; 10898 ip->ip_hl = (sizeof(struct ip) >> 2); 10899 ip->ip_tos = 0; 10900 ip->ip_id = ip_newid(); 10901 ip->ip_off = 0; 10902 ip->ip_ttl = MODULE_GLOBAL(ip_defttl); 10903 if (port) { 10904 ip->ip_p = IPPROTO_UDP; 10905 } else { 10906 ip->ip_p = IPPROTO_SCTP; 10907 } 10908 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr; 10909 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr; 10910 ip->ip_sum = 0; 10911 len = sizeof(struct ip); 10912 shout = (struct sctphdr *)((caddr_t)ip + len); 10913 break; 10914 #endif 10915 #ifdef INET6 10916 case AF_INET6: 10917 src_sin6 = (struct sockaddr_in6 *)src; 10918 dst_sin6 = (struct sockaddr_in6 *)dst; 10919 ip6 = mtod(mout, struct ip6_hdr *); 10920 ip6->ip6_flow = htonl(0x60000000); 10921 if (V_ip6_auto_flowlabel) { 10922 ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK); 10923 } 10924 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim); 10925 if (port) { 10926 ip6->ip6_nxt = IPPROTO_UDP; 10927 } else { 10928 ip6->ip6_nxt = IPPROTO_SCTP; 10929 } 10930 ip6->ip6_src = dst_sin6->sin6_addr; 10931 ip6->ip6_dst = src_sin6->sin6_addr; 10932 len = sizeof(struct ip6_hdr); 10933 shout = (struct sctphdr *)((caddr_t)ip6 + len); 10934 break; 10935 #endif 10936 default: 10937 len = 0; 10938 shout = mtod(mout, struct sctphdr *); 10939 break; 10940 } 10941 if (port) { 10942 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 10943 sctp_m_freem(mout); 10944 return; 10945 } 10946 udp = (struct udphdr *)shout; 10947 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 10948 udp->uh_dport = port; 10949 udp->uh_sum = 0; 10950 udp->uh_ulen = htons(sizeof(struct udphdr) + 10951 sizeof(struct sctphdr) + 10952 sizeof(struct sctp_chunkhdr) + 10953 cause_len + padding_len); 10954 len += sizeof(struct udphdr); 10955 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr)); 10956 } else { 10957 udp = NULL; 10958 } 10959 shout->src_port = sh->dest_port; 10960 shout->dest_port = sh->src_port; 10961 shout->checksum = 0; 10962 if (vtag) { 10963 shout->v_tag = htonl(vtag); 10964 } else { 10965 shout->v_tag = sh->v_tag; 10966 } 10967 len += sizeof(struct sctphdr); 10968 ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr)); 10969 ch->chunk_type = type; 10970 if (vtag) { 10971 ch->chunk_flags = 0; 10972 } else { 10973 ch->chunk_flags = SCTP_HAD_NO_TCB; 10974 } 10975 ch->chunk_length = htons(sizeof(struct sctp_chunkhdr) + cause_len); 10976 len += sizeof(struct sctp_chunkhdr); 10977 len += cause_len + padding_len; 10978 10979 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 10980 sctp_m_freem(mout); 10981 return; 10982 } 10983 SCTP_ATTACH_CHAIN(o_pak, mout, len); 10984 switch (dst->sa_family) { 10985 #ifdef INET 10986 case AF_INET: 10987 if (port) { 10988 if (V_udp_cksum) { 10989 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 10990 } else { 10991 udp->uh_sum = 0; 10992 } 10993 } 10994 ip->ip_len = htons(len); 10995 if (port) { 10996 #if defined(SCTP_WITH_NO_CSUM) 10997 SCTP_STAT_INCR(sctps_sendnocrc); 10998 #else 10999 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr)); 11000 SCTP_STAT_INCR(sctps_sendswcrc); 11001 #endif 11002 if (V_udp_cksum) { 11003 SCTP_ENABLE_UDP_CSUM(o_pak); 11004 } 11005 } else { 11006 #if defined(SCTP_WITH_NO_CSUM) 11007 SCTP_STAT_INCR(sctps_sendnocrc); 11008 #else 11009 mout->m_pkthdr.csum_flags = CSUM_SCTP; 11010 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11011 SCTP_STAT_INCR(sctps_sendhwcrc); 11012 #endif 11013 } 11014 #ifdef SCTP_PACKET_LOGGING 11015 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11016 sctp_packet_log(o_pak); 11017 } 11018 #endif 11019 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id); 11020 break; 11021 #endif 11022 #ifdef INET6 11023 case AF_INET6: 11024 ip6->ip6_plen = len - sizeof(struct ip6_hdr); 11025 if (port) { 11026 #if defined(SCTP_WITH_NO_CSUM) 11027 SCTP_STAT_INCR(sctps_sendnocrc); 11028 #else 11029 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 11030 SCTP_STAT_INCR(sctps_sendswcrc); 11031 #endif 11032 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) { 11033 udp->uh_sum = 0xffff; 11034 } 11035 } else { 11036 #if defined(SCTP_WITH_NO_CSUM) 11037 SCTP_STAT_INCR(sctps_sendnocrc); 11038 #else 11039 mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 11040 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11041 SCTP_STAT_INCR(sctps_sendhwcrc); 11042 #endif 11043 } 11044 #ifdef SCTP_PACKET_LOGGING 11045 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11046 sctp_packet_log(o_pak); 11047 } 11048 #endif 11049 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id); 11050 break; 11051 #endif 11052 default: 11053 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 11054 dst->sa_family); 11055 sctp_m_freem(mout); 11056 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 11057 return; 11058 } 11059 SCTP_STAT_INCR(sctps_sendpackets); 11060 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 11061 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11062 return; 11063 } 11064 11065 void 11066 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst, 11067 struct sctphdr *sh, 11068 uint8_t use_mflowid, uint32_t mflowid, 11069 uint32_t vrf_id, uint16_t port) 11070 { 11071 sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL, 11072 use_mflowid, mflowid, 11073 vrf_id, port); 11074 } 11075 11076 void 11077 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked 11078 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 11079 SCTP_UNUSED 11080 #endif 11081 ) 11082 { 11083 struct sctp_tmit_chunk *chk; 11084 struct sctp_heartbeat_chunk *hb; 11085 struct timeval now; 11086 11087 SCTP_TCB_LOCK_ASSERT(stcb); 11088 if (net == NULL) { 11089 return; 11090 } 11091 (void)SCTP_GETTIME_TIMEVAL(&now); 11092 switch (net->ro._l_addr.sa.sa_family) { 11093 #ifdef INET 11094 case AF_INET: 11095 break; 11096 #endif 11097 #ifdef INET6 11098 case AF_INET6: 11099 break; 11100 #endif 11101 default: 11102 return; 11103 } 11104 sctp_alloc_a_chunk(stcb, chk); 11105 if (chk == NULL) { 11106 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n"); 11107 return; 11108 } 11109 chk->copy_by_ref = 0; 11110 chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST; 11111 chk->rec.chunk_id.can_take_data = 1; 11112 chk->asoc = &stcb->asoc; 11113 chk->send_size = sizeof(struct sctp_heartbeat_chunk); 11114 11115 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11116 if (chk->data == NULL) { 11117 sctp_free_a_chunk(stcb, chk, so_locked); 11118 return; 11119 } 11120 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11121 SCTP_BUF_LEN(chk->data) = chk->send_size; 11122 chk->sent = SCTP_DATAGRAM_UNSENT; 11123 chk->snd_count = 0; 11124 chk->whoTo = net; 11125 atomic_add_int(&chk->whoTo->ref_count, 1); 11126 /* Now we have a mbuf that we can fill in with the details */ 11127 hb = mtod(chk->data, struct sctp_heartbeat_chunk *); 11128 memset(hb, 0, sizeof(struct sctp_heartbeat_chunk)); 11129 /* fill out chunk header */ 11130 hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST; 11131 hb->ch.chunk_flags = 0; 11132 hb->ch.chunk_length = htons(chk->send_size); 11133 /* Fill out hb parameter */ 11134 hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO); 11135 hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param)); 11136 hb->heartbeat.hb_info.time_value_1 = now.tv_sec; 11137 hb->heartbeat.hb_info.time_value_2 = now.tv_usec; 11138 /* Did our user request this one, put it in */ 11139 hb->heartbeat.hb_info.addr_family = net->ro._l_addr.sa.sa_family; 11140 hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len; 11141 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 11142 /* 11143 * we only take from the entropy pool if the address is not 11144 * confirmed. 11145 */ 11146 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11147 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11148 } else { 11149 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0; 11150 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0; 11151 } 11152 switch (net->ro._l_addr.sa.sa_family) { 11153 #ifdef INET 11154 case AF_INET: 11155 memcpy(hb->heartbeat.hb_info.address, 11156 &net->ro._l_addr.sin.sin_addr, 11157 sizeof(net->ro._l_addr.sin.sin_addr)); 11158 break; 11159 #endif 11160 #ifdef INET6 11161 case AF_INET6: 11162 memcpy(hb->heartbeat.hb_info.address, 11163 &net->ro._l_addr.sin6.sin6_addr, 11164 sizeof(net->ro._l_addr.sin6.sin6_addr)); 11165 break; 11166 #endif 11167 default: 11168 return; 11169 break; 11170 } 11171 net->hb_responded = 0; 11172 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11173 stcb->asoc.ctrl_queue_cnt++; 11174 SCTP_STAT_INCR(sctps_sendheartbeat); 11175 return; 11176 } 11177 11178 void 11179 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net, 11180 uint32_t high_tsn) 11181 { 11182 struct sctp_association *asoc; 11183 struct sctp_ecne_chunk *ecne; 11184 struct sctp_tmit_chunk *chk; 11185 11186 if (net == NULL) { 11187 return; 11188 } 11189 asoc = &stcb->asoc; 11190 SCTP_TCB_LOCK_ASSERT(stcb); 11191 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11192 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) { 11193 /* found a previous ECN_ECHO update it if needed */ 11194 uint32_t cnt, ctsn; 11195 11196 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11197 ctsn = ntohl(ecne->tsn); 11198 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11199 ecne->tsn = htonl(high_tsn); 11200 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11201 } 11202 cnt = ntohl(ecne->num_pkts_since_cwr); 11203 cnt++; 11204 ecne->num_pkts_since_cwr = htonl(cnt); 11205 return; 11206 } 11207 } 11208 /* nope could not find one to update so we must build one */ 11209 sctp_alloc_a_chunk(stcb, chk); 11210 if (chk == NULL) { 11211 return; 11212 } 11213 chk->copy_by_ref = 0; 11214 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11215 chk->rec.chunk_id.id = SCTP_ECN_ECHO; 11216 chk->rec.chunk_id.can_take_data = 0; 11217 chk->asoc = &stcb->asoc; 11218 chk->send_size = sizeof(struct sctp_ecne_chunk); 11219 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11220 if (chk->data == NULL) { 11221 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11222 return; 11223 } 11224 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11225 SCTP_BUF_LEN(chk->data) = chk->send_size; 11226 chk->sent = SCTP_DATAGRAM_UNSENT; 11227 chk->snd_count = 0; 11228 chk->whoTo = net; 11229 atomic_add_int(&chk->whoTo->ref_count, 1); 11230 11231 stcb->asoc.ecn_echo_cnt_onq++; 11232 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11233 ecne->ch.chunk_type = SCTP_ECN_ECHO; 11234 ecne->ch.chunk_flags = 0; 11235 ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk)); 11236 ecne->tsn = htonl(high_tsn); 11237 ecne->num_pkts_since_cwr = htonl(1); 11238 TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next); 11239 asoc->ctrl_queue_cnt++; 11240 } 11241 11242 void 11243 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net, 11244 struct mbuf *m, int len, int iphlen, int bad_crc) 11245 { 11246 struct sctp_association *asoc; 11247 struct sctp_pktdrop_chunk *drp; 11248 struct sctp_tmit_chunk *chk; 11249 uint8_t *datap; 11250 int was_trunc = 0; 11251 int fullsz = 0; 11252 long spc; 11253 int offset; 11254 struct sctp_chunkhdr *ch, chunk_buf; 11255 unsigned int chk_length; 11256 11257 if (!stcb) { 11258 return; 11259 } 11260 asoc = &stcb->asoc; 11261 SCTP_TCB_LOCK_ASSERT(stcb); 11262 if (asoc->peer_supports_pktdrop == 0) { 11263 /*- 11264 * peer must declare support before I send one. 11265 */ 11266 return; 11267 } 11268 if (stcb->sctp_socket == NULL) { 11269 return; 11270 } 11271 sctp_alloc_a_chunk(stcb, chk); 11272 if (chk == NULL) { 11273 return; 11274 } 11275 chk->copy_by_ref = 0; 11276 len -= iphlen; 11277 chk->send_size = len; 11278 /* Validate that we do not have an ABORT in here. */ 11279 offset = iphlen + sizeof(struct sctphdr); 11280 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11281 sizeof(*ch), (uint8_t *) & chunk_buf); 11282 while (ch != NULL) { 11283 chk_length = ntohs(ch->chunk_length); 11284 if (chk_length < sizeof(*ch)) { 11285 /* break to abort land */ 11286 break; 11287 } 11288 switch (ch->chunk_type) { 11289 case SCTP_PACKET_DROPPED: 11290 case SCTP_ABORT_ASSOCIATION: 11291 case SCTP_INITIATION_ACK: 11292 /** 11293 * We don't respond with an PKT-DROP to an ABORT 11294 * or PKT-DROP. We also do not respond to an 11295 * INIT-ACK, because we can't know if the initiation 11296 * tag is correct or not. 11297 */ 11298 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11299 return; 11300 default: 11301 break; 11302 } 11303 offset += SCTP_SIZE32(chk_length); 11304 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11305 sizeof(*ch), (uint8_t *) & chunk_buf); 11306 } 11307 11308 if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) > 11309 min(stcb->asoc.smallest_mtu, MCLBYTES)) { 11310 /* 11311 * only send 1 mtu worth, trim off the excess on the end. 11312 */ 11313 fullsz = len; 11314 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD; 11315 was_trunc = 1; 11316 } 11317 chk->asoc = &stcb->asoc; 11318 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11319 if (chk->data == NULL) { 11320 jump_out: 11321 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11322 return; 11323 } 11324 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11325 drp = mtod(chk->data, struct sctp_pktdrop_chunk *); 11326 if (drp == NULL) { 11327 sctp_m_freem(chk->data); 11328 chk->data = NULL; 11329 goto jump_out; 11330 } 11331 chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) + 11332 sizeof(struct sctphdr) + SCTP_MED_OVERHEAD)); 11333 chk->book_size_scale = 0; 11334 if (was_trunc) { 11335 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED; 11336 drp->trunc_len = htons(fullsz); 11337 /* 11338 * Len is already adjusted to size minus overhead above take 11339 * out the pkt_drop chunk itself from it. 11340 */ 11341 chk->send_size = len - sizeof(struct sctp_pktdrop_chunk); 11342 len = chk->send_size; 11343 } else { 11344 /* no truncation needed */ 11345 drp->ch.chunk_flags = 0; 11346 drp->trunc_len = htons(0); 11347 } 11348 if (bad_crc) { 11349 drp->ch.chunk_flags |= SCTP_BADCRC; 11350 } 11351 chk->send_size += sizeof(struct sctp_pktdrop_chunk); 11352 SCTP_BUF_LEN(chk->data) = chk->send_size; 11353 chk->sent = SCTP_DATAGRAM_UNSENT; 11354 chk->snd_count = 0; 11355 if (net) { 11356 /* we should hit here */ 11357 chk->whoTo = net; 11358 atomic_add_int(&chk->whoTo->ref_count, 1); 11359 } else { 11360 chk->whoTo = NULL; 11361 } 11362 chk->rec.chunk_id.id = SCTP_PACKET_DROPPED; 11363 chk->rec.chunk_id.can_take_data = 1; 11364 drp->ch.chunk_type = SCTP_PACKET_DROPPED; 11365 drp->ch.chunk_length = htons(chk->send_size); 11366 spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket); 11367 if (spc < 0) { 11368 spc = 0; 11369 } 11370 drp->bottle_bw = htonl(spc); 11371 if (asoc->my_rwnd) { 11372 drp->current_onq = htonl(asoc->size_on_reasm_queue + 11373 asoc->size_on_all_streams + 11374 asoc->my_rwnd_control_len + 11375 stcb->sctp_socket->so_rcv.sb_cc); 11376 } else { 11377 /*- 11378 * If my rwnd is 0, possibly from mbuf depletion as well as 11379 * space used, tell the peer there is NO space aka onq == bw 11380 */ 11381 drp->current_onq = htonl(spc); 11382 } 11383 drp->reserved = 0; 11384 datap = drp->data; 11385 m_copydata(m, iphlen, len, (caddr_t)datap); 11386 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11387 asoc->ctrl_queue_cnt++; 11388 } 11389 11390 void 11391 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override) 11392 { 11393 struct sctp_association *asoc; 11394 struct sctp_cwr_chunk *cwr; 11395 struct sctp_tmit_chunk *chk; 11396 11397 SCTP_TCB_LOCK_ASSERT(stcb); 11398 if (net == NULL) { 11399 return; 11400 } 11401 asoc = &stcb->asoc; 11402 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11403 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) { 11404 /* 11405 * found a previous CWR queued to same destination 11406 * update it if needed 11407 */ 11408 uint32_t ctsn; 11409 11410 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11411 ctsn = ntohl(cwr->tsn); 11412 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11413 cwr->tsn = htonl(high_tsn); 11414 } 11415 if (override & SCTP_CWR_REDUCE_OVERRIDE) { 11416 /* Make sure override is carried */ 11417 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE; 11418 } 11419 return; 11420 } 11421 } 11422 sctp_alloc_a_chunk(stcb, chk); 11423 if (chk == NULL) { 11424 return; 11425 } 11426 chk->copy_by_ref = 0; 11427 chk->rec.chunk_id.id = SCTP_ECN_CWR; 11428 chk->rec.chunk_id.can_take_data = 1; 11429 chk->asoc = &stcb->asoc; 11430 chk->send_size = sizeof(struct sctp_cwr_chunk); 11431 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11432 if (chk->data == NULL) { 11433 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11434 return; 11435 } 11436 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11437 SCTP_BUF_LEN(chk->data) = chk->send_size; 11438 chk->sent = SCTP_DATAGRAM_UNSENT; 11439 chk->snd_count = 0; 11440 chk->whoTo = net; 11441 atomic_add_int(&chk->whoTo->ref_count, 1); 11442 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11443 cwr->ch.chunk_type = SCTP_ECN_CWR; 11444 cwr->ch.chunk_flags = override; 11445 cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk)); 11446 cwr->tsn = htonl(high_tsn); 11447 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11448 asoc->ctrl_queue_cnt++; 11449 } 11450 11451 void 11452 sctp_add_stream_reset_out(struct sctp_tmit_chunk *chk, 11453 int number_entries, uint16_t * list, 11454 uint32_t seq, uint32_t resp_seq, uint32_t last_sent) 11455 { 11456 uint16_t len, old_len, i; 11457 struct sctp_stream_reset_out_request *req_out; 11458 struct sctp_chunkhdr *ch; 11459 11460 ch = mtod(chk->data, struct sctp_chunkhdr *); 11461 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11462 11463 /* get to new offset for the param. */ 11464 req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len); 11465 /* now how long will this param be? */ 11466 len = (sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries)); 11467 req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST); 11468 req_out->ph.param_length = htons(len); 11469 req_out->request_seq = htonl(seq); 11470 req_out->response_seq = htonl(resp_seq); 11471 req_out->send_reset_at_tsn = htonl(last_sent); 11472 if (number_entries) { 11473 for (i = 0; i < number_entries; i++) { 11474 req_out->list_of_streams[i] = htons(list[i]); 11475 } 11476 } 11477 if (SCTP_SIZE32(len) > len) { 11478 /*- 11479 * Need to worry about the pad we may end up adding to the 11480 * end. This is easy since the struct is either aligned to 4 11481 * bytes or 2 bytes off. 11482 */ 11483 req_out->list_of_streams[number_entries] = 0; 11484 } 11485 /* now fix the chunk length */ 11486 ch->chunk_length = htons(len + old_len); 11487 chk->book_size = len + old_len; 11488 chk->book_size_scale = 0; 11489 chk->send_size = SCTP_SIZE32(chk->book_size); 11490 SCTP_BUF_LEN(chk->data) = chk->send_size; 11491 return; 11492 } 11493 11494 static void 11495 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk, 11496 int number_entries, uint16_t * list, 11497 uint32_t seq) 11498 { 11499 uint16_t len, old_len, i; 11500 struct sctp_stream_reset_in_request *req_in; 11501 struct sctp_chunkhdr *ch; 11502 11503 ch = mtod(chk->data, struct sctp_chunkhdr *); 11504 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11505 11506 /* get to new offset for the param. */ 11507 req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len); 11508 /* now how long will this param be? */ 11509 len = (sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries)); 11510 req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST); 11511 req_in->ph.param_length = htons(len); 11512 req_in->request_seq = htonl(seq); 11513 if (number_entries) { 11514 for (i = 0; i < number_entries; i++) { 11515 req_in->list_of_streams[i] = htons(list[i]); 11516 } 11517 } 11518 if (SCTP_SIZE32(len) > len) { 11519 /*- 11520 * Need to worry about the pad we may end up adding to the 11521 * end. This is easy since the struct is either aligned to 4 11522 * bytes or 2 bytes off. 11523 */ 11524 req_in->list_of_streams[number_entries] = 0; 11525 } 11526 /* now fix the chunk length */ 11527 ch->chunk_length = htons(len + old_len); 11528 chk->book_size = len + old_len; 11529 chk->book_size_scale = 0; 11530 chk->send_size = SCTP_SIZE32(chk->book_size); 11531 SCTP_BUF_LEN(chk->data) = chk->send_size; 11532 return; 11533 } 11534 11535 static void 11536 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk, 11537 uint32_t seq) 11538 { 11539 uint16_t len, old_len; 11540 struct sctp_stream_reset_tsn_request *req_tsn; 11541 struct sctp_chunkhdr *ch; 11542 11543 ch = mtod(chk->data, struct sctp_chunkhdr *); 11544 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11545 11546 /* get to new offset for the param. */ 11547 req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len); 11548 /* now how long will this param be? */ 11549 len = sizeof(struct sctp_stream_reset_tsn_request); 11550 req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST); 11551 req_tsn->ph.param_length = htons(len); 11552 req_tsn->request_seq = htonl(seq); 11553 11554 /* now fix the chunk length */ 11555 ch->chunk_length = htons(len + old_len); 11556 chk->send_size = len + old_len; 11557 chk->book_size = SCTP_SIZE32(chk->send_size); 11558 chk->book_size_scale = 0; 11559 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11560 return; 11561 } 11562 11563 void 11564 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk, 11565 uint32_t resp_seq, uint32_t result) 11566 { 11567 uint16_t len, old_len; 11568 struct sctp_stream_reset_response *resp; 11569 struct sctp_chunkhdr *ch; 11570 11571 ch = mtod(chk->data, struct sctp_chunkhdr *); 11572 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11573 11574 /* get to new offset for the param. */ 11575 resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len); 11576 /* now how long will this param be? */ 11577 len = sizeof(struct sctp_stream_reset_response); 11578 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11579 resp->ph.param_length = htons(len); 11580 resp->response_seq = htonl(resp_seq); 11581 resp->result = ntohl(result); 11582 11583 /* now fix the chunk length */ 11584 ch->chunk_length = htons(len + old_len); 11585 chk->book_size = len + old_len; 11586 chk->book_size_scale = 0; 11587 chk->send_size = SCTP_SIZE32(chk->book_size); 11588 SCTP_BUF_LEN(chk->data) = chk->send_size; 11589 return; 11590 } 11591 11592 void 11593 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk, 11594 uint32_t resp_seq, uint32_t result, 11595 uint32_t send_una, uint32_t recv_next) 11596 { 11597 uint16_t len, old_len; 11598 struct sctp_stream_reset_response_tsn *resp; 11599 struct sctp_chunkhdr *ch; 11600 11601 ch = mtod(chk->data, struct sctp_chunkhdr *); 11602 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11603 11604 /* get to new offset for the param. */ 11605 resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len); 11606 /* now how long will this param be? */ 11607 len = sizeof(struct sctp_stream_reset_response_tsn); 11608 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11609 resp->ph.param_length = htons(len); 11610 resp->response_seq = htonl(resp_seq); 11611 resp->result = htonl(result); 11612 resp->senders_next_tsn = htonl(send_una); 11613 resp->receivers_next_tsn = htonl(recv_next); 11614 11615 /* now fix the chunk length */ 11616 ch->chunk_length = htons(len + old_len); 11617 chk->book_size = len + old_len; 11618 chk->send_size = SCTP_SIZE32(chk->book_size); 11619 chk->book_size_scale = 0; 11620 SCTP_BUF_LEN(chk->data) = chk->send_size; 11621 return; 11622 } 11623 11624 static void 11625 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk, 11626 uint32_t seq, 11627 uint16_t adding) 11628 { 11629 uint16_t len, old_len; 11630 struct sctp_chunkhdr *ch; 11631 struct sctp_stream_reset_add_strm *addstr; 11632 11633 ch = mtod(chk->data, struct sctp_chunkhdr *); 11634 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11635 11636 /* get to new offset for the param. */ 11637 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11638 /* now how long will this param be? */ 11639 len = sizeof(struct sctp_stream_reset_add_strm); 11640 11641 /* Fill it out. */ 11642 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS); 11643 addstr->ph.param_length = htons(len); 11644 addstr->request_seq = htonl(seq); 11645 addstr->number_of_streams = htons(adding); 11646 addstr->reserved = 0; 11647 11648 /* now fix the chunk length */ 11649 ch->chunk_length = htons(len + old_len); 11650 chk->send_size = len + old_len; 11651 chk->book_size = SCTP_SIZE32(chk->send_size); 11652 chk->book_size_scale = 0; 11653 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11654 return; 11655 } 11656 11657 static void 11658 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk, 11659 uint32_t seq, 11660 uint16_t adding) 11661 { 11662 uint16_t len, old_len; 11663 struct sctp_chunkhdr *ch; 11664 struct sctp_stream_reset_add_strm *addstr; 11665 11666 ch = mtod(chk->data, struct sctp_chunkhdr *); 11667 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11668 11669 /* get to new offset for the param. */ 11670 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11671 /* now how long will this param be? */ 11672 len = sizeof(struct sctp_stream_reset_add_strm); 11673 /* Fill it out. */ 11674 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS); 11675 addstr->ph.param_length = htons(len); 11676 addstr->request_seq = htonl(seq); 11677 addstr->number_of_streams = htons(adding); 11678 addstr->reserved = 0; 11679 11680 /* now fix the chunk length */ 11681 ch->chunk_length = htons(len + old_len); 11682 chk->send_size = len + old_len; 11683 chk->book_size = SCTP_SIZE32(chk->send_size); 11684 chk->book_size_scale = 0; 11685 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11686 return; 11687 } 11688 11689 int 11690 sctp_send_str_reset_req(struct sctp_tcb *stcb, 11691 int number_entries, uint16_t * list, 11692 uint8_t send_out_req, 11693 uint8_t send_in_req, 11694 uint8_t send_tsn_req, 11695 uint8_t add_stream, 11696 uint16_t adding_o, 11697 uint16_t adding_i, uint8_t peer_asked) 11698 { 11699 11700 struct sctp_association *asoc; 11701 struct sctp_tmit_chunk *chk; 11702 struct sctp_chunkhdr *ch; 11703 uint32_t seq; 11704 11705 asoc = &stcb->asoc; 11706 if (asoc->stream_reset_outstanding) { 11707 /*- 11708 * Already one pending, must get ACK back to clear the flag. 11709 */ 11710 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY); 11711 return (EBUSY); 11712 } 11713 if ((send_out_req == 0) && (send_in_req == 0) && (send_tsn_req == 0) && 11714 (add_stream == 0)) { 11715 /* nothing to do */ 11716 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 11717 return (EINVAL); 11718 } 11719 if (send_tsn_req && (send_out_req || send_in_req)) { 11720 /* error, can't do that */ 11721 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 11722 return (EINVAL); 11723 } 11724 sctp_alloc_a_chunk(stcb, chk); 11725 if (chk == NULL) { 11726 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11727 return (ENOMEM); 11728 } 11729 chk->copy_by_ref = 0; 11730 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 11731 chk->rec.chunk_id.can_take_data = 0; 11732 chk->asoc = &stcb->asoc; 11733 chk->book_size = sizeof(struct sctp_chunkhdr); 11734 chk->send_size = SCTP_SIZE32(chk->book_size); 11735 chk->book_size_scale = 0; 11736 11737 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11738 if (chk->data == NULL) { 11739 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 11740 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11741 return (ENOMEM); 11742 } 11743 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11744 11745 /* setup chunk parameters */ 11746 chk->sent = SCTP_DATAGRAM_UNSENT; 11747 chk->snd_count = 0; 11748 if (stcb->asoc.alternate) { 11749 chk->whoTo = stcb->asoc.alternate; 11750 } else { 11751 chk->whoTo = stcb->asoc.primary_destination; 11752 } 11753 atomic_add_int(&chk->whoTo->ref_count, 1); 11754 ch = mtod(chk->data, struct sctp_chunkhdr *); 11755 ch->chunk_type = SCTP_STREAM_RESET; 11756 ch->chunk_flags = 0; 11757 ch->chunk_length = htons(chk->book_size); 11758 SCTP_BUF_LEN(chk->data) = chk->send_size; 11759 11760 seq = stcb->asoc.str_reset_seq_out; 11761 if (send_out_req) { 11762 sctp_add_stream_reset_out(chk, number_entries, list, 11763 seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1)); 11764 asoc->stream_reset_out_is_outstanding = 1; 11765 seq++; 11766 asoc->stream_reset_outstanding++; 11767 } 11768 if ((add_stream & 1) && 11769 ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) { 11770 /* Need to allocate more */ 11771 struct sctp_stream_out *oldstream; 11772 struct sctp_stream_queue_pending *sp, *nsp; 11773 int i; 11774 11775 oldstream = stcb->asoc.strmout; 11776 /* get some more */ 11777 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *, 11778 ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)), 11779 SCTP_M_STRMO); 11780 if (stcb->asoc.strmout == NULL) { 11781 uint8_t x; 11782 11783 stcb->asoc.strmout = oldstream; 11784 /* Turn off the bit */ 11785 x = add_stream & 0xfe; 11786 add_stream = x; 11787 goto skip_stuff; 11788 } 11789 /* 11790 * Ok now we proceed with copying the old out stuff and 11791 * initializing the new stuff. 11792 */ 11793 SCTP_TCB_SEND_LOCK(stcb); 11794 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1); 11795 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11796 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 11797 stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues; 11798 stcb->asoc.strmout[i].next_sequence_send = oldstream[i].next_sequence_send; 11799 stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete; 11800 stcb->asoc.strmout[i].stream_no = i; 11801 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], &oldstream[i]); 11802 /* now anything on those queues? */ 11803 TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) { 11804 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next); 11805 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next); 11806 } 11807 /* Now move assoc pointers too */ 11808 if (stcb->asoc.last_out_stream == &oldstream[i]) { 11809 stcb->asoc.last_out_stream = &stcb->asoc.strmout[i]; 11810 } 11811 if (stcb->asoc.locked_on_sending == &oldstream[i]) { 11812 stcb->asoc.locked_on_sending = &stcb->asoc.strmout[i]; 11813 } 11814 } 11815 /* now the new streams */ 11816 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1); 11817 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) { 11818 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 11819 stcb->asoc.strmout[i].chunks_on_queues = 0; 11820 stcb->asoc.strmout[i].next_sequence_send = 0x0; 11821 stcb->asoc.strmout[i].stream_no = i; 11822 stcb->asoc.strmout[i].last_msg_incomplete = 0; 11823 stcb->asoc.ss_functions.sctp_ss_init_stream(&stcb->asoc.strmout[i], NULL); 11824 } 11825 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o; 11826 SCTP_FREE(oldstream, SCTP_M_STRMO); 11827 SCTP_TCB_SEND_UNLOCK(stcb); 11828 } 11829 skip_stuff: 11830 if ((add_stream & 1) && (adding_o > 0)) { 11831 asoc->strm_pending_add_size = adding_o; 11832 asoc->peer_req_out = peer_asked; 11833 sctp_add_an_out_stream(chk, seq, adding_o); 11834 seq++; 11835 asoc->stream_reset_outstanding++; 11836 } 11837 if ((add_stream & 2) && (adding_i > 0)) { 11838 sctp_add_an_in_stream(chk, seq, adding_i); 11839 seq++; 11840 asoc->stream_reset_outstanding++; 11841 } 11842 if (send_in_req) { 11843 sctp_add_stream_reset_in(chk, number_entries, list, seq); 11844 seq++; 11845 asoc->stream_reset_outstanding++; 11846 } 11847 if (send_tsn_req) { 11848 sctp_add_stream_reset_tsn(chk, seq); 11849 asoc->stream_reset_outstanding++; 11850 } 11851 asoc->str_reset = chk; 11852 /* insert the chunk for sending */ 11853 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 11854 chk, 11855 sctp_next); 11856 asoc->ctrl_queue_cnt++; 11857 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 11858 return (0); 11859 } 11860 11861 void 11862 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, 11863 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 11864 uint8_t use_mflowid, uint32_t mflowid, 11865 uint32_t vrf_id, uint16_t port) 11866 { 11867 /* Don't respond to an ABORT with an ABORT. */ 11868 if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) { 11869 if (cause) 11870 sctp_m_freem(cause); 11871 return; 11872 } 11873 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause, 11874 use_mflowid, mflowid, 11875 vrf_id, port); 11876 return; 11877 } 11878 11879 void 11880 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst, 11881 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 11882 uint8_t use_mflowid, uint32_t mflowid, 11883 uint32_t vrf_id, uint16_t port) 11884 { 11885 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause, 11886 use_mflowid, mflowid, 11887 vrf_id, port); 11888 return; 11889 } 11890 11891 static struct mbuf * 11892 sctp_copy_resume(struct uio *uio, 11893 int max_send_len, 11894 int user_marks_eor, 11895 int *error, 11896 uint32_t * sndout, 11897 struct mbuf **new_tail) 11898 { 11899 struct mbuf *m; 11900 11901 m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0, 11902 (M_PKTHDR | (user_marks_eor ? M_EOR : 0))); 11903 if (m == NULL) { 11904 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11905 *error = ENOMEM; 11906 } else { 11907 *sndout = m_length(m, NULL); 11908 *new_tail = m_last(m); 11909 } 11910 return (m); 11911 } 11912 11913 static int 11914 sctp_copy_one(struct sctp_stream_queue_pending *sp, 11915 struct uio *uio, 11916 int resv_upfront) 11917 { 11918 int left; 11919 11920 left = sp->length; 11921 sp->data = m_uiotombuf(uio, M_WAITOK, sp->length, 11922 resv_upfront, 0); 11923 if (sp->data == NULL) { 11924 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11925 return (ENOMEM); 11926 } 11927 sp->tail_mbuf = m_last(sp->data); 11928 return (0); 11929 } 11930 11931 11932 11933 static struct sctp_stream_queue_pending * 11934 sctp_copy_it_in(struct sctp_tcb *stcb, 11935 struct sctp_association *asoc, 11936 struct sctp_sndrcvinfo *srcv, 11937 struct uio *uio, 11938 struct sctp_nets *net, 11939 int max_send_len, 11940 int user_marks_eor, 11941 int *error) 11942 { 11943 /*- 11944 * This routine must be very careful in its work. Protocol 11945 * processing is up and running so care must be taken to spl...() 11946 * when you need to do something that may effect the stcb/asoc. The 11947 * sb is locked however. When data is copied the protocol processing 11948 * should be enabled since this is a slower operation... 11949 */ 11950 struct sctp_stream_queue_pending *sp = NULL; 11951 int resv_in_first; 11952 11953 *error = 0; 11954 /* Now can we send this? */ 11955 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) || 11956 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 11957 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 11958 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 11959 /* got data while shutting down */ 11960 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 11961 *error = ECONNRESET; 11962 goto out_now; 11963 } 11964 sctp_alloc_a_strmoq(stcb, sp); 11965 if (sp == NULL) { 11966 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11967 *error = ENOMEM; 11968 goto out_now; 11969 } 11970 sp->act_flags = 0; 11971 sp->sender_all_done = 0; 11972 sp->sinfo_flags = srcv->sinfo_flags; 11973 sp->timetolive = srcv->sinfo_timetolive; 11974 sp->ppid = srcv->sinfo_ppid; 11975 sp->context = srcv->sinfo_context; 11976 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 11977 11978 sp->stream = srcv->sinfo_stream; 11979 sp->length = min(uio->uio_resid, max_send_len); 11980 if ((sp->length == (uint32_t) uio->uio_resid) && 11981 ((user_marks_eor == 0) || 11982 (srcv->sinfo_flags & SCTP_EOF) || 11983 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 11984 sp->msg_is_complete = 1; 11985 } else { 11986 sp->msg_is_complete = 0; 11987 } 11988 sp->sender_all_done = 0; 11989 sp->some_taken = 0; 11990 sp->put_last_out = 0; 11991 resv_in_first = sizeof(struct sctp_data_chunk); 11992 sp->data = sp->tail_mbuf = NULL; 11993 if (sp->length == 0) { 11994 *error = 0; 11995 goto skip_copy; 11996 } 11997 if (srcv->sinfo_keynumber_valid) { 11998 sp->auth_keyid = srcv->sinfo_keynumber; 11999 } else { 12000 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 12001 } 12002 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 12003 sctp_auth_key_acquire(stcb, sp->auth_keyid); 12004 sp->holds_key_ref = 1; 12005 } 12006 *error = sctp_copy_one(sp, uio, resv_in_first); 12007 skip_copy: 12008 if (*error) { 12009 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED); 12010 sp = NULL; 12011 } else { 12012 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 12013 sp->net = net; 12014 atomic_add_int(&sp->net->ref_count, 1); 12015 } else { 12016 sp->net = NULL; 12017 } 12018 sctp_set_prsctp_policy(sp); 12019 } 12020 out_now: 12021 return (sp); 12022 } 12023 12024 12025 int 12026 sctp_sosend(struct socket *so, 12027 struct sockaddr *addr, 12028 struct uio *uio, 12029 struct mbuf *top, 12030 struct mbuf *control, 12031 int flags, 12032 struct thread *p 12033 ) 12034 { 12035 int error, use_sndinfo = 0; 12036 struct sctp_sndrcvinfo sndrcvninfo; 12037 struct sockaddr *addr_to_use; 12038 12039 #if defined(INET) && defined(INET6) 12040 struct sockaddr_in sin; 12041 12042 #endif 12043 12044 if (control) { 12045 /* process cmsg snd/rcv info (maybe a assoc-id) */ 12046 if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control, 12047 sizeof(sndrcvninfo))) { 12048 /* got one */ 12049 use_sndinfo = 1; 12050 } 12051 } 12052 addr_to_use = addr; 12053 #if defined(INET) && defined(INET6) 12054 if ((addr) && (addr->sa_family == AF_INET6)) { 12055 struct sockaddr_in6 *sin6; 12056 12057 sin6 = (struct sockaddr_in6 *)addr; 12058 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 12059 in6_sin6_2_sin(&sin, sin6); 12060 addr_to_use = (struct sockaddr *)&sin; 12061 } 12062 } 12063 #endif 12064 error = sctp_lower_sosend(so, addr_to_use, uio, top, 12065 control, 12066 flags, 12067 use_sndinfo ? &sndrcvninfo : NULL 12068 ,p 12069 ); 12070 return (error); 12071 } 12072 12073 12074 int 12075 sctp_lower_sosend(struct socket *so, 12076 struct sockaddr *addr, 12077 struct uio *uio, 12078 struct mbuf *i_pak, 12079 struct mbuf *control, 12080 int flags, 12081 struct sctp_sndrcvinfo *srcv 12082 , 12083 struct thread *p 12084 ) 12085 { 12086 unsigned int sndlen = 0, max_len; 12087 int error, len; 12088 struct mbuf *top = NULL; 12089 int queue_only = 0, queue_only_for_init = 0; 12090 int free_cnt_applied = 0; 12091 int un_sent; 12092 int now_filled = 0; 12093 unsigned int inqueue_bytes = 0; 12094 struct sctp_block_entry be; 12095 struct sctp_inpcb *inp; 12096 struct sctp_tcb *stcb = NULL; 12097 struct timeval now; 12098 struct sctp_nets *net; 12099 struct sctp_association *asoc; 12100 struct sctp_inpcb *t_inp; 12101 int user_marks_eor; 12102 int create_lock_applied = 0; 12103 int nagle_applies = 0; 12104 int some_on_control = 0; 12105 int got_all_of_the_send = 0; 12106 int hold_tcblock = 0; 12107 int non_blocking = 0; 12108 uint32_t local_add_more, local_soresv = 0; 12109 uint16_t port; 12110 uint16_t sinfo_flags; 12111 sctp_assoc_t sinfo_assoc_id; 12112 12113 error = 0; 12114 net = NULL; 12115 stcb = NULL; 12116 asoc = NULL; 12117 12118 t_inp = inp = (struct sctp_inpcb *)so->so_pcb; 12119 if (inp == NULL) { 12120 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12121 error = EINVAL; 12122 if (i_pak) { 12123 SCTP_RELEASE_PKT(i_pak); 12124 } 12125 return (error); 12126 } 12127 if ((uio == NULL) && (i_pak == NULL)) { 12128 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12129 return (EINVAL); 12130 } 12131 user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR); 12132 atomic_add_int(&inp->total_sends, 1); 12133 if (uio) { 12134 if (uio->uio_resid < 0) { 12135 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12136 return (EINVAL); 12137 } 12138 sndlen = uio->uio_resid; 12139 } else { 12140 top = SCTP_HEADER_TO_CHAIN(i_pak); 12141 sndlen = SCTP_HEADER_LEN(i_pak); 12142 } 12143 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n", 12144 (void *)addr, 12145 sndlen); 12146 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 12147 (inp->sctp_socket->so_qlimit)) { 12148 /* The listener can NOT send */ 12149 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12150 error = ENOTCONN; 12151 goto out_unlocked; 12152 } 12153 /** 12154 * Pre-screen address, if one is given the sin-len 12155 * must be set correctly! 12156 */ 12157 if (addr) { 12158 union sctp_sockstore *raddr = (union sctp_sockstore *)addr; 12159 12160 switch (raddr->sa.sa_family) { 12161 #ifdef INET 12162 case AF_INET: 12163 if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) { 12164 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12165 error = EINVAL; 12166 goto out_unlocked; 12167 } 12168 port = raddr->sin.sin_port; 12169 break; 12170 #endif 12171 #ifdef INET6 12172 case AF_INET6: 12173 if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) { 12174 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12175 error = EINVAL; 12176 goto out_unlocked; 12177 } 12178 port = raddr->sin6.sin6_port; 12179 break; 12180 #endif 12181 default: 12182 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT); 12183 error = EAFNOSUPPORT; 12184 goto out_unlocked; 12185 } 12186 } else 12187 port = 0; 12188 12189 if (srcv) { 12190 sinfo_flags = srcv->sinfo_flags; 12191 sinfo_assoc_id = srcv->sinfo_assoc_id; 12192 if (INVALID_SINFO_FLAG(sinfo_flags) || 12193 PR_SCTP_INVALID_POLICY(sinfo_flags)) { 12194 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12195 error = EINVAL; 12196 goto out_unlocked; 12197 } 12198 if (srcv->sinfo_flags) 12199 SCTP_STAT_INCR(sctps_sends_with_flags); 12200 } else { 12201 sinfo_flags = inp->def_send.sinfo_flags; 12202 sinfo_assoc_id = inp->def_send.sinfo_assoc_id; 12203 } 12204 if (sinfo_flags & SCTP_SENDALL) { 12205 /* its a sendall */ 12206 error = sctp_sendall(inp, uio, top, srcv); 12207 top = NULL; 12208 goto out_unlocked; 12209 } 12210 if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) { 12211 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12212 error = EINVAL; 12213 goto out_unlocked; 12214 } 12215 /* now we must find the assoc */ 12216 if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 12217 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 12218 SCTP_INP_RLOCK(inp); 12219 stcb = LIST_FIRST(&inp->sctp_asoc_list); 12220 if (stcb) { 12221 SCTP_TCB_LOCK(stcb); 12222 hold_tcblock = 1; 12223 } 12224 SCTP_INP_RUNLOCK(inp); 12225 } else if (sinfo_assoc_id) { 12226 stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 0); 12227 } else if (addr) { 12228 /*- 12229 * Since we did not use findep we must 12230 * increment it, and if we don't find a tcb 12231 * decrement it. 12232 */ 12233 SCTP_INP_WLOCK(inp); 12234 SCTP_INP_INCR_REF(inp); 12235 SCTP_INP_WUNLOCK(inp); 12236 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12237 if (stcb == NULL) { 12238 SCTP_INP_WLOCK(inp); 12239 SCTP_INP_DECR_REF(inp); 12240 SCTP_INP_WUNLOCK(inp); 12241 } else { 12242 hold_tcblock = 1; 12243 } 12244 } 12245 if ((stcb == NULL) && (addr)) { 12246 /* Possible implicit send? */ 12247 SCTP_ASOC_CREATE_LOCK(inp); 12248 create_lock_applied = 1; 12249 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 12250 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 12251 /* Should I really unlock ? */ 12252 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12253 error = EINVAL; 12254 goto out_unlocked; 12255 12256 } 12257 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 12258 (addr->sa_family == AF_INET6)) { 12259 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12260 error = EINVAL; 12261 goto out_unlocked; 12262 } 12263 SCTP_INP_WLOCK(inp); 12264 SCTP_INP_INCR_REF(inp); 12265 SCTP_INP_WUNLOCK(inp); 12266 /* With the lock applied look again */ 12267 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12268 if ((stcb == NULL) && (control != NULL) && (port > 0)) { 12269 stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error); 12270 } 12271 if (stcb == NULL) { 12272 SCTP_INP_WLOCK(inp); 12273 SCTP_INP_DECR_REF(inp); 12274 SCTP_INP_WUNLOCK(inp); 12275 } else { 12276 hold_tcblock = 1; 12277 } 12278 if (error) { 12279 goto out_unlocked; 12280 } 12281 if (t_inp != inp) { 12282 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12283 error = ENOTCONN; 12284 goto out_unlocked; 12285 } 12286 } 12287 if (stcb == NULL) { 12288 if (addr == NULL) { 12289 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12290 error = ENOENT; 12291 goto out_unlocked; 12292 } else { 12293 /* We must go ahead and start the INIT process */ 12294 uint32_t vrf_id; 12295 12296 if ((sinfo_flags & SCTP_ABORT) || 12297 ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) { 12298 /*- 12299 * User asks to abort a non-existant assoc, 12300 * or EOF a non-existant assoc with no data 12301 */ 12302 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12303 error = ENOENT; 12304 goto out_unlocked; 12305 } 12306 /* get an asoc/stcb struct */ 12307 vrf_id = inp->def_vrf_id; 12308 #ifdef INVARIANTS 12309 if (create_lock_applied == 0) { 12310 panic("Error, should hold create lock and I don't?"); 12311 } 12312 #endif 12313 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, 12314 p 12315 ); 12316 if (stcb == NULL) { 12317 /* Error is setup for us in the call */ 12318 goto out_unlocked; 12319 } 12320 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 12321 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 12322 /* 12323 * Set the connected flag so we can queue 12324 * data 12325 */ 12326 soisconnecting(so); 12327 } 12328 hold_tcblock = 1; 12329 if (create_lock_applied) { 12330 SCTP_ASOC_CREATE_UNLOCK(inp); 12331 create_lock_applied = 0; 12332 } else { 12333 SCTP_PRINTF("Huh-3? create lock should have been on??\n"); 12334 } 12335 /* 12336 * Turn on queue only flag to prevent data from 12337 * being sent 12338 */ 12339 queue_only = 1; 12340 asoc = &stcb->asoc; 12341 SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT); 12342 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 12343 12344 /* initialize authentication params for the assoc */ 12345 sctp_initialize_auth_params(inp, stcb); 12346 12347 if (control) { 12348 if (sctp_process_cmsgs_for_init(stcb, control, &error)) { 12349 sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_7); 12350 hold_tcblock = 0; 12351 stcb = NULL; 12352 goto out_unlocked; 12353 } 12354 } 12355 /* out with the INIT */ 12356 queue_only_for_init = 1; 12357 /*- 12358 * we may want to dig in after this call and adjust the MTU 12359 * value. It defaulted to 1500 (constant) but the ro 12360 * structure may now have an update and thus we may need to 12361 * change it BEFORE we append the message. 12362 */ 12363 } 12364 } else 12365 asoc = &stcb->asoc; 12366 if (srcv == NULL) 12367 srcv = (struct sctp_sndrcvinfo *)&asoc->def_send; 12368 if (srcv->sinfo_flags & SCTP_ADDR_OVER) { 12369 if (addr) 12370 net = sctp_findnet(stcb, addr); 12371 else 12372 net = NULL; 12373 if ((net == NULL) || 12374 ((port != 0) && (port != stcb->rport))) { 12375 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12376 error = EINVAL; 12377 goto out_unlocked; 12378 } 12379 } else { 12380 if (stcb->asoc.alternate) { 12381 net = stcb->asoc.alternate; 12382 } else { 12383 net = stcb->asoc.primary_destination; 12384 } 12385 } 12386 atomic_add_int(&stcb->total_sends, 1); 12387 /* Keep the stcb from being freed under our feet */ 12388 atomic_add_int(&asoc->refcnt, 1); 12389 free_cnt_applied = 1; 12390 12391 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) { 12392 if (sndlen > asoc->smallest_mtu) { 12393 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12394 error = EMSGSIZE; 12395 goto out_unlocked; 12396 } 12397 } 12398 if (SCTP_SO_IS_NBIO(so) 12399 || (flags & MSG_NBIO) 12400 ) { 12401 non_blocking = 1; 12402 } 12403 /* would we block? */ 12404 if (non_blocking) { 12405 if (hold_tcblock == 0) { 12406 SCTP_TCB_LOCK(stcb); 12407 hold_tcblock = 1; 12408 } 12409 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12410 if ((SCTP_SB_LIMIT_SND(so) < (sndlen + inqueue_bytes + stcb->asoc.sb_send_resv)) || 12411 (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12412 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK); 12413 if (sndlen > SCTP_SB_LIMIT_SND(so)) 12414 error = EMSGSIZE; 12415 else 12416 error = EWOULDBLOCK; 12417 goto out_unlocked; 12418 } 12419 stcb->asoc.sb_send_resv += sndlen; 12420 SCTP_TCB_UNLOCK(stcb); 12421 hold_tcblock = 0; 12422 } else { 12423 atomic_add_int(&stcb->asoc.sb_send_resv, sndlen); 12424 } 12425 local_soresv = sndlen; 12426 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12427 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12428 error = ECONNRESET; 12429 goto out_unlocked; 12430 } 12431 if (create_lock_applied) { 12432 SCTP_ASOC_CREATE_UNLOCK(inp); 12433 create_lock_applied = 0; 12434 } 12435 if (asoc->stream_reset_outstanding) { 12436 /* 12437 * Can't queue any data while stream reset is underway. 12438 */ 12439 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAGAIN); 12440 error = EAGAIN; 12441 goto out_unlocked; 12442 } 12443 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 12444 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 12445 queue_only = 1; 12446 } 12447 /* we are now done with all control */ 12448 if (control) { 12449 sctp_m_freem(control); 12450 control = NULL; 12451 } 12452 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) || 12453 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 12454 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 12455 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 12456 if (srcv->sinfo_flags & SCTP_ABORT) { 12457 ; 12458 } else { 12459 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12460 error = ECONNRESET; 12461 goto out_unlocked; 12462 } 12463 } 12464 /* Ok, we will attempt a msgsnd :> */ 12465 if (p) { 12466 p->td_ru.ru_msgsnd++; 12467 } 12468 /* Are we aborting? */ 12469 if (srcv->sinfo_flags & SCTP_ABORT) { 12470 struct mbuf *mm; 12471 int tot_demand, tot_out = 0, max_out; 12472 12473 SCTP_STAT_INCR(sctps_sends_with_abort); 12474 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 12475 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 12476 /* It has to be up before we abort */ 12477 /* how big is the user initiated abort? */ 12478 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12479 error = EINVAL; 12480 goto out; 12481 } 12482 if (hold_tcblock) { 12483 SCTP_TCB_UNLOCK(stcb); 12484 hold_tcblock = 0; 12485 } 12486 if (top) { 12487 struct mbuf *cntm = NULL; 12488 12489 mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA); 12490 if (sndlen != 0) { 12491 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) { 12492 tot_out += SCTP_BUF_LEN(cntm); 12493 } 12494 } 12495 } else { 12496 /* Must fit in a MTU */ 12497 tot_out = sndlen; 12498 tot_demand = (tot_out + sizeof(struct sctp_paramhdr)); 12499 if (tot_demand > SCTP_DEFAULT_ADD_MORE) { 12500 /* To big */ 12501 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12502 error = EMSGSIZE; 12503 goto out; 12504 } 12505 mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA); 12506 } 12507 if (mm == NULL) { 12508 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12509 error = ENOMEM; 12510 goto out; 12511 } 12512 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr); 12513 max_out -= sizeof(struct sctp_abort_msg); 12514 if (tot_out > max_out) { 12515 tot_out = max_out; 12516 } 12517 if (mm) { 12518 struct sctp_paramhdr *ph; 12519 12520 /* now move forward the data pointer */ 12521 ph = mtod(mm, struct sctp_paramhdr *); 12522 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 12523 ph->param_length = htons(sizeof(struct sctp_paramhdr) + tot_out); 12524 ph++; 12525 SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr); 12526 if (top == NULL) { 12527 error = uiomove((caddr_t)ph, (int)tot_out, uio); 12528 if (error) { 12529 /*- 12530 * Here if we can't get his data we 12531 * still abort we just don't get to 12532 * send the users note :-0 12533 */ 12534 sctp_m_freem(mm); 12535 mm = NULL; 12536 } 12537 } else { 12538 if (sndlen != 0) { 12539 SCTP_BUF_NEXT(mm) = top; 12540 } 12541 } 12542 } 12543 if (hold_tcblock == 0) { 12544 SCTP_TCB_LOCK(stcb); 12545 } 12546 atomic_add_int(&stcb->asoc.refcnt, -1); 12547 free_cnt_applied = 0; 12548 /* release this lock, otherwise we hang on ourselves */ 12549 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED); 12550 /* now relock the stcb so everything is sane */ 12551 hold_tcblock = 0; 12552 stcb = NULL; 12553 /* 12554 * In this case top is already chained to mm avoid double 12555 * free, since we free it below if top != NULL and driver 12556 * would free it after sending the packet out 12557 */ 12558 if (sndlen != 0) { 12559 top = NULL; 12560 } 12561 goto out_unlocked; 12562 } 12563 /* Calculate the maximum we can send */ 12564 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12565 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 12566 if (non_blocking) { 12567 /* we already checked for non-blocking above. */ 12568 max_len = sndlen; 12569 } else { 12570 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12571 } 12572 } else { 12573 max_len = 0; 12574 } 12575 if (hold_tcblock) { 12576 SCTP_TCB_UNLOCK(stcb); 12577 hold_tcblock = 0; 12578 } 12579 /* Is the stream no. valid? */ 12580 if (srcv->sinfo_stream >= asoc->streamoutcnt) { 12581 /* Invalid stream number */ 12582 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12583 error = EINVAL; 12584 goto out_unlocked; 12585 } 12586 if (asoc->strmout == NULL) { 12587 /* huh? software error */ 12588 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 12589 error = EFAULT; 12590 goto out_unlocked; 12591 } 12592 /* Unless E_EOR mode is on, we must make a send FIT in one call. */ 12593 if ((user_marks_eor == 0) && 12594 (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) { 12595 /* It will NEVER fit */ 12596 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12597 error = EMSGSIZE; 12598 goto out_unlocked; 12599 } 12600 if ((uio == NULL) && user_marks_eor) { 12601 /*- 12602 * We do not support eeor mode for 12603 * sending with mbuf chains (like sendfile). 12604 */ 12605 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12606 error = EINVAL; 12607 goto out_unlocked; 12608 } 12609 if (user_marks_eor) { 12610 local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold)); 12611 } else { 12612 /*- 12613 * For non-eeor the whole message must fit in 12614 * the socket send buffer. 12615 */ 12616 local_add_more = sndlen; 12617 } 12618 len = 0; 12619 if (non_blocking) { 12620 goto skip_preblock; 12621 } 12622 if (((max_len <= local_add_more) && 12623 (SCTP_SB_LIMIT_SND(so) >= local_add_more)) || 12624 (max_len == 0) || 12625 ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12626 /* No room right now ! */ 12627 SOCKBUF_LOCK(&so->so_snd); 12628 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12629 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) || 12630 ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12631 SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n", 12632 (unsigned int)SCTP_SB_LIMIT_SND(so), 12633 inqueue_bytes, 12634 local_add_more, 12635 stcb->asoc.stream_queue_cnt, 12636 stcb->asoc.chunks_on_out_queue, 12637 SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)); 12638 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12639 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen); 12640 } 12641 be.error = 0; 12642 stcb->block_entry = &be; 12643 error = sbwait(&so->so_snd); 12644 stcb->block_entry = NULL; 12645 if (error || so->so_error || be.error) { 12646 if (error == 0) { 12647 if (so->so_error) 12648 error = so->so_error; 12649 if (be.error) { 12650 error = be.error; 12651 } 12652 } 12653 SOCKBUF_UNLOCK(&so->so_snd); 12654 goto out_unlocked; 12655 } 12656 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12657 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 12658 asoc, stcb->asoc.total_output_queue_size); 12659 } 12660 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12661 goto out_unlocked; 12662 } 12663 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12664 } 12665 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 12666 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12667 } else { 12668 max_len = 0; 12669 } 12670 SOCKBUF_UNLOCK(&so->so_snd); 12671 } 12672 skip_preblock: 12673 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12674 goto out_unlocked; 12675 } 12676 /* 12677 * sndlen covers for mbuf case uio_resid covers for the non-mbuf 12678 * case NOTE: uio will be null when top/mbuf is passed 12679 */ 12680 if (sndlen == 0) { 12681 if (srcv->sinfo_flags & SCTP_EOF) { 12682 got_all_of_the_send = 1; 12683 goto dataless_eof; 12684 } else { 12685 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12686 error = EINVAL; 12687 goto out; 12688 } 12689 } 12690 if (top == NULL) { 12691 struct sctp_stream_queue_pending *sp; 12692 struct sctp_stream_out *strm; 12693 uint32_t sndout; 12694 12695 SCTP_TCB_SEND_LOCK(stcb); 12696 if ((asoc->stream_locked) && 12697 (asoc->stream_locked_on != srcv->sinfo_stream)) { 12698 SCTP_TCB_SEND_UNLOCK(stcb); 12699 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12700 error = EINVAL; 12701 goto out; 12702 } 12703 SCTP_TCB_SEND_UNLOCK(stcb); 12704 12705 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 12706 if (strm->last_msg_incomplete == 0) { 12707 do_a_copy_in: 12708 sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error); 12709 if ((sp == NULL) || (error)) { 12710 goto out; 12711 } 12712 SCTP_TCB_SEND_LOCK(stcb); 12713 if (sp->msg_is_complete) { 12714 strm->last_msg_incomplete = 0; 12715 asoc->stream_locked = 0; 12716 } else { 12717 /* 12718 * Just got locked to this guy in case of an 12719 * interrupt. 12720 */ 12721 strm->last_msg_incomplete = 1; 12722 asoc->stream_locked = 1; 12723 asoc->stream_locked_on = srcv->sinfo_stream; 12724 sp->sender_all_done = 0; 12725 } 12726 sctp_snd_sb_alloc(stcb, sp->length); 12727 atomic_add_int(&asoc->stream_queue_cnt, 1); 12728 if (srcv->sinfo_flags & SCTP_UNORDERED) { 12729 SCTP_STAT_INCR(sctps_sends_with_unord); 12730 } 12731 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 12732 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1); 12733 SCTP_TCB_SEND_UNLOCK(stcb); 12734 } else { 12735 SCTP_TCB_SEND_LOCK(stcb); 12736 sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead); 12737 SCTP_TCB_SEND_UNLOCK(stcb); 12738 if (sp == NULL) { 12739 /* ???? Huh ??? last msg is gone */ 12740 #ifdef INVARIANTS 12741 panic("Warning: Last msg marked incomplete, yet nothing left?"); 12742 #else 12743 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n"); 12744 strm->last_msg_incomplete = 0; 12745 #endif 12746 goto do_a_copy_in; 12747 12748 } 12749 } 12750 while (uio->uio_resid > 0) { 12751 /* How much room do we have? */ 12752 struct mbuf *new_tail, *mm; 12753 12754 if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) 12755 max_len = SCTP_SB_LIMIT_SND(so) - stcb->asoc.total_output_queue_size; 12756 else 12757 max_len = 0; 12758 12759 if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) || 12760 (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) || 12761 (uio->uio_resid && (uio->uio_resid <= (int)max_len))) { 12762 sndout = 0; 12763 new_tail = NULL; 12764 if (hold_tcblock) { 12765 SCTP_TCB_UNLOCK(stcb); 12766 hold_tcblock = 0; 12767 } 12768 mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail); 12769 if ((mm == NULL) || error) { 12770 if (mm) { 12771 sctp_m_freem(mm); 12772 } 12773 goto out; 12774 } 12775 /* Update the mbuf and count */ 12776 SCTP_TCB_SEND_LOCK(stcb); 12777 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12778 /* 12779 * we need to get out. Peer probably 12780 * aborted. 12781 */ 12782 sctp_m_freem(mm); 12783 if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) { 12784 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12785 error = ECONNRESET; 12786 } 12787 SCTP_TCB_SEND_UNLOCK(stcb); 12788 goto out; 12789 } 12790 if (sp->tail_mbuf) { 12791 /* tack it to the end */ 12792 SCTP_BUF_NEXT(sp->tail_mbuf) = mm; 12793 sp->tail_mbuf = new_tail; 12794 } else { 12795 /* A stolen mbuf */ 12796 sp->data = mm; 12797 sp->tail_mbuf = new_tail; 12798 } 12799 sctp_snd_sb_alloc(stcb, sndout); 12800 atomic_add_int(&sp->length, sndout); 12801 len += sndout; 12802 12803 /* Did we reach EOR? */ 12804 if ((uio->uio_resid == 0) && 12805 ((user_marks_eor == 0) || 12806 (srcv->sinfo_flags & SCTP_EOF) || 12807 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 12808 sp->msg_is_complete = 1; 12809 } else { 12810 sp->msg_is_complete = 0; 12811 } 12812 SCTP_TCB_SEND_UNLOCK(stcb); 12813 } 12814 if (uio->uio_resid == 0) { 12815 /* got it all? */ 12816 continue; 12817 } 12818 /* PR-SCTP? */ 12819 if ((asoc->peer_supports_prsctp) && (asoc->sent_queue_cnt_removeable > 0)) { 12820 /* 12821 * This is ugly but we must assure locking 12822 * order 12823 */ 12824 if (hold_tcblock == 0) { 12825 SCTP_TCB_LOCK(stcb); 12826 hold_tcblock = 1; 12827 } 12828 sctp_prune_prsctp(stcb, asoc, srcv, sndlen); 12829 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * sizeof(struct sctp_data_chunk)); 12830 if (SCTP_SB_LIMIT_SND(so) > stcb->asoc.total_output_queue_size) 12831 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 12832 else 12833 max_len = 0; 12834 if (max_len > 0) { 12835 continue; 12836 } 12837 SCTP_TCB_UNLOCK(stcb); 12838 hold_tcblock = 0; 12839 } 12840 /* wait for space now */ 12841 if (non_blocking) { 12842 /* Non-blocking io in place out */ 12843 goto skip_out_eof; 12844 } 12845 /* What about the INIT, send it maybe */ 12846 if (queue_only_for_init) { 12847 if (hold_tcblock == 0) { 12848 SCTP_TCB_LOCK(stcb); 12849 hold_tcblock = 1; 12850 } 12851 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) { 12852 /* a collision took us forward? */ 12853 queue_only = 0; 12854 } else { 12855 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 12856 SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT); 12857 queue_only = 1; 12858 } 12859 } 12860 if ((net->flight_size > net->cwnd) && 12861 (asoc->sctp_cmt_on_off == 0)) { 12862 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 12863 queue_only = 1; 12864 } else if (asoc->ifp_had_enobuf) { 12865 SCTP_STAT_INCR(sctps_ifnomemqueued); 12866 if (net->flight_size > (2 * net->mtu)) { 12867 queue_only = 1; 12868 } 12869 asoc->ifp_had_enobuf = 0; 12870 } 12871 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 12872 (stcb->asoc.stream_queue_cnt * sizeof(struct sctp_data_chunk))); 12873 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 12874 (stcb->asoc.total_flight > 0) && 12875 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 12876 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 12877 12878 /*- 12879 * Ok, Nagle is set on and we have data outstanding. 12880 * Don't send anything and let SACKs drive out the 12881 * data unless wen have a "full" segment to send. 12882 */ 12883 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 12884 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 12885 } 12886 SCTP_STAT_INCR(sctps_naglequeued); 12887 nagle_applies = 1; 12888 } else { 12889 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 12890 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 12891 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 12892 } 12893 SCTP_STAT_INCR(sctps_naglesent); 12894 nagle_applies = 0; 12895 } 12896 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12897 12898 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 12899 nagle_applies, un_sent); 12900 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 12901 stcb->asoc.total_flight, 12902 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 12903 } 12904 if (queue_only_for_init) 12905 queue_only_for_init = 0; 12906 if ((queue_only == 0) && (nagle_applies == 0)) { 12907 /*- 12908 * need to start chunk output 12909 * before blocking.. note that if 12910 * a lock is already applied, then 12911 * the input via the net is happening 12912 * and I don't need to start output :-D 12913 */ 12914 if (hold_tcblock == 0) { 12915 if (SCTP_TCB_TRYLOCK(stcb)) { 12916 hold_tcblock = 1; 12917 sctp_chunk_output(inp, 12918 stcb, 12919 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 12920 } 12921 } else { 12922 sctp_chunk_output(inp, 12923 stcb, 12924 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 12925 } 12926 if (hold_tcblock == 1) { 12927 SCTP_TCB_UNLOCK(stcb); 12928 hold_tcblock = 0; 12929 } 12930 } 12931 SOCKBUF_LOCK(&so->so_snd); 12932 /*- 12933 * This is a bit strange, but I think it will 12934 * work. The total_output_queue_size is locked and 12935 * protected by the TCB_LOCK, which we just released. 12936 * There is a race that can occur between releasing it 12937 * above, and me getting the socket lock, where sacks 12938 * come in but we have not put the SB_WAIT on the 12939 * so_snd buffer to get the wakeup. After the LOCK 12940 * is applied the sack_processing will also need to 12941 * LOCK the so->so_snd to do the actual sowwakeup(). So 12942 * once we have the socket buffer lock if we recheck the 12943 * size we KNOW we will get to sleep safely with the 12944 * wakeup flag in place. 12945 */ 12946 if (SCTP_SB_LIMIT_SND(so) <= (stcb->asoc.total_output_queue_size + 12947 min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) { 12948 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12949 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK, 12950 asoc, uio->uio_resid); 12951 } 12952 be.error = 0; 12953 stcb->block_entry = &be; 12954 error = sbwait(&so->so_snd); 12955 stcb->block_entry = NULL; 12956 12957 if (error || so->so_error || be.error) { 12958 if (error == 0) { 12959 if (so->so_error) 12960 error = so->so_error; 12961 if (be.error) { 12962 error = be.error; 12963 } 12964 } 12965 SOCKBUF_UNLOCK(&so->so_snd); 12966 goto out_unlocked; 12967 } 12968 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 12969 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 12970 asoc, stcb->asoc.total_output_queue_size); 12971 } 12972 } 12973 SOCKBUF_UNLOCK(&so->so_snd); 12974 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12975 goto out_unlocked; 12976 } 12977 } 12978 SCTP_TCB_SEND_LOCK(stcb); 12979 if (sp) { 12980 if (sp->msg_is_complete == 0) { 12981 strm->last_msg_incomplete = 1; 12982 asoc->stream_locked = 1; 12983 asoc->stream_locked_on = srcv->sinfo_stream; 12984 } else { 12985 sp->sender_all_done = 1; 12986 strm->last_msg_incomplete = 0; 12987 asoc->stream_locked = 0; 12988 } 12989 } else { 12990 SCTP_PRINTF("Huh no sp TSNH?\n"); 12991 strm->last_msg_incomplete = 0; 12992 asoc->stream_locked = 0; 12993 } 12994 SCTP_TCB_SEND_UNLOCK(stcb); 12995 if (uio->uio_resid == 0) { 12996 got_all_of_the_send = 1; 12997 } 12998 } else { 12999 /* We send in a 0, since we do NOT have any locks */ 13000 error = sctp_msg_append(stcb, net, top, srcv, 0); 13001 top = NULL; 13002 if (srcv->sinfo_flags & SCTP_EOF) { 13003 /* 13004 * This should only happen for Panda for the mbuf 13005 * send case, which does NOT yet support EEOR mode. 13006 * Thus, we can just set this flag to do the proper 13007 * EOF handling. 13008 */ 13009 got_all_of_the_send = 1; 13010 } 13011 } 13012 if (error) { 13013 goto out; 13014 } 13015 dataless_eof: 13016 /* EOF thing ? */ 13017 if ((srcv->sinfo_flags & SCTP_EOF) && 13018 (got_all_of_the_send == 1)) { 13019 int cnt; 13020 13021 SCTP_STAT_INCR(sctps_sends_with_eof); 13022 error = 0; 13023 if (hold_tcblock == 0) { 13024 SCTP_TCB_LOCK(stcb); 13025 hold_tcblock = 1; 13026 } 13027 cnt = sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED); 13028 if (TAILQ_EMPTY(&asoc->send_queue) && 13029 TAILQ_EMPTY(&asoc->sent_queue) && 13030 (cnt == 0)) { 13031 if (asoc->locked_on_sending) { 13032 goto abort_anyway; 13033 } 13034 /* there is nothing queued to send, so I'm done... */ 13035 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 13036 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13037 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13038 struct sctp_nets *netp; 13039 13040 /* only send SHUTDOWN the first time through */ 13041 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 13042 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 13043 } 13044 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 13045 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 13046 sctp_stop_timers_for_shutdown(stcb); 13047 if (stcb->asoc.alternate) { 13048 netp = stcb->asoc.alternate; 13049 } else { 13050 netp = stcb->asoc.primary_destination; 13051 } 13052 sctp_send_shutdown(stcb, netp); 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