1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions are met: 10 * 11 * a) Redistributions of source code must retain the above copyright notice, 12 * this list of conditions and the following disclaimer. 13 * 14 * b) Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in 16 * the documentation and/or other materials provided with the distribution. 17 * 18 * c) Neither the name of Cisco Systems, Inc. nor the names of its 19 * contributors may be used to endorse or promote products derived 20 * from this software without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 24 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 32 * THE POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35 #include <sys/cdefs.h> 36 __FBSDID("$FreeBSD$"); 37 38 #include <netinet/sctp_os.h> 39 #include <sys/proc.h> 40 #include <netinet/sctp_var.h> 41 #include <netinet/sctp_sysctl.h> 42 #include <netinet/sctp_header.h> 43 #include <netinet/sctp_pcb.h> 44 #include <netinet/sctputil.h> 45 #include <netinet/sctp_output.h> 46 #include <netinet/sctp_uio.h> 47 #include <netinet/sctputil.h> 48 #include <netinet/sctp_auth.h> 49 #include <netinet/sctp_timer.h> 50 #include <netinet/sctp_asconf.h> 51 #include <netinet/sctp_indata.h> 52 #include <netinet/sctp_bsd_addr.h> 53 #include <netinet/sctp_input.h> 54 #include <netinet/sctp_crc32.h> 55 #if defined(INET) || defined(INET6) 56 #include <netinet/udp.h> 57 #endif 58 #include <netinet/udp_var.h> 59 #include <machine/in_cksum.h> 60 61 62 63 #define SCTP_MAX_GAPS_INARRAY 4 64 struct sack_track { 65 uint8_t right_edge; /* mergable on the right edge */ 66 uint8_t left_edge; /* mergable on the left edge */ 67 uint8_t num_entries; 68 uint8_t spare; 69 struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY]; 70 }; 71 72 const struct sack_track sack_array[256] = { 73 {0, 0, 0, 0, /* 0x00 */ 74 {{0, 0}, 75 {0, 0}, 76 {0, 0}, 77 {0, 0} 78 } 79 }, 80 {1, 0, 1, 0, /* 0x01 */ 81 {{0, 0}, 82 {0, 0}, 83 {0, 0}, 84 {0, 0} 85 } 86 }, 87 {0, 0, 1, 0, /* 0x02 */ 88 {{1, 1}, 89 {0, 0}, 90 {0, 0}, 91 {0, 0} 92 } 93 }, 94 {1, 0, 1, 0, /* 0x03 */ 95 {{0, 1}, 96 {0, 0}, 97 {0, 0}, 98 {0, 0} 99 } 100 }, 101 {0, 0, 1, 0, /* 0x04 */ 102 {{2, 2}, 103 {0, 0}, 104 {0, 0}, 105 {0, 0} 106 } 107 }, 108 {1, 0, 2, 0, /* 0x05 */ 109 {{0, 0}, 110 {2, 2}, 111 {0, 0}, 112 {0, 0} 113 } 114 }, 115 {0, 0, 1, 0, /* 0x06 */ 116 {{1, 2}, 117 {0, 0}, 118 {0, 0}, 119 {0, 0} 120 } 121 }, 122 {1, 0, 1, 0, /* 0x07 */ 123 {{0, 2}, 124 {0, 0}, 125 {0, 0}, 126 {0, 0} 127 } 128 }, 129 {0, 0, 1, 0, /* 0x08 */ 130 {{3, 3}, 131 {0, 0}, 132 {0, 0}, 133 {0, 0} 134 } 135 }, 136 {1, 0, 2, 0, /* 0x09 */ 137 {{0, 0}, 138 {3, 3}, 139 {0, 0}, 140 {0, 0} 141 } 142 }, 143 {0, 0, 2, 0, /* 0x0a */ 144 {{1, 1}, 145 {3, 3}, 146 {0, 0}, 147 {0, 0} 148 } 149 }, 150 {1, 0, 2, 0, /* 0x0b */ 151 {{0, 1}, 152 {3, 3}, 153 {0, 0}, 154 {0, 0} 155 } 156 }, 157 {0, 0, 1, 0, /* 0x0c */ 158 {{2, 3}, 159 {0, 0}, 160 {0, 0}, 161 {0, 0} 162 } 163 }, 164 {1, 0, 2, 0, /* 0x0d */ 165 {{0, 0}, 166 {2, 3}, 167 {0, 0}, 168 {0, 0} 169 } 170 }, 171 {0, 0, 1, 0, /* 0x0e */ 172 {{1, 3}, 173 {0, 0}, 174 {0, 0}, 175 {0, 0} 176 } 177 }, 178 {1, 0, 1, 0, /* 0x0f */ 179 {{0, 3}, 180 {0, 0}, 181 {0, 0}, 182 {0, 0} 183 } 184 }, 185 {0, 0, 1, 0, /* 0x10 */ 186 {{4, 4}, 187 {0, 0}, 188 {0, 0}, 189 {0, 0} 190 } 191 }, 192 {1, 0, 2, 0, /* 0x11 */ 193 {{0, 0}, 194 {4, 4}, 195 {0, 0}, 196 {0, 0} 197 } 198 }, 199 {0, 0, 2, 0, /* 0x12 */ 200 {{1, 1}, 201 {4, 4}, 202 {0, 0}, 203 {0, 0} 204 } 205 }, 206 {1, 0, 2, 0, /* 0x13 */ 207 {{0, 1}, 208 {4, 4}, 209 {0, 0}, 210 {0, 0} 211 } 212 }, 213 {0, 0, 2, 0, /* 0x14 */ 214 {{2, 2}, 215 {4, 4}, 216 {0, 0}, 217 {0, 0} 218 } 219 }, 220 {1, 0, 3, 0, /* 0x15 */ 221 {{0, 0}, 222 {2, 2}, 223 {4, 4}, 224 {0, 0} 225 } 226 }, 227 {0, 0, 2, 0, /* 0x16 */ 228 {{1, 2}, 229 {4, 4}, 230 {0, 0}, 231 {0, 0} 232 } 233 }, 234 {1, 0, 2, 0, /* 0x17 */ 235 {{0, 2}, 236 {4, 4}, 237 {0, 0}, 238 {0, 0} 239 } 240 }, 241 {0, 0, 1, 0, /* 0x18 */ 242 {{3, 4}, 243 {0, 0}, 244 {0, 0}, 245 {0, 0} 246 } 247 }, 248 {1, 0, 2, 0, /* 0x19 */ 249 {{0, 0}, 250 {3, 4}, 251 {0, 0}, 252 {0, 0} 253 } 254 }, 255 {0, 0, 2, 0, /* 0x1a */ 256 {{1, 1}, 257 {3, 4}, 258 {0, 0}, 259 {0, 0} 260 } 261 }, 262 {1, 0, 2, 0, /* 0x1b */ 263 {{0, 1}, 264 {3, 4}, 265 {0, 0}, 266 {0, 0} 267 } 268 }, 269 {0, 0, 1, 0, /* 0x1c */ 270 {{2, 4}, 271 {0, 0}, 272 {0, 0}, 273 {0, 0} 274 } 275 }, 276 {1, 0, 2, 0, /* 0x1d */ 277 {{0, 0}, 278 {2, 4}, 279 {0, 0}, 280 {0, 0} 281 } 282 }, 283 {0, 0, 1, 0, /* 0x1e */ 284 {{1, 4}, 285 {0, 0}, 286 {0, 0}, 287 {0, 0} 288 } 289 }, 290 {1, 0, 1, 0, /* 0x1f */ 291 {{0, 4}, 292 {0, 0}, 293 {0, 0}, 294 {0, 0} 295 } 296 }, 297 {0, 0, 1, 0, /* 0x20 */ 298 {{5, 5}, 299 {0, 0}, 300 {0, 0}, 301 {0, 0} 302 } 303 }, 304 {1, 0, 2, 0, /* 0x21 */ 305 {{0, 0}, 306 {5, 5}, 307 {0, 0}, 308 {0, 0} 309 } 310 }, 311 {0, 0, 2, 0, /* 0x22 */ 312 {{1, 1}, 313 {5, 5}, 314 {0, 0}, 315 {0, 0} 316 } 317 }, 318 {1, 0, 2, 0, /* 0x23 */ 319 {{0, 1}, 320 {5, 5}, 321 {0, 0}, 322 {0, 0} 323 } 324 }, 325 {0, 0, 2, 0, /* 0x24 */ 326 {{2, 2}, 327 {5, 5}, 328 {0, 0}, 329 {0, 0} 330 } 331 }, 332 {1, 0, 3, 0, /* 0x25 */ 333 {{0, 0}, 334 {2, 2}, 335 {5, 5}, 336 {0, 0} 337 } 338 }, 339 {0, 0, 2, 0, /* 0x26 */ 340 {{1, 2}, 341 {5, 5}, 342 {0, 0}, 343 {0, 0} 344 } 345 }, 346 {1, 0, 2, 0, /* 0x27 */ 347 {{0, 2}, 348 {5, 5}, 349 {0, 0}, 350 {0, 0} 351 } 352 }, 353 {0, 0, 2, 0, /* 0x28 */ 354 {{3, 3}, 355 {5, 5}, 356 {0, 0}, 357 {0, 0} 358 } 359 }, 360 {1, 0, 3, 0, /* 0x29 */ 361 {{0, 0}, 362 {3, 3}, 363 {5, 5}, 364 {0, 0} 365 } 366 }, 367 {0, 0, 3, 0, /* 0x2a */ 368 {{1, 1}, 369 {3, 3}, 370 {5, 5}, 371 {0, 0} 372 } 373 }, 374 {1, 0, 3, 0, /* 0x2b */ 375 {{0, 1}, 376 {3, 3}, 377 {5, 5}, 378 {0, 0} 379 } 380 }, 381 {0, 0, 2, 0, /* 0x2c */ 382 {{2, 3}, 383 {5, 5}, 384 {0, 0}, 385 {0, 0} 386 } 387 }, 388 {1, 0, 3, 0, /* 0x2d */ 389 {{0, 0}, 390 {2, 3}, 391 {5, 5}, 392 {0, 0} 393 } 394 }, 395 {0, 0, 2, 0, /* 0x2e */ 396 {{1, 3}, 397 {5, 5}, 398 {0, 0}, 399 {0, 0} 400 } 401 }, 402 {1, 0, 2, 0, /* 0x2f */ 403 {{0, 3}, 404 {5, 5}, 405 {0, 0}, 406 {0, 0} 407 } 408 }, 409 {0, 0, 1, 0, /* 0x30 */ 410 {{4, 5}, 411 {0, 0}, 412 {0, 0}, 413 {0, 0} 414 } 415 }, 416 {1, 0, 2, 0, /* 0x31 */ 417 {{0, 0}, 418 {4, 5}, 419 {0, 0}, 420 {0, 0} 421 } 422 }, 423 {0, 0, 2, 0, /* 0x32 */ 424 {{1, 1}, 425 {4, 5}, 426 {0, 0}, 427 {0, 0} 428 } 429 }, 430 {1, 0, 2, 0, /* 0x33 */ 431 {{0, 1}, 432 {4, 5}, 433 {0, 0}, 434 {0, 0} 435 } 436 }, 437 {0, 0, 2, 0, /* 0x34 */ 438 {{2, 2}, 439 {4, 5}, 440 {0, 0}, 441 {0, 0} 442 } 443 }, 444 {1, 0, 3, 0, /* 0x35 */ 445 {{0, 0}, 446 {2, 2}, 447 {4, 5}, 448 {0, 0} 449 } 450 }, 451 {0, 0, 2, 0, /* 0x36 */ 452 {{1, 2}, 453 {4, 5}, 454 {0, 0}, 455 {0, 0} 456 } 457 }, 458 {1, 0, 2, 0, /* 0x37 */ 459 {{0, 2}, 460 {4, 5}, 461 {0, 0}, 462 {0, 0} 463 } 464 }, 465 {0, 0, 1, 0, /* 0x38 */ 466 {{3, 5}, 467 {0, 0}, 468 {0, 0}, 469 {0, 0} 470 } 471 }, 472 {1, 0, 2, 0, /* 0x39 */ 473 {{0, 0}, 474 {3, 5}, 475 {0, 0}, 476 {0, 0} 477 } 478 }, 479 {0, 0, 2, 0, /* 0x3a */ 480 {{1, 1}, 481 {3, 5}, 482 {0, 0}, 483 {0, 0} 484 } 485 }, 486 {1, 0, 2, 0, /* 0x3b */ 487 {{0, 1}, 488 {3, 5}, 489 {0, 0}, 490 {0, 0} 491 } 492 }, 493 {0, 0, 1, 0, /* 0x3c */ 494 {{2, 5}, 495 {0, 0}, 496 {0, 0}, 497 {0, 0} 498 } 499 }, 500 {1, 0, 2, 0, /* 0x3d */ 501 {{0, 0}, 502 {2, 5}, 503 {0, 0}, 504 {0, 0} 505 } 506 }, 507 {0, 0, 1, 0, /* 0x3e */ 508 {{1, 5}, 509 {0, 0}, 510 {0, 0}, 511 {0, 0} 512 } 513 }, 514 {1, 0, 1, 0, /* 0x3f */ 515 {{0, 5}, 516 {0, 0}, 517 {0, 0}, 518 {0, 0} 519 } 520 }, 521 {0, 0, 1, 0, /* 0x40 */ 522 {{6, 6}, 523 {0, 0}, 524 {0, 0}, 525 {0, 0} 526 } 527 }, 528 {1, 0, 2, 0, /* 0x41 */ 529 {{0, 0}, 530 {6, 6}, 531 {0, 0}, 532 {0, 0} 533 } 534 }, 535 {0, 0, 2, 0, /* 0x42 */ 536 {{1, 1}, 537 {6, 6}, 538 {0, 0}, 539 {0, 0} 540 } 541 }, 542 {1, 0, 2, 0, /* 0x43 */ 543 {{0, 1}, 544 {6, 6}, 545 {0, 0}, 546 {0, 0} 547 } 548 }, 549 {0, 0, 2, 0, /* 0x44 */ 550 {{2, 2}, 551 {6, 6}, 552 {0, 0}, 553 {0, 0} 554 } 555 }, 556 {1, 0, 3, 0, /* 0x45 */ 557 {{0, 0}, 558 {2, 2}, 559 {6, 6}, 560 {0, 0} 561 } 562 }, 563 {0, 0, 2, 0, /* 0x46 */ 564 {{1, 2}, 565 {6, 6}, 566 {0, 0}, 567 {0, 0} 568 } 569 }, 570 {1, 0, 2, 0, /* 0x47 */ 571 {{0, 2}, 572 {6, 6}, 573 {0, 0}, 574 {0, 0} 575 } 576 }, 577 {0, 0, 2, 0, /* 0x48 */ 578 {{3, 3}, 579 {6, 6}, 580 {0, 0}, 581 {0, 0} 582 } 583 }, 584 {1, 0, 3, 0, /* 0x49 */ 585 {{0, 0}, 586 {3, 3}, 587 {6, 6}, 588 {0, 0} 589 } 590 }, 591 {0, 0, 3, 0, /* 0x4a */ 592 {{1, 1}, 593 {3, 3}, 594 {6, 6}, 595 {0, 0} 596 } 597 }, 598 {1, 0, 3, 0, /* 0x4b */ 599 {{0, 1}, 600 {3, 3}, 601 {6, 6}, 602 {0, 0} 603 } 604 }, 605 {0, 0, 2, 0, /* 0x4c */ 606 {{2, 3}, 607 {6, 6}, 608 {0, 0}, 609 {0, 0} 610 } 611 }, 612 {1, 0, 3, 0, /* 0x4d */ 613 {{0, 0}, 614 {2, 3}, 615 {6, 6}, 616 {0, 0} 617 } 618 }, 619 {0, 0, 2, 0, /* 0x4e */ 620 {{1, 3}, 621 {6, 6}, 622 {0, 0}, 623 {0, 0} 624 } 625 }, 626 {1, 0, 2, 0, /* 0x4f */ 627 {{0, 3}, 628 {6, 6}, 629 {0, 0}, 630 {0, 0} 631 } 632 }, 633 {0, 0, 2, 0, /* 0x50 */ 634 {{4, 4}, 635 {6, 6}, 636 {0, 0}, 637 {0, 0} 638 } 639 }, 640 {1, 0, 3, 0, /* 0x51 */ 641 {{0, 0}, 642 {4, 4}, 643 {6, 6}, 644 {0, 0} 645 } 646 }, 647 {0, 0, 3, 0, /* 0x52 */ 648 {{1, 1}, 649 {4, 4}, 650 {6, 6}, 651 {0, 0} 652 } 653 }, 654 {1, 0, 3, 0, /* 0x53 */ 655 {{0, 1}, 656 {4, 4}, 657 {6, 6}, 658 {0, 0} 659 } 660 }, 661 {0, 0, 3, 0, /* 0x54 */ 662 {{2, 2}, 663 {4, 4}, 664 {6, 6}, 665 {0, 0} 666 } 667 }, 668 {1, 0, 4, 0, /* 0x55 */ 669 {{0, 0}, 670 {2, 2}, 671 {4, 4}, 672 {6, 6} 673 } 674 }, 675 {0, 0, 3, 0, /* 0x56 */ 676 {{1, 2}, 677 {4, 4}, 678 {6, 6}, 679 {0, 0} 680 } 681 }, 682 {1, 0, 3, 0, /* 0x57 */ 683 {{0, 2}, 684 {4, 4}, 685 {6, 6}, 686 {0, 0} 687 } 688 }, 689 {0, 0, 2, 0, /* 0x58 */ 690 {{3, 4}, 691 {6, 6}, 692 {0, 0}, 693 {0, 0} 694 } 695 }, 696 {1, 0, 3, 0, /* 0x59 */ 697 {{0, 0}, 698 {3, 4}, 699 {6, 6}, 700 {0, 0} 701 } 702 }, 703 {0, 0, 3, 0, /* 0x5a */ 704 {{1, 1}, 705 {3, 4}, 706 {6, 6}, 707 {0, 0} 708 } 709 }, 710 {1, 0, 3, 0, /* 0x5b */ 711 {{0, 1}, 712 {3, 4}, 713 {6, 6}, 714 {0, 0} 715 } 716 }, 717 {0, 0, 2, 0, /* 0x5c */ 718 {{2, 4}, 719 {6, 6}, 720 {0, 0}, 721 {0, 0} 722 } 723 }, 724 {1, 0, 3, 0, /* 0x5d */ 725 {{0, 0}, 726 {2, 4}, 727 {6, 6}, 728 {0, 0} 729 } 730 }, 731 {0, 0, 2, 0, /* 0x5e */ 732 {{1, 4}, 733 {6, 6}, 734 {0, 0}, 735 {0, 0} 736 } 737 }, 738 {1, 0, 2, 0, /* 0x5f */ 739 {{0, 4}, 740 {6, 6}, 741 {0, 0}, 742 {0, 0} 743 } 744 }, 745 {0, 0, 1, 0, /* 0x60 */ 746 {{5, 6}, 747 {0, 0}, 748 {0, 0}, 749 {0, 0} 750 } 751 }, 752 {1, 0, 2, 0, /* 0x61 */ 753 {{0, 0}, 754 {5, 6}, 755 {0, 0}, 756 {0, 0} 757 } 758 }, 759 {0, 0, 2, 0, /* 0x62 */ 760 {{1, 1}, 761 {5, 6}, 762 {0, 0}, 763 {0, 0} 764 } 765 }, 766 {1, 0, 2, 0, /* 0x63 */ 767 {{0, 1}, 768 {5, 6}, 769 {0, 0}, 770 {0, 0} 771 } 772 }, 773 {0, 0, 2, 0, /* 0x64 */ 774 {{2, 2}, 775 {5, 6}, 776 {0, 0}, 777 {0, 0} 778 } 779 }, 780 {1, 0, 3, 0, /* 0x65 */ 781 {{0, 0}, 782 {2, 2}, 783 {5, 6}, 784 {0, 0} 785 } 786 }, 787 {0, 0, 2, 0, /* 0x66 */ 788 {{1, 2}, 789 {5, 6}, 790 {0, 0}, 791 {0, 0} 792 } 793 }, 794 {1, 0, 2, 0, /* 0x67 */ 795 {{0, 2}, 796 {5, 6}, 797 {0, 0}, 798 {0, 0} 799 } 800 }, 801 {0, 0, 2, 0, /* 0x68 */ 802 {{3, 3}, 803 {5, 6}, 804 {0, 0}, 805 {0, 0} 806 } 807 }, 808 {1, 0, 3, 0, /* 0x69 */ 809 {{0, 0}, 810 {3, 3}, 811 {5, 6}, 812 {0, 0} 813 } 814 }, 815 {0, 0, 3, 0, /* 0x6a */ 816 {{1, 1}, 817 {3, 3}, 818 {5, 6}, 819 {0, 0} 820 } 821 }, 822 {1, 0, 3, 0, /* 0x6b */ 823 {{0, 1}, 824 {3, 3}, 825 {5, 6}, 826 {0, 0} 827 } 828 }, 829 {0, 0, 2, 0, /* 0x6c */ 830 {{2, 3}, 831 {5, 6}, 832 {0, 0}, 833 {0, 0} 834 } 835 }, 836 {1, 0, 3, 0, /* 0x6d */ 837 {{0, 0}, 838 {2, 3}, 839 {5, 6}, 840 {0, 0} 841 } 842 }, 843 {0, 0, 2, 0, /* 0x6e */ 844 {{1, 3}, 845 {5, 6}, 846 {0, 0}, 847 {0, 0} 848 } 849 }, 850 {1, 0, 2, 0, /* 0x6f */ 851 {{0, 3}, 852 {5, 6}, 853 {0, 0}, 854 {0, 0} 855 } 856 }, 857 {0, 0, 1, 0, /* 0x70 */ 858 {{4, 6}, 859 {0, 0}, 860 {0, 0}, 861 {0, 0} 862 } 863 }, 864 {1, 0, 2, 0, /* 0x71 */ 865 {{0, 0}, 866 {4, 6}, 867 {0, 0}, 868 {0, 0} 869 } 870 }, 871 {0, 0, 2, 0, /* 0x72 */ 872 {{1, 1}, 873 {4, 6}, 874 {0, 0}, 875 {0, 0} 876 } 877 }, 878 {1, 0, 2, 0, /* 0x73 */ 879 {{0, 1}, 880 {4, 6}, 881 {0, 0}, 882 {0, 0} 883 } 884 }, 885 {0, 0, 2, 0, /* 0x74 */ 886 {{2, 2}, 887 {4, 6}, 888 {0, 0}, 889 {0, 0} 890 } 891 }, 892 {1, 0, 3, 0, /* 0x75 */ 893 {{0, 0}, 894 {2, 2}, 895 {4, 6}, 896 {0, 0} 897 } 898 }, 899 {0, 0, 2, 0, /* 0x76 */ 900 {{1, 2}, 901 {4, 6}, 902 {0, 0}, 903 {0, 0} 904 } 905 }, 906 {1, 0, 2, 0, /* 0x77 */ 907 {{0, 2}, 908 {4, 6}, 909 {0, 0}, 910 {0, 0} 911 } 912 }, 913 {0, 0, 1, 0, /* 0x78 */ 914 {{3, 6}, 915 {0, 0}, 916 {0, 0}, 917 {0, 0} 918 } 919 }, 920 {1, 0, 2, 0, /* 0x79 */ 921 {{0, 0}, 922 {3, 6}, 923 {0, 0}, 924 {0, 0} 925 } 926 }, 927 {0, 0, 2, 0, /* 0x7a */ 928 {{1, 1}, 929 {3, 6}, 930 {0, 0}, 931 {0, 0} 932 } 933 }, 934 {1, 0, 2, 0, /* 0x7b */ 935 {{0, 1}, 936 {3, 6}, 937 {0, 0}, 938 {0, 0} 939 } 940 }, 941 {0, 0, 1, 0, /* 0x7c */ 942 {{2, 6}, 943 {0, 0}, 944 {0, 0}, 945 {0, 0} 946 } 947 }, 948 {1, 0, 2, 0, /* 0x7d */ 949 {{0, 0}, 950 {2, 6}, 951 {0, 0}, 952 {0, 0} 953 } 954 }, 955 {0, 0, 1, 0, /* 0x7e */ 956 {{1, 6}, 957 {0, 0}, 958 {0, 0}, 959 {0, 0} 960 } 961 }, 962 {1, 0, 1, 0, /* 0x7f */ 963 {{0, 6}, 964 {0, 0}, 965 {0, 0}, 966 {0, 0} 967 } 968 }, 969 {0, 1, 1, 0, /* 0x80 */ 970 {{7, 7}, 971 {0, 0}, 972 {0, 0}, 973 {0, 0} 974 } 975 }, 976 {1, 1, 2, 0, /* 0x81 */ 977 {{0, 0}, 978 {7, 7}, 979 {0, 0}, 980 {0, 0} 981 } 982 }, 983 {0, 1, 2, 0, /* 0x82 */ 984 {{1, 1}, 985 {7, 7}, 986 {0, 0}, 987 {0, 0} 988 } 989 }, 990 {1, 1, 2, 0, /* 0x83 */ 991 {{0, 1}, 992 {7, 7}, 993 {0, 0}, 994 {0, 0} 995 } 996 }, 997 {0, 1, 2, 0, /* 0x84 */ 998 {{2, 2}, 999 {7, 7}, 1000 {0, 0}, 1001 {0, 0} 1002 } 1003 }, 1004 {1, 1, 3, 0, /* 0x85 */ 1005 {{0, 0}, 1006 {2, 2}, 1007 {7, 7}, 1008 {0, 0} 1009 } 1010 }, 1011 {0, 1, 2, 0, /* 0x86 */ 1012 {{1, 2}, 1013 {7, 7}, 1014 {0, 0}, 1015 {0, 0} 1016 } 1017 }, 1018 {1, 1, 2, 0, /* 0x87 */ 1019 {{0, 2}, 1020 {7, 7}, 1021 {0, 0}, 1022 {0, 0} 1023 } 1024 }, 1025 {0, 1, 2, 0, /* 0x88 */ 1026 {{3, 3}, 1027 {7, 7}, 1028 {0, 0}, 1029 {0, 0} 1030 } 1031 }, 1032 {1, 1, 3, 0, /* 0x89 */ 1033 {{0, 0}, 1034 {3, 3}, 1035 {7, 7}, 1036 {0, 0} 1037 } 1038 }, 1039 {0, 1, 3, 0, /* 0x8a */ 1040 {{1, 1}, 1041 {3, 3}, 1042 {7, 7}, 1043 {0, 0} 1044 } 1045 }, 1046 {1, 1, 3, 0, /* 0x8b */ 1047 {{0, 1}, 1048 {3, 3}, 1049 {7, 7}, 1050 {0, 0} 1051 } 1052 }, 1053 {0, 1, 2, 0, /* 0x8c */ 1054 {{2, 3}, 1055 {7, 7}, 1056 {0, 0}, 1057 {0, 0} 1058 } 1059 }, 1060 {1, 1, 3, 0, /* 0x8d */ 1061 {{0, 0}, 1062 {2, 3}, 1063 {7, 7}, 1064 {0, 0} 1065 } 1066 }, 1067 {0, 1, 2, 0, /* 0x8e */ 1068 {{1, 3}, 1069 {7, 7}, 1070 {0, 0}, 1071 {0, 0} 1072 } 1073 }, 1074 {1, 1, 2, 0, /* 0x8f */ 1075 {{0, 3}, 1076 {7, 7}, 1077 {0, 0}, 1078 {0, 0} 1079 } 1080 }, 1081 {0, 1, 2, 0, /* 0x90 */ 1082 {{4, 4}, 1083 {7, 7}, 1084 {0, 0}, 1085 {0, 0} 1086 } 1087 }, 1088 {1, 1, 3, 0, /* 0x91 */ 1089 {{0, 0}, 1090 {4, 4}, 1091 {7, 7}, 1092 {0, 0} 1093 } 1094 }, 1095 {0, 1, 3, 0, /* 0x92 */ 1096 {{1, 1}, 1097 {4, 4}, 1098 {7, 7}, 1099 {0, 0} 1100 } 1101 }, 1102 {1, 1, 3, 0, /* 0x93 */ 1103 {{0, 1}, 1104 {4, 4}, 1105 {7, 7}, 1106 {0, 0} 1107 } 1108 }, 1109 {0, 1, 3, 0, /* 0x94 */ 1110 {{2, 2}, 1111 {4, 4}, 1112 {7, 7}, 1113 {0, 0} 1114 } 1115 }, 1116 {1, 1, 4, 0, /* 0x95 */ 1117 {{0, 0}, 1118 {2, 2}, 1119 {4, 4}, 1120 {7, 7} 1121 } 1122 }, 1123 {0, 1, 3, 0, /* 0x96 */ 1124 {{1, 2}, 1125 {4, 4}, 1126 {7, 7}, 1127 {0, 0} 1128 } 1129 }, 1130 {1, 1, 3, 0, /* 0x97 */ 1131 {{0, 2}, 1132 {4, 4}, 1133 {7, 7}, 1134 {0, 0} 1135 } 1136 }, 1137 {0, 1, 2, 0, /* 0x98 */ 1138 {{3, 4}, 1139 {7, 7}, 1140 {0, 0}, 1141 {0, 0} 1142 } 1143 }, 1144 {1, 1, 3, 0, /* 0x99 */ 1145 {{0, 0}, 1146 {3, 4}, 1147 {7, 7}, 1148 {0, 0} 1149 } 1150 }, 1151 {0, 1, 3, 0, /* 0x9a */ 1152 {{1, 1}, 1153 {3, 4}, 1154 {7, 7}, 1155 {0, 0} 1156 } 1157 }, 1158 {1, 1, 3, 0, /* 0x9b */ 1159 {{0, 1}, 1160 {3, 4}, 1161 {7, 7}, 1162 {0, 0} 1163 } 1164 }, 1165 {0, 1, 2, 0, /* 0x9c */ 1166 {{2, 4}, 1167 {7, 7}, 1168 {0, 0}, 1169 {0, 0} 1170 } 1171 }, 1172 {1, 1, 3, 0, /* 0x9d */ 1173 {{0, 0}, 1174 {2, 4}, 1175 {7, 7}, 1176 {0, 0} 1177 } 1178 }, 1179 {0, 1, 2, 0, /* 0x9e */ 1180 {{1, 4}, 1181 {7, 7}, 1182 {0, 0}, 1183 {0, 0} 1184 } 1185 }, 1186 {1, 1, 2, 0, /* 0x9f */ 1187 {{0, 4}, 1188 {7, 7}, 1189 {0, 0}, 1190 {0, 0} 1191 } 1192 }, 1193 {0, 1, 2, 0, /* 0xa0 */ 1194 {{5, 5}, 1195 {7, 7}, 1196 {0, 0}, 1197 {0, 0} 1198 } 1199 }, 1200 {1, 1, 3, 0, /* 0xa1 */ 1201 {{0, 0}, 1202 {5, 5}, 1203 {7, 7}, 1204 {0, 0} 1205 } 1206 }, 1207 {0, 1, 3, 0, /* 0xa2 */ 1208 {{1, 1}, 1209 {5, 5}, 1210 {7, 7}, 1211 {0, 0} 1212 } 1213 }, 1214 {1, 1, 3, 0, /* 0xa3 */ 1215 {{0, 1}, 1216 {5, 5}, 1217 {7, 7}, 1218 {0, 0} 1219 } 1220 }, 1221 {0, 1, 3, 0, /* 0xa4 */ 1222 {{2, 2}, 1223 {5, 5}, 1224 {7, 7}, 1225 {0, 0} 1226 } 1227 }, 1228 {1, 1, 4, 0, /* 0xa5 */ 1229 {{0, 0}, 1230 {2, 2}, 1231 {5, 5}, 1232 {7, 7} 1233 } 1234 }, 1235 {0, 1, 3, 0, /* 0xa6 */ 1236 {{1, 2}, 1237 {5, 5}, 1238 {7, 7}, 1239 {0, 0} 1240 } 1241 }, 1242 {1, 1, 3, 0, /* 0xa7 */ 1243 {{0, 2}, 1244 {5, 5}, 1245 {7, 7}, 1246 {0, 0} 1247 } 1248 }, 1249 {0, 1, 3, 0, /* 0xa8 */ 1250 {{3, 3}, 1251 {5, 5}, 1252 {7, 7}, 1253 {0, 0} 1254 } 1255 }, 1256 {1, 1, 4, 0, /* 0xa9 */ 1257 {{0, 0}, 1258 {3, 3}, 1259 {5, 5}, 1260 {7, 7} 1261 } 1262 }, 1263 {0, 1, 4, 0, /* 0xaa */ 1264 {{1, 1}, 1265 {3, 3}, 1266 {5, 5}, 1267 {7, 7} 1268 } 1269 }, 1270 {1, 1, 4, 0, /* 0xab */ 1271 {{0, 1}, 1272 {3, 3}, 1273 {5, 5}, 1274 {7, 7} 1275 } 1276 }, 1277 {0, 1, 3, 0, /* 0xac */ 1278 {{2, 3}, 1279 {5, 5}, 1280 {7, 7}, 1281 {0, 0} 1282 } 1283 }, 1284 {1, 1, 4, 0, /* 0xad */ 1285 {{0, 0}, 1286 {2, 3}, 1287 {5, 5}, 1288 {7, 7} 1289 } 1290 }, 1291 {0, 1, 3, 0, /* 0xae */ 1292 {{1, 3}, 1293 {5, 5}, 1294 {7, 7}, 1295 {0, 0} 1296 } 1297 }, 1298 {1, 1, 3, 0, /* 0xaf */ 1299 {{0, 3}, 1300 {5, 5}, 1301 {7, 7}, 1302 {0, 0} 1303 } 1304 }, 1305 {0, 1, 2, 0, /* 0xb0 */ 1306 {{4, 5}, 1307 {7, 7}, 1308 {0, 0}, 1309 {0, 0} 1310 } 1311 }, 1312 {1, 1, 3, 0, /* 0xb1 */ 1313 {{0, 0}, 1314 {4, 5}, 1315 {7, 7}, 1316 {0, 0} 1317 } 1318 }, 1319 {0, 1, 3, 0, /* 0xb2 */ 1320 {{1, 1}, 1321 {4, 5}, 1322 {7, 7}, 1323 {0, 0} 1324 } 1325 }, 1326 {1, 1, 3, 0, /* 0xb3 */ 1327 {{0, 1}, 1328 {4, 5}, 1329 {7, 7}, 1330 {0, 0} 1331 } 1332 }, 1333 {0, 1, 3, 0, /* 0xb4 */ 1334 {{2, 2}, 1335 {4, 5}, 1336 {7, 7}, 1337 {0, 0} 1338 } 1339 }, 1340 {1, 1, 4, 0, /* 0xb5 */ 1341 {{0, 0}, 1342 {2, 2}, 1343 {4, 5}, 1344 {7, 7} 1345 } 1346 }, 1347 {0, 1, 3, 0, /* 0xb6 */ 1348 {{1, 2}, 1349 {4, 5}, 1350 {7, 7}, 1351 {0, 0} 1352 } 1353 }, 1354 {1, 1, 3, 0, /* 0xb7 */ 1355 {{0, 2}, 1356 {4, 5}, 1357 {7, 7}, 1358 {0, 0} 1359 } 1360 }, 1361 {0, 1, 2, 0, /* 0xb8 */ 1362 {{3, 5}, 1363 {7, 7}, 1364 {0, 0}, 1365 {0, 0} 1366 } 1367 }, 1368 {1, 1, 3, 0, /* 0xb9 */ 1369 {{0, 0}, 1370 {3, 5}, 1371 {7, 7}, 1372 {0, 0} 1373 } 1374 }, 1375 {0, 1, 3, 0, /* 0xba */ 1376 {{1, 1}, 1377 {3, 5}, 1378 {7, 7}, 1379 {0, 0} 1380 } 1381 }, 1382 {1, 1, 3, 0, /* 0xbb */ 1383 {{0, 1}, 1384 {3, 5}, 1385 {7, 7}, 1386 {0, 0} 1387 } 1388 }, 1389 {0, 1, 2, 0, /* 0xbc */ 1390 {{2, 5}, 1391 {7, 7}, 1392 {0, 0}, 1393 {0, 0} 1394 } 1395 }, 1396 {1, 1, 3, 0, /* 0xbd */ 1397 {{0, 0}, 1398 {2, 5}, 1399 {7, 7}, 1400 {0, 0} 1401 } 1402 }, 1403 {0, 1, 2, 0, /* 0xbe */ 1404 {{1, 5}, 1405 {7, 7}, 1406 {0, 0}, 1407 {0, 0} 1408 } 1409 }, 1410 {1, 1, 2, 0, /* 0xbf */ 1411 {{0, 5}, 1412 {7, 7}, 1413 {0, 0}, 1414 {0, 0} 1415 } 1416 }, 1417 {0, 1, 1, 0, /* 0xc0 */ 1418 {{6, 7}, 1419 {0, 0}, 1420 {0, 0}, 1421 {0, 0} 1422 } 1423 }, 1424 {1, 1, 2, 0, /* 0xc1 */ 1425 {{0, 0}, 1426 {6, 7}, 1427 {0, 0}, 1428 {0, 0} 1429 } 1430 }, 1431 {0, 1, 2, 0, /* 0xc2 */ 1432 {{1, 1}, 1433 {6, 7}, 1434 {0, 0}, 1435 {0, 0} 1436 } 1437 }, 1438 {1, 1, 2, 0, /* 0xc3 */ 1439 {{0, 1}, 1440 {6, 7}, 1441 {0, 0}, 1442 {0, 0} 1443 } 1444 }, 1445 {0, 1, 2, 0, /* 0xc4 */ 1446 {{2, 2}, 1447 {6, 7}, 1448 {0, 0}, 1449 {0, 0} 1450 } 1451 }, 1452 {1, 1, 3, 0, /* 0xc5 */ 1453 {{0, 0}, 1454 {2, 2}, 1455 {6, 7}, 1456 {0, 0} 1457 } 1458 }, 1459 {0, 1, 2, 0, /* 0xc6 */ 1460 {{1, 2}, 1461 {6, 7}, 1462 {0, 0}, 1463 {0, 0} 1464 } 1465 }, 1466 {1, 1, 2, 0, /* 0xc7 */ 1467 {{0, 2}, 1468 {6, 7}, 1469 {0, 0}, 1470 {0, 0} 1471 } 1472 }, 1473 {0, 1, 2, 0, /* 0xc8 */ 1474 {{3, 3}, 1475 {6, 7}, 1476 {0, 0}, 1477 {0, 0} 1478 } 1479 }, 1480 {1, 1, 3, 0, /* 0xc9 */ 1481 {{0, 0}, 1482 {3, 3}, 1483 {6, 7}, 1484 {0, 0} 1485 } 1486 }, 1487 {0, 1, 3, 0, /* 0xca */ 1488 {{1, 1}, 1489 {3, 3}, 1490 {6, 7}, 1491 {0, 0} 1492 } 1493 }, 1494 {1, 1, 3, 0, /* 0xcb */ 1495 {{0, 1}, 1496 {3, 3}, 1497 {6, 7}, 1498 {0, 0} 1499 } 1500 }, 1501 {0, 1, 2, 0, /* 0xcc */ 1502 {{2, 3}, 1503 {6, 7}, 1504 {0, 0}, 1505 {0, 0} 1506 } 1507 }, 1508 {1, 1, 3, 0, /* 0xcd */ 1509 {{0, 0}, 1510 {2, 3}, 1511 {6, 7}, 1512 {0, 0} 1513 } 1514 }, 1515 {0, 1, 2, 0, /* 0xce */ 1516 {{1, 3}, 1517 {6, 7}, 1518 {0, 0}, 1519 {0, 0} 1520 } 1521 }, 1522 {1, 1, 2, 0, /* 0xcf */ 1523 {{0, 3}, 1524 {6, 7}, 1525 {0, 0}, 1526 {0, 0} 1527 } 1528 }, 1529 {0, 1, 2, 0, /* 0xd0 */ 1530 {{4, 4}, 1531 {6, 7}, 1532 {0, 0}, 1533 {0, 0} 1534 } 1535 }, 1536 {1, 1, 3, 0, /* 0xd1 */ 1537 {{0, 0}, 1538 {4, 4}, 1539 {6, 7}, 1540 {0, 0} 1541 } 1542 }, 1543 {0, 1, 3, 0, /* 0xd2 */ 1544 {{1, 1}, 1545 {4, 4}, 1546 {6, 7}, 1547 {0, 0} 1548 } 1549 }, 1550 {1, 1, 3, 0, /* 0xd3 */ 1551 {{0, 1}, 1552 {4, 4}, 1553 {6, 7}, 1554 {0, 0} 1555 } 1556 }, 1557 {0, 1, 3, 0, /* 0xd4 */ 1558 {{2, 2}, 1559 {4, 4}, 1560 {6, 7}, 1561 {0, 0} 1562 } 1563 }, 1564 {1, 1, 4, 0, /* 0xd5 */ 1565 {{0, 0}, 1566 {2, 2}, 1567 {4, 4}, 1568 {6, 7} 1569 } 1570 }, 1571 {0, 1, 3, 0, /* 0xd6 */ 1572 {{1, 2}, 1573 {4, 4}, 1574 {6, 7}, 1575 {0, 0} 1576 } 1577 }, 1578 {1, 1, 3, 0, /* 0xd7 */ 1579 {{0, 2}, 1580 {4, 4}, 1581 {6, 7}, 1582 {0, 0} 1583 } 1584 }, 1585 {0, 1, 2, 0, /* 0xd8 */ 1586 {{3, 4}, 1587 {6, 7}, 1588 {0, 0}, 1589 {0, 0} 1590 } 1591 }, 1592 {1, 1, 3, 0, /* 0xd9 */ 1593 {{0, 0}, 1594 {3, 4}, 1595 {6, 7}, 1596 {0, 0} 1597 } 1598 }, 1599 {0, 1, 3, 0, /* 0xda */ 1600 {{1, 1}, 1601 {3, 4}, 1602 {6, 7}, 1603 {0, 0} 1604 } 1605 }, 1606 {1, 1, 3, 0, /* 0xdb */ 1607 {{0, 1}, 1608 {3, 4}, 1609 {6, 7}, 1610 {0, 0} 1611 } 1612 }, 1613 {0, 1, 2, 0, /* 0xdc */ 1614 {{2, 4}, 1615 {6, 7}, 1616 {0, 0}, 1617 {0, 0} 1618 } 1619 }, 1620 {1, 1, 3, 0, /* 0xdd */ 1621 {{0, 0}, 1622 {2, 4}, 1623 {6, 7}, 1624 {0, 0} 1625 } 1626 }, 1627 {0, 1, 2, 0, /* 0xde */ 1628 {{1, 4}, 1629 {6, 7}, 1630 {0, 0}, 1631 {0, 0} 1632 } 1633 }, 1634 {1, 1, 2, 0, /* 0xdf */ 1635 {{0, 4}, 1636 {6, 7}, 1637 {0, 0}, 1638 {0, 0} 1639 } 1640 }, 1641 {0, 1, 1, 0, /* 0xe0 */ 1642 {{5, 7}, 1643 {0, 0}, 1644 {0, 0}, 1645 {0, 0} 1646 } 1647 }, 1648 {1, 1, 2, 0, /* 0xe1 */ 1649 {{0, 0}, 1650 {5, 7}, 1651 {0, 0}, 1652 {0, 0} 1653 } 1654 }, 1655 {0, 1, 2, 0, /* 0xe2 */ 1656 {{1, 1}, 1657 {5, 7}, 1658 {0, 0}, 1659 {0, 0} 1660 } 1661 }, 1662 {1, 1, 2, 0, /* 0xe3 */ 1663 {{0, 1}, 1664 {5, 7}, 1665 {0, 0}, 1666 {0, 0} 1667 } 1668 }, 1669 {0, 1, 2, 0, /* 0xe4 */ 1670 {{2, 2}, 1671 {5, 7}, 1672 {0, 0}, 1673 {0, 0} 1674 } 1675 }, 1676 {1, 1, 3, 0, /* 0xe5 */ 1677 {{0, 0}, 1678 {2, 2}, 1679 {5, 7}, 1680 {0, 0} 1681 } 1682 }, 1683 {0, 1, 2, 0, /* 0xe6 */ 1684 {{1, 2}, 1685 {5, 7}, 1686 {0, 0}, 1687 {0, 0} 1688 } 1689 }, 1690 {1, 1, 2, 0, /* 0xe7 */ 1691 {{0, 2}, 1692 {5, 7}, 1693 {0, 0}, 1694 {0, 0} 1695 } 1696 }, 1697 {0, 1, 2, 0, /* 0xe8 */ 1698 {{3, 3}, 1699 {5, 7}, 1700 {0, 0}, 1701 {0, 0} 1702 } 1703 }, 1704 {1, 1, 3, 0, /* 0xe9 */ 1705 {{0, 0}, 1706 {3, 3}, 1707 {5, 7}, 1708 {0, 0} 1709 } 1710 }, 1711 {0, 1, 3, 0, /* 0xea */ 1712 {{1, 1}, 1713 {3, 3}, 1714 {5, 7}, 1715 {0, 0} 1716 } 1717 }, 1718 {1, 1, 3, 0, /* 0xeb */ 1719 {{0, 1}, 1720 {3, 3}, 1721 {5, 7}, 1722 {0, 0} 1723 } 1724 }, 1725 {0, 1, 2, 0, /* 0xec */ 1726 {{2, 3}, 1727 {5, 7}, 1728 {0, 0}, 1729 {0, 0} 1730 } 1731 }, 1732 {1, 1, 3, 0, /* 0xed */ 1733 {{0, 0}, 1734 {2, 3}, 1735 {5, 7}, 1736 {0, 0} 1737 } 1738 }, 1739 {0, 1, 2, 0, /* 0xee */ 1740 {{1, 3}, 1741 {5, 7}, 1742 {0, 0}, 1743 {0, 0} 1744 } 1745 }, 1746 {1, 1, 2, 0, /* 0xef */ 1747 {{0, 3}, 1748 {5, 7}, 1749 {0, 0}, 1750 {0, 0} 1751 } 1752 }, 1753 {0, 1, 1, 0, /* 0xf0 */ 1754 {{4, 7}, 1755 {0, 0}, 1756 {0, 0}, 1757 {0, 0} 1758 } 1759 }, 1760 {1, 1, 2, 0, /* 0xf1 */ 1761 {{0, 0}, 1762 {4, 7}, 1763 {0, 0}, 1764 {0, 0} 1765 } 1766 }, 1767 {0, 1, 2, 0, /* 0xf2 */ 1768 {{1, 1}, 1769 {4, 7}, 1770 {0, 0}, 1771 {0, 0} 1772 } 1773 }, 1774 {1, 1, 2, 0, /* 0xf3 */ 1775 {{0, 1}, 1776 {4, 7}, 1777 {0, 0}, 1778 {0, 0} 1779 } 1780 }, 1781 {0, 1, 2, 0, /* 0xf4 */ 1782 {{2, 2}, 1783 {4, 7}, 1784 {0, 0}, 1785 {0, 0} 1786 } 1787 }, 1788 {1, 1, 3, 0, /* 0xf5 */ 1789 {{0, 0}, 1790 {2, 2}, 1791 {4, 7}, 1792 {0, 0} 1793 } 1794 }, 1795 {0, 1, 2, 0, /* 0xf6 */ 1796 {{1, 2}, 1797 {4, 7}, 1798 {0, 0}, 1799 {0, 0} 1800 } 1801 }, 1802 {1, 1, 2, 0, /* 0xf7 */ 1803 {{0, 2}, 1804 {4, 7}, 1805 {0, 0}, 1806 {0, 0} 1807 } 1808 }, 1809 {0, 1, 1, 0, /* 0xf8 */ 1810 {{3, 7}, 1811 {0, 0}, 1812 {0, 0}, 1813 {0, 0} 1814 } 1815 }, 1816 {1, 1, 2, 0, /* 0xf9 */ 1817 {{0, 0}, 1818 {3, 7}, 1819 {0, 0}, 1820 {0, 0} 1821 } 1822 }, 1823 {0, 1, 2, 0, /* 0xfa */ 1824 {{1, 1}, 1825 {3, 7}, 1826 {0, 0}, 1827 {0, 0} 1828 } 1829 }, 1830 {1, 1, 2, 0, /* 0xfb */ 1831 {{0, 1}, 1832 {3, 7}, 1833 {0, 0}, 1834 {0, 0} 1835 } 1836 }, 1837 {0, 1, 1, 0, /* 0xfc */ 1838 {{2, 7}, 1839 {0, 0}, 1840 {0, 0}, 1841 {0, 0} 1842 } 1843 }, 1844 {1, 1, 2, 0, /* 0xfd */ 1845 {{0, 0}, 1846 {2, 7}, 1847 {0, 0}, 1848 {0, 0} 1849 } 1850 }, 1851 {0, 1, 1, 0, /* 0xfe */ 1852 {{1, 7}, 1853 {0, 0}, 1854 {0, 0}, 1855 {0, 0} 1856 } 1857 }, 1858 {1, 1, 1, 0, /* 0xff */ 1859 {{0, 7}, 1860 {0, 0}, 1861 {0, 0}, 1862 {0, 0} 1863 } 1864 } 1865 }; 1866 1867 1868 int 1869 sctp_is_address_in_scope(struct sctp_ifa *ifa, 1870 struct sctp_scoping *scope, 1871 int do_update) 1872 { 1873 if ((scope->loopback_scope == 0) && 1874 (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) { 1875 /* 1876 * skip loopback if not in scope * 1877 */ 1878 return (0); 1879 } 1880 switch (ifa->address.sa.sa_family) { 1881 #ifdef INET 1882 case AF_INET: 1883 if (scope->ipv4_addr_legal) { 1884 struct sockaddr_in *sin; 1885 1886 sin = &ifa->address.sin; 1887 if (sin->sin_addr.s_addr == 0) { 1888 /* not in scope , unspecified */ 1889 return (0); 1890 } 1891 if ((scope->ipv4_local_scope == 0) && 1892 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1893 /* private address not in scope */ 1894 return (0); 1895 } 1896 } else { 1897 return (0); 1898 } 1899 break; 1900 #endif 1901 #ifdef INET6 1902 case AF_INET6: 1903 if (scope->ipv6_addr_legal) { 1904 struct sockaddr_in6 *sin6; 1905 1906 /* 1907 * Must update the flags, bummer, which means any 1908 * IFA locks must now be applied HERE <-> 1909 */ 1910 if (do_update) { 1911 sctp_gather_internal_ifa_flags(ifa); 1912 } 1913 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 1914 return (0); 1915 } 1916 /* ok to use deprecated addresses? */ 1917 sin6 = &ifa->address.sin6; 1918 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1919 /* skip unspecifed addresses */ 1920 return (0); 1921 } 1922 if ( /* (local_scope == 0) && */ 1923 (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) { 1924 return (0); 1925 } 1926 if ((scope->site_scope == 0) && 1927 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1928 return (0); 1929 } 1930 } else { 1931 return (0); 1932 } 1933 break; 1934 #endif 1935 default: 1936 return (0); 1937 } 1938 return (1); 1939 } 1940 1941 static struct mbuf * 1942 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t *len) 1943 { 1944 #if defined(INET) || defined(INET6) 1945 struct sctp_paramhdr *paramh; 1946 struct mbuf *mret; 1947 uint16_t plen; 1948 #endif 1949 1950 switch (ifa->address.sa.sa_family) { 1951 #ifdef INET 1952 case AF_INET: 1953 plen = (uint16_t)sizeof(struct sctp_ipv4addr_param); 1954 break; 1955 #endif 1956 #ifdef INET6 1957 case AF_INET6: 1958 plen = (uint16_t)sizeof(struct sctp_ipv6addr_param); 1959 break; 1960 #endif 1961 default: 1962 return (m); 1963 } 1964 #if defined(INET) || defined(INET6) 1965 if (M_TRAILINGSPACE(m) >= plen) { 1966 /* easy side we just drop it on the end */ 1967 paramh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m))); 1968 mret = m; 1969 } else { 1970 /* Need more space */ 1971 mret = m; 1972 while (SCTP_BUF_NEXT(mret) != NULL) { 1973 mret = SCTP_BUF_NEXT(mret); 1974 } 1975 SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA); 1976 if (SCTP_BUF_NEXT(mret) == NULL) { 1977 /* We are hosed, can't add more addresses */ 1978 return (m); 1979 } 1980 mret = SCTP_BUF_NEXT(mret); 1981 paramh = mtod(mret, struct sctp_paramhdr *); 1982 } 1983 /* now add the parameter */ 1984 switch (ifa->address.sa.sa_family) { 1985 #ifdef INET 1986 case AF_INET: 1987 { 1988 struct sctp_ipv4addr_param *ipv4p; 1989 struct sockaddr_in *sin; 1990 1991 sin = &ifa->address.sin; 1992 ipv4p = (struct sctp_ipv4addr_param *)paramh; 1993 paramh->param_type = htons(SCTP_IPV4_ADDRESS); 1994 paramh->param_length = htons(plen); 1995 ipv4p->addr = sin->sin_addr.s_addr; 1996 SCTP_BUF_LEN(mret) += plen; 1997 break; 1998 } 1999 #endif 2000 #ifdef INET6 2001 case AF_INET6: 2002 { 2003 struct sctp_ipv6addr_param *ipv6p; 2004 struct sockaddr_in6 *sin6; 2005 2006 sin6 = &ifa->address.sin6; 2007 ipv6p = (struct sctp_ipv6addr_param *)paramh; 2008 paramh->param_type = htons(SCTP_IPV6_ADDRESS); 2009 paramh->param_length = htons(plen); 2010 memcpy(ipv6p->addr, &sin6->sin6_addr, 2011 sizeof(ipv6p->addr)); 2012 /* clear embedded scope in the address */ 2013 in6_clearscope((struct in6_addr *)ipv6p->addr); 2014 SCTP_BUF_LEN(mret) += plen; 2015 break; 2016 } 2017 #endif 2018 default: 2019 return (m); 2020 } 2021 if (len != NULL) { 2022 *len += plen; 2023 } 2024 return (mret); 2025 #endif 2026 } 2027 2028 2029 struct mbuf * 2030 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 2031 struct sctp_scoping *scope, 2032 struct mbuf *m_at, int cnt_inits_to, 2033 uint16_t *padding_len, uint16_t *chunk_len) 2034 { 2035 struct sctp_vrf *vrf = NULL; 2036 int cnt, limit_out = 0, total_count; 2037 uint32_t vrf_id; 2038 2039 vrf_id = inp->def_vrf_id; 2040 SCTP_IPI_ADDR_RLOCK(); 2041 vrf = sctp_find_vrf(vrf_id); 2042 if (vrf == NULL) { 2043 SCTP_IPI_ADDR_RUNLOCK(); 2044 return (m_at); 2045 } 2046 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 2047 struct sctp_ifa *sctp_ifap; 2048 struct sctp_ifn *sctp_ifnp; 2049 2050 cnt = cnt_inits_to; 2051 if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) { 2052 limit_out = 1; 2053 cnt = SCTP_ADDRESS_LIMIT; 2054 goto skip_count; 2055 } 2056 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2057 if ((scope->loopback_scope == 0) && 2058 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2059 /* 2060 * Skip loopback devices if loopback_scope 2061 * not set 2062 */ 2063 continue; 2064 } 2065 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2066 #ifdef INET 2067 if ((sctp_ifap->address.sa.sa_family == AF_INET) && 2068 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2069 &sctp_ifap->address.sin.sin_addr) != 0)) { 2070 continue; 2071 } 2072 #endif 2073 #ifdef INET6 2074 if ((sctp_ifap->address.sa.sa_family == AF_INET6) && 2075 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2076 &sctp_ifap->address.sin6.sin6_addr) != 0)) { 2077 continue; 2078 } 2079 #endif 2080 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2081 continue; 2082 } 2083 if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) { 2084 continue; 2085 } 2086 cnt++; 2087 if (cnt > SCTP_ADDRESS_LIMIT) { 2088 break; 2089 } 2090 } 2091 if (cnt > SCTP_ADDRESS_LIMIT) { 2092 break; 2093 } 2094 } 2095 skip_count: 2096 if (cnt > 1) { 2097 total_count = 0; 2098 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2099 cnt = 0; 2100 if ((scope->loopback_scope == 0) && 2101 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2102 /* 2103 * Skip loopback devices if 2104 * loopback_scope not set 2105 */ 2106 continue; 2107 } 2108 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2109 #ifdef INET 2110 if ((sctp_ifap->address.sa.sa_family == AF_INET) && 2111 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2112 &sctp_ifap->address.sin.sin_addr) != 0)) { 2113 continue; 2114 } 2115 #endif 2116 #ifdef INET6 2117 if ((sctp_ifap->address.sa.sa_family == AF_INET6) && 2118 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2119 &sctp_ifap->address.sin6.sin6_addr) != 0)) { 2120 continue; 2121 } 2122 #endif 2123 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2124 continue; 2125 } 2126 if (sctp_is_address_in_scope(sctp_ifap, 2127 scope, 0) == 0) { 2128 continue; 2129 } 2130 if ((chunk_len != NULL) && 2131 (padding_len != NULL) && 2132 (*padding_len > 0)) { 2133 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2134 SCTP_BUF_LEN(m_at) += *padding_len; 2135 *chunk_len += *padding_len; 2136 *padding_len = 0; 2137 } 2138 m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len); 2139 if (limit_out) { 2140 cnt++; 2141 total_count++; 2142 if (cnt >= 2) { 2143 /* 2144 * two from each 2145 * address 2146 */ 2147 break; 2148 } 2149 if (total_count > SCTP_ADDRESS_LIMIT) { 2150 /* No more addresses */ 2151 break; 2152 } 2153 } 2154 } 2155 } 2156 } 2157 } else { 2158 struct sctp_laddr *laddr; 2159 2160 cnt = cnt_inits_to; 2161 /* First, how many ? */ 2162 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2163 if (laddr->ifa == NULL) { 2164 continue; 2165 } 2166 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) 2167 /* 2168 * Address being deleted by the system, dont 2169 * list. 2170 */ 2171 continue; 2172 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2173 /* 2174 * Address being deleted on this ep don't 2175 * list. 2176 */ 2177 continue; 2178 } 2179 if (sctp_is_address_in_scope(laddr->ifa, 2180 scope, 1) == 0) { 2181 continue; 2182 } 2183 cnt++; 2184 } 2185 /* 2186 * To get through a NAT we only list addresses if we have 2187 * more than one. That way if you just bind a single address 2188 * we let the source of the init dictate our address. 2189 */ 2190 if (cnt > 1) { 2191 cnt = cnt_inits_to; 2192 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2193 if (laddr->ifa == NULL) { 2194 continue; 2195 } 2196 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) { 2197 continue; 2198 } 2199 if (sctp_is_address_in_scope(laddr->ifa, 2200 scope, 0) == 0) { 2201 continue; 2202 } 2203 if ((chunk_len != NULL) && 2204 (padding_len != NULL) && 2205 (*padding_len > 0)) { 2206 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2207 SCTP_BUF_LEN(m_at) += *padding_len; 2208 *chunk_len += *padding_len; 2209 *padding_len = 0; 2210 } 2211 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len); 2212 cnt++; 2213 if (cnt >= SCTP_ADDRESS_LIMIT) { 2214 break; 2215 } 2216 } 2217 } 2218 } 2219 SCTP_IPI_ADDR_RUNLOCK(); 2220 return (m_at); 2221 } 2222 2223 static struct sctp_ifa * 2224 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa, 2225 uint8_t dest_is_loop, 2226 uint8_t dest_is_priv, 2227 sa_family_t fam) 2228 { 2229 uint8_t dest_is_global = 0; 2230 2231 /* dest_is_priv is true if destination is a private address */ 2232 /* dest_is_loop is true if destination is a loopback addresses */ 2233 2234 /** 2235 * Here we determine if its a preferred address. A preferred address 2236 * means it is the same scope or higher scope then the destination. 2237 * L = loopback, P = private, G = global 2238 * ----------------------------------------- 2239 * src | dest | result 2240 * ---------------------------------------- 2241 * L | L | yes 2242 * ----------------------------------------- 2243 * P | L | yes-v4 no-v6 2244 * ----------------------------------------- 2245 * G | L | yes-v4 no-v6 2246 * ----------------------------------------- 2247 * L | P | no 2248 * ----------------------------------------- 2249 * P | P | yes 2250 * ----------------------------------------- 2251 * G | P | no 2252 * ----------------------------------------- 2253 * L | G | no 2254 * ----------------------------------------- 2255 * P | G | no 2256 * ----------------------------------------- 2257 * G | G | yes 2258 * ----------------------------------------- 2259 */ 2260 2261 if (ifa->address.sa.sa_family != fam) { 2262 /* forget mis-matched family */ 2263 return (NULL); 2264 } 2265 if ((dest_is_priv == 0) && (dest_is_loop == 0)) { 2266 dest_is_global = 1; 2267 } 2268 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:"); 2269 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa); 2270 /* Ok the address may be ok */ 2271 #ifdef INET6 2272 if (fam == AF_INET6) { 2273 /* ok to use deprecated addresses? no lets not! */ 2274 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2275 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n"); 2276 return (NULL); 2277 } 2278 if (ifa->src_is_priv && !ifa->src_is_loop) { 2279 if (dest_is_loop) { 2280 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n"); 2281 return (NULL); 2282 } 2283 } 2284 if (ifa->src_is_glob) { 2285 if (dest_is_loop) { 2286 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n"); 2287 return (NULL); 2288 } 2289 } 2290 } 2291 #endif 2292 /* 2293 * Now that we know what is what, implement or table this could in 2294 * theory be done slicker (it used to be), but this is 2295 * straightforward and easier to validate :-) 2296 */ 2297 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n", 2298 ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob); 2299 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n", 2300 dest_is_loop, dest_is_priv, dest_is_global); 2301 2302 if ((ifa->src_is_loop) && (dest_is_priv)) { 2303 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n"); 2304 return (NULL); 2305 } 2306 if ((ifa->src_is_glob) && (dest_is_priv)) { 2307 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n"); 2308 return (NULL); 2309 } 2310 if ((ifa->src_is_loop) && (dest_is_global)) { 2311 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n"); 2312 return (NULL); 2313 } 2314 if ((ifa->src_is_priv) && (dest_is_global)) { 2315 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n"); 2316 return (NULL); 2317 } 2318 SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n"); 2319 /* its a preferred address */ 2320 return (ifa); 2321 } 2322 2323 static struct sctp_ifa * 2324 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, 2325 uint8_t dest_is_loop, 2326 uint8_t dest_is_priv, 2327 sa_family_t fam) 2328 { 2329 uint8_t dest_is_global = 0; 2330 2331 /** 2332 * Here we determine if its a acceptable address. A acceptable 2333 * address means it is the same scope or higher scope but we can 2334 * allow for NAT which means its ok to have a global dest and a 2335 * private src. 2336 * 2337 * L = loopback, P = private, G = global 2338 * ----------------------------------------- 2339 * src | dest | result 2340 * ----------------------------------------- 2341 * L | L | yes 2342 * ----------------------------------------- 2343 * P | L | yes-v4 no-v6 2344 * ----------------------------------------- 2345 * G | L | yes 2346 * ----------------------------------------- 2347 * L | P | no 2348 * ----------------------------------------- 2349 * P | P | yes 2350 * ----------------------------------------- 2351 * G | P | yes - May not work 2352 * ----------------------------------------- 2353 * L | G | no 2354 * ----------------------------------------- 2355 * P | G | yes - May not work 2356 * ----------------------------------------- 2357 * G | G | yes 2358 * ----------------------------------------- 2359 */ 2360 2361 if (ifa->address.sa.sa_family != fam) { 2362 /* forget non matching family */ 2363 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n", 2364 ifa->address.sa.sa_family, fam); 2365 return (NULL); 2366 } 2367 /* Ok the address may be ok */ 2368 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa); 2369 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n", 2370 dest_is_loop, dest_is_priv); 2371 if ((dest_is_loop == 0) && (dest_is_priv == 0)) { 2372 dest_is_global = 1; 2373 } 2374 #ifdef INET6 2375 if (fam == AF_INET6) { 2376 /* ok to use deprecated addresses? */ 2377 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2378 return (NULL); 2379 } 2380 if (ifa->src_is_priv) { 2381 /* Special case, linklocal to loop */ 2382 if (dest_is_loop) 2383 return (NULL); 2384 } 2385 } 2386 #endif 2387 /* 2388 * Now that we know what is what, implement our table. This could in 2389 * theory be done slicker (it used to be), but this is 2390 * straightforward and easier to validate :-) 2391 */ 2392 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n", 2393 ifa->src_is_loop, 2394 dest_is_priv); 2395 if ((ifa->src_is_loop == 1) && (dest_is_priv)) { 2396 return (NULL); 2397 } 2398 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n", 2399 ifa->src_is_loop, 2400 dest_is_global); 2401 if ((ifa->src_is_loop == 1) && (dest_is_global)) { 2402 return (NULL); 2403 } 2404 SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n"); 2405 /* its an acceptable address */ 2406 return (ifa); 2407 } 2408 2409 int 2410 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa) 2411 { 2412 struct sctp_laddr *laddr; 2413 2414 if (stcb == NULL) { 2415 /* There are no restrictions, no TCB :-) */ 2416 return (0); 2417 } 2418 LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) { 2419 if (laddr->ifa == NULL) { 2420 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2421 __func__); 2422 continue; 2423 } 2424 if (laddr->ifa == ifa) { 2425 /* Yes it is on the list */ 2426 return (1); 2427 } 2428 } 2429 return (0); 2430 } 2431 2432 2433 int 2434 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa) 2435 { 2436 struct sctp_laddr *laddr; 2437 2438 if (ifa == NULL) 2439 return (0); 2440 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2441 if (laddr->ifa == NULL) { 2442 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2443 __func__); 2444 continue; 2445 } 2446 if ((laddr->ifa == ifa) && laddr->action == 0) 2447 /* same pointer */ 2448 return (1); 2449 } 2450 return (0); 2451 } 2452 2453 2454 2455 static struct sctp_ifa * 2456 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp, 2457 sctp_route_t *ro, 2458 uint32_t vrf_id, 2459 int non_asoc_addr_ok, 2460 uint8_t dest_is_priv, 2461 uint8_t dest_is_loop, 2462 sa_family_t fam) 2463 { 2464 struct sctp_laddr *laddr, *starting_point; 2465 void *ifn; 2466 int resettotop = 0; 2467 struct sctp_ifn *sctp_ifn; 2468 struct sctp_ifa *sctp_ifa, *sifa; 2469 struct sctp_vrf *vrf; 2470 uint32_t ifn_index; 2471 2472 vrf = sctp_find_vrf(vrf_id); 2473 if (vrf == NULL) 2474 return (NULL); 2475 2476 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2477 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2478 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2479 /* 2480 * first question, is the ifn we will emit on in our list, if so, we 2481 * want such an address. Note that we first looked for a preferred 2482 * address. 2483 */ 2484 if (sctp_ifn) { 2485 /* is a preferred one on the interface we route out? */ 2486 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2487 #ifdef INET 2488 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2489 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2490 &sctp_ifa->address.sin.sin_addr) != 0)) { 2491 continue; 2492 } 2493 #endif 2494 #ifdef INET6 2495 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2496 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2497 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2498 continue; 2499 } 2500 #endif 2501 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2502 (non_asoc_addr_ok == 0)) 2503 continue; 2504 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, 2505 dest_is_loop, 2506 dest_is_priv, fam); 2507 if (sifa == NULL) 2508 continue; 2509 if (sctp_is_addr_in_ep(inp, sifa)) { 2510 atomic_add_int(&sifa->refcount, 1); 2511 return (sifa); 2512 } 2513 } 2514 } 2515 /* 2516 * ok, now we now need to find one on the list of the addresses. We 2517 * can't get one on the emitting interface so let's find first a 2518 * preferred one. If not that an acceptable one otherwise... we 2519 * return NULL. 2520 */ 2521 starting_point = inp->next_addr_touse; 2522 once_again: 2523 if (inp->next_addr_touse == NULL) { 2524 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2525 resettotop = 1; 2526 } 2527 for (laddr = inp->next_addr_touse; laddr; 2528 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2529 if (laddr->ifa == NULL) { 2530 /* address has been removed */ 2531 continue; 2532 } 2533 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2534 /* address is being deleted */ 2535 continue; 2536 } 2537 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, 2538 dest_is_priv, fam); 2539 if (sifa == NULL) 2540 continue; 2541 atomic_add_int(&sifa->refcount, 1); 2542 return (sifa); 2543 } 2544 if (resettotop == 0) { 2545 inp->next_addr_touse = NULL; 2546 goto once_again; 2547 } 2548 inp->next_addr_touse = starting_point; 2549 resettotop = 0; 2550 once_again_too: 2551 if (inp->next_addr_touse == NULL) { 2552 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2553 resettotop = 1; 2554 } 2555 /* ok, what about an acceptable address in the inp */ 2556 for (laddr = inp->next_addr_touse; laddr; 2557 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2558 if (laddr->ifa == NULL) { 2559 /* address has been removed */ 2560 continue; 2561 } 2562 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2563 /* address is being deleted */ 2564 continue; 2565 } 2566 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2567 dest_is_priv, fam); 2568 if (sifa == NULL) 2569 continue; 2570 atomic_add_int(&sifa->refcount, 1); 2571 return (sifa); 2572 } 2573 if (resettotop == 0) { 2574 inp->next_addr_touse = NULL; 2575 goto once_again_too; 2576 } 2577 /* 2578 * no address bound can be a source for the destination we are in 2579 * trouble 2580 */ 2581 return (NULL); 2582 } 2583 2584 2585 2586 static struct sctp_ifa * 2587 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp, 2588 struct sctp_tcb *stcb, 2589 sctp_route_t *ro, 2590 uint32_t vrf_id, 2591 uint8_t dest_is_priv, 2592 uint8_t dest_is_loop, 2593 int non_asoc_addr_ok, 2594 sa_family_t fam) 2595 { 2596 struct sctp_laddr *laddr, *starting_point; 2597 void *ifn; 2598 struct sctp_ifn *sctp_ifn; 2599 struct sctp_ifa *sctp_ifa, *sifa; 2600 uint8_t start_at_beginning = 0; 2601 struct sctp_vrf *vrf; 2602 uint32_t ifn_index; 2603 2604 /* 2605 * first question, is the ifn we will emit on in our list, if so, we 2606 * want that one. 2607 */ 2608 vrf = sctp_find_vrf(vrf_id); 2609 if (vrf == NULL) 2610 return (NULL); 2611 2612 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2613 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2614 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2615 2616 /* 2617 * first question, is the ifn we will emit on in our list? If so, 2618 * we want that one. First we look for a preferred. Second, we go 2619 * for an acceptable. 2620 */ 2621 if (sctp_ifn) { 2622 /* first try for a preferred address on the ep */ 2623 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2624 #ifdef INET 2625 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2626 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2627 &sctp_ifa->address.sin.sin_addr) != 0)) { 2628 continue; 2629 } 2630 #endif 2631 #ifdef INET6 2632 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2633 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2634 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2635 continue; 2636 } 2637 #endif 2638 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2639 continue; 2640 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2641 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2642 if (sifa == NULL) 2643 continue; 2644 if (((non_asoc_addr_ok == 0) && 2645 (sctp_is_addr_restricted(stcb, sifa))) || 2646 (non_asoc_addr_ok && 2647 (sctp_is_addr_restricted(stcb, sifa)) && 2648 (!sctp_is_addr_pending(stcb, sifa)))) { 2649 /* on the no-no list */ 2650 continue; 2651 } 2652 atomic_add_int(&sifa->refcount, 1); 2653 return (sifa); 2654 } 2655 } 2656 /* next try for an acceptable address on the ep */ 2657 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2658 #ifdef INET 2659 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2660 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2661 &sctp_ifa->address.sin.sin_addr) != 0)) { 2662 continue; 2663 } 2664 #endif 2665 #ifdef INET6 2666 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2667 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2668 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2669 continue; 2670 } 2671 #endif 2672 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2673 continue; 2674 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2675 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2676 if (sifa == NULL) 2677 continue; 2678 if (((non_asoc_addr_ok == 0) && 2679 (sctp_is_addr_restricted(stcb, sifa))) || 2680 (non_asoc_addr_ok && 2681 (sctp_is_addr_restricted(stcb, sifa)) && 2682 (!sctp_is_addr_pending(stcb, sifa)))) { 2683 /* on the no-no list */ 2684 continue; 2685 } 2686 atomic_add_int(&sifa->refcount, 1); 2687 return (sifa); 2688 } 2689 } 2690 2691 } 2692 /* 2693 * if we can't find one like that then we must look at all addresses 2694 * bound to pick one at first preferable then secondly acceptable. 2695 */ 2696 starting_point = stcb->asoc.last_used_address; 2697 sctp_from_the_top: 2698 if (stcb->asoc.last_used_address == NULL) { 2699 start_at_beginning = 1; 2700 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2701 } 2702 /* search beginning with the last used address */ 2703 for (laddr = stcb->asoc.last_used_address; laddr; 2704 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2705 if (laddr->ifa == NULL) { 2706 /* address has been removed */ 2707 continue; 2708 } 2709 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2710 /* address is being deleted */ 2711 continue; 2712 } 2713 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam); 2714 if (sifa == NULL) 2715 continue; 2716 if (((non_asoc_addr_ok == 0) && 2717 (sctp_is_addr_restricted(stcb, sifa))) || 2718 (non_asoc_addr_ok && 2719 (sctp_is_addr_restricted(stcb, sifa)) && 2720 (!sctp_is_addr_pending(stcb, sifa)))) { 2721 /* on the no-no list */ 2722 continue; 2723 } 2724 stcb->asoc.last_used_address = laddr; 2725 atomic_add_int(&sifa->refcount, 1); 2726 return (sifa); 2727 } 2728 if (start_at_beginning == 0) { 2729 stcb->asoc.last_used_address = NULL; 2730 goto sctp_from_the_top; 2731 } 2732 /* now try for any higher scope than the destination */ 2733 stcb->asoc.last_used_address = starting_point; 2734 start_at_beginning = 0; 2735 sctp_from_the_top2: 2736 if (stcb->asoc.last_used_address == NULL) { 2737 start_at_beginning = 1; 2738 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2739 } 2740 /* search beginning with the last used address */ 2741 for (laddr = stcb->asoc.last_used_address; laddr; 2742 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2743 if (laddr->ifa == NULL) { 2744 /* address has been removed */ 2745 continue; 2746 } 2747 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2748 /* address is being deleted */ 2749 continue; 2750 } 2751 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2752 dest_is_priv, fam); 2753 if (sifa == NULL) 2754 continue; 2755 if (((non_asoc_addr_ok == 0) && 2756 (sctp_is_addr_restricted(stcb, sifa))) || 2757 (non_asoc_addr_ok && 2758 (sctp_is_addr_restricted(stcb, sifa)) && 2759 (!sctp_is_addr_pending(stcb, sifa)))) { 2760 /* on the no-no list */ 2761 continue; 2762 } 2763 stcb->asoc.last_used_address = laddr; 2764 atomic_add_int(&sifa->refcount, 1); 2765 return (sifa); 2766 } 2767 if (start_at_beginning == 0) { 2768 stcb->asoc.last_used_address = NULL; 2769 goto sctp_from_the_top2; 2770 } 2771 return (NULL); 2772 } 2773 2774 static struct sctp_ifa * 2775 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn, 2776 struct sctp_inpcb *inp, 2777 struct sctp_tcb *stcb, 2778 int non_asoc_addr_ok, 2779 uint8_t dest_is_loop, 2780 uint8_t dest_is_priv, 2781 int addr_wanted, 2782 sa_family_t fam, 2783 sctp_route_t *ro 2784 ) 2785 { 2786 struct sctp_ifa *ifa, *sifa; 2787 int num_eligible_addr = 0; 2788 #ifdef INET6 2789 struct sockaddr_in6 sin6, lsa6; 2790 2791 if (fam == AF_INET6) { 2792 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6)); 2793 (void)sa6_recoverscope(&sin6); 2794 } 2795 #endif /* INET6 */ 2796 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2797 #ifdef INET 2798 if ((ifa->address.sa.sa_family == AF_INET) && 2799 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2800 &ifa->address.sin.sin_addr) != 0)) { 2801 continue; 2802 } 2803 #endif 2804 #ifdef INET6 2805 if ((ifa->address.sa.sa_family == AF_INET6) && 2806 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2807 &ifa->address.sin6.sin6_addr) != 0)) { 2808 continue; 2809 } 2810 #endif 2811 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2812 (non_asoc_addr_ok == 0)) 2813 continue; 2814 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2815 dest_is_priv, fam); 2816 if (sifa == NULL) 2817 continue; 2818 #ifdef INET6 2819 if (fam == AF_INET6 && 2820 dest_is_loop && 2821 sifa->src_is_loop && sifa->src_is_priv) { 2822 /* 2823 * don't allow fe80::1 to be a src on loop ::1, we 2824 * don't list it to the peer so we will get an 2825 * abort. 2826 */ 2827 continue; 2828 } 2829 if (fam == AF_INET6 && 2830 IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) && 2831 IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) { 2832 /* 2833 * link-local <-> link-local must belong to the same 2834 * scope. 2835 */ 2836 memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6)); 2837 (void)sa6_recoverscope(&lsa6); 2838 if (sin6.sin6_scope_id != lsa6.sin6_scope_id) { 2839 continue; 2840 } 2841 } 2842 #endif /* INET6 */ 2843 2844 /* 2845 * Check if the IPv6 address matches to next-hop. In the 2846 * mobile case, old IPv6 address may be not deleted from the 2847 * interface. Then, the interface has previous and new 2848 * addresses. We should use one corresponding to the 2849 * next-hop. (by micchie) 2850 */ 2851 #ifdef INET6 2852 if (stcb && fam == AF_INET6 && 2853 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2854 if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro) 2855 == 0) { 2856 continue; 2857 } 2858 } 2859 #endif 2860 #ifdef INET 2861 /* Avoid topologically incorrect IPv4 address */ 2862 if (stcb && fam == AF_INET && 2863 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2864 if (sctp_v4src_match_nexthop(sifa, ro) == 0) { 2865 continue; 2866 } 2867 } 2868 #endif 2869 if (stcb) { 2870 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2871 continue; 2872 } 2873 if (((non_asoc_addr_ok == 0) && 2874 (sctp_is_addr_restricted(stcb, sifa))) || 2875 (non_asoc_addr_ok && 2876 (sctp_is_addr_restricted(stcb, sifa)) && 2877 (!sctp_is_addr_pending(stcb, sifa)))) { 2878 /* 2879 * It is restricted for some reason.. 2880 * probably not yet added. 2881 */ 2882 continue; 2883 } 2884 } 2885 if (num_eligible_addr >= addr_wanted) { 2886 return (sifa); 2887 } 2888 num_eligible_addr++; 2889 } 2890 return (NULL); 2891 } 2892 2893 2894 static int 2895 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn, 2896 struct sctp_inpcb *inp, 2897 struct sctp_tcb *stcb, 2898 int non_asoc_addr_ok, 2899 uint8_t dest_is_loop, 2900 uint8_t dest_is_priv, 2901 sa_family_t fam) 2902 { 2903 struct sctp_ifa *ifa, *sifa; 2904 int num_eligible_addr = 0; 2905 2906 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2907 #ifdef INET 2908 if ((ifa->address.sa.sa_family == AF_INET) && 2909 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2910 &ifa->address.sin.sin_addr) != 0)) { 2911 continue; 2912 } 2913 #endif 2914 #ifdef INET6 2915 if ((ifa->address.sa.sa_family == AF_INET6) && 2916 (stcb != NULL) && 2917 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2918 &ifa->address.sin6.sin6_addr) != 0)) { 2919 continue; 2920 } 2921 #endif 2922 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2923 (non_asoc_addr_ok == 0)) { 2924 continue; 2925 } 2926 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2927 dest_is_priv, fam); 2928 if (sifa == NULL) { 2929 continue; 2930 } 2931 if (stcb) { 2932 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2933 continue; 2934 } 2935 if (((non_asoc_addr_ok == 0) && 2936 (sctp_is_addr_restricted(stcb, sifa))) || 2937 (non_asoc_addr_ok && 2938 (sctp_is_addr_restricted(stcb, sifa)) && 2939 (!sctp_is_addr_pending(stcb, sifa)))) { 2940 /* 2941 * It is restricted for some reason.. 2942 * probably not yet added. 2943 */ 2944 continue; 2945 } 2946 } 2947 num_eligible_addr++; 2948 } 2949 return (num_eligible_addr); 2950 } 2951 2952 static struct sctp_ifa * 2953 sctp_choose_boundall(struct sctp_inpcb *inp, 2954 struct sctp_tcb *stcb, 2955 struct sctp_nets *net, 2956 sctp_route_t *ro, 2957 uint32_t vrf_id, 2958 uint8_t dest_is_priv, 2959 uint8_t dest_is_loop, 2960 int non_asoc_addr_ok, 2961 sa_family_t fam) 2962 { 2963 int cur_addr_num = 0, num_preferred = 0; 2964 void *ifn; 2965 struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn; 2966 struct sctp_ifa *sctp_ifa, *sifa; 2967 uint32_t ifn_index; 2968 struct sctp_vrf *vrf; 2969 #ifdef INET 2970 int retried = 0; 2971 #endif 2972 2973 /*- 2974 * For boundall we can use any address in the association. 2975 * If non_asoc_addr_ok is set we can use any address (at least in 2976 * theory). So we look for preferred addresses first. If we find one, 2977 * we use it. Otherwise we next try to get an address on the 2978 * interface, which we should be able to do (unless non_asoc_addr_ok 2979 * is false and we are routed out that way). In these cases where we 2980 * can't use the address of the interface we go through all the 2981 * ifn's looking for an address we can use and fill that in. Punting 2982 * means we send back address 0, which will probably cause problems 2983 * actually since then IP will fill in the address of the route ifn, 2984 * which means we probably already rejected it.. i.e. here comes an 2985 * abort :-<. 2986 */ 2987 vrf = sctp_find_vrf(vrf_id); 2988 if (vrf == NULL) 2989 return (NULL); 2990 2991 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2992 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2993 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index); 2994 emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2995 if (sctp_ifn == NULL) { 2996 /* ?? We don't have this guy ?? */ 2997 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n"); 2998 goto bound_all_plan_b; 2999 } 3000 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n", 3001 ifn_index, sctp_ifn->ifn_name); 3002 3003 if (net) { 3004 cur_addr_num = net->indx_of_eligible_next_to_use; 3005 } 3006 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, 3007 inp, stcb, 3008 non_asoc_addr_ok, 3009 dest_is_loop, 3010 dest_is_priv, fam); 3011 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n", 3012 num_preferred, sctp_ifn->ifn_name); 3013 if (num_preferred == 0) { 3014 /* 3015 * no eligible addresses, we must use some other interface 3016 * address if we can find one. 3017 */ 3018 goto bound_all_plan_b; 3019 } 3020 /* 3021 * Ok we have num_eligible_addr set with how many we can use, this 3022 * may vary from call to call due to addresses being deprecated 3023 * etc.. 3024 */ 3025 if (cur_addr_num >= num_preferred) { 3026 cur_addr_num = 0; 3027 } 3028 /* 3029 * select the nth address from the list (where cur_addr_num is the 3030 * nth) and 0 is the first one, 1 is the second one etc... 3031 */ 3032 SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num); 3033 3034 sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop, 3035 dest_is_priv, cur_addr_num, fam, ro); 3036 3037 /* if sctp_ifa is NULL something changed??, fall to plan b. */ 3038 if (sctp_ifa) { 3039 atomic_add_int(&sctp_ifa->refcount, 1); 3040 if (net) { 3041 /* save off where the next one we will want */ 3042 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3043 } 3044 return (sctp_ifa); 3045 } 3046 /* 3047 * plan_b: Look at all interfaces and find a preferred address. If 3048 * no preferred fall through to plan_c. 3049 */ 3050 bound_all_plan_b: 3051 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n"); 3052 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3053 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n", 3054 sctp_ifn->ifn_name); 3055 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3056 /* wrong base scope */ 3057 SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n"); 3058 continue; 3059 } 3060 if ((sctp_ifn == looked_at) && looked_at) { 3061 /* already looked at this guy */ 3062 SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n"); 3063 continue; 3064 } 3065 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, 3066 dest_is_loop, dest_is_priv, fam); 3067 SCTPDBG(SCTP_DEBUG_OUTPUT2, 3068 "Found ifn:%p %d preferred source addresses\n", 3069 ifn, num_preferred); 3070 if (num_preferred == 0) { 3071 /* None on this interface. */ 3072 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No preferred -- skipping to next\n"); 3073 continue; 3074 } 3075 SCTPDBG(SCTP_DEBUG_OUTPUT2, 3076 "num preferred:%d on interface:%p cur_addr_num:%d\n", 3077 num_preferred, (void *)sctp_ifn, cur_addr_num); 3078 3079 /* 3080 * Ok we have num_eligible_addr set with how many we can 3081 * use, this may vary from call to call due to addresses 3082 * being deprecated etc.. 3083 */ 3084 if (cur_addr_num >= num_preferred) { 3085 cur_addr_num = 0; 3086 } 3087 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop, 3088 dest_is_priv, cur_addr_num, fam, ro); 3089 if (sifa == NULL) 3090 continue; 3091 if (net) { 3092 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3093 SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n", 3094 cur_addr_num); 3095 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:"); 3096 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 3097 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:"); 3098 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa); 3099 } 3100 atomic_add_int(&sifa->refcount, 1); 3101 return (sifa); 3102 } 3103 #ifdef INET 3104 again_with_private_addresses_allowed: 3105 #endif 3106 /* plan_c: do we have an acceptable address on the emit interface */ 3107 sifa = NULL; 3108 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n"); 3109 if (emit_ifn == NULL) { 3110 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n"); 3111 goto plan_d; 3112 } 3113 LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) { 3114 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa); 3115 #ifdef INET 3116 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3117 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3118 &sctp_ifa->address.sin.sin_addr) != 0)) { 3119 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n"); 3120 continue; 3121 } 3122 #endif 3123 #ifdef INET6 3124 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3125 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3126 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3127 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n"); 3128 continue; 3129 } 3130 #endif 3131 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3132 (non_asoc_addr_ok == 0)) { 3133 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n"); 3134 continue; 3135 } 3136 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, 3137 dest_is_priv, fam); 3138 if (sifa == NULL) { 3139 SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n"); 3140 continue; 3141 } 3142 if (stcb) { 3143 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3144 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n"); 3145 sifa = NULL; 3146 continue; 3147 } 3148 if (((non_asoc_addr_ok == 0) && 3149 (sctp_is_addr_restricted(stcb, sifa))) || 3150 (non_asoc_addr_ok && 3151 (sctp_is_addr_restricted(stcb, sifa)) && 3152 (!sctp_is_addr_pending(stcb, sifa)))) { 3153 /* 3154 * It is restricted for some reason.. 3155 * probably not yet added. 3156 */ 3157 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its restricted\n"); 3158 sifa = NULL; 3159 continue; 3160 } 3161 } 3162 atomic_add_int(&sifa->refcount, 1); 3163 goto out; 3164 } 3165 plan_d: 3166 /* 3167 * plan_d: We are in trouble. No preferred address on the emit 3168 * interface. And not even a preferred address on all interfaces. Go 3169 * out and see if we can find an acceptable address somewhere 3170 * amongst all interfaces. 3171 */ 3172 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at); 3173 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3174 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3175 /* wrong base scope */ 3176 continue; 3177 } 3178 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3179 #ifdef INET 3180 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3181 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3182 &sctp_ifa->address.sin.sin_addr) != 0)) { 3183 continue; 3184 } 3185 #endif 3186 #ifdef INET6 3187 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3188 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3189 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3190 continue; 3191 } 3192 #endif 3193 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3194 (non_asoc_addr_ok == 0)) 3195 continue; 3196 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3197 dest_is_loop, 3198 dest_is_priv, fam); 3199 if (sifa == NULL) 3200 continue; 3201 if (stcb) { 3202 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3203 sifa = NULL; 3204 continue; 3205 } 3206 if (((non_asoc_addr_ok == 0) && 3207 (sctp_is_addr_restricted(stcb, sifa))) || 3208 (non_asoc_addr_ok && 3209 (sctp_is_addr_restricted(stcb, sifa)) && 3210 (!sctp_is_addr_pending(stcb, sifa)))) { 3211 /* 3212 * It is restricted for some 3213 * reason.. probably not yet added. 3214 */ 3215 sifa = NULL; 3216 continue; 3217 } 3218 } 3219 goto out; 3220 } 3221 } 3222 #ifdef INET 3223 if (stcb) { 3224 if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) { 3225 stcb->asoc.scope.ipv4_local_scope = 1; 3226 retried = 1; 3227 goto again_with_private_addresses_allowed; 3228 } else if (retried == 1) { 3229 stcb->asoc.scope.ipv4_local_scope = 0; 3230 } 3231 } 3232 #endif 3233 out: 3234 #ifdef INET 3235 if (sifa) { 3236 if (retried == 1) { 3237 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3238 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3239 /* wrong base scope */ 3240 continue; 3241 } 3242 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3243 struct sctp_ifa *tmp_sifa; 3244 3245 #ifdef INET 3246 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3247 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3248 &sctp_ifa->address.sin.sin_addr) != 0)) { 3249 continue; 3250 } 3251 #endif 3252 #ifdef INET6 3253 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3254 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3255 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3256 continue; 3257 } 3258 #endif 3259 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3260 (non_asoc_addr_ok == 0)) 3261 continue; 3262 tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3263 dest_is_loop, 3264 dest_is_priv, fam); 3265 if (tmp_sifa == NULL) { 3266 continue; 3267 } 3268 if (tmp_sifa == sifa) { 3269 continue; 3270 } 3271 if (stcb) { 3272 if (sctp_is_address_in_scope(tmp_sifa, 3273 &stcb->asoc.scope, 0) == 0) { 3274 continue; 3275 } 3276 if (((non_asoc_addr_ok == 0) && 3277 (sctp_is_addr_restricted(stcb, tmp_sifa))) || 3278 (non_asoc_addr_ok && 3279 (sctp_is_addr_restricted(stcb, tmp_sifa)) && 3280 (!sctp_is_addr_pending(stcb, tmp_sifa)))) { 3281 /* 3282 * It is restricted 3283 * for some reason.. 3284 * probably not yet 3285 * added. 3286 */ 3287 continue; 3288 } 3289 } 3290 if ((tmp_sifa->address.sin.sin_family == AF_INET) && 3291 (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) { 3292 sctp_add_local_addr_restricted(stcb, tmp_sifa); 3293 } 3294 } 3295 } 3296 } 3297 atomic_add_int(&sifa->refcount, 1); 3298 } 3299 #endif 3300 return (sifa); 3301 } 3302 3303 3304 3305 /* tcb may be NULL */ 3306 struct sctp_ifa * 3307 sctp_source_address_selection(struct sctp_inpcb *inp, 3308 struct sctp_tcb *stcb, 3309 sctp_route_t *ro, 3310 struct sctp_nets *net, 3311 int non_asoc_addr_ok, uint32_t vrf_id) 3312 { 3313 struct sctp_ifa *answer; 3314 uint8_t dest_is_priv, dest_is_loop; 3315 sa_family_t fam; 3316 #ifdef INET 3317 struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst; 3318 #endif 3319 #ifdef INET6 3320 struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst; 3321 #endif 3322 3323 /** 3324 * Rules: 3325 * - Find the route if needed, cache if I can. 3326 * - Look at interface address in route, Is it in the bound list. If so we 3327 * have the best source. 3328 * - If not we must rotate amongst the addresses. 3329 * 3330 * Cavets and issues 3331 * 3332 * Do we need to pay attention to scope. We can have a private address 3333 * or a global address we are sourcing or sending to. So if we draw 3334 * it out 3335 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3336 * For V4 3337 * ------------------------------------------ 3338 * source * dest * result 3339 * ----------------------------------------- 3340 * <a> Private * Global * NAT 3341 * ----------------------------------------- 3342 * <b> Private * Private * No problem 3343 * ----------------------------------------- 3344 * <c> Global * Private * Huh, How will this work? 3345 * ----------------------------------------- 3346 * <d> Global * Global * No Problem 3347 *------------------------------------------ 3348 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3349 * For V6 3350 *------------------------------------------ 3351 * source * dest * result 3352 * ----------------------------------------- 3353 * <a> Linklocal * Global * 3354 * ----------------------------------------- 3355 * <b> Linklocal * Linklocal * No problem 3356 * ----------------------------------------- 3357 * <c> Global * Linklocal * Huh, How will this work? 3358 * ----------------------------------------- 3359 * <d> Global * Global * No Problem 3360 *------------------------------------------ 3361 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3362 * 3363 * And then we add to that what happens if there are multiple addresses 3364 * assigned to an interface. Remember the ifa on a ifn is a linked 3365 * list of addresses. So one interface can have more than one IP 3366 * address. What happens if we have both a private and a global 3367 * address? Do we then use context of destination to sort out which 3368 * one is best? And what about NAT's sending P->G may get you a NAT 3369 * translation, or should you select the G thats on the interface in 3370 * preference. 3371 * 3372 * Decisions: 3373 * 3374 * - count the number of addresses on the interface. 3375 * - if it is one, no problem except case <c>. 3376 * For <a> we will assume a NAT out there. 3377 * - if there are more than one, then we need to worry about scope P 3378 * or G. We should prefer G -> G and P -> P if possible. 3379 * Then as a secondary fall back to mixed types G->P being a last 3380 * ditch one. 3381 * - The above all works for bound all, but bound specific we need to 3382 * use the same concept but instead only consider the bound 3383 * addresses. If the bound set is NOT assigned to the interface then 3384 * we must use rotation amongst the bound addresses.. 3385 */ 3386 if (ro->ro_rt == NULL) { 3387 /* 3388 * Need a route to cache. 3389 */ 3390 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 3391 } 3392 if (ro->ro_rt == NULL) { 3393 return (NULL); 3394 } 3395 fam = ro->ro_dst.sa_family; 3396 dest_is_priv = dest_is_loop = 0; 3397 /* Setup our scopes for the destination */ 3398 switch (fam) { 3399 #ifdef INET 3400 case AF_INET: 3401 /* Scope based on outbound address */ 3402 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) { 3403 dest_is_loop = 1; 3404 if (net != NULL) { 3405 /* mark it as local */ 3406 net->addr_is_local = 1; 3407 } 3408 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) { 3409 dest_is_priv = 1; 3410 } 3411 break; 3412 #endif 3413 #ifdef INET6 3414 case AF_INET6: 3415 /* Scope based on outbound address */ 3416 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) || 3417 SCTP_ROUTE_IS_REAL_LOOP(ro)) { 3418 /* 3419 * If the address is a loopback address, which 3420 * consists of "::1" OR "fe80::1%lo0", we are 3421 * loopback scope. But we don't use dest_is_priv 3422 * (link local addresses). 3423 */ 3424 dest_is_loop = 1; 3425 if (net != NULL) { 3426 /* mark it as local */ 3427 net->addr_is_local = 1; 3428 } 3429 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) { 3430 dest_is_priv = 1; 3431 } 3432 break; 3433 #endif 3434 } 3435 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:"); 3436 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst); 3437 SCTP_IPI_ADDR_RLOCK(); 3438 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 3439 /* 3440 * Bound all case 3441 */ 3442 answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id, 3443 dest_is_priv, dest_is_loop, 3444 non_asoc_addr_ok, fam); 3445 SCTP_IPI_ADDR_RUNLOCK(); 3446 return (answer); 3447 } 3448 /* 3449 * Subset bound case 3450 */ 3451 if (stcb) { 3452 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro, 3453 vrf_id, dest_is_priv, 3454 dest_is_loop, 3455 non_asoc_addr_ok, fam); 3456 } else { 3457 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id, 3458 non_asoc_addr_ok, 3459 dest_is_priv, 3460 dest_is_loop, fam); 3461 } 3462 SCTP_IPI_ADDR_RUNLOCK(); 3463 return (answer); 3464 } 3465 3466 static int 3467 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize) 3468 { 3469 struct cmsghdr cmh; 3470 struct sctp_sndinfo sndinfo; 3471 struct sctp_prinfo prinfo; 3472 struct sctp_authinfo authinfo; 3473 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3474 int found; 3475 3476 /* 3477 * Independent of how many mbufs, find the c_type inside the control 3478 * structure and copy out the data. 3479 */ 3480 found = 0; 3481 tot_len = SCTP_BUF_LEN(control); 3482 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3483 rem_len = tot_len - off; 3484 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3485 /* There is not enough room for one more. */ 3486 return (found); 3487 } 3488 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3489 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3490 /* We dont't have a complete CMSG header. */ 3491 return (found); 3492 } 3493 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3494 /* We don't have the complete CMSG. */ 3495 return (found); 3496 } 3497 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3498 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3499 if ((cmh.cmsg_level == IPPROTO_SCTP) && 3500 ((c_type == cmh.cmsg_type) || 3501 ((c_type == SCTP_SNDRCV) && 3502 ((cmh.cmsg_type == SCTP_SNDINFO) || 3503 (cmh.cmsg_type == SCTP_PRINFO) || 3504 (cmh.cmsg_type == SCTP_AUTHINFO))))) { 3505 if (c_type == cmh.cmsg_type) { 3506 if (cpsize > INT_MAX) { 3507 return (found); 3508 } 3509 if (cmsg_data_len < (int)cpsize) { 3510 return (found); 3511 } 3512 /* It is exactly what we want. Copy it out. */ 3513 m_copydata(control, cmsg_data_off, (int)cpsize, (caddr_t)data); 3514 return (1); 3515 } else { 3516 struct sctp_sndrcvinfo *sndrcvinfo; 3517 3518 sndrcvinfo = (struct sctp_sndrcvinfo *)data; 3519 if (found == 0) { 3520 if (cpsize < sizeof(struct sctp_sndrcvinfo)) { 3521 return (found); 3522 } 3523 memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo)); 3524 } 3525 switch (cmh.cmsg_type) { 3526 case SCTP_SNDINFO: 3527 if (cmsg_data_len < (int)sizeof(struct sctp_sndinfo)) { 3528 return (found); 3529 } 3530 m_copydata(control, cmsg_data_off, sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo); 3531 sndrcvinfo->sinfo_stream = sndinfo.snd_sid; 3532 sndrcvinfo->sinfo_flags = sndinfo.snd_flags; 3533 sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid; 3534 sndrcvinfo->sinfo_context = sndinfo.snd_context; 3535 sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id; 3536 break; 3537 case SCTP_PRINFO: 3538 if (cmsg_data_len < (int)sizeof(struct sctp_prinfo)) { 3539 return (found); 3540 } 3541 m_copydata(control, cmsg_data_off, sizeof(struct sctp_prinfo), (caddr_t)&prinfo); 3542 if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) { 3543 sndrcvinfo->sinfo_timetolive = prinfo.pr_value; 3544 } else { 3545 sndrcvinfo->sinfo_timetolive = 0; 3546 } 3547 sndrcvinfo->sinfo_flags |= prinfo.pr_policy; 3548 break; 3549 case SCTP_AUTHINFO: 3550 if (cmsg_data_len < (int)sizeof(struct sctp_authinfo)) { 3551 return (found); 3552 } 3553 m_copydata(control, cmsg_data_off, sizeof(struct sctp_authinfo), (caddr_t)&authinfo); 3554 sndrcvinfo->sinfo_keynumber_valid = 1; 3555 sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber; 3556 break; 3557 default: 3558 return (found); 3559 } 3560 found = 1; 3561 } 3562 } 3563 } 3564 return (found); 3565 } 3566 3567 static int 3568 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error) 3569 { 3570 struct cmsghdr cmh; 3571 int tlen, at; 3572 struct sctp_initmsg initmsg; 3573 #ifdef INET 3574 struct sockaddr_in sin; 3575 #endif 3576 #ifdef INET6 3577 struct sockaddr_in6 sin6; 3578 #endif 3579 3580 tlen = SCTP_BUF_LEN(control); 3581 at = 0; 3582 while (at < tlen) { 3583 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3584 /* There is not enough room for one more. */ 3585 *error = EINVAL; 3586 return (1); 3587 } 3588 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3589 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3590 /* We dont't have a complete CMSG header. */ 3591 *error = EINVAL; 3592 return (1); 3593 } 3594 if (((int)cmh.cmsg_len + at) > tlen) { 3595 /* We don't have the complete CMSG. */ 3596 *error = EINVAL; 3597 return (1); 3598 } 3599 if (cmh.cmsg_level == IPPROTO_SCTP) { 3600 switch (cmh.cmsg_type) { 3601 case SCTP_INIT: 3602 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct sctp_initmsg)) { 3603 *error = EINVAL; 3604 return (1); 3605 } 3606 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct sctp_initmsg), (caddr_t)&initmsg); 3607 if (initmsg.sinit_max_attempts) 3608 stcb->asoc.max_init_times = initmsg.sinit_max_attempts; 3609 if (initmsg.sinit_num_ostreams) 3610 stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams; 3611 if (initmsg.sinit_max_instreams) 3612 stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams; 3613 if (initmsg.sinit_max_init_timeo) 3614 stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo; 3615 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) { 3616 struct sctp_stream_out *tmp_str; 3617 unsigned int i; 3618 #if defined(SCTP_DETAILED_STR_STATS) 3619 int j; 3620 #endif 3621 3622 /* Default is NOT correct */ 3623 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n", 3624 stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams); 3625 SCTP_TCB_UNLOCK(stcb); 3626 SCTP_MALLOC(tmp_str, 3627 struct sctp_stream_out *, 3628 (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)), 3629 SCTP_M_STRMO); 3630 SCTP_TCB_LOCK(stcb); 3631 if (tmp_str != NULL) { 3632 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO); 3633 stcb->asoc.strmout = tmp_str; 3634 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams; 3635 } else { 3636 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt; 3637 } 3638 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3639 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 3640 stcb->asoc.strmout[i].chunks_on_queues = 0; 3641 stcb->asoc.strmout[i].next_mid_ordered = 0; 3642 stcb->asoc.strmout[i].next_mid_unordered = 0; 3643 #if defined(SCTP_DETAILED_STR_STATS) 3644 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 3645 stcb->asoc.strmout[i].abandoned_sent[j] = 0; 3646 stcb->asoc.strmout[i].abandoned_unsent[j] = 0; 3647 } 3648 #else 3649 stcb->asoc.strmout[i].abandoned_sent[0] = 0; 3650 stcb->asoc.strmout[i].abandoned_unsent[0] = 0; 3651 #endif 3652 stcb->asoc.strmout[i].sid = i; 3653 stcb->asoc.strmout[i].last_msg_incomplete = 0; 3654 stcb->asoc.strmout[i].state = SCTP_STREAM_OPENING; 3655 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL); 3656 } 3657 } 3658 break; 3659 #ifdef INET 3660 case SCTP_DSTADDRV4: 3661 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) { 3662 *error = EINVAL; 3663 return (1); 3664 } 3665 memset(&sin, 0, sizeof(struct sockaddr_in)); 3666 sin.sin_family = AF_INET; 3667 sin.sin_len = sizeof(struct sockaddr_in); 3668 sin.sin_port = stcb->rport; 3669 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3670 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3671 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3672 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3673 *error = EINVAL; 3674 return (1); 3675 } 3676 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port, 3677 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3678 *error = ENOBUFS; 3679 return (1); 3680 } 3681 break; 3682 #endif 3683 #ifdef INET6 3684 case SCTP_DSTADDRV6: 3685 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) { 3686 *error = EINVAL; 3687 return (1); 3688 } 3689 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3690 sin6.sin6_family = AF_INET6; 3691 sin6.sin6_len = sizeof(struct sockaddr_in6); 3692 sin6.sin6_port = stcb->rport; 3693 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3694 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) || 3695 IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) { 3696 *error = EINVAL; 3697 return (1); 3698 } 3699 #ifdef INET 3700 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3701 in6_sin6_2_sin(&sin, &sin6); 3702 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3703 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3704 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3705 *error = EINVAL; 3706 return (1); 3707 } 3708 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port, 3709 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3710 *error = ENOBUFS; 3711 return (1); 3712 } 3713 } else 3714 #endif 3715 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, stcb->asoc.port, 3716 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3717 *error = ENOBUFS; 3718 return (1); 3719 } 3720 break; 3721 #endif 3722 default: 3723 break; 3724 } 3725 } 3726 at += CMSG_ALIGN(cmh.cmsg_len); 3727 } 3728 return (0); 3729 } 3730 3731 static struct sctp_tcb * 3732 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p, 3733 uint16_t port, 3734 struct mbuf *control, 3735 struct sctp_nets **net_p, 3736 int *error) 3737 { 3738 struct cmsghdr cmh; 3739 int tlen, at; 3740 struct sctp_tcb *stcb; 3741 struct sockaddr *addr; 3742 #ifdef INET 3743 struct sockaddr_in sin; 3744 #endif 3745 #ifdef INET6 3746 struct sockaddr_in6 sin6; 3747 #endif 3748 3749 tlen = SCTP_BUF_LEN(control); 3750 at = 0; 3751 while (at < tlen) { 3752 if ((tlen - at) < (int)CMSG_ALIGN(sizeof(cmh))) { 3753 /* There is not enough room for one more. */ 3754 *error = EINVAL; 3755 return (NULL); 3756 } 3757 m_copydata(control, at, sizeof(cmh), (caddr_t)&cmh); 3758 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3759 /* We dont't have a complete CMSG header. */ 3760 *error = EINVAL; 3761 return (NULL); 3762 } 3763 if (((int)cmh.cmsg_len + at) > tlen) { 3764 /* We don't have the complete CMSG. */ 3765 *error = EINVAL; 3766 return (NULL); 3767 } 3768 if (cmh.cmsg_level == IPPROTO_SCTP) { 3769 switch (cmh.cmsg_type) { 3770 #ifdef INET 3771 case SCTP_DSTADDRV4: 3772 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in_addr)) { 3773 *error = EINVAL; 3774 return (NULL); 3775 } 3776 memset(&sin, 0, sizeof(struct sockaddr_in)); 3777 sin.sin_family = AF_INET; 3778 sin.sin_len = sizeof(struct sockaddr_in); 3779 sin.sin_port = port; 3780 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3781 addr = (struct sockaddr *)&sin; 3782 break; 3783 #endif 3784 #ifdef INET6 3785 case SCTP_DSTADDRV6: 3786 if ((size_t)(cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh))) < sizeof(struct in6_addr)) { 3787 *error = EINVAL; 3788 return (NULL); 3789 } 3790 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3791 sin6.sin6_family = AF_INET6; 3792 sin6.sin6_len = sizeof(struct sockaddr_in6); 3793 sin6.sin6_port = port; 3794 m_copydata(control, at + CMSG_ALIGN(sizeof(cmh)), sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3795 #ifdef INET 3796 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3797 in6_sin6_2_sin(&sin, &sin6); 3798 addr = (struct sockaddr *)&sin; 3799 } else 3800 #endif 3801 addr = (struct sockaddr *)&sin6; 3802 break; 3803 #endif 3804 default: 3805 addr = NULL; 3806 break; 3807 } 3808 if (addr) { 3809 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL); 3810 if (stcb != NULL) { 3811 return (stcb); 3812 } 3813 } 3814 } 3815 at += CMSG_ALIGN(cmh.cmsg_len); 3816 } 3817 return (NULL); 3818 } 3819 3820 static struct mbuf * 3821 sctp_add_cookie(struct mbuf *init, int init_offset, 3822 struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t **signature) 3823 { 3824 struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret; 3825 struct sctp_state_cookie *stc; 3826 struct sctp_paramhdr *ph; 3827 uint8_t *foo; 3828 int sig_offset; 3829 uint16_t cookie_sz; 3830 3831 mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) + 3832 sizeof(struct sctp_paramhdr)), 0, 3833 M_NOWAIT, 1, MT_DATA); 3834 if (mret == NULL) { 3835 return (NULL); 3836 } 3837 copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT); 3838 if (copy_init == NULL) { 3839 sctp_m_freem(mret); 3840 return (NULL); 3841 } 3842 #ifdef SCTP_MBUF_LOGGING 3843 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3844 sctp_log_mbc(copy_init, SCTP_MBUF_ICOPY); 3845 } 3846 #endif 3847 copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL, 3848 M_NOWAIT); 3849 if (copy_initack == NULL) { 3850 sctp_m_freem(mret); 3851 sctp_m_freem(copy_init); 3852 return (NULL); 3853 } 3854 #ifdef SCTP_MBUF_LOGGING 3855 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3856 sctp_log_mbc(copy_initack, SCTP_MBUF_ICOPY); 3857 } 3858 #endif 3859 /* easy side we just drop it on the end */ 3860 ph = mtod(mret, struct sctp_paramhdr *); 3861 SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) + 3862 sizeof(struct sctp_paramhdr); 3863 stc = (struct sctp_state_cookie *)((caddr_t)ph + 3864 sizeof(struct sctp_paramhdr)); 3865 ph->param_type = htons(SCTP_STATE_COOKIE); 3866 ph->param_length = 0; /* fill in at the end */ 3867 /* Fill in the stc cookie data */ 3868 memcpy(stc, stc_in, sizeof(struct sctp_state_cookie)); 3869 3870 /* tack the INIT and then the INIT-ACK onto the chain */ 3871 cookie_sz = 0; 3872 for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3873 cookie_sz += SCTP_BUF_LEN(m_at); 3874 if (SCTP_BUF_NEXT(m_at) == NULL) { 3875 SCTP_BUF_NEXT(m_at) = copy_init; 3876 break; 3877 } 3878 } 3879 for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3880 cookie_sz += SCTP_BUF_LEN(m_at); 3881 if (SCTP_BUF_NEXT(m_at) == NULL) { 3882 SCTP_BUF_NEXT(m_at) = copy_initack; 3883 break; 3884 } 3885 } 3886 for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3887 cookie_sz += SCTP_BUF_LEN(m_at); 3888 if (SCTP_BUF_NEXT(m_at) == NULL) { 3889 break; 3890 } 3891 } 3892 sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA); 3893 if (sig == NULL) { 3894 /* no space, so free the entire chain */ 3895 sctp_m_freem(mret); 3896 return (NULL); 3897 } 3898 SCTP_BUF_LEN(sig) = 0; 3899 SCTP_BUF_NEXT(m_at) = sig; 3900 sig_offset = 0; 3901 foo = (uint8_t *)(mtod(sig, caddr_t)+sig_offset); 3902 memset(foo, 0, SCTP_SIGNATURE_SIZE); 3903 *signature = foo; 3904 SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE; 3905 cookie_sz += SCTP_SIGNATURE_SIZE; 3906 ph->param_length = htons(cookie_sz); 3907 return (mret); 3908 } 3909 3910 3911 static uint8_t 3912 sctp_get_ect(struct sctp_tcb *stcb) 3913 { 3914 if ((stcb != NULL) && (stcb->asoc.ecn_supported == 1)) { 3915 return (SCTP_ECT0_BIT); 3916 } else { 3917 return (0); 3918 } 3919 } 3920 3921 #if defined(INET) || defined(INET6) 3922 static void 3923 sctp_handle_no_route(struct sctp_tcb *stcb, 3924 struct sctp_nets *net, 3925 int so_locked) 3926 { 3927 SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n"); 3928 3929 if (net) { 3930 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was "); 3931 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa); 3932 if (net->dest_state & SCTP_ADDR_CONFIRMED) { 3933 if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) { 3934 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net); 3935 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 3936 stcb, 0, 3937 (void *)net, 3938 so_locked); 3939 net->dest_state &= ~SCTP_ADDR_REACHABLE; 3940 net->dest_state &= ~SCTP_ADDR_PF; 3941 } 3942 } 3943 if (stcb) { 3944 if (net == stcb->asoc.primary_destination) { 3945 /* need a new primary */ 3946 struct sctp_nets *alt; 3947 3948 alt = sctp_find_alternate_net(stcb, net, 0); 3949 if (alt != net) { 3950 if (stcb->asoc.alternate) { 3951 sctp_free_remote_addr(stcb->asoc.alternate); 3952 } 3953 stcb->asoc.alternate = alt; 3954 atomic_add_int(&stcb->asoc.alternate->ref_count, 1); 3955 if (net->ro._s_addr) { 3956 sctp_free_ifa(net->ro._s_addr); 3957 net->ro._s_addr = NULL; 3958 } 3959 net->src_addr_selected = 0; 3960 } 3961 } 3962 } 3963 } 3964 } 3965 #endif 3966 3967 static int 3968 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp, 3969 struct sctp_tcb *stcb, /* may be NULL */ 3970 struct sctp_nets *net, 3971 struct sockaddr *to, 3972 struct mbuf *m, 3973 uint32_t auth_offset, 3974 struct sctp_auth_chunk *auth, 3975 uint16_t auth_keyid, 3976 int nofragment_flag, 3977 int ecn_ok, 3978 int out_of_asoc_ok, 3979 uint16_t src_port, 3980 uint16_t dest_port, 3981 uint32_t v_tag, 3982 uint16_t port, 3983 union sctp_sockstore *over_addr, 3984 uint8_t mflowtype, uint32_t mflowid, 3985 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 3986 int so_locked SCTP_UNUSED 3987 #else 3988 int so_locked 3989 #endif 3990 ) 3991 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */ 3992 { 3993 /** 3994 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header 3995 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure: 3996 * - fill in the HMAC digest of any AUTH chunk in the packet. 3997 * - calculate and fill in the SCTP checksum. 3998 * - prepend an IP address header. 3999 * - if boundall use INADDR_ANY. 4000 * - if boundspecific do source address selection. 4001 * - set fragmentation option for ipV4. 4002 * - On return from IP output, check/adjust mtu size of output 4003 * interface and smallest_mtu size as well. 4004 */ 4005 /* Will need ifdefs around this */ 4006 struct mbuf *newm; 4007 struct sctphdr *sctphdr; 4008 int packet_length; 4009 int ret; 4010 #if defined(INET) || defined(INET6) 4011 uint32_t vrf_id; 4012 #endif 4013 #if defined(INET) || defined(INET6) 4014 struct mbuf *o_pak; 4015 sctp_route_t *ro = NULL; 4016 struct udphdr *udp = NULL; 4017 #endif 4018 uint8_t tos_value; 4019 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4020 struct socket *so = NULL; 4021 #endif 4022 4023 if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) { 4024 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4025 sctp_m_freem(m); 4026 return (EFAULT); 4027 } 4028 #if defined(INET) || defined(INET6) 4029 if (stcb) { 4030 vrf_id = stcb->asoc.vrf_id; 4031 } else { 4032 vrf_id = inp->def_vrf_id; 4033 } 4034 #endif 4035 /* fill in the HMAC digest for any AUTH chunk in the packet */ 4036 if ((auth != NULL) && (stcb != NULL)) { 4037 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid); 4038 } 4039 if (net) { 4040 tos_value = net->dscp; 4041 } else if (stcb) { 4042 tos_value = stcb->asoc.default_dscp; 4043 } else { 4044 tos_value = inp->sctp_ep.default_dscp; 4045 } 4046 4047 switch (to->sa_family) { 4048 #ifdef INET 4049 case AF_INET: 4050 { 4051 struct ip *ip = NULL; 4052 sctp_route_t iproute; 4053 int len; 4054 4055 len = SCTP_MIN_V4_OVERHEAD; 4056 if (port) { 4057 len += sizeof(struct udphdr); 4058 } 4059 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4060 if (newm == NULL) { 4061 sctp_m_freem(m); 4062 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4063 return (ENOMEM); 4064 } 4065 SCTP_ALIGN_TO_END(newm, len); 4066 SCTP_BUF_LEN(newm) = len; 4067 SCTP_BUF_NEXT(newm) = m; 4068 m = newm; 4069 if (net != NULL) { 4070 m->m_pkthdr.flowid = net->flowid; 4071 M_HASHTYPE_SET(m, net->flowtype); 4072 } else { 4073 m->m_pkthdr.flowid = mflowid; 4074 M_HASHTYPE_SET(m, mflowtype); 4075 } 4076 packet_length = sctp_calculate_len(m); 4077 ip = mtod(m, struct ip *); 4078 ip->ip_v = IPVERSION; 4079 ip->ip_hl = (sizeof(struct ip) >> 2); 4080 if (tos_value == 0) { 4081 /* 4082 * This means especially, that it is not set 4083 * at the SCTP layer. So use the value from 4084 * the IP layer. 4085 */ 4086 tos_value = inp->ip_inp.inp.inp_ip_tos; 4087 } 4088 tos_value &= 0xfc; 4089 if (ecn_ok) { 4090 tos_value |= sctp_get_ect(stcb); 4091 } 4092 if ((nofragment_flag) && (port == 0)) { 4093 ip->ip_off = htons(IP_DF); 4094 } else { 4095 ip->ip_off = htons(0); 4096 } 4097 /* FreeBSD has a function for ip_id's */ 4098 ip_fillid(ip); 4099 4100 ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl; 4101 ip->ip_len = htons(packet_length); 4102 ip->ip_tos = tos_value; 4103 if (port) { 4104 ip->ip_p = IPPROTO_UDP; 4105 } else { 4106 ip->ip_p = IPPROTO_SCTP; 4107 } 4108 ip->ip_sum = 0; 4109 if (net == NULL) { 4110 ro = &iproute; 4111 memset(&iproute, 0, sizeof(iproute)); 4112 memcpy(&ro->ro_dst, to, to->sa_len); 4113 } else { 4114 ro = (sctp_route_t *)&net->ro; 4115 } 4116 /* Now the address selection part */ 4117 ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr; 4118 4119 /* call the routine to select the src address */ 4120 if (net && out_of_asoc_ok == 0) { 4121 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4122 sctp_free_ifa(net->ro._s_addr); 4123 net->ro._s_addr = NULL; 4124 net->src_addr_selected = 0; 4125 if (ro->ro_rt) { 4126 RTFREE(ro->ro_rt); 4127 ro->ro_rt = NULL; 4128 } 4129 } 4130 if (net->src_addr_selected == 0) { 4131 /* Cache the source address */ 4132 net->ro._s_addr = sctp_source_address_selection(inp, stcb, 4133 ro, net, 0, 4134 vrf_id); 4135 net->src_addr_selected = 1; 4136 } 4137 if (net->ro._s_addr == NULL) { 4138 /* No route to host */ 4139 net->src_addr_selected = 0; 4140 sctp_handle_no_route(stcb, net, so_locked); 4141 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4142 sctp_m_freem(m); 4143 return (EHOSTUNREACH); 4144 } 4145 ip->ip_src = net->ro._s_addr->address.sin.sin_addr; 4146 } else { 4147 if (over_addr == NULL) { 4148 struct sctp_ifa *_lsrc; 4149 4150 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4151 net, 4152 out_of_asoc_ok, 4153 vrf_id); 4154 if (_lsrc == NULL) { 4155 sctp_handle_no_route(stcb, net, so_locked); 4156 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4157 sctp_m_freem(m); 4158 return (EHOSTUNREACH); 4159 } 4160 ip->ip_src = _lsrc->address.sin.sin_addr; 4161 sctp_free_ifa(_lsrc); 4162 } else { 4163 ip->ip_src = over_addr->sin.sin_addr; 4164 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 4165 } 4166 } 4167 if (port) { 4168 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4169 sctp_handle_no_route(stcb, net, so_locked); 4170 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4171 sctp_m_freem(m); 4172 return (EHOSTUNREACH); 4173 } 4174 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 4175 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4176 udp->uh_dport = port; 4177 udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip))); 4178 if (V_udp_cksum) { 4179 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 4180 } else { 4181 udp->uh_sum = 0; 4182 } 4183 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4184 } else { 4185 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip)); 4186 } 4187 4188 sctphdr->src_port = src_port; 4189 sctphdr->dest_port = dest_port; 4190 sctphdr->v_tag = v_tag; 4191 sctphdr->checksum = 0; 4192 4193 /* 4194 * If source address selection fails and we find no 4195 * route then the ip_output should fail as well with 4196 * a NO_ROUTE_TO_HOST type error. We probably should 4197 * catch that somewhere and abort the association 4198 * right away (assuming this is an INIT being sent). 4199 */ 4200 if (ro->ro_rt == NULL) { 4201 /* 4202 * src addr selection failed to find a route 4203 * (or valid source addr), so we can't get 4204 * there from here (yet)! 4205 */ 4206 sctp_handle_no_route(stcb, net, so_locked); 4207 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4208 sctp_m_freem(m); 4209 return (EHOSTUNREACH); 4210 } 4211 if (ro != &iproute) { 4212 memcpy(&iproute, ro, sizeof(*ro)); 4213 } 4214 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n", 4215 (uint32_t)(ntohl(ip->ip_src.s_addr))); 4216 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n", 4217 (uint32_t)(ntohl(ip->ip_dst.s_addr))); 4218 SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n", 4219 (void *)ro->ro_rt); 4220 4221 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4222 /* failed to prepend data, give up */ 4223 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4224 sctp_m_freem(m); 4225 return (ENOMEM); 4226 } 4227 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4228 if (port) { 4229 #if defined(SCTP_WITH_NO_CSUM) 4230 SCTP_STAT_INCR(sctps_sendnocrc); 4231 #else 4232 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr)); 4233 SCTP_STAT_INCR(sctps_sendswcrc); 4234 #endif 4235 if (V_udp_cksum) { 4236 SCTP_ENABLE_UDP_CSUM(o_pak); 4237 } 4238 } else { 4239 #if defined(SCTP_WITH_NO_CSUM) 4240 SCTP_STAT_INCR(sctps_sendnocrc); 4241 #else 4242 m->m_pkthdr.csum_flags = CSUM_SCTP; 4243 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4244 SCTP_STAT_INCR(sctps_sendhwcrc); 4245 #endif 4246 } 4247 #ifdef SCTP_PACKET_LOGGING 4248 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4249 sctp_packet_log(o_pak); 4250 #endif 4251 /* send it out. table id is taken from stcb */ 4252 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4253 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4254 so = SCTP_INP_SO(inp); 4255 SCTP_SOCKET_UNLOCK(so, 0); 4256 } 4257 #endif 4258 SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id); 4259 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4260 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4261 atomic_add_int(&stcb->asoc.refcnt, 1); 4262 SCTP_TCB_UNLOCK(stcb); 4263 SCTP_SOCKET_LOCK(so, 0); 4264 SCTP_TCB_LOCK(stcb); 4265 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4266 } 4267 #endif 4268 SCTP_STAT_INCR(sctps_sendpackets); 4269 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4270 if (ret) 4271 SCTP_STAT_INCR(sctps_senderrors); 4272 4273 SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret); 4274 if (net == NULL) { 4275 /* free tempy routes */ 4276 RO_RTFREE(ro); 4277 } else { 4278 if ((ro->ro_rt != NULL) && (net->ro._s_addr) && 4279 ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) { 4280 uint32_t mtu; 4281 4282 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt); 4283 if (mtu > 0) { 4284 if (net->port) { 4285 mtu -= sizeof(struct udphdr); 4286 } 4287 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { 4288 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4289 } 4290 net->mtu = mtu; 4291 } 4292 } else if (ro->ro_rt == NULL) { 4293 /* route was freed */ 4294 if (net->ro._s_addr && 4295 net->src_addr_selected) { 4296 sctp_free_ifa(net->ro._s_addr); 4297 net->ro._s_addr = NULL; 4298 } 4299 net->src_addr_selected = 0; 4300 } 4301 } 4302 return (ret); 4303 } 4304 #endif 4305 #ifdef INET6 4306 case AF_INET6: 4307 { 4308 uint32_t flowlabel, flowinfo; 4309 struct ip6_hdr *ip6h; 4310 struct route_in6 ip6route; 4311 struct ifnet *ifp; 4312 struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp; 4313 int prev_scope = 0; 4314 struct sockaddr_in6 lsa6_storage; 4315 int error; 4316 u_short prev_port = 0; 4317 int len; 4318 4319 if (net) { 4320 flowlabel = net->flowlabel; 4321 } else if (stcb) { 4322 flowlabel = stcb->asoc.default_flowlabel; 4323 } else { 4324 flowlabel = inp->sctp_ep.default_flowlabel; 4325 } 4326 if (flowlabel == 0) { 4327 /* 4328 * This means especially, that it is not set 4329 * at the SCTP layer. So use the value from 4330 * the IP layer. 4331 */ 4332 flowlabel = ntohl(((struct in6pcb *)inp)->in6p_flowinfo); 4333 } 4334 flowlabel &= 0x000fffff; 4335 len = SCTP_MIN_OVERHEAD; 4336 if (port) { 4337 len += sizeof(struct udphdr); 4338 } 4339 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4340 if (newm == NULL) { 4341 sctp_m_freem(m); 4342 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4343 return (ENOMEM); 4344 } 4345 SCTP_ALIGN_TO_END(newm, len); 4346 SCTP_BUF_LEN(newm) = len; 4347 SCTP_BUF_NEXT(newm) = m; 4348 m = newm; 4349 if (net != NULL) { 4350 m->m_pkthdr.flowid = net->flowid; 4351 M_HASHTYPE_SET(m, net->flowtype); 4352 } else { 4353 m->m_pkthdr.flowid = mflowid; 4354 M_HASHTYPE_SET(m, mflowtype); 4355 } 4356 packet_length = sctp_calculate_len(m); 4357 4358 ip6h = mtod(m, struct ip6_hdr *); 4359 /* protect *sin6 from overwrite */ 4360 sin6 = (struct sockaddr_in6 *)to; 4361 tmp = *sin6; 4362 sin6 = &tmp; 4363 4364 /* KAME hack: embed scopeid */ 4365 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4366 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4367 return (EINVAL); 4368 } 4369 if (net == NULL) { 4370 memset(&ip6route, 0, sizeof(ip6route)); 4371 ro = (sctp_route_t *)&ip6route; 4372 memcpy(&ro->ro_dst, sin6, sin6->sin6_len); 4373 } else { 4374 ro = (sctp_route_t *)&net->ro; 4375 } 4376 /* 4377 * We assume here that inp_flow is in host byte 4378 * order within the TCB! 4379 */ 4380 if (tos_value == 0) { 4381 /* 4382 * This means especially, that it is not set 4383 * at the SCTP layer. So use the value from 4384 * the IP layer. 4385 */ 4386 tos_value = (ntohl(((struct in6pcb *)inp)->in6p_flowinfo) >> 20) & 0xff; 4387 } 4388 tos_value &= 0xfc; 4389 if (ecn_ok) { 4390 tos_value |= sctp_get_ect(stcb); 4391 } 4392 flowinfo = 0x06; 4393 flowinfo <<= 8; 4394 flowinfo |= tos_value; 4395 flowinfo <<= 20; 4396 flowinfo |= flowlabel; 4397 ip6h->ip6_flow = htonl(flowinfo); 4398 if (port) { 4399 ip6h->ip6_nxt = IPPROTO_UDP; 4400 } else { 4401 ip6h->ip6_nxt = IPPROTO_SCTP; 4402 } 4403 ip6h->ip6_plen = (uint16_t)(packet_length - sizeof(struct ip6_hdr)); 4404 ip6h->ip6_dst = sin6->sin6_addr; 4405 4406 /* 4407 * Add SRC address selection here: we can only reuse 4408 * to a limited degree the kame src-addr-sel, since 4409 * we can try their selection but it may not be 4410 * bound. 4411 */ 4412 memset(&lsa6_tmp, 0, sizeof(lsa6_tmp)); 4413 lsa6_tmp.sin6_family = AF_INET6; 4414 lsa6_tmp.sin6_len = sizeof(lsa6_tmp); 4415 lsa6 = &lsa6_tmp; 4416 if (net && out_of_asoc_ok == 0) { 4417 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4418 sctp_free_ifa(net->ro._s_addr); 4419 net->ro._s_addr = NULL; 4420 net->src_addr_selected = 0; 4421 if (ro->ro_rt) { 4422 RTFREE(ro->ro_rt); 4423 ro->ro_rt = NULL; 4424 } 4425 } 4426 if (net->src_addr_selected == 0) { 4427 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4428 /* KAME hack: embed scopeid */ 4429 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4430 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4431 return (EINVAL); 4432 } 4433 /* Cache the source address */ 4434 net->ro._s_addr = sctp_source_address_selection(inp, 4435 stcb, 4436 ro, 4437 net, 4438 0, 4439 vrf_id); 4440 (void)sa6_recoverscope(sin6); 4441 net->src_addr_selected = 1; 4442 } 4443 if (net->ro._s_addr == NULL) { 4444 SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n"); 4445 net->src_addr_selected = 0; 4446 sctp_handle_no_route(stcb, net, so_locked); 4447 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4448 sctp_m_freem(m); 4449 return (EHOSTUNREACH); 4450 } 4451 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr; 4452 } else { 4453 sin6 = (struct sockaddr_in6 *)&ro->ro_dst; 4454 /* KAME hack: embed scopeid */ 4455 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4456 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4457 return (EINVAL); 4458 } 4459 if (over_addr == NULL) { 4460 struct sctp_ifa *_lsrc; 4461 4462 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4463 net, 4464 out_of_asoc_ok, 4465 vrf_id); 4466 if (_lsrc == NULL) { 4467 sctp_handle_no_route(stcb, net, so_locked); 4468 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4469 sctp_m_freem(m); 4470 return (EHOSTUNREACH); 4471 } 4472 lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr; 4473 sctp_free_ifa(_lsrc); 4474 } else { 4475 lsa6->sin6_addr = over_addr->sin6.sin6_addr; 4476 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 4477 } 4478 (void)sa6_recoverscope(sin6); 4479 } 4480 lsa6->sin6_port = inp->sctp_lport; 4481 4482 if (ro->ro_rt == NULL) { 4483 /* 4484 * src addr selection failed to find a route 4485 * (or valid source addr), so we can't get 4486 * there from here! 4487 */ 4488 sctp_handle_no_route(stcb, net, so_locked); 4489 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4490 sctp_m_freem(m); 4491 return (EHOSTUNREACH); 4492 } 4493 /* 4494 * XXX: sa6 may not have a valid sin6_scope_id in 4495 * the non-SCOPEDROUTING case. 4496 */ 4497 memset(&lsa6_storage, 0, sizeof(lsa6_storage)); 4498 lsa6_storage.sin6_family = AF_INET6; 4499 lsa6_storage.sin6_len = sizeof(lsa6_storage); 4500 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4501 if ((error = sa6_recoverscope(&lsa6_storage)) != 0) { 4502 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error); 4503 sctp_m_freem(m); 4504 return (error); 4505 } 4506 /* XXX */ 4507 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4508 lsa6_storage.sin6_port = inp->sctp_lport; 4509 lsa6 = &lsa6_storage; 4510 ip6h->ip6_src = lsa6->sin6_addr; 4511 4512 if (port) { 4513 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4514 sctp_handle_no_route(stcb, net, so_locked); 4515 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4516 sctp_m_freem(m); 4517 return (EHOSTUNREACH); 4518 } 4519 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4520 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4521 udp->uh_dport = port; 4522 udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr))); 4523 udp->uh_sum = 0; 4524 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4525 } else { 4526 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4527 } 4528 4529 sctphdr->src_port = src_port; 4530 sctphdr->dest_port = dest_port; 4531 sctphdr->v_tag = v_tag; 4532 sctphdr->checksum = 0; 4533 4534 /* 4535 * We set the hop limit now since there is a good 4536 * chance that our ro pointer is now filled 4537 */ 4538 ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro); 4539 ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 4540 4541 #ifdef SCTP_DEBUG 4542 /* Copy to be sure something bad is not happening */ 4543 sin6->sin6_addr = ip6h->ip6_dst; 4544 lsa6->sin6_addr = ip6h->ip6_src; 4545 #endif 4546 4547 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n"); 4548 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: "); 4549 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6); 4550 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: "); 4551 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6); 4552 if (net) { 4553 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4554 /* 4555 * preserve the port and scope for link 4556 * local send 4557 */ 4558 prev_scope = sin6->sin6_scope_id; 4559 prev_port = sin6->sin6_port; 4560 } 4561 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4562 /* failed to prepend data, give up */ 4563 sctp_m_freem(m); 4564 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4565 return (ENOMEM); 4566 } 4567 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4568 if (port) { 4569 #if defined(SCTP_WITH_NO_CSUM) 4570 SCTP_STAT_INCR(sctps_sendnocrc); 4571 #else 4572 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 4573 SCTP_STAT_INCR(sctps_sendswcrc); 4574 #endif 4575 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) { 4576 udp->uh_sum = 0xffff; 4577 } 4578 } else { 4579 #if defined(SCTP_WITH_NO_CSUM) 4580 SCTP_STAT_INCR(sctps_sendnocrc); 4581 #else 4582 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 4583 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4584 SCTP_STAT_INCR(sctps_sendhwcrc); 4585 #endif 4586 } 4587 /* send it out. table id is taken from stcb */ 4588 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4589 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4590 so = SCTP_INP_SO(inp); 4591 SCTP_SOCKET_UNLOCK(so, 0); 4592 } 4593 #endif 4594 #ifdef SCTP_PACKET_LOGGING 4595 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4596 sctp_packet_log(o_pak); 4597 #endif 4598 SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id); 4599 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4600 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4601 atomic_add_int(&stcb->asoc.refcnt, 1); 4602 SCTP_TCB_UNLOCK(stcb); 4603 SCTP_SOCKET_LOCK(so, 0); 4604 SCTP_TCB_LOCK(stcb); 4605 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4606 } 4607 #endif 4608 if (net) { 4609 /* for link local this must be done */ 4610 sin6->sin6_scope_id = prev_scope; 4611 sin6->sin6_port = prev_port; 4612 } 4613 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 4614 SCTP_STAT_INCR(sctps_sendpackets); 4615 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4616 if (ret) { 4617 SCTP_STAT_INCR(sctps_senderrors); 4618 } 4619 if (net == NULL) { 4620 /* Now if we had a temp route free it */ 4621 RO_RTFREE(ro); 4622 } else { 4623 /* 4624 * PMTU check versus smallest asoc MTU goes 4625 * here 4626 */ 4627 if (ro->ro_rt == NULL) { 4628 /* Route was freed */ 4629 if (net->ro._s_addr && 4630 net->src_addr_selected) { 4631 sctp_free_ifa(net->ro._s_addr); 4632 net->ro._s_addr = NULL; 4633 } 4634 net->src_addr_selected = 0; 4635 } 4636 if ((ro->ro_rt != NULL) && (net->ro._s_addr) && 4637 ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) { 4638 uint32_t mtu; 4639 4640 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_rt); 4641 if (mtu > 0) { 4642 if (net->port) { 4643 mtu -= sizeof(struct udphdr); 4644 } 4645 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { 4646 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4647 } 4648 net->mtu = mtu; 4649 } 4650 } else if (ifp) { 4651 if (ND_IFINFO(ifp)->linkmtu && 4652 (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) { 4653 sctp_mtu_size_reset(inp, 4654 &stcb->asoc, 4655 ND_IFINFO(ifp)->linkmtu); 4656 } 4657 } 4658 } 4659 return (ret); 4660 } 4661 #endif 4662 default: 4663 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 4664 ((struct sockaddr *)to)->sa_family); 4665 sctp_m_freem(m); 4666 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4667 return (EFAULT); 4668 } 4669 } 4670 4671 4672 void 4673 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked 4674 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 4675 SCTP_UNUSED 4676 #endif 4677 ) 4678 { 4679 struct mbuf *m, *m_last; 4680 struct sctp_nets *net; 4681 struct sctp_init_chunk *init; 4682 struct sctp_supported_addr_param *sup_addr; 4683 struct sctp_adaptation_layer_indication *ali; 4684 struct sctp_supported_chunk_types_param *pr_supported; 4685 struct sctp_paramhdr *ph; 4686 int cnt_inits_to = 0; 4687 int error; 4688 uint16_t num_ext, chunk_len, padding_len, parameter_len; 4689 4690 /* INIT's always go to the primary (and usually ONLY address) */ 4691 net = stcb->asoc.primary_destination; 4692 if (net == NULL) { 4693 net = TAILQ_FIRST(&stcb->asoc.nets); 4694 if (net == NULL) { 4695 /* TSNH */ 4696 return; 4697 } 4698 /* we confirm any address we send an INIT to */ 4699 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4700 (void)sctp_set_primary_addr(stcb, NULL, net); 4701 } else { 4702 /* we confirm any address we send an INIT to */ 4703 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4704 } 4705 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n"); 4706 #ifdef INET6 4707 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4708 /* 4709 * special hook, if we are sending to link local it will not 4710 * show up in our private address count. 4711 */ 4712 if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr)) 4713 cnt_inits_to = 1; 4714 } 4715 #endif 4716 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 4717 /* This case should not happen */ 4718 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n"); 4719 return; 4720 } 4721 /* start the INIT timer */ 4722 sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net); 4723 4724 m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA); 4725 if (m == NULL) { 4726 /* No memory, INIT timer will re-attempt. */ 4727 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n"); 4728 return; 4729 } 4730 chunk_len = (uint16_t)sizeof(struct sctp_init_chunk); 4731 padding_len = 0; 4732 /* Now lets put the chunk header in place */ 4733 init = mtod(m, struct sctp_init_chunk *); 4734 /* now the chunk header */ 4735 init->ch.chunk_type = SCTP_INITIATION; 4736 init->ch.chunk_flags = 0; 4737 /* fill in later from mbuf we build */ 4738 init->ch.chunk_length = 0; 4739 /* place in my tag */ 4740 init->init.initiate_tag = htonl(stcb->asoc.my_vtag); 4741 /* set up some of the credits. */ 4742 init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0, 4743 SCTP_MINIMAL_RWND)); 4744 init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams); 4745 init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams); 4746 init->init.initial_tsn = htonl(stcb->asoc.init_seq_number); 4747 4748 /* Adaptation layer indication parameter */ 4749 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 4750 parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication); 4751 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 4752 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 4753 ali->ph.param_length = htons(parameter_len); 4754 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator); 4755 chunk_len += parameter_len; 4756 } 4757 /* ECN parameter */ 4758 if (stcb->asoc.ecn_supported == 1) { 4759 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4760 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4761 ph->param_type = htons(SCTP_ECN_CAPABLE); 4762 ph->param_length = htons(parameter_len); 4763 chunk_len += parameter_len; 4764 } 4765 /* PR-SCTP supported parameter */ 4766 if (stcb->asoc.prsctp_supported == 1) { 4767 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4768 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4769 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 4770 ph->param_length = htons(parameter_len); 4771 chunk_len += parameter_len; 4772 } 4773 /* Add NAT friendly parameter. */ 4774 if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) { 4775 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4776 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4777 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 4778 ph->param_length = htons(parameter_len); 4779 chunk_len += parameter_len; 4780 } 4781 /* And now tell the peer which extensions we support */ 4782 num_ext = 0; 4783 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 4784 if (stcb->asoc.prsctp_supported == 1) { 4785 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 4786 if (stcb->asoc.idata_supported) { 4787 pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN; 4788 } 4789 } 4790 if (stcb->asoc.auth_supported == 1) { 4791 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 4792 } 4793 if (stcb->asoc.asconf_supported == 1) { 4794 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 4795 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 4796 } 4797 if (stcb->asoc.reconfig_supported == 1) { 4798 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 4799 } 4800 if (stcb->asoc.idata_supported) { 4801 pr_supported->chunk_types[num_ext++] = SCTP_IDATA; 4802 } 4803 if (stcb->asoc.nrsack_supported == 1) { 4804 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 4805 } 4806 if (stcb->asoc.pktdrop_supported == 1) { 4807 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 4808 } 4809 if (num_ext > 0) { 4810 parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext; 4811 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 4812 pr_supported->ph.param_length = htons(parameter_len); 4813 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4814 chunk_len += parameter_len; 4815 } 4816 /* add authentication parameters */ 4817 if (stcb->asoc.auth_supported) { 4818 /* attach RANDOM parameter, if available */ 4819 if (stcb->asoc.authinfo.random != NULL) { 4820 struct sctp_auth_random *randp; 4821 4822 if (padding_len > 0) { 4823 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4824 chunk_len += padding_len; 4825 padding_len = 0; 4826 } 4827 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 4828 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len; 4829 /* random key already contains the header */ 4830 memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len); 4831 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4832 chunk_len += parameter_len; 4833 } 4834 /* add HMAC_ALGO parameter */ 4835 if (stcb->asoc.local_hmacs != NULL) { 4836 struct sctp_auth_hmac_algo *hmacs; 4837 4838 if (padding_len > 0) { 4839 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4840 chunk_len += padding_len; 4841 padding_len = 0; 4842 } 4843 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 4844 parameter_len = (uint16_t)(sizeof(struct sctp_auth_hmac_algo) + 4845 stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t)); 4846 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 4847 hmacs->ph.param_length = htons(parameter_len); 4848 sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *)hmacs->hmac_ids); 4849 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4850 chunk_len += parameter_len; 4851 } 4852 /* add CHUNKS parameter */ 4853 if (stcb->asoc.local_auth_chunks != NULL) { 4854 struct sctp_auth_chunk_list *chunks; 4855 4856 if (padding_len > 0) { 4857 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4858 chunk_len += padding_len; 4859 padding_len = 0; 4860 } 4861 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 4862 parameter_len = (uint16_t)(sizeof(struct sctp_auth_chunk_list) + 4863 sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks)); 4864 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 4865 chunks->ph.param_length = htons(parameter_len); 4866 sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types); 4867 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4868 chunk_len += parameter_len; 4869 } 4870 } 4871 /* now any cookie time extensions */ 4872 if (stcb->asoc.cookie_preserve_req) { 4873 struct sctp_cookie_perserve_param *cookie_preserve; 4874 4875 if (padding_len > 0) { 4876 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4877 chunk_len += padding_len; 4878 padding_len = 0; 4879 } 4880 parameter_len = (uint16_t)sizeof(struct sctp_cookie_perserve_param); 4881 cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len); 4882 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE); 4883 cookie_preserve->ph.param_length = htons(parameter_len); 4884 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req); 4885 stcb->asoc.cookie_preserve_req = 0; 4886 chunk_len += parameter_len; 4887 } 4888 if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) { 4889 uint8_t i; 4890 4891 if (padding_len > 0) { 4892 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4893 chunk_len += padding_len; 4894 padding_len = 0; 4895 } 4896 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4897 if (stcb->asoc.scope.ipv4_addr_legal) { 4898 parameter_len += (uint16_t)sizeof(uint16_t); 4899 } 4900 if (stcb->asoc.scope.ipv6_addr_legal) { 4901 parameter_len += (uint16_t)sizeof(uint16_t); 4902 } 4903 sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len); 4904 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE); 4905 sup_addr->ph.param_length = htons(parameter_len); 4906 i = 0; 4907 if (stcb->asoc.scope.ipv4_addr_legal) { 4908 sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS); 4909 } 4910 if (stcb->asoc.scope.ipv6_addr_legal) { 4911 sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS); 4912 } 4913 padding_len = 4 - 2 * i; 4914 chunk_len += parameter_len; 4915 } 4916 SCTP_BUF_LEN(m) = chunk_len; 4917 /* now the addresses */ 4918 /* 4919 * To optimize this we could put the scoping stuff into a structure 4920 * and remove the individual uint8's from the assoc structure. Then 4921 * we could just sifa in the address within the stcb. But for now 4922 * this is a quick hack to get the address stuff teased apart. 4923 */ 4924 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, 4925 m, cnt_inits_to, 4926 &padding_len, &chunk_len); 4927 4928 init->ch.chunk_length = htons(chunk_len); 4929 if (padding_len > 0) { 4930 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 4931 sctp_m_freem(m); 4932 return; 4933 } 4934 } 4935 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n"); 4936 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 4937 (struct sockaddr *)&net->ro._l_addr, 4938 m, 0, NULL, 0, 0, 0, 0, 4939 inp->sctp_lport, stcb->rport, htonl(0), 4940 net->port, NULL, 4941 0, 0, 4942 so_locked))) { 4943 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error); 4944 if (error == ENOBUFS) { 4945 stcb->asoc.ifp_had_enobuf = 1; 4946 SCTP_STAT_INCR(sctps_lowlevelerr); 4947 } 4948 } else { 4949 stcb->asoc.ifp_had_enobuf = 0; 4950 } 4951 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 4952 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 4953 } 4954 4955 struct mbuf * 4956 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt, 4957 int param_offset, int *abort_processing, struct sctp_chunkhdr *cp, int *nat_friendly) 4958 { 4959 /* 4960 * Given a mbuf containing an INIT or INIT-ACK with the param_offset 4961 * being equal to the beginning of the params i.e. (iphlen + 4962 * sizeof(struct sctp_init_msg) parse through the parameters to the 4963 * end of the mbuf verifying that all parameters are known. 4964 * 4965 * For unknown parameters build and return a mbuf with 4966 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop 4967 * processing this chunk stop, and set *abort_processing to 1. 4968 * 4969 * By having param_offset be pre-set to where parameters begin it is 4970 * hoped that this routine may be reused in the future by new 4971 * features. 4972 */ 4973 struct sctp_paramhdr *phdr, params; 4974 4975 struct mbuf *mat, *op_err; 4976 char tempbuf[SCTP_PARAM_BUFFER_SIZE]; 4977 int at, limit, pad_needed; 4978 uint16_t ptype, plen, padded_size; 4979 int err_at; 4980 4981 *abort_processing = 0; 4982 mat = in_initpkt; 4983 err_at = 0; 4984 limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk); 4985 at = param_offset; 4986 op_err = NULL; 4987 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n"); 4988 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 4989 while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) { 4990 ptype = ntohs(phdr->param_type); 4991 plen = ntohs(phdr->param_length); 4992 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) { 4993 /* wacked parameter */ 4994 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen); 4995 goto invalid_size; 4996 } 4997 limit -= SCTP_SIZE32(plen); 4998 /*- 4999 * All parameters for all chunks that we know/understand are 5000 * listed here. We process them other places and make 5001 * appropriate stop actions per the upper bits. However this 5002 * is the generic routine processor's can call to get back 5003 * an operr.. to either incorporate (init-ack) or send. 5004 */ 5005 padded_size = SCTP_SIZE32(plen); 5006 switch (ptype) { 5007 /* Param's with variable size */ 5008 case SCTP_HEARTBEAT_INFO: 5009 case SCTP_STATE_COOKIE: 5010 case SCTP_UNRECOG_PARAM: 5011 case SCTP_ERROR_CAUSE_IND: 5012 /* ok skip fwd */ 5013 at += padded_size; 5014 break; 5015 /* Param's with variable size within a range */ 5016 case SCTP_CHUNK_LIST: 5017 case SCTP_SUPPORTED_CHUNK_EXT: 5018 if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) { 5019 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen); 5020 goto invalid_size; 5021 } 5022 at += padded_size; 5023 break; 5024 case SCTP_SUPPORTED_ADDRTYPE: 5025 if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) { 5026 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen); 5027 goto invalid_size; 5028 } 5029 at += padded_size; 5030 break; 5031 case SCTP_RANDOM: 5032 if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) { 5033 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen); 5034 goto invalid_size; 5035 } 5036 at += padded_size; 5037 break; 5038 case SCTP_SET_PRIM_ADDR: 5039 case SCTP_DEL_IP_ADDRESS: 5040 case SCTP_ADD_IP_ADDRESS: 5041 if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) && 5042 (padded_size != sizeof(struct sctp_asconf_addr_param))) { 5043 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen); 5044 goto invalid_size; 5045 } 5046 at += padded_size; 5047 break; 5048 /* Param's with a fixed size */ 5049 case SCTP_IPV4_ADDRESS: 5050 if (padded_size != sizeof(struct sctp_ipv4addr_param)) { 5051 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen); 5052 goto invalid_size; 5053 } 5054 at += padded_size; 5055 break; 5056 case SCTP_IPV6_ADDRESS: 5057 if (padded_size != sizeof(struct sctp_ipv6addr_param)) { 5058 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen); 5059 goto invalid_size; 5060 } 5061 at += padded_size; 5062 break; 5063 case SCTP_COOKIE_PRESERVE: 5064 if (padded_size != sizeof(struct sctp_cookie_perserve_param)) { 5065 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen); 5066 goto invalid_size; 5067 } 5068 at += padded_size; 5069 break; 5070 case SCTP_HAS_NAT_SUPPORT: 5071 *nat_friendly = 1; 5072 /* fall through */ 5073 case SCTP_PRSCTP_SUPPORTED: 5074 if (padded_size != sizeof(struct sctp_paramhdr)) { 5075 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen); 5076 goto invalid_size; 5077 } 5078 at += padded_size; 5079 break; 5080 case SCTP_ECN_CAPABLE: 5081 if (padded_size != sizeof(struct sctp_paramhdr)) { 5082 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen); 5083 goto invalid_size; 5084 } 5085 at += padded_size; 5086 break; 5087 case SCTP_ULP_ADAPTATION: 5088 if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) { 5089 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen); 5090 goto invalid_size; 5091 } 5092 at += padded_size; 5093 break; 5094 case SCTP_SUCCESS_REPORT: 5095 if (padded_size != sizeof(struct sctp_asconf_paramhdr)) { 5096 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen); 5097 goto invalid_size; 5098 } 5099 at += padded_size; 5100 break; 5101 case SCTP_HOSTNAME_ADDRESS: 5102 { 5103 /* We can NOT handle HOST NAME addresses!! */ 5104 int l_len; 5105 5106 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n"); 5107 *abort_processing = 1; 5108 if (op_err == NULL) { 5109 /* Ok need to try to get a mbuf */ 5110 #ifdef INET6 5111 l_len = SCTP_MIN_OVERHEAD; 5112 #else 5113 l_len = SCTP_MIN_V4_OVERHEAD; 5114 #endif 5115 l_len += sizeof(struct sctp_chunkhdr); 5116 l_len += plen; 5117 l_len += sizeof(struct sctp_paramhdr); 5118 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5119 if (op_err) { 5120 SCTP_BUF_LEN(op_err) = 0; 5121 /* 5122 * pre-reserve space for ip 5123 * and sctp header and 5124 * chunk hdr 5125 */ 5126 #ifdef INET6 5127 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5128 #else 5129 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5130 #endif 5131 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5132 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5133 } 5134 } 5135 if (op_err) { 5136 /* If we have space */ 5137 struct sctp_paramhdr s; 5138 5139 if (err_at % 4) { 5140 uint32_t cpthis = 0; 5141 5142 pad_needed = 4 - (err_at % 4); 5143 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5144 err_at += pad_needed; 5145 } 5146 s.param_type = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR); 5147 s.param_length = htons(sizeof(s) + plen); 5148 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5149 err_at += sizeof(s); 5150 if (plen > sizeof(tempbuf)) { 5151 plen = sizeof(tempbuf); 5152 } 5153 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, plen); 5154 if (phdr == NULL) { 5155 sctp_m_freem(op_err); 5156 /* 5157 * we are out of memory but 5158 * we still need to have a 5159 * look at what to do (the 5160 * system is in trouble 5161 * though). 5162 */ 5163 return (NULL); 5164 } 5165 m_copyback(op_err, err_at, plen, (caddr_t)phdr); 5166 } 5167 return (op_err); 5168 break; 5169 } 5170 default: 5171 /* 5172 * we do not recognize the parameter figure out what 5173 * we do. 5174 */ 5175 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype); 5176 if ((ptype & 0x4000) == 0x4000) { 5177 /* Report bit is set?? */ 5178 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n"); 5179 if (op_err == NULL) { 5180 int l_len; 5181 5182 /* Ok need to try to get an mbuf */ 5183 #ifdef INET6 5184 l_len = SCTP_MIN_OVERHEAD; 5185 #else 5186 l_len = SCTP_MIN_V4_OVERHEAD; 5187 #endif 5188 l_len += sizeof(struct sctp_chunkhdr); 5189 l_len += plen; 5190 l_len += sizeof(struct sctp_paramhdr); 5191 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5192 if (op_err) { 5193 SCTP_BUF_LEN(op_err) = 0; 5194 #ifdef INET6 5195 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5196 #else 5197 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5198 #endif 5199 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5200 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5201 } 5202 } 5203 if (op_err) { 5204 /* If we have space */ 5205 struct sctp_paramhdr s; 5206 5207 if (err_at % 4) { 5208 uint32_t cpthis = 0; 5209 5210 pad_needed = 4 - (err_at % 4); 5211 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5212 err_at += pad_needed; 5213 } 5214 s.param_type = htons(SCTP_UNRECOG_PARAM); 5215 s.param_length = htons(sizeof(s) + plen); 5216 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5217 err_at += sizeof(s); 5218 if (plen > sizeof(tempbuf)) { 5219 plen = sizeof(tempbuf); 5220 } 5221 phdr = sctp_get_next_param(mat, at, (struct sctp_paramhdr *)tempbuf, plen); 5222 if (phdr == NULL) { 5223 sctp_m_freem(op_err); 5224 /* 5225 * we are out of memory but 5226 * we still need to have a 5227 * look at what to do (the 5228 * system is in trouble 5229 * though). 5230 */ 5231 op_err = NULL; 5232 goto more_processing; 5233 } 5234 m_copyback(op_err, err_at, plen, (caddr_t)phdr); 5235 err_at += plen; 5236 } 5237 } 5238 more_processing: 5239 if ((ptype & 0x8000) == 0x0000) { 5240 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n"); 5241 return (op_err); 5242 } else { 5243 /* skip this chunk and continue processing */ 5244 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n"); 5245 at += SCTP_SIZE32(plen); 5246 } 5247 break; 5248 5249 } 5250 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 5251 } 5252 return (op_err); 5253 invalid_size: 5254 SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n"); 5255 *abort_processing = 1; 5256 if ((op_err == NULL) && phdr) { 5257 int l_len; 5258 #ifdef INET6 5259 l_len = SCTP_MIN_OVERHEAD; 5260 #else 5261 l_len = SCTP_MIN_V4_OVERHEAD; 5262 #endif 5263 l_len += sizeof(struct sctp_chunkhdr); 5264 l_len += (2 * sizeof(struct sctp_paramhdr)); 5265 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5266 if (op_err) { 5267 SCTP_BUF_LEN(op_err) = 0; 5268 #ifdef INET6 5269 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5270 #else 5271 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5272 #endif 5273 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5274 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5275 } 5276 } 5277 if ((op_err) && phdr) { 5278 struct sctp_paramhdr s; 5279 5280 if (err_at % 4) { 5281 uint32_t cpthis = 0; 5282 5283 pad_needed = 4 - (err_at % 4); 5284 m_copyback(op_err, err_at, pad_needed, (caddr_t)&cpthis); 5285 err_at += pad_needed; 5286 } 5287 s.param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 5288 s.param_length = htons(sizeof(s) + sizeof(struct sctp_paramhdr)); 5289 m_copyback(op_err, err_at, sizeof(s), (caddr_t)&s); 5290 err_at += sizeof(s); 5291 /* Only copy back the p-hdr that caused the issue */ 5292 m_copyback(op_err, err_at, sizeof(struct sctp_paramhdr), (caddr_t)phdr); 5293 } 5294 return (op_err); 5295 } 5296 5297 static int 5298 sctp_are_there_new_addresses(struct sctp_association *asoc, 5299 struct mbuf *in_initpkt, int offset, struct sockaddr *src) 5300 { 5301 /* 5302 * Given a INIT packet, look through the packet to verify that there 5303 * are NO new addresses. As we go through the parameters add reports 5304 * of any un-understood parameters that require an error. Also we 5305 * must return (1) to drop the packet if we see a un-understood 5306 * parameter that tells us to drop the chunk. 5307 */ 5308 struct sockaddr *sa_touse; 5309 struct sockaddr *sa; 5310 struct sctp_paramhdr *phdr, params; 5311 uint16_t ptype, plen; 5312 uint8_t fnd; 5313 struct sctp_nets *net; 5314 int check_src; 5315 #ifdef INET 5316 struct sockaddr_in sin4, *sa4; 5317 #endif 5318 #ifdef INET6 5319 struct sockaddr_in6 sin6, *sa6; 5320 #endif 5321 5322 #ifdef INET 5323 memset(&sin4, 0, sizeof(sin4)); 5324 sin4.sin_family = AF_INET; 5325 sin4.sin_len = sizeof(sin4); 5326 #endif 5327 #ifdef INET6 5328 memset(&sin6, 0, sizeof(sin6)); 5329 sin6.sin6_family = AF_INET6; 5330 sin6.sin6_len = sizeof(sin6); 5331 #endif 5332 /* First what about the src address of the pkt ? */ 5333 check_src = 0; 5334 switch (src->sa_family) { 5335 #ifdef INET 5336 case AF_INET: 5337 if (asoc->scope.ipv4_addr_legal) { 5338 check_src = 1; 5339 } 5340 break; 5341 #endif 5342 #ifdef INET6 5343 case AF_INET6: 5344 if (asoc->scope.ipv6_addr_legal) { 5345 check_src = 1; 5346 } 5347 break; 5348 #endif 5349 default: 5350 /* TSNH */ 5351 break; 5352 } 5353 if (check_src) { 5354 fnd = 0; 5355 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5356 sa = (struct sockaddr *)&net->ro._l_addr; 5357 if (sa->sa_family == src->sa_family) { 5358 #ifdef INET 5359 if (sa->sa_family == AF_INET) { 5360 struct sockaddr_in *src4; 5361 5362 sa4 = (struct sockaddr_in *)sa; 5363 src4 = (struct sockaddr_in *)src; 5364 if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) { 5365 fnd = 1; 5366 break; 5367 } 5368 } 5369 #endif 5370 #ifdef INET6 5371 if (sa->sa_family == AF_INET6) { 5372 struct sockaddr_in6 *src6; 5373 5374 sa6 = (struct sockaddr_in6 *)sa; 5375 src6 = (struct sockaddr_in6 *)src; 5376 if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) { 5377 fnd = 1; 5378 break; 5379 } 5380 } 5381 #endif 5382 } 5383 } 5384 if (fnd == 0) { 5385 /* New address added! no need to look further. */ 5386 return (1); 5387 } 5388 } 5389 /* Ok so far lets munge through the rest of the packet */ 5390 offset += sizeof(struct sctp_init_chunk); 5391 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5392 while (phdr) { 5393 sa_touse = NULL; 5394 ptype = ntohs(phdr->param_type); 5395 plen = ntohs(phdr->param_length); 5396 switch (ptype) { 5397 #ifdef INET 5398 case SCTP_IPV4_ADDRESS: 5399 { 5400 struct sctp_ipv4addr_param *p4, p4_buf; 5401 5402 if (plen != sizeof(struct sctp_ipv4addr_param)) { 5403 return (1); 5404 } 5405 phdr = sctp_get_next_param(in_initpkt, offset, 5406 (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf)); 5407 if (phdr == NULL) { 5408 return (1); 5409 } 5410 if (asoc->scope.ipv4_addr_legal) { 5411 p4 = (struct sctp_ipv4addr_param *)phdr; 5412 sin4.sin_addr.s_addr = p4->addr; 5413 sa_touse = (struct sockaddr *)&sin4; 5414 } 5415 break; 5416 } 5417 #endif 5418 #ifdef INET6 5419 case SCTP_IPV6_ADDRESS: 5420 { 5421 struct sctp_ipv6addr_param *p6, p6_buf; 5422 5423 if (plen != sizeof(struct sctp_ipv6addr_param)) { 5424 return (1); 5425 } 5426 phdr = sctp_get_next_param(in_initpkt, offset, 5427 (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf)); 5428 if (phdr == NULL) { 5429 return (1); 5430 } 5431 if (asoc->scope.ipv6_addr_legal) { 5432 p6 = (struct sctp_ipv6addr_param *)phdr; 5433 memcpy((caddr_t)&sin6.sin6_addr, p6->addr, 5434 sizeof(p6->addr)); 5435 sa_touse = (struct sockaddr *)&sin6; 5436 } 5437 break; 5438 } 5439 #endif 5440 default: 5441 sa_touse = NULL; 5442 break; 5443 } 5444 if (sa_touse) { 5445 /* ok, sa_touse points to one to check */ 5446 fnd = 0; 5447 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5448 sa = (struct sockaddr *)&net->ro._l_addr; 5449 if (sa->sa_family != sa_touse->sa_family) { 5450 continue; 5451 } 5452 #ifdef INET 5453 if (sa->sa_family == AF_INET) { 5454 sa4 = (struct sockaddr_in *)sa; 5455 if (sa4->sin_addr.s_addr == 5456 sin4.sin_addr.s_addr) { 5457 fnd = 1; 5458 break; 5459 } 5460 } 5461 #endif 5462 #ifdef INET6 5463 if (sa->sa_family == AF_INET6) { 5464 sa6 = (struct sockaddr_in6 *)sa; 5465 if (SCTP6_ARE_ADDR_EQUAL( 5466 sa6, &sin6)) { 5467 fnd = 1; 5468 break; 5469 } 5470 } 5471 #endif 5472 } 5473 if (!fnd) { 5474 /* New addr added! no need to look further */ 5475 return (1); 5476 } 5477 } 5478 offset += SCTP_SIZE32(plen); 5479 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5480 } 5481 return (0); 5482 } 5483 5484 /* 5485 * Given a MBUF chain that was sent into us containing an INIT. Build a 5486 * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done 5487 * a pullup to include IPv6/4header, SCTP header and initial part of INIT 5488 * message (i.e. the struct sctp_init_msg). 5489 */ 5490 void 5491 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 5492 struct sctp_nets *src_net, struct mbuf *init_pkt, 5493 int iphlen, int offset, 5494 struct sockaddr *src, struct sockaddr *dst, 5495 struct sctphdr *sh, struct sctp_init_chunk *init_chk, 5496 uint8_t mflowtype, uint32_t mflowid, 5497 uint32_t vrf_id, uint16_t port) 5498 { 5499 struct sctp_association *asoc; 5500 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; 5501 struct sctp_init_ack_chunk *initack; 5502 struct sctp_adaptation_layer_indication *ali; 5503 struct sctp_supported_chunk_types_param *pr_supported; 5504 struct sctp_paramhdr *ph; 5505 union sctp_sockstore *over_addr; 5506 struct sctp_scoping scp; 5507 struct timeval now; 5508 #ifdef INET 5509 struct sockaddr_in *dst4 = (struct sockaddr_in *)dst; 5510 struct sockaddr_in *src4 = (struct sockaddr_in *)src; 5511 struct sockaddr_in *sin; 5512 #endif 5513 #ifdef INET6 5514 struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst; 5515 struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src; 5516 struct sockaddr_in6 *sin6; 5517 #endif 5518 struct sockaddr *to; 5519 struct sctp_state_cookie stc; 5520 struct sctp_nets *net = NULL; 5521 uint8_t *signature = NULL; 5522 int cnt_inits_to = 0; 5523 uint16_t his_limit, i_want; 5524 int abort_flag; 5525 int nat_friendly = 0; 5526 int error; 5527 struct socket *so; 5528 uint16_t num_ext, chunk_len, padding_len, parameter_len; 5529 5530 if (stcb) { 5531 asoc = &stcb->asoc; 5532 } else { 5533 asoc = NULL; 5534 } 5535 if ((asoc != NULL) && 5536 (SCTP_GET_STATE(asoc) != SCTP_STATE_COOKIE_WAIT)) { 5537 if (sctp_are_there_new_addresses(asoc, init_pkt, offset, src)) { 5538 /* 5539 * new addresses, out of here in non-cookie-wait 5540 * states 5541 * 5542 * Send an ABORT, without the new address error 5543 * cause. This looks no different than if no 5544 * listener was present. 5545 */ 5546 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5547 "Address added"); 5548 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err, 5549 mflowtype, mflowid, inp->fibnum, 5550 vrf_id, port); 5551 return; 5552 } 5553 if (src_net != NULL && (src_net->port != port)) { 5554 /* 5555 * change of remote encapsulation port, out of here 5556 * in non-cookie-wait states 5557 * 5558 * Send an ABORT, without an specific error cause. 5559 * This looks no different than if no listener was 5560 * present. 5561 */ 5562 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5563 "Remote encapsulation port changed"); 5564 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err, 5565 mflowtype, mflowid, inp->fibnum, 5566 vrf_id, port); 5567 return; 5568 } 5569 } 5570 abort_flag = 0; 5571 op_err = sctp_arethere_unrecognized_parameters(init_pkt, 5572 (offset + sizeof(struct sctp_init_chunk)), 5573 &abort_flag, (struct sctp_chunkhdr *)init_chk, &nat_friendly); 5574 if (abort_flag) { 5575 do_a_abort: 5576 if (op_err == NULL) { 5577 char msg[SCTP_DIAG_INFO_LEN]; 5578 5579 snprintf(msg, sizeof(msg), "%s:%d at %s", __FILE__, __LINE__, __func__); 5580 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5581 msg); 5582 } 5583 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 5584 init_chk->init.initiate_tag, op_err, 5585 mflowtype, mflowid, inp->fibnum, 5586 vrf_id, port); 5587 return; 5588 } 5589 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 5590 if (m == NULL) { 5591 /* No memory, INIT timer will re-attempt. */ 5592 if (op_err) 5593 sctp_m_freem(op_err); 5594 return; 5595 } 5596 chunk_len = (uint16_t)sizeof(struct sctp_init_ack_chunk); 5597 padding_len = 0; 5598 5599 /* 5600 * We might not overwrite the identification[] completely and on 5601 * some platforms time_entered will contain some padding. Therefore 5602 * zero out the cookie to avoid putting uninitialized memory on the 5603 * wire. 5604 */ 5605 memset(&stc, 0, sizeof(struct sctp_state_cookie)); 5606 5607 /* the time I built cookie */ 5608 (void)SCTP_GETTIME_TIMEVAL(&now); 5609 stc.time_entered.tv_sec = now.tv_sec; 5610 stc.time_entered.tv_usec = now.tv_usec; 5611 5612 /* populate any tie tags */ 5613 if (asoc != NULL) { 5614 /* unlock before tag selections */ 5615 stc.tie_tag_my_vtag = asoc->my_vtag_nonce; 5616 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce; 5617 stc.cookie_life = asoc->cookie_life; 5618 net = asoc->primary_destination; 5619 } else { 5620 stc.tie_tag_my_vtag = 0; 5621 stc.tie_tag_peer_vtag = 0; 5622 /* life I will award this cookie */ 5623 stc.cookie_life = inp->sctp_ep.def_cookie_life; 5624 } 5625 5626 /* copy in the ports for later check */ 5627 stc.myport = sh->dest_port; 5628 stc.peerport = sh->src_port; 5629 5630 /* 5631 * If we wanted to honor cookie life extensions, we would add to 5632 * stc.cookie_life. For now we should NOT honor any extension 5633 */ 5634 stc.site_scope = stc.local_scope = stc.loopback_scope = 0; 5635 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5636 stc.ipv6_addr_legal = 1; 5637 if (SCTP_IPV6_V6ONLY(inp)) { 5638 stc.ipv4_addr_legal = 0; 5639 } else { 5640 stc.ipv4_addr_legal = 1; 5641 } 5642 } else { 5643 stc.ipv6_addr_legal = 0; 5644 stc.ipv4_addr_legal = 1; 5645 } 5646 stc.ipv4_scope = 0; 5647 if (net == NULL) { 5648 to = src; 5649 switch (dst->sa_family) { 5650 #ifdef INET 5651 case AF_INET: 5652 { 5653 /* lookup address */ 5654 stc.address[0] = src4->sin_addr.s_addr; 5655 stc.address[1] = 0; 5656 stc.address[2] = 0; 5657 stc.address[3] = 0; 5658 stc.addr_type = SCTP_IPV4_ADDRESS; 5659 /* local from address */ 5660 stc.laddress[0] = dst4->sin_addr.s_addr; 5661 stc.laddress[1] = 0; 5662 stc.laddress[2] = 0; 5663 stc.laddress[3] = 0; 5664 stc.laddr_type = SCTP_IPV4_ADDRESS; 5665 /* scope_id is only for v6 */ 5666 stc.scope_id = 0; 5667 if ((IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) || 5668 (IN4_ISPRIVATE_ADDRESS(&dst4->sin_addr))) { 5669 stc.ipv4_scope = 1; 5670 } 5671 /* Must use the address in this case */ 5672 if (sctp_is_address_on_local_host(src, vrf_id)) { 5673 stc.loopback_scope = 1; 5674 stc.ipv4_scope = 1; 5675 stc.site_scope = 1; 5676 stc.local_scope = 0; 5677 } 5678 break; 5679 } 5680 #endif 5681 #ifdef INET6 5682 case AF_INET6: 5683 { 5684 stc.addr_type = SCTP_IPV6_ADDRESS; 5685 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr)); 5686 stc.scope_id = ntohs(in6_getscope(&src6->sin6_addr)); 5687 if (sctp_is_address_on_local_host(src, vrf_id)) { 5688 stc.loopback_scope = 1; 5689 stc.local_scope = 0; 5690 stc.site_scope = 1; 5691 stc.ipv4_scope = 1; 5692 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr) || 5693 IN6_IS_ADDR_LINKLOCAL(&dst6->sin6_addr)) { 5694 /* 5695 * If the new destination or source 5696 * is a LINK_LOCAL we must have 5697 * common both site and local scope. 5698 * Don't set local scope though 5699 * since we must depend on the 5700 * source to be added implicitly. We 5701 * cannot assure just because we 5702 * share one link that all links are 5703 * common. 5704 */ 5705 stc.local_scope = 0; 5706 stc.site_scope = 1; 5707 stc.ipv4_scope = 1; 5708 /* 5709 * we start counting for the private 5710 * address stuff at 1. since the 5711 * link local we source from won't 5712 * show up in our scoped count. 5713 */ 5714 cnt_inits_to = 1; 5715 /* 5716 * pull out the scope_id from 5717 * incoming pkt 5718 */ 5719 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr) || 5720 IN6_IS_ADDR_SITELOCAL(&dst6->sin6_addr)) { 5721 /* 5722 * If the new destination or source 5723 * is SITE_LOCAL then we must have 5724 * site scope in common. 5725 */ 5726 stc.site_scope = 1; 5727 } 5728 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr)); 5729 stc.laddr_type = SCTP_IPV6_ADDRESS; 5730 break; 5731 } 5732 #endif 5733 default: 5734 /* TSNH */ 5735 goto do_a_abort; 5736 break; 5737 } 5738 } else { 5739 /* set the scope per the existing tcb */ 5740 5741 #ifdef INET6 5742 struct sctp_nets *lnet; 5743 #endif 5744 5745 stc.loopback_scope = asoc->scope.loopback_scope; 5746 stc.ipv4_scope = asoc->scope.ipv4_local_scope; 5747 stc.site_scope = asoc->scope.site_scope; 5748 stc.local_scope = asoc->scope.local_scope; 5749 #ifdef INET6 5750 /* Why do we not consider IPv4 LL addresses? */ 5751 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 5752 if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) { 5753 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) { 5754 /* 5755 * if we have a LL address, start 5756 * counting at 1. 5757 */ 5758 cnt_inits_to = 1; 5759 } 5760 } 5761 } 5762 #endif 5763 /* use the net pointer */ 5764 to = (struct sockaddr *)&net->ro._l_addr; 5765 switch (to->sa_family) { 5766 #ifdef INET 5767 case AF_INET: 5768 sin = (struct sockaddr_in *)to; 5769 stc.address[0] = sin->sin_addr.s_addr; 5770 stc.address[1] = 0; 5771 stc.address[2] = 0; 5772 stc.address[3] = 0; 5773 stc.addr_type = SCTP_IPV4_ADDRESS; 5774 if (net->src_addr_selected == 0) { 5775 /* 5776 * strange case here, the INIT should have 5777 * did the selection. 5778 */ 5779 net->ro._s_addr = sctp_source_address_selection(inp, 5780 stcb, (sctp_route_t *)&net->ro, 5781 net, 0, vrf_id); 5782 if (net->ro._s_addr == NULL) 5783 return; 5784 5785 net->src_addr_selected = 1; 5786 5787 } 5788 stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr; 5789 stc.laddress[1] = 0; 5790 stc.laddress[2] = 0; 5791 stc.laddress[3] = 0; 5792 stc.laddr_type = SCTP_IPV4_ADDRESS; 5793 /* scope_id is only for v6 */ 5794 stc.scope_id = 0; 5795 break; 5796 #endif 5797 #ifdef INET6 5798 case AF_INET6: 5799 sin6 = (struct sockaddr_in6 *)to; 5800 memcpy(&stc.address, &sin6->sin6_addr, 5801 sizeof(struct in6_addr)); 5802 stc.addr_type = SCTP_IPV6_ADDRESS; 5803 stc.scope_id = sin6->sin6_scope_id; 5804 if (net->src_addr_selected == 0) { 5805 /* 5806 * strange case here, the INIT should have 5807 * done the selection. 5808 */ 5809 net->ro._s_addr = sctp_source_address_selection(inp, 5810 stcb, (sctp_route_t *)&net->ro, 5811 net, 0, vrf_id); 5812 if (net->ro._s_addr == NULL) 5813 return; 5814 5815 net->src_addr_selected = 1; 5816 } 5817 memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr, 5818 sizeof(struct in6_addr)); 5819 stc.laddr_type = SCTP_IPV6_ADDRESS; 5820 break; 5821 #endif 5822 } 5823 } 5824 /* Now lets put the SCTP header in place */ 5825 initack = mtod(m, struct sctp_init_ack_chunk *); 5826 /* Save it off for quick ref */ 5827 stc.peers_vtag = ntohl(init_chk->init.initiate_tag); 5828 /* who are we */ 5829 memcpy(stc.identification, SCTP_VERSION_STRING, 5830 min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification))); 5831 memset(stc.reserved, 0, SCTP_RESERVE_SPACE); 5832 /* now the chunk header */ 5833 initack->ch.chunk_type = SCTP_INITIATION_ACK; 5834 initack->ch.chunk_flags = 0; 5835 /* fill in later from mbuf we build */ 5836 initack->ch.chunk_length = 0; 5837 /* place in my tag */ 5838 if ((asoc != NULL) && 5839 ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 5840 (SCTP_GET_STATE(asoc) == SCTP_STATE_INUSE) || 5841 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED))) { 5842 /* re-use the v-tags and init-seq here */ 5843 initack->init.initiate_tag = htonl(asoc->my_vtag); 5844 initack->init.initial_tsn = htonl(asoc->init_seq_number); 5845 } else { 5846 uint32_t vtag, itsn; 5847 5848 if (asoc) { 5849 atomic_add_int(&asoc->refcnt, 1); 5850 SCTP_TCB_UNLOCK(stcb); 5851 new_tag: 5852 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5853 if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) { 5854 /* 5855 * Got a duplicate vtag on some guy behind a 5856 * nat make sure we don't use it. 5857 */ 5858 goto new_tag; 5859 } 5860 initack->init.initiate_tag = htonl(vtag); 5861 /* get a TSN to use too */ 5862 itsn = sctp_select_initial_TSN(&inp->sctp_ep); 5863 initack->init.initial_tsn = htonl(itsn); 5864 SCTP_TCB_LOCK(stcb); 5865 atomic_add_int(&asoc->refcnt, -1); 5866 } else { 5867 SCTP_INP_INCR_REF(inp); 5868 SCTP_INP_RUNLOCK(inp); 5869 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5870 initack->init.initiate_tag = htonl(vtag); 5871 /* get a TSN to use too */ 5872 initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep)); 5873 SCTP_INP_RLOCK(inp); 5874 SCTP_INP_DECR_REF(inp); 5875 } 5876 } 5877 /* save away my tag to */ 5878 stc.my_vtag = initack->init.initiate_tag; 5879 5880 /* set up some of the credits. */ 5881 so = inp->sctp_socket; 5882 if (so == NULL) { 5883 /* memory problem */ 5884 sctp_m_freem(m); 5885 return; 5886 } else { 5887 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND)); 5888 } 5889 /* set what I want */ 5890 his_limit = ntohs(init_chk->init.num_inbound_streams); 5891 /* choose what I want */ 5892 if (asoc != NULL) { 5893 if (asoc->streamoutcnt > asoc->pre_open_streams) { 5894 i_want = asoc->streamoutcnt; 5895 } else { 5896 i_want = asoc->pre_open_streams; 5897 } 5898 } else { 5899 i_want = inp->sctp_ep.pre_open_stream_count; 5900 } 5901 if (his_limit < i_want) { 5902 /* I Want more :< */ 5903 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams; 5904 } else { 5905 /* I can have what I want :> */ 5906 initack->init.num_outbound_streams = htons(i_want); 5907 } 5908 /* tell him his limit. */ 5909 initack->init.num_inbound_streams = 5910 htons(inp->sctp_ep.max_open_streams_intome); 5911 5912 /* adaptation layer indication parameter */ 5913 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 5914 parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication); 5915 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 5916 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 5917 ali->ph.param_length = htons(parameter_len); 5918 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator); 5919 chunk_len += parameter_len; 5920 } 5921 /* ECN parameter */ 5922 if (((asoc != NULL) && (asoc->ecn_supported == 1)) || 5923 ((asoc == NULL) && (inp->ecn_supported == 1))) { 5924 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5925 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5926 ph->param_type = htons(SCTP_ECN_CAPABLE); 5927 ph->param_length = htons(parameter_len); 5928 chunk_len += parameter_len; 5929 } 5930 /* PR-SCTP supported parameter */ 5931 if (((asoc != NULL) && (asoc->prsctp_supported == 1)) || 5932 ((asoc == NULL) && (inp->prsctp_supported == 1))) { 5933 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5934 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5935 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 5936 ph->param_length = htons(parameter_len); 5937 chunk_len += parameter_len; 5938 } 5939 /* Add NAT friendly parameter */ 5940 if (nat_friendly) { 5941 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5942 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5943 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 5944 ph->param_length = htons(parameter_len); 5945 chunk_len += parameter_len; 5946 } 5947 /* And now tell the peer which extensions we support */ 5948 num_ext = 0; 5949 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 5950 if (((asoc != NULL) && (asoc->prsctp_supported == 1)) || 5951 ((asoc == NULL) && (inp->prsctp_supported == 1))) { 5952 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 5953 if (((asoc != NULL) && (asoc->idata_supported == 1)) || 5954 ((asoc == NULL) && (inp->idata_supported == 1))) { 5955 pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN; 5956 } 5957 } 5958 if (((asoc != NULL) && (asoc->auth_supported == 1)) || 5959 ((asoc == NULL) && (inp->auth_supported == 1))) { 5960 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 5961 } 5962 if (((asoc != NULL) && (asoc->asconf_supported == 1)) || 5963 ((asoc == NULL) && (inp->asconf_supported == 1))) { 5964 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 5965 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 5966 } 5967 if (((asoc != NULL) && (asoc->reconfig_supported == 1)) || 5968 ((asoc == NULL) && (inp->reconfig_supported == 1))) { 5969 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 5970 } 5971 if (((asoc != NULL) && (asoc->idata_supported == 1)) || 5972 ((asoc == NULL) && (inp->idata_supported == 1))) { 5973 pr_supported->chunk_types[num_ext++] = SCTP_IDATA; 5974 } 5975 if (((asoc != NULL) && (asoc->nrsack_supported == 1)) || 5976 ((asoc == NULL) && (inp->nrsack_supported == 1))) { 5977 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 5978 } 5979 if (((asoc != NULL) && (asoc->pktdrop_supported == 1)) || 5980 ((asoc == NULL) && (inp->pktdrop_supported == 1))) { 5981 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 5982 } 5983 if (num_ext > 0) { 5984 parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext; 5985 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 5986 pr_supported->ph.param_length = htons(parameter_len); 5987 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 5988 chunk_len += parameter_len; 5989 } 5990 /* add authentication parameters */ 5991 if (((asoc != NULL) && (asoc->auth_supported == 1)) || 5992 ((asoc == NULL) && (inp->auth_supported == 1))) { 5993 struct sctp_auth_random *randp; 5994 struct sctp_auth_hmac_algo *hmacs; 5995 struct sctp_auth_chunk_list *chunks; 5996 5997 if (padding_len > 0) { 5998 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 5999 chunk_len += padding_len; 6000 padding_len = 0; 6001 } 6002 /* generate and add RANDOM parameter */ 6003 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 6004 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + 6005 SCTP_AUTH_RANDOM_SIZE_DEFAULT; 6006 randp->ph.param_type = htons(SCTP_RANDOM); 6007 randp->ph.param_length = htons(parameter_len); 6008 SCTP_READ_RANDOM(randp->random_data, SCTP_AUTH_RANDOM_SIZE_DEFAULT); 6009 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6010 chunk_len += parameter_len; 6011 6012 if (padding_len > 0) { 6013 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6014 chunk_len += padding_len; 6015 padding_len = 0; 6016 } 6017 /* add HMAC_ALGO parameter */ 6018 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 6019 parameter_len = (uint16_t)sizeof(struct sctp_auth_hmac_algo) + 6020 sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs, 6021 (uint8_t *)hmacs->hmac_ids); 6022 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 6023 hmacs->ph.param_length = htons(parameter_len); 6024 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6025 chunk_len += parameter_len; 6026 6027 if (padding_len > 0) { 6028 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6029 chunk_len += padding_len; 6030 padding_len = 0; 6031 } 6032 /* add CHUNKS parameter */ 6033 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 6034 parameter_len = (uint16_t)sizeof(struct sctp_auth_chunk_list) + 6035 sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks, 6036 chunks->chunk_types); 6037 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 6038 chunks->ph.param_length = htons(parameter_len); 6039 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6040 chunk_len += parameter_len; 6041 } 6042 SCTP_BUF_LEN(m) = chunk_len; 6043 m_last = m; 6044 /* now the addresses */ 6045 /* 6046 * To optimize this we could put the scoping stuff into a structure 6047 * and remove the individual uint8's from the stc structure. Then we 6048 * could just sifa in the address within the stc.. but for now this 6049 * is a quick hack to get the address stuff teased apart. 6050 */ 6051 scp.ipv4_addr_legal = stc.ipv4_addr_legal; 6052 scp.ipv6_addr_legal = stc.ipv6_addr_legal; 6053 scp.loopback_scope = stc.loopback_scope; 6054 scp.ipv4_local_scope = stc.ipv4_scope; 6055 scp.local_scope = stc.local_scope; 6056 scp.site_scope = stc.site_scope; 6057 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last, 6058 cnt_inits_to, 6059 &padding_len, &chunk_len); 6060 /* padding_len can only be positive, if no addresses have been added */ 6061 if (padding_len > 0) { 6062 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6063 chunk_len += padding_len; 6064 SCTP_BUF_LEN(m) += padding_len; 6065 padding_len = 0; 6066 } 6067 /* tack on the operational error if present */ 6068 if (op_err) { 6069 parameter_len = 0; 6070 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 6071 parameter_len += SCTP_BUF_LEN(m_tmp); 6072 } 6073 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6074 SCTP_BUF_NEXT(m_last) = op_err; 6075 while (SCTP_BUF_NEXT(m_last) != NULL) { 6076 m_last = SCTP_BUF_NEXT(m_last); 6077 } 6078 chunk_len += parameter_len; 6079 } 6080 if (padding_len > 0) { 6081 m_last = sctp_add_pad_tombuf(m_last, padding_len); 6082 if (m_last == NULL) { 6083 /* Houston we have a problem, no space */ 6084 sctp_m_freem(m); 6085 return; 6086 } 6087 chunk_len += padding_len; 6088 padding_len = 0; 6089 } 6090 /* Now we must build a cookie */ 6091 m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature); 6092 if (m_cookie == NULL) { 6093 /* memory problem */ 6094 sctp_m_freem(m); 6095 return; 6096 } 6097 /* Now append the cookie to the end and update the space/size */ 6098 SCTP_BUF_NEXT(m_last) = m_cookie; 6099 parameter_len = 0; 6100 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 6101 parameter_len += SCTP_BUF_LEN(m_tmp); 6102 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 6103 m_last = m_tmp; 6104 } 6105 } 6106 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6107 chunk_len += parameter_len; 6108 6109 /* 6110 * Place in the size, but we don't include the last pad (if any) in 6111 * the INIT-ACK. 6112 */ 6113 initack->ch.chunk_length = htons(chunk_len); 6114 6115 /* 6116 * Time to sign the cookie, we don't sign over the cookie signature 6117 * though thus we set trailer. 6118 */ 6119 (void)sctp_hmac_m(SCTP_HMAC, 6120 (uint8_t *)inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)], 6121 SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr), 6122 (uint8_t *)signature, SCTP_SIGNATURE_SIZE); 6123 /* 6124 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return 6125 * here since the timer will drive a retranmission. 6126 */ 6127 if (padding_len > 0) { 6128 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 6129 sctp_m_freem(m); 6130 return; 6131 } 6132 } 6133 if (stc.loopback_scope) { 6134 over_addr = (union sctp_sockstore *)dst; 6135 } else { 6136 over_addr = NULL; 6137 } 6138 6139 if ((error = sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0, 6140 0, 0, 6141 inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag, 6142 port, over_addr, 6143 mflowtype, mflowid, 6144 SCTP_SO_NOT_LOCKED))) { 6145 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error); 6146 if (error == ENOBUFS) { 6147 if (asoc != NULL) { 6148 asoc->ifp_had_enobuf = 1; 6149 } 6150 SCTP_STAT_INCR(sctps_lowlevelerr); 6151 } 6152 } else { 6153 if (asoc != NULL) { 6154 asoc->ifp_had_enobuf = 0; 6155 } 6156 } 6157 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 6158 } 6159 6160 6161 static void 6162 sctp_prune_prsctp(struct sctp_tcb *stcb, 6163 struct sctp_association *asoc, 6164 struct sctp_sndrcvinfo *srcv, 6165 int dataout) 6166 { 6167 int freed_spc = 0; 6168 struct sctp_tmit_chunk *chk, *nchk; 6169 6170 SCTP_TCB_LOCK_ASSERT(stcb); 6171 if ((asoc->prsctp_supported) && 6172 (asoc->sent_queue_cnt_removeable > 0)) { 6173 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 6174 /* 6175 * Look for chunks marked with the PR_SCTP flag AND 6176 * the buffer space flag. If the one being sent is 6177 * equal or greater priority then purge the old one 6178 * and free some space. 6179 */ 6180 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6181 /* 6182 * This one is PR-SCTP AND buffer space 6183 * limited type 6184 */ 6185 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 6186 /* 6187 * Lower numbers equates to higher 6188 * priority so if the one we are 6189 * looking at has a larger or equal 6190 * priority we want to drop the data 6191 * and NOT retransmit it. 6192 */ 6193 if (chk->data) { 6194 /* 6195 * We release the book_size 6196 * if the mbuf is here 6197 */ 6198 int ret_spc; 6199 uint8_t sent; 6200 6201 if (chk->sent > SCTP_DATAGRAM_UNSENT) 6202 sent = 1; 6203 else 6204 sent = 0; 6205 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6206 sent, 6207 SCTP_SO_LOCKED); 6208 freed_spc += ret_spc; 6209 if (freed_spc >= dataout) { 6210 return; 6211 } 6212 } /* if chunk was present */ 6213 } /* if of sufficient priority */ 6214 } /* if chunk has enabled */ 6215 } /* tailqforeach */ 6216 6217 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 6218 /* Here we must move to the sent queue and mark */ 6219 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6220 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 6221 if (chk->data) { 6222 /* 6223 * We release the book_size 6224 * if the mbuf is here 6225 */ 6226 int ret_spc; 6227 6228 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6229 0, SCTP_SO_LOCKED); 6230 6231 freed_spc += ret_spc; 6232 if (freed_spc >= dataout) { 6233 return; 6234 } 6235 } /* end if chk->data */ 6236 } /* end if right class */ 6237 } /* end if chk pr-sctp */ 6238 } /* tailqforeachsafe (chk) */ 6239 } /* if enabled in asoc */ 6240 } 6241 6242 int 6243 sctp_get_frag_point(struct sctp_tcb *stcb, 6244 struct sctp_association *asoc) 6245 { 6246 int siz, ovh; 6247 6248 /* 6249 * For endpoints that have both v6 and v4 addresses we must reserve 6250 * room for the ipv6 header, for those that are only dealing with V4 6251 * we use a larger frag point. 6252 */ 6253 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6254 ovh = SCTP_MIN_OVERHEAD; 6255 } else { 6256 ovh = SCTP_MIN_V4_OVERHEAD; 6257 } 6258 ovh += SCTP_DATA_CHUNK_OVERHEAD(stcb); 6259 if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu) 6260 siz = asoc->smallest_mtu - ovh; 6261 else 6262 siz = (stcb->asoc.sctp_frag_point - ovh); 6263 /* 6264 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) { 6265 */ 6266 /* A data chunk MUST fit in a cluster */ 6267 /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */ 6268 /* } */ 6269 6270 /* adjust for an AUTH chunk if DATA requires auth */ 6271 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) 6272 siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 6273 6274 if (siz % 4) { 6275 /* make it an even word boundary please */ 6276 siz -= (siz % 4); 6277 } 6278 return (siz); 6279 } 6280 6281 static void 6282 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp) 6283 { 6284 /* 6285 * We assume that the user wants PR_SCTP_TTL if the user provides a 6286 * positive lifetime but does not specify any PR_SCTP policy. 6287 */ 6288 if (PR_SCTP_ENABLED(sp->sinfo_flags)) { 6289 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6290 } else if (sp->timetolive > 0) { 6291 sp->sinfo_flags |= SCTP_PR_SCTP_TTL; 6292 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6293 } else { 6294 return; 6295 } 6296 switch (PR_SCTP_POLICY(sp->sinfo_flags)) { 6297 case CHUNK_FLAGS_PR_SCTP_BUF: 6298 /* 6299 * Time to live is a priority stored in tv_sec when doing 6300 * the buffer drop thing. 6301 */ 6302 sp->ts.tv_sec = sp->timetolive; 6303 sp->ts.tv_usec = 0; 6304 break; 6305 case CHUNK_FLAGS_PR_SCTP_TTL: 6306 { 6307 struct timeval tv; 6308 6309 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6310 tv.tv_sec = sp->timetolive / 1000; 6311 tv.tv_usec = (sp->timetolive * 1000) % 1000000; 6312 /* 6313 * TODO sctp_constants.h needs alternative time 6314 * macros when _KERNEL is undefined. 6315 */ 6316 timevaladd(&sp->ts, &tv); 6317 } 6318 break; 6319 case CHUNK_FLAGS_PR_SCTP_RTX: 6320 /* 6321 * Time to live is a the number or retransmissions stored in 6322 * tv_sec. 6323 */ 6324 sp->ts.tv_sec = sp->timetolive; 6325 sp->ts.tv_usec = 0; 6326 break; 6327 default: 6328 SCTPDBG(SCTP_DEBUG_USRREQ1, 6329 "Unknown PR_SCTP policy %u.\n", 6330 PR_SCTP_POLICY(sp->sinfo_flags)); 6331 break; 6332 } 6333 } 6334 6335 static int 6336 sctp_msg_append(struct sctp_tcb *stcb, 6337 struct sctp_nets *net, 6338 struct mbuf *m, 6339 struct sctp_sndrcvinfo *srcv, int hold_stcb_lock) 6340 { 6341 int error = 0; 6342 struct mbuf *at; 6343 struct sctp_stream_queue_pending *sp = NULL; 6344 struct sctp_stream_out *strm; 6345 6346 /* 6347 * Given an mbuf chain, put it into the association send queue and 6348 * place it on the wheel 6349 */ 6350 if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) { 6351 /* Invalid stream number */ 6352 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6353 error = EINVAL; 6354 goto out_now; 6355 } 6356 if ((stcb->asoc.stream_locked) && 6357 (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) { 6358 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6359 error = EINVAL; 6360 goto out_now; 6361 } 6362 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 6363 /* Now can we send this? */ 6364 if ((SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_SENT) || 6365 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 6366 (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 6367 (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) { 6368 /* got data while shutting down */ 6369 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 6370 error = ECONNRESET; 6371 goto out_now; 6372 } 6373 sctp_alloc_a_strmoq(stcb, sp); 6374 if (sp == NULL) { 6375 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6376 error = ENOMEM; 6377 goto out_now; 6378 } 6379 sp->sinfo_flags = srcv->sinfo_flags; 6380 sp->timetolive = srcv->sinfo_timetolive; 6381 sp->ppid = srcv->sinfo_ppid; 6382 sp->context = srcv->sinfo_context; 6383 sp->fsn = 0; 6384 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 6385 sp->net = net; 6386 atomic_add_int(&sp->net->ref_count, 1); 6387 } else { 6388 sp->net = NULL; 6389 } 6390 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6391 sp->sid = srcv->sinfo_stream; 6392 sp->msg_is_complete = 1; 6393 sp->sender_all_done = 1; 6394 sp->some_taken = 0; 6395 sp->data = m; 6396 sp->tail_mbuf = NULL; 6397 sctp_set_prsctp_policy(sp); 6398 /* 6399 * We could in theory (for sendall) sifa the length in, but we would 6400 * still have to hunt through the chain since we need to setup the 6401 * tail_mbuf 6402 */ 6403 sp->length = 0; 6404 for (at = m; at; at = SCTP_BUF_NEXT(at)) { 6405 if (SCTP_BUF_NEXT(at) == NULL) 6406 sp->tail_mbuf = at; 6407 sp->length += SCTP_BUF_LEN(at); 6408 } 6409 if (srcv->sinfo_keynumber_valid) { 6410 sp->auth_keyid = srcv->sinfo_keynumber; 6411 } else { 6412 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 6413 } 6414 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 6415 sctp_auth_key_acquire(stcb, sp->auth_keyid); 6416 sp->holds_key_ref = 1; 6417 } 6418 if (hold_stcb_lock == 0) { 6419 SCTP_TCB_SEND_LOCK(stcb); 6420 } 6421 sctp_snd_sb_alloc(stcb, sp->length); 6422 atomic_add_int(&stcb->asoc.stream_queue_cnt, 1); 6423 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 6424 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1); 6425 m = NULL; 6426 if (hold_stcb_lock == 0) { 6427 SCTP_TCB_SEND_UNLOCK(stcb); 6428 } 6429 out_now: 6430 if (m) { 6431 sctp_m_freem(m); 6432 } 6433 return (error); 6434 } 6435 6436 6437 static struct mbuf * 6438 sctp_copy_mbufchain(struct mbuf *clonechain, 6439 struct mbuf *outchain, 6440 struct mbuf **endofchain, 6441 int can_take_mbuf, 6442 int sizeofcpy, 6443 uint8_t copy_by_ref) 6444 { 6445 struct mbuf *m; 6446 struct mbuf *appendchain; 6447 caddr_t cp; 6448 int len; 6449 6450 if (endofchain == NULL) { 6451 /* error */ 6452 error_out: 6453 if (outchain) 6454 sctp_m_freem(outchain); 6455 return (NULL); 6456 } 6457 if (can_take_mbuf) { 6458 appendchain = clonechain; 6459 } else { 6460 if (!copy_by_ref && 6461 (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN))) 6462 ) { 6463 /* Its not in a cluster */ 6464 if (*endofchain == NULL) { 6465 /* lets get a mbuf cluster */ 6466 if (outchain == NULL) { 6467 /* This is the general case */ 6468 new_mbuf: 6469 outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6470 if (outchain == NULL) { 6471 goto error_out; 6472 } 6473 SCTP_BUF_LEN(outchain) = 0; 6474 *endofchain = outchain; 6475 /* get the prepend space */ 6476 SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4)); 6477 } else { 6478 /* 6479 * We really should not get a NULL 6480 * in endofchain 6481 */ 6482 /* find end */ 6483 m = outchain; 6484 while (m) { 6485 if (SCTP_BUF_NEXT(m) == NULL) { 6486 *endofchain = m; 6487 break; 6488 } 6489 m = SCTP_BUF_NEXT(m); 6490 } 6491 /* sanity */ 6492 if (*endofchain == NULL) { 6493 /* 6494 * huh, TSNH XXX maybe we 6495 * should panic 6496 */ 6497 sctp_m_freem(outchain); 6498 goto new_mbuf; 6499 } 6500 } 6501 /* get the new end of length */ 6502 len = (int)M_TRAILINGSPACE(*endofchain); 6503 } else { 6504 /* how much is left at the end? */ 6505 len = (int)M_TRAILINGSPACE(*endofchain); 6506 } 6507 /* Find the end of the data, for appending */ 6508 cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain))); 6509 6510 /* Now lets copy it out */ 6511 if (len >= sizeofcpy) { 6512 /* It all fits, copy it in */ 6513 m_copydata(clonechain, 0, sizeofcpy, cp); 6514 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6515 } else { 6516 /* fill up the end of the chain */ 6517 if (len > 0) { 6518 m_copydata(clonechain, 0, len, cp); 6519 SCTP_BUF_LEN((*endofchain)) += len; 6520 /* now we need another one */ 6521 sizeofcpy -= len; 6522 } 6523 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6524 if (m == NULL) { 6525 /* We failed */ 6526 goto error_out; 6527 } 6528 SCTP_BUF_NEXT((*endofchain)) = m; 6529 *endofchain = m; 6530 cp = mtod((*endofchain), caddr_t); 6531 m_copydata(clonechain, len, sizeofcpy, cp); 6532 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6533 } 6534 return (outchain); 6535 } else { 6536 /* copy the old fashion way */ 6537 appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT); 6538 #ifdef SCTP_MBUF_LOGGING 6539 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6540 sctp_log_mbc(appendchain, SCTP_MBUF_ICOPY); 6541 } 6542 #endif 6543 } 6544 } 6545 if (appendchain == NULL) { 6546 /* error */ 6547 if (outchain) 6548 sctp_m_freem(outchain); 6549 return (NULL); 6550 } 6551 if (outchain) { 6552 /* tack on to the end */ 6553 if (*endofchain != NULL) { 6554 SCTP_BUF_NEXT(((*endofchain))) = appendchain; 6555 } else { 6556 m = outchain; 6557 while (m) { 6558 if (SCTP_BUF_NEXT(m) == NULL) { 6559 SCTP_BUF_NEXT(m) = appendchain; 6560 break; 6561 } 6562 m = SCTP_BUF_NEXT(m); 6563 } 6564 } 6565 /* 6566 * save off the end and update the end-chain position 6567 */ 6568 m = appendchain; 6569 while (m) { 6570 if (SCTP_BUF_NEXT(m) == NULL) { 6571 *endofchain = m; 6572 break; 6573 } 6574 m = SCTP_BUF_NEXT(m); 6575 } 6576 return (outchain); 6577 } else { 6578 /* save off the end and update the end-chain position */ 6579 m = appendchain; 6580 while (m) { 6581 if (SCTP_BUF_NEXT(m) == NULL) { 6582 *endofchain = m; 6583 break; 6584 } 6585 m = SCTP_BUF_NEXT(m); 6586 } 6587 return (appendchain); 6588 } 6589 } 6590 6591 static int 6592 sctp_med_chunk_output(struct sctp_inpcb *inp, 6593 struct sctp_tcb *stcb, 6594 struct sctp_association *asoc, 6595 int *num_out, 6596 int *reason_code, 6597 int control_only, int from_where, 6598 struct timeval *now, int *now_filled, int frag_point, int so_locked 6599 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6600 SCTP_UNUSED 6601 #endif 6602 ); 6603 6604 static void 6605 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, 6606 uint32_t val SCTP_UNUSED) 6607 { 6608 struct sctp_copy_all *ca; 6609 struct mbuf *m; 6610 int ret = 0; 6611 int added_control = 0; 6612 int un_sent, do_chunk_output = 1; 6613 struct sctp_association *asoc; 6614 struct sctp_nets *net; 6615 6616 ca = (struct sctp_copy_all *)ptr; 6617 if (ca->m == NULL) { 6618 return; 6619 } 6620 if (ca->inp != inp) { 6621 /* TSNH */ 6622 return; 6623 } 6624 if (ca->sndlen > 0) { 6625 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT); 6626 if (m == NULL) { 6627 /* can't copy so we are done */ 6628 ca->cnt_failed++; 6629 return; 6630 } 6631 #ifdef SCTP_MBUF_LOGGING 6632 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6633 sctp_log_mbc(m, SCTP_MBUF_ICOPY); 6634 } 6635 #endif 6636 } else { 6637 m = NULL; 6638 } 6639 SCTP_TCB_LOCK_ASSERT(stcb); 6640 if (stcb->asoc.alternate) { 6641 net = stcb->asoc.alternate; 6642 } else { 6643 net = stcb->asoc.primary_destination; 6644 } 6645 if (ca->sndrcv.sinfo_flags & SCTP_ABORT) { 6646 /* Abort this assoc with m as the user defined reason */ 6647 if (m != NULL) { 6648 SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT); 6649 } else { 6650 m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 6651 0, M_NOWAIT, 1, MT_DATA); 6652 SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr); 6653 } 6654 if (m != NULL) { 6655 struct sctp_paramhdr *ph; 6656 6657 ph = mtod(m, struct sctp_paramhdr *); 6658 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 6659 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + ca->sndlen)); 6660 } 6661 /* 6662 * We add one here to keep the assoc from dis-appearing on 6663 * us. 6664 */ 6665 atomic_add_int(&stcb->asoc.refcnt, 1); 6666 sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED); 6667 /* 6668 * sctp_abort_an_association calls sctp_free_asoc() free 6669 * association will NOT free it since we incremented the 6670 * refcnt .. we do this to prevent it being freed and things 6671 * getting tricky since we could end up (from free_asoc) 6672 * calling inpcb_free which would get a recursive lock call 6673 * to the iterator lock.. But as a consequence of that the 6674 * stcb will return to us un-locked.. since free_asoc 6675 * returns with either no TCB or the TCB unlocked, we must 6676 * relock.. to unlock in the iterator timer :-0 6677 */ 6678 SCTP_TCB_LOCK(stcb); 6679 atomic_add_int(&stcb->asoc.refcnt, -1); 6680 goto no_chunk_output; 6681 } else { 6682 if (m) { 6683 ret = sctp_msg_append(stcb, net, m, 6684 &ca->sndrcv, 1); 6685 } 6686 asoc = &stcb->asoc; 6687 if (ca->sndrcv.sinfo_flags & SCTP_EOF) { 6688 /* shutdown this assoc */ 6689 if (TAILQ_EMPTY(&asoc->send_queue) && 6690 TAILQ_EMPTY(&asoc->sent_queue) && 6691 sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED) == 0) { 6692 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 6693 goto abort_anyway; 6694 } 6695 /* 6696 * there is nothing queued to send, so I'm 6697 * done... 6698 */ 6699 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 6700 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6701 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6702 /* 6703 * only send SHUTDOWN the first time 6704 * through 6705 */ 6706 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 6707 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 6708 } 6709 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 6710 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 6711 sctp_stop_timers_for_shutdown(stcb); 6712 sctp_send_shutdown(stcb, net); 6713 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 6714 net); 6715 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6716 asoc->primary_destination); 6717 added_control = 1; 6718 do_chunk_output = 0; 6719 } 6720 } else { 6721 /* 6722 * we still got (or just got) data to send, 6723 * so set SHUTDOWN_PENDING 6724 */ 6725 /* 6726 * XXX sockets draft says that SCTP_EOF 6727 * should be sent with no data. currently, 6728 * we will allow user data to be sent first 6729 * and move to SHUTDOWN-PENDING 6730 */ 6731 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 6732 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6733 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6734 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 6735 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 6736 } 6737 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 6738 if (TAILQ_EMPTY(&asoc->send_queue) && 6739 TAILQ_EMPTY(&asoc->sent_queue) && 6740 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 6741 struct mbuf *op_err; 6742 char msg[SCTP_DIAG_INFO_LEN]; 6743 6744 abort_anyway: 6745 snprintf(msg, sizeof(msg), 6746 "%s:%d at %s", __FILE__, __LINE__, __func__); 6747 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 6748 msg); 6749 atomic_add_int(&stcb->asoc.refcnt, 1); 6750 sctp_abort_an_association(stcb->sctp_ep, stcb, 6751 op_err, SCTP_SO_NOT_LOCKED); 6752 atomic_add_int(&stcb->asoc.refcnt, -1); 6753 goto no_chunk_output; 6754 } 6755 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6756 asoc->primary_destination); 6757 } 6758 } 6759 6760 } 6761 } 6762 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 6763 (stcb->asoc.stream_queue_cnt * SCTP_DATA_CHUNK_OVERHEAD(stcb))); 6764 6765 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 6766 (stcb->asoc.total_flight > 0) && 6767 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 6768 do_chunk_output = 0; 6769 } 6770 if (do_chunk_output) 6771 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED); 6772 else if (added_control) { 6773 int num_out, reason, now_filled = 0; 6774 struct timeval now; 6775 int frag_point; 6776 6777 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 6778 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 6779 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED); 6780 } 6781 no_chunk_output: 6782 if (ret) { 6783 ca->cnt_failed++; 6784 } else { 6785 ca->cnt_sent++; 6786 } 6787 } 6788 6789 static void 6790 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED) 6791 { 6792 struct sctp_copy_all *ca; 6793 6794 ca = (struct sctp_copy_all *)ptr; 6795 /* 6796 * Do a notify here? Kacheong suggests that the notify be done at 6797 * the send time.. so you would push up a notification if any send 6798 * failed. Don't know if this is feasible since the only failures we 6799 * have is "memory" related and if you cannot get an mbuf to send 6800 * the data you surely can't get an mbuf to send up to notify the 6801 * user you can't send the data :-> 6802 */ 6803 6804 /* now free everything */ 6805 sctp_m_freem(ca->m); 6806 SCTP_FREE(ca, SCTP_M_COPYAL); 6807 } 6808 6809 static struct mbuf * 6810 sctp_copy_out_all(struct uio *uio, int len) 6811 { 6812 struct mbuf *ret, *at; 6813 int left, willcpy, cancpy, error; 6814 6815 ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA); 6816 if (ret == NULL) { 6817 /* TSNH */ 6818 return (NULL); 6819 } 6820 left = len; 6821 SCTP_BUF_LEN(ret) = 0; 6822 /* save space for the data chunk header */ 6823 cancpy = (int)M_TRAILINGSPACE(ret); 6824 willcpy = min(cancpy, left); 6825 at = ret; 6826 while (left > 0) { 6827 /* Align data to the end */ 6828 error = uiomove(mtod(at, caddr_t), willcpy, uio); 6829 if (error) { 6830 err_out_now: 6831 sctp_m_freem(at); 6832 return (NULL); 6833 } 6834 SCTP_BUF_LEN(at) = willcpy; 6835 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0; 6836 left -= willcpy; 6837 if (left > 0) { 6838 SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg(left, 0, M_WAITOK, 1, MT_DATA); 6839 if (SCTP_BUF_NEXT(at) == NULL) { 6840 goto err_out_now; 6841 } 6842 at = SCTP_BUF_NEXT(at); 6843 SCTP_BUF_LEN(at) = 0; 6844 cancpy = (int)M_TRAILINGSPACE(at); 6845 willcpy = min(cancpy, left); 6846 } 6847 } 6848 return (ret); 6849 } 6850 6851 static int 6852 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m, 6853 struct sctp_sndrcvinfo *srcv) 6854 { 6855 int ret; 6856 struct sctp_copy_all *ca; 6857 6858 SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all), 6859 SCTP_M_COPYAL); 6860 if (ca == NULL) { 6861 sctp_m_freem(m); 6862 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6863 return (ENOMEM); 6864 } 6865 memset(ca, 0, sizeof(struct sctp_copy_all)); 6866 6867 ca->inp = inp; 6868 if (srcv) { 6869 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo)); 6870 } 6871 /* 6872 * take off the sendall flag, it would be bad if we failed to do 6873 * this :-0 6874 */ 6875 ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL; 6876 /* get length and mbuf chain */ 6877 if (uio) { 6878 ca->sndlen = (int)uio->uio_resid; 6879 ca->m = sctp_copy_out_all(uio, ca->sndlen); 6880 if (ca->m == NULL) { 6881 SCTP_FREE(ca, SCTP_M_COPYAL); 6882 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6883 return (ENOMEM); 6884 } 6885 } else { 6886 /* Gather the length of the send */ 6887 struct mbuf *mat; 6888 6889 ca->sndlen = 0; 6890 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) { 6891 ca->sndlen += SCTP_BUF_LEN(mat); 6892 } 6893 } 6894 ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL, 6895 SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES, 6896 SCTP_ASOC_ANY_STATE, 6897 (void *)ca, 0, 6898 sctp_sendall_completes, inp, 1); 6899 if (ret) { 6900 SCTP_PRINTF("Failed to initiate iterator for sendall\n"); 6901 SCTP_FREE(ca, SCTP_M_COPYAL); 6902 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 6903 return (EFAULT); 6904 } 6905 return (0); 6906 } 6907 6908 6909 void 6910 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc) 6911 { 6912 struct sctp_tmit_chunk *chk, *nchk; 6913 6914 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6915 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 6916 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6917 if (chk->data) { 6918 sctp_m_freem(chk->data); 6919 chk->data = NULL; 6920 } 6921 asoc->ctrl_queue_cnt--; 6922 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6923 } 6924 } 6925 } 6926 6927 void 6928 sctp_toss_old_asconf(struct sctp_tcb *stcb) 6929 { 6930 struct sctp_association *asoc; 6931 struct sctp_tmit_chunk *chk, *nchk; 6932 struct sctp_asconf_chunk *acp; 6933 6934 asoc = &stcb->asoc; 6935 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 6936 /* find SCTP_ASCONF chunk in queue */ 6937 if (chk->rec.chunk_id.id == SCTP_ASCONF) { 6938 if (chk->data) { 6939 acp = mtod(chk->data, struct sctp_asconf_chunk *); 6940 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) { 6941 /* Not Acked yet */ 6942 break; 6943 } 6944 } 6945 TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next); 6946 if (chk->data) { 6947 sctp_m_freem(chk->data); 6948 chk->data = NULL; 6949 } 6950 asoc->ctrl_queue_cnt--; 6951 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6952 } 6953 } 6954 } 6955 6956 6957 static void 6958 sctp_clean_up_datalist(struct sctp_tcb *stcb, 6959 struct sctp_association *asoc, 6960 struct sctp_tmit_chunk **data_list, 6961 int bundle_at, 6962 struct sctp_nets *net) 6963 { 6964 int i; 6965 struct sctp_tmit_chunk *tp1; 6966 6967 for (i = 0; i < bundle_at; i++) { 6968 /* off of the send queue */ 6969 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next); 6970 asoc->send_queue_cnt--; 6971 if (i > 0) { 6972 /* 6973 * Any chunk NOT 0 you zap the time chunk 0 gets 6974 * zapped or set based on if a RTO measurment is 6975 * needed. 6976 */ 6977 data_list[i]->do_rtt = 0; 6978 } 6979 /* record time */ 6980 data_list[i]->sent_rcv_time = net->last_sent_time; 6981 data_list[i]->rec.data.cwnd_at_send = net->cwnd; 6982 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.tsn; 6983 if (data_list[i]->whoTo == NULL) { 6984 data_list[i]->whoTo = net; 6985 atomic_add_int(&net->ref_count, 1); 6986 } 6987 /* on to the sent queue */ 6988 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead); 6989 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) { 6990 struct sctp_tmit_chunk *tpp; 6991 6992 /* need to move back */ 6993 back_up_more: 6994 tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next); 6995 if (tpp == NULL) { 6996 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next); 6997 goto all_done; 6998 } 6999 tp1 = tpp; 7000 if (SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) { 7001 goto back_up_more; 7002 } 7003 TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next); 7004 } else { 7005 TAILQ_INSERT_TAIL(&asoc->sent_queue, 7006 data_list[i], 7007 sctp_next); 7008 } 7009 all_done: 7010 /* This does not lower until the cum-ack passes it */ 7011 asoc->sent_queue_cnt++; 7012 if ((asoc->peers_rwnd <= 0) && 7013 (asoc->total_flight == 0) && 7014 (bundle_at == 1)) { 7015 /* Mark the chunk as being a window probe */ 7016 SCTP_STAT_INCR(sctps_windowprobed); 7017 } 7018 #ifdef SCTP_AUDITING_ENABLED 7019 sctp_audit_log(0xC2, 3); 7020 #endif 7021 data_list[i]->sent = SCTP_DATAGRAM_SENT; 7022 data_list[i]->snd_count = 1; 7023 data_list[i]->rec.data.chunk_was_revoked = 0; 7024 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 7025 sctp_misc_ints(SCTP_FLIGHT_LOG_UP, 7026 data_list[i]->whoTo->flight_size, 7027 data_list[i]->book_size, 7028 (uint32_t)(uintptr_t)data_list[i]->whoTo, 7029 data_list[i]->rec.data.tsn); 7030 } 7031 sctp_flight_size_increase(data_list[i]); 7032 sctp_total_flight_increase(stcb, data_list[i]); 7033 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 7034 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 7035 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 7036 } 7037 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 7038 (uint32_t)(data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 7039 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 7040 /* SWS sender side engages */ 7041 asoc->peers_rwnd = 0; 7042 } 7043 } 7044 if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) { 7045 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net); 7046 } 7047 } 7048 7049 static void 7050 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked 7051 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7052 SCTP_UNUSED 7053 #endif 7054 ) 7055 { 7056 struct sctp_tmit_chunk *chk, *nchk; 7057 7058 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 7059 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7060 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 7061 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 7062 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 7063 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) || 7064 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 7065 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 7066 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 7067 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 7068 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 7069 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 7070 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 7071 /* Stray chunks must be cleaned up */ 7072 clean_up_anyway: 7073 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 7074 if (chk->data) { 7075 sctp_m_freem(chk->data); 7076 chk->data = NULL; 7077 } 7078 asoc->ctrl_queue_cnt--; 7079 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) 7080 asoc->fwd_tsn_cnt--; 7081 sctp_free_a_chunk(stcb, chk, so_locked); 7082 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 7083 /* special handling, we must look into the param */ 7084 if (chk != asoc->str_reset) { 7085 goto clean_up_anyway; 7086 } 7087 } 7088 } 7089 } 7090 7091 static uint32_t 7092 sctp_can_we_split_this(struct sctp_tcb *stcb, uint32_t length, 7093 uint32_t space_left, uint32_t frag_point, int eeor_on) 7094 { 7095 /* 7096 * Make a decision on if I should split a msg into multiple parts. 7097 * This is only asked of incomplete messages. 7098 */ 7099 if (eeor_on) { 7100 /* 7101 * If we are doing EEOR we need to always send it if its the 7102 * entire thing, since it might be all the guy is putting in 7103 * the hopper. 7104 */ 7105 if (space_left >= length) { 7106 /*- 7107 * If we have data outstanding, 7108 * we get another chance when the sack 7109 * arrives to transmit - wait for more data 7110 */ 7111 if (stcb->asoc.total_flight == 0) { 7112 /* 7113 * If nothing is in flight, we zero the 7114 * packet counter. 7115 */ 7116 return (length); 7117 } 7118 return (0); 7119 7120 } else { 7121 /* You can fill the rest */ 7122 return (space_left); 7123 } 7124 } 7125 /*- 7126 * For those strange folk that make the send buffer 7127 * smaller than our fragmentation point, we can't 7128 * get a full msg in so we have to allow splitting. 7129 */ 7130 if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) { 7131 return (length); 7132 } 7133 if ((length <= space_left) || 7134 ((length - space_left) < SCTP_BASE_SYSCTL(sctp_min_residual))) { 7135 /* Sub-optimial residual don't split in non-eeor mode. */ 7136 return (0); 7137 } 7138 /* 7139 * If we reach here length is larger than the space_left. Do we wish 7140 * to split it for the sake of packet putting together? 7141 */ 7142 if (space_left >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) { 7143 /* Its ok to split it */ 7144 return (min(space_left, frag_point)); 7145 } 7146 /* Nope, can't split */ 7147 return (0); 7148 } 7149 7150 static uint32_t 7151 sctp_move_to_outqueue(struct sctp_tcb *stcb, 7152 struct sctp_stream_out *strq, 7153 uint32_t space_left, 7154 uint32_t frag_point, 7155 int *giveup, 7156 int eeor_mode, 7157 int *bail, 7158 int so_locked 7159 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7160 SCTP_UNUSED 7161 #endif 7162 ) 7163 { 7164 /* Move from the stream to the send_queue keeping track of the total */ 7165 struct sctp_association *asoc; 7166 struct sctp_stream_queue_pending *sp; 7167 struct sctp_tmit_chunk *chk; 7168 struct sctp_data_chunk *dchkh = NULL; 7169 struct sctp_idata_chunk *ndchkh = NULL; 7170 uint32_t to_move, length; 7171 int leading; 7172 uint8_t rcv_flags = 0; 7173 uint8_t some_taken; 7174 uint8_t send_lock_up = 0; 7175 7176 SCTP_TCB_LOCK_ASSERT(stcb); 7177 asoc = &stcb->asoc; 7178 one_more_time: 7179 /* sa_ignore FREED_MEMORY */ 7180 sp = TAILQ_FIRST(&strq->outqueue); 7181 if (sp == NULL) { 7182 if (send_lock_up == 0) { 7183 SCTP_TCB_SEND_LOCK(stcb); 7184 send_lock_up = 1; 7185 } 7186 sp = TAILQ_FIRST(&strq->outqueue); 7187 if (sp) { 7188 goto one_more_time; 7189 } 7190 if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_EXPLICIT_EOR) == 0) && 7191 (stcb->asoc.idata_supported == 0) && 7192 (strq->last_msg_incomplete)) { 7193 SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n", 7194 strq->sid, 7195 strq->last_msg_incomplete); 7196 strq->last_msg_incomplete = 0; 7197 } 7198 to_move = 0; 7199 if (send_lock_up) { 7200 SCTP_TCB_SEND_UNLOCK(stcb); 7201 send_lock_up = 0; 7202 } 7203 goto out_of; 7204 } 7205 if ((sp->msg_is_complete) && (sp->length == 0)) { 7206 if (sp->sender_all_done) { 7207 /* 7208 * We are doing differed cleanup. Last time through 7209 * when we took all the data the sender_all_done was 7210 * not set. 7211 */ 7212 if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) { 7213 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 7214 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7215 sp->sender_all_done, 7216 sp->length, 7217 sp->msg_is_complete, 7218 sp->put_last_out, 7219 send_lock_up); 7220 } 7221 if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) { 7222 SCTP_TCB_SEND_LOCK(stcb); 7223 send_lock_up = 1; 7224 } 7225 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7226 TAILQ_REMOVE(&strq->outqueue, sp, next); 7227 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7228 if ((strq->state == SCTP_STREAM_RESET_PENDING) && 7229 (strq->chunks_on_queues == 0) && 7230 TAILQ_EMPTY(&strq->outqueue)) { 7231 stcb->asoc.trigger_reset = 1; 7232 } 7233 if (sp->net) { 7234 sctp_free_remote_addr(sp->net); 7235 sp->net = NULL; 7236 } 7237 if (sp->data) { 7238 sctp_m_freem(sp->data); 7239 sp->data = NULL; 7240 } 7241 sctp_free_a_strmoq(stcb, sp, so_locked); 7242 /* we can't be locked to it */ 7243 if (send_lock_up) { 7244 SCTP_TCB_SEND_UNLOCK(stcb); 7245 send_lock_up = 0; 7246 } 7247 /* back to get the next msg */ 7248 goto one_more_time; 7249 } else { 7250 /* 7251 * sender just finished this but still holds a 7252 * reference 7253 */ 7254 *giveup = 1; 7255 to_move = 0; 7256 goto out_of; 7257 } 7258 } else { 7259 /* is there some to get */ 7260 if (sp->length == 0) { 7261 /* no */ 7262 *giveup = 1; 7263 to_move = 0; 7264 goto out_of; 7265 } else if (sp->discard_rest) { 7266 if (send_lock_up == 0) { 7267 SCTP_TCB_SEND_LOCK(stcb); 7268 send_lock_up = 1; 7269 } 7270 /* Whack down the size */ 7271 atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length); 7272 if ((stcb->sctp_socket != NULL) && 7273 ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 7274 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 7275 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length); 7276 } 7277 if (sp->data) { 7278 sctp_m_freem(sp->data); 7279 sp->data = NULL; 7280 sp->tail_mbuf = NULL; 7281 } 7282 sp->length = 0; 7283 sp->some_taken = 1; 7284 *giveup = 1; 7285 to_move = 0; 7286 goto out_of; 7287 } 7288 } 7289 some_taken = sp->some_taken; 7290 re_look: 7291 length = sp->length; 7292 if (sp->msg_is_complete) { 7293 /* The message is complete */ 7294 to_move = min(length, frag_point); 7295 if (to_move == length) { 7296 /* All of it fits in the MTU */ 7297 if (sp->some_taken) { 7298 rcv_flags |= SCTP_DATA_LAST_FRAG; 7299 } else { 7300 rcv_flags |= SCTP_DATA_NOT_FRAG; 7301 } 7302 sp->put_last_out = 1; 7303 if (sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) { 7304 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7305 } 7306 } else { 7307 /* Not all of it fits, we fragment */ 7308 if (sp->some_taken == 0) { 7309 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7310 } 7311 sp->some_taken = 1; 7312 } 7313 } else { 7314 to_move = sctp_can_we_split_this(stcb, length, space_left, frag_point, eeor_mode); 7315 if (to_move) { 7316 /*- 7317 * We use a snapshot of length in case it 7318 * is expanding during the compare. 7319 */ 7320 uint32_t llen; 7321 7322 llen = length; 7323 if (to_move >= llen) { 7324 to_move = llen; 7325 if (send_lock_up == 0) { 7326 /*- 7327 * We are taking all of an incomplete msg 7328 * thus we need a send lock. 7329 */ 7330 SCTP_TCB_SEND_LOCK(stcb); 7331 send_lock_up = 1; 7332 if (sp->msg_is_complete) { 7333 /* 7334 * the sender finished the 7335 * msg 7336 */ 7337 goto re_look; 7338 } 7339 } 7340 } 7341 if (sp->some_taken == 0) { 7342 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7343 sp->some_taken = 1; 7344 } 7345 } else { 7346 /* Nothing to take. */ 7347 *giveup = 1; 7348 to_move = 0; 7349 goto out_of; 7350 } 7351 } 7352 7353 /* If we reach here, we can copy out a chunk */ 7354 sctp_alloc_a_chunk(stcb, chk); 7355 if (chk == NULL) { 7356 /* No chunk memory */ 7357 *giveup = 1; 7358 to_move = 0; 7359 goto out_of; 7360 } 7361 /* 7362 * Setup for unordered if needed by looking at the user sent info 7363 * flags. 7364 */ 7365 if (sp->sinfo_flags & SCTP_UNORDERED) { 7366 rcv_flags |= SCTP_DATA_UNORDERED; 7367 } 7368 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 7369 (sp->sinfo_flags & SCTP_EOF) == SCTP_EOF) { 7370 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7371 } 7372 /* clear out the chunk before setting up */ 7373 memset(chk, 0, sizeof(*chk)); 7374 chk->rec.data.rcv_flags = rcv_flags; 7375 7376 if (to_move >= length) { 7377 /* we think we can steal the whole thing */ 7378 if ((sp->sender_all_done == 0) && (send_lock_up == 0)) { 7379 SCTP_TCB_SEND_LOCK(stcb); 7380 send_lock_up = 1; 7381 } 7382 if (to_move < sp->length) { 7383 /* bail, it changed */ 7384 goto dont_do_it; 7385 } 7386 chk->data = sp->data; 7387 chk->last_mbuf = sp->tail_mbuf; 7388 /* register the stealing */ 7389 sp->data = sp->tail_mbuf = NULL; 7390 } else { 7391 struct mbuf *m; 7392 7393 dont_do_it: 7394 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT); 7395 chk->last_mbuf = NULL; 7396 if (chk->data == NULL) { 7397 sp->some_taken = some_taken; 7398 sctp_free_a_chunk(stcb, chk, so_locked); 7399 *bail = 1; 7400 to_move = 0; 7401 goto out_of; 7402 } 7403 #ifdef SCTP_MBUF_LOGGING 7404 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 7405 sctp_log_mbc(chk->data, SCTP_MBUF_ICOPY); 7406 } 7407 #endif 7408 /* Pull off the data */ 7409 m_adj(sp->data, to_move); 7410 /* Now lets work our way down and compact it */ 7411 m = sp->data; 7412 while (m && (SCTP_BUF_LEN(m) == 0)) { 7413 sp->data = SCTP_BUF_NEXT(m); 7414 SCTP_BUF_NEXT(m) = NULL; 7415 if (sp->tail_mbuf == m) { 7416 /*- 7417 * Freeing tail? TSNH since 7418 * we supposedly were taking less 7419 * than the sp->length. 7420 */ 7421 #ifdef INVARIANTS 7422 panic("Huh, freing tail? - TSNH"); 7423 #else 7424 SCTP_PRINTF("Huh, freeing tail? - TSNH\n"); 7425 sp->tail_mbuf = sp->data = NULL; 7426 sp->length = 0; 7427 #endif 7428 7429 } 7430 sctp_m_free(m); 7431 m = sp->data; 7432 } 7433 } 7434 if (SCTP_BUF_IS_EXTENDED(chk->data)) { 7435 chk->copy_by_ref = 1; 7436 } else { 7437 chk->copy_by_ref = 0; 7438 } 7439 /* 7440 * get last_mbuf and counts of mb usage This is ugly but hopefully 7441 * its only one mbuf. 7442 */ 7443 if (chk->last_mbuf == NULL) { 7444 chk->last_mbuf = chk->data; 7445 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) { 7446 chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf); 7447 } 7448 } 7449 if (to_move > length) { 7450 /*- This should not happen either 7451 * since we always lower to_move to the size 7452 * of sp->length if its larger. 7453 */ 7454 #ifdef INVARIANTS 7455 panic("Huh, how can to_move be larger?"); 7456 #else 7457 SCTP_PRINTF("Huh, how can to_move be larger?\n"); 7458 sp->length = 0; 7459 #endif 7460 } else { 7461 atomic_subtract_int(&sp->length, to_move); 7462 } 7463 leading = SCTP_DATA_CHUNK_OVERHEAD(stcb); 7464 if (M_LEADINGSPACE(chk->data) < leading) { 7465 /* Not enough room for a chunk header, get some */ 7466 struct mbuf *m; 7467 7468 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 0, MT_DATA); 7469 if (m == NULL) { 7470 /* 7471 * we're in trouble here. _PREPEND below will free 7472 * all the data if there is no leading space, so we 7473 * must put the data back and restore. 7474 */ 7475 if (send_lock_up == 0) { 7476 SCTP_TCB_SEND_LOCK(stcb); 7477 send_lock_up = 1; 7478 } 7479 if (sp->data == NULL) { 7480 /* unsteal the data */ 7481 sp->data = chk->data; 7482 sp->tail_mbuf = chk->last_mbuf; 7483 } else { 7484 struct mbuf *m_tmp; 7485 7486 /* reassemble the data */ 7487 m_tmp = sp->data; 7488 sp->data = chk->data; 7489 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp; 7490 } 7491 sp->some_taken = some_taken; 7492 atomic_add_int(&sp->length, to_move); 7493 chk->data = NULL; 7494 *bail = 1; 7495 sctp_free_a_chunk(stcb, chk, so_locked); 7496 to_move = 0; 7497 goto out_of; 7498 } else { 7499 SCTP_BUF_LEN(m) = 0; 7500 SCTP_BUF_NEXT(m) = chk->data; 7501 chk->data = m; 7502 M_ALIGN(chk->data, 4); 7503 } 7504 } 7505 SCTP_BUF_PREPEND(chk->data, SCTP_DATA_CHUNK_OVERHEAD(stcb), M_NOWAIT); 7506 if (chk->data == NULL) { 7507 /* HELP, TSNH since we assured it would not above? */ 7508 #ifdef INVARIANTS 7509 panic("prepend failes HELP?"); 7510 #else 7511 SCTP_PRINTF("prepend fails HELP?\n"); 7512 sctp_free_a_chunk(stcb, chk, so_locked); 7513 #endif 7514 *bail = 1; 7515 to_move = 0; 7516 goto out_of; 7517 } 7518 sctp_snd_sb_alloc(stcb, SCTP_DATA_CHUNK_OVERHEAD(stcb)); 7519 chk->book_size = chk->send_size = (uint16_t)(to_move + SCTP_DATA_CHUNK_OVERHEAD(stcb)); 7520 chk->book_size_scale = 0; 7521 chk->sent = SCTP_DATAGRAM_UNSENT; 7522 7523 chk->flags = 0; 7524 chk->asoc = &stcb->asoc; 7525 chk->pad_inplace = 0; 7526 chk->no_fr_allowed = 0; 7527 if (stcb->asoc.idata_supported == 0) { 7528 if (rcv_flags & SCTP_DATA_UNORDERED) { 7529 /* Just use 0. The receiver ignores the values. */ 7530 chk->rec.data.mid = 0; 7531 } else { 7532 chk->rec.data.mid = strq->next_mid_ordered; 7533 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7534 strq->next_mid_ordered++; 7535 } 7536 } 7537 } else { 7538 if (rcv_flags & SCTP_DATA_UNORDERED) { 7539 chk->rec.data.mid = strq->next_mid_unordered; 7540 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7541 strq->next_mid_unordered++; 7542 } 7543 } else { 7544 chk->rec.data.mid = strq->next_mid_ordered; 7545 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7546 strq->next_mid_ordered++; 7547 } 7548 } 7549 } 7550 chk->rec.data.sid = sp->sid; 7551 chk->rec.data.ppid = sp->ppid; 7552 chk->rec.data.context = sp->context; 7553 chk->rec.data.doing_fast_retransmit = 0; 7554 7555 chk->rec.data.timetodrop = sp->ts; 7556 chk->flags = sp->act_flags; 7557 7558 if (sp->net) { 7559 chk->whoTo = sp->net; 7560 atomic_add_int(&chk->whoTo->ref_count, 1); 7561 } else 7562 chk->whoTo = NULL; 7563 7564 if (sp->holds_key_ref) { 7565 chk->auth_keyid = sp->auth_keyid; 7566 sctp_auth_key_acquire(stcb, chk->auth_keyid); 7567 chk->holds_key_ref = 1; 7568 } 7569 chk->rec.data.tsn = atomic_fetchadd_int(&asoc->sending_seq, 1); 7570 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) { 7571 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND, 7572 (uint32_t)(uintptr_t)stcb, sp->length, 7573 (uint32_t)((chk->rec.data.sid << 16) | (0x0000ffff & chk->rec.data.mid)), 7574 chk->rec.data.tsn); 7575 } 7576 if (stcb->asoc.idata_supported == 0) { 7577 dchkh = mtod(chk->data, struct sctp_data_chunk *); 7578 } else { 7579 ndchkh = mtod(chk->data, struct sctp_idata_chunk *); 7580 } 7581 /* 7582 * Put the rest of the things in place now. Size was done earlier in 7583 * previous loop prior to padding. 7584 */ 7585 7586 #ifdef SCTP_ASOCLOG_OF_TSNS 7587 SCTP_TCB_LOCK_ASSERT(stcb); 7588 if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) { 7589 asoc->tsn_out_at = 0; 7590 asoc->tsn_out_wrapped = 1; 7591 } 7592 asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.tsn; 7593 asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.sid; 7594 asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.mid; 7595 asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size; 7596 asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags; 7597 asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb; 7598 asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at; 7599 asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2; 7600 asoc->tsn_out_at++; 7601 #endif 7602 if (stcb->asoc.idata_supported == 0) { 7603 dchkh->ch.chunk_type = SCTP_DATA; 7604 dchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7605 dchkh->dp.tsn = htonl(chk->rec.data.tsn); 7606 dchkh->dp.sid = htons(strq->sid); 7607 dchkh->dp.ssn = htons((uint16_t)chk->rec.data.mid); 7608 dchkh->dp.ppid = chk->rec.data.ppid; 7609 dchkh->ch.chunk_length = htons(chk->send_size); 7610 } else { 7611 ndchkh->ch.chunk_type = SCTP_IDATA; 7612 ndchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7613 ndchkh->dp.tsn = htonl(chk->rec.data.tsn); 7614 ndchkh->dp.sid = htons(strq->sid); 7615 ndchkh->dp.reserved = htons(0); 7616 ndchkh->dp.mid = htonl(chk->rec.data.mid); 7617 if (sp->fsn == 0) 7618 ndchkh->dp.ppid_fsn.ppid = chk->rec.data.ppid; 7619 else 7620 ndchkh->dp.ppid_fsn.fsn = htonl(sp->fsn); 7621 sp->fsn++; 7622 ndchkh->ch.chunk_length = htons(chk->send_size); 7623 } 7624 /* Now advance the chk->send_size by the actual pad needed. */ 7625 if (chk->send_size < SCTP_SIZE32(chk->book_size)) { 7626 /* need a pad */ 7627 struct mbuf *lm; 7628 int pads; 7629 7630 pads = SCTP_SIZE32(chk->book_size) - chk->send_size; 7631 lm = sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf); 7632 if (lm != NULL) { 7633 chk->last_mbuf = lm; 7634 chk->pad_inplace = 1; 7635 } 7636 chk->send_size += pads; 7637 } 7638 if (PR_SCTP_ENABLED(chk->flags)) { 7639 asoc->pr_sctp_cnt++; 7640 } 7641 if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) { 7642 /* All done pull and kill the message */ 7643 if (sp->put_last_out == 0) { 7644 SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n"); 7645 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7646 sp->sender_all_done, 7647 sp->length, 7648 sp->msg_is_complete, 7649 sp->put_last_out, 7650 send_lock_up); 7651 } 7652 if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) { 7653 SCTP_TCB_SEND_LOCK(stcb); 7654 send_lock_up = 1; 7655 } 7656 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7657 TAILQ_REMOVE(&strq->outqueue, sp, next); 7658 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7659 if ((strq->state == SCTP_STREAM_RESET_PENDING) && 7660 (strq->chunks_on_queues == 0) && 7661 TAILQ_EMPTY(&strq->outqueue)) { 7662 stcb->asoc.trigger_reset = 1; 7663 } 7664 if (sp->net) { 7665 sctp_free_remote_addr(sp->net); 7666 sp->net = NULL; 7667 } 7668 if (sp->data) { 7669 sctp_m_freem(sp->data); 7670 sp->data = NULL; 7671 } 7672 sctp_free_a_strmoq(stcb, sp, so_locked); 7673 } 7674 asoc->chunks_on_out_queue++; 7675 strq->chunks_on_queues++; 7676 TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next); 7677 asoc->send_queue_cnt++; 7678 out_of: 7679 if (send_lock_up) { 7680 SCTP_TCB_SEND_UNLOCK(stcb); 7681 } 7682 return (to_move); 7683 } 7684 7685 7686 static void 7687 sctp_fill_outqueue(struct sctp_tcb *stcb, 7688 struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked 7689 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7690 SCTP_UNUSED 7691 #endif 7692 ) 7693 { 7694 struct sctp_association *asoc; 7695 struct sctp_stream_out *strq; 7696 uint32_t space_left, moved, total_moved; 7697 int bail, giveup; 7698 7699 SCTP_TCB_LOCK_ASSERT(stcb); 7700 asoc = &stcb->asoc; 7701 total_moved = 0; 7702 switch (net->ro._l_addr.sa.sa_family) { 7703 #ifdef INET 7704 case AF_INET: 7705 space_left = net->mtu - SCTP_MIN_V4_OVERHEAD; 7706 break; 7707 #endif 7708 #ifdef INET6 7709 case AF_INET6: 7710 space_left = net->mtu - SCTP_MIN_OVERHEAD; 7711 break; 7712 #endif 7713 default: 7714 /* TSNH */ 7715 space_left = net->mtu; 7716 break; 7717 } 7718 /* Need an allowance for the data chunk header too */ 7719 space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb); 7720 7721 /* must make even word boundary */ 7722 space_left &= 0xfffffffc; 7723 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7724 giveup = 0; 7725 bail = 0; 7726 while ((space_left > 0) && (strq != NULL)) { 7727 moved = sctp_move_to_outqueue(stcb, strq, space_left, frag_point, 7728 &giveup, eeor_mode, &bail, so_locked); 7729 stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved); 7730 if ((giveup != 0) || (bail != 0)) { 7731 break; 7732 } 7733 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7734 total_moved += moved; 7735 space_left -= moved; 7736 if (space_left >= SCTP_DATA_CHUNK_OVERHEAD(stcb)) { 7737 space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb); 7738 } else { 7739 space_left = 0; 7740 } 7741 space_left &= 0xfffffffc; 7742 } 7743 if (bail != 0) 7744 *quit_now = 1; 7745 7746 stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc); 7747 7748 if (total_moved == 0) { 7749 if ((stcb->asoc.sctp_cmt_on_off == 0) && 7750 (net == stcb->asoc.primary_destination)) { 7751 /* ran dry for primary network net */ 7752 SCTP_STAT_INCR(sctps_primary_randry); 7753 } else if (stcb->asoc.sctp_cmt_on_off > 0) { 7754 /* ran dry with CMT on */ 7755 SCTP_STAT_INCR(sctps_cmt_randry); 7756 } 7757 } 7758 } 7759 7760 void 7761 sctp_fix_ecn_echo(struct sctp_association *asoc) 7762 { 7763 struct sctp_tmit_chunk *chk; 7764 7765 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7766 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 7767 chk->sent = SCTP_DATAGRAM_UNSENT; 7768 } 7769 } 7770 } 7771 7772 void 7773 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net) 7774 { 7775 struct sctp_association *asoc; 7776 struct sctp_tmit_chunk *chk; 7777 struct sctp_stream_queue_pending *sp; 7778 unsigned int i; 7779 7780 if (net == NULL) { 7781 return; 7782 } 7783 asoc = &stcb->asoc; 7784 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 7785 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) { 7786 if (sp->net == net) { 7787 sctp_free_remote_addr(sp->net); 7788 sp->net = NULL; 7789 } 7790 } 7791 } 7792 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7793 if (chk->whoTo == net) { 7794 sctp_free_remote_addr(chk->whoTo); 7795 chk->whoTo = NULL; 7796 } 7797 } 7798 } 7799 7800 int 7801 sctp_med_chunk_output(struct sctp_inpcb *inp, 7802 struct sctp_tcb *stcb, 7803 struct sctp_association *asoc, 7804 int *num_out, 7805 int *reason_code, 7806 int control_only, int from_where, 7807 struct timeval *now, int *now_filled, int frag_point, int so_locked 7808 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7809 SCTP_UNUSED 7810 #endif 7811 ) 7812 { 7813 /** 7814 * Ok this is the generic chunk service queue. we must do the 7815 * following: 7816 * - Service the stream queue that is next, moving any 7817 * message (note I must get a complete message i.e. FIRST/MIDDLE and 7818 * LAST to the out queue in one pass) and assigning TSN's. This 7819 * only applys though if the peer does not support NDATA. For NDATA 7820 * chunks its ok to not send the entire message ;-) 7821 * - Check to see if the cwnd/rwnd allows any output, if so we go ahead and 7822 * fomulate and send the low level chunks. Making sure to combine 7823 * any control in the control chunk queue also. 7824 */ 7825 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; 7826 struct mbuf *outchain, *endoutchain; 7827 struct sctp_tmit_chunk *chk, *nchk; 7828 7829 /* temp arrays for unlinking */ 7830 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 7831 int no_fragmentflg, error; 7832 unsigned int max_rwnd_per_dest, max_send_per_dest; 7833 int one_chunk, hbflag, skip_data_for_this_net; 7834 int asconf, cookie, no_out_cnt; 7835 int bundle_at, ctl_cnt, no_data_chunks, eeor_mode; 7836 unsigned int mtu, r_mtu, omtu, mx_mtu, to_out; 7837 int tsns_sent = 0; 7838 uint32_t auth_offset = 0; 7839 struct sctp_auth_chunk *auth = NULL; 7840 uint16_t auth_keyid; 7841 int override_ok = 1; 7842 int skip_fill_up = 0; 7843 int data_auth_reqd = 0; 7844 7845 /* 7846 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the 7847 * destination. 7848 */ 7849 int quit_now = 0; 7850 7851 *num_out = 0; 7852 *reason_code = 0; 7853 auth_keyid = stcb->asoc.authinfo.active_keyid; 7854 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) || 7855 (asoc->state & SCTP_STATE_SHUTDOWN_RECEIVED) || 7856 (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 7857 eeor_mode = 1; 7858 } else { 7859 eeor_mode = 0; 7860 } 7861 ctl_cnt = no_out_cnt = asconf = cookie = 0; 7862 /* 7863 * First lets prime the pump. For each destination, if there is room 7864 * in the flight size, attempt to pull an MTU's worth out of the 7865 * stream queues into the general send_queue 7866 */ 7867 #ifdef SCTP_AUDITING_ENABLED 7868 sctp_audit_log(0xC2, 2); 7869 #endif 7870 SCTP_TCB_LOCK_ASSERT(stcb); 7871 hbflag = 0; 7872 if (control_only) 7873 no_data_chunks = 1; 7874 else 7875 no_data_chunks = 0; 7876 7877 /* Nothing to possible to send? */ 7878 if ((TAILQ_EMPTY(&asoc->control_send_queue) || 7879 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) && 7880 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7881 TAILQ_EMPTY(&asoc->send_queue) && 7882 sctp_is_there_unsent_data(stcb, so_locked) == 0) { 7883 nothing_to_send: 7884 *reason_code = 9; 7885 return (0); 7886 } 7887 if (asoc->peers_rwnd == 0) { 7888 /* No room in peers rwnd */ 7889 *reason_code = 1; 7890 if (asoc->total_flight > 0) { 7891 /* we are allowed one chunk in flight */ 7892 no_data_chunks = 1; 7893 } 7894 } 7895 if (stcb->asoc.ecn_echo_cnt_onq) { 7896 /* Record where a sack goes, if any */ 7897 if (no_data_chunks && 7898 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) { 7899 /* Nothing but ECNe to send - we don't do that */ 7900 goto nothing_to_send; 7901 } 7902 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7903 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7904 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 7905 sack_goes_to = chk->whoTo; 7906 break; 7907 } 7908 } 7909 } 7910 max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets); 7911 if (stcb->sctp_socket) 7912 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets; 7913 else 7914 max_send_per_dest = 0; 7915 if (no_data_chunks == 0) { 7916 /* How many non-directed chunks are there? */ 7917 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7918 if (chk->whoTo == NULL) { 7919 /* 7920 * We already have non-directed chunks on 7921 * the queue, no need to do a fill-up. 7922 */ 7923 skip_fill_up = 1; 7924 break; 7925 } 7926 } 7927 7928 } 7929 if ((no_data_chunks == 0) && 7930 (skip_fill_up == 0) && 7931 (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) { 7932 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 7933 /* 7934 * This for loop we are in takes in each net, if 7935 * its's got space in cwnd and has data sent to it 7936 * (when CMT is off) then it calls 7937 * sctp_fill_outqueue for the net. This gets data on 7938 * the send queue for that network. 7939 * 7940 * In sctp_fill_outqueue TSN's are assigned and data 7941 * is copied out of the stream buffers. Note mostly 7942 * copy by reference (we hope). 7943 */ 7944 net->window_probe = 0; 7945 if ((net != stcb->asoc.alternate) && 7946 ((net->dest_state & SCTP_ADDR_PF) || 7947 (!(net->dest_state & SCTP_ADDR_REACHABLE)) || 7948 (net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 7949 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7950 sctp_log_cwnd(stcb, net, 1, 7951 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7952 } 7953 continue; 7954 } 7955 if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) && 7956 (net->flight_size == 0)) { 7957 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net); 7958 } 7959 if (net->flight_size >= net->cwnd) { 7960 /* skip this network, no room - can't fill */ 7961 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7962 sctp_log_cwnd(stcb, net, 3, 7963 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7964 } 7965 continue; 7966 } 7967 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7968 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7969 } 7970 sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked); 7971 if (quit_now) { 7972 /* memory alloc failure */ 7973 no_data_chunks = 1; 7974 break; 7975 } 7976 } 7977 } 7978 /* now service each destination and send out what we can for it */ 7979 /* Nothing to send? */ 7980 if (TAILQ_EMPTY(&asoc->control_send_queue) && 7981 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7982 TAILQ_EMPTY(&asoc->send_queue)) { 7983 *reason_code = 8; 7984 return (0); 7985 } 7986 if (asoc->sctp_cmt_on_off > 0) { 7987 /* get the last start point */ 7988 start_at = asoc->last_net_cmt_send_started; 7989 if (start_at == NULL) { 7990 /* null so to beginning */ 7991 start_at = TAILQ_FIRST(&asoc->nets); 7992 } else { 7993 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next); 7994 if (start_at == NULL) { 7995 start_at = TAILQ_FIRST(&asoc->nets); 7996 } 7997 } 7998 asoc->last_net_cmt_send_started = start_at; 7999 } else { 8000 start_at = TAILQ_FIRST(&asoc->nets); 8001 } 8002 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 8003 if (chk->whoTo == NULL) { 8004 if (asoc->alternate) { 8005 chk->whoTo = asoc->alternate; 8006 } else { 8007 chk->whoTo = asoc->primary_destination; 8008 } 8009 atomic_add_int(&chk->whoTo->ref_count, 1); 8010 } 8011 } 8012 old_start_at = NULL; 8013 again_one_more_time: 8014 for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) { 8015 /* how much can we send? */ 8016 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */ 8017 if (old_start_at && (old_start_at == net)) { 8018 /* through list ocmpletely. */ 8019 break; 8020 } 8021 tsns_sent = 0xa; 8022 if (TAILQ_EMPTY(&asoc->control_send_queue) && 8023 TAILQ_EMPTY(&asoc->asconf_send_queue) && 8024 (net->flight_size >= net->cwnd)) { 8025 /* 8026 * Nothing on control or asconf and flight is full, 8027 * we can skip even in the CMT case. 8028 */ 8029 continue; 8030 } 8031 bundle_at = 0; 8032 endoutchain = outchain = NULL; 8033 no_fragmentflg = 1; 8034 one_chunk = 0; 8035 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 8036 skip_data_for_this_net = 1; 8037 } else { 8038 skip_data_for_this_net = 0; 8039 } 8040 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8041 #ifdef INET 8042 case AF_INET: 8043 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8044 break; 8045 #endif 8046 #ifdef INET6 8047 case AF_INET6: 8048 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8049 break; 8050 #endif 8051 default: 8052 /* TSNH */ 8053 mtu = net->mtu; 8054 break; 8055 } 8056 mx_mtu = mtu; 8057 to_out = 0; 8058 if (mtu > asoc->peers_rwnd) { 8059 if (asoc->total_flight > 0) { 8060 /* We have a packet in flight somewhere */ 8061 r_mtu = asoc->peers_rwnd; 8062 } else { 8063 /* We are always allowed to send one MTU out */ 8064 one_chunk = 1; 8065 r_mtu = mtu; 8066 } 8067 } else { 8068 r_mtu = mtu; 8069 } 8070 error = 0; 8071 /************************/ 8072 /* ASCONF transmission */ 8073 /************************/ 8074 /* Now first lets go through the asconf queue */ 8075 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 8076 if (chk->rec.chunk_id.id != SCTP_ASCONF) { 8077 continue; 8078 } 8079 if (chk->whoTo == NULL) { 8080 if (asoc->alternate == NULL) { 8081 if (asoc->primary_destination != net) { 8082 break; 8083 } 8084 } else { 8085 if (asoc->alternate != net) { 8086 break; 8087 } 8088 } 8089 } else { 8090 if (chk->whoTo != net) { 8091 break; 8092 } 8093 } 8094 if (chk->data == NULL) { 8095 break; 8096 } 8097 if (chk->sent != SCTP_DATAGRAM_UNSENT && 8098 chk->sent != SCTP_DATAGRAM_RESEND) { 8099 break; 8100 } 8101 /* 8102 * if no AUTH is yet included and this chunk 8103 * requires it, make sure to account for it. We 8104 * don't apply the size until the AUTH chunk is 8105 * actually added below in case there is no room for 8106 * this chunk. NOTE: we overload the use of "omtu" 8107 * here 8108 */ 8109 if ((auth == NULL) && 8110 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8111 stcb->asoc.peer_auth_chunks)) { 8112 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8113 } else 8114 omtu = 0; 8115 /* Here we do NOT factor the r_mtu */ 8116 if ((chk->send_size < (int)(mtu - omtu)) || 8117 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8118 /* 8119 * We probably should glom the mbuf chain 8120 * from the chk->data for control but the 8121 * problem is it becomes yet one more level 8122 * of tracking to do if for some reason 8123 * output fails. Then I have got to 8124 * reconstruct the merged control chain.. el 8125 * yucko.. for now we take the easy way and 8126 * do the copy 8127 */ 8128 /* 8129 * Add an AUTH chunk, if chunk requires it 8130 * save the offset into the chain for AUTH 8131 */ 8132 if ((auth == NULL) && 8133 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8134 stcb->asoc.peer_auth_chunks))) { 8135 outchain = sctp_add_auth_chunk(outchain, 8136 &endoutchain, 8137 &auth, 8138 &auth_offset, 8139 stcb, 8140 chk->rec.chunk_id.id); 8141 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8142 } 8143 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8144 (int)chk->rec.chunk_id.can_take_data, 8145 chk->send_size, chk->copy_by_ref); 8146 if (outchain == NULL) { 8147 *reason_code = 8; 8148 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8149 return (ENOMEM); 8150 } 8151 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8152 /* update our MTU size */ 8153 if (mtu > (chk->send_size + omtu)) 8154 mtu -= (chk->send_size + omtu); 8155 else 8156 mtu = 0; 8157 to_out += (chk->send_size + omtu); 8158 /* Do clear IP_DF ? */ 8159 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8160 no_fragmentflg = 0; 8161 } 8162 if (chk->rec.chunk_id.can_take_data) 8163 chk->data = NULL; 8164 /* 8165 * set hb flag since we can use these for 8166 * RTO 8167 */ 8168 hbflag = 1; 8169 asconf = 1; 8170 /* 8171 * should sysctl this: don't bundle data 8172 * with ASCONF since it requires AUTH 8173 */ 8174 no_data_chunks = 1; 8175 chk->sent = SCTP_DATAGRAM_SENT; 8176 if (chk->whoTo == NULL) { 8177 chk->whoTo = net; 8178 atomic_add_int(&net->ref_count, 1); 8179 } 8180 chk->snd_count++; 8181 if (mtu == 0) { 8182 /* 8183 * Ok we are out of room but we can 8184 * output without effecting the 8185 * flight size since this little guy 8186 * is a control only packet. 8187 */ 8188 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8189 /* 8190 * do NOT clear the asconf flag as 8191 * it is used to do appropriate 8192 * source address selection. 8193 */ 8194 if (*now_filled == 0) { 8195 (void)SCTP_GETTIME_TIMEVAL(now); 8196 *now_filled = 1; 8197 } 8198 net->last_sent_time = *now; 8199 hbflag = 0; 8200 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8201 (struct sockaddr *)&net->ro._l_addr, 8202 outchain, auth_offset, auth, 8203 stcb->asoc.authinfo.active_keyid, 8204 no_fragmentflg, 0, asconf, 8205 inp->sctp_lport, stcb->rport, 8206 htonl(stcb->asoc.peer_vtag), 8207 net->port, NULL, 8208 0, 0, 8209 so_locked))) { 8210 /* 8211 * error, we could not 8212 * output 8213 */ 8214 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8215 if (from_where == 0) { 8216 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8217 } 8218 if (error == ENOBUFS) { 8219 asoc->ifp_had_enobuf = 1; 8220 SCTP_STAT_INCR(sctps_lowlevelerr); 8221 } 8222 /* error, could not output */ 8223 if (error == EHOSTUNREACH) { 8224 /* 8225 * Destination went 8226 * unreachable 8227 * during this send 8228 */ 8229 sctp_move_chunks_from_net(stcb, net); 8230 } 8231 *reason_code = 7; 8232 break; 8233 } else { 8234 asoc->ifp_had_enobuf = 0; 8235 } 8236 /* 8237 * increase the number we sent, if a 8238 * cookie is sent we don't tell them 8239 * any was sent out. 8240 */ 8241 outchain = endoutchain = NULL; 8242 auth = NULL; 8243 auth_offset = 0; 8244 if (!no_out_cnt) 8245 *num_out += ctl_cnt; 8246 /* recalc a clean slate and setup */ 8247 switch (net->ro._l_addr.sa.sa_family) { 8248 #ifdef INET 8249 case AF_INET: 8250 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8251 break; 8252 #endif 8253 #ifdef INET6 8254 case AF_INET6: 8255 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8256 break; 8257 #endif 8258 default: 8259 /* TSNH */ 8260 mtu = net->mtu; 8261 break; 8262 } 8263 to_out = 0; 8264 no_fragmentflg = 1; 8265 } 8266 } 8267 } 8268 if (error != 0) { 8269 /* try next net */ 8270 continue; 8271 } 8272 /************************/ 8273 /* Control transmission */ 8274 /************************/ 8275 /* Now first lets go through the control queue */ 8276 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 8277 if ((sack_goes_to) && 8278 (chk->rec.chunk_id.id == SCTP_ECN_ECHO) && 8279 (chk->whoTo != sack_goes_to)) { 8280 /* 8281 * if we have a sack in queue, and we are 8282 * looking at an ecn echo that is NOT queued 8283 * to where the sack is going.. 8284 */ 8285 if (chk->whoTo == net) { 8286 /* 8287 * Don't transmit it to where its 8288 * going (current net) 8289 */ 8290 continue; 8291 } else if (sack_goes_to == net) { 8292 /* 8293 * But do transmit it to this 8294 * address 8295 */ 8296 goto skip_net_check; 8297 } 8298 } 8299 if (chk->whoTo == NULL) { 8300 if (asoc->alternate == NULL) { 8301 if (asoc->primary_destination != net) { 8302 continue; 8303 } 8304 } else { 8305 if (asoc->alternate != net) { 8306 continue; 8307 } 8308 } 8309 } else { 8310 if (chk->whoTo != net) { 8311 continue; 8312 } 8313 } 8314 skip_net_check: 8315 if (chk->data == NULL) { 8316 continue; 8317 } 8318 if (chk->sent != SCTP_DATAGRAM_UNSENT) { 8319 /* 8320 * It must be unsent. Cookies and ASCONF's 8321 * hang around but there timers will force 8322 * when marked for resend. 8323 */ 8324 continue; 8325 } 8326 /* 8327 * if no AUTH is yet included and this chunk 8328 * requires it, make sure to account for it. We 8329 * don't apply the size until the AUTH chunk is 8330 * actually added below in case there is no room for 8331 * this chunk. NOTE: we overload the use of "omtu" 8332 * here 8333 */ 8334 if ((auth == NULL) && 8335 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8336 stcb->asoc.peer_auth_chunks)) { 8337 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8338 } else 8339 omtu = 0; 8340 /* Here we do NOT factor the r_mtu */ 8341 if ((chk->send_size <= (int)(mtu - omtu)) || 8342 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8343 /* 8344 * We probably should glom the mbuf chain 8345 * from the chk->data for control but the 8346 * problem is it becomes yet one more level 8347 * of tracking to do if for some reason 8348 * output fails. Then I have got to 8349 * reconstruct the merged control chain.. el 8350 * yucko.. for now we take the easy way and 8351 * do the copy 8352 */ 8353 /* 8354 * Add an AUTH chunk, if chunk requires it 8355 * save the offset into the chain for AUTH 8356 */ 8357 if ((auth == NULL) && 8358 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8359 stcb->asoc.peer_auth_chunks))) { 8360 outchain = sctp_add_auth_chunk(outchain, 8361 &endoutchain, 8362 &auth, 8363 &auth_offset, 8364 stcb, 8365 chk->rec.chunk_id.id); 8366 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8367 } 8368 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8369 (int)chk->rec.chunk_id.can_take_data, 8370 chk->send_size, chk->copy_by_ref); 8371 if (outchain == NULL) { 8372 *reason_code = 8; 8373 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8374 return (ENOMEM); 8375 } 8376 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8377 /* update our MTU size */ 8378 if (mtu > (chk->send_size + omtu)) 8379 mtu -= (chk->send_size + omtu); 8380 else 8381 mtu = 0; 8382 to_out += (chk->send_size + omtu); 8383 /* Do clear IP_DF ? */ 8384 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8385 no_fragmentflg = 0; 8386 } 8387 if (chk->rec.chunk_id.can_take_data) 8388 chk->data = NULL; 8389 /* Mark things to be removed, if needed */ 8390 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8391 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 8392 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 8393 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 8394 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 8395 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 8396 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 8397 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 8398 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 8399 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 8400 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 8401 if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) { 8402 hbflag = 1; 8403 } 8404 /* remove these chunks at the end */ 8405 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8406 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 8407 /* turn off the timer */ 8408 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 8409 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 8410 inp, stcb, net, 8411 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1); 8412 } 8413 } 8414 ctl_cnt++; 8415 } else { 8416 /* 8417 * Other chunks, since they have 8418 * timers running (i.e. COOKIE) we 8419 * just "trust" that it gets sent or 8420 * retransmitted. 8421 */ 8422 ctl_cnt++; 8423 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 8424 cookie = 1; 8425 no_out_cnt = 1; 8426 } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 8427 /* 8428 * Increment ecne send count 8429 * here this means we may be 8430 * over-zealous in our 8431 * counting if the send 8432 * fails, but its the best 8433 * place to do it (we used 8434 * to do it in the queue of 8435 * the chunk, but that did 8436 * not tell how many times 8437 * it was sent. 8438 */ 8439 SCTP_STAT_INCR(sctps_sendecne); 8440 } 8441 chk->sent = SCTP_DATAGRAM_SENT; 8442 if (chk->whoTo == NULL) { 8443 chk->whoTo = net; 8444 atomic_add_int(&net->ref_count, 1); 8445 } 8446 chk->snd_count++; 8447 } 8448 if (mtu == 0) { 8449 /* 8450 * Ok we are out of room but we can 8451 * output without effecting the 8452 * flight size since this little guy 8453 * is a control only packet. 8454 */ 8455 if (asconf) { 8456 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8457 /* 8458 * do NOT clear the asconf 8459 * flag as it is used to do 8460 * appropriate source 8461 * address selection. 8462 */ 8463 } 8464 if (cookie) { 8465 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8466 cookie = 0; 8467 } 8468 /* Only HB or ASCONF advances time */ 8469 if (hbflag) { 8470 if (*now_filled == 0) { 8471 (void)SCTP_GETTIME_TIMEVAL(now); 8472 *now_filled = 1; 8473 } 8474 net->last_sent_time = *now; 8475 hbflag = 0; 8476 } 8477 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8478 (struct sockaddr *)&net->ro._l_addr, 8479 outchain, 8480 auth_offset, auth, 8481 stcb->asoc.authinfo.active_keyid, 8482 no_fragmentflg, 0, asconf, 8483 inp->sctp_lport, stcb->rport, 8484 htonl(stcb->asoc.peer_vtag), 8485 net->port, NULL, 8486 0, 0, 8487 so_locked))) { 8488 /* 8489 * error, we could not 8490 * output 8491 */ 8492 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8493 if (from_where == 0) { 8494 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8495 } 8496 if (error == ENOBUFS) { 8497 asoc->ifp_had_enobuf = 1; 8498 SCTP_STAT_INCR(sctps_lowlevelerr); 8499 } 8500 if (error == EHOSTUNREACH) { 8501 /* 8502 * Destination went 8503 * unreachable 8504 * during this send 8505 */ 8506 sctp_move_chunks_from_net(stcb, net); 8507 } 8508 *reason_code = 7; 8509 break; 8510 } else { 8511 asoc->ifp_had_enobuf = 0; 8512 } 8513 /* 8514 * increase the number we sent, if a 8515 * cookie is sent we don't tell them 8516 * any was sent out. 8517 */ 8518 outchain = endoutchain = NULL; 8519 auth = NULL; 8520 auth_offset = 0; 8521 if (!no_out_cnt) 8522 *num_out += ctl_cnt; 8523 /* recalc a clean slate and setup */ 8524 switch (net->ro._l_addr.sa.sa_family) { 8525 #ifdef INET 8526 case AF_INET: 8527 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8528 break; 8529 #endif 8530 #ifdef INET6 8531 case AF_INET6: 8532 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8533 break; 8534 #endif 8535 default: 8536 /* TSNH */ 8537 mtu = net->mtu; 8538 break; 8539 } 8540 to_out = 0; 8541 no_fragmentflg = 1; 8542 } 8543 } 8544 } 8545 if (error != 0) { 8546 /* try next net */ 8547 continue; 8548 } 8549 /* JRI: if dest is in PF state, do not send data to it */ 8550 if ((asoc->sctp_cmt_on_off > 0) && 8551 (net != stcb->asoc.alternate) && 8552 (net->dest_state & SCTP_ADDR_PF)) { 8553 goto no_data_fill; 8554 } 8555 if (net->flight_size >= net->cwnd) { 8556 goto no_data_fill; 8557 } 8558 if ((asoc->sctp_cmt_on_off > 0) && 8559 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) && 8560 (net->flight_size > max_rwnd_per_dest)) { 8561 goto no_data_fill; 8562 } 8563 /* 8564 * We need a specific accounting for the usage of the send 8565 * buffer. We also need to check the number of messages per 8566 * net. For now, this is better than nothing and it disabled 8567 * by default... 8568 */ 8569 if ((asoc->sctp_cmt_on_off > 0) && 8570 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) && 8571 (max_send_per_dest > 0) && 8572 (net->flight_size > max_send_per_dest)) { 8573 goto no_data_fill; 8574 } 8575 /*********************/ 8576 /* Data transmission */ 8577 /*********************/ 8578 /* 8579 * if AUTH for DATA is required and no AUTH has been added 8580 * yet, account for this in the mtu now... if no data can be 8581 * bundled, this adjustment won't matter anyways since the 8582 * packet will be going out... 8583 */ 8584 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, 8585 stcb->asoc.peer_auth_chunks); 8586 if (data_auth_reqd && (auth == NULL)) { 8587 mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8588 } 8589 /* now lets add any data within the MTU constraints */ 8590 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8591 #ifdef INET 8592 case AF_INET: 8593 if (net->mtu > SCTP_MIN_V4_OVERHEAD) 8594 omtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8595 else 8596 omtu = 0; 8597 break; 8598 #endif 8599 #ifdef INET6 8600 case AF_INET6: 8601 if (net->mtu > SCTP_MIN_OVERHEAD) 8602 omtu = net->mtu - SCTP_MIN_OVERHEAD; 8603 else 8604 omtu = 0; 8605 break; 8606 #endif 8607 default: 8608 /* TSNH */ 8609 omtu = 0; 8610 break; 8611 } 8612 if ((((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 8613 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) && 8614 (skip_data_for_this_net == 0)) || 8615 (cookie)) { 8616 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 8617 if (no_data_chunks) { 8618 /* let only control go out */ 8619 *reason_code = 1; 8620 break; 8621 } 8622 if (net->flight_size >= net->cwnd) { 8623 /* skip this net, no room for data */ 8624 *reason_code = 2; 8625 break; 8626 } 8627 if ((chk->whoTo != NULL) && 8628 (chk->whoTo != net)) { 8629 /* Don't send the chunk on this net */ 8630 continue; 8631 } 8632 if (asoc->sctp_cmt_on_off == 0) { 8633 if ((asoc->alternate) && 8634 (asoc->alternate != net) && 8635 (chk->whoTo == NULL)) { 8636 continue; 8637 } else if ((net != asoc->primary_destination) && 8638 (asoc->alternate == NULL) && 8639 (chk->whoTo == NULL)) { 8640 continue; 8641 } 8642 } 8643 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) { 8644 /*- 8645 * strange, we have a chunk that is 8646 * to big for its destination and 8647 * yet no fragment ok flag. 8648 * Something went wrong when the 8649 * PMTU changed...we did not mark 8650 * this chunk for some reason?? I 8651 * will fix it here by letting IP 8652 * fragment it for now and printing 8653 * a warning. This really should not 8654 * happen ... 8655 */ 8656 SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n", 8657 chk->send_size, mtu); 8658 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 8659 } 8660 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 8661 ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) == SCTP_STATE_SHUTDOWN_PENDING)) { 8662 struct sctp_data_chunk *dchkh; 8663 8664 dchkh = mtod(chk->data, struct sctp_data_chunk *); 8665 dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY; 8666 } 8667 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) || 8668 ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) { 8669 /* ok we will add this one */ 8670 8671 /* 8672 * Add an AUTH chunk, if chunk 8673 * requires it, save the offset into 8674 * the chain for AUTH 8675 */ 8676 if (data_auth_reqd) { 8677 if (auth == NULL) { 8678 outchain = sctp_add_auth_chunk(outchain, 8679 &endoutchain, 8680 &auth, 8681 &auth_offset, 8682 stcb, 8683 SCTP_DATA); 8684 auth_keyid = chk->auth_keyid; 8685 override_ok = 0; 8686 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8687 } else if (override_ok) { 8688 /* 8689 * use this data's 8690 * keyid 8691 */ 8692 auth_keyid = chk->auth_keyid; 8693 override_ok = 0; 8694 } else if (auth_keyid != chk->auth_keyid) { 8695 /* 8696 * different keyid, 8697 * so done bundling 8698 */ 8699 break; 8700 } 8701 } 8702 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0, 8703 chk->send_size, chk->copy_by_ref); 8704 if (outchain == NULL) { 8705 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n"); 8706 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 8707 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8708 } 8709 *reason_code = 3; 8710 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8711 return (ENOMEM); 8712 } 8713 /* upate our MTU size */ 8714 /* Do clear IP_DF ? */ 8715 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8716 no_fragmentflg = 0; 8717 } 8718 /* unsigned subtraction of mtu */ 8719 if (mtu > chk->send_size) 8720 mtu -= chk->send_size; 8721 else 8722 mtu = 0; 8723 /* unsigned subtraction of r_mtu */ 8724 if (r_mtu > chk->send_size) 8725 r_mtu -= chk->send_size; 8726 else 8727 r_mtu = 0; 8728 8729 to_out += chk->send_size; 8730 if ((to_out > mx_mtu) && no_fragmentflg) { 8731 #ifdef INVARIANTS 8732 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out); 8733 #else 8734 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n", 8735 mx_mtu, to_out); 8736 #endif 8737 } 8738 chk->window_probe = 0; 8739 data_list[bundle_at++] = chk; 8740 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 8741 break; 8742 } 8743 if (chk->sent == SCTP_DATAGRAM_UNSENT) { 8744 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) { 8745 SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks); 8746 } else { 8747 SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks); 8748 } 8749 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) && 8750 ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0)) 8751 /* 8752 * Count number of 8753 * user msg's that 8754 * were fragmented 8755 * we do this by 8756 * counting when we 8757 * see a LAST 8758 * fragment only. 8759 */ 8760 SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs); 8761 } 8762 if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) { 8763 if ((one_chunk) && (stcb->asoc.total_flight == 0)) { 8764 data_list[0]->window_probe = 1; 8765 net->window_probe = 1; 8766 } 8767 break; 8768 } 8769 } else { 8770 /* 8771 * Must be sent in order of the 8772 * TSN's (on a network) 8773 */ 8774 break; 8775 } 8776 } /* for (chunk gather loop for this net) */ 8777 } /* if asoc.state OPEN */ 8778 no_data_fill: 8779 /* Is there something to send for this destination? */ 8780 if (outchain) { 8781 /* We may need to start a control timer or two */ 8782 if (asconf) { 8783 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, 8784 stcb, net); 8785 /* 8786 * do NOT clear the asconf flag as it is 8787 * used to do appropriate source address 8788 * selection. 8789 */ 8790 } 8791 if (cookie) { 8792 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8793 cookie = 0; 8794 } 8795 /* must start a send timer if data is being sent */ 8796 if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) { 8797 /* 8798 * no timer running on this destination 8799 * restart it. 8800 */ 8801 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8802 } 8803 if (bundle_at || hbflag) { 8804 /* For data/asconf and hb set time */ 8805 if (*now_filled == 0) { 8806 (void)SCTP_GETTIME_TIMEVAL(now); 8807 *now_filled = 1; 8808 } 8809 net->last_sent_time = *now; 8810 } 8811 /* Now send it, if there is anything to send :> */ 8812 if ((error = sctp_lowlevel_chunk_output(inp, 8813 stcb, 8814 net, 8815 (struct sockaddr *)&net->ro._l_addr, 8816 outchain, 8817 auth_offset, 8818 auth, 8819 auth_keyid, 8820 no_fragmentflg, 8821 bundle_at, 8822 asconf, 8823 inp->sctp_lport, stcb->rport, 8824 htonl(stcb->asoc.peer_vtag), 8825 net->port, NULL, 8826 0, 0, 8827 so_locked))) { 8828 /* error, we could not output */ 8829 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8830 if (from_where == 0) { 8831 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8832 } 8833 if (error == ENOBUFS) { 8834 asoc->ifp_had_enobuf = 1; 8835 SCTP_STAT_INCR(sctps_lowlevelerr); 8836 } 8837 if (error == EHOSTUNREACH) { 8838 /* 8839 * Destination went unreachable 8840 * during this send 8841 */ 8842 sctp_move_chunks_from_net(stcb, net); 8843 } 8844 *reason_code = 6; 8845 /*- 8846 * I add this line to be paranoid. As far as 8847 * I can tell the continue, takes us back to 8848 * the top of the for, but just to make sure 8849 * I will reset these again here. 8850 */ 8851 ctl_cnt = bundle_at = 0; 8852 continue; /* This takes us back to the 8853 * for() for the nets. */ 8854 } else { 8855 asoc->ifp_had_enobuf = 0; 8856 } 8857 endoutchain = NULL; 8858 auth = NULL; 8859 auth_offset = 0; 8860 if (!no_out_cnt) { 8861 *num_out += (ctl_cnt + bundle_at); 8862 } 8863 if (bundle_at) { 8864 /* setup for a RTO measurement */ 8865 tsns_sent = data_list[0]->rec.data.tsn; 8866 /* fill time if not already filled */ 8867 if (*now_filled == 0) { 8868 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 8869 *now_filled = 1; 8870 *now = asoc->time_last_sent; 8871 } else { 8872 asoc->time_last_sent = *now; 8873 } 8874 if (net->rto_needed) { 8875 data_list[0]->do_rtt = 1; 8876 net->rto_needed = 0; 8877 } 8878 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at); 8879 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net); 8880 } 8881 if (one_chunk) { 8882 break; 8883 } 8884 } 8885 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8886 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND); 8887 } 8888 } 8889 if (old_start_at == NULL) { 8890 old_start_at = start_at; 8891 start_at = TAILQ_FIRST(&asoc->nets); 8892 if (old_start_at) 8893 goto again_one_more_time; 8894 } 8895 /* 8896 * At the end there should be no NON timed chunks hanging on this 8897 * queue. 8898 */ 8899 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8900 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND); 8901 } 8902 if ((*num_out == 0) && (*reason_code == 0)) { 8903 *reason_code = 4; 8904 } else { 8905 *reason_code = 5; 8906 } 8907 sctp_clean_up_ctl(stcb, asoc, so_locked); 8908 return (0); 8909 } 8910 8911 void 8912 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err) 8913 { 8914 /*- 8915 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of 8916 * the control chunk queue. 8917 */ 8918 struct sctp_chunkhdr *hdr; 8919 struct sctp_tmit_chunk *chk; 8920 struct mbuf *mat, *last_mbuf; 8921 uint32_t chunk_length; 8922 uint16_t padding_length; 8923 8924 SCTP_TCB_LOCK_ASSERT(stcb); 8925 SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT); 8926 if (op_err == NULL) { 8927 return; 8928 } 8929 last_mbuf = NULL; 8930 chunk_length = 0; 8931 for (mat = op_err; mat != NULL; mat = SCTP_BUF_NEXT(mat)) { 8932 chunk_length += SCTP_BUF_LEN(mat); 8933 if (SCTP_BUF_NEXT(mat) == NULL) { 8934 last_mbuf = mat; 8935 } 8936 } 8937 if (chunk_length > SCTP_MAX_CHUNK_LENGTH) { 8938 sctp_m_freem(op_err); 8939 return; 8940 } 8941 padding_length = chunk_length % 4; 8942 if (padding_length != 0) { 8943 padding_length = 4 - padding_length; 8944 } 8945 if (padding_length != 0) { 8946 if (sctp_add_pad_tombuf(last_mbuf, padding_length) == NULL) { 8947 sctp_m_freem(op_err); 8948 return; 8949 } 8950 } 8951 sctp_alloc_a_chunk(stcb, chk); 8952 if (chk == NULL) { 8953 /* no memory */ 8954 sctp_m_freem(op_err); 8955 return; 8956 } 8957 chk->copy_by_ref = 0; 8958 chk->send_size = (uint16_t)chunk_length; 8959 chk->sent = SCTP_DATAGRAM_UNSENT; 8960 chk->snd_count = 0; 8961 chk->asoc = &stcb->asoc; 8962 chk->data = op_err; 8963 chk->whoTo = NULL; 8964 chk->rec.chunk_id.id = SCTP_OPERATION_ERROR; 8965 chk->rec.chunk_id.can_take_data = 0; 8966 hdr = mtod(op_err, struct sctp_chunkhdr *); 8967 hdr->chunk_type = SCTP_OPERATION_ERROR; 8968 hdr->chunk_flags = 0; 8969 hdr->chunk_length = htons(chk->send_size); 8970 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 8971 chk->asoc->ctrl_queue_cnt++; 8972 } 8973 8974 int 8975 sctp_send_cookie_echo(struct mbuf *m, 8976 int offset, 8977 struct sctp_tcb *stcb, 8978 struct sctp_nets *net) 8979 { 8980 /*- 8981 * pull out the cookie and put it at the front of the control chunk 8982 * queue. 8983 */ 8984 int at; 8985 struct mbuf *cookie; 8986 struct sctp_paramhdr param, *phdr; 8987 struct sctp_chunkhdr *hdr; 8988 struct sctp_tmit_chunk *chk; 8989 uint16_t ptype, plen; 8990 8991 SCTP_TCB_LOCK_ASSERT(stcb); 8992 /* First find the cookie in the param area */ 8993 cookie = NULL; 8994 at = offset + sizeof(struct sctp_init_chunk); 8995 for (;;) { 8996 phdr = sctp_get_next_param(m, at, ¶m, sizeof(param)); 8997 if (phdr == NULL) { 8998 return (-3); 8999 } 9000 ptype = ntohs(phdr->param_type); 9001 plen = ntohs(phdr->param_length); 9002 if (ptype == SCTP_STATE_COOKIE) { 9003 int pad; 9004 9005 /* found the cookie */ 9006 if ((pad = (plen % 4))) { 9007 plen += 4 - pad; 9008 } 9009 cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT); 9010 if (cookie == NULL) { 9011 /* No memory */ 9012 return (-2); 9013 } 9014 #ifdef SCTP_MBUF_LOGGING 9015 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9016 sctp_log_mbc(cookie, SCTP_MBUF_ICOPY); 9017 } 9018 #endif 9019 break; 9020 } 9021 at += SCTP_SIZE32(plen); 9022 } 9023 /* ok, we got the cookie lets change it into a cookie echo chunk */ 9024 /* first the change from param to cookie */ 9025 hdr = mtod(cookie, struct sctp_chunkhdr *); 9026 hdr->chunk_type = SCTP_COOKIE_ECHO; 9027 hdr->chunk_flags = 0; 9028 /* get the chunk stuff now and place it in the FRONT of the queue */ 9029 sctp_alloc_a_chunk(stcb, chk); 9030 if (chk == NULL) { 9031 /* no memory */ 9032 sctp_m_freem(cookie); 9033 return (-5); 9034 } 9035 chk->copy_by_ref = 0; 9036 chk->rec.chunk_id.id = SCTP_COOKIE_ECHO; 9037 chk->rec.chunk_id.can_take_data = 0; 9038 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9039 chk->send_size = plen; 9040 chk->sent = SCTP_DATAGRAM_UNSENT; 9041 chk->snd_count = 0; 9042 chk->asoc = &stcb->asoc; 9043 chk->data = cookie; 9044 chk->whoTo = net; 9045 atomic_add_int(&chk->whoTo->ref_count, 1); 9046 TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next); 9047 chk->asoc->ctrl_queue_cnt++; 9048 return (0); 9049 } 9050 9051 void 9052 sctp_send_heartbeat_ack(struct sctp_tcb *stcb, 9053 struct mbuf *m, 9054 int offset, 9055 int chk_length, 9056 struct sctp_nets *net) 9057 { 9058 /* 9059 * take a HB request and make it into a HB ack and send it. 9060 */ 9061 struct mbuf *outchain; 9062 struct sctp_chunkhdr *chdr; 9063 struct sctp_tmit_chunk *chk; 9064 9065 9066 if (net == NULL) 9067 /* must have a net pointer */ 9068 return; 9069 9070 outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT); 9071 if (outchain == NULL) { 9072 /* gak out of memory */ 9073 return; 9074 } 9075 #ifdef SCTP_MBUF_LOGGING 9076 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9077 sctp_log_mbc(outchain, SCTP_MBUF_ICOPY); 9078 } 9079 #endif 9080 chdr = mtod(outchain, struct sctp_chunkhdr *); 9081 chdr->chunk_type = SCTP_HEARTBEAT_ACK; 9082 chdr->chunk_flags = 0; 9083 if (chk_length % 4) { 9084 /* need pad */ 9085 uint32_t cpthis = 0; 9086 int padlen; 9087 9088 padlen = 4 - (chk_length % 4); 9089 m_copyback(outchain, chk_length, padlen, (caddr_t)&cpthis); 9090 } 9091 sctp_alloc_a_chunk(stcb, chk); 9092 if (chk == NULL) { 9093 /* no memory */ 9094 sctp_m_freem(outchain); 9095 return; 9096 } 9097 chk->copy_by_ref = 0; 9098 chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK; 9099 chk->rec.chunk_id.can_take_data = 1; 9100 chk->flags = 0; 9101 chk->send_size = chk_length; 9102 chk->sent = SCTP_DATAGRAM_UNSENT; 9103 chk->snd_count = 0; 9104 chk->asoc = &stcb->asoc; 9105 chk->data = outchain; 9106 chk->whoTo = net; 9107 atomic_add_int(&chk->whoTo->ref_count, 1); 9108 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9109 chk->asoc->ctrl_queue_cnt++; 9110 } 9111 9112 void 9113 sctp_send_cookie_ack(struct sctp_tcb *stcb) 9114 { 9115 /* formulate and queue a cookie-ack back to sender */ 9116 struct mbuf *cookie_ack; 9117 struct sctp_chunkhdr *hdr; 9118 struct sctp_tmit_chunk *chk; 9119 9120 SCTP_TCB_LOCK_ASSERT(stcb); 9121 9122 cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 9123 if (cookie_ack == NULL) { 9124 /* no mbuf's */ 9125 return; 9126 } 9127 SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD); 9128 sctp_alloc_a_chunk(stcb, chk); 9129 if (chk == NULL) { 9130 /* no memory */ 9131 sctp_m_freem(cookie_ack); 9132 return; 9133 } 9134 chk->copy_by_ref = 0; 9135 chk->rec.chunk_id.id = SCTP_COOKIE_ACK; 9136 chk->rec.chunk_id.can_take_data = 1; 9137 chk->flags = 0; 9138 chk->send_size = sizeof(struct sctp_chunkhdr); 9139 chk->sent = SCTP_DATAGRAM_UNSENT; 9140 chk->snd_count = 0; 9141 chk->asoc = &stcb->asoc; 9142 chk->data = cookie_ack; 9143 if (chk->asoc->last_control_chunk_from != NULL) { 9144 chk->whoTo = chk->asoc->last_control_chunk_from; 9145 atomic_add_int(&chk->whoTo->ref_count, 1); 9146 } else { 9147 chk->whoTo = NULL; 9148 } 9149 hdr = mtod(cookie_ack, struct sctp_chunkhdr *); 9150 hdr->chunk_type = SCTP_COOKIE_ACK; 9151 hdr->chunk_flags = 0; 9152 hdr->chunk_length = htons(chk->send_size); 9153 SCTP_BUF_LEN(cookie_ack) = chk->send_size; 9154 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9155 chk->asoc->ctrl_queue_cnt++; 9156 return; 9157 } 9158 9159 9160 void 9161 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net) 9162 { 9163 /* formulate and queue a SHUTDOWN-ACK back to the sender */ 9164 struct mbuf *m_shutdown_ack; 9165 struct sctp_shutdown_ack_chunk *ack_cp; 9166 struct sctp_tmit_chunk *chk; 9167 9168 m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9169 if (m_shutdown_ack == NULL) { 9170 /* no mbuf's */ 9171 return; 9172 } 9173 SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD); 9174 sctp_alloc_a_chunk(stcb, chk); 9175 if (chk == NULL) { 9176 /* no memory */ 9177 sctp_m_freem(m_shutdown_ack); 9178 return; 9179 } 9180 chk->copy_by_ref = 0; 9181 chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK; 9182 chk->rec.chunk_id.can_take_data = 1; 9183 chk->flags = 0; 9184 chk->send_size = sizeof(struct sctp_chunkhdr); 9185 chk->sent = SCTP_DATAGRAM_UNSENT; 9186 chk->snd_count = 0; 9187 chk->flags = 0; 9188 chk->asoc = &stcb->asoc; 9189 chk->data = m_shutdown_ack; 9190 chk->whoTo = net; 9191 if (chk->whoTo) { 9192 atomic_add_int(&chk->whoTo->ref_count, 1); 9193 } 9194 ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *); 9195 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK; 9196 ack_cp->ch.chunk_flags = 0; 9197 ack_cp->ch.chunk_length = htons(chk->send_size); 9198 SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size; 9199 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9200 chk->asoc->ctrl_queue_cnt++; 9201 return; 9202 } 9203 9204 void 9205 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net) 9206 { 9207 /* formulate and queue a SHUTDOWN to the sender */ 9208 struct mbuf *m_shutdown; 9209 struct sctp_shutdown_chunk *shutdown_cp; 9210 struct sctp_tmit_chunk *chk; 9211 9212 TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 9213 if (chk->rec.chunk_id.id == SCTP_SHUTDOWN) { 9214 /* We already have a SHUTDOWN queued. Reuse it. */ 9215 if (chk->whoTo) { 9216 sctp_free_remote_addr(chk->whoTo); 9217 chk->whoTo = NULL; 9218 } 9219 break; 9220 } 9221 } 9222 if (chk == NULL) { 9223 m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9224 if (m_shutdown == NULL) { 9225 /* no mbuf's */ 9226 return; 9227 } 9228 SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD); 9229 sctp_alloc_a_chunk(stcb, chk); 9230 if (chk == NULL) { 9231 /* no memory */ 9232 sctp_m_freem(m_shutdown); 9233 return; 9234 } 9235 chk->copy_by_ref = 0; 9236 chk->rec.chunk_id.id = SCTP_SHUTDOWN; 9237 chk->rec.chunk_id.can_take_data = 1; 9238 chk->flags = 0; 9239 chk->send_size = sizeof(struct sctp_shutdown_chunk); 9240 chk->sent = SCTP_DATAGRAM_UNSENT; 9241 chk->snd_count = 0; 9242 chk->flags = 0; 9243 chk->asoc = &stcb->asoc; 9244 chk->data = m_shutdown; 9245 chk->whoTo = net; 9246 if (chk->whoTo) { 9247 atomic_add_int(&chk->whoTo->ref_count, 1); 9248 } 9249 shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *); 9250 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN; 9251 shutdown_cp->ch.chunk_flags = 0; 9252 shutdown_cp->ch.chunk_length = htons(chk->send_size); 9253 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9254 SCTP_BUF_LEN(m_shutdown) = chk->send_size; 9255 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9256 chk->asoc->ctrl_queue_cnt++; 9257 } else { 9258 TAILQ_REMOVE(&stcb->asoc.control_send_queue, chk, sctp_next); 9259 chk->whoTo = net; 9260 if (chk->whoTo) { 9261 atomic_add_int(&chk->whoTo->ref_count, 1); 9262 } 9263 shutdown_cp = mtod(chk->data, struct sctp_shutdown_chunk *); 9264 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9265 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 9266 } 9267 return; 9268 } 9269 9270 void 9271 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked) 9272 { 9273 /* 9274 * formulate and queue an ASCONF to the peer. ASCONF parameters 9275 * should be queued on the assoc queue. 9276 */ 9277 struct sctp_tmit_chunk *chk; 9278 struct mbuf *m_asconf; 9279 int len; 9280 9281 SCTP_TCB_LOCK_ASSERT(stcb); 9282 9283 if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) && 9284 (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) { 9285 /* can't send a new one if there is one in flight already */ 9286 return; 9287 } 9288 /* compose an ASCONF chunk, maximum length is PMTU */ 9289 m_asconf = sctp_compose_asconf(stcb, &len, addr_locked); 9290 if (m_asconf == NULL) { 9291 return; 9292 } 9293 sctp_alloc_a_chunk(stcb, chk); 9294 if (chk == NULL) { 9295 /* no memory */ 9296 sctp_m_freem(m_asconf); 9297 return; 9298 } 9299 chk->copy_by_ref = 0; 9300 chk->rec.chunk_id.id = SCTP_ASCONF; 9301 chk->rec.chunk_id.can_take_data = 0; 9302 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9303 chk->data = m_asconf; 9304 chk->send_size = len; 9305 chk->sent = SCTP_DATAGRAM_UNSENT; 9306 chk->snd_count = 0; 9307 chk->asoc = &stcb->asoc; 9308 chk->whoTo = net; 9309 if (chk->whoTo) { 9310 atomic_add_int(&chk->whoTo->ref_count, 1); 9311 } 9312 TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next); 9313 chk->asoc->ctrl_queue_cnt++; 9314 return; 9315 } 9316 9317 void 9318 sctp_send_asconf_ack(struct sctp_tcb *stcb) 9319 { 9320 /* 9321 * formulate and queue a asconf-ack back to sender. the asconf-ack 9322 * must be stored in the tcb. 9323 */ 9324 struct sctp_tmit_chunk *chk; 9325 struct sctp_asconf_ack *ack, *latest_ack; 9326 struct mbuf *m_ack; 9327 struct sctp_nets *net = NULL; 9328 9329 SCTP_TCB_LOCK_ASSERT(stcb); 9330 /* Get the latest ASCONF-ACK */ 9331 latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead); 9332 if (latest_ack == NULL) { 9333 return; 9334 } 9335 if (latest_ack->last_sent_to != NULL && 9336 latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) { 9337 /* we're doing a retransmission */ 9338 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0); 9339 if (net == NULL) { 9340 /* no alternate */ 9341 if (stcb->asoc.last_control_chunk_from == NULL) { 9342 if (stcb->asoc.alternate) { 9343 net = stcb->asoc.alternate; 9344 } else { 9345 net = stcb->asoc.primary_destination; 9346 } 9347 } else { 9348 net = stcb->asoc.last_control_chunk_from; 9349 } 9350 } 9351 } else { 9352 /* normal case */ 9353 if (stcb->asoc.last_control_chunk_from == NULL) { 9354 if (stcb->asoc.alternate) { 9355 net = stcb->asoc.alternate; 9356 } else { 9357 net = stcb->asoc.primary_destination; 9358 } 9359 } else { 9360 net = stcb->asoc.last_control_chunk_from; 9361 } 9362 } 9363 latest_ack->last_sent_to = net; 9364 9365 TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) { 9366 if (ack->data == NULL) { 9367 continue; 9368 } 9369 /* copy the asconf_ack */ 9370 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT); 9371 if (m_ack == NULL) { 9372 /* couldn't copy it */ 9373 return; 9374 } 9375 #ifdef SCTP_MBUF_LOGGING 9376 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9377 sctp_log_mbc(m_ack, SCTP_MBUF_ICOPY); 9378 } 9379 #endif 9380 9381 sctp_alloc_a_chunk(stcb, chk); 9382 if (chk == NULL) { 9383 /* no memory */ 9384 if (m_ack) 9385 sctp_m_freem(m_ack); 9386 return; 9387 } 9388 chk->copy_by_ref = 0; 9389 chk->rec.chunk_id.id = SCTP_ASCONF_ACK; 9390 chk->rec.chunk_id.can_take_data = 1; 9391 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9392 chk->whoTo = net; 9393 if (chk->whoTo) { 9394 atomic_add_int(&chk->whoTo->ref_count, 1); 9395 } 9396 chk->data = m_ack; 9397 chk->send_size = ack->len; 9398 chk->sent = SCTP_DATAGRAM_UNSENT; 9399 chk->snd_count = 0; 9400 chk->asoc = &stcb->asoc; 9401 9402 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9403 chk->asoc->ctrl_queue_cnt++; 9404 } 9405 return; 9406 } 9407 9408 9409 static int 9410 sctp_chunk_retransmission(struct sctp_inpcb *inp, 9411 struct sctp_tcb *stcb, 9412 struct sctp_association *asoc, 9413 int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked 9414 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9415 SCTP_UNUSED 9416 #endif 9417 ) 9418 { 9419 /*- 9420 * send out one MTU of retransmission. If fast_retransmit is 9421 * happening we ignore the cwnd. Otherwise we obey the cwnd and 9422 * rwnd. For a Cookie or Asconf in the control chunk queue we 9423 * retransmit them by themselves. 9424 * 9425 * For data chunks we will pick out the lowest TSN's in the sent_queue 9426 * marked for resend and bundle them all together (up to a MTU of 9427 * destination). The address to send to should have been 9428 * selected/changed where the retransmission was marked (i.e. in FR 9429 * or t3-timeout routines). 9430 */ 9431 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 9432 struct sctp_tmit_chunk *chk, *fwd; 9433 struct mbuf *m, *endofchain; 9434 struct sctp_nets *net = NULL; 9435 uint32_t tsns_sent = 0; 9436 int no_fragmentflg, bundle_at, cnt_thru; 9437 unsigned int mtu; 9438 int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started; 9439 struct sctp_auth_chunk *auth = NULL; 9440 uint32_t auth_offset = 0; 9441 uint16_t auth_keyid; 9442 int override_ok = 1; 9443 int data_auth_reqd = 0; 9444 uint32_t dmtu = 0; 9445 9446 SCTP_TCB_LOCK_ASSERT(stcb); 9447 tmr_started = ctl_cnt = bundle_at = error = 0; 9448 no_fragmentflg = 1; 9449 fwd_tsn = 0; 9450 *cnt_out = 0; 9451 fwd = NULL; 9452 endofchain = m = NULL; 9453 auth_keyid = stcb->asoc.authinfo.active_keyid; 9454 #ifdef SCTP_AUDITING_ENABLED 9455 sctp_audit_log(0xC3, 1); 9456 #endif 9457 if ((TAILQ_EMPTY(&asoc->sent_queue)) && 9458 (TAILQ_EMPTY(&asoc->control_send_queue))) { 9459 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n", 9460 asoc->sent_queue_retran_cnt); 9461 asoc->sent_queue_cnt = 0; 9462 asoc->sent_queue_cnt_removeable = 0; 9463 /* send back 0/0 so we enter normal transmission */ 9464 *cnt_out = 0; 9465 return (0); 9466 } 9467 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 9468 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) || 9469 (chk->rec.chunk_id.id == SCTP_STREAM_RESET) || 9470 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) { 9471 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9472 continue; 9473 } 9474 if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 9475 if (chk != asoc->str_reset) { 9476 /* 9477 * not eligible for retran if its 9478 * not ours 9479 */ 9480 continue; 9481 } 9482 } 9483 ctl_cnt++; 9484 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 9485 fwd_tsn = 1; 9486 } 9487 /* 9488 * Add an AUTH chunk, if chunk requires it save the 9489 * offset into the chain for AUTH 9490 */ 9491 if ((auth == NULL) && 9492 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 9493 stcb->asoc.peer_auth_chunks))) { 9494 m = sctp_add_auth_chunk(m, &endofchain, 9495 &auth, &auth_offset, 9496 stcb, 9497 chk->rec.chunk_id.id); 9498 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9499 } 9500 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9501 break; 9502 } 9503 } 9504 one_chunk = 0; 9505 cnt_thru = 0; 9506 /* do we have control chunks to retransmit? */ 9507 if (m != NULL) { 9508 /* Start a timer no matter if we succeed or fail */ 9509 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 9510 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo); 9511 } else if (chk->rec.chunk_id.id == SCTP_ASCONF) 9512 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo); 9513 chk->snd_count++; /* update our count */ 9514 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo, 9515 (struct sockaddr *)&chk->whoTo->ro._l_addr, m, 9516 auth_offset, auth, stcb->asoc.authinfo.active_keyid, 9517 no_fragmentflg, 0, 0, 9518 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9519 chk->whoTo->port, NULL, 9520 0, 0, 9521 so_locked))) { 9522 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 9523 if (error == ENOBUFS) { 9524 asoc->ifp_had_enobuf = 1; 9525 SCTP_STAT_INCR(sctps_lowlevelerr); 9526 } 9527 return (error); 9528 } else { 9529 asoc->ifp_had_enobuf = 0; 9530 } 9531 endofchain = NULL; 9532 auth = NULL; 9533 auth_offset = 0; 9534 /* 9535 * We don't want to mark the net->sent time here since this 9536 * we use this for HB and retrans cannot measure RTT 9537 */ 9538 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */ 9539 *cnt_out += 1; 9540 chk->sent = SCTP_DATAGRAM_SENT; 9541 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt); 9542 if (fwd_tsn == 0) { 9543 return (0); 9544 } else { 9545 /* Clean up the fwd-tsn list */ 9546 sctp_clean_up_ctl(stcb, asoc, so_locked); 9547 return (0); 9548 } 9549 } 9550 /* 9551 * Ok, it is just data retransmission we need to do or that and a 9552 * fwd-tsn with it all. 9553 */ 9554 if (TAILQ_EMPTY(&asoc->sent_queue)) { 9555 return (SCTP_RETRAN_DONE); 9556 } 9557 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED) || 9558 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT)) { 9559 /* not yet open, resend the cookie and that is it */ 9560 return (1); 9561 } 9562 #ifdef SCTP_AUDITING_ENABLED 9563 sctp_auditing(20, inp, stcb, NULL); 9564 #endif 9565 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks); 9566 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 9567 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9568 /* No, not sent to this net or not ready for rtx */ 9569 continue; 9570 } 9571 if (chk->data == NULL) { 9572 SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n", 9573 chk->rec.data.tsn, chk->snd_count, chk->sent); 9574 continue; 9575 } 9576 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) && 9577 (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) { 9578 struct mbuf *op_err; 9579 char msg[SCTP_DIAG_INFO_LEN]; 9580 9581 snprintf(msg, sizeof(msg), "TSN %8.8x retransmitted %d times, giving up", 9582 chk->rec.data.tsn, chk->snd_count); 9583 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 9584 msg); 9585 atomic_add_int(&stcb->asoc.refcnt, 1); 9586 sctp_abort_an_association(stcb->sctp_ep, stcb, op_err, 9587 so_locked); 9588 SCTP_TCB_LOCK(stcb); 9589 atomic_subtract_int(&stcb->asoc.refcnt, 1); 9590 return (SCTP_RETRAN_EXIT); 9591 } 9592 /* pick up the net */ 9593 net = chk->whoTo; 9594 switch (net->ro._l_addr.sa.sa_family) { 9595 #ifdef INET 9596 case AF_INET: 9597 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 9598 break; 9599 #endif 9600 #ifdef INET6 9601 case AF_INET6: 9602 mtu = net->mtu - SCTP_MIN_OVERHEAD; 9603 break; 9604 #endif 9605 default: 9606 /* TSNH */ 9607 mtu = net->mtu; 9608 break; 9609 } 9610 9611 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) { 9612 /* No room in peers rwnd */ 9613 uint32_t tsn; 9614 9615 tsn = asoc->last_acked_seq + 1; 9616 if (tsn == chk->rec.data.tsn) { 9617 /* 9618 * we make a special exception for this 9619 * case. The peer has no rwnd but is missing 9620 * the lowest chunk.. which is probably what 9621 * is holding up the rwnd. 9622 */ 9623 goto one_chunk_around; 9624 } 9625 return (1); 9626 } 9627 one_chunk_around: 9628 if (asoc->peers_rwnd < mtu) { 9629 one_chunk = 1; 9630 if ((asoc->peers_rwnd == 0) && 9631 (asoc->total_flight == 0)) { 9632 chk->window_probe = 1; 9633 chk->whoTo->window_probe = 1; 9634 } 9635 } 9636 #ifdef SCTP_AUDITING_ENABLED 9637 sctp_audit_log(0xC3, 2); 9638 #endif 9639 bundle_at = 0; 9640 m = NULL; 9641 net->fast_retran_ip = 0; 9642 if (chk->rec.data.doing_fast_retransmit == 0) { 9643 /* 9644 * if no FR in progress skip destination that have 9645 * flight_size > cwnd. 9646 */ 9647 if (net->flight_size >= net->cwnd) { 9648 continue; 9649 } 9650 } else { 9651 /* 9652 * Mark the destination net to have FR recovery 9653 * limits put on it. 9654 */ 9655 *fr_done = 1; 9656 net->fast_retran_ip = 1; 9657 } 9658 9659 /* 9660 * if no AUTH is yet included and this chunk requires it, 9661 * make sure to account for it. We don't apply the size 9662 * until the AUTH chunk is actually added below in case 9663 * there is no room for this chunk. 9664 */ 9665 if (data_auth_reqd && (auth == NULL)) { 9666 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9667 } else 9668 dmtu = 0; 9669 9670 if ((chk->send_size <= (mtu - dmtu)) || 9671 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 9672 /* ok we will add this one */ 9673 if (data_auth_reqd) { 9674 if (auth == NULL) { 9675 m = sctp_add_auth_chunk(m, 9676 &endofchain, 9677 &auth, 9678 &auth_offset, 9679 stcb, 9680 SCTP_DATA); 9681 auth_keyid = chk->auth_keyid; 9682 override_ok = 0; 9683 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9684 } else if (override_ok) { 9685 auth_keyid = chk->auth_keyid; 9686 override_ok = 0; 9687 } else if (chk->auth_keyid != auth_keyid) { 9688 /* different keyid, so done bundling */ 9689 break; 9690 } 9691 } 9692 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9693 if (m == NULL) { 9694 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9695 return (ENOMEM); 9696 } 9697 /* Do clear IP_DF ? */ 9698 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9699 no_fragmentflg = 0; 9700 } 9701 /* upate our MTU size */ 9702 if (mtu > (chk->send_size + dmtu)) 9703 mtu -= (chk->send_size + dmtu); 9704 else 9705 mtu = 0; 9706 data_list[bundle_at++] = chk; 9707 if (one_chunk && (asoc->total_flight <= 0)) { 9708 SCTP_STAT_INCR(sctps_windowprobed); 9709 } 9710 } 9711 if (one_chunk == 0) { 9712 /* 9713 * now are there anymore forward from chk to pick 9714 * up? 9715 */ 9716 for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) { 9717 if (fwd->sent != SCTP_DATAGRAM_RESEND) { 9718 /* Nope, not for retran */ 9719 continue; 9720 } 9721 if (fwd->whoTo != net) { 9722 /* Nope, not the net in question */ 9723 continue; 9724 } 9725 if (data_auth_reqd && (auth == NULL)) { 9726 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9727 } else 9728 dmtu = 0; 9729 if (fwd->send_size <= (mtu - dmtu)) { 9730 if (data_auth_reqd) { 9731 if (auth == NULL) { 9732 m = sctp_add_auth_chunk(m, 9733 &endofchain, 9734 &auth, 9735 &auth_offset, 9736 stcb, 9737 SCTP_DATA); 9738 auth_keyid = fwd->auth_keyid; 9739 override_ok = 0; 9740 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9741 } else if (override_ok) { 9742 auth_keyid = fwd->auth_keyid; 9743 override_ok = 0; 9744 } else if (fwd->auth_keyid != auth_keyid) { 9745 /* 9746 * different keyid, 9747 * so done bundling 9748 */ 9749 break; 9750 } 9751 } 9752 m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref); 9753 if (m == NULL) { 9754 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9755 return (ENOMEM); 9756 } 9757 /* Do clear IP_DF ? */ 9758 if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9759 no_fragmentflg = 0; 9760 } 9761 /* upate our MTU size */ 9762 if (mtu > (fwd->send_size + dmtu)) 9763 mtu -= (fwd->send_size + dmtu); 9764 else 9765 mtu = 0; 9766 data_list[bundle_at++] = fwd; 9767 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 9768 break; 9769 } 9770 } else { 9771 /* can't fit so we are done */ 9772 break; 9773 } 9774 } 9775 } 9776 /* Is there something to send for this destination? */ 9777 if (m) { 9778 /* 9779 * No matter if we fail/or succeed we should start a 9780 * timer. A failure is like a lost IP packet :-) 9781 */ 9782 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9783 /* 9784 * no timer running on this destination 9785 * restart it. 9786 */ 9787 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9788 tmr_started = 1; 9789 } 9790 /* Now lets send it, if there is anything to send :> */ 9791 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 9792 (struct sockaddr *)&net->ro._l_addr, m, 9793 auth_offset, auth, auth_keyid, 9794 no_fragmentflg, 0, 0, 9795 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9796 net->port, NULL, 9797 0, 0, 9798 so_locked))) { 9799 /* error, we could not output */ 9800 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 9801 if (error == ENOBUFS) { 9802 asoc->ifp_had_enobuf = 1; 9803 SCTP_STAT_INCR(sctps_lowlevelerr); 9804 } 9805 return (error); 9806 } else { 9807 asoc->ifp_had_enobuf = 0; 9808 } 9809 endofchain = NULL; 9810 auth = NULL; 9811 auth_offset = 0; 9812 /* For HB's */ 9813 /* 9814 * We don't want to mark the net->sent time here 9815 * since this we use this for HB and retrans cannot 9816 * measure RTT 9817 */ 9818 /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */ 9819 9820 /* For auto-close */ 9821 cnt_thru++; 9822 if (*now_filled == 0) { 9823 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 9824 *now = asoc->time_last_sent; 9825 *now_filled = 1; 9826 } else { 9827 asoc->time_last_sent = *now; 9828 } 9829 *cnt_out += bundle_at; 9830 #ifdef SCTP_AUDITING_ENABLED 9831 sctp_audit_log(0xC4, bundle_at); 9832 #endif 9833 if (bundle_at) { 9834 tsns_sent = data_list[0]->rec.data.tsn; 9835 } 9836 for (i = 0; i < bundle_at; i++) { 9837 SCTP_STAT_INCR(sctps_sendretransdata); 9838 data_list[i]->sent = SCTP_DATAGRAM_SENT; 9839 /* 9840 * When we have a revoked data, and we 9841 * retransmit it, then we clear the revoked 9842 * flag since this flag dictates if we 9843 * subtracted from the fs 9844 */ 9845 if (data_list[i]->rec.data.chunk_was_revoked) { 9846 /* Deflate the cwnd */ 9847 data_list[i]->whoTo->cwnd -= data_list[i]->book_size; 9848 data_list[i]->rec.data.chunk_was_revoked = 0; 9849 } 9850 data_list[i]->snd_count++; 9851 sctp_ucount_decr(asoc->sent_queue_retran_cnt); 9852 /* record the time */ 9853 data_list[i]->sent_rcv_time = asoc->time_last_sent; 9854 if (data_list[i]->book_size_scale) { 9855 /* 9856 * need to double the book size on 9857 * this one 9858 */ 9859 data_list[i]->book_size_scale = 0; 9860 /* 9861 * Since we double the booksize, we 9862 * must also double the output queue 9863 * size, since this get shrunk when 9864 * we free by this amount. 9865 */ 9866 atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size); 9867 data_list[i]->book_size *= 2; 9868 9869 9870 } else { 9871 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 9872 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 9873 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 9874 } 9875 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 9876 (uint32_t)(data_list[i]->send_size + 9877 SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 9878 } 9879 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 9880 sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND, 9881 data_list[i]->whoTo->flight_size, 9882 data_list[i]->book_size, 9883 (uint32_t)(uintptr_t)data_list[i]->whoTo, 9884 data_list[i]->rec.data.tsn); 9885 } 9886 sctp_flight_size_increase(data_list[i]); 9887 sctp_total_flight_increase(stcb, data_list[i]); 9888 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 9889 /* SWS sender side engages */ 9890 asoc->peers_rwnd = 0; 9891 } 9892 if ((i == 0) && 9893 (data_list[i]->rec.data.doing_fast_retransmit)) { 9894 SCTP_STAT_INCR(sctps_sendfastretrans); 9895 if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) && 9896 (tmr_started == 0)) { 9897 /*- 9898 * ok we just fast-retrans'd 9899 * the lowest TSN, i.e the 9900 * first on the list. In 9901 * this case we want to give 9902 * some more time to get a 9903 * SACK back without a 9904 * t3-expiring. 9905 */ 9906 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net, 9907 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2); 9908 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9909 } 9910 } 9911 } 9912 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9913 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND); 9914 } 9915 #ifdef SCTP_AUDITING_ENABLED 9916 sctp_auditing(21, inp, stcb, NULL); 9917 #endif 9918 } else { 9919 /* None will fit */ 9920 return (1); 9921 } 9922 if (asoc->sent_queue_retran_cnt <= 0) { 9923 /* all done we have no more to retran */ 9924 asoc->sent_queue_retran_cnt = 0; 9925 break; 9926 } 9927 if (one_chunk) { 9928 /* No more room in rwnd */ 9929 return (1); 9930 } 9931 /* stop the for loop here. we sent out a packet */ 9932 break; 9933 } 9934 return (0); 9935 } 9936 9937 static void 9938 sctp_timer_validation(struct sctp_inpcb *inp, 9939 struct sctp_tcb *stcb, 9940 struct sctp_association *asoc) 9941 { 9942 struct sctp_nets *net; 9943 9944 /* Validate that a timer is running somewhere */ 9945 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9946 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9947 /* Here is a timer */ 9948 return; 9949 } 9950 } 9951 SCTP_TCB_LOCK_ASSERT(stcb); 9952 /* Gak, we did not have a timer somewhere */ 9953 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n"); 9954 if (asoc->alternate) { 9955 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate); 9956 } else { 9957 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination); 9958 } 9959 return; 9960 } 9961 9962 void 9963 sctp_chunk_output(struct sctp_inpcb *inp, 9964 struct sctp_tcb *stcb, 9965 int from_where, 9966 int so_locked 9967 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9968 SCTP_UNUSED 9969 #endif 9970 ) 9971 { 9972 /*- 9973 * Ok this is the generic chunk service queue. we must do the 9974 * following: 9975 * - See if there are retransmits pending, if so we must 9976 * do these first. 9977 * - Service the stream queue that is next, moving any 9978 * message (note I must get a complete message i.e. 9979 * FIRST/MIDDLE and LAST to the out queue in one pass) and assigning 9980 * TSN's 9981 * - Check to see if the cwnd/rwnd allows any output, if so we 9982 * go ahead and fomulate and send the low level chunks. Making sure 9983 * to combine any control in the control chunk queue also. 9984 */ 9985 struct sctp_association *asoc; 9986 struct sctp_nets *net; 9987 int error = 0, num_out, tot_out = 0, ret = 0, reason_code; 9988 unsigned int burst_cnt = 0; 9989 struct timeval now; 9990 int now_filled = 0; 9991 int nagle_on; 9992 int frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 9993 int un_sent = 0; 9994 int fr_done; 9995 unsigned int tot_frs = 0; 9996 9997 asoc = &stcb->asoc; 9998 do_it_again: 9999 /* The Nagle algorithm is only applied when handling a send call. */ 10000 if (from_where == SCTP_OUTPUT_FROM_USR_SEND) { 10001 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) { 10002 nagle_on = 0; 10003 } else { 10004 nagle_on = 1; 10005 } 10006 } else { 10007 nagle_on = 0; 10008 } 10009 SCTP_TCB_LOCK_ASSERT(stcb); 10010 10011 un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 10012 10013 if ((un_sent <= 0) && 10014 (TAILQ_EMPTY(&asoc->control_send_queue)) && 10015 (TAILQ_EMPTY(&asoc->asconf_send_queue)) && 10016 (asoc->sent_queue_retran_cnt == 0) && 10017 (asoc->trigger_reset == 0)) { 10018 /* Nothing to do unless there is something to be sent left */ 10019 return; 10020 } 10021 /* 10022 * Do we have something to send, data or control AND a sack timer 10023 * running, if so piggy-back the sack. 10024 */ 10025 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 10026 sctp_send_sack(stcb, so_locked); 10027 (void)SCTP_OS_TIMER_STOP(&stcb->asoc.dack_timer.timer); 10028 } 10029 while (asoc->sent_queue_retran_cnt) { 10030 /*- 10031 * Ok, it is retransmission time only, we send out only ONE 10032 * packet with a single call off to the retran code. 10033 */ 10034 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) { 10035 /*- 10036 * Special hook for handling cookiess discarded 10037 * by peer that carried data. Send cookie-ack only 10038 * and then the next call with get the retran's. 10039 */ 10040 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 10041 from_where, 10042 &now, &now_filled, frag_point, so_locked); 10043 return; 10044 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) { 10045 /* if its not from a HB then do it */ 10046 fr_done = 0; 10047 ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked); 10048 if (fr_done) { 10049 tot_frs++; 10050 } 10051 } else { 10052 /* 10053 * its from any other place, we don't allow retran 10054 * output (only control) 10055 */ 10056 ret = 1; 10057 } 10058 if (ret > 0) { 10059 /* Can't send anymore */ 10060 /*- 10061 * now lets push out control by calling med-level 10062 * output once. this assures that we WILL send HB's 10063 * if queued too. 10064 */ 10065 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 10066 from_where, 10067 &now, &now_filled, frag_point, so_locked); 10068 #ifdef SCTP_AUDITING_ENABLED 10069 sctp_auditing(8, inp, stcb, NULL); 10070 #endif 10071 sctp_timer_validation(inp, stcb, asoc); 10072 return; 10073 } 10074 if (ret < 0) { 10075 /*- 10076 * The count was off.. retran is not happening so do 10077 * the normal retransmission. 10078 */ 10079 #ifdef SCTP_AUDITING_ENABLED 10080 sctp_auditing(9, inp, stcb, NULL); 10081 #endif 10082 if (ret == SCTP_RETRAN_EXIT) { 10083 return; 10084 } 10085 break; 10086 } 10087 if (from_where == SCTP_OUTPUT_FROM_T3) { 10088 /* Only one transmission allowed out of a timeout */ 10089 #ifdef SCTP_AUDITING_ENABLED 10090 sctp_auditing(10, inp, stcb, NULL); 10091 #endif 10092 /* Push out any control */ 10093 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where, 10094 &now, &now_filled, frag_point, so_locked); 10095 return; 10096 } 10097 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) { 10098 /* Hit FR burst limit */ 10099 return; 10100 } 10101 if ((num_out == 0) && (ret == 0)) { 10102 /* No more retrans to send */ 10103 break; 10104 } 10105 } 10106 #ifdef SCTP_AUDITING_ENABLED 10107 sctp_auditing(12, inp, stcb, NULL); 10108 #endif 10109 /* Check for bad destinations, if they exist move chunks around. */ 10110 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 10111 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) { 10112 /*- 10113 * if possible move things off of this address we 10114 * still may send below due to the dormant state but 10115 * we try to find an alternate address to send to 10116 * and if we have one we move all queued data on the 10117 * out wheel to this alternate address. 10118 */ 10119 if (net->ref_count > 1) 10120 sctp_move_chunks_from_net(stcb, net); 10121 } else { 10122 /*- 10123 * if ((asoc->sat_network) || (net->addr_is_local)) 10124 * { burst_limit = asoc->max_burst * 10125 * SCTP_SAT_NETWORK_BURST_INCR; } 10126 */ 10127 if (asoc->max_burst > 0) { 10128 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) { 10129 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) { 10130 /* 10131 * JRS - Use the congestion 10132 * control given in the 10133 * congestion control module 10134 */ 10135 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst); 10136 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10137 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED); 10138 } 10139 SCTP_STAT_INCR(sctps_maxburstqueued); 10140 } 10141 net->fast_retran_ip = 0; 10142 } else { 10143 if (net->flight_size == 0) { 10144 /* 10145 * Should be decaying the 10146 * cwnd here 10147 */ 10148 ; 10149 } 10150 } 10151 } 10152 } 10153 10154 } 10155 burst_cnt = 0; 10156 do { 10157 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out, 10158 &reason_code, 0, from_where, 10159 &now, &now_filled, frag_point, so_locked); 10160 if (error) { 10161 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error); 10162 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10163 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP); 10164 } 10165 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10166 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES); 10167 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES); 10168 } 10169 break; 10170 } 10171 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out); 10172 10173 tot_out += num_out; 10174 burst_cnt++; 10175 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10176 sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES); 10177 if (num_out == 0) { 10178 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES); 10179 } 10180 } 10181 if (nagle_on) { 10182 /* 10183 * When the Nagle algorithm is used, look at how 10184 * much is unsent, then if its smaller than an MTU 10185 * and we have data in flight we stop, except if we 10186 * are handling a fragmented user message. 10187 */ 10188 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 10189 if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) && 10190 (stcb->asoc.total_flight > 0)) { 10191 /* && sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {*/ 10192 break; 10193 } 10194 } 10195 if (TAILQ_EMPTY(&asoc->control_send_queue) && 10196 TAILQ_EMPTY(&asoc->send_queue) && 10197 sctp_is_there_unsent_data(stcb, so_locked) == 0) { 10198 /* Nothing left to send */ 10199 break; 10200 } 10201 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) { 10202 /* Nothing left to send */ 10203 break; 10204 } 10205 } while (num_out && 10206 ((asoc->max_burst == 0) || 10207 SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) || 10208 (burst_cnt < asoc->max_burst))); 10209 10210 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) { 10211 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) { 10212 SCTP_STAT_INCR(sctps_maxburstqueued); 10213 asoc->burst_limit_applied = 1; 10214 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10215 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED); 10216 } 10217 } else { 10218 asoc->burst_limit_applied = 0; 10219 } 10220 } 10221 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10222 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES); 10223 } 10224 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n", 10225 tot_out); 10226 10227 /*- 10228 * Now we need to clean up the control chunk chain if a ECNE is on 10229 * it. It must be marked as UNSENT again so next call will continue 10230 * to send it until such time that we get a CWR, to remove it. 10231 */ 10232 if (stcb->asoc.ecn_echo_cnt_onq) 10233 sctp_fix_ecn_echo(asoc); 10234 10235 if (stcb->asoc.trigger_reset) { 10236 if (sctp_send_stream_reset_out_if_possible(stcb, so_locked) == 0) { 10237 goto do_it_again; 10238 } 10239 } 10240 return; 10241 } 10242 10243 10244 int 10245 sctp_output( 10246 struct sctp_inpcb *inp, 10247 struct mbuf *m, 10248 struct sockaddr *addr, 10249 struct mbuf *control, 10250 struct thread *p, 10251 int flags) 10252 { 10253 if (inp == NULL) { 10254 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10255 return (EINVAL); 10256 } 10257 if (inp->sctp_socket == NULL) { 10258 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10259 return (EINVAL); 10260 } 10261 return (sctp_sosend(inp->sctp_socket, 10262 addr, 10263 (struct uio *)NULL, 10264 m, 10265 control, 10266 flags, p 10267 )); 10268 } 10269 10270 void 10271 send_forward_tsn(struct sctp_tcb *stcb, 10272 struct sctp_association *asoc) 10273 { 10274 struct sctp_tmit_chunk *chk, *at, *tp1, *last; 10275 struct sctp_forward_tsn_chunk *fwdtsn; 10276 struct sctp_strseq *strseq; 10277 struct sctp_strseq_mid *strseq_m; 10278 uint32_t advance_peer_ack_point; 10279 unsigned int cnt_of_space, i, ovh; 10280 unsigned int space_needed; 10281 unsigned int cnt_of_skipped = 0; 10282 10283 SCTP_TCB_LOCK_ASSERT(stcb); 10284 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10285 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 10286 /* mark it to unsent */ 10287 chk->sent = SCTP_DATAGRAM_UNSENT; 10288 chk->snd_count = 0; 10289 /* Do we correct its output location? */ 10290 if (chk->whoTo) { 10291 sctp_free_remote_addr(chk->whoTo); 10292 chk->whoTo = NULL; 10293 } 10294 goto sctp_fill_in_rest; 10295 } 10296 } 10297 /* Ok if we reach here we must build one */ 10298 sctp_alloc_a_chunk(stcb, chk); 10299 if (chk == NULL) { 10300 return; 10301 } 10302 asoc->fwd_tsn_cnt++; 10303 chk->copy_by_ref = 0; 10304 /* 10305 * We don't do the old thing here since this is used not for on-wire 10306 * but to tell if we are sending a fwd-tsn by the stack during 10307 * output. And if its a IFORWARD or a FORWARD it is a fwd-tsn. 10308 */ 10309 chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN; 10310 chk->rec.chunk_id.can_take_data = 0; 10311 chk->flags = 0; 10312 chk->asoc = asoc; 10313 chk->whoTo = NULL; 10314 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 10315 if (chk->data == NULL) { 10316 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 10317 return; 10318 } 10319 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 10320 chk->sent = SCTP_DATAGRAM_UNSENT; 10321 chk->snd_count = 0; 10322 TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next); 10323 asoc->ctrl_queue_cnt++; 10324 sctp_fill_in_rest: 10325 /*- 10326 * Here we go through and fill out the part that deals with 10327 * stream/seq of the ones we skip. 10328 */ 10329 SCTP_BUF_LEN(chk->data) = 0; 10330 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10331 if ((at->sent != SCTP_FORWARD_TSN_SKIP) && 10332 (at->sent != SCTP_DATAGRAM_NR_ACKED)) { 10333 /* no more to look at */ 10334 break; 10335 } 10336 if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) { 10337 /* We don't report these */ 10338 continue; 10339 } 10340 cnt_of_skipped++; 10341 } 10342 if (asoc->idata_supported) { 10343 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10344 (cnt_of_skipped * sizeof(struct sctp_strseq_mid))); 10345 } else { 10346 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10347 (cnt_of_skipped * sizeof(struct sctp_strseq))); 10348 } 10349 cnt_of_space = (unsigned int)M_TRAILINGSPACE(chk->data); 10350 10351 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 10352 ovh = SCTP_MIN_OVERHEAD; 10353 } else { 10354 ovh = SCTP_MIN_V4_OVERHEAD; 10355 } 10356 if (cnt_of_space > (asoc->smallest_mtu - ovh)) { 10357 /* trim to a mtu size */ 10358 cnt_of_space = asoc->smallest_mtu - ovh; 10359 } 10360 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10361 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10362 0xff, 0, cnt_of_skipped, 10363 asoc->advanced_peer_ack_point); 10364 } 10365 advance_peer_ack_point = asoc->advanced_peer_ack_point; 10366 if (cnt_of_space < space_needed) { 10367 /*- 10368 * ok we must trim down the chunk by lowering the 10369 * advance peer ack point. 10370 */ 10371 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10372 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10373 0xff, 0xff, cnt_of_space, 10374 space_needed); 10375 } 10376 cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk); 10377 if (asoc->idata_supported) { 10378 cnt_of_skipped /= sizeof(struct sctp_strseq_mid); 10379 } else { 10380 cnt_of_skipped /= sizeof(struct sctp_strseq); 10381 } 10382 /*- 10383 * Go through and find the TSN that will be the one 10384 * we report. 10385 */ 10386 at = TAILQ_FIRST(&asoc->sent_queue); 10387 if (at != NULL) { 10388 for (i = 0; i < cnt_of_skipped; i++) { 10389 tp1 = TAILQ_NEXT(at, sctp_next); 10390 if (tp1 == NULL) { 10391 break; 10392 } 10393 at = tp1; 10394 } 10395 } 10396 if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10397 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10398 0xff, cnt_of_skipped, at->rec.data.tsn, 10399 asoc->advanced_peer_ack_point); 10400 } 10401 last = at; 10402 /*- 10403 * last now points to last one I can report, update 10404 * peer ack point 10405 */ 10406 if (last) { 10407 advance_peer_ack_point = last->rec.data.tsn; 10408 } 10409 if (asoc->idata_supported) { 10410 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10411 cnt_of_skipped * sizeof(struct sctp_strseq_mid); 10412 } else { 10413 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10414 cnt_of_skipped * sizeof(struct sctp_strseq); 10415 } 10416 } 10417 chk->send_size = space_needed; 10418 /* Setup the chunk */ 10419 fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *); 10420 fwdtsn->ch.chunk_length = htons(chk->send_size); 10421 fwdtsn->ch.chunk_flags = 0; 10422 if (asoc->idata_supported) { 10423 fwdtsn->ch.chunk_type = SCTP_IFORWARD_CUM_TSN; 10424 } else { 10425 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN; 10426 } 10427 fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point); 10428 SCTP_BUF_LEN(chk->data) = chk->send_size; 10429 fwdtsn++; 10430 /*- 10431 * Move pointer to after the fwdtsn and transfer to the 10432 * strseq pointer. 10433 */ 10434 if (asoc->idata_supported) { 10435 strseq_m = (struct sctp_strseq_mid *)fwdtsn; 10436 strseq = NULL; 10437 } else { 10438 strseq = (struct sctp_strseq *)fwdtsn; 10439 strseq_m = NULL; 10440 } 10441 /*- 10442 * Now populate the strseq list. This is done blindly 10443 * without pulling out duplicate stream info. This is 10444 * inefficent but won't harm the process since the peer will 10445 * look at these in sequence and will thus release anything. 10446 * It could mean we exceed the PMTU and chop off some that 10447 * we could have included.. but this is unlikely (aka 1432/4 10448 * would mean 300+ stream seq's would have to be reported in 10449 * one FWD-TSN. With a bit of work we can later FIX this to 10450 * optimize and pull out duplicates.. but it does add more 10451 * overhead. So for now... not! 10452 */ 10453 i = 0; 10454 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10455 if (i >= cnt_of_skipped) { 10456 break; 10457 } 10458 if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) { 10459 /* We don't report these */ 10460 continue; 10461 } 10462 if (at->rec.data.tsn == advance_peer_ack_point) { 10463 at->rec.data.fwd_tsn_cnt = 0; 10464 } 10465 if (asoc->idata_supported) { 10466 strseq_m->sid = htons(at->rec.data.sid); 10467 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10468 strseq_m->flags = htons(PR_SCTP_UNORDERED_FLAG); 10469 } else { 10470 strseq_m->flags = 0; 10471 } 10472 strseq_m->mid = htonl(at->rec.data.mid); 10473 strseq_m++; 10474 } else { 10475 strseq->sid = htons(at->rec.data.sid); 10476 strseq->ssn = htons((uint16_t)at->rec.data.mid); 10477 strseq++; 10478 } 10479 i++; 10480 } 10481 return; 10482 } 10483 10484 void 10485 sctp_send_sack(struct sctp_tcb *stcb, int so_locked 10486 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10487 SCTP_UNUSED 10488 #endif 10489 ) 10490 { 10491 /*- 10492 * Queue up a SACK or NR-SACK in the control queue. 10493 * We must first check to see if a SACK or NR-SACK is 10494 * somehow on the control queue. 10495 * If so, we will take and and remove the old one. 10496 */ 10497 struct sctp_association *asoc; 10498 struct sctp_tmit_chunk *chk, *a_chk; 10499 struct sctp_sack_chunk *sack; 10500 struct sctp_nr_sack_chunk *nr_sack; 10501 struct sctp_gap_ack_block *gap_descriptor; 10502 const struct sack_track *selector; 10503 int mergeable = 0; 10504 int offset; 10505 caddr_t limit; 10506 uint32_t *dup; 10507 int limit_reached = 0; 10508 unsigned int i, siz, j; 10509 unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space; 10510 int num_dups = 0; 10511 int space_req; 10512 uint32_t highest_tsn; 10513 uint8_t flags; 10514 uint8_t type; 10515 uint8_t tsn_map; 10516 10517 if (stcb->asoc.nrsack_supported == 1) { 10518 type = SCTP_NR_SELECTIVE_ACK; 10519 } else { 10520 type = SCTP_SELECTIVE_ACK; 10521 } 10522 a_chk = NULL; 10523 asoc = &stcb->asoc; 10524 SCTP_TCB_LOCK_ASSERT(stcb); 10525 if (asoc->last_data_chunk_from == NULL) { 10526 /* Hmm we never received anything */ 10527 return; 10528 } 10529 sctp_slide_mapping_arrays(stcb); 10530 sctp_set_rwnd(stcb, asoc); 10531 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10532 if (chk->rec.chunk_id.id == type) { 10533 /* Hmm, found a sack already on queue, remove it */ 10534 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 10535 asoc->ctrl_queue_cnt--; 10536 a_chk = chk; 10537 if (a_chk->data) { 10538 sctp_m_freem(a_chk->data); 10539 a_chk->data = NULL; 10540 } 10541 if (a_chk->whoTo) { 10542 sctp_free_remote_addr(a_chk->whoTo); 10543 a_chk->whoTo = NULL; 10544 } 10545 break; 10546 } 10547 } 10548 if (a_chk == NULL) { 10549 sctp_alloc_a_chunk(stcb, a_chk); 10550 if (a_chk == NULL) { 10551 /* No memory so we drop the idea, and set a timer */ 10552 if (stcb->asoc.delayed_ack) { 10553 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10554 stcb->sctp_ep, stcb, NULL, 10555 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3); 10556 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10557 stcb->sctp_ep, stcb, NULL); 10558 } else { 10559 stcb->asoc.send_sack = 1; 10560 } 10561 return; 10562 } 10563 a_chk->copy_by_ref = 0; 10564 a_chk->rec.chunk_id.id = type; 10565 a_chk->rec.chunk_id.can_take_data = 1; 10566 } 10567 /* Clear our pkt counts */ 10568 asoc->data_pkts_seen = 0; 10569 10570 a_chk->flags = 0; 10571 a_chk->asoc = asoc; 10572 a_chk->snd_count = 0; 10573 a_chk->send_size = 0; /* fill in later */ 10574 a_chk->sent = SCTP_DATAGRAM_UNSENT; 10575 a_chk->whoTo = NULL; 10576 10577 if (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE)) { 10578 /*- 10579 * Ok, the destination for the SACK is unreachable, lets see if 10580 * we can select an alternate to asoc->last_data_chunk_from 10581 */ 10582 a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0); 10583 if (a_chk->whoTo == NULL) { 10584 /* Nope, no alternate */ 10585 a_chk->whoTo = asoc->last_data_chunk_from; 10586 } 10587 } else { 10588 a_chk->whoTo = asoc->last_data_chunk_from; 10589 } 10590 if (a_chk->whoTo) { 10591 atomic_add_int(&a_chk->whoTo->ref_count, 1); 10592 } 10593 if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) { 10594 highest_tsn = asoc->highest_tsn_inside_map; 10595 } else { 10596 highest_tsn = asoc->highest_tsn_inside_nr_map; 10597 } 10598 if (highest_tsn == asoc->cumulative_tsn) { 10599 /* no gaps */ 10600 if (type == SCTP_SELECTIVE_ACK) { 10601 space_req = sizeof(struct sctp_sack_chunk); 10602 } else { 10603 space_req = sizeof(struct sctp_nr_sack_chunk); 10604 } 10605 } else { 10606 /* gaps get a cluster */ 10607 space_req = MCLBYTES; 10608 } 10609 /* Ok now lets formulate a MBUF with our sack */ 10610 a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA); 10611 if ((a_chk->data == NULL) || 10612 (a_chk->whoTo == NULL)) { 10613 /* rats, no mbuf memory */ 10614 if (a_chk->data) { 10615 /* was a problem with the destination */ 10616 sctp_m_freem(a_chk->data); 10617 a_chk->data = NULL; 10618 } 10619 sctp_free_a_chunk(stcb, a_chk, so_locked); 10620 /* sa_ignore NO_NULL_CHK */ 10621 if (stcb->asoc.delayed_ack) { 10622 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10623 stcb->sctp_ep, stcb, NULL, 10624 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4); 10625 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10626 stcb->sctp_ep, stcb, NULL); 10627 } else { 10628 stcb->asoc.send_sack = 1; 10629 } 10630 return; 10631 } 10632 /* ok, lets go through and fill it in */ 10633 SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD); 10634 space = (unsigned int)M_TRAILINGSPACE(a_chk->data); 10635 if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) { 10636 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD); 10637 } 10638 limit = mtod(a_chk->data, caddr_t); 10639 limit += space; 10640 10641 flags = 0; 10642 10643 if ((asoc->sctp_cmt_on_off > 0) && 10644 SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) { 10645 /*- 10646 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been 10647 * received, then set high bit to 1, else 0. Reset 10648 * pkts_rcvd. 10649 */ 10650 flags |= (asoc->cmt_dac_pkts_rcvd << 6); 10651 asoc->cmt_dac_pkts_rcvd = 0; 10652 } 10653 #ifdef SCTP_ASOCLOG_OF_TSNS 10654 stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn; 10655 stcb->asoc.cumack_log_atsnt++; 10656 if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) { 10657 stcb->asoc.cumack_log_atsnt = 0; 10658 } 10659 #endif 10660 /* reset the readers interpretation */ 10661 stcb->freed_by_sorcv_sincelast = 0; 10662 10663 if (type == SCTP_SELECTIVE_ACK) { 10664 sack = mtod(a_chk->data, struct sctp_sack_chunk *); 10665 nr_sack = NULL; 10666 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk)); 10667 if (highest_tsn > asoc->mapping_array_base_tsn) { 10668 siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10669 } else { 10670 siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8; 10671 } 10672 } else { 10673 sack = NULL; 10674 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *); 10675 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk)); 10676 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) { 10677 siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10678 } else { 10679 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8; 10680 } 10681 } 10682 10683 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10684 offset = 1; 10685 } else { 10686 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10687 } 10688 if (((type == SCTP_SELECTIVE_ACK) && 10689 SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) || 10690 ((type == SCTP_NR_SELECTIVE_ACK) && 10691 SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) { 10692 /* we have a gap .. maybe */ 10693 for (i = 0; i < siz; i++) { 10694 tsn_map = asoc->mapping_array[i]; 10695 if (type == SCTP_SELECTIVE_ACK) { 10696 tsn_map |= asoc->nr_mapping_array[i]; 10697 } 10698 if (i == 0) { 10699 /* 10700 * Clear all bits corresponding to TSNs 10701 * smaller or equal to the cumulative TSN. 10702 */ 10703 tsn_map &= (~0U << (1 - offset)); 10704 } 10705 selector = &sack_array[tsn_map]; 10706 if (mergeable && selector->right_edge) { 10707 /* 10708 * Backup, left and right edges were ok to 10709 * merge. 10710 */ 10711 num_gap_blocks--; 10712 gap_descriptor--; 10713 } 10714 if (selector->num_entries == 0) 10715 mergeable = 0; 10716 else { 10717 for (j = 0; j < selector->num_entries; j++) { 10718 if (mergeable && selector->right_edge) { 10719 /* 10720 * do a merge by NOT setting 10721 * the left side 10722 */ 10723 mergeable = 0; 10724 } else { 10725 /* 10726 * no merge, set the left 10727 * side 10728 */ 10729 mergeable = 0; 10730 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10731 } 10732 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10733 num_gap_blocks++; 10734 gap_descriptor++; 10735 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10736 /* no more room */ 10737 limit_reached = 1; 10738 break; 10739 } 10740 } 10741 if (selector->left_edge) { 10742 mergeable = 1; 10743 } 10744 } 10745 if (limit_reached) { 10746 /* Reached the limit stop */ 10747 break; 10748 } 10749 offset += 8; 10750 } 10751 } 10752 if ((type == SCTP_NR_SELECTIVE_ACK) && 10753 (limit_reached == 0)) { 10754 10755 mergeable = 0; 10756 10757 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) { 10758 siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10759 } else { 10760 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8; 10761 } 10762 10763 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10764 offset = 1; 10765 } else { 10766 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10767 } 10768 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) { 10769 /* we have a gap .. maybe */ 10770 for (i = 0; i < siz; i++) { 10771 tsn_map = asoc->nr_mapping_array[i]; 10772 if (i == 0) { 10773 /* 10774 * Clear all bits corresponding to 10775 * TSNs smaller or equal to the 10776 * cumulative TSN. 10777 */ 10778 tsn_map &= (~0U << (1 - offset)); 10779 } 10780 selector = &sack_array[tsn_map]; 10781 if (mergeable && selector->right_edge) { 10782 /* 10783 * Backup, left and right edges were 10784 * ok to merge. 10785 */ 10786 num_nr_gap_blocks--; 10787 gap_descriptor--; 10788 } 10789 if (selector->num_entries == 0) 10790 mergeable = 0; 10791 else { 10792 for (j = 0; j < selector->num_entries; j++) { 10793 if (mergeable && selector->right_edge) { 10794 /* 10795 * do a merge by NOT 10796 * setting the left 10797 * side 10798 */ 10799 mergeable = 0; 10800 } else { 10801 /* 10802 * no merge, set the 10803 * left side 10804 */ 10805 mergeable = 0; 10806 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10807 } 10808 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10809 num_nr_gap_blocks++; 10810 gap_descriptor++; 10811 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10812 /* no more room */ 10813 limit_reached = 1; 10814 break; 10815 } 10816 } 10817 if (selector->left_edge) { 10818 mergeable = 1; 10819 } 10820 } 10821 if (limit_reached) { 10822 /* Reached the limit stop */ 10823 break; 10824 } 10825 offset += 8; 10826 } 10827 } 10828 } 10829 /* now we must add any dups we are going to report. */ 10830 if ((limit_reached == 0) && (asoc->numduptsns)) { 10831 dup = (uint32_t *)gap_descriptor; 10832 for (i = 0; i < asoc->numduptsns; i++) { 10833 *dup = htonl(asoc->dup_tsns[i]); 10834 dup++; 10835 num_dups++; 10836 if (((caddr_t)dup + sizeof(uint32_t)) > limit) { 10837 /* no more room */ 10838 break; 10839 } 10840 } 10841 asoc->numduptsns = 0; 10842 } 10843 /* 10844 * now that the chunk is prepared queue it to the control chunk 10845 * queue. 10846 */ 10847 if (type == SCTP_SELECTIVE_ACK) { 10848 a_chk->send_size = (uint16_t)(sizeof(struct sctp_sack_chunk) + 10849 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10850 num_dups * sizeof(int32_t)); 10851 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10852 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10853 sack->sack.a_rwnd = htonl(asoc->my_rwnd); 10854 sack->sack.num_gap_ack_blks = htons(num_gap_blocks); 10855 sack->sack.num_dup_tsns = htons(num_dups); 10856 sack->ch.chunk_type = type; 10857 sack->ch.chunk_flags = flags; 10858 sack->ch.chunk_length = htons(a_chk->send_size); 10859 } else { 10860 a_chk->send_size = (uint16_t)(sizeof(struct sctp_nr_sack_chunk) + 10861 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10862 num_dups * sizeof(int32_t)); 10863 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10864 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10865 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd); 10866 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks); 10867 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks); 10868 nr_sack->nr_sack.num_dup_tsns = htons(num_dups); 10869 nr_sack->nr_sack.reserved = 0; 10870 nr_sack->ch.chunk_type = type; 10871 nr_sack->ch.chunk_flags = flags; 10872 nr_sack->ch.chunk_length = htons(a_chk->send_size); 10873 } 10874 TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next); 10875 asoc->my_last_reported_rwnd = asoc->my_rwnd; 10876 asoc->ctrl_queue_cnt++; 10877 asoc->send_sack = 0; 10878 SCTP_STAT_INCR(sctps_sendsacks); 10879 return; 10880 } 10881 10882 void 10883 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked 10884 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10885 SCTP_UNUSED 10886 #endif 10887 ) 10888 { 10889 struct mbuf *m_abort, *m, *m_last; 10890 struct mbuf *m_out, *m_end = NULL; 10891 struct sctp_abort_chunk *abort; 10892 struct sctp_auth_chunk *auth = NULL; 10893 struct sctp_nets *net; 10894 uint32_t vtag; 10895 uint32_t auth_offset = 0; 10896 int error; 10897 uint16_t cause_len, chunk_len, padding_len; 10898 10899 SCTP_TCB_LOCK_ASSERT(stcb); 10900 /*- 10901 * Add an AUTH chunk, if chunk requires it and save the offset into 10902 * the chain for AUTH 10903 */ 10904 if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION, 10905 stcb->asoc.peer_auth_chunks)) { 10906 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset, 10907 stcb, SCTP_ABORT_ASSOCIATION); 10908 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10909 } else { 10910 m_out = NULL; 10911 } 10912 m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER); 10913 if (m_abort == NULL) { 10914 if (m_out) { 10915 sctp_m_freem(m_out); 10916 } 10917 if (operr) { 10918 sctp_m_freem(operr); 10919 } 10920 return; 10921 } 10922 /* link in any error */ 10923 SCTP_BUF_NEXT(m_abort) = operr; 10924 cause_len = 0; 10925 m_last = NULL; 10926 for (m = operr; m; m = SCTP_BUF_NEXT(m)) { 10927 cause_len += (uint16_t)SCTP_BUF_LEN(m); 10928 if (SCTP_BUF_NEXT(m) == NULL) { 10929 m_last = m; 10930 } 10931 } 10932 SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk); 10933 chunk_len = (uint16_t)sizeof(struct sctp_abort_chunk) + cause_len; 10934 padding_len = SCTP_SIZE32(chunk_len) - chunk_len; 10935 if (m_out == NULL) { 10936 /* NO Auth chunk prepended, so reserve space in front */ 10937 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD); 10938 m_out = m_abort; 10939 } else { 10940 /* Put AUTH chunk at the front of the chain */ 10941 SCTP_BUF_NEXT(m_end) = m_abort; 10942 } 10943 if (stcb->asoc.alternate) { 10944 net = stcb->asoc.alternate; 10945 } else { 10946 net = stcb->asoc.primary_destination; 10947 } 10948 /* Fill in the ABORT chunk header. */ 10949 abort = mtod(m_abort, struct sctp_abort_chunk *); 10950 abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION; 10951 if (stcb->asoc.peer_vtag == 0) { 10952 /* This happens iff the assoc is in COOKIE-WAIT state. */ 10953 vtag = stcb->asoc.my_vtag; 10954 abort->ch.chunk_flags = SCTP_HAD_NO_TCB; 10955 } else { 10956 vtag = stcb->asoc.peer_vtag; 10957 abort->ch.chunk_flags = 0; 10958 } 10959 abort->ch.chunk_length = htons(chunk_len); 10960 /* Add padding, if necessary. */ 10961 if (padding_len > 0) { 10962 if ((m_last == NULL) || 10963 (sctp_add_pad_tombuf(m_last, padding_len) == NULL)) { 10964 sctp_m_freem(m_out); 10965 return; 10966 } 10967 } 10968 if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 10969 (struct sockaddr *)&net->ro._l_addr, 10970 m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0, 10971 stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag), 10972 stcb->asoc.primary_destination->port, NULL, 10973 0, 0, 10974 so_locked))) { 10975 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 10976 if (error == ENOBUFS) { 10977 stcb->asoc.ifp_had_enobuf = 1; 10978 SCTP_STAT_INCR(sctps_lowlevelerr); 10979 } 10980 } else { 10981 stcb->asoc.ifp_had_enobuf = 0; 10982 } 10983 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10984 } 10985 10986 void 10987 sctp_send_shutdown_complete(struct sctp_tcb *stcb, 10988 struct sctp_nets *net, 10989 int reflect_vtag) 10990 { 10991 /* formulate and SEND a SHUTDOWN-COMPLETE */ 10992 struct mbuf *m_shutdown_comp; 10993 struct sctp_shutdown_complete_chunk *shutdown_complete; 10994 uint32_t vtag; 10995 int error; 10996 uint8_t flags; 10997 10998 m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 10999 if (m_shutdown_comp == NULL) { 11000 /* no mbuf's */ 11001 return; 11002 } 11003 if (reflect_vtag) { 11004 flags = SCTP_HAD_NO_TCB; 11005 vtag = stcb->asoc.my_vtag; 11006 } else { 11007 flags = 0; 11008 vtag = stcb->asoc.peer_vtag; 11009 } 11010 shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *); 11011 shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE; 11012 shutdown_complete->ch.chunk_flags = flags; 11013 shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk)); 11014 SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk); 11015 if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 11016 (struct sockaddr *)&net->ro._l_addr, 11017 m_shutdown_comp, 0, NULL, 0, 1, 0, 0, 11018 stcb->sctp_ep->sctp_lport, stcb->rport, 11019 htonl(vtag), 11020 net->port, NULL, 11021 0, 0, 11022 SCTP_SO_NOT_LOCKED))) { 11023 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 11024 if (error == ENOBUFS) { 11025 stcb->asoc.ifp_had_enobuf = 1; 11026 SCTP_STAT_INCR(sctps_lowlevelerr); 11027 } 11028 } else { 11029 stcb->asoc.ifp_had_enobuf = 0; 11030 } 11031 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11032 return; 11033 } 11034 11035 static void 11036 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst, 11037 struct sctphdr *sh, uint32_t vtag, 11038 uint8_t type, struct mbuf *cause, 11039 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 11040 uint32_t vrf_id, uint16_t port) 11041 { 11042 struct mbuf *o_pak; 11043 struct mbuf *mout; 11044 struct sctphdr *shout; 11045 struct sctp_chunkhdr *ch; 11046 #if defined(INET) || defined(INET6) 11047 struct udphdr *udp; 11048 int ret; 11049 #endif 11050 int len, cause_len, padding_len; 11051 #ifdef INET 11052 struct sockaddr_in *src_sin, *dst_sin; 11053 struct ip *ip; 11054 #endif 11055 #ifdef INET6 11056 struct sockaddr_in6 *src_sin6, *dst_sin6; 11057 struct ip6_hdr *ip6; 11058 #endif 11059 11060 /* Compute the length of the cause and add final padding. */ 11061 cause_len = 0; 11062 if (cause != NULL) { 11063 struct mbuf *m_at, *m_last = NULL; 11064 11065 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 11066 if (SCTP_BUF_NEXT(m_at) == NULL) 11067 m_last = m_at; 11068 cause_len += SCTP_BUF_LEN(m_at); 11069 } 11070 padding_len = cause_len % 4; 11071 if (padding_len != 0) { 11072 padding_len = 4 - padding_len; 11073 } 11074 if (padding_len != 0) { 11075 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 11076 sctp_m_freem(cause); 11077 return; 11078 } 11079 } 11080 } else { 11081 padding_len = 0; 11082 } 11083 /* Get an mbuf for the header. */ 11084 len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 11085 switch (dst->sa_family) { 11086 #ifdef INET 11087 case AF_INET: 11088 len += sizeof(struct ip); 11089 break; 11090 #endif 11091 #ifdef INET6 11092 case AF_INET6: 11093 len += sizeof(struct ip6_hdr); 11094 break; 11095 #endif 11096 default: 11097 break; 11098 } 11099 #if defined(INET) || defined(INET6) 11100 if (port) { 11101 len += sizeof(struct udphdr); 11102 } 11103 #endif 11104 mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA); 11105 if (mout == NULL) { 11106 if (cause) { 11107 sctp_m_freem(cause); 11108 } 11109 return; 11110 } 11111 SCTP_BUF_RESV_UF(mout, max_linkhdr); 11112 SCTP_BUF_LEN(mout) = len; 11113 SCTP_BUF_NEXT(mout) = cause; 11114 M_SETFIB(mout, fibnum); 11115 mout->m_pkthdr.flowid = mflowid; 11116 M_HASHTYPE_SET(mout, mflowtype); 11117 #ifdef INET 11118 ip = NULL; 11119 #endif 11120 #ifdef INET6 11121 ip6 = NULL; 11122 #endif 11123 switch (dst->sa_family) { 11124 #ifdef INET 11125 case AF_INET: 11126 src_sin = (struct sockaddr_in *)src; 11127 dst_sin = (struct sockaddr_in *)dst; 11128 ip = mtod(mout, struct ip *); 11129 ip->ip_v = IPVERSION; 11130 ip->ip_hl = (sizeof(struct ip) >> 2); 11131 ip->ip_tos = 0; 11132 ip->ip_off = htons(IP_DF); 11133 ip_fillid(ip); 11134 ip->ip_ttl = MODULE_GLOBAL(ip_defttl); 11135 if (port) { 11136 ip->ip_p = IPPROTO_UDP; 11137 } else { 11138 ip->ip_p = IPPROTO_SCTP; 11139 } 11140 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr; 11141 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr; 11142 ip->ip_sum = 0; 11143 len = sizeof(struct ip); 11144 shout = (struct sctphdr *)((caddr_t)ip + len); 11145 break; 11146 #endif 11147 #ifdef INET6 11148 case AF_INET6: 11149 src_sin6 = (struct sockaddr_in6 *)src; 11150 dst_sin6 = (struct sockaddr_in6 *)dst; 11151 ip6 = mtod(mout, struct ip6_hdr *); 11152 ip6->ip6_flow = htonl(0x60000000); 11153 if (V_ip6_auto_flowlabel) { 11154 ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK); 11155 } 11156 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim); 11157 if (port) { 11158 ip6->ip6_nxt = IPPROTO_UDP; 11159 } else { 11160 ip6->ip6_nxt = IPPROTO_SCTP; 11161 } 11162 ip6->ip6_src = dst_sin6->sin6_addr; 11163 ip6->ip6_dst = src_sin6->sin6_addr; 11164 len = sizeof(struct ip6_hdr); 11165 shout = (struct sctphdr *)((caddr_t)ip6 + len); 11166 break; 11167 #endif 11168 default: 11169 len = 0; 11170 shout = mtod(mout, struct sctphdr *); 11171 break; 11172 } 11173 #if defined(INET) || defined(INET6) 11174 if (port) { 11175 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 11176 sctp_m_freem(mout); 11177 return; 11178 } 11179 udp = (struct udphdr *)shout; 11180 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 11181 udp->uh_dport = port; 11182 udp->uh_sum = 0; 11183 udp->uh_ulen = htons((uint16_t)(sizeof(struct udphdr) + 11184 sizeof(struct sctphdr) + 11185 sizeof(struct sctp_chunkhdr) + 11186 cause_len + padding_len)); 11187 len += sizeof(struct udphdr); 11188 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr)); 11189 } else { 11190 udp = NULL; 11191 } 11192 #endif 11193 shout->src_port = sh->dest_port; 11194 shout->dest_port = sh->src_port; 11195 shout->checksum = 0; 11196 if (vtag) { 11197 shout->v_tag = htonl(vtag); 11198 } else { 11199 shout->v_tag = sh->v_tag; 11200 } 11201 len += sizeof(struct sctphdr); 11202 ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr)); 11203 ch->chunk_type = type; 11204 if (vtag) { 11205 ch->chunk_flags = 0; 11206 } else { 11207 ch->chunk_flags = SCTP_HAD_NO_TCB; 11208 } 11209 ch->chunk_length = htons((uint16_t)(sizeof(struct sctp_chunkhdr) + cause_len)); 11210 len += sizeof(struct sctp_chunkhdr); 11211 len += cause_len + padding_len; 11212 11213 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 11214 sctp_m_freem(mout); 11215 return; 11216 } 11217 SCTP_ATTACH_CHAIN(o_pak, mout, len); 11218 switch (dst->sa_family) { 11219 #ifdef INET 11220 case AF_INET: 11221 if (port) { 11222 if (V_udp_cksum) { 11223 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 11224 } else { 11225 udp->uh_sum = 0; 11226 } 11227 } 11228 ip->ip_len = htons(len); 11229 if (port) { 11230 #if defined(SCTP_WITH_NO_CSUM) 11231 SCTP_STAT_INCR(sctps_sendnocrc); 11232 #else 11233 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr)); 11234 SCTP_STAT_INCR(sctps_sendswcrc); 11235 #endif 11236 if (V_udp_cksum) { 11237 SCTP_ENABLE_UDP_CSUM(o_pak); 11238 } 11239 } else { 11240 #if defined(SCTP_WITH_NO_CSUM) 11241 SCTP_STAT_INCR(sctps_sendnocrc); 11242 #else 11243 mout->m_pkthdr.csum_flags = CSUM_SCTP; 11244 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11245 SCTP_STAT_INCR(sctps_sendhwcrc); 11246 #endif 11247 } 11248 #ifdef SCTP_PACKET_LOGGING 11249 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11250 sctp_packet_log(o_pak); 11251 } 11252 #endif 11253 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id); 11254 break; 11255 #endif 11256 #ifdef INET6 11257 case AF_INET6: 11258 ip6->ip6_plen = (uint16_t)(len - sizeof(struct ip6_hdr)); 11259 if (port) { 11260 #if defined(SCTP_WITH_NO_CSUM) 11261 SCTP_STAT_INCR(sctps_sendnocrc); 11262 #else 11263 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 11264 SCTP_STAT_INCR(sctps_sendswcrc); 11265 #endif 11266 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) { 11267 udp->uh_sum = 0xffff; 11268 } 11269 } else { 11270 #if defined(SCTP_WITH_NO_CSUM) 11271 SCTP_STAT_INCR(sctps_sendnocrc); 11272 #else 11273 mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 11274 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11275 SCTP_STAT_INCR(sctps_sendhwcrc); 11276 #endif 11277 } 11278 #ifdef SCTP_PACKET_LOGGING 11279 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11280 sctp_packet_log(o_pak); 11281 } 11282 #endif 11283 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id); 11284 break; 11285 #endif 11286 default: 11287 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 11288 dst->sa_family); 11289 sctp_m_freem(mout); 11290 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 11291 return; 11292 } 11293 SCTP_STAT_INCR(sctps_sendpackets); 11294 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 11295 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11296 return; 11297 } 11298 11299 void 11300 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst, 11301 struct sctphdr *sh, 11302 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 11303 uint32_t vrf_id, uint16_t port) 11304 { 11305 sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL, 11306 mflowtype, mflowid, fibnum, 11307 vrf_id, port); 11308 } 11309 11310 void 11311 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked 11312 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 11313 SCTP_UNUSED 11314 #endif 11315 ) 11316 { 11317 struct sctp_tmit_chunk *chk; 11318 struct sctp_heartbeat_chunk *hb; 11319 struct timeval now; 11320 11321 SCTP_TCB_LOCK_ASSERT(stcb); 11322 if (net == NULL) { 11323 return; 11324 } 11325 (void)SCTP_GETTIME_TIMEVAL(&now); 11326 switch (net->ro._l_addr.sa.sa_family) { 11327 #ifdef INET 11328 case AF_INET: 11329 break; 11330 #endif 11331 #ifdef INET6 11332 case AF_INET6: 11333 break; 11334 #endif 11335 default: 11336 return; 11337 } 11338 sctp_alloc_a_chunk(stcb, chk); 11339 if (chk == NULL) { 11340 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n"); 11341 return; 11342 } 11343 chk->copy_by_ref = 0; 11344 chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST; 11345 chk->rec.chunk_id.can_take_data = 1; 11346 chk->flags = 0; 11347 chk->asoc = &stcb->asoc; 11348 chk->send_size = sizeof(struct sctp_heartbeat_chunk); 11349 11350 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11351 if (chk->data == NULL) { 11352 sctp_free_a_chunk(stcb, chk, so_locked); 11353 return; 11354 } 11355 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11356 SCTP_BUF_LEN(chk->data) = chk->send_size; 11357 chk->sent = SCTP_DATAGRAM_UNSENT; 11358 chk->snd_count = 0; 11359 chk->whoTo = net; 11360 atomic_add_int(&chk->whoTo->ref_count, 1); 11361 /* Now we have a mbuf that we can fill in with the details */ 11362 hb = mtod(chk->data, struct sctp_heartbeat_chunk *); 11363 memset(hb, 0, sizeof(struct sctp_heartbeat_chunk)); 11364 /* fill out chunk header */ 11365 hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST; 11366 hb->ch.chunk_flags = 0; 11367 hb->ch.chunk_length = htons(chk->send_size); 11368 /* Fill out hb parameter */ 11369 hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO); 11370 hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param)); 11371 hb->heartbeat.hb_info.time_value_1 = now.tv_sec; 11372 hb->heartbeat.hb_info.time_value_2 = now.tv_usec; 11373 /* Did our user request this one, put it in */ 11374 hb->heartbeat.hb_info.addr_family = (uint8_t)net->ro._l_addr.sa.sa_family; 11375 hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len; 11376 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 11377 /* 11378 * we only take from the entropy pool if the address is not 11379 * confirmed. 11380 */ 11381 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11382 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11383 } else { 11384 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0; 11385 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0; 11386 } 11387 switch (net->ro._l_addr.sa.sa_family) { 11388 #ifdef INET 11389 case AF_INET: 11390 memcpy(hb->heartbeat.hb_info.address, 11391 &net->ro._l_addr.sin.sin_addr, 11392 sizeof(net->ro._l_addr.sin.sin_addr)); 11393 break; 11394 #endif 11395 #ifdef INET6 11396 case AF_INET6: 11397 memcpy(hb->heartbeat.hb_info.address, 11398 &net->ro._l_addr.sin6.sin6_addr, 11399 sizeof(net->ro._l_addr.sin6.sin6_addr)); 11400 break; 11401 #endif 11402 default: 11403 if (chk->data) { 11404 sctp_m_freem(chk->data); 11405 chk->data = NULL; 11406 } 11407 sctp_free_a_chunk(stcb, chk, so_locked); 11408 return; 11409 break; 11410 } 11411 net->hb_responded = 0; 11412 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11413 stcb->asoc.ctrl_queue_cnt++; 11414 SCTP_STAT_INCR(sctps_sendheartbeat); 11415 return; 11416 } 11417 11418 void 11419 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net, 11420 uint32_t high_tsn) 11421 { 11422 struct sctp_association *asoc; 11423 struct sctp_ecne_chunk *ecne; 11424 struct sctp_tmit_chunk *chk; 11425 11426 if (net == NULL) { 11427 return; 11428 } 11429 asoc = &stcb->asoc; 11430 SCTP_TCB_LOCK_ASSERT(stcb); 11431 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11432 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) { 11433 /* found a previous ECN_ECHO update it if needed */ 11434 uint32_t cnt, ctsn; 11435 11436 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11437 ctsn = ntohl(ecne->tsn); 11438 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11439 ecne->tsn = htonl(high_tsn); 11440 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11441 } 11442 cnt = ntohl(ecne->num_pkts_since_cwr); 11443 cnt++; 11444 ecne->num_pkts_since_cwr = htonl(cnt); 11445 return; 11446 } 11447 } 11448 /* nope could not find one to update so we must build one */ 11449 sctp_alloc_a_chunk(stcb, chk); 11450 if (chk == NULL) { 11451 return; 11452 } 11453 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11454 chk->copy_by_ref = 0; 11455 chk->rec.chunk_id.id = SCTP_ECN_ECHO; 11456 chk->rec.chunk_id.can_take_data = 0; 11457 chk->flags = 0; 11458 chk->asoc = &stcb->asoc; 11459 chk->send_size = sizeof(struct sctp_ecne_chunk); 11460 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11461 if (chk->data == NULL) { 11462 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11463 return; 11464 } 11465 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11466 SCTP_BUF_LEN(chk->data) = chk->send_size; 11467 chk->sent = SCTP_DATAGRAM_UNSENT; 11468 chk->snd_count = 0; 11469 chk->whoTo = net; 11470 atomic_add_int(&chk->whoTo->ref_count, 1); 11471 11472 stcb->asoc.ecn_echo_cnt_onq++; 11473 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11474 ecne->ch.chunk_type = SCTP_ECN_ECHO; 11475 ecne->ch.chunk_flags = 0; 11476 ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk)); 11477 ecne->tsn = htonl(high_tsn); 11478 ecne->num_pkts_since_cwr = htonl(1); 11479 TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next); 11480 asoc->ctrl_queue_cnt++; 11481 } 11482 11483 void 11484 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net, 11485 struct mbuf *m, int len, int iphlen, int bad_crc) 11486 { 11487 struct sctp_association *asoc; 11488 struct sctp_pktdrop_chunk *drp; 11489 struct sctp_tmit_chunk *chk; 11490 uint8_t *datap; 11491 int was_trunc = 0; 11492 int fullsz = 0; 11493 long spc; 11494 int offset; 11495 struct sctp_chunkhdr *ch, chunk_buf; 11496 unsigned int chk_length; 11497 11498 if (!stcb) { 11499 return; 11500 } 11501 asoc = &stcb->asoc; 11502 SCTP_TCB_LOCK_ASSERT(stcb); 11503 if (asoc->pktdrop_supported == 0) { 11504 /*- 11505 * peer must declare support before I send one. 11506 */ 11507 return; 11508 } 11509 if (stcb->sctp_socket == NULL) { 11510 return; 11511 } 11512 sctp_alloc_a_chunk(stcb, chk); 11513 if (chk == NULL) { 11514 return; 11515 } 11516 chk->copy_by_ref = 0; 11517 chk->rec.chunk_id.id = SCTP_PACKET_DROPPED; 11518 chk->rec.chunk_id.can_take_data = 1; 11519 chk->flags = 0; 11520 len -= iphlen; 11521 chk->send_size = len; 11522 /* Validate that we do not have an ABORT in here. */ 11523 offset = iphlen + sizeof(struct sctphdr); 11524 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11525 sizeof(*ch), (uint8_t *)&chunk_buf); 11526 while (ch != NULL) { 11527 chk_length = ntohs(ch->chunk_length); 11528 if (chk_length < sizeof(*ch)) { 11529 /* break to abort land */ 11530 break; 11531 } 11532 switch (ch->chunk_type) { 11533 case SCTP_PACKET_DROPPED: 11534 case SCTP_ABORT_ASSOCIATION: 11535 case SCTP_INITIATION_ACK: 11536 /** 11537 * We don't respond with an PKT-DROP to an ABORT 11538 * or PKT-DROP. We also do not respond to an 11539 * INIT-ACK, because we can't know if the initiation 11540 * tag is correct or not. 11541 */ 11542 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11543 return; 11544 default: 11545 break; 11546 } 11547 offset += SCTP_SIZE32(chk_length); 11548 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11549 sizeof(*ch), (uint8_t *)&chunk_buf); 11550 } 11551 11552 if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) > 11553 min(stcb->asoc.smallest_mtu, MCLBYTES)) { 11554 /* 11555 * only send 1 mtu worth, trim off the excess on the end. 11556 */ 11557 fullsz = len; 11558 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD; 11559 was_trunc = 1; 11560 } 11561 chk->asoc = &stcb->asoc; 11562 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11563 if (chk->data == NULL) { 11564 jump_out: 11565 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11566 return; 11567 } 11568 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11569 drp = mtod(chk->data, struct sctp_pktdrop_chunk *); 11570 if (drp == NULL) { 11571 sctp_m_freem(chk->data); 11572 chk->data = NULL; 11573 goto jump_out; 11574 } 11575 chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) + 11576 sizeof(struct sctphdr) + SCTP_MED_OVERHEAD)); 11577 chk->book_size_scale = 0; 11578 if (was_trunc) { 11579 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED; 11580 drp->trunc_len = htons(fullsz); 11581 /* 11582 * Len is already adjusted to size minus overhead above take 11583 * out the pkt_drop chunk itself from it. 11584 */ 11585 chk->send_size = (uint16_t)(len - sizeof(struct sctp_pktdrop_chunk)); 11586 len = chk->send_size; 11587 } else { 11588 /* no truncation needed */ 11589 drp->ch.chunk_flags = 0; 11590 drp->trunc_len = htons(0); 11591 } 11592 if (bad_crc) { 11593 drp->ch.chunk_flags |= SCTP_BADCRC; 11594 } 11595 chk->send_size += sizeof(struct sctp_pktdrop_chunk); 11596 SCTP_BUF_LEN(chk->data) = chk->send_size; 11597 chk->sent = SCTP_DATAGRAM_UNSENT; 11598 chk->snd_count = 0; 11599 if (net) { 11600 /* we should hit here */ 11601 chk->whoTo = net; 11602 atomic_add_int(&chk->whoTo->ref_count, 1); 11603 } else { 11604 chk->whoTo = NULL; 11605 } 11606 drp->ch.chunk_type = SCTP_PACKET_DROPPED; 11607 drp->ch.chunk_length = htons(chk->send_size); 11608 spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket); 11609 if (spc < 0) { 11610 spc = 0; 11611 } 11612 drp->bottle_bw = htonl(spc); 11613 if (asoc->my_rwnd) { 11614 drp->current_onq = htonl(asoc->size_on_reasm_queue + 11615 asoc->size_on_all_streams + 11616 asoc->my_rwnd_control_len + 11617 stcb->sctp_socket->so_rcv.sb_cc); 11618 } else { 11619 /*- 11620 * If my rwnd is 0, possibly from mbuf depletion as well as 11621 * space used, tell the peer there is NO space aka onq == bw 11622 */ 11623 drp->current_onq = htonl(spc); 11624 } 11625 drp->reserved = 0; 11626 datap = drp->data; 11627 m_copydata(m, iphlen, len, (caddr_t)datap); 11628 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11629 asoc->ctrl_queue_cnt++; 11630 } 11631 11632 void 11633 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override) 11634 { 11635 struct sctp_association *asoc; 11636 struct sctp_cwr_chunk *cwr; 11637 struct sctp_tmit_chunk *chk; 11638 11639 SCTP_TCB_LOCK_ASSERT(stcb); 11640 if (net == NULL) { 11641 return; 11642 } 11643 asoc = &stcb->asoc; 11644 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11645 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) { 11646 /* 11647 * found a previous CWR queued to same destination 11648 * update it if needed 11649 */ 11650 uint32_t ctsn; 11651 11652 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11653 ctsn = ntohl(cwr->tsn); 11654 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11655 cwr->tsn = htonl(high_tsn); 11656 } 11657 if (override & SCTP_CWR_REDUCE_OVERRIDE) { 11658 /* Make sure override is carried */ 11659 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE; 11660 } 11661 return; 11662 } 11663 } 11664 sctp_alloc_a_chunk(stcb, chk); 11665 if (chk == NULL) { 11666 return; 11667 } 11668 chk->copy_by_ref = 0; 11669 chk->rec.chunk_id.id = SCTP_ECN_CWR; 11670 chk->rec.chunk_id.can_take_data = 1; 11671 chk->flags = 0; 11672 chk->asoc = &stcb->asoc; 11673 chk->send_size = sizeof(struct sctp_cwr_chunk); 11674 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11675 if (chk->data == NULL) { 11676 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11677 return; 11678 } 11679 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11680 SCTP_BUF_LEN(chk->data) = chk->send_size; 11681 chk->sent = SCTP_DATAGRAM_UNSENT; 11682 chk->snd_count = 0; 11683 chk->whoTo = net; 11684 atomic_add_int(&chk->whoTo->ref_count, 1); 11685 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11686 cwr->ch.chunk_type = SCTP_ECN_CWR; 11687 cwr->ch.chunk_flags = override; 11688 cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk)); 11689 cwr->tsn = htonl(high_tsn); 11690 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11691 asoc->ctrl_queue_cnt++; 11692 } 11693 11694 static int 11695 sctp_add_stream_reset_out(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk, 11696 uint32_t seq, uint32_t resp_seq, uint32_t last_sent) 11697 { 11698 uint16_t len, old_len, i; 11699 struct sctp_stream_reset_out_request *req_out; 11700 struct sctp_chunkhdr *ch; 11701 int at; 11702 int number_entries = 0; 11703 11704 ch = mtod(chk->data, struct sctp_chunkhdr *); 11705 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11706 /* get to new offset for the param. */ 11707 req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len); 11708 /* now how long will this param be? */ 11709 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11710 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) && 11711 (stcb->asoc.strmout[i].chunks_on_queues == 0) && 11712 TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 11713 number_entries++; 11714 } 11715 } 11716 if (number_entries == 0) { 11717 return (0); 11718 } 11719 if (number_entries == stcb->asoc.streamoutcnt) { 11720 number_entries = 0; 11721 } 11722 if (number_entries > SCTP_MAX_STREAMS_AT_ONCE_RESET) { 11723 number_entries = SCTP_MAX_STREAMS_AT_ONCE_RESET; 11724 } 11725 len = (uint16_t)(sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries)); 11726 req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST); 11727 req_out->ph.param_length = htons(len); 11728 req_out->request_seq = htonl(seq); 11729 req_out->response_seq = htonl(resp_seq); 11730 req_out->send_reset_at_tsn = htonl(last_sent); 11731 at = 0; 11732 if (number_entries) { 11733 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11734 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) && 11735 (stcb->asoc.strmout[i].chunks_on_queues == 0) && 11736 TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 11737 req_out->list_of_streams[at] = htons(i); 11738 at++; 11739 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT; 11740 if (at >= number_entries) { 11741 break; 11742 } 11743 } 11744 } 11745 } else { 11746 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11747 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT; 11748 } 11749 } 11750 if (SCTP_SIZE32(len) > len) { 11751 /*- 11752 * Need to worry about the pad we may end up adding to the 11753 * end. This is easy since the struct is either aligned to 4 11754 * bytes or 2 bytes off. 11755 */ 11756 req_out->list_of_streams[number_entries] = 0; 11757 } 11758 /* now fix the chunk length */ 11759 ch->chunk_length = htons(len + old_len); 11760 chk->book_size = len + old_len; 11761 chk->book_size_scale = 0; 11762 chk->send_size = SCTP_SIZE32(chk->book_size); 11763 SCTP_BUF_LEN(chk->data) = chk->send_size; 11764 return (1); 11765 } 11766 11767 static void 11768 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk, 11769 int number_entries, uint16_t *list, 11770 uint32_t seq) 11771 { 11772 uint16_t len, old_len, i; 11773 struct sctp_stream_reset_in_request *req_in; 11774 struct sctp_chunkhdr *ch; 11775 11776 ch = mtod(chk->data, struct sctp_chunkhdr *); 11777 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11778 11779 /* get to new offset for the param. */ 11780 req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len); 11781 /* now how long will this param be? */ 11782 len = (uint16_t)(sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries)); 11783 req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST); 11784 req_in->ph.param_length = htons(len); 11785 req_in->request_seq = htonl(seq); 11786 if (number_entries) { 11787 for (i = 0; i < number_entries; i++) { 11788 req_in->list_of_streams[i] = htons(list[i]); 11789 } 11790 } 11791 if (SCTP_SIZE32(len) > len) { 11792 /*- 11793 * Need to worry about the pad we may end up adding to the 11794 * end. This is easy since the struct is either aligned to 4 11795 * bytes or 2 bytes off. 11796 */ 11797 req_in->list_of_streams[number_entries] = 0; 11798 } 11799 /* now fix the chunk length */ 11800 ch->chunk_length = htons(len + old_len); 11801 chk->book_size = len + old_len; 11802 chk->book_size_scale = 0; 11803 chk->send_size = SCTP_SIZE32(chk->book_size); 11804 SCTP_BUF_LEN(chk->data) = chk->send_size; 11805 return; 11806 } 11807 11808 static void 11809 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk, 11810 uint32_t seq) 11811 { 11812 uint16_t len, old_len; 11813 struct sctp_stream_reset_tsn_request *req_tsn; 11814 struct sctp_chunkhdr *ch; 11815 11816 ch = mtod(chk->data, struct sctp_chunkhdr *); 11817 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11818 11819 /* get to new offset for the param. */ 11820 req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len); 11821 /* now how long will this param be? */ 11822 len = sizeof(struct sctp_stream_reset_tsn_request); 11823 req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST); 11824 req_tsn->ph.param_length = htons(len); 11825 req_tsn->request_seq = htonl(seq); 11826 11827 /* now fix the chunk length */ 11828 ch->chunk_length = htons(len + old_len); 11829 chk->send_size = len + old_len; 11830 chk->book_size = SCTP_SIZE32(chk->send_size); 11831 chk->book_size_scale = 0; 11832 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11833 return; 11834 } 11835 11836 void 11837 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk, 11838 uint32_t resp_seq, uint32_t result) 11839 { 11840 uint16_t len, old_len; 11841 struct sctp_stream_reset_response *resp; 11842 struct sctp_chunkhdr *ch; 11843 11844 ch = mtod(chk->data, struct sctp_chunkhdr *); 11845 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11846 11847 /* get to new offset for the param. */ 11848 resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len); 11849 /* now how long will this param be? */ 11850 len = sizeof(struct sctp_stream_reset_response); 11851 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11852 resp->ph.param_length = htons(len); 11853 resp->response_seq = htonl(resp_seq); 11854 resp->result = ntohl(result); 11855 11856 /* now fix the chunk length */ 11857 ch->chunk_length = htons(len + old_len); 11858 chk->book_size = len + old_len; 11859 chk->book_size_scale = 0; 11860 chk->send_size = SCTP_SIZE32(chk->book_size); 11861 SCTP_BUF_LEN(chk->data) = chk->send_size; 11862 return; 11863 } 11864 11865 void 11866 sctp_send_deferred_reset_response(struct sctp_tcb *stcb, 11867 struct sctp_stream_reset_list *ent, 11868 int response) 11869 { 11870 struct sctp_association *asoc; 11871 struct sctp_tmit_chunk *chk; 11872 struct sctp_chunkhdr *ch; 11873 11874 asoc = &stcb->asoc; 11875 11876 /* 11877 * Reset our last reset action to the new one IP -> response 11878 * (PERFORMED probably). This assures that if we fail to send, a 11879 * retran from the peer will get the new response. 11880 */ 11881 asoc->last_reset_action[0] = response; 11882 if (asoc->stream_reset_outstanding) { 11883 return; 11884 } 11885 sctp_alloc_a_chunk(stcb, chk); 11886 if (chk == NULL) { 11887 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11888 return; 11889 } 11890 chk->copy_by_ref = 0; 11891 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 11892 chk->rec.chunk_id.can_take_data = 0; 11893 chk->flags = 0; 11894 chk->asoc = &stcb->asoc; 11895 chk->book_size = sizeof(struct sctp_chunkhdr); 11896 chk->send_size = SCTP_SIZE32(chk->book_size); 11897 chk->book_size_scale = 0; 11898 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11899 if (chk->data == NULL) { 11900 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 11901 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11902 return; 11903 } 11904 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11905 /* setup chunk parameters */ 11906 chk->sent = SCTP_DATAGRAM_UNSENT; 11907 chk->snd_count = 0; 11908 if (stcb->asoc.alternate) { 11909 chk->whoTo = stcb->asoc.alternate; 11910 } else { 11911 chk->whoTo = stcb->asoc.primary_destination; 11912 } 11913 ch = mtod(chk->data, struct sctp_chunkhdr *); 11914 ch->chunk_type = SCTP_STREAM_RESET; 11915 ch->chunk_flags = 0; 11916 ch->chunk_length = htons(chk->book_size); 11917 atomic_add_int(&chk->whoTo->ref_count, 1); 11918 SCTP_BUF_LEN(chk->data) = chk->send_size; 11919 sctp_add_stream_reset_result(chk, ent->seq, response); 11920 /* insert the chunk for sending */ 11921 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 11922 chk, 11923 sctp_next); 11924 asoc->ctrl_queue_cnt++; 11925 } 11926 11927 void 11928 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk, 11929 uint32_t resp_seq, uint32_t result, 11930 uint32_t send_una, uint32_t recv_next) 11931 { 11932 uint16_t len, old_len; 11933 struct sctp_stream_reset_response_tsn *resp; 11934 struct sctp_chunkhdr *ch; 11935 11936 ch = mtod(chk->data, struct sctp_chunkhdr *); 11937 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11938 11939 /* get to new offset for the param. */ 11940 resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len); 11941 /* now how long will this param be? */ 11942 len = sizeof(struct sctp_stream_reset_response_tsn); 11943 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11944 resp->ph.param_length = htons(len); 11945 resp->response_seq = htonl(resp_seq); 11946 resp->result = htonl(result); 11947 resp->senders_next_tsn = htonl(send_una); 11948 resp->receivers_next_tsn = htonl(recv_next); 11949 11950 /* now fix the chunk length */ 11951 ch->chunk_length = htons(len + old_len); 11952 chk->book_size = len + old_len; 11953 chk->send_size = SCTP_SIZE32(chk->book_size); 11954 chk->book_size_scale = 0; 11955 SCTP_BUF_LEN(chk->data) = chk->send_size; 11956 return; 11957 } 11958 11959 static void 11960 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk, 11961 uint32_t seq, 11962 uint16_t adding) 11963 { 11964 uint16_t len, old_len; 11965 struct sctp_chunkhdr *ch; 11966 struct sctp_stream_reset_add_strm *addstr; 11967 11968 ch = mtod(chk->data, struct sctp_chunkhdr *); 11969 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11970 11971 /* get to new offset for the param. */ 11972 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 11973 /* now how long will this param be? */ 11974 len = sizeof(struct sctp_stream_reset_add_strm); 11975 11976 /* Fill it out. */ 11977 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS); 11978 addstr->ph.param_length = htons(len); 11979 addstr->request_seq = htonl(seq); 11980 addstr->number_of_streams = htons(adding); 11981 addstr->reserved = 0; 11982 11983 /* now fix the chunk length */ 11984 ch->chunk_length = htons(len + old_len); 11985 chk->send_size = len + old_len; 11986 chk->book_size = SCTP_SIZE32(chk->send_size); 11987 chk->book_size_scale = 0; 11988 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11989 return; 11990 } 11991 11992 static void 11993 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk, 11994 uint32_t seq, 11995 uint16_t adding) 11996 { 11997 uint16_t len, old_len; 11998 struct sctp_chunkhdr *ch; 11999 struct sctp_stream_reset_add_strm *addstr; 12000 12001 ch = mtod(chk->data, struct sctp_chunkhdr *); 12002 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 12003 12004 /* get to new offset for the param. */ 12005 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 12006 /* now how long will this param be? */ 12007 len = sizeof(struct sctp_stream_reset_add_strm); 12008 /* Fill it out. */ 12009 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS); 12010 addstr->ph.param_length = htons(len); 12011 addstr->request_seq = htonl(seq); 12012 addstr->number_of_streams = htons(adding); 12013 addstr->reserved = 0; 12014 12015 /* now fix the chunk length */ 12016 ch->chunk_length = htons(len + old_len); 12017 chk->send_size = len + old_len; 12018 chk->book_size = SCTP_SIZE32(chk->send_size); 12019 chk->book_size_scale = 0; 12020 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 12021 return; 12022 } 12023 12024 int 12025 sctp_send_stream_reset_out_if_possible(struct sctp_tcb *stcb, int so_locked) 12026 { 12027 struct sctp_association *asoc; 12028 struct sctp_tmit_chunk *chk; 12029 struct sctp_chunkhdr *ch; 12030 uint32_t seq; 12031 12032 asoc = &stcb->asoc; 12033 asoc->trigger_reset = 0; 12034 if (asoc->stream_reset_outstanding) { 12035 return (EALREADY); 12036 } 12037 sctp_alloc_a_chunk(stcb, chk); 12038 if (chk == NULL) { 12039 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12040 return (ENOMEM); 12041 } 12042 chk->copy_by_ref = 0; 12043 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 12044 chk->rec.chunk_id.can_take_data = 0; 12045 chk->flags = 0; 12046 chk->asoc = &stcb->asoc; 12047 chk->book_size = sizeof(struct sctp_chunkhdr); 12048 chk->send_size = SCTP_SIZE32(chk->book_size); 12049 chk->book_size_scale = 0; 12050 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 12051 if (chk->data == NULL) { 12052 sctp_free_a_chunk(stcb, chk, so_locked); 12053 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12054 return (ENOMEM); 12055 } 12056 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 12057 12058 /* setup chunk parameters */ 12059 chk->sent = SCTP_DATAGRAM_UNSENT; 12060 chk->snd_count = 0; 12061 if (stcb->asoc.alternate) { 12062 chk->whoTo = stcb->asoc.alternate; 12063 } else { 12064 chk->whoTo = stcb->asoc.primary_destination; 12065 } 12066 ch = mtod(chk->data, struct sctp_chunkhdr *); 12067 ch->chunk_type = SCTP_STREAM_RESET; 12068 ch->chunk_flags = 0; 12069 ch->chunk_length = htons(chk->book_size); 12070 atomic_add_int(&chk->whoTo->ref_count, 1); 12071 SCTP_BUF_LEN(chk->data) = chk->send_size; 12072 seq = stcb->asoc.str_reset_seq_out; 12073 if (sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1))) { 12074 seq++; 12075 asoc->stream_reset_outstanding++; 12076 } else { 12077 m_freem(chk->data); 12078 chk->data = NULL; 12079 sctp_free_a_chunk(stcb, chk, so_locked); 12080 return (ENOENT); 12081 } 12082 asoc->str_reset = chk; 12083 /* insert the chunk for sending */ 12084 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 12085 chk, 12086 sctp_next); 12087 asoc->ctrl_queue_cnt++; 12088 12089 if (stcb->asoc.send_sack) { 12090 sctp_send_sack(stcb, so_locked); 12091 } 12092 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 12093 return (0); 12094 } 12095 12096 int 12097 sctp_send_str_reset_req(struct sctp_tcb *stcb, 12098 uint16_t number_entries, uint16_t *list, 12099 uint8_t send_in_req, 12100 uint8_t send_tsn_req, 12101 uint8_t add_stream, 12102 uint16_t adding_o, 12103 uint16_t adding_i, uint8_t peer_asked) 12104 { 12105 struct sctp_association *asoc; 12106 struct sctp_tmit_chunk *chk; 12107 struct sctp_chunkhdr *ch; 12108 int can_send_out_req = 0; 12109 uint32_t seq; 12110 12111 asoc = &stcb->asoc; 12112 if (asoc->stream_reset_outstanding) { 12113 /*- 12114 * Already one pending, must get ACK back to clear the flag. 12115 */ 12116 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY); 12117 return (EBUSY); 12118 } 12119 if ((send_in_req == 0) && (send_tsn_req == 0) && 12120 (add_stream == 0)) { 12121 /* nothing to do */ 12122 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12123 return (EINVAL); 12124 } 12125 if (send_tsn_req && send_in_req) { 12126 /* error, can't do that */ 12127 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12128 return (EINVAL); 12129 } else if (send_in_req) { 12130 can_send_out_req = 1; 12131 } 12132 if (number_entries > (MCLBYTES - 12133 SCTP_MIN_OVERHEAD - 12134 sizeof(struct sctp_chunkhdr) - 12135 sizeof(struct sctp_stream_reset_out_request)) / 12136 sizeof(uint16_t)) { 12137 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12138 return (ENOMEM); 12139 } 12140 sctp_alloc_a_chunk(stcb, chk); 12141 if (chk == NULL) { 12142 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12143 return (ENOMEM); 12144 } 12145 chk->copy_by_ref = 0; 12146 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 12147 chk->rec.chunk_id.can_take_data = 0; 12148 chk->flags = 0; 12149 chk->asoc = &stcb->asoc; 12150 chk->book_size = sizeof(struct sctp_chunkhdr); 12151 chk->send_size = SCTP_SIZE32(chk->book_size); 12152 chk->book_size_scale = 0; 12153 12154 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 12155 if (chk->data == NULL) { 12156 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 12157 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12158 return (ENOMEM); 12159 } 12160 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 12161 12162 /* setup chunk parameters */ 12163 chk->sent = SCTP_DATAGRAM_UNSENT; 12164 chk->snd_count = 0; 12165 if (stcb->asoc.alternate) { 12166 chk->whoTo = stcb->asoc.alternate; 12167 } else { 12168 chk->whoTo = stcb->asoc.primary_destination; 12169 } 12170 atomic_add_int(&chk->whoTo->ref_count, 1); 12171 ch = mtod(chk->data, struct sctp_chunkhdr *); 12172 ch->chunk_type = SCTP_STREAM_RESET; 12173 ch->chunk_flags = 0; 12174 ch->chunk_length = htons(chk->book_size); 12175 SCTP_BUF_LEN(chk->data) = chk->send_size; 12176 12177 seq = stcb->asoc.str_reset_seq_out; 12178 if (can_send_out_req) { 12179 int ret; 12180 12181 ret = sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1)); 12182 if (ret) { 12183 seq++; 12184 asoc->stream_reset_outstanding++; 12185 } 12186 } 12187 if ((add_stream & 1) && 12188 ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) { 12189 /* Need to allocate more */ 12190 struct sctp_stream_out *oldstream; 12191 struct sctp_stream_queue_pending *sp, *nsp; 12192 int i; 12193 #if defined(SCTP_DETAILED_STR_STATS) 12194 int j; 12195 #endif 12196 12197 oldstream = stcb->asoc.strmout; 12198 /* get some more */ 12199 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *, 12200 (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out), 12201 SCTP_M_STRMO); 12202 if (stcb->asoc.strmout == NULL) { 12203 uint8_t x; 12204 12205 stcb->asoc.strmout = oldstream; 12206 /* Turn off the bit */ 12207 x = add_stream & 0xfe; 12208 add_stream = x; 12209 goto skip_stuff; 12210 } 12211 /* 12212 * Ok now we proceed with copying the old out stuff and 12213 * initializing the new stuff. 12214 */ 12215 SCTP_TCB_SEND_LOCK(stcb); 12216 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1); 12217 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 12218 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 12219 stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues; 12220 stcb->asoc.strmout[i].next_mid_ordered = oldstream[i].next_mid_ordered; 12221 stcb->asoc.strmout[i].next_mid_unordered = oldstream[i].next_mid_unordered; 12222 stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete; 12223 stcb->asoc.strmout[i].sid = i; 12224 stcb->asoc.strmout[i].state = oldstream[i].state; 12225 /* FIX ME FIX ME */ 12226 /* 12227 * This should be a SS_COPY operation FIX ME STREAM 12228 * SCHEDULER EXPERT 12229 */ 12230 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], &oldstream[i]); 12231 /* now anything on those queues? */ 12232 TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) { 12233 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next); 12234 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next); 12235 } 12236 12237 } 12238 /* now the new streams */ 12239 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1); 12240 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) { 12241 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 12242 stcb->asoc.strmout[i].chunks_on_queues = 0; 12243 #if defined(SCTP_DETAILED_STR_STATS) 12244 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 12245 stcb->asoc.strmout[i].abandoned_sent[j] = 0; 12246 stcb->asoc.strmout[i].abandoned_unsent[j] = 0; 12247 } 12248 #else 12249 stcb->asoc.strmout[i].abandoned_sent[0] = 0; 12250 stcb->asoc.strmout[i].abandoned_unsent[0] = 0; 12251 #endif 12252 stcb->asoc.strmout[i].next_mid_ordered = 0; 12253 stcb->asoc.strmout[i].next_mid_unordered = 0; 12254 stcb->asoc.strmout[i].sid = i; 12255 stcb->asoc.strmout[i].last_msg_incomplete = 0; 12256 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL); 12257 stcb->asoc.strmout[i].state = SCTP_STREAM_CLOSED; 12258 } 12259 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o; 12260 SCTP_FREE(oldstream, SCTP_M_STRMO); 12261 SCTP_TCB_SEND_UNLOCK(stcb); 12262 } 12263 skip_stuff: 12264 if ((add_stream & 1) && (adding_o > 0)) { 12265 asoc->strm_pending_add_size = adding_o; 12266 asoc->peer_req_out = peer_asked; 12267 sctp_add_an_out_stream(chk, seq, adding_o); 12268 seq++; 12269 asoc->stream_reset_outstanding++; 12270 } 12271 if ((add_stream & 2) && (adding_i > 0)) { 12272 sctp_add_an_in_stream(chk, seq, adding_i); 12273 seq++; 12274 asoc->stream_reset_outstanding++; 12275 } 12276 if (send_in_req) { 12277 sctp_add_stream_reset_in(chk, number_entries, list, seq); 12278 seq++; 12279 asoc->stream_reset_outstanding++; 12280 } 12281 if (send_tsn_req) { 12282 sctp_add_stream_reset_tsn(chk, seq); 12283 asoc->stream_reset_outstanding++; 12284 } 12285 asoc->str_reset = chk; 12286 /* insert the chunk for sending */ 12287 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 12288 chk, 12289 sctp_next); 12290 asoc->ctrl_queue_cnt++; 12291 if (stcb->asoc.send_sack) { 12292 sctp_send_sack(stcb, SCTP_SO_LOCKED); 12293 } 12294 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 12295 return (0); 12296 } 12297 12298 void 12299 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, 12300 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 12301 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 12302 uint32_t vrf_id, uint16_t port) 12303 { 12304 /* Don't respond to an ABORT with an ABORT. */ 12305 if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) { 12306 if (cause) 12307 sctp_m_freem(cause); 12308 return; 12309 } 12310 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause, 12311 mflowtype, mflowid, fibnum, 12312 vrf_id, port); 12313 return; 12314 } 12315 12316 void 12317 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst, 12318 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 12319 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 12320 uint32_t vrf_id, uint16_t port) 12321 { 12322 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause, 12323 mflowtype, mflowid, fibnum, 12324 vrf_id, port); 12325 return; 12326 } 12327 12328 static struct mbuf * 12329 sctp_copy_resume(struct uio *uio, 12330 int max_send_len, 12331 int user_marks_eor, 12332 int *error, 12333 uint32_t *sndout, 12334 struct mbuf **new_tail) 12335 { 12336 struct mbuf *m; 12337 12338 m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0, 12339 (M_PKTHDR | (user_marks_eor ? M_EOR : 0))); 12340 if (m == NULL) { 12341 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS); 12342 *error = ENOBUFS; 12343 } else { 12344 *sndout = m_length(m, NULL); 12345 *new_tail = m_last(m); 12346 } 12347 return (m); 12348 } 12349 12350 static int 12351 sctp_copy_one(struct sctp_stream_queue_pending *sp, 12352 struct uio *uio, 12353 int resv_upfront) 12354 { 12355 sp->data = m_uiotombuf(uio, M_WAITOK, sp->length, 12356 resv_upfront, 0); 12357 if (sp->data == NULL) { 12358 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS); 12359 return (ENOBUFS); 12360 } 12361 sp->tail_mbuf = m_last(sp->data); 12362 return (0); 12363 } 12364 12365 12366 12367 static struct sctp_stream_queue_pending * 12368 sctp_copy_it_in(struct sctp_tcb *stcb, 12369 struct sctp_association *asoc, 12370 struct sctp_sndrcvinfo *srcv, 12371 struct uio *uio, 12372 struct sctp_nets *net, 12373 int max_send_len, 12374 int user_marks_eor, 12375 int *error) 12376 { 12377 /*- 12378 * This routine must be very careful in its work. Protocol 12379 * processing is up and running so care must be taken to spl...() 12380 * when you need to do something that may effect the stcb/asoc. The 12381 * sb is locked however. When data is copied the protocol processing 12382 * should be enabled since this is a slower operation... 12383 */ 12384 struct sctp_stream_queue_pending *sp = NULL; 12385 int resv_in_first; 12386 12387 *error = 0; 12388 /* Now can we send this? */ 12389 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) || 12390 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 12391 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 12392 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 12393 /* got data while shutting down */ 12394 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12395 *error = ECONNRESET; 12396 goto out_now; 12397 } 12398 sctp_alloc_a_strmoq(stcb, sp); 12399 if (sp == NULL) { 12400 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12401 *error = ENOMEM; 12402 goto out_now; 12403 } 12404 sp->act_flags = 0; 12405 sp->sender_all_done = 0; 12406 sp->sinfo_flags = srcv->sinfo_flags; 12407 sp->timetolive = srcv->sinfo_timetolive; 12408 sp->ppid = srcv->sinfo_ppid; 12409 sp->context = srcv->sinfo_context; 12410 sp->fsn = 0; 12411 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 12412 12413 sp->sid = srcv->sinfo_stream; 12414 sp->length = (uint32_t)min(uio->uio_resid, max_send_len); 12415 if ((sp->length == (uint32_t)uio->uio_resid) && 12416 ((user_marks_eor == 0) || 12417 (srcv->sinfo_flags & SCTP_EOF) || 12418 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 12419 sp->msg_is_complete = 1; 12420 } else { 12421 sp->msg_is_complete = 0; 12422 } 12423 sp->sender_all_done = 0; 12424 sp->some_taken = 0; 12425 sp->put_last_out = 0; 12426 resv_in_first = SCTP_DATA_CHUNK_OVERHEAD(stcb); 12427 sp->data = sp->tail_mbuf = NULL; 12428 if (sp->length == 0) { 12429 goto skip_copy; 12430 } 12431 if (srcv->sinfo_keynumber_valid) { 12432 sp->auth_keyid = srcv->sinfo_keynumber; 12433 } else { 12434 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 12435 } 12436 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 12437 sctp_auth_key_acquire(stcb, sp->auth_keyid); 12438 sp->holds_key_ref = 1; 12439 } 12440 *error = sctp_copy_one(sp, uio, resv_in_first); 12441 skip_copy: 12442 if (*error) { 12443 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED); 12444 sp = NULL; 12445 } else { 12446 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 12447 sp->net = net; 12448 atomic_add_int(&sp->net->ref_count, 1); 12449 } else { 12450 sp->net = NULL; 12451 } 12452 sctp_set_prsctp_policy(sp); 12453 } 12454 out_now: 12455 return (sp); 12456 } 12457 12458 12459 int 12460 sctp_sosend(struct socket *so, 12461 struct sockaddr *addr, 12462 struct uio *uio, 12463 struct mbuf *top, 12464 struct mbuf *control, 12465 int flags, 12466 struct thread *p 12467 ) 12468 { 12469 int error, use_sndinfo = 0; 12470 struct sctp_sndrcvinfo sndrcvninfo; 12471 struct sockaddr *addr_to_use; 12472 #if defined(INET) && defined(INET6) 12473 struct sockaddr_in sin; 12474 #endif 12475 12476 if (control) { 12477 /* process cmsg snd/rcv info (maybe a assoc-id) */ 12478 if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control, 12479 sizeof(sndrcvninfo))) { 12480 /* got one */ 12481 use_sndinfo = 1; 12482 } 12483 } 12484 addr_to_use = addr; 12485 #if defined(INET) && defined(INET6) 12486 if ((addr) && (addr->sa_family == AF_INET6)) { 12487 struct sockaddr_in6 *sin6; 12488 12489 sin6 = (struct sockaddr_in6 *)addr; 12490 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 12491 in6_sin6_2_sin(&sin, sin6); 12492 addr_to_use = (struct sockaddr *)&sin; 12493 } 12494 } 12495 #endif 12496 error = sctp_lower_sosend(so, addr_to_use, uio, top, 12497 control, 12498 flags, 12499 use_sndinfo ? &sndrcvninfo : NULL 12500 ,p 12501 ); 12502 return (error); 12503 } 12504 12505 12506 int 12507 sctp_lower_sosend(struct socket *so, 12508 struct sockaddr *addr, 12509 struct uio *uio, 12510 struct mbuf *i_pak, 12511 struct mbuf *control, 12512 int flags, 12513 struct sctp_sndrcvinfo *srcv 12514 , 12515 struct thread *p 12516 ) 12517 { 12518 unsigned int sndlen = 0, max_len; 12519 int error, len; 12520 struct mbuf *top = NULL; 12521 int queue_only = 0, queue_only_for_init = 0; 12522 int free_cnt_applied = 0; 12523 int un_sent; 12524 int now_filled = 0; 12525 unsigned int inqueue_bytes = 0; 12526 struct sctp_block_entry be; 12527 struct sctp_inpcb *inp; 12528 struct sctp_tcb *stcb = NULL; 12529 struct timeval now; 12530 struct sctp_nets *net; 12531 struct sctp_association *asoc; 12532 struct sctp_inpcb *t_inp; 12533 int user_marks_eor; 12534 int create_lock_applied = 0; 12535 int nagle_applies = 0; 12536 int some_on_control = 0; 12537 int got_all_of_the_send = 0; 12538 int hold_tcblock = 0; 12539 int non_blocking = 0; 12540 uint32_t local_add_more, local_soresv = 0; 12541 uint16_t port; 12542 uint16_t sinfo_flags; 12543 sctp_assoc_t sinfo_assoc_id; 12544 12545 error = 0; 12546 net = NULL; 12547 stcb = NULL; 12548 asoc = NULL; 12549 12550 t_inp = inp = (struct sctp_inpcb *)so->so_pcb; 12551 if (inp == NULL) { 12552 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12553 error = EINVAL; 12554 if (i_pak) { 12555 SCTP_RELEASE_PKT(i_pak); 12556 } 12557 return (error); 12558 } 12559 if ((uio == NULL) && (i_pak == NULL)) { 12560 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12561 return (EINVAL); 12562 } 12563 user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR); 12564 atomic_add_int(&inp->total_sends, 1); 12565 if (uio) { 12566 if (uio->uio_resid < 0) { 12567 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12568 return (EINVAL); 12569 } 12570 sndlen = (unsigned int)uio->uio_resid; 12571 } else { 12572 top = SCTP_HEADER_TO_CHAIN(i_pak); 12573 sndlen = SCTP_HEADER_LEN(i_pak); 12574 } 12575 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %d\n", 12576 (void *)addr, 12577 sndlen); 12578 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 12579 SCTP_IS_LISTENING(inp)) { 12580 /* The listener can NOT send */ 12581 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12582 error = ENOTCONN; 12583 goto out_unlocked; 12584 } 12585 /** 12586 * Pre-screen address, if one is given the sin-len 12587 * must be set correctly! 12588 */ 12589 if (addr) { 12590 union sctp_sockstore *raddr = (union sctp_sockstore *)addr; 12591 12592 switch (raddr->sa.sa_family) { 12593 #ifdef INET 12594 case AF_INET: 12595 if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) { 12596 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12597 error = EINVAL; 12598 goto out_unlocked; 12599 } 12600 port = raddr->sin.sin_port; 12601 break; 12602 #endif 12603 #ifdef INET6 12604 case AF_INET6: 12605 if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) { 12606 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12607 error = EINVAL; 12608 goto out_unlocked; 12609 } 12610 port = raddr->sin6.sin6_port; 12611 break; 12612 #endif 12613 default: 12614 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT); 12615 error = EAFNOSUPPORT; 12616 goto out_unlocked; 12617 } 12618 } else 12619 port = 0; 12620 12621 if (srcv) { 12622 sinfo_flags = srcv->sinfo_flags; 12623 sinfo_assoc_id = srcv->sinfo_assoc_id; 12624 if (INVALID_SINFO_FLAG(sinfo_flags) || 12625 PR_SCTP_INVALID_POLICY(sinfo_flags)) { 12626 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12627 error = EINVAL; 12628 goto out_unlocked; 12629 } 12630 if (srcv->sinfo_flags) 12631 SCTP_STAT_INCR(sctps_sends_with_flags); 12632 } else { 12633 sinfo_flags = inp->def_send.sinfo_flags; 12634 sinfo_assoc_id = inp->def_send.sinfo_assoc_id; 12635 } 12636 if (sinfo_flags & SCTP_SENDALL) { 12637 /* its a sendall */ 12638 error = sctp_sendall(inp, uio, top, srcv); 12639 top = NULL; 12640 goto out_unlocked; 12641 } 12642 if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) { 12643 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12644 error = EINVAL; 12645 goto out_unlocked; 12646 } 12647 /* now we must find the assoc */ 12648 if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 12649 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 12650 SCTP_INP_RLOCK(inp); 12651 stcb = LIST_FIRST(&inp->sctp_asoc_list); 12652 if (stcb) { 12653 SCTP_TCB_LOCK(stcb); 12654 hold_tcblock = 1; 12655 } 12656 SCTP_INP_RUNLOCK(inp); 12657 } else if (sinfo_assoc_id) { 12658 stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 1); 12659 if (stcb != NULL) { 12660 hold_tcblock = 1; 12661 } 12662 } else if (addr) { 12663 /*- 12664 * Since we did not use findep we must 12665 * increment it, and if we don't find a tcb 12666 * decrement it. 12667 */ 12668 SCTP_INP_WLOCK(inp); 12669 SCTP_INP_INCR_REF(inp); 12670 SCTP_INP_WUNLOCK(inp); 12671 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12672 if (stcb == NULL) { 12673 SCTP_INP_WLOCK(inp); 12674 SCTP_INP_DECR_REF(inp); 12675 SCTP_INP_WUNLOCK(inp); 12676 } else { 12677 hold_tcblock = 1; 12678 } 12679 } 12680 if ((stcb == NULL) && (addr)) { 12681 /* Possible implicit send? */ 12682 SCTP_ASOC_CREATE_LOCK(inp); 12683 create_lock_applied = 1; 12684 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 12685 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 12686 /* Should I really unlock ? */ 12687 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12688 error = EINVAL; 12689 goto out_unlocked; 12690 12691 } 12692 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 12693 (addr->sa_family == AF_INET6)) { 12694 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12695 error = EINVAL; 12696 goto out_unlocked; 12697 } 12698 SCTP_INP_WLOCK(inp); 12699 SCTP_INP_INCR_REF(inp); 12700 SCTP_INP_WUNLOCK(inp); 12701 /* With the lock applied look again */ 12702 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12703 if ((stcb == NULL) && (control != NULL) && (port > 0)) { 12704 stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error); 12705 } 12706 if (stcb == NULL) { 12707 SCTP_INP_WLOCK(inp); 12708 SCTP_INP_DECR_REF(inp); 12709 SCTP_INP_WUNLOCK(inp); 12710 } else { 12711 hold_tcblock = 1; 12712 } 12713 if (error) { 12714 goto out_unlocked; 12715 } 12716 if (t_inp != inp) { 12717 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12718 error = ENOTCONN; 12719 goto out_unlocked; 12720 } 12721 } 12722 if (stcb == NULL) { 12723 if (addr == NULL) { 12724 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12725 error = ENOENT; 12726 goto out_unlocked; 12727 } else { 12728 /* We must go ahead and start the INIT process */ 12729 uint32_t vrf_id; 12730 12731 if ((sinfo_flags & SCTP_ABORT) || 12732 ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) { 12733 /*- 12734 * User asks to abort a non-existant assoc, 12735 * or EOF a non-existant assoc with no data 12736 */ 12737 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12738 error = ENOENT; 12739 goto out_unlocked; 12740 } 12741 /* get an asoc/stcb struct */ 12742 vrf_id = inp->def_vrf_id; 12743 #ifdef INVARIANTS 12744 if (create_lock_applied == 0) { 12745 panic("Error, should hold create lock and I don't?"); 12746 } 12747 #endif 12748 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, 12749 inp->sctp_ep.pre_open_stream_count, 12750 inp->sctp_ep.port, 12751 p); 12752 if (stcb == NULL) { 12753 /* Error is setup for us in the call */ 12754 goto out_unlocked; 12755 } 12756 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 12757 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 12758 /* 12759 * Set the connected flag so we can queue 12760 * data 12761 */ 12762 soisconnecting(so); 12763 } 12764 hold_tcblock = 1; 12765 if (create_lock_applied) { 12766 SCTP_ASOC_CREATE_UNLOCK(inp); 12767 create_lock_applied = 0; 12768 } else { 12769 SCTP_PRINTF("Huh-3? create lock should have been on??\n"); 12770 } 12771 /* 12772 * Turn on queue only flag to prevent data from 12773 * being sent 12774 */ 12775 queue_only = 1; 12776 asoc = &stcb->asoc; 12777 SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT); 12778 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 12779 12780 /* initialize authentication params for the assoc */ 12781 sctp_initialize_auth_params(inp, stcb); 12782 12783 if (control) { 12784 if (sctp_process_cmsgs_for_init(stcb, control, &error)) { 12785 sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, 12786 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5); 12787 hold_tcblock = 0; 12788 stcb = NULL; 12789 goto out_unlocked; 12790 } 12791 } 12792 /* out with the INIT */ 12793 queue_only_for_init = 1; 12794 /*- 12795 * we may want to dig in after this call and adjust the MTU 12796 * value. It defaulted to 1500 (constant) but the ro 12797 * structure may now have an update and thus we may need to 12798 * change it BEFORE we append the message. 12799 */ 12800 } 12801 } else 12802 asoc = &stcb->asoc; 12803 if (srcv == NULL) 12804 srcv = (struct sctp_sndrcvinfo *)&asoc->def_send; 12805 if (srcv->sinfo_flags & SCTP_ADDR_OVER) { 12806 if (addr) 12807 net = sctp_findnet(stcb, addr); 12808 else 12809 net = NULL; 12810 if ((net == NULL) || 12811 ((port != 0) && (port != stcb->rport))) { 12812 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12813 error = EINVAL; 12814 goto out_unlocked; 12815 } 12816 } else { 12817 if (stcb->asoc.alternate) { 12818 net = stcb->asoc.alternate; 12819 } else { 12820 net = stcb->asoc.primary_destination; 12821 } 12822 } 12823 atomic_add_int(&stcb->total_sends, 1); 12824 /* Keep the stcb from being freed under our feet */ 12825 atomic_add_int(&asoc->refcnt, 1); 12826 free_cnt_applied = 1; 12827 12828 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) { 12829 if (sndlen > asoc->smallest_mtu) { 12830 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12831 error = EMSGSIZE; 12832 goto out_unlocked; 12833 } 12834 } 12835 if (SCTP_SO_IS_NBIO(so) 12836 || (flags & MSG_NBIO) 12837 ) { 12838 non_blocking = 1; 12839 } 12840 /* would we block? */ 12841 if (non_blocking) { 12842 uint32_t amount; 12843 12844 if (hold_tcblock == 0) { 12845 SCTP_TCB_LOCK(stcb); 12846 hold_tcblock = 1; 12847 } 12848 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 12849 if (user_marks_eor == 0) { 12850 amount = sndlen; 12851 } else { 12852 amount = 1; 12853 } 12854 if ((SCTP_SB_LIMIT_SND(so) < (amount + inqueue_bytes + stcb->asoc.sb_send_resv)) || 12855 (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12856 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK); 12857 if (sndlen > SCTP_SB_LIMIT_SND(so)) 12858 error = EMSGSIZE; 12859 else 12860 error = EWOULDBLOCK; 12861 goto out_unlocked; 12862 } 12863 stcb->asoc.sb_send_resv += sndlen; 12864 SCTP_TCB_UNLOCK(stcb); 12865 hold_tcblock = 0; 12866 } else { 12867 atomic_add_int(&stcb->asoc.sb_send_resv, sndlen); 12868 } 12869 local_soresv = sndlen; 12870 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12871 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12872 error = ECONNRESET; 12873 goto out_unlocked; 12874 } 12875 if (create_lock_applied) { 12876 SCTP_ASOC_CREATE_UNLOCK(inp); 12877 create_lock_applied = 0; 12878 } 12879 /* Is the stream no. valid? */ 12880 if (srcv->sinfo_stream >= asoc->streamoutcnt) { 12881 /* Invalid stream number */ 12882 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12883 error = EINVAL; 12884 goto out_unlocked; 12885 } 12886 if ((asoc->strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPEN) && 12887 (asoc->strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPENING)) { 12888 /* 12889 * Can't queue any data while stream reset is underway. 12890 */ 12891 if (asoc->strmout[srcv->sinfo_stream].state > SCTP_STREAM_OPEN) { 12892 error = EAGAIN; 12893 } else { 12894 error = EINVAL; 12895 } 12896 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, error); 12897 goto out_unlocked; 12898 } 12899 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 12900 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 12901 queue_only = 1; 12902 } 12903 /* we are now done with all control */ 12904 if (control) { 12905 sctp_m_freem(control); 12906 control = NULL; 12907 } 12908 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_SENT) || 12909 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED) || 12910 (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 12911 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 12912 if (srcv->sinfo_flags & SCTP_ABORT) { 12913 ; 12914 } else { 12915 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12916 error = ECONNRESET; 12917 goto out_unlocked; 12918 } 12919 } 12920 /* Ok, we will attempt a msgsnd :> */ 12921 if (p) { 12922 p->td_ru.ru_msgsnd++; 12923 } 12924 /* Are we aborting? */ 12925 if (srcv->sinfo_flags & SCTP_ABORT) { 12926 struct mbuf *mm; 12927 int tot_demand, tot_out = 0, max_out; 12928 12929 SCTP_STAT_INCR(sctps_sends_with_abort); 12930 if ((SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_WAIT) || 12931 (SCTP_GET_STATE(asoc) == SCTP_STATE_COOKIE_ECHOED)) { 12932 /* It has to be up before we abort */ 12933 /* how big is the user initiated abort? */ 12934 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12935 error = EINVAL; 12936 goto out; 12937 } 12938 if (hold_tcblock) { 12939 SCTP_TCB_UNLOCK(stcb); 12940 hold_tcblock = 0; 12941 } 12942 if (top) { 12943 struct mbuf *cntm = NULL; 12944 12945 mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA); 12946 if (sndlen != 0) { 12947 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) { 12948 tot_out += SCTP_BUF_LEN(cntm); 12949 } 12950 } 12951 } else { 12952 /* Must fit in a MTU */ 12953 tot_out = sndlen; 12954 tot_demand = (tot_out + sizeof(struct sctp_paramhdr)); 12955 if (tot_demand > SCTP_DEFAULT_ADD_MORE) { 12956 /* To big */ 12957 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12958 error = EMSGSIZE; 12959 goto out; 12960 } 12961 mm = sctp_get_mbuf_for_msg(tot_demand, 0, M_WAITOK, 1, MT_DATA); 12962 } 12963 if (mm == NULL) { 12964 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12965 error = ENOMEM; 12966 goto out; 12967 } 12968 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr); 12969 max_out -= sizeof(struct sctp_abort_msg); 12970 if (tot_out > max_out) { 12971 tot_out = max_out; 12972 } 12973 if (mm) { 12974 struct sctp_paramhdr *ph; 12975 12976 /* now move forward the data pointer */ 12977 ph = mtod(mm, struct sctp_paramhdr *); 12978 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 12979 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + tot_out)); 12980 ph++; 12981 SCTP_BUF_LEN(mm) = tot_out + sizeof(struct sctp_paramhdr); 12982 if (top == NULL) { 12983 error = uiomove((caddr_t)ph, (int)tot_out, uio); 12984 if (error) { 12985 /*- 12986 * Here if we can't get his data we 12987 * still abort we just don't get to 12988 * send the users note :-0 12989 */ 12990 sctp_m_freem(mm); 12991 mm = NULL; 12992 } 12993 } else { 12994 if (sndlen != 0) { 12995 SCTP_BUF_NEXT(mm) = top; 12996 } 12997 } 12998 } 12999 if (hold_tcblock == 0) { 13000 SCTP_TCB_LOCK(stcb); 13001 } 13002 atomic_add_int(&stcb->asoc.refcnt, -1); 13003 free_cnt_applied = 0; 13004 /* release this lock, otherwise we hang on ourselves */ 13005 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED); 13006 /* now relock the stcb so everything is sane */ 13007 hold_tcblock = 0; 13008 stcb = NULL; 13009 /* 13010 * In this case top is already chained to mm avoid double 13011 * free, since we free it below if top != NULL and driver 13012 * would free it after sending the packet out 13013 */ 13014 if (sndlen != 0) { 13015 top = NULL; 13016 } 13017 goto out_unlocked; 13018 } 13019 /* Calculate the maximum we can send */ 13020 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13021 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 13022 if (non_blocking) { 13023 /* we already checked for non-blocking above. */ 13024 max_len = sndlen; 13025 } else { 13026 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13027 } 13028 } else { 13029 max_len = 0; 13030 } 13031 if (hold_tcblock) { 13032 SCTP_TCB_UNLOCK(stcb); 13033 hold_tcblock = 0; 13034 } 13035 if (asoc->strmout == NULL) { 13036 /* huh? software error */ 13037 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 13038 error = EFAULT; 13039 goto out_unlocked; 13040 } 13041 /* Unless E_EOR mode is on, we must make a send FIT in one call. */ 13042 if ((user_marks_eor == 0) && 13043 (sndlen > SCTP_SB_LIMIT_SND(stcb->sctp_socket))) { 13044 /* It will NEVER fit */ 13045 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 13046 error = EMSGSIZE; 13047 goto out_unlocked; 13048 } 13049 if ((uio == NULL) && user_marks_eor) { 13050 /*- 13051 * We do not support eeor mode for 13052 * sending with mbuf chains (like sendfile). 13053 */ 13054 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 13055 error = EINVAL; 13056 goto out_unlocked; 13057 } 13058 if (user_marks_eor) { 13059 local_add_more = min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold)); 13060 } else { 13061 /*- 13062 * For non-eeor the whole message must fit in 13063 * the socket send buffer. 13064 */ 13065 local_add_more = sndlen; 13066 } 13067 len = 0; 13068 if (non_blocking) { 13069 goto skip_preblock; 13070 } 13071 if (((max_len <= local_add_more) && 13072 (SCTP_SB_LIMIT_SND(so) >= local_add_more)) || 13073 (max_len == 0) || 13074 ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 13075 /* No room right now ! */ 13076 SOCKBUF_LOCK(&so->so_snd); 13077 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13078 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) || 13079 ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 13080 SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %d) || (%d+%d > %d)\n", 13081 (unsigned int)SCTP_SB_LIMIT_SND(so), 13082 inqueue_bytes, 13083 local_add_more, 13084 stcb->asoc.stream_queue_cnt, 13085 stcb->asoc.chunks_on_out_queue, 13086 SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)); 13087 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13088 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen); 13089 } 13090 be.error = 0; 13091 stcb->block_entry = &be; 13092 error = sbwait(&so->so_snd); 13093 stcb->block_entry = NULL; 13094 if (error || so->so_error || be.error) { 13095 if (error == 0) { 13096 if (so->so_error) 13097 error = so->so_error; 13098 if (be.error) { 13099 error = be.error; 13100 } 13101 } 13102 SOCKBUF_UNLOCK(&so->so_snd); 13103 goto out_unlocked; 13104 } 13105 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13106 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 13107 asoc, stcb->asoc.total_output_queue_size); 13108 } 13109 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13110 SOCKBUF_UNLOCK(&so->so_snd); 13111 goto out_unlocked; 13112 } 13113 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13114 } 13115 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 13116 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13117 } else { 13118 max_len = 0; 13119 } 13120 SOCKBUF_UNLOCK(&so->so_snd); 13121 } 13122 skip_preblock: 13123 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13124 goto out_unlocked; 13125 } 13126 /* 13127 * sndlen covers for mbuf case uio_resid covers for the non-mbuf 13128 * case NOTE: uio will be null when top/mbuf is passed 13129 */ 13130 if (sndlen == 0) { 13131 if (srcv->sinfo_flags & SCTP_EOF) { 13132 got_all_of_the_send = 1; 13133 goto dataless_eof; 13134 } else { 13135 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 13136 error = EINVAL; 13137 goto out; 13138 } 13139 } 13140 if (top == NULL) { 13141 struct sctp_stream_queue_pending *sp; 13142 struct sctp_stream_out *strm; 13143 uint32_t sndout; 13144 13145 SCTP_TCB_SEND_LOCK(stcb); 13146 if ((asoc->stream_locked) && 13147 (asoc->stream_locked_on != srcv->sinfo_stream)) { 13148 SCTP_TCB_SEND_UNLOCK(stcb); 13149 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 13150 error = EINVAL; 13151 goto out; 13152 } 13153 SCTP_TCB_SEND_UNLOCK(stcb); 13154 13155 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 13156 if (strm->last_msg_incomplete == 0) { 13157 do_a_copy_in: 13158 sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error); 13159 if (error) { 13160 goto out; 13161 } 13162 SCTP_TCB_SEND_LOCK(stcb); 13163 if (sp->msg_is_complete) { 13164 strm->last_msg_incomplete = 0; 13165 asoc->stream_locked = 0; 13166 } else { 13167 /* 13168 * Just got locked to this guy in case of an 13169 * interrupt. 13170 */ 13171 strm->last_msg_incomplete = 1; 13172 if (stcb->asoc.idata_supported == 0) { 13173 asoc->stream_locked = 1; 13174 asoc->stream_locked_on = srcv->sinfo_stream; 13175 } 13176 sp->sender_all_done = 0; 13177 } 13178 sctp_snd_sb_alloc(stcb, sp->length); 13179 atomic_add_int(&asoc->stream_queue_cnt, 1); 13180 if (srcv->sinfo_flags & SCTP_UNORDERED) { 13181 SCTP_STAT_INCR(sctps_sends_with_unord); 13182 } 13183 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 13184 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1); 13185 SCTP_TCB_SEND_UNLOCK(stcb); 13186 } else { 13187 SCTP_TCB_SEND_LOCK(stcb); 13188 sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead); 13189 SCTP_TCB_SEND_UNLOCK(stcb); 13190 if (sp == NULL) { 13191 /* ???? Huh ??? last msg is gone */ 13192 #ifdef INVARIANTS 13193 panic("Warning: Last msg marked incomplete, yet nothing left?"); 13194 #else 13195 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n"); 13196 strm->last_msg_incomplete = 0; 13197 #endif 13198 goto do_a_copy_in; 13199 13200 } 13201 } 13202 while (uio->uio_resid > 0) { 13203 /* How much room do we have? */ 13204 struct mbuf *new_tail, *mm; 13205 13206 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13207 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) 13208 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13209 else 13210 max_len = 0; 13211 13212 if ((max_len > SCTP_BASE_SYSCTL(sctp_add_more_threshold)) || 13213 (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) || 13214 (uio->uio_resid && (uio->uio_resid <= (int)max_len))) { 13215 sndout = 0; 13216 new_tail = NULL; 13217 if (hold_tcblock) { 13218 SCTP_TCB_UNLOCK(stcb); 13219 hold_tcblock = 0; 13220 } 13221 mm = sctp_copy_resume(uio, max_len, user_marks_eor, &error, &sndout, &new_tail); 13222 if ((mm == NULL) || error) { 13223 if (mm) { 13224 sctp_m_freem(mm); 13225 } 13226 goto out; 13227 } 13228 /* Update the mbuf and count */ 13229 SCTP_TCB_SEND_LOCK(stcb); 13230 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13231 /* 13232 * we need to get out. Peer probably 13233 * aborted. 13234 */ 13235 sctp_m_freem(mm); 13236 if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) { 13237 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 13238 error = ECONNRESET; 13239 } 13240 SCTP_TCB_SEND_UNLOCK(stcb); 13241 goto out; 13242 } 13243 if (sp->tail_mbuf) { 13244 /* tack it to the end */ 13245 SCTP_BUF_NEXT(sp->tail_mbuf) = mm; 13246 sp->tail_mbuf = new_tail; 13247 } else { 13248 /* A stolen mbuf */ 13249 sp->data = mm; 13250 sp->tail_mbuf = new_tail; 13251 } 13252 sctp_snd_sb_alloc(stcb, sndout); 13253 atomic_add_int(&sp->length, sndout); 13254 len += sndout; 13255 if (srcv->sinfo_flags & SCTP_SACK_IMMEDIATELY) { 13256 sp->sinfo_flags |= SCTP_SACK_IMMEDIATELY; 13257 } 13258 /* Did we reach EOR? */ 13259 if ((uio->uio_resid == 0) && 13260 ((user_marks_eor == 0) || 13261 (srcv->sinfo_flags & SCTP_EOF) || 13262 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 13263 sp->msg_is_complete = 1; 13264 } else { 13265 sp->msg_is_complete = 0; 13266 } 13267 SCTP_TCB_SEND_UNLOCK(stcb); 13268 } 13269 if (uio->uio_resid == 0) { 13270 /* got it all? */ 13271 continue; 13272 } 13273 /* PR-SCTP? */ 13274 if ((asoc->prsctp_supported) && (asoc->sent_queue_cnt_removeable > 0)) { 13275 /* 13276 * This is ugly but we must assure locking 13277 * order 13278 */ 13279 if (hold_tcblock == 0) { 13280 SCTP_TCB_LOCK(stcb); 13281 hold_tcblock = 1; 13282 } 13283 sctp_prune_prsctp(stcb, asoc, srcv, sndlen); 13284 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13285 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) 13286 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13287 else 13288 max_len = 0; 13289 if (max_len > 0) { 13290 continue; 13291 } 13292 SCTP_TCB_UNLOCK(stcb); 13293 hold_tcblock = 0; 13294 } 13295 /* wait for space now */ 13296 if (non_blocking) { 13297 /* Non-blocking io in place out */ 13298 goto skip_out_eof; 13299 } 13300 /* What about the INIT, send it maybe */ 13301 if (queue_only_for_init) { 13302 if (hold_tcblock == 0) { 13303 SCTP_TCB_LOCK(stcb); 13304 hold_tcblock = 1; 13305 } 13306 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) { 13307 /* a collision took us forward? */ 13308 queue_only = 0; 13309 } else { 13310 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13311 SCTP_SET_STATE(asoc, SCTP_STATE_COOKIE_WAIT); 13312 queue_only = 1; 13313 } 13314 } 13315 if ((net->flight_size > net->cwnd) && 13316 (asoc->sctp_cmt_on_off == 0)) { 13317 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13318 queue_only = 1; 13319 } else if (asoc->ifp_had_enobuf) { 13320 SCTP_STAT_INCR(sctps_ifnomemqueued); 13321 if (net->flight_size > (2 * net->mtu)) { 13322 queue_only = 1; 13323 } 13324 asoc->ifp_had_enobuf = 0; 13325 } 13326 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 13327 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13328 (stcb->asoc.total_flight > 0) && 13329 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13330 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 13331 13332 /*- 13333 * Ok, Nagle is set on and we have data outstanding. 13334 * Don't send anything and let SACKs drive out the 13335 * data unless we have a "full" segment to send. 13336 */ 13337 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13338 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13339 } 13340 SCTP_STAT_INCR(sctps_naglequeued); 13341 nagle_applies = 1; 13342 } else { 13343 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13344 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13345 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13346 } 13347 SCTP_STAT_INCR(sctps_naglesent); 13348 nagle_applies = 0; 13349 } 13350 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13351 13352 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13353 nagle_applies, un_sent); 13354 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 13355 stcb->asoc.total_flight, 13356 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 13357 } 13358 if (queue_only_for_init) 13359 queue_only_for_init = 0; 13360 if ((queue_only == 0) && (nagle_applies == 0)) { 13361 /*- 13362 * need to start chunk output 13363 * before blocking.. note that if 13364 * a lock is already applied, then 13365 * the input via the net is happening 13366 * and I don't need to start output :-D 13367 */ 13368 if (hold_tcblock == 0) { 13369 if (SCTP_TCB_TRYLOCK(stcb)) { 13370 hold_tcblock = 1; 13371 sctp_chunk_output(inp, 13372 stcb, 13373 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13374 } 13375 } else { 13376 sctp_chunk_output(inp, 13377 stcb, 13378 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13379 } 13380 if (hold_tcblock == 1) { 13381 SCTP_TCB_UNLOCK(stcb); 13382 hold_tcblock = 0; 13383 } 13384 } 13385 SOCKBUF_LOCK(&so->so_snd); 13386 /*- 13387 * This is a bit strange, but I think it will 13388 * work. The total_output_queue_size is locked and 13389 * protected by the TCB_LOCK, which we just released. 13390 * There is a race that can occur between releasing it 13391 * above, and me getting the socket lock, where sacks 13392 * come in but we have not put the SB_WAIT on the 13393 * so_snd buffer to get the wakeup. After the LOCK 13394 * is applied the sack_processing will also need to 13395 * LOCK the so->so_snd to do the actual sowwakeup(). So 13396 * once we have the socket buffer lock if we recheck the 13397 * size we KNOW we will get to sleep safely with the 13398 * wakeup flag in place. 13399 */ 13400 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13401 if (SCTP_SB_LIMIT_SND(so) <= (inqueue_bytes + 13402 min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) { 13403 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13404 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK, 13405 asoc, (size_t)uio->uio_resid); 13406 } 13407 be.error = 0; 13408 stcb->block_entry = &be; 13409 error = sbwait(&so->so_snd); 13410 stcb->block_entry = NULL; 13411 13412 if (error || so->so_error || be.error) { 13413 if (error == 0) { 13414 if (so->so_error) 13415 error = so->so_error; 13416 if (be.error) { 13417 error = be.error; 13418 } 13419 } 13420 SOCKBUF_UNLOCK(&so->so_snd); 13421 goto out_unlocked; 13422 } 13423 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13424 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 13425 asoc, stcb->asoc.total_output_queue_size); 13426 } 13427 } 13428 SOCKBUF_UNLOCK(&so->so_snd); 13429 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13430 goto out_unlocked; 13431 } 13432 } 13433 SCTP_TCB_SEND_LOCK(stcb); 13434 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13435 SCTP_TCB_SEND_UNLOCK(stcb); 13436 goto out_unlocked; 13437 } 13438 if (sp) { 13439 if (sp->msg_is_complete == 0) { 13440 strm->last_msg_incomplete = 1; 13441 if (stcb->asoc.idata_supported == 0) { 13442 asoc->stream_locked = 1; 13443 asoc->stream_locked_on = srcv->sinfo_stream; 13444 } 13445 } else { 13446 sp->sender_all_done = 1; 13447 strm->last_msg_incomplete = 0; 13448 asoc->stream_locked = 0; 13449 } 13450 } else { 13451 SCTP_PRINTF("Huh no sp TSNH?\n"); 13452 strm->last_msg_incomplete = 0; 13453 asoc->stream_locked = 0; 13454 } 13455 SCTP_TCB_SEND_UNLOCK(stcb); 13456 if (uio->uio_resid == 0) { 13457 got_all_of_the_send = 1; 13458 } 13459 } else { 13460 /* We send in a 0, since we do NOT have any locks */ 13461 error = sctp_msg_append(stcb, net, top, srcv, 0); 13462 top = NULL; 13463 if (srcv->sinfo_flags & SCTP_EOF) { 13464 /* 13465 * This should only happen for Panda for the mbuf 13466 * send case, which does NOT yet support EEOR mode. 13467 * Thus, we can just set this flag to do the proper 13468 * EOF handling. 13469 */ 13470 got_all_of_the_send = 1; 13471 } 13472 } 13473 if (error) { 13474 goto out; 13475 } 13476 dataless_eof: 13477 /* EOF thing ? */ 13478 if ((srcv->sinfo_flags & SCTP_EOF) && 13479 (got_all_of_the_send == 1)) { 13480 SCTP_STAT_INCR(sctps_sends_with_eof); 13481 error = 0; 13482 if (hold_tcblock == 0) { 13483 SCTP_TCB_LOCK(stcb); 13484 hold_tcblock = 1; 13485 } 13486 if (TAILQ_EMPTY(&asoc->send_queue) && 13487 TAILQ_EMPTY(&asoc->sent_queue) && 13488 sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED) == 0) { 13489 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 13490 goto abort_anyway; 13491 } 13492 /* there is nothing queued to send, so I'm done... */ 13493 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 13494 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13495 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13496 struct sctp_nets *netp; 13497 13498 /* only send SHUTDOWN the first time through */ 13499 if (SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) { 13500 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 13501 } 13502 SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 13503 SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 13504 sctp_stop_timers_for_shutdown(stcb); 13505 if (stcb->asoc.alternate) { 13506 netp = stcb->asoc.alternate; 13507 } else { 13508 netp = stcb->asoc.primary_destination; 13509 } 13510 sctp_send_shutdown(stcb, netp); 13511 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 13512 netp); 13513 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13514 asoc->primary_destination); 13515 } 13516 } else { 13517 /*- 13518 * we still got (or just got) data to send, so set 13519 * SHUTDOWN_PENDING 13520 */ 13521 /*- 13522 * XXX sockets draft says that SCTP_EOF should be 13523 * sent with no data. currently, we will allow user 13524 * data to be sent first and move to 13525 * SHUTDOWN-PENDING 13526 */ 13527 if ((SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) && 13528 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13529 (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13530 if (hold_tcblock == 0) { 13531 SCTP_TCB_LOCK(stcb); 13532 hold_tcblock = 1; 13533 } 13534 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 13535 asoc->state |= SCTP_STATE_PARTIAL_MSG_LEFT; 13536 } 13537 asoc->state |= SCTP_STATE_SHUTDOWN_PENDING; 13538 if (TAILQ_EMPTY(&asoc->send_queue) && 13539 TAILQ_EMPTY(&asoc->sent_queue) && 13540 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 13541 struct mbuf *op_err; 13542 char msg[SCTP_DIAG_INFO_LEN]; 13543 13544 abort_anyway: 13545 if (free_cnt_applied) { 13546 atomic_add_int(&stcb->asoc.refcnt, -1); 13547 free_cnt_applied = 0; 13548 } 13549 snprintf(msg, sizeof(msg), 13550 "%s:%d at %s", __FILE__, __LINE__, __func__); 13551 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 13552 msg); 13553 sctp_abort_an_association(stcb->sctp_ep, stcb, 13554 op_err, SCTP_SO_LOCKED); 13555 /* 13556 * now relock the stcb so everything 13557 * is sane 13558 */ 13559 hold_tcblock = 0; 13560 stcb = NULL; 13561 goto out; 13562 } 13563 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13564 asoc->primary_destination); 13565 sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY); 13566 } 13567 } 13568 } 13569 skip_out_eof: 13570 if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) { 13571 some_on_control = 1; 13572 } 13573 if (queue_only_for_init) { 13574 if (hold_tcblock == 0) { 13575 SCTP_TCB_LOCK(stcb); 13576 hold_tcblock = 1; 13577 } 13578 if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_OPEN) { 13579 /* a collision took us forward? */ 13580 queue_only = 0; 13581 } else { 13582 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13583 SCTP_SET_STATE(&stcb->asoc, SCTP_STATE_COOKIE_WAIT); 13584 queue_only = 1; 13585 } 13586 } 13587 if ((net->flight_size > net->cwnd) && 13588 (stcb->asoc.sctp_cmt_on_off == 0)) { 13589 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13590 queue_only = 1; 13591 } else if (asoc->ifp_had_enobuf) { 13592 SCTP_STAT_INCR(sctps_ifnomemqueued); 13593 if (net->flight_size > (2 * net->mtu)) { 13594 queue_only = 1; 13595 } 13596 asoc->ifp_had_enobuf = 0; 13597 } 13598 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 13599 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13600 (stcb->asoc.total_flight > 0) && 13601 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13602 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 13603 /*- 13604 * Ok, Nagle is set on and we have data outstanding. 13605 * Don't send anything and let SACKs drive out the 13606 * data unless wen have a "full" segment to send. 13607 */ 13608 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13609 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13610 } 13611 SCTP_STAT_INCR(sctps_naglequeued); 13612 nagle_applies = 1; 13613 } else { 13614 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13615 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13616 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13617 } 13618 SCTP_STAT_INCR(sctps_naglesent); 13619 nagle_applies = 0; 13620 } 13621 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13622 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13623 nagle_applies, un_sent); 13624 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 13625 stcb->asoc.total_flight, 13626 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 13627 } 13628 if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) { 13629 /* we can attempt to send too. */ 13630 if (hold_tcblock == 0) { 13631 /* 13632 * If there is activity recv'ing sacks no need to 13633 * send 13634 */ 13635 if (SCTP_TCB_TRYLOCK(stcb)) { 13636 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13637 hold_tcblock = 1; 13638 } 13639 } else { 13640 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13641 } 13642 } else if ((queue_only == 0) && 13643 (stcb->asoc.peers_rwnd == 0) && 13644 (stcb->asoc.total_flight == 0)) { 13645 /* We get to have a probe outstanding */ 13646 if (hold_tcblock == 0) { 13647 hold_tcblock = 1; 13648 SCTP_TCB_LOCK(stcb); 13649 } 13650 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13651 } else if (some_on_control) { 13652 int num_out, reason, frag_point; 13653 13654 /* Here we do control only */ 13655 if (hold_tcblock == 0) { 13656 hold_tcblock = 1; 13657 SCTP_TCB_LOCK(stcb); 13658 } 13659 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 13660 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 13661 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED); 13662 } 13663 SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n", 13664 queue_only, stcb->asoc.peers_rwnd, un_sent, 13665 stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue, 13666 stcb->asoc.total_output_queue_size, error); 13667 13668 out: 13669 out_unlocked: 13670 13671 if (local_soresv && stcb) { 13672 atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen); 13673 } 13674 if (create_lock_applied) { 13675 SCTP_ASOC_CREATE_UNLOCK(inp); 13676 } 13677 if ((stcb) && hold_tcblock) { 13678 SCTP_TCB_UNLOCK(stcb); 13679 } 13680 if (stcb && free_cnt_applied) { 13681 atomic_add_int(&stcb->asoc.refcnt, -1); 13682 } 13683 #ifdef INVARIANTS 13684 if (stcb) { 13685 if (mtx_owned(&stcb->tcb_mtx)) { 13686 panic("Leaving with tcb mtx owned?"); 13687 } 13688 if (mtx_owned(&stcb->tcb_send_mtx)) { 13689 panic("Leaving with tcb send mtx owned?"); 13690 } 13691 } 13692 #endif 13693 if (top) { 13694 sctp_m_freem(top); 13695 } 13696 if (control) { 13697 sctp_m_freem(control); 13698 } 13699 return (error); 13700 } 13701 13702 13703 /* 13704 * generate an AUTHentication chunk, if required 13705 */ 13706 struct mbuf * 13707 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, 13708 struct sctp_auth_chunk **auth_ret, uint32_t *offset, 13709 struct sctp_tcb *stcb, uint8_t chunk) 13710 { 13711 struct mbuf *m_auth; 13712 struct sctp_auth_chunk *auth; 13713 int chunk_len; 13714 struct mbuf *cn; 13715 13716 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) || 13717 (stcb == NULL)) 13718 return (m); 13719 13720 if (stcb->asoc.auth_supported == 0) { 13721 return (m); 13722 } 13723 /* does the requested chunk require auth? */ 13724 if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) { 13725 return (m); 13726 } 13727 m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER); 13728 if (m_auth == NULL) { 13729 /* no mbuf's */ 13730 return (m); 13731 } 13732 /* reserve some space if this will be the first mbuf */ 13733 if (m == NULL) 13734 SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD); 13735 /* fill in the AUTH chunk details */ 13736 auth = mtod(m_auth, struct sctp_auth_chunk *); 13737 memset(auth, 0, sizeof(*auth)); 13738 auth->ch.chunk_type = SCTP_AUTHENTICATION; 13739 auth->ch.chunk_flags = 0; 13740 chunk_len = sizeof(*auth) + 13741 sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id); 13742 auth->ch.chunk_length = htons(chunk_len); 13743 auth->hmac_id = htons(stcb->asoc.peer_hmac_id); 13744 /* key id and hmac digest will be computed and filled in upon send */ 13745 13746 /* save the offset where the auth was inserted into the chain */ 13747 *offset = 0; 13748 for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) { 13749 *offset += SCTP_BUF_LEN(cn); 13750 } 13751 13752 /* update length and return pointer to the auth chunk */ 13753 SCTP_BUF_LEN(m_auth) = chunk_len; 13754 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0); 13755 if (auth_ret != NULL) 13756 *auth_ret = auth; 13757 13758 return (m); 13759 } 13760 13761 #ifdef INET6 13762 int 13763 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t *ro) 13764 { 13765 struct nd_prefix *pfx = NULL; 13766 struct nd_pfxrouter *pfxrtr = NULL; 13767 struct sockaddr_in6 gw6; 13768 13769 if (ro == NULL || ro->ro_rt == NULL || src6->sin6_family != AF_INET6) 13770 return (0); 13771 13772 /* get prefix entry of address */ 13773 ND6_RLOCK(); 13774 LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) { 13775 if (pfx->ndpr_stateflags & NDPRF_DETACHED) 13776 continue; 13777 if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr, 13778 &src6->sin6_addr, &pfx->ndpr_mask)) 13779 break; 13780 } 13781 /* no prefix entry in the prefix list */ 13782 if (pfx == NULL) { 13783 ND6_RUNLOCK(); 13784 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for "); 13785 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13786 return (0); 13787 } 13788 SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is "); 13789 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13790 13791 /* search installed gateway from prefix entry */ 13792 LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) { 13793 memset(&gw6, 0, sizeof(struct sockaddr_in6)); 13794 gw6.sin6_family = AF_INET6; 13795 gw6.sin6_len = sizeof(struct sockaddr_in6); 13796 memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr, 13797 sizeof(struct in6_addr)); 13798 SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is "); 13799 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6); 13800 SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is "); 13801 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway); 13802 if (sctp_cmpaddr((struct sockaddr *)&gw6, ro->ro_rt->rt_gateway)) { 13803 ND6_RUNLOCK(); 13804 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n"); 13805 return (1); 13806 } 13807 } 13808 ND6_RUNLOCK(); 13809 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n"); 13810 return (0); 13811 } 13812 #endif 13813 13814 int 13815 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t *ro) 13816 { 13817 #ifdef INET 13818 struct sockaddr_in *sin, *mask; 13819 struct ifaddr *ifa; 13820 struct in_addr srcnetaddr, gwnetaddr; 13821 13822 if (ro == NULL || ro->ro_rt == NULL || 13823 sifa->address.sa.sa_family != AF_INET) { 13824 return (0); 13825 } 13826 ifa = (struct ifaddr *)sifa->ifa; 13827 mask = (struct sockaddr_in *)(ifa->ifa_netmask); 13828 sin = &sifa->address.sin; 13829 srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13830 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is "); 13831 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 13832 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr); 13833 13834 sin = (struct sockaddr_in *)ro->ro_rt->rt_gateway; 13835 gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13836 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is "); 13837 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, ro->ro_rt->rt_gateway); 13838 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr); 13839 if (srcnetaddr.s_addr == gwnetaddr.s_addr) { 13840 return (1); 13841 } 13842 #endif 13843 return (0); 13844 } 13845