1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 2001-2008, by Cisco Systems, Inc. All rights reserved. 5 * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved. 6 * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions are met: 10 * 11 * a) Redistributions of source code must retain the above copyright notice, 12 * this list of conditions and the following disclaimer. 13 * 14 * b) Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in 16 * the documentation and/or other materials provided with the distribution. 17 * 18 * c) Neither the name of Cisco Systems, Inc. nor the names of its 19 * contributors may be used to endorse or promote products derived 20 * from this software without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 24 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 32 * THE POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35 #include <sys/cdefs.h> 36 __FBSDID("$FreeBSD$"); 37 38 #include <netinet/sctp_os.h> 39 #include <sys/proc.h> 40 #include <netinet/sctp_var.h> 41 #include <netinet/sctp_sysctl.h> 42 #include <netinet/sctp_header.h> 43 #include <netinet/sctp_pcb.h> 44 #include <netinet/sctputil.h> 45 #include <netinet/sctp_output.h> 46 #include <netinet/sctp_uio.h> 47 #include <netinet/sctputil.h> 48 #include <netinet/sctp_auth.h> 49 #include <netinet/sctp_timer.h> 50 #include <netinet/sctp_asconf.h> 51 #include <netinet/sctp_indata.h> 52 #include <netinet/sctp_bsd_addr.h> 53 #include <netinet/sctp_input.h> 54 #include <netinet/sctp_crc32.h> 55 #include <netinet/sctp_kdtrace.h> 56 #if defined(INET) || defined(INET6) 57 #include <netinet/udp.h> 58 #endif 59 #include <netinet/udp_var.h> 60 #include <machine/in_cksum.h> 61 62 63 64 #define SCTP_MAX_GAPS_INARRAY 4 65 struct sack_track { 66 uint8_t right_edge; /* mergable on the right edge */ 67 uint8_t left_edge; /* mergable on the left edge */ 68 uint8_t num_entries; 69 uint8_t spare; 70 struct sctp_gap_ack_block gaps[SCTP_MAX_GAPS_INARRAY]; 71 }; 72 73 const struct sack_track sack_array[256] = { 74 {0, 0, 0, 0, /* 0x00 */ 75 {{0, 0}, 76 {0, 0}, 77 {0, 0}, 78 {0, 0} 79 } 80 }, 81 {1, 0, 1, 0, /* 0x01 */ 82 {{0, 0}, 83 {0, 0}, 84 {0, 0}, 85 {0, 0} 86 } 87 }, 88 {0, 0, 1, 0, /* 0x02 */ 89 {{1, 1}, 90 {0, 0}, 91 {0, 0}, 92 {0, 0} 93 } 94 }, 95 {1, 0, 1, 0, /* 0x03 */ 96 {{0, 1}, 97 {0, 0}, 98 {0, 0}, 99 {0, 0} 100 } 101 }, 102 {0, 0, 1, 0, /* 0x04 */ 103 {{2, 2}, 104 {0, 0}, 105 {0, 0}, 106 {0, 0} 107 } 108 }, 109 {1, 0, 2, 0, /* 0x05 */ 110 {{0, 0}, 111 {2, 2}, 112 {0, 0}, 113 {0, 0} 114 } 115 }, 116 {0, 0, 1, 0, /* 0x06 */ 117 {{1, 2}, 118 {0, 0}, 119 {0, 0}, 120 {0, 0} 121 } 122 }, 123 {1, 0, 1, 0, /* 0x07 */ 124 {{0, 2}, 125 {0, 0}, 126 {0, 0}, 127 {0, 0} 128 } 129 }, 130 {0, 0, 1, 0, /* 0x08 */ 131 {{3, 3}, 132 {0, 0}, 133 {0, 0}, 134 {0, 0} 135 } 136 }, 137 {1, 0, 2, 0, /* 0x09 */ 138 {{0, 0}, 139 {3, 3}, 140 {0, 0}, 141 {0, 0} 142 } 143 }, 144 {0, 0, 2, 0, /* 0x0a */ 145 {{1, 1}, 146 {3, 3}, 147 {0, 0}, 148 {0, 0} 149 } 150 }, 151 {1, 0, 2, 0, /* 0x0b */ 152 {{0, 1}, 153 {3, 3}, 154 {0, 0}, 155 {0, 0} 156 } 157 }, 158 {0, 0, 1, 0, /* 0x0c */ 159 {{2, 3}, 160 {0, 0}, 161 {0, 0}, 162 {0, 0} 163 } 164 }, 165 {1, 0, 2, 0, /* 0x0d */ 166 {{0, 0}, 167 {2, 3}, 168 {0, 0}, 169 {0, 0} 170 } 171 }, 172 {0, 0, 1, 0, /* 0x0e */ 173 {{1, 3}, 174 {0, 0}, 175 {0, 0}, 176 {0, 0} 177 } 178 }, 179 {1, 0, 1, 0, /* 0x0f */ 180 {{0, 3}, 181 {0, 0}, 182 {0, 0}, 183 {0, 0} 184 } 185 }, 186 {0, 0, 1, 0, /* 0x10 */ 187 {{4, 4}, 188 {0, 0}, 189 {0, 0}, 190 {0, 0} 191 } 192 }, 193 {1, 0, 2, 0, /* 0x11 */ 194 {{0, 0}, 195 {4, 4}, 196 {0, 0}, 197 {0, 0} 198 } 199 }, 200 {0, 0, 2, 0, /* 0x12 */ 201 {{1, 1}, 202 {4, 4}, 203 {0, 0}, 204 {0, 0} 205 } 206 }, 207 {1, 0, 2, 0, /* 0x13 */ 208 {{0, 1}, 209 {4, 4}, 210 {0, 0}, 211 {0, 0} 212 } 213 }, 214 {0, 0, 2, 0, /* 0x14 */ 215 {{2, 2}, 216 {4, 4}, 217 {0, 0}, 218 {0, 0} 219 } 220 }, 221 {1, 0, 3, 0, /* 0x15 */ 222 {{0, 0}, 223 {2, 2}, 224 {4, 4}, 225 {0, 0} 226 } 227 }, 228 {0, 0, 2, 0, /* 0x16 */ 229 {{1, 2}, 230 {4, 4}, 231 {0, 0}, 232 {0, 0} 233 } 234 }, 235 {1, 0, 2, 0, /* 0x17 */ 236 {{0, 2}, 237 {4, 4}, 238 {0, 0}, 239 {0, 0} 240 } 241 }, 242 {0, 0, 1, 0, /* 0x18 */ 243 {{3, 4}, 244 {0, 0}, 245 {0, 0}, 246 {0, 0} 247 } 248 }, 249 {1, 0, 2, 0, /* 0x19 */ 250 {{0, 0}, 251 {3, 4}, 252 {0, 0}, 253 {0, 0} 254 } 255 }, 256 {0, 0, 2, 0, /* 0x1a */ 257 {{1, 1}, 258 {3, 4}, 259 {0, 0}, 260 {0, 0} 261 } 262 }, 263 {1, 0, 2, 0, /* 0x1b */ 264 {{0, 1}, 265 {3, 4}, 266 {0, 0}, 267 {0, 0} 268 } 269 }, 270 {0, 0, 1, 0, /* 0x1c */ 271 {{2, 4}, 272 {0, 0}, 273 {0, 0}, 274 {0, 0} 275 } 276 }, 277 {1, 0, 2, 0, /* 0x1d */ 278 {{0, 0}, 279 {2, 4}, 280 {0, 0}, 281 {0, 0} 282 } 283 }, 284 {0, 0, 1, 0, /* 0x1e */ 285 {{1, 4}, 286 {0, 0}, 287 {0, 0}, 288 {0, 0} 289 } 290 }, 291 {1, 0, 1, 0, /* 0x1f */ 292 {{0, 4}, 293 {0, 0}, 294 {0, 0}, 295 {0, 0} 296 } 297 }, 298 {0, 0, 1, 0, /* 0x20 */ 299 {{5, 5}, 300 {0, 0}, 301 {0, 0}, 302 {0, 0} 303 } 304 }, 305 {1, 0, 2, 0, /* 0x21 */ 306 {{0, 0}, 307 {5, 5}, 308 {0, 0}, 309 {0, 0} 310 } 311 }, 312 {0, 0, 2, 0, /* 0x22 */ 313 {{1, 1}, 314 {5, 5}, 315 {0, 0}, 316 {0, 0} 317 } 318 }, 319 {1, 0, 2, 0, /* 0x23 */ 320 {{0, 1}, 321 {5, 5}, 322 {0, 0}, 323 {0, 0} 324 } 325 }, 326 {0, 0, 2, 0, /* 0x24 */ 327 {{2, 2}, 328 {5, 5}, 329 {0, 0}, 330 {0, 0} 331 } 332 }, 333 {1, 0, 3, 0, /* 0x25 */ 334 {{0, 0}, 335 {2, 2}, 336 {5, 5}, 337 {0, 0} 338 } 339 }, 340 {0, 0, 2, 0, /* 0x26 */ 341 {{1, 2}, 342 {5, 5}, 343 {0, 0}, 344 {0, 0} 345 } 346 }, 347 {1, 0, 2, 0, /* 0x27 */ 348 {{0, 2}, 349 {5, 5}, 350 {0, 0}, 351 {0, 0} 352 } 353 }, 354 {0, 0, 2, 0, /* 0x28 */ 355 {{3, 3}, 356 {5, 5}, 357 {0, 0}, 358 {0, 0} 359 } 360 }, 361 {1, 0, 3, 0, /* 0x29 */ 362 {{0, 0}, 363 {3, 3}, 364 {5, 5}, 365 {0, 0} 366 } 367 }, 368 {0, 0, 3, 0, /* 0x2a */ 369 {{1, 1}, 370 {3, 3}, 371 {5, 5}, 372 {0, 0} 373 } 374 }, 375 {1, 0, 3, 0, /* 0x2b */ 376 {{0, 1}, 377 {3, 3}, 378 {5, 5}, 379 {0, 0} 380 } 381 }, 382 {0, 0, 2, 0, /* 0x2c */ 383 {{2, 3}, 384 {5, 5}, 385 {0, 0}, 386 {0, 0} 387 } 388 }, 389 {1, 0, 3, 0, /* 0x2d */ 390 {{0, 0}, 391 {2, 3}, 392 {5, 5}, 393 {0, 0} 394 } 395 }, 396 {0, 0, 2, 0, /* 0x2e */ 397 {{1, 3}, 398 {5, 5}, 399 {0, 0}, 400 {0, 0} 401 } 402 }, 403 {1, 0, 2, 0, /* 0x2f */ 404 {{0, 3}, 405 {5, 5}, 406 {0, 0}, 407 {0, 0} 408 } 409 }, 410 {0, 0, 1, 0, /* 0x30 */ 411 {{4, 5}, 412 {0, 0}, 413 {0, 0}, 414 {0, 0} 415 } 416 }, 417 {1, 0, 2, 0, /* 0x31 */ 418 {{0, 0}, 419 {4, 5}, 420 {0, 0}, 421 {0, 0} 422 } 423 }, 424 {0, 0, 2, 0, /* 0x32 */ 425 {{1, 1}, 426 {4, 5}, 427 {0, 0}, 428 {0, 0} 429 } 430 }, 431 {1, 0, 2, 0, /* 0x33 */ 432 {{0, 1}, 433 {4, 5}, 434 {0, 0}, 435 {0, 0} 436 } 437 }, 438 {0, 0, 2, 0, /* 0x34 */ 439 {{2, 2}, 440 {4, 5}, 441 {0, 0}, 442 {0, 0} 443 } 444 }, 445 {1, 0, 3, 0, /* 0x35 */ 446 {{0, 0}, 447 {2, 2}, 448 {4, 5}, 449 {0, 0} 450 } 451 }, 452 {0, 0, 2, 0, /* 0x36 */ 453 {{1, 2}, 454 {4, 5}, 455 {0, 0}, 456 {0, 0} 457 } 458 }, 459 {1, 0, 2, 0, /* 0x37 */ 460 {{0, 2}, 461 {4, 5}, 462 {0, 0}, 463 {0, 0} 464 } 465 }, 466 {0, 0, 1, 0, /* 0x38 */ 467 {{3, 5}, 468 {0, 0}, 469 {0, 0}, 470 {0, 0} 471 } 472 }, 473 {1, 0, 2, 0, /* 0x39 */ 474 {{0, 0}, 475 {3, 5}, 476 {0, 0}, 477 {0, 0} 478 } 479 }, 480 {0, 0, 2, 0, /* 0x3a */ 481 {{1, 1}, 482 {3, 5}, 483 {0, 0}, 484 {0, 0} 485 } 486 }, 487 {1, 0, 2, 0, /* 0x3b */ 488 {{0, 1}, 489 {3, 5}, 490 {0, 0}, 491 {0, 0} 492 } 493 }, 494 {0, 0, 1, 0, /* 0x3c */ 495 {{2, 5}, 496 {0, 0}, 497 {0, 0}, 498 {0, 0} 499 } 500 }, 501 {1, 0, 2, 0, /* 0x3d */ 502 {{0, 0}, 503 {2, 5}, 504 {0, 0}, 505 {0, 0} 506 } 507 }, 508 {0, 0, 1, 0, /* 0x3e */ 509 {{1, 5}, 510 {0, 0}, 511 {0, 0}, 512 {0, 0} 513 } 514 }, 515 {1, 0, 1, 0, /* 0x3f */ 516 {{0, 5}, 517 {0, 0}, 518 {0, 0}, 519 {0, 0} 520 } 521 }, 522 {0, 0, 1, 0, /* 0x40 */ 523 {{6, 6}, 524 {0, 0}, 525 {0, 0}, 526 {0, 0} 527 } 528 }, 529 {1, 0, 2, 0, /* 0x41 */ 530 {{0, 0}, 531 {6, 6}, 532 {0, 0}, 533 {0, 0} 534 } 535 }, 536 {0, 0, 2, 0, /* 0x42 */ 537 {{1, 1}, 538 {6, 6}, 539 {0, 0}, 540 {0, 0} 541 } 542 }, 543 {1, 0, 2, 0, /* 0x43 */ 544 {{0, 1}, 545 {6, 6}, 546 {0, 0}, 547 {0, 0} 548 } 549 }, 550 {0, 0, 2, 0, /* 0x44 */ 551 {{2, 2}, 552 {6, 6}, 553 {0, 0}, 554 {0, 0} 555 } 556 }, 557 {1, 0, 3, 0, /* 0x45 */ 558 {{0, 0}, 559 {2, 2}, 560 {6, 6}, 561 {0, 0} 562 } 563 }, 564 {0, 0, 2, 0, /* 0x46 */ 565 {{1, 2}, 566 {6, 6}, 567 {0, 0}, 568 {0, 0} 569 } 570 }, 571 {1, 0, 2, 0, /* 0x47 */ 572 {{0, 2}, 573 {6, 6}, 574 {0, 0}, 575 {0, 0} 576 } 577 }, 578 {0, 0, 2, 0, /* 0x48 */ 579 {{3, 3}, 580 {6, 6}, 581 {0, 0}, 582 {0, 0} 583 } 584 }, 585 {1, 0, 3, 0, /* 0x49 */ 586 {{0, 0}, 587 {3, 3}, 588 {6, 6}, 589 {0, 0} 590 } 591 }, 592 {0, 0, 3, 0, /* 0x4a */ 593 {{1, 1}, 594 {3, 3}, 595 {6, 6}, 596 {0, 0} 597 } 598 }, 599 {1, 0, 3, 0, /* 0x4b */ 600 {{0, 1}, 601 {3, 3}, 602 {6, 6}, 603 {0, 0} 604 } 605 }, 606 {0, 0, 2, 0, /* 0x4c */ 607 {{2, 3}, 608 {6, 6}, 609 {0, 0}, 610 {0, 0} 611 } 612 }, 613 {1, 0, 3, 0, /* 0x4d */ 614 {{0, 0}, 615 {2, 3}, 616 {6, 6}, 617 {0, 0} 618 } 619 }, 620 {0, 0, 2, 0, /* 0x4e */ 621 {{1, 3}, 622 {6, 6}, 623 {0, 0}, 624 {0, 0} 625 } 626 }, 627 {1, 0, 2, 0, /* 0x4f */ 628 {{0, 3}, 629 {6, 6}, 630 {0, 0}, 631 {0, 0} 632 } 633 }, 634 {0, 0, 2, 0, /* 0x50 */ 635 {{4, 4}, 636 {6, 6}, 637 {0, 0}, 638 {0, 0} 639 } 640 }, 641 {1, 0, 3, 0, /* 0x51 */ 642 {{0, 0}, 643 {4, 4}, 644 {6, 6}, 645 {0, 0} 646 } 647 }, 648 {0, 0, 3, 0, /* 0x52 */ 649 {{1, 1}, 650 {4, 4}, 651 {6, 6}, 652 {0, 0} 653 } 654 }, 655 {1, 0, 3, 0, /* 0x53 */ 656 {{0, 1}, 657 {4, 4}, 658 {6, 6}, 659 {0, 0} 660 } 661 }, 662 {0, 0, 3, 0, /* 0x54 */ 663 {{2, 2}, 664 {4, 4}, 665 {6, 6}, 666 {0, 0} 667 } 668 }, 669 {1, 0, 4, 0, /* 0x55 */ 670 {{0, 0}, 671 {2, 2}, 672 {4, 4}, 673 {6, 6} 674 } 675 }, 676 {0, 0, 3, 0, /* 0x56 */ 677 {{1, 2}, 678 {4, 4}, 679 {6, 6}, 680 {0, 0} 681 } 682 }, 683 {1, 0, 3, 0, /* 0x57 */ 684 {{0, 2}, 685 {4, 4}, 686 {6, 6}, 687 {0, 0} 688 } 689 }, 690 {0, 0, 2, 0, /* 0x58 */ 691 {{3, 4}, 692 {6, 6}, 693 {0, 0}, 694 {0, 0} 695 } 696 }, 697 {1, 0, 3, 0, /* 0x59 */ 698 {{0, 0}, 699 {3, 4}, 700 {6, 6}, 701 {0, 0} 702 } 703 }, 704 {0, 0, 3, 0, /* 0x5a */ 705 {{1, 1}, 706 {3, 4}, 707 {6, 6}, 708 {0, 0} 709 } 710 }, 711 {1, 0, 3, 0, /* 0x5b */ 712 {{0, 1}, 713 {3, 4}, 714 {6, 6}, 715 {0, 0} 716 } 717 }, 718 {0, 0, 2, 0, /* 0x5c */ 719 {{2, 4}, 720 {6, 6}, 721 {0, 0}, 722 {0, 0} 723 } 724 }, 725 {1, 0, 3, 0, /* 0x5d */ 726 {{0, 0}, 727 {2, 4}, 728 {6, 6}, 729 {0, 0} 730 } 731 }, 732 {0, 0, 2, 0, /* 0x5e */ 733 {{1, 4}, 734 {6, 6}, 735 {0, 0}, 736 {0, 0} 737 } 738 }, 739 {1, 0, 2, 0, /* 0x5f */ 740 {{0, 4}, 741 {6, 6}, 742 {0, 0}, 743 {0, 0} 744 } 745 }, 746 {0, 0, 1, 0, /* 0x60 */ 747 {{5, 6}, 748 {0, 0}, 749 {0, 0}, 750 {0, 0} 751 } 752 }, 753 {1, 0, 2, 0, /* 0x61 */ 754 {{0, 0}, 755 {5, 6}, 756 {0, 0}, 757 {0, 0} 758 } 759 }, 760 {0, 0, 2, 0, /* 0x62 */ 761 {{1, 1}, 762 {5, 6}, 763 {0, 0}, 764 {0, 0} 765 } 766 }, 767 {1, 0, 2, 0, /* 0x63 */ 768 {{0, 1}, 769 {5, 6}, 770 {0, 0}, 771 {0, 0} 772 } 773 }, 774 {0, 0, 2, 0, /* 0x64 */ 775 {{2, 2}, 776 {5, 6}, 777 {0, 0}, 778 {0, 0} 779 } 780 }, 781 {1, 0, 3, 0, /* 0x65 */ 782 {{0, 0}, 783 {2, 2}, 784 {5, 6}, 785 {0, 0} 786 } 787 }, 788 {0, 0, 2, 0, /* 0x66 */ 789 {{1, 2}, 790 {5, 6}, 791 {0, 0}, 792 {0, 0} 793 } 794 }, 795 {1, 0, 2, 0, /* 0x67 */ 796 {{0, 2}, 797 {5, 6}, 798 {0, 0}, 799 {0, 0} 800 } 801 }, 802 {0, 0, 2, 0, /* 0x68 */ 803 {{3, 3}, 804 {5, 6}, 805 {0, 0}, 806 {0, 0} 807 } 808 }, 809 {1, 0, 3, 0, /* 0x69 */ 810 {{0, 0}, 811 {3, 3}, 812 {5, 6}, 813 {0, 0} 814 } 815 }, 816 {0, 0, 3, 0, /* 0x6a */ 817 {{1, 1}, 818 {3, 3}, 819 {5, 6}, 820 {0, 0} 821 } 822 }, 823 {1, 0, 3, 0, /* 0x6b */ 824 {{0, 1}, 825 {3, 3}, 826 {5, 6}, 827 {0, 0} 828 } 829 }, 830 {0, 0, 2, 0, /* 0x6c */ 831 {{2, 3}, 832 {5, 6}, 833 {0, 0}, 834 {0, 0} 835 } 836 }, 837 {1, 0, 3, 0, /* 0x6d */ 838 {{0, 0}, 839 {2, 3}, 840 {5, 6}, 841 {0, 0} 842 } 843 }, 844 {0, 0, 2, 0, /* 0x6e */ 845 {{1, 3}, 846 {5, 6}, 847 {0, 0}, 848 {0, 0} 849 } 850 }, 851 {1, 0, 2, 0, /* 0x6f */ 852 {{0, 3}, 853 {5, 6}, 854 {0, 0}, 855 {0, 0} 856 } 857 }, 858 {0, 0, 1, 0, /* 0x70 */ 859 {{4, 6}, 860 {0, 0}, 861 {0, 0}, 862 {0, 0} 863 } 864 }, 865 {1, 0, 2, 0, /* 0x71 */ 866 {{0, 0}, 867 {4, 6}, 868 {0, 0}, 869 {0, 0} 870 } 871 }, 872 {0, 0, 2, 0, /* 0x72 */ 873 {{1, 1}, 874 {4, 6}, 875 {0, 0}, 876 {0, 0} 877 } 878 }, 879 {1, 0, 2, 0, /* 0x73 */ 880 {{0, 1}, 881 {4, 6}, 882 {0, 0}, 883 {0, 0} 884 } 885 }, 886 {0, 0, 2, 0, /* 0x74 */ 887 {{2, 2}, 888 {4, 6}, 889 {0, 0}, 890 {0, 0} 891 } 892 }, 893 {1, 0, 3, 0, /* 0x75 */ 894 {{0, 0}, 895 {2, 2}, 896 {4, 6}, 897 {0, 0} 898 } 899 }, 900 {0, 0, 2, 0, /* 0x76 */ 901 {{1, 2}, 902 {4, 6}, 903 {0, 0}, 904 {0, 0} 905 } 906 }, 907 {1, 0, 2, 0, /* 0x77 */ 908 {{0, 2}, 909 {4, 6}, 910 {0, 0}, 911 {0, 0} 912 } 913 }, 914 {0, 0, 1, 0, /* 0x78 */ 915 {{3, 6}, 916 {0, 0}, 917 {0, 0}, 918 {0, 0} 919 } 920 }, 921 {1, 0, 2, 0, /* 0x79 */ 922 {{0, 0}, 923 {3, 6}, 924 {0, 0}, 925 {0, 0} 926 } 927 }, 928 {0, 0, 2, 0, /* 0x7a */ 929 {{1, 1}, 930 {3, 6}, 931 {0, 0}, 932 {0, 0} 933 } 934 }, 935 {1, 0, 2, 0, /* 0x7b */ 936 {{0, 1}, 937 {3, 6}, 938 {0, 0}, 939 {0, 0} 940 } 941 }, 942 {0, 0, 1, 0, /* 0x7c */ 943 {{2, 6}, 944 {0, 0}, 945 {0, 0}, 946 {0, 0} 947 } 948 }, 949 {1, 0, 2, 0, /* 0x7d */ 950 {{0, 0}, 951 {2, 6}, 952 {0, 0}, 953 {0, 0} 954 } 955 }, 956 {0, 0, 1, 0, /* 0x7e */ 957 {{1, 6}, 958 {0, 0}, 959 {0, 0}, 960 {0, 0} 961 } 962 }, 963 {1, 0, 1, 0, /* 0x7f */ 964 {{0, 6}, 965 {0, 0}, 966 {0, 0}, 967 {0, 0} 968 } 969 }, 970 {0, 1, 1, 0, /* 0x80 */ 971 {{7, 7}, 972 {0, 0}, 973 {0, 0}, 974 {0, 0} 975 } 976 }, 977 {1, 1, 2, 0, /* 0x81 */ 978 {{0, 0}, 979 {7, 7}, 980 {0, 0}, 981 {0, 0} 982 } 983 }, 984 {0, 1, 2, 0, /* 0x82 */ 985 {{1, 1}, 986 {7, 7}, 987 {0, 0}, 988 {0, 0} 989 } 990 }, 991 {1, 1, 2, 0, /* 0x83 */ 992 {{0, 1}, 993 {7, 7}, 994 {0, 0}, 995 {0, 0} 996 } 997 }, 998 {0, 1, 2, 0, /* 0x84 */ 999 {{2, 2}, 1000 {7, 7}, 1001 {0, 0}, 1002 {0, 0} 1003 } 1004 }, 1005 {1, 1, 3, 0, /* 0x85 */ 1006 {{0, 0}, 1007 {2, 2}, 1008 {7, 7}, 1009 {0, 0} 1010 } 1011 }, 1012 {0, 1, 2, 0, /* 0x86 */ 1013 {{1, 2}, 1014 {7, 7}, 1015 {0, 0}, 1016 {0, 0} 1017 } 1018 }, 1019 {1, 1, 2, 0, /* 0x87 */ 1020 {{0, 2}, 1021 {7, 7}, 1022 {0, 0}, 1023 {0, 0} 1024 } 1025 }, 1026 {0, 1, 2, 0, /* 0x88 */ 1027 {{3, 3}, 1028 {7, 7}, 1029 {0, 0}, 1030 {0, 0} 1031 } 1032 }, 1033 {1, 1, 3, 0, /* 0x89 */ 1034 {{0, 0}, 1035 {3, 3}, 1036 {7, 7}, 1037 {0, 0} 1038 } 1039 }, 1040 {0, 1, 3, 0, /* 0x8a */ 1041 {{1, 1}, 1042 {3, 3}, 1043 {7, 7}, 1044 {0, 0} 1045 } 1046 }, 1047 {1, 1, 3, 0, /* 0x8b */ 1048 {{0, 1}, 1049 {3, 3}, 1050 {7, 7}, 1051 {0, 0} 1052 } 1053 }, 1054 {0, 1, 2, 0, /* 0x8c */ 1055 {{2, 3}, 1056 {7, 7}, 1057 {0, 0}, 1058 {0, 0} 1059 } 1060 }, 1061 {1, 1, 3, 0, /* 0x8d */ 1062 {{0, 0}, 1063 {2, 3}, 1064 {7, 7}, 1065 {0, 0} 1066 } 1067 }, 1068 {0, 1, 2, 0, /* 0x8e */ 1069 {{1, 3}, 1070 {7, 7}, 1071 {0, 0}, 1072 {0, 0} 1073 } 1074 }, 1075 {1, 1, 2, 0, /* 0x8f */ 1076 {{0, 3}, 1077 {7, 7}, 1078 {0, 0}, 1079 {0, 0} 1080 } 1081 }, 1082 {0, 1, 2, 0, /* 0x90 */ 1083 {{4, 4}, 1084 {7, 7}, 1085 {0, 0}, 1086 {0, 0} 1087 } 1088 }, 1089 {1, 1, 3, 0, /* 0x91 */ 1090 {{0, 0}, 1091 {4, 4}, 1092 {7, 7}, 1093 {0, 0} 1094 } 1095 }, 1096 {0, 1, 3, 0, /* 0x92 */ 1097 {{1, 1}, 1098 {4, 4}, 1099 {7, 7}, 1100 {0, 0} 1101 } 1102 }, 1103 {1, 1, 3, 0, /* 0x93 */ 1104 {{0, 1}, 1105 {4, 4}, 1106 {7, 7}, 1107 {0, 0} 1108 } 1109 }, 1110 {0, 1, 3, 0, /* 0x94 */ 1111 {{2, 2}, 1112 {4, 4}, 1113 {7, 7}, 1114 {0, 0} 1115 } 1116 }, 1117 {1, 1, 4, 0, /* 0x95 */ 1118 {{0, 0}, 1119 {2, 2}, 1120 {4, 4}, 1121 {7, 7} 1122 } 1123 }, 1124 {0, 1, 3, 0, /* 0x96 */ 1125 {{1, 2}, 1126 {4, 4}, 1127 {7, 7}, 1128 {0, 0} 1129 } 1130 }, 1131 {1, 1, 3, 0, /* 0x97 */ 1132 {{0, 2}, 1133 {4, 4}, 1134 {7, 7}, 1135 {0, 0} 1136 } 1137 }, 1138 {0, 1, 2, 0, /* 0x98 */ 1139 {{3, 4}, 1140 {7, 7}, 1141 {0, 0}, 1142 {0, 0} 1143 } 1144 }, 1145 {1, 1, 3, 0, /* 0x99 */ 1146 {{0, 0}, 1147 {3, 4}, 1148 {7, 7}, 1149 {0, 0} 1150 } 1151 }, 1152 {0, 1, 3, 0, /* 0x9a */ 1153 {{1, 1}, 1154 {3, 4}, 1155 {7, 7}, 1156 {0, 0} 1157 } 1158 }, 1159 {1, 1, 3, 0, /* 0x9b */ 1160 {{0, 1}, 1161 {3, 4}, 1162 {7, 7}, 1163 {0, 0} 1164 } 1165 }, 1166 {0, 1, 2, 0, /* 0x9c */ 1167 {{2, 4}, 1168 {7, 7}, 1169 {0, 0}, 1170 {0, 0} 1171 } 1172 }, 1173 {1, 1, 3, 0, /* 0x9d */ 1174 {{0, 0}, 1175 {2, 4}, 1176 {7, 7}, 1177 {0, 0} 1178 } 1179 }, 1180 {0, 1, 2, 0, /* 0x9e */ 1181 {{1, 4}, 1182 {7, 7}, 1183 {0, 0}, 1184 {0, 0} 1185 } 1186 }, 1187 {1, 1, 2, 0, /* 0x9f */ 1188 {{0, 4}, 1189 {7, 7}, 1190 {0, 0}, 1191 {0, 0} 1192 } 1193 }, 1194 {0, 1, 2, 0, /* 0xa0 */ 1195 {{5, 5}, 1196 {7, 7}, 1197 {0, 0}, 1198 {0, 0} 1199 } 1200 }, 1201 {1, 1, 3, 0, /* 0xa1 */ 1202 {{0, 0}, 1203 {5, 5}, 1204 {7, 7}, 1205 {0, 0} 1206 } 1207 }, 1208 {0, 1, 3, 0, /* 0xa2 */ 1209 {{1, 1}, 1210 {5, 5}, 1211 {7, 7}, 1212 {0, 0} 1213 } 1214 }, 1215 {1, 1, 3, 0, /* 0xa3 */ 1216 {{0, 1}, 1217 {5, 5}, 1218 {7, 7}, 1219 {0, 0} 1220 } 1221 }, 1222 {0, 1, 3, 0, /* 0xa4 */ 1223 {{2, 2}, 1224 {5, 5}, 1225 {7, 7}, 1226 {0, 0} 1227 } 1228 }, 1229 {1, 1, 4, 0, /* 0xa5 */ 1230 {{0, 0}, 1231 {2, 2}, 1232 {5, 5}, 1233 {7, 7} 1234 } 1235 }, 1236 {0, 1, 3, 0, /* 0xa6 */ 1237 {{1, 2}, 1238 {5, 5}, 1239 {7, 7}, 1240 {0, 0} 1241 } 1242 }, 1243 {1, 1, 3, 0, /* 0xa7 */ 1244 {{0, 2}, 1245 {5, 5}, 1246 {7, 7}, 1247 {0, 0} 1248 } 1249 }, 1250 {0, 1, 3, 0, /* 0xa8 */ 1251 {{3, 3}, 1252 {5, 5}, 1253 {7, 7}, 1254 {0, 0} 1255 } 1256 }, 1257 {1, 1, 4, 0, /* 0xa9 */ 1258 {{0, 0}, 1259 {3, 3}, 1260 {5, 5}, 1261 {7, 7} 1262 } 1263 }, 1264 {0, 1, 4, 0, /* 0xaa */ 1265 {{1, 1}, 1266 {3, 3}, 1267 {5, 5}, 1268 {7, 7} 1269 } 1270 }, 1271 {1, 1, 4, 0, /* 0xab */ 1272 {{0, 1}, 1273 {3, 3}, 1274 {5, 5}, 1275 {7, 7} 1276 } 1277 }, 1278 {0, 1, 3, 0, /* 0xac */ 1279 {{2, 3}, 1280 {5, 5}, 1281 {7, 7}, 1282 {0, 0} 1283 } 1284 }, 1285 {1, 1, 4, 0, /* 0xad */ 1286 {{0, 0}, 1287 {2, 3}, 1288 {5, 5}, 1289 {7, 7} 1290 } 1291 }, 1292 {0, 1, 3, 0, /* 0xae */ 1293 {{1, 3}, 1294 {5, 5}, 1295 {7, 7}, 1296 {0, 0} 1297 } 1298 }, 1299 {1, 1, 3, 0, /* 0xaf */ 1300 {{0, 3}, 1301 {5, 5}, 1302 {7, 7}, 1303 {0, 0} 1304 } 1305 }, 1306 {0, 1, 2, 0, /* 0xb0 */ 1307 {{4, 5}, 1308 {7, 7}, 1309 {0, 0}, 1310 {0, 0} 1311 } 1312 }, 1313 {1, 1, 3, 0, /* 0xb1 */ 1314 {{0, 0}, 1315 {4, 5}, 1316 {7, 7}, 1317 {0, 0} 1318 } 1319 }, 1320 {0, 1, 3, 0, /* 0xb2 */ 1321 {{1, 1}, 1322 {4, 5}, 1323 {7, 7}, 1324 {0, 0} 1325 } 1326 }, 1327 {1, 1, 3, 0, /* 0xb3 */ 1328 {{0, 1}, 1329 {4, 5}, 1330 {7, 7}, 1331 {0, 0} 1332 } 1333 }, 1334 {0, 1, 3, 0, /* 0xb4 */ 1335 {{2, 2}, 1336 {4, 5}, 1337 {7, 7}, 1338 {0, 0} 1339 } 1340 }, 1341 {1, 1, 4, 0, /* 0xb5 */ 1342 {{0, 0}, 1343 {2, 2}, 1344 {4, 5}, 1345 {7, 7} 1346 } 1347 }, 1348 {0, 1, 3, 0, /* 0xb6 */ 1349 {{1, 2}, 1350 {4, 5}, 1351 {7, 7}, 1352 {0, 0} 1353 } 1354 }, 1355 {1, 1, 3, 0, /* 0xb7 */ 1356 {{0, 2}, 1357 {4, 5}, 1358 {7, 7}, 1359 {0, 0} 1360 } 1361 }, 1362 {0, 1, 2, 0, /* 0xb8 */ 1363 {{3, 5}, 1364 {7, 7}, 1365 {0, 0}, 1366 {0, 0} 1367 } 1368 }, 1369 {1, 1, 3, 0, /* 0xb9 */ 1370 {{0, 0}, 1371 {3, 5}, 1372 {7, 7}, 1373 {0, 0} 1374 } 1375 }, 1376 {0, 1, 3, 0, /* 0xba */ 1377 {{1, 1}, 1378 {3, 5}, 1379 {7, 7}, 1380 {0, 0} 1381 } 1382 }, 1383 {1, 1, 3, 0, /* 0xbb */ 1384 {{0, 1}, 1385 {3, 5}, 1386 {7, 7}, 1387 {0, 0} 1388 } 1389 }, 1390 {0, 1, 2, 0, /* 0xbc */ 1391 {{2, 5}, 1392 {7, 7}, 1393 {0, 0}, 1394 {0, 0} 1395 } 1396 }, 1397 {1, 1, 3, 0, /* 0xbd */ 1398 {{0, 0}, 1399 {2, 5}, 1400 {7, 7}, 1401 {0, 0} 1402 } 1403 }, 1404 {0, 1, 2, 0, /* 0xbe */ 1405 {{1, 5}, 1406 {7, 7}, 1407 {0, 0}, 1408 {0, 0} 1409 } 1410 }, 1411 {1, 1, 2, 0, /* 0xbf */ 1412 {{0, 5}, 1413 {7, 7}, 1414 {0, 0}, 1415 {0, 0} 1416 } 1417 }, 1418 {0, 1, 1, 0, /* 0xc0 */ 1419 {{6, 7}, 1420 {0, 0}, 1421 {0, 0}, 1422 {0, 0} 1423 } 1424 }, 1425 {1, 1, 2, 0, /* 0xc1 */ 1426 {{0, 0}, 1427 {6, 7}, 1428 {0, 0}, 1429 {0, 0} 1430 } 1431 }, 1432 {0, 1, 2, 0, /* 0xc2 */ 1433 {{1, 1}, 1434 {6, 7}, 1435 {0, 0}, 1436 {0, 0} 1437 } 1438 }, 1439 {1, 1, 2, 0, /* 0xc3 */ 1440 {{0, 1}, 1441 {6, 7}, 1442 {0, 0}, 1443 {0, 0} 1444 } 1445 }, 1446 {0, 1, 2, 0, /* 0xc4 */ 1447 {{2, 2}, 1448 {6, 7}, 1449 {0, 0}, 1450 {0, 0} 1451 } 1452 }, 1453 {1, 1, 3, 0, /* 0xc5 */ 1454 {{0, 0}, 1455 {2, 2}, 1456 {6, 7}, 1457 {0, 0} 1458 } 1459 }, 1460 {0, 1, 2, 0, /* 0xc6 */ 1461 {{1, 2}, 1462 {6, 7}, 1463 {0, 0}, 1464 {0, 0} 1465 } 1466 }, 1467 {1, 1, 2, 0, /* 0xc7 */ 1468 {{0, 2}, 1469 {6, 7}, 1470 {0, 0}, 1471 {0, 0} 1472 } 1473 }, 1474 {0, 1, 2, 0, /* 0xc8 */ 1475 {{3, 3}, 1476 {6, 7}, 1477 {0, 0}, 1478 {0, 0} 1479 } 1480 }, 1481 {1, 1, 3, 0, /* 0xc9 */ 1482 {{0, 0}, 1483 {3, 3}, 1484 {6, 7}, 1485 {0, 0} 1486 } 1487 }, 1488 {0, 1, 3, 0, /* 0xca */ 1489 {{1, 1}, 1490 {3, 3}, 1491 {6, 7}, 1492 {0, 0} 1493 } 1494 }, 1495 {1, 1, 3, 0, /* 0xcb */ 1496 {{0, 1}, 1497 {3, 3}, 1498 {6, 7}, 1499 {0, 0} 1500 } 1501 }, 1502 {0, 1, 2, 0, /* 0xcc */ 1503 {{2, 3}, 1504 {6, 7}, 1505 {0, 0}, 1506 {0, 0} 1507 } 1508 }, 1509 {1, 1, 3, 0, /* 0xcd */ 1510 {{0, 0}, 1511 {2, 3}, 1512 {6, 7}, 1513 {0, 0} 1514 } 1515 }, 1516 {0, 1, 2, 0, /* 0xce */ 1517 {{1, 3}, 1518 {6, 7}, 1519 {0, 0}, 1520 {0, 0} 1521 } 1522 }, 1523 {1, 1, 2, 0, /* 0xcf */ 1524 {{0, 3}, 1525 {6, 7}, 1526 {0, 0}, 1527 {0, 0} 1528 } 1529 }, 1530 {0, 1, 2, 0, /* 0xd0 */ 1531 {{4, 4}, 1532 {6, 7}, 1533 {0, 0}, 1534 {0, 0} 1535 } 1536 }, 1537 {1, 1, 3, 0, /* 0xd1 */ 1538 {{0, 0}, 1539 {4, 4}, 1540 {6, 7}, 1541 {0, 0} 1542 } 1543 }, 1544 {0, 1, 3, 0, /* 0xd2 */ 1545 {{1, 1}, 1546 {4, 4}, 1547 {6, 7}, 1548 {0, 0} 1549 } 1550 }, 1551 {1, 1, 3, 0, /* 0xd3 */ 1552 {{0, 1}, 1553 {4, 4}, 1554 {6, 7}, 1555 {0, 0} 1556 } 1557 }, 1558 {0, 1, 3, 0, /* 0xd4 */ 1559 {{2, 2}, 1560 {4, 4}, 1561 {6, 7}, 1562 {0, 0} 1563 } 1564 }, 1565 {1, 1, 4, 0, /* 0xd5 */ 1566 {{0, 0}, 1567 {2, 2}, 1568 {4, 4}, 1569 {6, 7} 1570 } 1571 }, 1572 {0, 1, 3, 0, /* 0xd6 */ 1573 {{1, 2}, 1574 {4, 4}, 1575 {6, 7}, 1576 {0, 0} 1577 } 1578 }, 1579 {1, 1, 3, 0, /* 0xd7 */ 1580 {{0, 2}, 1581 {4, 4}, 1582 {6, 7}, 1583 {0, 0} 1584 } 1585 }, 1586 {0, 1, 2, 0, /* 0xd8 */ 1587 {{3, 4}, 1588 {6, 7}, 1589 {0, 0}, 1590 {0, 0} 1591 } 1592 }, 1593 {1, 1, 3, 0, /* 0xd9 */ 1594 {{0, 0}, 1595 {3, 4}, 1596 {6, 7}, 1597 {0, 0} 1598 } 1599 }, 1600 {0, 1, 3, 0, /* 0xda */ 1601 {{1, 1}, 1602 {3, 4}, 1603 {6, 7}, 1604 {0, 0} 1605 } 1606 }, 1607 {1, 1, 3, 0, /* 0xdb */ 1608 {{0, 1}, 1609 {3, 4}, 1610 {6, 7}, 1611 {0, 0} 1612 } 1613 }, 1614 {0, 1, 2, 0, /* 0xdc */ 1615 {{2, 4}, 1616 {6, 7}, 1617 {0, 0}, 1618 {0, 0} 1619 } 1620 }, 1621 {1, 1, 3, 0, /* 0xdd */ 1622 {{0, 0}, 1623 {2, 4}, 1624 {6, 7}, 1625 {0, 0} 1626 } 1627 }, 1628 {0, 1, 2, 0, /* 0xde */ 1629 {{1, 4}, 1630 {6, 7}, 1631 {0, 0}, 1632 {0, 0} 1633 } 1634 }, 1635 {1, 1, 2, 0, /* 0xdf */ 1636 {{0, 4}, 1637 {6, 7}, 1638 {0, 0}, 1639 {0, 0} 1640 } 1641 }, 1642 {0, 1, 1, 0, /* 0xe0 */ 1643 {{5, 7}, 1644 {0, 0}, 1645 {0, 0}, 1646 {0, 0} 1647 } 1648 }, 1649 {1, 1, 2, 0, /* 0xe1 */ 1650 {{0, 0}, 1651 {5, 7}, 1652 {0, 0}, 1653 {0, 0} 1654 } 1655 }, 1656 {0, 1, 2, 0, /* 0xe2 */ 1657 {{1, 1}, 1658 {5, 7}, 1659 {0, 0}, 1660 {0, 0} 1661 } 1662 }, 1663 {1, 1, 2, 0, /* 0xe3 */ 1664 {{0, 1}, 1665 {5, 7}, 1666 {0, 0}, 1667 {0, 0} 1668 } 1669 }, 1670 {0, 1, 2, 0, /* 0xe4 */ 1671 {{2, 2}, 1672 {5, 7}, 1673 {0, 0}, 1674 {0, 0} 1675 } 1676 }, 1677 {1, 1, 3, 0, /* 0xe5 */ 1678 {{0, 0}, 1679 {2, 2}, 1680 {5, 7}, 1681 {0, 0} 1682 } 1683 }, 1684 {0, 1, 2, 0, /* 0xe6 */ 1685 {{1, 2}, 1686 {5, 7}, 1687 {0, 0}, 1688 {0, 0} 1689 } 1690 }, 1691 {1, 1, 2, 0, /* 0xe7 */ 1692 {{0, 2}, 1693 {5, 7}, 1694 {0, 0}, 1695 {0, 0} 1696 } 1697 }, 1698 {0, 1, 2, 0, /* 0xe8 */ 1699 {{3, 3}, 1700 {5, 7}, 1701 {0, 0}, 1702 {0, 0} 1703 } 1704 }, 1705 {1, 1, 3, 0, /* 0xe9 */ 1706 {{0, 0}, 1707 {3, 3}, 1708 {5, 7}, 1709 {0, 0} 1710 } 1711 }, 1712 {0, 1, 3, 0, /* 0xea */ 1713 {{1, 1}, 1714 {3, 3}, 1715 {5, 7}, 1716 {0, 0} 1717 } 1718 }, 1719 {1, 1, 3, 0, /* 0xeb */ 1720 {{0, 1}, 1721 {3, 3}, 1722 {5, 7}, 1723 {0, 0} 1724 } 1725 }, 1726 {0, 1, 2, 0, /* 0xec */ 1727 {{2, 3}, 1728 {5, 7}, 1729 {0, 0}, 1730 {0, 0} 1731 } 1732 }, 1733 {1, 1, 3, 0, /* 0xed */ 1734 {{0, 0}, 1735 {2, 3}, 1736 {5, 7}, 1737 {0, 0} 1738 } 1739 }, 1740 {0, 1, 2, 0, /* 0xee */ 1741 {{1, 3}, 1742 {5, 7}, 1743 {0, 0}, 1744 {0, 0} 1745 } 1746 }, 1747 {1, 1, 2, 0, /* 0xef */ 1748 {{0, 3}, 1749 {5, 7}, 1750 {0, 0}, 1751 {0, 0} 1752 } 1753 }, 1754 {0, 1, 1, 0, /* 0xf0 */ 1755 {{4, 7}, 1756 {0, 0}, 1757 {0, 0}, 1758 {0, 0} 1759 } 1760 }, 1761 {1, 1, 2, 0, /* 0xf1 */ 1762 {{0, 0}, 1763 {4, 7}, 1764 {0, 0}, 1765 {0, 0} 1766 } 1767 }, 1768 {0, 1, 2, 0, /* 0xf2 */ 1769 {{1, 1}, 1770 {4, 7}, 1771 {0, 0}, 1772 {0, 0} 1773 } 1774 }, 1775 {1, 1, 2, 0, /* 0xf3 */ 1776 {{0, 1}, 1777 {4, 7}, 1778 {0, 0}, 1779 {0, 0} 1780 } 1781 }, 1782 {0, 1, 2, 0, /* 0xf4 */ 1783 {{2, 2}, 1784 {4, 7}, 1785 {0, 0}, 1786 {0, 0} 1787 } 1788 }, 1789 {1, 1, 3, 0, /* 0xf5 */ 1790 {{0, 0}, 1791 {2, 2}, 1792 {4, 7}, 1793 {0, 0} 1794 } 1795 }, 1796 {0, 1, 2, 0, /* 0xf6 */ 1797 {{1, 2}, 1798 {4, 7}, 1799 {0, 0}, 1800 {0, 0} 1801 } 1802 }, 1803 {1, 1, 2, 0, /* 0xf7 */ 1804 {{0, 2}, 1805 {4, 7}, 1806 {0, 0}, 1807 {0, 0} 1808 } 1809 }, 1810 {0, 1, 1, 0, /* 0xf8 */ 1811 {{3, 7}, 1812 {0, 0}, 1813 {0, 0}, 1814 {0, 0} 1815 } 1816 }, 1817 {1, 1, 2, 0, /* 0xf9 */ 1818 {{0, 0}, 1819 {3, 7}, 1820 {0, 0}, 1821 {0, 0} 1822 } 1823 }, 1824 {0, 1, 2, 0, /* 0xfa */ 1825 {{1, 1}, 1826 {3, 7}, 1827 {0, 0}, 1828 {0, 0} 1829 } 1830 }, 1831 {1, 1, 2, 0, /* 0xfb */ 1832 {{0, 1}, 1833 {3, 7}, 1834 {0, 0}, 1835 {0, 0} 1836 } 1837 }, 1838 {0, 1, 1, 0, /* 0xfc */ 1839 {{2, 7}, 1840 {0, 0}, 1841 {0, 0}, 1842 {0, 0} 1843 } 1844 }, 1845 {1, 1, 2, 0, /* 0xfd */ 1846 {{0, 0}, 1847 {2, 7}, 1848 {0, 0}, 1849 {0, 0} 1850 } 1851 }, 1852 {0, 1, 1, 0, /* 0xfe */ 1853 {{1, 7}, 1854 {0, 0}, 1855 {0, 0}, 1856 {0, 0} 1857 } 1858 }, 1859 {1, 1, 1, 0, /* 0xff */ 1860 {{0, 7}, 1861 {0, 0}, 1862 {0, 0}, 1863 {0, 0} 1864 } 1865 } 1866 }; 1867 1868 1869 int 1870 sctp_is_address_in_scope(struct sctp_ifa *ifa, 1871 struct sctp_scoping *scope, 1872 int do_update) 1873 { 1874 if ((scope->loopback_scope == 0) && 1875 (ifa->ifn_p) && SCTP_IFN_IS_IFT_LOOP(ifa->ifn_p)) { 1876 /* 1877 * skip loopback if not in scope * 1878 */ 1879 return (0); 1880 } 1881 switch (ifa->address.sa.sa_family) { 1882 #ifdef INET 1883 case AF_INET: 1884 if (scope->ipv4_addr_legal) { 1885 struct sockaddr_in *sin; 1886 1887 sin = &ifa->address.sin; 1888 if (sin->sin_addr.s_addr == 0) { 1889 /* not in scope , unspecified */ 1890 return (0); 1891 } 1892 if ((scope->ipv4_local_scope == 0) && 1893 (IN4_ISPRIVATE_ADDRESS(&sin->sin_addr))) { 1894 /* private address not in scope */ 1895 return (0); 1896 } 1897 } else { 1898 return (0); 1899 } 1900 break; 1901 #endif 1902 #ifdef INET6 1903 case AF_INET6: 1904 if (scope->ipv6_addr_legal) { 1905 struct sockaddr_in6 *sin6; 1906 1907 /* 1908 * Must update the flags, bummer, which means any 1909 * IFA locks must now be applied HERE <-> 1910 */ 1911 if (do_update) { 1912 sctp_gather_internal_ifa_flags(ifa); 1913 } 1914 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 1915 return (0); 1916 } 1917 /* ok to use deprecated addresses? */ 1918 sin6 = &ifa->address.sin6; 1919 if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) { 1920 /* skip unspecifed addresses */ 1921 return (0); 1922 } 1923 if ( /* (local_scope == 0) && */ 1924 (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr))) { 1925 return (0); 1926 } 1927 if ((scope->site_scope == 0) && 1928 (IN6_IS_ADDR_SITELOCAL(&sin6->sin6_addr))) { 1929 return (0); 1930 } 1931 } else { 1932 return (0); 1933 } 1934 break; 1935 #endif 1936 default: 1937 return (0); 1938 } 1939 return (1); 1940 } 1941 1942 static struct mbuf * 1943 sctp_add_addr_to_mbuf(struct mbuf *m, struct sctp_ifa *ifa, uint16_t *len) 1944 { 1945 #if defined(INET) || defined(INET6) 1946 struct sctp_paramhdr *paramh; 1947 struct mbuf *mret; 1948 uint16_t plen; 1949 #endif 1950 1951 switch (ifa->address.sa.sa_family) { 1952 #ifdef INET 1953 case AF_INET: 1954 plen = (uint16_t)sizeof(struct sctp_ipv4addr_param); 1955 break; 1956 #endif 1957 #ifdef INET6 1958 case AF_INET6: 1959 plen = (uint16_t)sizeof(struct sctp_ipv6addr_param); 1960 break; 1961 #endif 1962 default: 1963 return (m); 1964 } 1965 #if defined(INET) || defined(INET6) 1966 if (M_TRAILINGSPACE(m) >= plen) { 1967 /* easy side we just drop it on the end */ 1968 paramh = (struct sctp_paramhdr *)(SCTP_BUF_AT(m, SCTP_BUF_LEN(m))); 1969 mret = m; 1970 } else { 1971 /* Need more space */ 1972 mret = m; 1973 while (SCTP_BUF_NEXT(mret) != NULL) { 1974 mret = SCTP_BUF_NEXT(mret); 1975 } 1976 SCTP_BUF_NEXT(mret) = sctp_get_mbuf_for_msg(plen, 0, M_NOWAIT, 1, MT_DATA); 1977 if (SCTP_BUF_NEXT(mret) == NULL) { 1978 /* We are hosed, can't add more addresses */ 1979 return (m); 1980 } 1981 mret = SCTP_BUF_NEXT(mret); 1982 paramh = mtod(mret, struct sctp_paramhdr *); 1983 } 1984 /* now add the parameter */ 1985 switch (ifa->address.sa.sa_family) { 1986 #ifdef INET 1987 case AF_INET: 1988 { 1989 struct sctp_ipv4addr_param *ipv4p; 1990 struct sockaddr_in *sin; 1991 1992 sin = &ifa->address.sin; 1993 ipv4p = (struct sctp_ipv4addr_param *)paramh; 1994 paramh->param_type = htons(SCTP_IPV4_ADDRESS); 1995 paramh->param_length = htons(plen); 1996 ipv4p->addr = sin->sin_addr.s_addr; 1997 SCTP_BUF_LEN(mret) += plen; 1998 break; 1999 } 2000 #endif 2001 #ifdef INET6 2002 case AF_INET6: 2003 { 2004 struct sctp_ipv6addr_param *ipv6p; 2005 struct sockaddr_in6 *sin6; 2006 2007 sin6 = &ifa->address.sin6; 2008 ipv6p = (struct sctp_ipv6addr_param *)paramh; 2009 paramh->param_type = htons(SCTP_IPV6_ADDRESS); 2010 paramh->param_length = htons(plen); 2011 memcpy(ipv6p->addr, &sin6->sin6_addr, 2012 sizeof(ipv6p->addr)); 2013 /* clear embedded scope in the address */ 2014 in6_clearscope((struct in6_addr *)ipv6p->addr); 2015 SCTP_BUF_LEN(mret) += plen; 2016 break; 2017 } 2018 #endif 2019 default: 2020 return (m); 2021 } 2022 if (len != NULL) { 2023 *len += plen; 2024 } 2025 return (mret); 2026 #endif 2027 } 2028 2029 2030 struct mbuf * 2031 sctp_add_addresses_to_i_ia(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 2032 struct sctp_scoping *scope, 2033 struct mbuf *m_at, int cnt_inits_to, 2034 uint16_t *padding_len, uint16_t *chunk_len) 2035 { 2036 struct sctp_vrf *vrf = NULL; 2037 int cnt, limit_out = 0, total_count; 2038 uint32_t vrf_id; 2039 2040 vrf_id = inp->def_vrf_id; 2041 SCTP_IPI_ADDR_RLOCK(); 2042 vrf = sctp_find_vrf(vrf_id); 2043 if (vrf == NULL) { 2044 SCTP_IPI_ADDR_RUNLOCK(); 2045 return (m_at); 2046 } 2047 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 2048 struct sctp_ifa *sctp_ifap; 2049 struct sctp_ifn *sctp_ifnp; 2050 2051 cnt = cnt_inits_to; 2052 if (vrf->total_ifa_count > SCTP_COUNT_LIMIT) { 2053 limit_out = 1; 2054 cnt = SCTP_ADDRESS_LIMIT; 2055 goto skip_count; 2056 } 2057 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2058 if ((scope->loopback_scope == 0) && 2059 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2060 /* 2061 * Skip loopback devices if loopback_scope 2062 * not set 2063 */ 2064 continue; 2065 } 2066 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2067 #ifdef INET 2068 if ((sctp_ifap->address.sa.sa_family == AF_INET) && 2069 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2070 &sctp_ifap->address.sin.sin_addr) != 0)) { 2071 continue; 2072 } 2073 #endif 2074 #ifdef INET6 2075 if ((sctp_ifap->address.sa.sa_family == AF_INET6) && 2076 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2077 &sctp_ifap->address.sin6.sin6_addr) != 0)) { 2078 continue; 2079 } 2080 #endif 2081 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2082 continue; 2083 } 2084 if (sctp_is_address_in_scope(sctp_ifap, scope, 1) == 0) { 2085 continue; 2086 } 2087 cnt++; 2088 if (cnt > SCTP_ADDRESS_LIMIT) { 2089 break; 2090 } 2091 } 2092 if (cnt > SCTP_ADDRESS_LIMIT) { 2093 break; 2094 } 2095 } 2096 skip_count: 2097 if (cnt > 1) { 2098 total_count = 0; 2099 LIST_FOREACH(sctp_ifnp, &vrf->ifnlist, next_ifn) { 2100 cnt = 0; 2101 if ((scope->loopback_scope == 0) && 2102 SCTP_IFN_IS_IFT_LOOP(sctp_ifnp)) { 2103 /* 2104 * Skip loopback devices if 2105 * loopback_scope not set 2106 */ 2107 continue; 2108 } 2109 LIST_FOREACH(sctp_ifap, &sctp_ifnp->ifalist, next_ifa) { 2110 #ifdef INET 2111 if ((sctp_ifap->address.sa.sa_family == AF_INET) && 2112 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2113 &sctp_ifap->address.sin.sin_addr) != 0)) { 2114 continue; 2115 } 2116 #endif 2117 #ifdef INET6 2118 if ((sctp_ifap->address.sa.sa_family == AF_INET6) && 2119 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2120 &sctp_ifap->address.sin6.sin6_addr) != 0)) { 2121 continue; 2122 } 2123 #endif 2124 if (sctp_is_addr_restricted(stcb, sctp_ifap)) { 2125 continue; 2126 } 2127 if (sctp_is_address_in_scope(sctp_ifap, 2128 scope, 0) == 0) { 2129 continue; 2130 } 2131 if ((chunk_len != NULL) && 2132 (padding_len != NULL) && 2133 (*padding_len > 0)) { 2134 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2135 SCTP_BUF_LEN(m_at) += *padding_len; 2136 *chunk_len += *padding_len; 2137 *padding_len = 0; 2138 } 2139 m_at = sctp_add_addr_to_mbuf(m_at, sctp_ifap, chunk_len); 2140 if (limit_out) { 2141 cnt++; 2142 total_count++; 2143 if (cnt >= 2) { 2144 /* 2145 * two from each 2146 * address 2147 */ 2148 break; 2149 } 2150 if (total_count > SCTP_ADDRESS_LIMIT) { 2151 /* No more addresses */ 2152 break; 2153 } 2154 } 2155 } 2156 } 2157 } 2158 } else { 2159 struct sctp_laddr *laddr; 2160 2161 cnt = cnt_inits_to; 2162 /* First, how many ? */ 2163 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2164 if (laddr->ifa == NULL) { 2165 continue; 2166 } 2167 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) 2168 /* 2169 * Address being deleted by the system, dont 2170 * list. 2171 */ 2172 continue; 2173 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2174 /* 2175 * Address being deleted on this ep don't 2176 * list. 2177 */ 2178 continue; 2179 } 2180 if (sctp_is_address_in_scope(laddr->ifa, 2181 scope, 1) == 0) { 2182 continue; 2183 } 2184 cnt++; 2185 } 2186 /* 2187 * To get through a NAT we only list addresses if we have 2188 * more than one. That way if you just bind a single address 2189 * we let the source of the init dictate our address. 2190 */ 2191 if (cnt > 1) { 2192 cnt = cnt_inits_to; 2193 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2194 if (laddr->ifa == NULL) { 2195 continue; 2196 } 2197 if (laddr->ifa->localifa_flags & SCTP_BEING_DELETED) { 2198 continue; 2199 } 2200 if (sctp_is_address_in_scope(laddr->ifa, 2201 scope, 0) == 0) { 2202 continue; 2203 } 2204 if ((chunk_len != NULL) && 2205 (padding_len != NULL) && 2206 (*padding_len > 0)) { 2207 memset(mtod(m_at, caddr_t)+*chunk_len, 0, *padding_len); 2208 SCTP_BUF_LEN(m_at) += *padding_len; 2209 *chunk_len += *padding_len; 2210 *padding_len = 0; 2211 } 2212 m_at = sctp_add_addr_to_mbuf(m_at, laddr->ifa, chunk_len); 2213 cnt++; 2214 if (cnt >= SCTP_ADDRESS_LIMIT) { 2215 break; 2216 } 2217 } 2218 } 2219 } 2220 SCTP_IPI_ADDR_RUNLOCK(); 2221 return (m_at); 2222 } 2223 2224 static struct sctp_ifa * 2225 sctp_is_ifa_addr_preferred(struct sctp_ifa *ifa, 2226 uint8_t dest_is_loop, 2227 uint8_t dest_is_priv, 2228 sa_family_t fam) 2229 { 2230 uint8_t dest_is_global = 0; 2231 2232 /* dest_is_priv is true if destination is a private address */ 2233 /* dest_is_loop is true if destination is a loopback addresses */ 2234 2235 /** 2236 * Here we determine if its a preferred address. A preferred address 2237 * means it is the same scope or higher scope then the destination. 2238 * L = loopback, P = private, G = global 2239 * ----------------------------------------- 2240 * src | dest | result 2241 * ---------------------------------------- 2242 * L | L | yes 2243 * ----------------------------------------- 2244 * P | L | yes-v4 no-v6 2245 * ----------------------------------------- 2246 * G | L | yes-v4 no-v6 2247 * ----------------------------------------- 2248 * L | P | no 2249 * ----------------------------------------- 2250 * P | P | yes 2251 * ----------------------------------------- 2252 * G | P | no 2253 * ----------------------------------------- 2254 * L | G | no 2255 * ----------------------------------------- 2256 * P | G | no 2257 * ----------------------------------------- 2258 * G | G | yes 2259 * ----------------------------------------- 2260 */ 2261 2262 if (ifa->address.sa.sa_family != fam) { 2263 /* forget mis-matched family */ 2264 return (NULL); 2265 } 2266 if ((dest_is_priv == 0) && (dest_is_loop == 0)) { 2267 dest_is_global = 1; 2268 } 2269 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Is destination preferred:"); 2270 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ifa->address.sa); 2271 /* Ok the address may be ok */ 2272 #ifdef INET6 2273 if (fam == AF_INET6) { 2274 /* ok to use deprecated addresses? no lets not! */ 2275 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2276 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:1\n"); 2277 return (NULL); 2278 } 2279 if (ifa->src_is_priv && !ifa->src_is_loop) { 2280 if (dest_is_loop) { 2281 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:2\n"); 2282 return (NULL); 2283 } 2284 } 2285 if (ifa->src_is_glob) { 2286 if (dest_is_loop) { 2287 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:3\n"); 2288 return (NULL); 2289 } 2290 } 2291 } 2292 #endif 2293 /* 2294 * Now that we know what is what, implement or table this could in 2295 * theory be done slicker (it used to be), but this is 2296 * straightforward and easier to validate :-) 2297 */ 2298 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src_loop:%d src_priv:%d src_glob:%d\n", 2299 ifa->src_is_loop, ifa->src_is_priv, ifa->src_is_glob); 2300 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dest_loop:%d dest_priv:%d dest_glob:%d\n", 2301 dest_is_loop, dest_is_priv, dest_is_global); 2302 2303 if ((ifa->src_is_loop) && (dest_is_priv)) { 2304 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:4\n"); 2305 return (NULL); 2306 } 2307 if ((ifa->src_is_glob) && (dest_is_priv)) { 2308 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:5\n"); 2309 return (NULL); 2310 } 2311 if ((ifa->src_is_loop) && (dest_is_global)) { 2312 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:6\n"); 2313 return (NULL); 2314 } 2315 if ((ifa->src_is_priv) && (dest_is_global)) { 2316 SCTPDBG(SCTP_DEBUG_OUTPUT3, "NO:7\n"); 2317 return (NULL); 2318 } 2319 SCTPDBG(SCTP_DEBUG_OUTPUT3, "YES\n"); 2320 /* its a preferred address */ 2321 return (ifa); 2322 } 2323 2324 static struct sctp_ifa * 2325 sctp_is_ifa_addr_acceptable(struct sctp_ifa *ifa, 2326 uint8_t dest_is_loop, 2327 uint8_t dest_is_priv, 2328 sa_family_t fam) 2329 { 2330 uint8_t dest_is_global = 0; 2331 2332 /** 2333 * Here we determine if its a acceptable address. A acceptable 2334 * address means it is the same scope or higher scope but we can 2335 * allow for NAT which means its ok to have a global dest and a 2336 * private src. 2337 * 2338 * L = loopback, P = private, G = global 2339 * ----------------------------------------- 2340 * src | dest | result 2341 * ----------------------------------------- 2342 * L | L | yes 2343 * ----------------------------------------- 2344 * P | L | yes-v4 no-v6 2345 * ----------------------------------------- 2346 * G | L | yes 2347 * ----------------------------------------- 2348 * L | P | no 2349 * ----------------------------------------- 2350 * P | P | yes 2351 * ----------------------------------------- 2352 * G | P | yes - May not work 2353 * ----------------------------------------- 2354 * L | G | no 2355 * ----------------------------------------- 2356 * P | G | yes - May not work 2357 * ----------------------------------------- 2358 * G | G | yes 2359 * ----------------------------------------- 2360 */ 2361 2362 if (ifa->address.sa.sa_family != fam) { 2363 /* forget non matching family */ 2364 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa_fam:%d fam:%d\n", 2365 ifa->address.sa.sa_family, fam); 2366 return (NULL); 2367 } 2368 /* Ok the address may be ok */ 2369 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, &ifa->address.sa); 2370 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst_is_loop:%d dest_is_priv:%d\n", 2371 dest_is_loop, dest_is_priv); 2372 if ((dest_is_loop == 0) && (dest_is_priv == 0)) { 2373 dest_is_global = 1; 2374 } 2375 #ifdef INET6 2376 if (fam == AF_INET6) { 2377 /* ok to use deprecated addresses? */ 2378 if (ifa->localifa_flags & SCTP_ADDR_IFA_UNUSEABLE) { 2379 return (NULL); 2380 } 2381 if (ifa->src_is_priv) { 2382 /* Special case, linklocal to loop */ 2383 if (dest_is_loop) 2384 return (NULL); 2385 } 2386 } 2387 #endif 2388 /* 2389 * Now that we know what is what, implement our table. This could in 2390 * theory be done slicker (it used to be), but this is 2391 * straightforward and easier to validate :-) 2392 */ 2393 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_priv:%d\n", 2394 ifa->src_is_loop, 2395 dest_is_priv); 2396 if ((ifa->src_is_loop == 1) && (dest_is_priv)) { 2397 return (NULL); 2398 } 2399 SCTPDBG(SCTP_DEBUG_OUTPUT3, "ifa->src_is_loop:%d dest_is_glob:%d\n", 2400 ifa->src_is_loop, 2401 dest_is_global); 2402 if ((ifa->src_is_loop == 1) && (dest_is_global)) { 2403 return (NULL); 2404 } 2405 SCTPDBG(SCTP_DEBUG_OUTPUT3, "address is acceptable\n"); 2406 /* its an acceptable address */ 2407 return (ifa); 2408 } 2409 2410 int 2411 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sctp_ifa *ifa) 2412 { 2413 struct sctp_laddr *laddr; 2414 2415 if (stcb == NULL) { 2416 /* There are no restrictions, no TCB :-) */ 2417 return (0); 2418 } 2419 LIST_FOREACH(laddr, &stcb->asoc.sctp_restricted_addrs, sctp_nxt_addr) { 2420 if (laddr->ifa == NULL) { 2421 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2422 __func__); 2423 continue; 2424 } 2425 if (laddr->ifa == ifa) { 2426 /* Yes it is on the list */ 2427 return (1); 2428 } 2429 } 2430 return (0); 2431 } 2432 2433 2434 int 2435 sctp_is_addr_in_ep(struct sctp_inpcb *inp, struct sctp_ifa *ifa) 2436 { 2437 struct sctp_laddr *laddr; 2438 2439 if (ifa == NULL) 2440 return (0); 2441 LIST_FOREACH(laddr, &inp->sctp_addr_list, sctp_nxt_addr) { 2442 if (laddr->ifa == NULL) { 2443 SCTPDBG(SCTP_DEBUG_OUTPUT1, "%s: NULL ifa\n", 2444 __func__); 2445 continue; 2446 } 2447 if ((laddr->ifa == ifa) && laddr->action == 0) 2448 /* same pointer */ 2449 return (1); 2450 } 2451 return (0); 2452 } 2453 2454 2455 2456 static struct sctp_ifa * 2457 sctp_choose_boundspecific_inp(struct sctp_inpcb *inp, 2458 sctp_route_t *ro, 2459 uint32_t vrf_id, 2460 int non_asoc_addr_ok, 2461 uint8_t dest_is_priv, 2462 uint8_t dest_is_loop, 2463 sa_family_t fam) 2464 { 2465 struct sctp_laddr *laddr, *starting_point; 2466 void *ifn; 2467 int resettotop = 0; 2468 struct sctp_ifn *sctp_ifn; 2469 struct sctp_ifa *sctp_ifa, *sifa; 2470 struct sctp_vrf *vrf; 2471 uint32_t ifn_index; 2472 2473 vrf = sctp_find_vrf(vrf_id); 2474 if (vrf == NULL) 2475 return (NULL); 2476 2477 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2478 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2479 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2480 /* 2481 * first question, is the ifn we will emit on in our list, if so, we 2482 * want such an address. Note that we first looked for a preferred 2483 * address. 2484 */ 2485 if (sctp_ifn) { 2486 /* is a preferred one on the interface we route out? */ 2487 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2488 #ifdef INET 2489 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2490 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2491 &sctp_ifa->address.sin.sin_addr) != 0)) { 2492 continue; 2493 } 2494 #endif 2495 #ifdef INET6 2496 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2497 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2498 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2499 continue; 2500 } 2501 #endif 2502 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2503 (non_asoc_addr_ok == 0)) 2504 continue; 2505 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, 2506 dest_is_loop, 2507 dest_is_priv, fam); 2508 if (sifa == NULL) 2509 continue; 2510 if (sctp_is_addr_in_ep(inp, sifa)) { 2511 atomic_add_int(&sifa->refcount, 1); 2512 return (sifa); 2513 } 2514 } 2515 } 2516 /* 2517 * ok, now we now need to find one on the list of the addresses. We 2518 * can't get one on the emitting interface so let's find first a 2519 * preferred one. If not that an acceptable one otherwise... we 2520 * return NULL. 2521 */ 2522 starting_point = inp->next_addr_touse; 2523 once_again: 2524 if (inp->next_addr_touse == NULL) { 2525 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2526 resettotop = 1; 2527 } 2528 for (laddr = inp->next_addr_touse; laddr; 2529 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2530 if (laddr->ifa == NULL) { 2531 /* address has been removed */ 2532 continue; 2533 } 2534 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2535 /* address is being deleted */ 2536 continue; 2537 } 2538 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, 2539 dest_is_priv, fam); 2540 if (sifa == NULL) 2541 continue; 2542 atomic_add_int(&sifa->refcount, 1); 2543 return (sifa); 2544 } 2545 if (resettotop == 0) { 2546 inp->next_addr_touse = NULL; 2547 goto once_again; 2548 } 2549 2550 inp->next_addr_touse = starting_point; 2551 resettotop = 0; 2552 once_again_too: 2553 if (inp->next_addr_touse == NULL) { 2554 inp->next_addr_touse = LIST_FIRST(&inp->sctp_addr_list); 2555 resettotop = 1; 2556 } 2557 2558 /* ok, what about an acceptable address in the inp */ 2559 for (laddr = inp->next_addr_touse; laddr; 2560 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2561 if (laddr->ifa == NULL) { 2562 /* address has been removed */ 2563 continue; 2564 } 2565 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2566 /* address is being deleted */ 2567 continue; 2568 } 2569 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2570 dest_is_priv, fam); 2571 if (sifa == NULL) 2572 continue; 2573 atomic_add_int(&sifa->refcount, 1); 2574 return (sifa); 2575 } 2576 if (resettotop == 0) { 2577 inp->next_addr_touse = NULL; 2578 goto once_again_too; 2579 } 2580 2581 /* 2582 * no address bound can be a source for the destination we are in 2583 * trouble 2584 */ 2585 return (NULL); 2586 } 2587 2588 2589 2590 static struct sctp_ifa * 2591 sctp_choose_boundspecific_stcb(struct sctp_inpcb *inp, 2592 struct sctp_tcb *stcb, 2593 sctp_route_t *ro, 2594 uint32_t vrf_id, 2595 uint8_t dest_is_priv, 2596 uint8_t dest_is_loop, 2597 int non_asoc_addr_ok, 2598 sa_family_t fam) 2599 { 2600 struct sctp_laddr *laddr, *starting_point; 2601 void *ifn; 2602 struct sctp_ifn *sctp_ifn; 2603 struct sctp_ifa *sctp_ifa, *sifa; 2604 uint8_t start_at_beginning = 0; 2605 struct sctp_vrf *vrf; 2606 uint32_t ifn_index; 2607 2608 /* 2609 * first question, is the ifn we will emit on in our list, if so, we 2610 * want that one. 2611 */ 2612 vrf = sctp_find_vrf(vrf_id); 2613 if (vrf == NULL) 2614 return (NULL); 2615 2616 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2617 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2618 sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2619 2620 /* 2621 * first question, is the ifn we will emit on in our list? If so, 2622 * we want that one. First we look for a preferred. Second, we go 2623 * for an acceptable. 2624 */ 2625 if (sctp_ifn) { 2626 /* first try for a preferred address on the ep */ 2627 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2628 #ifdef INET 2629 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2630 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2631 &sctp_ifa->address.sin.sin_addr) != 0)) { 2632 continue; 2633 } 2634 #endif 2635 #ifdef INET6 2636 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2637 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2638 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2639 continue; 2640 } 2641 #endif 2642 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2643 continue; 2644 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2645 sifa = sctp_is_ifa_addr_preferred(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2646 if (sifa == NULL) 2647 continue; 2648 if (((non_asoc_addr_ok == 0) && 2649 (sctp_is_addr_restricted(stcb, sifa))) || 2650 (non_asoc_addr_ok && 2651 (sctp_is_addr_restricted(stcb, sifa)) && 2652 (!sctp_is_addr_pending(stcb, sifa)))) { 2653 /* on the no-no list */ 2654 continue; 2655 } 2656 atomic_add_int(&sifa->refcount, 1); 2657 return (sifa); 2658 } 2659 } 2660 /* next try for an acceptable address on the ep */ 2661 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 2662 #ifdef INET 2663 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 2664 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2665 &sctp_ifa->address.sin.sin_addr) != 0)) { 2666 continue; 2667 } 2668 #endif 2669 #ifdef INET6 2670 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 2671 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2672 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 2673 continue; 2674 } 2675 #endif 2676 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && (non_asoc_addr_ok == 0)) 2677 continue; 2678 if (sctp_is_addr_in_ep(inp, sctp_ifa)) { 2679 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, dest_is_priv, fam); 2680 if (sifa == NULL) 2681 continue; 2682 if (((non_asoc_addr_ok == 0) && 2683 (sctp_is_addr_restricted(stcb, sifa))) || 2684 (non_asoc_addr_ok && 2685 (sctp_is_addr_restricted(stcb, sifa)) && 2686 (!sctp_is_addr_pending(stcb, sifa)))) { 2687 /* on the no-no list */ 2688 continue; 2689 } 2690 atomic_add_int(&sifa->refcount, 1); 2691 return (sifa); 2692 } 2693 } 2694 2695 } 2696 /* 2697 * if we can't find one like that then we must look at all addresses 2698 * bound to pick one at first preferable then secondly acceptable. 2699 */ 2700 starting_point = stcb->asoc.last_used_address; 2701 sctp_from_the_top: 2702 if (stcb->asoc.last_used_address == NULL) { 2703 start_at_beginning = 1; 2704 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2705 } 2706 /* search beginning with the last used address */ 2707 for (laddr = stcb->asoc.last_used_address; laddr; 2708 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2709 if (laddr->ifa == NULL) { 2710 /* address has been removed */ 2711 continue; 2712 } 2713 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2714 /* address is being deleted */ 2715 continue; 2716 } 2717 sifa = sctp_is_ifa_addr_preferred(laddr->ifa, dest_is_loop, dest_is_priv, fam); 2718 if (sifa == NULL) 2719 continue; 2720 if (((non_asoc_addr_ok == 0) && 2721 (sctp_is_addr_restricted(stcb, sifa))) || 2722 (non_asoc_addr_ok && 2723 (sctp_is_addr_restricted(stcb, sifa)) && 2724 (!sctp_is_addr_pending(stcb, sifa)))) { 2725 /* on the no-no list */ 2726 continue; 2727 } 2728 stcb->asoc.last_used_address = laddr; 2729 atomic_add_int(&sifa->refcount, 1); 2730 return (sifa); 2731 } 2732 if (start_at_beginning == 0) { 2733 stcb->asoc.last_used_address = NULL; 2734 goto sctp_from_the_top; 2735 } 2736 /* now try for any higher scope than the destination */ 2737 stcb->asoc.last_used_address = starting_point; 2738 start_at_beginning = 0; 2739 sctp_from_the_top2: 2740 if (stcb->asoc.last_used_address == NULL) { 2741 start_at_beginning = 1; 2742 stcb->asoc.last_used_address = LIST_FIRST(&inp->sctp_addr_list); 2743 } 2744 /* search beginning with the last used address */ 2745 for (laddr = stcb->asoc.last_used_address; laddr; 2746 laddr = LIST_NEXT(laddr, sctp_nxt_addr)) { 2747 if (laddr->ifa == NULL) { 2748 /* address has been removed */ 2749 continue; 2750 } 2751 if (laddr->action == SCTP_DEL_IP_ADDRESS) { 2752 /* address is being deleted */ 2753 continue; 2754 } 2755 sifa = sctp_is_ifa_addr_acceptable(laddr->ifa, dest_is_loop, 2756 dest_is_priv, fam); 2757 if (sifa == NULL) 2758 continue; 2759 if (((non_asoc_addr_ok == 0) && 2760 (sctp_is_addr_restricted(stcb, sifa))) || 2761 (non_asoc_addr_ok && 2762 (sctp_is_addr_restricted(stcb, sifa)) && 2763 (!sctp_is_addr_pending(stcb, sifa)))) { 2764 /* on the no-no list */ 2765 continue; 2766 } 2767 stcb->asoc.last_used_address = laddr; 2768 atomic_add_int(&sifa->refcount, 1); 2769 return (sifa); 2770 } 2771 if (start_at_beginning == 0) { 2772 stcb->asoc.last_used_address = NULL; 2773 goto sctp_from_the_top2; 2774 } 2775 return (NULL); 2776 } 2777 2778 static struct sctp_ifa * 2779 sctp_select_nth_preferred_addr_from_ifn_boundall(struct sctp_ifn *ifn, 2780 struct sctp_inpcb *inp, 2781 struct sctp_tcb *stcb, 2782 int non_asoc_addr_ok, 2783 uint8_t dest_is_loop, 2784 uint8_t dest_is_priv, 2785 int addr_wanted, 2786 sa_family_t fam, 2787 sctp_route_t *ro 2788 ) 2789 { 2790 struct sctp_ifa *ifa, *sifa; 2791 int num_eligible_addr = 0; 2792 #ifdef INET6 2793 struct sockaddr_in6 sin6, lsa6; 2794 2795 if (fam == AF_INET6) { 2796 memcpy(&sin6, &ro->ro_dst, sizeof(struct sockaddr_in6)); 2797 (void)sa6_recoverscope(&sin6); 2798 } 2799 #endif /* INET6 */ 2800 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2801 #ifdef INET 2802 if ((ifa->address.sa.sa_family == AF_INET) && 2803 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2804 &ifa->address.sin.sin_addr) != 0)) { 2805 continue; 2806 } 2807 #endif 2808 #ifdef INET6 2809 if ((ifa->address.sa.sa_family == AF_INET6) && 2810 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2811 &ifa->address.sin6.sin6_addr) != 0)) { 2812 continue; 2813 } 2814 #endif 2815 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2816 (non_asoc_addr_ok == 0)) 2817 continue; 2818 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2819 dest_is_priv, fam); 2820 if (sifa == NULL) 2821 continue; 2822 #ifdef INET6 2823 if (fam == AF_INET6 && 2824 dest_is_loop && 2825 sifa->src_is_loop && sifa->src_is_priv) { 2826 /* 2827 * don't allow fe80::1 to be a src on loop ::1, we 2828 * don't list it to the peer so we will get an 2829 * abort. 2830 */ 2831 continue; 2832 } 2833 if (fam == AF_INET6 && 2834 IN6_IS_ADDR_LINKLOCAL(&sifa->address.sin6.sin6_addr) && 2835 IN6_IS_ADDR_LINKLOCAL(&sin6.sin6_addr)) { 2836 /* 2837 * link-local <-> link-local must belong to the same 2838 * scope. 2839 */ 2840 memcpy(&lsa6, &sifa->address.sin6, sizeof(struct sockaddr_in6)); 2841 (void)sa6_recoverscope(&lsa6); 2842 if (sin6.sin6_scope_id != lsa6.sin6_scope_id) { 2843 continue; 2844 } 2845 } 2846 #endif /* INET6 */ 2847 2848 /* 2849 * Check if the IPv6 address matches to next-hop. In the 2850 * mobile case, old IPv6 address may be not deleted from the 2851 * interface. Then, the interface has previous and new 2852 * addresses. We should use one corresponding to the 2853 * next-hop. (by micchie) 2854 */ 2855 #ifdef INET6 2856 if (stcb && fam == AF_INET6 && 2857 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2858 if (sctp_v6src_match_nexthop(&sifa->address.sin6, ro) 2859 == 0) { 2860 continue; 2861 } 2862 } 2863 #endif 2864 #ifdef INET 2865 /* Avoid topologically incorrect IPv4 address */ 2866 if (stcb && fam == AF_INET && 2867 sctp_is_mobility_feature_on(stcb->sctp_ep, SCTP_MOBILITY_BASE)) { 2868 if (sctp_v4src_match_nexthop(sifa, ro) == 0) { 2869 continue; 2870 } 2871 } 2872 #endif 2873 if (stcb) { 2874 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2875 continue; 2876 } 2877 if (((non_asoc_addr_ok == 0) && 2878 (sctp_is_addr_restricted(stcb, sifa))) || 2879 (non_asoc_addr_ok && 2880 (sctp_is_addr_restricted(stcb, sifa)) && 2881 (!sctp_is_addr_pending(stcb, sifa)))) { 2882 /* 2883 * It is restricted for some reason.. 2884 * probably not yet added. 2885 */ 2886 continue; 2887 } 2888 } 2889 if (num_eligible_addr >= addr_wanted) { 2890 return (sifa); 2891 } 2892 num_eligible_addr++; 2893 } 2894 return (NULL); 2895 } 2896 2897 2898 static int 2899 sctp_count_num_preferred_boundall(struct sctp_ifn *ifn, 2900 struct sctp_inpcb *inp, 2901 struct sctp_tcb *stcb, 2902 int non_asoc_addr_ok, 2903 uint8_t dest_is_loop, 2904 uint8_t dest_is_priv, 2905 sa_family_t fam) 2906 { 2907 struct sctp_ifa *ifa, *sifa; 2908 int num_eligible_addr = 0; 2909 2910 LIST_FOREACH(ifa, &ifn->ifalist, next_ifa) { 2911 #ifdef INET 2912 if ((ifa->address.sa.sa_family == AF_INET) && 2913 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 2914 &ifa->address.sin.sin_addr) != 0)) { 2915 continue; 2916 } 2917 #endif 2918 #ifdef INET6 2919 if ((ifa->address.sa.sa_family == AF_INET6) && 2920 (stcb != NULL) && 2921 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 2922 &ifa->address.sin6.sin6_addr) != 0)) { 2923 continue; 2924 } 2925 #endif 2926 if ((ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 2927 (non_asoc_addr_ok == 0)) { 2928 continue; 2929 } 2930 sifa = sctp_is_ifa_addr_preferred(ifa, dest_is_loop, 2931 dest_is_priv, fam); 2932 if (sifa == NULL) { 2933 continue; 2934 } 2935 if (stcb) { 2936 if (sctp_is_address_in_scope(ifa, &stcb->asoc.scope, 0) == 0) { 2937 continue; 2938 } 2939 if (((non_asoc_addr_ok == 0) && 2940 (sctp_is_addr_restricted(stcb, sifa))) || 2941 (non_asoc_addr_ok && 2942 (sctp_is_addr_restricted(stcb, sifa)) && 2943 (!sctp_is_addr_pending(stcb, sifa)))) { 2944 /* 2945 * It is restricted for some reason.. 2946 * probably not yet added. 2947 */ 2948 continue; 2949 } 2950 } 2951 num_eligible_addr++; 2952 } 2953 return (num_eligible_addr); 2954 } 2955 2956 static struct sctp_ifa * 2957 sctp_choose_boundall(struct sctp_inpcb *inp, 2958 struct sctp_tcb *stcb, 2959 struct sctp_nets *net, 2960 sctp_route_t *ro, 2961 uint32_t vrf_id, 2962 uint8_t dest_is_priv, 2963 uint8_t dest_is_loop, 2964 int non_asoc_addr_ok, 2965 sa_family_t fam) 2966 { 2967 int cur_addr_num = 0, num_preferred = 0; 2968 void *ifn; 2969 struct sctp_ifn *sctp_ifn, *looked_at = NULL, *emit_ifn; 2970 struct sctp_ifa *sctp_ifa, *sifa; 2971 uint32_t ifn_index; 2972 struct sctp_vrf *vrf; 2973 #ifdef INET 2974 int retried = 0; 2975 #endif 2976 2977 /*- 2978 * For boundall we can use any address in the association. 2979 * If non_asoc_addr_ok is set we can use any address (at least in 2980 * theory). So we look for preferred addresses first. If we find one, 2981 * we use it. Otherwise we next try to get an address on the 2982 * interface, which we should be able to do (unless non_asoc_addr_ok 2983 * is false and we are routed out that way). In these cases where we 2984 * can't use the address of the interface we go through all the 2985 * ifn's looking for an address we can use and fill that in. Punting 2986 * means we send back address 0, which will probably cause problems 2987 * actually since then IP will fill in the address of the route ifn, 2988 * which means we probably already rejected it.. i.e. here comes an 2989 * abort :-<. 2990 */ 2991 vrf = sctp_find_vrf(vrf_id); 2992 if (vrf == NULL) 2993 return (NULL); 2994 2995 ifn = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 2996 ifn_index = SCTP_GET_IF_INDEX_FROM_ROUTE(ro); 2997 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn from route:%p ifn_index:%d\n", ifn, ifn_index); 2998 emit_ifn = looked_at = sctp_ifn = sctp_find_ifn(ifn, ifn_index); 2999 if (sctp_ifn == NULL) { 3000 /* ?? We don't have this guy ?? */ 3001 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No ifn emit interface?\n"); 3002 goto bound_all_plan_b; 3003 } 3004 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifn_index:%d name:%s is emit interface\n", 3005 ifn_index, sctp_ifn->ifn_name); 3006 3007 if (net) { 3008 cur_addr_num = net->indx_of_eligible_next_to_use; 3009 } 3010 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, 3011 inp, stcb, 3012 non_asoc_addr_ok, 3013 dest_is_loop, 3014 dest_is_priv, fam); 3015 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Found %d preferred source addresses for intf:%s\n", 3016 num_preferred, sctp_ifn->ifn_name); 3017 if (num_preferred == 0) { 3018 /* 3019 * no eligible addresses, we must use some other interface 3020 * address if we can find one. 3021 */ 3022 goto bound_all_plan_b; 3023 } 3024 /* 3025 * Ok we have num_eligible_addr set with how many we can use, this 3026 * may vary from call to call due to addresses being deprecated 3027 * etc.. 3028 */ 3029 if (cur_addr_num >= num_preferred) { 3030 cur_addr_num = 0; 3031 } 3032 /* 3033 * select the nth address from the list (where cur_addr_num is the 3034 * nth) and 0 is the first one, 1 is the second one etc... 3035 */ 3036 SCTPDBG(SCTP_DEBUG_OUTPUT2, "cur_addr_num:%d\n", cur_addr_num); 3037 3038 sctp_ifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop, 3039 dest_is_priv, cur_addr_num, fam, ro); 3040 3041 /* if sctp_ifa is NULL something changed??, fall to plan b. */ 3042 if (sctp_ifa) { 3043 atomic_add_int(&sctp_ifa->refcount, 1); 3044 if (net) { 3045 /* save off where the next one we will want */ 3046 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3047 } 3048 return (sctp_ifa); 3049 } 3050 /* 3051 * plan_b: Look at all interfaces and find a preferred address. If 3052 * no preferred fall through to plan_c. 3053 */ 3054 bound_all_plan_b: 3055 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan B\n"); 3056 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3057 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Examine interface %s\n", 3058 sctp_ifn->ifn_name); 3059 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3060 /* wrong base scope */ 3061 SCTPDBG(SCTP_DEBUG_OUTPUT2, "skip\n"); 3062 continue; 3063 } 3064 if ((sctp_ifn == looked_at) && looked_at) { 3065 /* already looked at this guy */ 3066 SCTPDBG(SCTP_DEBUG_OUTPUT2, "already seen\n"); 3067 continue; 3068 } 3069 num_preferred = sctp_count_num_preferred_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, 3070 dest_is_loop, dest_is_priv, fam); 3071 SCTPDBG(SCTP_DEBUG_OUTPUT2, 3072 "Found ifn:%p %d preferred source addresses\n", 3073 ifn, num_preferred); 3074 if (num_preferred == 0) { 3075 /* None on this interface. */ 3076 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No preferred -- skipping to next\n"); 3077 continue; 3078 } 3079 SCTPDBG(SCTP_DEBUG_OUTPUT2, 3080 "num preferred:%d on interface:%p cur_addr_num:%d\n", 3081 num_preferred, (void *)sctp_ifn, cur_addr_num); 3082 3083 /* 3084 * Ok we have num_eligible_addr set with how many we can 3085 * use, this may vary from call to call due to addresses 3086 * being deprecated etc.. 3087 */ 3088 if (cur_addr_num >= num_preferred) { 3089 cur_addr_num = 0; 3090 } 3091 sifa = sctp_select_nth_preferred_addr_from_ifn_boundall(sctp_ifn, inp, stcb, non_asoc_addr_ok, dest_is_loop, 3092 dest_is_priv, cur_addr_num, fam, ro); 3093 if (sifa == NULL) 3094 continue; 3095 if (net) { 3096 net->indx_of_eligible_next_to_use = cur_addr_num + 1; 3097 SCTPDBG(SCTP_DEBUG_OUTPUT2, "we selected %d\n", 3098 cur_addr_num); 3099 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Source:"); 3100 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 3101 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Dest:"); 3102 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa); 3103 } 3104 atomic_add_int(&sifa->refcount, 1); 3105 return (sifa); 3106 } 3107 #ifdef INET 3108 again_with_private_addresses_allowed: 3109 #endif 3110 /* plan_c: do we have an acceptable address on the emit interface */ 3111 sifa = NULL; 3112 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan C: find acceptable on interface\n"); 3113 if (emit_ifn == NULL) { 3114 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jump to Plan D - no emit_ifn\n"); 3115 goto plan_d; 3116 } 3117 LIST_FOREACH(sctp_ifa, &emit_ifn->ifalist, next_ifa) { 3118 SCTPDBG(SCTP_DEBUG_OUTPUT2, "ifa:%p\n", (void *)sctp_ifa); 3119 #ifdef INET 3120 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3121 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3122 &sctp_ifa->address.sin.sin_addr) != 0)) { 3123 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n"); 3124 continue; 3125 } 3126 #endif 3127 #ifdef INET6 3128 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3129 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3130 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3131 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Jailed\n"); 3132 continue; 3133 } 3134 #endif 3135 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3136 (non_asoc_addr_ok == 0)) { 3137 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Defer\n"); 3138 continue; 3139 } 3140 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, dest_is_loop, 3141 dest_is_priv, fam); 3142 if (sifa == NULL) { 3143 SCTPDBG(SCTP_DEBUG_OUTPUT2, "IFA not acceptable\n"); 3144 continue; 3145 } 3146 if (stcb) { 3147 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3148 SCTPDBG(SCTP_DEBUG_OUTPUT2, "NOT in scope\n"); 3149 sifa = NULL; 3150 continue; 3151 } 3152 if (((non_asoc_addr_ok == 0) && 3153 (sctp_is_addr_restricted(stcb, sifa))) || 3154 (non_asoc_addr_ok && 3155 (sctp_is_addr_restricted(stcb, sifa)) && 3156 (!sctp_is_addr_pending(stcb, sifa)))) { 3157 /* 3158 * It is restricted for some reason.. 3159 * probably not yet added. 3160 */ 3161 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Its restricted\n"); 3162 sifa = NULL; 3163 continue; 3164 } 3165 } 3166 atomic_add_int(&sifa->refcount, 1); 3167 goto out; 3168 } 3169 plan_d: 3170 /* 3171 * plan_d: We are in trouble. No preferred address on the emit 3172 * interface. And not even a preferred address on all interfaces. Go 3173 * out and see if we can find an acceptable address somewhere 3174 * amongst all interfaces. 3175 */ 3176 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Trying Plan D looked_at is %p\n", (void *)looked_at); 3177 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3178 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3179 /* wrong base scope */ 3180 continue; 3181 } 3182 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3183 #ifdef INET 3184 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3185 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3186 &sctp_ifa->address.sin.sin_addr) != 0)) { 3187 continue; 3188 } 3189 #endif 3190 #ifdef INET6 3191 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3192 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3193 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3194 continue; 3195 } 3196 #endif 3197 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3198 (non_asoc_addr_ok == 0)) 3199 continue; 3200 sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3201 dest_is_loop, 3202 dest_is_priv, fam); 3203 if (sifa == NULL) 3204 continue; 3205 if (stcb) { 3206 if (sctp_is_address_in_scope(sifa, &stcb->asoc.scope, 0) == 0) { 3207 sifa = NULL; 3208 continue; 3209 } 3210 if (((non_asoc_addr_ok == 0) && 3211 (sctp_is_addr_restricted(stcb, sifa))) || 3212 (non_asoc_addr_ok && 3213 (sctp_is_addr_restricted(stcb, sifa)) && 3214 (!sctp_is_addr_pending(stcb, sifa)))) { 3215 /* 3216 * It is restricted for some 3217 * reason.. probably not yet added. 3218 */ 3219 sifa = NULL; 3220 continue; 3221 } 3222 } 3223 goto out; 3224 } 3225 } 3226 #ifdef INET 3227 if (stcb) { 3228 if ((retried == 0) && (stcb->asoc.scope.ipv4_local_scope == 0)) { 3229 stcb->asoc.scope.ipv4_local_scope = 1; 3230 retried = 1; 3231 goto again_with_private_addresses_allowed; 3232 } else if (retried == 1) { 3233 stcb->asoc.scope.ipv4_local_scope = 0; 3234 } 3235 } 3236 #endif 3237 out: 3238 #ifdef INET 3239 if (sifa) { 3240 if (retried == 1) { 3241 LIST_FOREACH(sctp_ifn, &vrf->ifnlist, next_ifn) { 3242 if (dest_is_loop == 0 && SCTP_IFN_IS_IFT_LOOP(sctp_ifn)) { 3243 /* wrong base scope */ 3244 continue; 3245 } 3246 LIST_FOREACH(sctp_ifa, &sctp_ifn->ifalist, next_ifa) { 3247 struct sctp_ifa *tmp_sifa; 3248 3249 #ifdef INET 3250 if ((sctp_ifa->address.sa.sa_family == AF_INET) && 3251 (prison_check_ip4(inp->ip_inp.inp.inp_cred, 3252 &sctp_ifa->address.sin.sin_addr) != 0)) { 3253 continue; 3254 } 3255 #endif 3256 #ifdef INET6 3257 if ((sctp_ifa->address.sa.sa_family == AF_INET6) && 3258 (prison_check_ip6(inp->ip_inp.inp.inp_cred, 3259 &sctp_ifa->address.sin6.sin6_addr) != 0)) { 3260 continue; 3261 } 3262 #endif 3263 if ((sctp_ifa->localifa_flags & SCTP_ADDR_DEFER_USE) && 3264 (non_asoc_addr_ok == 0)) 3265 continue; 3266 tmp_sifa = sctp_is_ifa_addr_acceptable(sctp_ifa, 3267 dest_is_loop, 3268 dest_is_priv, fam); 3269 if (tmp_sifa == NULL) { 3270 continue; 3271 } 3272 if (tmp_sifa == sifa) { 3273 continue; 3274 } 3275 if (stcb) { 3276 if (sctp_is_address_in_scope(tmp_sifa, 3277 &stcb->asoc.scope, 0) == 0) { 3278 continue; 3279 } 3280 if (((non_asoc_addr_ok == 0) && 3281 (sctp_is_addr_restricted(stcb, tmp_sifa))) || 3282 (non_asoc_addr_ok && 3283 (sctp_is_addr_restricted(stcb, tmp_sifa)) && 3284 (!sctp_is_addr_pending(stcb, tmp_sifa)))) { 3285 /* 3286 * It is restricted 3287 * for some reason.. 3288 * probably not yet 3289 * added. 3290 */ 3291 continue; 3292 } 3293 } 3294 if ((tmp_sifa->address.sin.sin_family == AF_INET) && 3295 (IN4_ISPRIVATE_ADDRESS(&(tmp_sifa->address.sin.sin_addr)))) { 3296 sctp_add_local_addr_restricted(stcb, tmp_sifa); 3297 } 3298 } 3299 } 3300 } 3301 atomic_add_int(&sifa->refcount, 1); 3302 } 3303 #endif 3304 return (sifa); 3305 } 3306 3307 3308 3309 /* tcb may be NULL */ 3310 struct sctp_ifa * 3311 sctp_source_address_selection(struct sctp_inpcb *inp, 3312 struct sctp_tcb *stcb, 3313 sctp_route_t *ro, 3314 struct sctp_nets *net, 3315 int non_asoc_addr_ok, uint32_t vrf_id) 3316 { 3317 struct sctp_ifa *answer; 3318 uint8_t dest_is_priv, dest_is_loop; 3319 sa_family_t fam; 3320 #ifdef INET 3321 struct sockaddr_in *to = (struct sockaddr_in *)&ro->ro_dst; 3322 #endif 3323 #ifdef INET6 3324 struct sockaddr_in6 *to6 = (struct sockaddr_in6 *)&ro->ro_dst; 3325 #endif 3326 3327 /** 3328 * Rules: 3329 * - Find the route if needed, cache if I can. 3330 * - Look at interface address in route, Is it in the bound list. If so we 3331 * have the best source. 3332 * - If not we must rotate amongst the addresses. 3333 * 3334 * Cavets and issues 3335 * 3336 * Do we need to pay attention to scope. We can have a private address 3337 * or a global address we are sourcing or sending to. So if we draw 3338 * it out 3339 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3340 * For V4 3341 * ------------------------------------------ 3342 * source * dest * result 3343 * ----------------------------------------- 3344 * <a> Private * Global * NAT 3345 * ----------------------------------------- 3346 * <b> Private * Private * No problem 3347 * ----------------------------------------- 3348 * <c> Global * Private * Huh, How will this work? 3349 * ----------------------------------------- 3350 * <d> Global * Global * No Problem 3351 *------------------------------------------ 3352 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3353 * For V6 3354 *------------------------------------------ 3355 * source * dest * result 3356 * ----------------------------------------- 3357 * <a> Linklocal * Global * 3358 * ----------------------------------------- 3359 * <b> Linklocal * Linklocal * No problem 3360 * ----------------------------------------- 3361 * <c> Global * Linklocal * Huh, How will this work? 3362 * ----------------------------------------- 3363 * <d> Global * Global * No Problem 3364 *------------------------------------------ 3365 * zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 3366 * 3367 * And then we add to that what happens if there are multiple addresses 3368 * assigned to an interface. Remember the ifa on a ifn is a linked 3369 * list of addresses. So one interface can have more than one IP 3370 * address. What happens if we have both a private and a global 3371 * address? Do we then use context of destination to sort out which 3372 * one is best? And what about NAT's sending P->G may get you a NAT 3373 * translation, or should you select the G thats on the interface in 3374 * preference. 3375 * 3376 * Decisions: 3377 * 3378 * - count the number of addresses on the interface. 3379 * - if it is one, no problem except case <c>. 3380 * For <a> we will assume a NAT out there. 3381 * - if there are more than one, then we need to worry about scope P 3382 * or G. We should prefer G -> G and P -> P if possible. 3383 * Then as a secondary fall back to mixed types G->P being a last 3384 * ditch one. 3385 * - The above all works for bound all, but bound specific we need to 3386 * use the same concept but instead only consider the bound 3387 * addresses. If the bound set is NOT assigned to the interface then 3388 * we must use rotation amongst the bound addresses.. 3389 */ 3390 if (ro->ro_nh == NULL) { 3391 /* 3392 * Need a route to cache. 3393 */ 3394 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 3395 } 3396 if (ro->ro_nh == NULL) { 3397 return (NULL); 3398 } 3399 fam = ro->ro_dst.sa_family; 3400 dest_is_priv = dest_is_loop = 0; 3401 /* Setup our scopes for the destination */ 3402 switch (fam) { 3403 #ifdef INET 3404 case AF_INET: 3405 /* Scope based on outbound address */ 3406 if (IN4_ISLOOPBACK_ADDRESS(&to->sin_addr)) { 3407 dest_is_loop = 1; 3408 if (net != NULL) { 3409 /* mark it as local */ 3410 net->addr_is_local = 1; 3411 } 3412 } else if ((IN4_ISPRIVATE_ADDRESS(&to->sin_addr))) { 3413 dest_is_priv = 1; 3414 } 3415 break; 3416 #endif 3417 #ifdef INET6 3418 case AF_INET6: 3419 /* Scope based on outbound address */ 3420 if (IN6_IS_ADDR_LOOPBACK(&to6->sin6_addr) || 3421 SCTP_ROUTE_IS_REAL_LOOP(ro)) { 3422 /* 3423 * If the address is a loopback address, which 3424 * consists of "::1" OR "fe80::1%lo0", we are 3425 * loopback scope. But we don't use dest_is_priv 3426 * (link local addresses). 3427 */ 3428 dest_is_loop = 1; 3429 if (net != NULL) { 3430 /* mark it as local */ 3431 net->addr_is_local = 1; 3432 } 3433 } else if (IN6_IS_ADDR_LINKLOCAL(&to6->sin6_addr)) { 3434 dest_is_priv = 1; 3435 } 3436 break; 3437 #endif 3438 } 3439 SCTPDBG(SCTP_DEBUG_OUTPUT2, "Select source addr for:"); 3440 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&ro->ro_dst); 3441 SCTP_IPI_ADDR_RLOCK(); 3442 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUNDALL) { 3443 /* 3444 * Bound all case 3445 */ 3446 answer = sctp_choose_boundall(inp, stcb, net, ro, vrf_id, 3447 dest_is_priv, dest_is_loop, 3448 non_asoc_addr_ok, fam); 3449 SCTP_IPI_ADDR_RUNLOCK(); 3450 return (answer); 3451 } 3452 /* 3453 * Subset bound case 3454 */ 3455 if (stcb) { 3456 answer = sctp_choose_boundspecific_stcb(inp, stcb, ro, 3457 vrf_id, dest_is_priv, 3458 dest_is_loop, 3459 non_asoc_addr_ok, fam); 3460 } else { 3461 answer = sctp_choose_boundspecific_inp(inp, ro, vrf_id, 3462 non_asoc_addr_ok, 3463 dest_is_priv, 3464 dest_is_loop, fam); 3465 } 3466 SCTP_IPI_ADDR_RUNLOCK(); 3467 return (answer); 3468 } 3469 3470 static int 3471 sctp_find_cmsg(int c_type, void *data, struct mbuf *control, size_t cpsize) 3472 { 3473 struct cmsghdr cmh; 3474 struct sctp_sndinfo sndinfo; 3475 struct sctp_prinfo prinfo; 3476 struct sctp_authinfo authinfo; 3477 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3478 int found; 3479 3480 /* 3481 * Independent of how many mbufs, find the c_type inside the control 3482 * structure and copy out the data. 3483 */ 3484 found = 0; 3485 tot_len = SCTP_BUF_LEN(control); 3486 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3487 rem_len = tot_len - off; 3488 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3489 /* There is not enough room for one more. */ 3490 return (found); 3491 } 3492 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3493 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3494 /* We dont't have a complete CMSG header. */ 3495 return (found); 3496 } 3497 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3498 /* We don't have the complete CMSG. */ 3499 return (found); 3500 } 3501 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3502 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3503 if ((cmh.cmsg_level == IPPROTO_SCTP) && 3504 ((c_type == cmh.cmsg_type) || 3505 ((c_type == SCTP_SNDRCV) && 3506 ((cmh.cmsg_type == SCTP_SNDINFO) || 3507 (cmh.cmsg_type == SCTP_PRINFO) || 3508 (cmh.cmsg_type == SCTP_AUTHINFO))))) { 3509 if (c_type == cmh.cmsg_type) { 3510 if (cpsize > INT_MAX) { 3511 return (found); 3512 } 3513 if (cmsg_data_len < (int)cpsize) { 3514 return (found); 3515 } 3516 /* It is exactly what we want. Copy it out. */ 3517 m_copydata(control, cmsg_data_off, (int)cpsize, (caddr_t)data); 3518 return (1); 3519 } else { 3520 struct sctp_sndrcvinfo *sndrcvinfo; 3521 3522 sndrcvinfo = (struct sctp_sndrcvinfo *)data; 3523 if (found == 0) { 3524 if (cpsize < sizeof(struct sctp_sndrcvinfo)) { 3525 return (found); 3526 } 3527 memset(sndrcvinfo, 0, sizeof(struct sctp_sndrcvinfo)); 3528 } 3529 switch (cmh.cmsg_type) { 3530 case SCTP_SNDINFO: 3531 if (cmsg_data_len < (int)sizeof(struct sctp_sndinfo)) { 3532 return (found); 3533 } 3534 m_copydata(control, cmsg_data_off, sizeof(struct sctp_sndinfo), (caddr_t)&sndinfo); 3535 sndrcvinfo->sinfo_stream = sndinfo.snd_sid; 3536 sndrcvinfo->sinfo_flags = sndinfo.snd_flags; 3537 sndrcvinfo->sinfo_ppid = sndinfo.snd_ppid; 3538 sndrcvinfo->sinfo_context = sndinfo.snd_context; 3539 sndrcvinfo->sinfo_assoc_id = sndinfo.snd_assoc_id; 3540 break; 3541 case SCTP_PRINFO: 3542 if (cmsg_data_len < (int)sizeof(struct sctp_prinfo)) { 3543 return (found); 3544 } 3545 m_copydata(control, cmsg_data_off, sizeof(struct sctp_prinfo), (caddr_t)&prinfo); 3546 if (prinfo.pr_policy != SCTP_PR_SCTP_NONE) { 3547 sndrcvinfo->sinfo_timetolive = prinfo.pr_value; 3548 } else { 3549 sndrcvinfo->sinfo_timetolive = 0; 3550 } 3551 sndrcvinfo->sinfo_flags |= prinfo.pr_policy; 3552 break; 3553 case SCTP_AUTHINFO: 3554 if (cmsg_data_len < (int)sizeof(struct sctp_authinfo)) { 3555 return (found); 3556 } 3557 m_copydata(control, cmsg_data_off, sizeof(struct sctp_authinfo), (caddr_t)&authinfo); 3558 sndrcvinfo->sinfo_keynumber_valid = 1; 3559 sndrcvinfo->sinfo_keynumber = authinfo.auth_keynumber; 3560 break; 3561 default: 3562 return (found); 3563 } 3564 found = 1; 3565 } 3566 } 3567 } 3568 return (found); 3569 } 3570 3571 static int 3572 sctp_process_cmsgs_for_init(struct sctp_tcb *stcb, struct mbuf *control, int *error) 3573 { 3574 struct cmsghdr cmh; 3575 struct sctp_initmsg initmsg; 3576 #ifdef INET 3577 struct sockaddr_in sin; 3578 #endif 3579 #ifdef INET6 3580 struct sockaddr_in6 sin6; 3581 #endif 3582 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3583 3584 tot_len = SCTP_BUF_LEN(control); 3585 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3586 rem_len = tot_len - off; 3587 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3588 /* There is not enough room for one more. */ 3589 *error = EINVAL; 3590 return (1); 3591 } 3592 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3593 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3594 /* We dont't have a complete CMSG header. */ 3595 *error = EINVAL; 3596 return (1); 3597 } 3598 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3599 /* We don't have the complete CMSG. */ 3600 *error = EINVAL; 3601 return (1); 3602 } 3603 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3604 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3605 if (cmh.cmsg_level == IPPROTO_SCTP) { 3606 switch (cmh.cmsg_type) { 3607 case SCTP_INIT: 3608 if (cmsg_data_len < (int)sizeof(struct sctp_initmsg)) { 3609 *error = EINVAL; 3610 return (1); 3611 } 3612 m_copydata(control, cmsg_data_off, sizeof(struct sctp_initmsg), (caddr_t)&initmsg); 3613 if (initmsg.sinit_max_attempts) 3614 stcb->asoc.max_init_times = initmsg.sinit_max_attempts; 3615 if (initmsg.sinit_num_ostreams) 3616 stcb->asoc.pre_open_streams = initmsg.sinit_num_ostreams; 3617 if (initmsg.sinit_max_instreams) 3618 stcb->asoc.max_inbound_streams = initmsg.sinit_max_instreams; 3619 if (initmsg.sinit_max_init_timeo) 3620 stcb->asoc.initial_init_rto_max = initmsg.sinit_max_init_timeo; 3621 if (stcb->asoc.streamoutcnt < stcb->asoc.pre_open_streams) { 3622 struct sctp_stream_out *tmp_str; 3623 unsigned int i; 3624 #if defined(SCTP_DETAILED_STR_STATS) 3625 int j; 3626 #endif 3627 3628 /* Default is NOT correct */ 3629 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, default:%d pre_open:%d\n", 3630 stcb->asoc.streamoutcnt, stcb->asoc.pre_open_streams); 3631 SCTP_TCB_UNLOCK(stcb); 3632 SCTP_MALLOC(tmp_str, 3633 struct sctp_stream_out *, 3634 (stcb->asoc.pre_open_streams * sizeof(struct sctp_stream_out)), 3635 SCTP_M_STRMO); 3636 SCTP_TCB_LOCK(stcb); 3637 if (tmp_str != NULL) { 3638 SCTP_FREE(stcb->asoc.strmout, SCTP_M_STRMO); 3639 stcb->asoc.strmout = tmp_str; 3640 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt = stcb->asoc.pre_open_streams; 3641 } else { 3642 stcb->asoc.pre_open_streams = stcb->asoc.streamoutcnt; 3643 } 3644 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 3645 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 3646 stcb->asoc.strmout[i].chunks_on_queues = 0; 3647 stcb->asoc.strmout[i].next_mid_ordered = 0; 3648 stcb->asoc.strmout[i].next_mid_unordered = 0; 3649 #if defined(SCTP_DETAILED_STR_STATS) 3650 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 3651 stcb->asoc.strmout[i].abandoned_sent[j] = 0; 3652 stcb->asoc.strmout[i].abandoned_unsent[j] = 0; 3653 } 3654 #else 3655 stcb->asoc.strmout[i].abandoned_sent[0] = 0; 3656 stcb->asoc.strmout[i].abandoned_unsent[0] = 0; 3657 #endif 3658 stcb->asoc.strmout[i].sid = i; 3659 stcb->asoc.strmout[i].last_msg_incomplete = 0; 3660 stcb->asoc.strmout[i].state = SCTP_STREAM_OPENING; 3661 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL); 3662 } 3663 } 3664 break; 3665 #ifdef INET 3666 case SCTP_DSTADDRV4: 3667 if (cmsg_data_len < (int)sizeof(struct in_addr)) { 3668 *error = EINVAL; 3669 return (1); 3670 } 3671 memset(&sin, 0, sizeof(struct sockaddr_in)); 3672 sin.sin_family = AF_INET; 3673 sin.sin_len = sizeof(struct sockaddr_in); 3674 sin.sin_port = stcb->rport; 3675 m_copydata(control, cmsg_data_off, sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3676 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3677 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3678 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3679 *error = EINVAL; 3680 return (1); 3681 } 3682 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port, 3683 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3684 *error = ENOBUFS; 3685 return (1); 3686 } 3687 break; 3688 #endif 3689 #ifdef INET6 3690 case SCTP_DSTADDRV6: 3691 if (cmsg_data_len < (int)sizeof(struct in6_addr)) { 3692 *error = EINVAL; 3693 return (1); 3694 } 3695 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3696 sin6.sin6_family = AF_INET6; 3697 sin6.sin6_len = sizeof(struct sockaddr_in6); 3698 sin6.sin6_port = stcb->rport; 3699 m_copydata(control, cmsg_data_off, sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3700 if (IN6_IS_ADDR_UNSPECIFIED(&sin6.sin6_addr) || 3701 IN6_IS_ADDR_MULTICAST(&sin6.sin6_addr)) { 3702 *error = EINVAL; 3703 return (1); 3704 } 3705 #ifdef INET 3706 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3707 in6_sin6_2_sin(&sin, &sin6); 3708 if ((sin.sin_addr.s_addr == INADDR_ANY) || 3709 (sin.sin_addr.s_addr == INADDR_BROADCAST) || 3710 IN_MULTICAST(ntohl(sin.sin_addr.s_addr))) { 3711 *error = EINVAL; 3712 return (1); 3713 } 3714 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin, NULL, stcb->asoc.port, 3715 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3716 *error = ENOBUFS; 3717 return (1); 3718 } 3719 } else 3720 #endif 3721 if (sctp_add_remote_addr(stcb, (struct sockaddr *)&sin6, NULL, stcb->asoc.port, 3722 SCTP_DONOT_SETSCOPE, SCTP_ADDR_IS_CONFIRMED)) { 3723 *error = ENOBUFS; 3724 return (1); 3725 } 3726 break; 3727 #endif 3728 default: 3729 break; 3730 } 3731 } 3732 } 3733 return (0); 3734 } 3735 3736 #if defined(INET) || defined(INET6) 3737 static struct sctp_tcb * 3738 sctp_findassociation_cmsgs(struct sctp_inpcb **inp_p, 3739 uint16_t port, 3740 struct mbuf *control, 3741 struct sctp_nets **net_p, 3742 int *error) 3743 { 3744 struct cmsghdr cmh; 3745 struct sctp_tcb *stcb; 3746 struct sockaddr *addr; 3747 #ifdef INET 3748 struct sockaddr_in sin; 3749 #endif 3750 #ifdef INET6 3751 struct sockaddr_in6 sin6; 3752 #endif 3753 int tot_len, rem_len, cmsg_data_len, cmsg_data_off, off; 3754 3755 tot_len = SCTP_BUF_LEN(control); 3756 for (off = 0; off < tot_len; off += CMSG_ALIGN(cmh.cmsg_len)) { 3757 rem_len = tot_len - off; 3758 if (rem_len < (int)CMSG_ALIGN(sizeof(cmh))) { 3759 /* There is not enough room for one more. */ 3760 *error = EINVAL; 3761 return (NULL); 3762 } 3763 m_copydata(control, off, sizeof(cmh), (caddr_t)&cmh); 3764 if (cmh.cmsg_len < CMSG_ALIGN(sizeof(cmh))) { 3765 /* We dont't have a complete CMSG header. */ 3766 *error = EINVAL; 3767 return (NULL); 3768 } 3769 if ((cmh.cmsg_len > INT_MAX) || ((int)cmh.cmsg_len > rem_len)) { 3770 /* We don't have the complete CMSG. */ 3771 *error = EINVAL; 3772 return (NULL); 3773 } 3774 cmsg_data_len = (int)cmh.cmsg_len - CMSG_ALIGN(sizeof(cmh)); 3775 cmsg_data_off = off + CMSG_ALIGN(sizeof(cmh)); 3776 if (cmh.cmsg_level == IPPROTO_SCTP) { 3777 switch (cmh.cmsg_type) { 3778 #ifdef INET 3779 case SCTP_DSTADDRV4: 3780 if (cmsg_data_len < (int)sizeof(struct in_addr)) { 3781 *error = EINVAL; 3782 return (NULL); 3783 } 3784 memset(&sin, 0, sizeof(struct sockaddr_in)); 3785 sin.sin_family = AF_INET; 3786 sin.sin_len = sizeof(struct sockaddr_in); 3787 sin.sin_port = port; 3788 m_copydata(control, cmsg_data_off, sizeof(struct in_addr), (caddr_t)&sin.sin_addr); 3789 addr = (struct sockaddr *)&sin; 3790 break; 3791 #endif 3792 #ifdef INET6 3793 case SCTP_DSTADDRV6: 3794 if (cmsg_data_len < (int)sizeof(struct in6_addr)) { 3795 *error = EINVAL; 3796 return (NULL); 3797 } 3798 memset(&sin6, 0, sizeof(struct sockaddr_in6)); 3799 sin6.sin6_family = AF_INET6; 3800 sin6.sin6_len = sizeof(struct sockaddr_in6); 3801 sin6.sin6_port = port; 3802 m_copydata(control, cmsg_data_off, sizeof(struct in6_addr), (caddr_t)&sin6.sin6_addr); 3803 #ifdef INET 3804 if (IN6_IS_ADDR_V4MAPPED(&sin6.sin6_addr)) { 3805 in6_sin6_2_sin(&sin, &sin6); 3806 addr = (struct sockaddr *)&sin; 3807 } else 3808 #endif 3809 addr = (struct sockaddr *)&sin6; 3810 break; 3811 #endif 3812 default: 3813 addr = NULL; 3814 break; 3815 } 3816 if (addr) { 3817 stcb = sctp_findassociation_ep_addr(inp_p, addr, net_p, NULL, NULL); 3818 if (stcb != NULL) { 3819 return (stcb); 3820 } 3821 } 3822 } 3823 } 3824 return (NULL); 3825 } 3826 #endif 3827 3828 static struct mbuf * 3829 sctp_add_cookie(struct mbuf *init, int init_offset, 3830 struct mbuf *initack, int initack_offset, struct sctp_state_cookie *stc_in, uint8_t **signature) 3831 { 3832 struct mbuf *copy_init, *copy_initack, *m_at, *sig, *mret; 3833 struct sctp_state_cookie *stc; 3834 struct sctp_paramhdr *ph; 3835 uint8_t *foo; 3836 int sig_offset; 3837 uint16_t cookie_sz; 3838 3839 mret = sctp_get_mbuf_for_msg((sizeof(struct sctp_state_cookie) + 3840 sizeof(struct sctp_paramhdr)), 0, 3841 M_NOWAIT, 1, MT_DATA); 3842 if (mret == NULL) { 3843 return (NULL); 3844 } 3845 copy_init = SCTP_M_COPYM(init, init_offset, M_COPYALL, M_NOWAIT); 3846 if (copy_init == NULL) { 3847 sctp_m_freem(mret); 3848 return (NULL); 3849 } 3850 #ifdef SCTP_MBUF_LOGGING 3851 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3852 sctp_log_mbc(copy_init, SCTP_MBUF_ICOPY); 3853 } 3854 #endif 3855 copy_initack = SCTP_M_COPYM(initack, initack_offset, M_COPYALL, 3856 M_NOWAIT); 3857 if (copy_initack == NULL) { 3858 sctp_m_freem(mret); 3859 sctp_m_freem(copy_init); 3860 return (NULL); 3861 } 3862 #ifdef SCTP_MBUF_LOGGING 3863 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 3864 sctp_log_mbc(copy_initack, SCTP_MBUF_ICOPY); 3865 } 3866 #endif 3867 /* easy side we just drop it on the end */ 3868 ph = mtod(mret, struct sctp_paramhdr *); 3869 SCTP_BUF_LEN(mret) = sizeof(struct sctp_state_cookie) + 3870 sizeof(struct sctp_paramhdr); 3871 stc = (struct sctp_state_cookie *)((caddr_t)ph + 3872 sizeof(struct sctp_paramhdr)); 3873 ph->param_type = htons(SCTP_STATE_COOKIE); 3874 ph->param_length = 0; /* fill in at the end */ 3875 /* Fill in the stc cookie data */ 3876 memcpy(stc, stc_in, sizeof(struct sctp_state_cookie)); 3877 3878 /* tack the INIT and then the INIT-ACK onto the chain */ 3879 cookie_sz = 0; 3880 for (m_at = mret; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3881 cookie_sz += SCTP_BUF_LEN(m_at); 3882 if (SCTP_BUF_NEXT(m_at) == NULL) { 3883 SCTP_BUF_NEXT(m_at) = copy_init; 3884 break; 3885 } 3886 } 3887 for (m_at = copy_init; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3888 cookie_sz += SCTP_BUF_LEN(m_at); 3889 if (SCTP_BUF_NEXT(m_at) == NULL) { 3890 SCTP_BUF_NEXT(m_at) = copy_initack; 3891 break; 3892 } 3893 } 3894 for (m_at = copy_initack; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 3895 cookie_sz += SCTP_BUF_LEN(m_at); 3896 if (SCTP_BUF_NEXT(m_at) == NULL) { 3897 break; 3898 } 3899 } 3900 sig = sctp_get_mbuf_for_msg(SCTP_SECRET_SIZE, 0, M_NOWAIT, 1, MT_DATA); 3901 if (sig == NULL) { 3902 /* no space, so free the entire chain */ 3903 sctp_m_freem(mret); 3904 return (NULL); 3905 } 3906 SCTP_BUF_LEN(sig) = 0; 3907 SCTP_BUF_NEXT(m_at) = sig; 3908 sig_offset = 0; 3909 foo = (uint8_t *)(mtod(sig, caddr_t)+sig_offset); 3910 memset(foo, 0, SCTP_SIGNATURE_SIZE); 3911 *signature = foo; 3912 SCTP_BUF_LEN(sig) += SCTP_SIGNATURE_SIZE; 3913 cookie_sz += SCTP_SIGNATURE_SIZE; 3914 ph->param_length = htons(cookie_sz); 3915 return (mret); 3916 } 3917 3918 3919 static uint8_t 3920 sctp_get_ect(struct sctp_tcb *stcb) 3921 { 3922 if ((stcb != NULL) && (stcb->asoc.ecn_supported == 1)) { 3923 return (SCTP_ECT0_BIT); 3924 } else { 3925 return (0); 3926 } 3927 } 3928 3929 #if defined(INET) || defined(INET6) 3930 static void 3931 sctp_handle_no_route(struct sctp_tcb *stcb, 3932 struct sctp_nets *net, 3933 int so_locked) 3934 { 3935 SCTPDBG(SCTP_DEBUG_OUTPUT1, "dropped packet - no valid source addr\n"); 3936 3937 if (net) { 3938 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Destination was "); 3939 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT1, &net->ro._l_addr.sa); 3940 if (net->dest_state & SCTP_ADDR_CONFIRMED) { 3941 if ((net->dest_state & SCTP_ADDR_REACHABLE) && stcb) { 3942 SCTPDBG(SCTP_DEBUG_OUTPUT1, "no route takes interface %p down\n", (void *)net); 3943 sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 3944 stcb, 0, 3945 (void *)net, 3946 so_locked); 3947 net->dest_state &= ~SCTP_ADDR_REACHABLE; 3948 net->dest_state &= ~SCTP_ADDR_PF; 3949 } 3950 } 3951 if (stcb) { 3952 if (net == stcb->asoc.primary_destination) { 3953 /* need a new primary */ 3954 struct sctp_nets *alt; 3955 3956 alt = sctp_find_alternate_net(stcb, net, 0); 3957 if (alt != net) { 3958 if (stcb->asoc.alternate) { 3959 sctp_free_remote_addr(stcb->asoc.alternate); 3960 } 3961 stcb->asoc.alternate = alt; 3962 atomic_add_int(&stcb->asoc.alternate->ref_count, 1); 3963 if (net->ro._s_addr) { 3964 sctp_free_ifa(net->ro._s_addr); 3965 net->ro._s_addr = NULL; 3966 } 3967 net->src_addr_selected = 0; 3968 } 3969 } 3970 } 3971 } 3972 } 3973 #endif 3974 3975 static int 3976 sctp_lowlevel_chunk_output(struct sctp_inpcb *inp, 3977 struct sctp_tcb *stcb, /* may be NULL */ 3978 struct sctp_nets *net, 3979 struct sockaddr *to, 3980 struct mbuf *m, 3981 uint32_t auth_offset, 3982 struct sctp_auth_chunk *auth, 3983 uint16_t auth_keyid, 3984 int nofragment_flag, 3985 int ecn_ok, 3986 int out_of_asoc_ok, 3987 uint16_t src_port, 3988 uint16_t dest_port, 3989 uint32_t v_tag, 3990 uint16_t port, 3991 union sctp_sockstore *over_addr, 3992 uint8_t mflowtype, uint32_t mflowid, 3993 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 3994 int so_locked SCTP_UNUSED 3995 #else 3996 int so_locked 3997 #endif 3998 ) 3999 { 4000 /* nofragment_flag to tell if IP_DF should be set (IPv4 only) */ 4001 /** 4002 * Given a mbuf chain (via SCTP_BUF_NEXT()) that holds a packet header 4003 * WITH an SCTPHDR but no IP header, endpoint inp and sa structure: 4004 * - fill in the HMAC digest of any AUTH chunk in the packet. 4005 * - calculate and fill in the SCTP checksum. 4006 * - prepend an IP address header. 4007 * - if boundall use INADDR_ANY. 4008 * - if boundspecific do source address selection. 4009 * - set fragmentation option for ipV4. 4010 * - On return from IP output, check/adjust mtu size of output 4011 * interface and smallest_mtu size as well. 4012 */ 4013 /* Will need ifdefs around this */ 4014 struct mbuf *newm; 4015 struct sctphdr *sctphdr; 4016 int packet_length; 4017 int ret; 4018 #if defined(INET) || defined(INET6) 4019 uint32_t vrf_id; 4020 #endif 4021 #if defined(INET) || defined(INET6) 4022 struct mbuf *o_pak; 4023 sctp_route_t *ro = NULL; 4024 struct udphdr *udp = NULL; 4025 #endif 4026 uint8_t tos_value; 4027 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4028 struct socket *so = NULL; 4029 #endif 4030 4031 if ((net) && (net->dest_state & SCTP_ADDR_OUT_OF_SCOPE)) { 4032 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4033 sctp_m_freem(m); 4034 return (EFAULT); 4035 } 4036 #if defined(INET) || defined(INET6) 4037 if (stcb) { 4038 vrf_id = stcb->asoc.vrf_id; 4039 } else { 4040 vrf_id = inp->def_vrf_id; 4041 } 4042 #endif 4043 /* fill in the HMAC digest for any AUTH chunk in the packet */ 4044 if ((auth != NULL) && (stcb != NULL)) { 4045 sctp_fill_hmac_digest_m(m, auth_offset, auth, stcb, auth_keyid); 4046 } 4047 4048 if (net) { 4049 tos_value = net->dscp; 4050 } else if (stcb) { 4051 tos_value = stcb->asoc.default_dscp; 4052 } else { 4053 tos_value = inp->sctp_ep.default_dscp; 4054 } 4055 4056 switch (to->sa_family) { 4057 #ifdef INET 4058 case AF_INET: 4059 { 4060 struct ip *ip = NULL; 4061 sctp_route_t iproute; 4062 int len; 4063 4064 len = SCTP_MIN_V4_OVERHEAD; 4065 if (port) { 4066 len += sizeof(struct udphdr); 4067 } 4068 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4069 if (newm == NULL) { 4070 sctp_m_freem(m); 4071 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4072 return (ENOMEM); 4073 } 4074 SCTP_ALIGN_TO_END(newm, len); 4075 SCTP_BUF_LEN(newm) = len; 4076 SCTP_BUF_NEXT(newm) = m; 4077 m = newm; 4078 if (net != NULL) { 4079 m->m_pkthdr.flowid = net->flowid; 4080 M_HASHTYPE_SET(m, net->flowtype); 4081 } else { 4082 m->m_pkthdr.flowid = mflowid; 4083 M_HASHTYPE_SET(m, mflowtype); 4084 } 4085 packet_length = sctp_calculate_len(m); 4086 ip = mtod(m, struct ip *); 4087 ip->ip_v = IPVERSION; 4088 ip->ip_hl = (sizeof(struct ip) >> 2); 4089 if (tos_value == 0) { 4090 /* 4091 * This means especially, that it is not set 4092 * at the SCTP layer. So use the value from 4093 * the IP layer. 4094 */ 4095 tos_value = inp->ip_inp.inp.inp_ip_tos; 4096 } 4097 tos_value &= 0xfc; 4098 if (ecn_ok) { 4099 tos_value |= sctp_get_ect(stcb); 4100 } 4101 if ((nofragment_flag) && (port == 0)) { 4102 ip->ip_off = htons(IP_DF); 4103 } else { 4104 ip->ip_off = htons(0); 4105 } 4106 /* FreeBSD has a function for ip_id's */ 4107 ip_fillid(ip); 4108 4109 ip->ip_ttl = inp->ip_inp.inp.inp_ip_ttl; 4110 ip->ip_len = htons(packet_length); 4111 ip->ip_tos = tos_value; 4112 if (port) { 4113 ip->ip_p = IPPROTO_UDP; 4114 } else { 4115 ip->ip_p = IPPROTO_SCTP; 4116 } 4117 ip->ip_sum = 0; 4118 if (net == NULL) { 4119 ro = &iproute; 4120 memset(&iproute, 0, sizeof(iproute)); 4121 memcpy(&ro->ro_dst, to, to->sa_len); 4122 } else { 4123 ro = (sctp_route_t *)&net->ro; 4124 } 4125 /* Now the address selection part */ 4126 ip->ip_dst.s_addr = ((struct sockaddr_in *)to)->sin_addr.s_addr; 4127 4128 /* call the routine to select the src address */ 4129 if (net && out_of_asoc_ok == 0) { 4130 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4131 sctp_free_ifa(net->ro._s_addr); 4132 net->ro._s_addr = NULL; 4133 net->src_addr_selected = 0; 4134 RO_NHFREE(ro); 4135 } 4136 if (net->src_addr_selected == 0) { 4137 /* Cache the source address */ 4138 net->ro._s_addr = sctp_source_address_selection(inp, stcb, 4139 ro, net, 0, 4140 vrf_id); 4141 net->src_addr_selected = 1; 4142 } 4143 if (net->ro._s_addr == NULL) { 4144 /* No route to host */ 4145 net->src_addr_selected = 0; 4146 sctp_handle_no_route(stcb, net, so_locked); 4147 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4148 sctp_m_freem(m); 4149 return (EHOSTUNREACH); 4150 } 4151 ip->ip_src = net->ro._s_addr->address.sin.sin_addr; 4152 } else { 4153 if (over_addr == NULL) { 4154 struct sctp_ifa *_lsrc; 4155 4156 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4157 net, 4158 out_of_asoc_ok, 4159 vrf_id); 4160 if (_lsrc == NULL) { 4161 sctp_handle_no_route(stcb, net, so_locked); 4162 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4163 sctp_m_freem(m); 4164 return (EHOSTUNREACH); 4165 } 4166 ip->ip_src = _lsrc->address.sin.sin_addr; 4167 sctp_free_ifa(_lsrc); 4168 } else { 4169 ip->ip_src = over_addr->sin.sin_addr; 4170 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 4171 } 4172 } 4173 if (port) { 4174 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4175 sctp_handle_no_route(stcb, net, so_locked); 4176 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4177 sctp_m_freem(m); 4178 return (EHOSTUNREACH); 4179 } 4180 udp = (struct udphdr *)((caddr_t)ip + sizeof(struct ip)); 4181 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4182 udp->uh_dport = port; 4183 udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip))); 4184 if (V_udp_cksum) { 4185 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 4186 } else { 4187 udp->uh_sum = 0; 4188 } 4189 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4190 } else { 4191 sctphdr = (struct sctphdr *)((caddr_t)ip + sizeof(struct ip)); 4192 } 4193 4194 sctphdr->src_port = src_port; 4195 sctphdr->dest_port = dest_port; 4196 sctphdr->v_tag = v_tag; 4197 sctphdr->checksum = 0; 4198 4199 /* 4200 * If source address selection fails and we find no 4201 * route then the ip_output should fail as well with 4202 * a NO_ROUTE_TO_HOST type error. We probably should 4203 * catch that somewhere and abort the association 4204 * right away (assuming this is an INIT being sent). 4205 */ 4206 if (ro->ro_nh == NULL) { 4207 /* 4208 * src addr selection failed to find a route 4209 * (or valid source addr), so we can't get 4210 * there from here (yet)! 4211 */ 4212 sctp_handle_no_route(stcb, net, so_locked); 4213 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4214 sctp_m_freem(m); 4215 return (EHOSTUNREACH); 4216 } 4217 if (ro != &iproute) { 4218 memcpy(&iproute, ro, sizeof(*ro)); 4219 } 4220 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv4 output routine from low level src addr:%x\n", 4221 (uint32_t)(ntohl(ip->ip_src.s_addr))); 4222 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Destination is %x\n", 4223 (uint32_t)(ntohl(ip->ip_dst.s_addr))); 4224 SCTPDBG(SCTP_DEBUG_OUTPUT3, "RTP route is %p through\n", 4225 (void *)ro->ro_nh); 4226 4227 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4228 /* failed to prepend data, give up */ 4229 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4230 sctp_m_freem(m); 4231 return (ENOMEM); 4232 } 4233 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4234 if (port) { 4235 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip) + sizeof(struct udphdr)); 4236 SCTP_STAT_INCR(sctps_sendswcrc); 4237 if (V_udp_cksum) { 4238 SCTP_ENABLE_UDP_CSUM(o_pak); 4239 } 4240 } else { 4241 m->m_pkthdr.csum_flags = CSUM_SCTP; 4242 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4243 SCTP_STAT_INCR(sctps_sendhwcrc); 4244 } 4245 #ifdef SCTP_PACKET_LOGGING 4246 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4247 sctp_packet_log(o_pak); 4248 #endif 4249 /* send it out. table id is taken from stcb */ 4250 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4251 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4252 so = SCTP_INP_SO(inp); 4253 SCTP_SOCKET_UNLOCK(so, 0); 4254 } 4255 #endif 4256 SCTP_PROBE5(send, NULL, stcb, ip, stcb, sctphdr); 4257 SCTP_IP_OUTPUT(ret, o_pak, ro, stcb, vrf_id); 4258 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4259 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4260 atomic_add_int(&stcb->asoc.refcnt, 1); 4261 SCTP_TCB_UNLOCK(stcb); 4262 SCTP_SOCKET_LOCK(so, 0); 4263 SCTP_TCB_LOCK(stcb); 4264 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4265 } 4266 #endif 4267 if (port) { 4268 UDPSTAT_INC(udps_opackets); 4269 } 4270 SCTP_STAT_INCR(sctps_sendpackets); 4271 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4272 if (ret) 4273 SCTP_STAT_INCR(sctps_senderrors); 4274 4275 SCTPDBG(SCTP_DEBUG_OUTPUT3, "IP output returns %d\n", ret); 4276 if (net == NULL) { 4277 /* free tempy routes */ 4278 RO_NHFREE(ro); 4279 } else { 4280 if ((ro->ro_nh != NULL) && (net->ro._s_addr) && 4281 ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) { 4282 uint32_t mtu; 4283 4284 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_nh); 4285 if (mtu > 0) { 4286 if (net->port) { 4287 mtu -= sizeof(struct udphdr); 4288 } 4289 if (mtu < net->mtu) { 4290 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { 4291 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4292 } 4293 net->mtu = mtu; 4294 } 4295 } 4296 } else if (ro->ro_nh == NULL) { 4297 /* route was freed */ 4298 if (net->ro._s_addr && 4299 net->src_addr_selected) { 4300 sctp_free_ifa(net->ro._s_addr); 4301 net->ro._s_addr = NULL; 4302 } 4303 net->src_addr_selected = 0; 4304 } 4305 } 4306 return (ret); 4307 } 4308 #endif 4309 #ifdef INET6 4310 case AF_INET6: 4311 { 4312 uint32_t flowlabel, flowinfo; 4313 struct ip6_hdr *ip6h; 4314 struct route_in6 ip6route; 4315 struct ifnet *ifp; 4316 struct sockaddr_in6 *sin6, tmp, *lsa6, lsa6_tmp; 4317 int prev_scope = 0; 4318 struct sockaddr_in6 lsa6_storage; 4319 int error; 4320 u_short prev_port = 0; 4321 int len; 4322 4323 if (net) { 4324 flowlabel = net->flowlabel; 4325 } else if (stcb) { 4326 flowlabel = stcb->asoc.default_flowlabel; 4327 } else { 4328 flowlabel = inp->sctp_ep.default_flowlabel; 4329 } 4330 if (flowlabel == 0) { 4331 /* 4332 * This means especially, that it is not set 4333 * at the SCTP layer. So use the value from 4334 * the IP layer. 4335 */ 4336 flowlabel = ntohl(((struct inpcb *)inp)->inp_flow); 4337 } 4338 flowlabel &= 0x000fffff; 4339 len = SCTP_MIN_OVERHEAD; 4340 if (port) { 4341 len += sizeof(struct udphdr); 4342 } 4343 newm = sctp_get_mbuf_for_msg(len, 1, M_NOWAIT, 1, MT_DATA); 4344 if (newm == NULL) { 4345 sctp_m_freem(m); 4346 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4347 return (ENOMEM); 4348 } 4349 SCTP_ALIGN_TO_END(newm, len); 4350 SCTP_BUF_LEN(newm) = len; 4351 SCTP_BUF_NEXT(newm) = m; 4352 m = newm; 4353 if (net != NULL) { 4354 m->m_pkthdr.flowid = net->flowid; 4355 M_HASHTYPE_SET(m, net->flowtype); 4356 } else { 4357 m->m_pkthdr.flowid = mflowid; 4358 M_HASHTYPE_SET(m, mflowtype); 4359 } 4360 packet_length = sctp_calculate_len(m); 4361 4362 ip6h = mtod(m, struct ip6_hdr *); 4363 /* protect *sin6 from overwrite */ 4364 sin6 = (struct sockaddr_in6 *)to; 4365 tmp = *sin6; 4366 sin6 = &tmp; 4367 4368 /* KAME hack: embed scopeid */ 4369 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4370 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4371 sctp_m_freem(m); 4372 return (EINVAL); 4373 } 4374 if (net == NULL) { 4375 memset(&ip6route, 0, sizeof(ip6route)); 4376 ro = (sctp_route_t *)&ip6route; 4377 memcpy(&ro->ro_dst, sin6, sin6->sin6_len); 4378 } else { 4379 ro = (sctp_route_t *)&net->ro; 4380 } 4381 /* 4382 * We assume here that inp_flow is in host byte 4383 * order within the TCB! 4384 */ 4385 if (tos_value == 0) { 4386 /* 4387 * This means especially, that it is not set 4388 * at the SCTP layer. So use the value from 4389 * the IP layer. 4390 */ 4391 tos_value = (ntohl(((struct inpcb *)inp)->inp_flow) >> 20) & 0xff; 4392 } 4393 tos_value &= 0xfc; 4394 if (ecn_ok) { 4395 tos_value |= sctp_get_ect(stcb); 4396 } 4397 flowinfo = 0x06; 4398 flowinfo <<= 8; 4399 flowinfo |= tos_value; 4400 flowinfo <<= 20; 4401 flowinfo |= flowlabel; 4402 ip6h->ip6_flow = htonl(flowinfo); 4403 if (port) { 4404 ip6h->ip6_nxt = IPPROTO_UDP; 4405 } else { 4406 ip6h->ip6_nxt = IPPROTO_SCTP; 4407 } 4408 ip6h->ip6_plen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr))); 4409 ip6h->ip6_dst = sin6->sin6_addr; 4410 4411 /* 4412 * Add SRC address selection here: we can only reuse 4413 * to a limited degree the kame src-addr-sel, since 4414 * we can try their selection but it may not be 4415 * bound. 4416 */ 4417 memset(&lsa6_tmp, 0, sizeof(lsa6_tmp)); 4418 lsa6_tmp.sin6_family = AF_INET6; 4419 lsa6_tmp.sin6_len = sizeof(lsa6_tmp); 4420 lsa6 = &lsa6_tmp; 4421 if (net && out_of_asoc_ok == 0) { 4422 if (net->ro._s_addr && (net->ro._s_addr->localifa_flags & (SCTP_BEING_DELETED | SCTP_ADDR_IFA_UNUSEABLE))) { 4423 sctp_free_ifa(net->ro._s_addr); 4424 net->ro._s_addr = NULL; 4425 net->src_addr_selected = 0; 4426 RO_NHFREE(ro); 4427 } 4428 if (net->src_addr_selected == 0) { 4429 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4430 /* KAME hack: embed scopeid */ 4431 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4432 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4433 sctp_m_freem(m); 4434 return (EINVAL); 4435 } 4436 /* Cache the source address */ 4437 net->ro._s_addr = sctp_source_address_selection(inp, 4438 stcb, 4439 ro, 4440 net, 4441 0, 4442 vrf_id); 4443 (void)sa6_recoverscope(sin6); 4444 net->src_addr_selected = 1; 4445 } 4446 if (net->ro._s_addr == NULL) { 4447 SCTPDBG(SCTP_DEBUG_OUTPUT3, "V6:No route to host\n"); 4448 net->src_addr_selected = 0; 4449 sctp_handle_no_route(stcb, net, so_locked); 4450 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4451 sctp_m_freem(m); 4452 return (EHOSTUNREACH); 4453 } 4454 lsa6->sin6_addr = net->ro._s_addr->address.sin6.sin6_addr; 4455 } else { 4456 sin6 = (struct sockaddr_in6 *)&ro->ro_dst; 4457 /* KAME hack: embed scopeid */ 4458 if (sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)) != 0) { 4459 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 4460 sctp_m_freem(m); 4461 return (EINVAL); 4462 } 4463 if (over_addr == NULL) { 4464 struct sctp_ifa *_lsrc; 4465 4466 _lsrc = sctp_source_address_selection(inp, stcb, ro, 4467 net, 4468 out_of_asoc_ok, 4469 vrf_id); 4470 if (_lsrc == NULL) { 4471 sctp_handle_no_route(stcb, net, so_locked); 4472 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4473 sctp_m_freem(m); 4474 return (EHOSTUNREACH); 4475 } 4476 lsa6->sin6_addr = _lsrc->address.sin6.sin6_addr; 4477 sctp_free_ifa(_lsrc); 4478 } else { 4479 lsa6->sin6_addr = over_addr->sin6.sin6_addr; 4480 SCTP_RTALLOC(ro, vrf_id, inp->fibnum); 4481 } 4482 (void)sa6_recoverscope(sin6); 4483 } 4484 lsa6->sin6_port = inp->sctp_lport; 4485 4486 if (ro->ro_nh == NULL) { 4487 /* 4488 * src addr selection failed to find a route 4489 * (or valid source addr), so we can't get 4490 * there from here! 4491 */ 4492 sctp_handle_no_route(stcb, net, so_locked); 4493 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4494 sctp_m_freem(m); 4495 return (EHOSTUNREACH); 4496 } 4497 /* 4498 * XXX: sa6 may not have a valid sin6_scope_id in 4499 * the non-SCOPEDROUTING case. 4500 */ 4501 memset(&lsa6_storage, 0, sizeof(lsa6_storage)); 4502 lsa6_storage.sin6_family = AF_INET6; 4503 lsa6_storage.sin6_len = sizeof(lsa6_storage); 4504 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4505 if ((error = sa6_recoverscope(&lsa6_storage)) != 0) { 4506 SCTPDBG(SCTP_DEBUG_OUTPUT3, "recover scope fails error %d\n", error); 4507 sctp_m_freem(m); 4508 return (error); 4509 } 4510 /* XXX */ 4511 lsa6_storage.sin6_addr = lsa6->sin6_addr; 4512 lsa6_storage.sin6_port = inp->sctp_lport; 4513 lsa6 = &lsa6_storage; 4514 ip6h->ip6_src = lsa6->sin6_addr; 4515 4516 if (port) { 4517 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 4518 sctp_handle_no_route(stcb, net, so_locked); 4519 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EHOSTUNREACH); 4520 sctp_m_freem(m); 4521 return (EHOSTUNREACH); 4522 } 4523 udp = (struct udphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4524 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 4525 udp->uh_dport = port; 4526 udp->uh_ulen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr))); 4527 udp->uh_sum = 0; 4528 sctphdr = (struct sctphdr *)((caddr_t)udp + sizeof(struct udphdr)); 4529 } else { 4530 sctphdr = (struct sctphdr *)((caddr_t)ip6h + sizeof(struct ip6_hdr)); 4531 } 4532 4533 sctphdr->src_port = src_port; 4534 sctphdr->dest_port = dest_port; 4535 sctphdr->v_tag = v_tag; 4536 sctphdr->checksum = 0; 4537 4538 /* 4539 * We set the hop limit now since there is a good 4540 * chance that our ro pointer is now filled 4541 */ 4542 ip6h->ip6_hlim = SCTP_GET_HLIM(inp, ro); 4543 ifp = SCTP_GET_IFN_VOID_FROM_ROUTE(ro); 4544 4545 #ifdef SCTP_DEBUG 4546 /* Copy to be sure something bad is not happening */ 4547 sin6->sin6_addr = ip6h->ip6_dst; 4548 lsa6->sin6_addr = ip6h->ip6_src; 4549 #endif 4550 4551 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Calling ipv6 output routine from low level\n"); 4552 SCTPDBG(SCTP_DEBUG_OUTPUT3, "src: "); 4553 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)lsa6); 4554 SCTPDBG(SCTP_DEBUG_OUTPUT3, "dst: "); 4555 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT3, (struct sockaddr *)sin6); 4556 if (net) { 4557 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 4558 /* 4559 * preserve the port and scope for link 4560 * local send 4561 */ 4562 prev_scope = sin6->sin6_scope_id; 4563 prev_port = sin6->sin6_port; 4564 } 4565 4566 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 4567 /* failed to prepend data, give up */ 4568 sctp_m_freem(m); 4569 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 4570 return (ENOMEM); 4571 } 4572 SCTP_ATTACH_CHAIN(o_pak, m, packet_length); 4573 if (port) { 4574 sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 4575 SCTP_STAT_INCR(sctps_sendswcrc); 4576 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), packet_length - sizeof(struct ip6_hdr))) == 0) { 4577 udp->uh_sum = 0xffff; 4578 } 4579 } else { 4580 m->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 4581 m->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 4582 SCTP_STAT_INCR(sctps_sendhwcrc); 4583 } 4584 /* send it out. table id is taken from stcb */ 4585 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4586 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4587 so = SCTP_INP_SO(inp); 4588 SCTP_SOCKET_UNLOCK(so, 0); 4589 } 4590 #endif 4591 #ifdef SCTP_PACKET_LOGGING 4592 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) 4593 sctp_packet_log(o_pak); 4594 #endif 4595 SCTP_PROBE5(send, NULL, stcb, ip6h, stcb, sctphdr); 4596 SCTP_IP6_OUTPUT(ret, o_pak, (struct route_in6 *)ro, &ifp, stcb, vrf_id); 4597 #if defined(__APPLE__) || defined(SCTP_SO_LOCK_TESTING) 4598 if ((SCTP_BASE_SYSCTL(sctp_output_unlocked)) && (so_locked)) { 4599 atomic_add_int(&stcb->asoc.refcnt, 1); 4600 SCTP_TCB_UNLOCK(stcb); 4601 SCTP_SOCKET_LOCK(so, 0); 4602 SCTP_TCB_LOCK(stcb); 4603 atomic_subtract_int(&stcb->asoc.refcnt, 1); 4604 } 4605 #endif 4606 if (net) { 4607 /* for link local this must be done */ 4608 sin6->sin6_scope_id = prev_scope; 4609 sin6->sin6_port = prev_port; 4610 } 4611 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 4612 if (port) { 4613 UDPSTAT_INC(udps_opackets); 4614 } 4615 SCTP_STAT_INCR(sctps_sendpackets); 4616 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 4617 if (ret) { 4618 SCTP_STAT_INCR(sctps_senderrors); 4619 } 4620 if (net == NULL) { 4621 /* Now if we had a temp route free it */ 4622 RO_NHFREE(ro); 4623 } else { 4624 /* 4625 * PMTU check versus smallest asoc MTU goes 4626 * here 4627 */ 4628 if (ro->ro_nh == NULL) { 4629 /* Route was freed */ 4630 if (net->ro._s_addr && 4631 net->src_addr_selected) { 4632 sctp_free_ifa(net->ro._s_addr); 4633 net->ro._s_addr = NULL; 4634 } 4635 net->src_addr_selected = 0; 4636 } 4637 if ((ro->ro_nh != NULL) && (net->ro._s_addr) && 4638 ((net->dest_state & SCTP_ADDR_NO_PMTUD) == 0)) { 4639 uint32_t mtu; 4640 4641 mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._l_addr.sa, ro->ro_nh); 4642 if (mtu > 0) { 4643 if (net->port) { 4644 mtu -= sizeof(struct udphdr); 4645 } 4646 if (mtu < net->mtu) { 4647 if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) { 4648 sctp_mtu_size_reset(inp, &stcb->asoc, mtu); 4649 } 4650 net->mtu = mtu; 4651 } 4652 } 4653 } else if (ifp) { 4654 if (ND_IFINFO(ifp)->linkmtu && 4655 (stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) { 4656 sctp_mtu_size_reset(inp, 4657 &stcb->asoc, 4658 ND_IFINFO(ifp)->linkmtu); 4659 } 4660 } 4661 } 4662 return (ret); 4663 } 4664 #endif 4665 default: 4666 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 4667 ((struct sockaddr *)to)->sa_family); 4668 sctp_m_freem(m); 4669 SCTP_LTRACE_ERR_RET_PKT(m, inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 4670 return (EFAULT); 4671 } 4672 } 4673 4674 4675 void 4676 sctp_send_initiate(struct sctp_inpcb *inp, struct sctp_tcb *stcb, int so_locked 4677 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 4678 SCTP_UNUSED 4679 #endif 4680 ) 4681 { 4682 struct mbuf *m, *m_last; 4683 struct sctp_nets *net; 4684 struct sctp_init_chunk *init; 4685 struct sctp_supported_addr_param *sup_addr; 4686 struct sctp_adaptation_layer_indication *ali; 4687 struct sctp_supported_chunk_types_param *pr_supported; 4688 struct sctp_paramhdr *ph; 4689 int cnt_inits_to = 0; 4690 int error; 4691 uint16_t num_ext, chunk_len, padding_len, parameter_len; 4692 4693 /* INIT's always go to the primary (and usually ONLY address) */ 4694 net = stcb->asoc.primary_destination; 4695 if (net == NULL) { 4696 net = TAILQ_FIRST(&stcb->asoc.nets); 4697 if (net == NULL) { 4698 /* TSNH */ 4699 return; 4700 } 4701 /* we confirm any address we send an INIT to */ 4702 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4703 (void)sctp_set_primary_addr(stcb, NULL, net); 4704 } else { 4705 /* we confirm any address we send an INIT to */ 4706 net->dest_state &= ~SCTP_ADDR_UNCONFIRMED; 4707 } 4708 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT\n"); 4709 #ifdef INET6 4710 if (net->ro._l_addr.sa.sa_family == AF_INET6) { 4711 /* 4712 * special hook, if we are sending to link local it will not 4713 * show up in our private address count. 4714 */ 4715 if (IN6_IS_ADDR_LINKLOCAL(&net->ro._l_addr.sin6.sin6_addr)) 4716 cnt_inits_to = 1; 4717 } 4718 #endif 4719 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 4720 /* This case should not happen */ 4721 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - failed timer?\n"); 4722 return; 4723 } 4724 /* start the INIT timer */ 4725 sctp_timer_start(SCTP_TIMER_TYPE_INIT, inp, stcb, net); 4726 4727 m = sctp_get_mbuf_for_msg(MCLBYTES, 1, M_NOWAIT, 1, MT_DATA); 4728 if (m == NULL) { 4729 /* No memory, INIT timer will re-attempt. */ 4730 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - mbuf?\n"); 4731 return; 4732 } 4733 chunk_len = (uint16_t)sizeof(struct sctp_init_chunk); 4734 padding_len = 0; 4735 /* Now lets put the chunk header in place */ 4736 init = mtod(m, struct sctp_init_chunk *); 4737 /* now the chunk header */ 4738 init->ch.chunk_type = SCTP_INITIATION; 4739 init->ch.chunk_flags = 0; 4740 /* fill in later from mbuf we build */ 4741 init->ch.chunk_length = 0; 4742 /* place in my tag */ 4743 init->init.initiate_tag = htonl(stcb->asoc.my_vtag); 4744 /* set up some of the credits. */ 4745 init->init.a_rwnd = htonl(max(inp->sctp_socket ? SCTP_SB_LIMIT_RCV(inp->sctp_socket) : 0, 4746 SCTP_MINIMAL_RWND)); 4747 init->init.num_outbound_streams = htons(stcb->asoc.pre_open_streams); 4748 init->init.num_inbound_streams = htons(stcb->asoc.max_inbound_streams); 4749 init->init.initial_tsn = htonl(stcb->asoc.init_seq_number); 4750 4751 /* Adaptation layer indication parameter */ 4752 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 4753 parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication); 4754 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 4755 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 4756 ali->ph.param_length = htons(parameter_len); 4757 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator); 4758 chunk_len += parameter_len; 4759 } 4760 4761 /* ECN parameter */ 4762 if (stcb->asoc.ecn_supported == 1) { 4763 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4764 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4765 ph->param_type = htons(SCTP_ECN_CAPABLE); 4766 ph->param_length = htons(parameter_len); 4767 chunk_len += parameter_len; 4768 } 4769 4770 /* PR-SCTP supported parameter */ 4771 if (stcb->asoc.prsctp_supported == 1) { 4772 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4773 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4774 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 4775 ph->param_length = htons(parameter_len); 4776 chunk_len += parameter_len; 4777 } 4778 4779 /* Add NAT friendly parameter. */ 4780 if (SCTP_BASE_SYSCTL(sctp_inits_include_nat_friendly)) { 4781 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4782 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 4783 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 4784 ph->param_length = htons(parameter_len); 4785 chunk_len += parameter_len; 4786 } 4787 4788 /* And now tell the peer which extensions we support */ 4789 num_ext = 0; 4790 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 4791 if (stcb->asoc.prsctp_supported == 1) { 4792 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 4793 if (stcb->asoc.idata_supported) { 4794 pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN; 4795 } 4796 } 4797 if (stcb->asoc.auth_supported == 1) { 4798 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 4799 } 4800 if (stcb->asoc.asconf_supported == 1) { 4801 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 4802 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 4803 } 4804 if (stcb->asoc.reconfig_supported == 1) { 4805 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 4806 } 4807 if (stcb->asoc.idata_supported) { 4808 pr_supported->chunk_types[num_ext++] = SCTP_IDATA; 4809 } 4810 if (stcb->asoc.nrsack_supported == 1) { 4811 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 4812 } 4813 if (stcb->asoc.pktdrop_supported == 1) { 4814 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 4815 } 4816 if (num_ext > 0) { 4817 parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext; 4818 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 4819 pr_supported->ph.param_length = htons(parameter_len); 4820 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4821 chunk_len += parameter_len; 4822 } 4823 /* add authentication parameters */ 4824 if (stcb->asoc.auth_supported) { 4825 /* attach RANDOM parameter, if available */ 4826 if (stcb->asoc.authinfo.random != NULL) { 4827 struct sctp_auth_random *randp; 4828 4829 if (padding_len > 0) { 4830 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4831 chunk_len += padding_len; 4832 padding_len = 0; 4833 } 4834 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 4835 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + stcb->asoc.authinfo.random_len; 4836 /* random key already contains the header */ 4837 memcpy(randp, stcb->asoc.authinfo.random->key, parameter_len); 4838 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4839 chunk_len += parameter_len; 4840 } 4841 /* add HMAC_ALGO parameter */ 4842 if (stcb->asoc.local_hmacs != NULL) { 4843 struct sctp_auth_hmac_algo *hmacs; 4844 4845 if (padding_len > 0) { 4846 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4847 chunk_len += padding_len; 4848 padding_len = 0; 4849 } 4850 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 4851 parameter_len = (uint16_t)(sizeof(struct sctp_auth_hmac_algo) + 4852 stcb->asoc.local_hmacs->num_algo * sizeof(uint16_t)); 4853 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 4854 hmacs->ph.param_length = htons(parameter_len); 4855 sctp_serialize_hmaclist(stcb->asoc.local_hmacs, (uint8_t *)hmacs->hmac_ids); 4856 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4857 chunk_len += parameter_len; 4858 } 4859 /* add CHUNKS parameter */ 4860 if (stcb->asoc.local_auth_chunks != NULL) { 4861 struct sctp_auth_chunk_list *chunks; 4862 4863 if (padding_len > 0) { 4864 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4865 chunk_len += padding_len; 4866 padding_len = 0; 4867 } 4868 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 4869 parameter_len = (uint16_t)(sizeof(struct sctp_auth_chunk_list) + 4870 sctp_auth_get_chklist_size(stcb->asoc.local_auth_chunks)); 4871 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 4872 chunks->ph.param_length = htons(parameter_len); 4873 sctp_serialize_auth_chunks(stcb->asoc.local_auth_chunks, chunks->chunk_types); 4874 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 4875 chunk_len += parameter_len; 4876 } 4877 } 4878 4879 /* now any cookie time extensions */ 4880 if (stcb->asoc.cookie_preserve_req) { 4881 struct sctp_cookie_perserve_param *cookie_preserve; 4882 4883 if (padding_len > 0) { 4884 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4885 chunk_len += padding_len; 4886 padding_len = 0; 4887 } 4888 parameter_len = (uint16_t)sizeof(struct sctp_cookie_perserve_param); 4889 cookie_preserve = (struct sctp_cookie_perserve_param *)(mtod(m, caddr_t)+chunk_len); 4890 cookie_preserve->ph.param_type = htons(SCTP_COOKIE_PRESERVE); 4891 cookie_preserve->ph.param_length = htons(parameter_len); 4892 cookie_preserve->time = htonl(stcb->asoc.cookie_preserve_req); 4893 stcb->asoc.cookie_preserve_req = 0; 4894 chunk_len += parameter_len; 4895 } 4896 4897 if (stcb->asoc.scope.ipv4_addr_legal || stcb->asoc.scope.ipv6_addr_legal) { 4898 uint8_t i; 4899 4900 if (padding_len > 0) { 4901 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 4902 chunk_len += padding_len; 4903 padding_len = 0; 4904 } 4905 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 4906 if (stcb->asoc.scope.ipv4_addr_legal) { 4907 parameter_len += (uint16_t)sizeof(uint16_t); 4908 } 4909 if (stcb->asoc.scope.ipv6_addr_legal) { 4910 parameter_len += (uint16_t)sizeof(uint16_t); 4911 } 4912 sup_addr = (struct sctp_supported_addr_param *)(mtod(m, caddr_t)+chunk_len); 4913 sup_addr->ph.param_type = htons(SCTP_SUPPORTED_ADDRTYPE); 4914 sup_addr->ph.param_length = htons(parameter_len); 4915 i = 0; 4916 if (stcb->asoc.scope.ipv4_addr_legal) { 4917 sup_addr->addr_type[i++] = htons(SCTP_IPV4_ADDRESS); 4918 } 4919 if (stcb->asoc.scope.ipv6_addr_legal) { 4920 sup_addr->addr_type[i++] = htons(SCTP_IPV6_ADDRESS); 4921 } 4922 padding_len = 4 - 2 * i; 4923 chunk_len += parameter_len; 4924 } 4925 4926 SCTP_BUF_LEN(m) = chunk_len; 4927 /* now the addresses */ 4928 /* 4929 * To optimize this we could put the scoping stuff into a structure 4930 * and remove the individual uint8's from the assoc structure. Then 4931 * we could just sifa in the address within the stcb. But for now 4932 * this is a quick hack to get the address stuff teased apart. 4933 */ 4934 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &stcb->asoc.scope, 4935 m, cnt_inits_to, 4936 &padding_len, &chunk_len); 4937 4938 init->ch.chunk_length = htons(chunk_len); 4939 if (padding_len > 0) { 4940 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 4941 sctp_m_freem(m); 4942 return; 4943 } 4944 } 4945 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Sending INIT - calls lowlevel_output\n"); 4946 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 4947 (struct sockaddr *)&net->ro._l_addr, 4948 m, 0, NULL, 0, 0, 0, 0, 4949 inp->sctp_lport, stcb->rport, htonl(0), 4950 net->port, NULL, 4951 0, 0, 4952 so_locked))) { 4953 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error); 4954 if (error == ENOBUFS) { 4955 stcb->asoc.ifp_had_enobuf = 1; 4956 SCTP_STAT_INCR(sctps_lowlevelerr); 4957 } 4958 } else { 4959 stcb->asoc.ifp_had_enobuf = 0; 4960 } 4961 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 4962 (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); 4963 } 4964 4965 struct mbuf * 4966 sctp_arethere_unrecognized_parameters(struct mbuf *in_initpkt, 4967 int param_offset, int *abort_processing, 4968 struct sctp_chunkhdr *cp, 4969 int *nat_friendly, 4970 int *cookie_found) 4971 { 4972 /* 4973 * Given a mbuf containing an INIT or INIT-ACK with the param_offset 4974 * being equal to the beginning of the params i.e. (iphlen + 4975 * sizeof(struct sctp_init_msg) parse through the parameters to the 4976 * end of the mbuf verifying that all parameters are known. 4977 * 4978 * For unknown parameters build and return a mbuf with 4979 * UNRECOGNIZED_PARAMETER errors. If the flags indicate to stop 4980 * processing this chunk stop, and set *abort_processing to 1. 4981 * 4982 * By having param_offset be pre-set to where parameters begin it is 4983 * hoped that this routine may be reused in the future by new 4984 * features. 4985 */ 4986 struct sctp_paramhdr *phdr, params; 4987 4988 struct mbuf *mat, *m_tmp, *op_err, *op_err_last; 4989 int at, limit, pad_needed; 4990 uint16_t ptype, plen, padded_size; 4991 4992 *abort_processing = 0; 4993 if (cookie_found != NULL) { 4994 *cookie_found = 0; 4995 } 4996 mat = in_initpkt; 4997 limit = ntohs(cp->chunk_length) - sizeof(struct sctp_init_chunk); 4998 at = param_offset; 4999 op_err = NULL; 5000 op_err_last = NULL; 5001 pad_needed = 0; 5002 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Check for unrecognized param's\n"); 5003 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 5004 while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) { 5005 ptype = ntohs(phdr->param_type); 5006 plen = ntohs(phdr->param_length); 5007 if ((plen > limit) || (plen < sizeof(struct sctp_paramhdr))) { 5008 /* wacked parameter */ 5009 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error %d\n", plen); 5010 goto invalid_size; 5011 } 5012 limit -= SCTP_SIZE32(plen); 5013 /*- 5014 * All parameters for all chunks that we know/understand are 5015 * listed here. We process them other places and make 5016 * appropriate stop actions per the upper bits. However this 5017 * is the generic routine processor's can call to get back 5018 * an operr.. to either incorporate (init-ack) or send. 5019 */ 5020 padded_size = SCTP_SIZE32(plen); 5021 switch (ptype) { 5022 /* Param's with variable size */ 5023 case SCTP_HEARTBEAT_INFO: 5024 case SCTP_UNRECOG_PARAM: 5025 case SCTP_ERROR_CAUSE_IND: 5026 /* ok skip fwd */ 5027 at += padded_size; 5028 break; 5029 case SCTP_STATE_COOKIE: 5030 if (cookie_found != NULL) { 5031 *cookie_found = 1; 5032 } 5033 at += padded_size; 5034 break; 5035 /* Param's with variable size within a range */ 5036 case SCTP_CHUNK_LIST: 5037 case SCTP_SUPPORTED_CHUNK_EXT: 5038 if (padded_size > (sizeof(struct sctp_supported_chunk_types_param) + (sizeof(uint8_t) * SCTP_MAX_SUPPORTED_EXT))) { 5039 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error chklist %d\n", plen); 5040 goto invalid_size; 5041 } 5042 at += padded_size; 5043 break; 5044 case SCTP_SUPPORTED_ADDRTYPE: 5045 if (padded_size > SCTP_MAX_ADDR_PARAMS_SIZE) { 5046 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error supaddrtype %d\n", plen); 5047 goto invalid_size; 5048 } 5049 at += padded_size; 5050 break; 5051 case SCTP_RANDOM: 5052 if (padded_size > (sizeof(struct sctp_auth_random) + SCTP_RANDOM_MAX_SIZE)) { 5053 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error random %d\n", plen); 5054 goto invalid_size; 5055 } 5056 at += padded_size; 5057 break; 5058 case SCTP_SET_PRIM_ADDR: 5059 case SCTP_DEL_IP_ADDRESS: 5060 case SCTP_ADD_IP_ADDRESS: 5061 if ((padded_size != sizeof(struct sctp_asconf_addrv4_param)) && 5062 (padded_size != sizeof(struct sctp_asconf_addr_param))) { 5063 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error setprim %d\n", plen); 5064 goto invalid_size; 5065 } 5066 at += padded_size; 5067 break; 5068 /* Param's with a fixed size */ 5069 case SCTP_IPV4_ADDRESS: 5070 if (padded_size != sizeof(struct sctp_ipv4addr_param)) { 5071 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv4 addr %d\n", plen); 5072 goto invalid_size; 5073 } 5074 at += padded_size; 5075 break; 5076 case SCTP_IPV6_ADDRESS: 5077 if (padded_size != sizeof(struct sctp_ipv6addr_param)) { 5078 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ipv6 addr %d\n", plen); 5079 goto invalid_size; 5080 } 5081 at += padded_size; 5082 break; 5083 case SCTP_COOKIE_PRESERVE: 5084 if (padded_size != sizeof(struct sctp_cookie_perserve_param)) { 5085 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error cookie-preserve %d\n", plen); 5086 goto invalid_size; 5087 } 5088 at += padded_size; 5089 break; 5090 case SCTP_HAS_NAT_SUPPORT: 5091 *nat_friendly = 1; 5092 /* fall through */ 5093 case SCTP_PRSCTP_SUPPORTED: 5094 if (padded_size != sizeof(struct sctp_paramhdr)) { 5095 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error prsctp/nat support %d\n", plen); 5096 goto invalid_size; 5097 } 5098 at += padded_size; 5099 break; 5100 case SCTP_ECN_CAPABLE: 5101 if (padded_size != sizeof(struct sctp_paramhdr)) { 5102 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error ecn %d\n", plen); 5103 goto invalid_size; 5104 } 5105 at += padded_size; 5106 break; 5107 case SCTP_ULP_ADAPTATION: 5108 if (padded_size != sizeof(struct sctp_adaptation_layer_indication)) { 5109 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error adapatation %d\n", plen); 5110 goto invalid_size; 5111 } 5112 at += padded_size; 5113 break; 5114 case SCTP_SUCCESS_REPORT: 5115 if (padded_size != sizeof(struct sctp_asconf_paramhdr)) { 5116 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Invalid size - error success %d\n", plen); 5117 goto invalid_size; 5118 } 5119 at += padded_size; 5120 break; 5121 case SCTP_HOSTNAME_ADDRESS: 5122 { 5123 /* Hostname parameters are deprecated. */ 5124 struct sctp_gen_error_cause *cause; 5125 int l_len; 5126 5127 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Can't handle hostname addresses.. abort processing\n"); 5128 *abort_processing = 1; 5129 sctp_m_freem(op_err); 5130 op_err = NULL; 5131 op_err_last = NULL; 5132 #ifdef INET6 5133 l_len = SCTP_MIN_OVERHEAD; 5134 #else 5135 l_len = SCTP_MIN_V4_OVERHEAD; 5136 #endif 5137 l_len += sizeof(struct sctp_chunkhdr); 5138 l_len += sizeof(struct sctp_gen_error_cause); 5139 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5140 if (op_err != NULL) { 5141 /* 5142 * Pre-reserve space for IP, SCTP, 5143 * and chunk header. 5144 */ 5145 #ifdef INET6 5146 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5147 #else 5148 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5149 #endif 5150 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5151 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5152 SCTP_BUF_LEN(op_err) = sizeof(struct sctp_gen_error_cause); 5153 cause = mtod(op_err, struct sctp_gen_error_cause *); 5154 cause->code = htons(SCTP_CAUSE_UNRESOLVABLE_ADDR); 5155 cause->length = htons((uint16_t)(sizeof(struct sctp_gen_error_cause) + plen)); 5156 SCTP_BUF_NEXT(op_err) = SCTP_M_COPYM(mat, at, plen, M_NOWAIT); 5157 if (SCTP_BUF_NEXT(op_err) == NULL) { 5158 sctp_m_freem(op_err); 5159 op_err = NULL; 5160 op_err_last = NULL; 5161 } 5162 } 5163 return (op_err); 5164 break; 5165 } 5166 default: 5167 /* 5168 * we do not recognize the parameter figure out what 5169 * we do. 5170 */ 5171 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Hit default param %x\n", ptype); 5172 if ((ptype & 0x4000) == 0x4000) { 5173 /* Report bit is set?? */ 5174 SCTPDBG(SCTP_DEBUG_OUTPUT1, "report op err\n"); 5175 if (op_err == NULL) { 5176 int l_len; 5177 5178 /* Ok need to try to get an mbuf */ 5179 #ifdef INET6 5180 l_len = SCTP_MIN_OVERHEAD; 5181 #else 5182 l_len = SCTP_MIN_V4_OVERHEAD; 5183 #endif 5184 l_len += sizeof(struct sctp_chunkhdr); 5185 l_len += sizeof(struct sctp_paramhdr); 5186 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5187 if (op_err) { 5188 SCTP_BUF_LEN(op_err) = 0; 5189 #ifdef INET6 5190 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5191 #else 5192 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5193 #endif 5194 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5195 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5196 op_err_last = op_err; 5197 } 5198 } 5199 if (op_err != NULL) { 5200 /* If we have space */ 5201 struct sctp_paramhdr *param; 5202 5203 if (pad_needed > 0) { 5204 op_err_last = sctp_add_pad_tombuf(op_err_last, pad_needed); 5205 } 5206 if (op_err_last == NULL) { 5207 sctp_m_freem(op_err); 5208 op_err = NULL; 5209 op_err_last = NULL; 5210 goto more_processing; 5211 } 5212 if (M_TRAILINGSPACE(op_err_last) < (int)sizeof(struct sctp_paramhdr)) { 5213 m_tmp = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_NOWAIT, 1, MT_DATA); 5214 if (m_tmp == NULL) { 5215 sctp_m_freem(op_err); 5216 op_err = NULL; 5217 op_err_last = NULL; 5218 goto more_processing; 5219 } 5220 SCTP_BUF_LEN(m_tmp) = 0; 5221 SCTP_BUF_NEXT(m_tmp) = NULL; 5222 SCTP_BUF_NEXT(op_err_last) = m_tmp; 5223 op_err_last = m_tmp; 5224 } 5225 param = (struct sctp_paramhdr *)(mtod(op_err_last, caddr_t)+SCTP_BUF_LEN(op_err_last)); 5226 param->param_type = htons(SCTP_UNRECOG_PARAM); 5227 param->param_length = htons((uint16_t)sizeof(struct sctp_paramhdr) + plen); 5228 SCTP_BUF_LEN(op_err_last) += sizeof(struct sctp_paramhdr); 5229 SCTP_BUF_NEXT(op_err_last) = SCTP_M_COPYM(mat, at, plen, M_NOWAIT); 5230 if (SCTP_BUF_NEXT(op_err_last) == NULL) { 5231 sctp_m_freem(op_err); 5232 op_err = NULL; 5233 op_err_last = NULL; 5234 goto more_processing; 5235 } else { 5236 while (SCTP_BUF_NEXT(op_err_last) != NULL) { 5237 op_err_last = SCTP_BUF_NEXT(op_err_last); 5238 } 5239 } 5240 if (plen % 4 != 0) { 5241 pad_needed = 4 - (plen % 4); 5242 } else { 5243 pad_needed = 0; 5244 } 5245 } 5246 } 5247 more_processing: 5248 if ((ptype & 0x8000) == 0x0000) { 5249 SCTPDBG(SCTP_DEBUG_OUTPUT1, "stop proc\n"); 5250 return (op_err); 5251 } else { 5252 /* skip this chunk and continue processing */ 5253 SCTPDBG(SCTP_DEBUG_OUTPUT1, "move on\n"); 5254 at += SCTP_SIZE32(plen); 5255 } 5256 break; 5257 5258 } 5259 phdr = sctp_get_next_param(mat, at, ¶ms, sizeof(params)); 5260 } 5261 return (op_err); 5262 invalid_size: 5263 SCTPDBG(SCTP_DEBUG_OUTPUT1, "abort flag set\n"); 5264 *abort_processing = 1; 5265 sctp_m_freem(op_err); 5266 op_err = NULL; 5267 op_err_last = NULL; 5268 if (phdr != NULL) { 5269 struct sctp_paramhdr *param; 5270 int l_len; 5271 #ifdef INET6 5272 l_len = SCTP_MIN_OVERHEAD; 5273 #else 5274 l_len = SCTP_MIN_V4_OVERHEAD; 5275 #endif 5276 l_len += sizeof(struct sctp_chunkhdr); 5277 l_len += (2 * sizeof(struct sctp_paramhdr)); 5278 op_err = sctp_get_mbuf_for_msg(l_len, 0, M_NOWAIT, 1, MT_DATA); 5279 if (op_err) { 5280 SCTP_BUF_LEN(op_err) = 0; 5281 #ifdef INET6 5282 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip6_hdr)); 5283 #else 5284 SCTP_BUF_RESV_UF(op_err, sizeof(struct ip)); 5285 #endif 5286 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctphdr)); 5287 SCTP_BUF_RESV_UF(op_err, sizeof(struct sctp_chunkhdr)); 5288 SCTP_BUF_LEN(op_err) = 2 * sizeof(struct sctp_paramhdr); 5289 param = mtod(op_err, struct sctp_paramhdr *); 5290 param->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 5291 param->param_length = htons(2 * sizeof(struct sctp_paramhdr)); 5292 param++; 5293 param->param_type = htons(ptype); 5294 param->param_length = htons(plen); 5295 } 5296 } 5297 return (op_err); 5298 } 5299 5300 static int 5301 sctp_are_there_new_addresses(struct sctp_association *asoc, 5302 struct mbuf *in_initpkt, int offset, struct sockaddr *src) 5303 { 5304 /* 5305 * Given a INIT packet, look through the packet to verify that there 5306 * are NO new addresses. As we go through the parameters add reports 5307 * of any un-understood parameters that require an error. Also we 5308 * must return (1) to drop the packet if we see a un-understood 5309 * parameter that tells us to drop the chunk. 5310 */ 5311 struct sockaddr *sa_touse; 5312 struct sockaddr *sa; 5313 struct sctp_paramhdr *phdr, params; 5314 uint16_t ptype, plen; 5315 uint8_t fnd; 5316 struct sctp_nets *net; 5317 int check_src; 5318 #ifdef INET 5319 struct sockaddr_in sin4, *sa4; 5320 #endif 5321 #ifdef INET6 5322 struct sockaddr_in6 sin6, *sa6; 5323 #endif 5324 5325 #ifdef INET 5326 memset(&sin4, 0, sizeof(sin4)); 5327 sin4.sin_family = AF_INET; 5328 sin4.sin_len = sizeof(sin4); 5329 #endif 5330 #ifdef INET6 5331 memset(&sin6, 0, sizeof(sin6)); 5332 sin6.sin6_family = AF_INET6; 5333 sin6.sin6_len = sizeof(sin6); 5334 #endif 5335 /* First what about the src address of the pkt ? */ 5336 check_src = 0; 5337 switch (src->sa_family) { 5338 #ifdef INET 5339 case AF_INET: 5340 if (asoc->scope.ipv4_addr_legal) { 5341 check_src = 1; 5342 } 5343 break; 5344 #endif 5345 #ifdef INET6 5346 case AF_INET6: 5347 if (asoc->scope.ipv6_addr_legal) { 5348 check_src = 1; 5349 } 5350 break; 5351 #endif 5352 default: 5353 /* TSNH */ 5354 break; 5355 } 5356 if (check_src) { 5357 fnd = 0; 5358 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5359 sa = (struct sockaddr *)&net->ro._l_addr; 5360 if (sa->sa_family == src->sa_family) { 5361 #ifdef INET 5362 if (sa->sa_family == AF_INET) { 5363 struct sockaddr_in *src4; 5364 5365 sa4 = (struct sockaddr_in *)sa; 5366 src4 = (struct sockaddr_in *)src; 5367 if (sa4->sin_addr.s_addr == src4->sin_addr.s_addr) { 5368 fnd = 1; 5369 break; 5370 } 5371 } 5372 #endif 5373 #ifdef INET6 5374 if (sa->sa_family == AF_INET6) { 5375 struct sockaddr_in6 *src6; 5376 5377 sa6 = (struct sockaddr_in6 *)sa; 5378 src6 = (struct sockaddr_in6 *)src; 5379 if (SCTP6_ARE_ADDR_EQUAL(sa6, src6)) { 5380 fnd = 1; 5381 break; 5382 } 5383 } 5384 #endif 5385 } 5386 } 5387 if (fnd == 0) { 5388 /* New address added! no need to look further. */ 5389 return (1); 5390 } 5391 } 5392 /* Ok so far lets munge through the rest of the packet */ 5393 offset += sizeof(struct sctp_init_chunk); 5394 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5395 while (phdr) { 5396 sa_touse = NULL; 5397 ptype = ntohs(phdr->param_type); 5398 plen = ntohs(phdr->param_length); 5399 switch (ptype) { 5400 #ifdef INET 5401 case SCTP_IPV4_ADDRESS: 5402 { 5403 struct sctp_ipv4addr_param *p4, p4_buf; 5404 5405 if (plen != sizeof(struct sctp_ipv4addr_param)) { 5406 return (1); 5407 } 5408 phdr = sctp_get_next_param(in_initpkt, offset, 5409 (struct sctp_paramhdr *)&p4_buf, sizeof(p4_buf)); 5410 if (phdr == NULL) { 5411 return (1); 5412 } 5413 if (asoc->scope.ipv4_addr_legal) { 5414 p4 = (struct sctp_ipv4addr_param *)phdr; 5415 sin4.sin_addr.s_addr = p4->addr; 5416 sa_touse = (struct sockaddr *)&sin4; 5417 } 5418 break; 5419 } 5420 #endif 5421 #ifdef INET6 5422 case SCTP_IPV6_ADDRESS: 5423 { 5424 struct sctp_ipv6addr_param *p6, p6_buf; 5425 5426 if (plen != sizeof(struct sctp_ipv6addr_param)) { 5427 return (1); 5428 } 5429 phdr = sctp_get_next_param(in_initpkt, offset, 5430 (struct sctp_paramhdr *)&p6_buf, sizeof(p6_buf)); 5431 if (phdr == NULL) { 5432 return (1); 5433 } 5434 if (asoc->scope.ipv6_addr_legal) { 5435 p6 = (struct sctp_ipv6addr_param *)phdr; 5436 memcpy((caddr_t)&sin6.sin6_addr, p6->addr, 5437 sizeof(p6->addr)); 5438 sa_touse = (struct sockaddr *)&sin6; 5439 } 5440 break; 5441 } 5442 #endif 5443 default: 5444 sa_touse = NULL; 5445 break; 5446 } 5447 if (sa_touse) { 5448 /* ok, sa_touse points to one to check */ 5449 fnd = 0; 5450 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 5451 sa = (struct sockaddr *)&net->ro._l_addr; 5452 if (sa->sa_family != sa_touse->sa_family) { 5453 continue; 5454 } 5455 #ifdef INET 5456 if (sa->sa_family == AF_INET) { 5457 sa4 = (struct sockaddr_in *)sa; 5458 if (sa4->sin_addr.s_addr == 5459 sin4.sin_addr.s_addr) { 5460 fnd = 1; 5461 break; 5462 } 5463 } 5464 #endif 5465 #ifdef INET6 5466 if (sa->sa_family == AF_INET6) { 5467 sa6 = (struct sockaddr_in6 *)sa; 5468 if (SCTP6_ARE_ADDR_EQUAL( 5469 sa6, &sin6)) { 5470 fnd = 1; 5471 break; 5472 } 5473 } 5474 #endif 5475 } 5476 if (!fnd) { 5477 /* New addr added! no need to look further */ 5478 return (1); 5479 } 5480 } 5481 offset += SCTP_SIZE32(plen); 5482 phdr = sctp_get_next_param(in_initpkt, offset, ¶ms, sizeof(params)); 5483 } 5484 return (0); 5485 } 5486 5487 /* 5488 * Given a MBUF chain that was sent into us containing an INIT. Build a 5489 * INIT-ACK with COOKIE and send back. We assume that the in_initpkt has done 5490 * a pullup to include IPv6/4header, SCTP header and initial part of INIT 5491 * message (i.e. the struct sctp_init_msg). 5492 */ 5493 void 5494 sctp_send_initiate_ack(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 5495 struct sctp_nets *src_net, struct mbuf *init_pkt, 5496 int iphlen, int offset, 5497 struct sockaddr *src, struct sockaddr *dst, 5498 struct sctphdr *sh, struct sctp_init_chunk *init_chk, 5499 uint8_t mflowtype, uint32_t mflowid, 5500 uint32_t vrf_id, uint16_t port) 5501 { 5502 struct sctp_association *asoc; 5503 struct mbuf *m, *m_tmp, *m_last, *m_cookie, *op_err; 5504 struct sctp_init_ack_chunk *initack; 5505 struct sctp_adaptation_layer_indication *ali; 5506 struct sctp_supported_chunk_types_param *pr_supported; 5507 struct sctp_paramhdr *ph; 5508 union sctp_sockstore *over_addr; 5509 struct sctp_scoping scp; 5510 struct timeval now; 5511 #ifdef INET 5512 struct sockaddr_in *dst4 = (struct sockaddr_in *)dst; 5513 struct sockaddr_in *src4 = (struct sockaddr_in *)src; 5514 struct sockaddr_in *sin; 5515 #endif 5516 #ifdef INET6 5517 struct sockaddr_in6 *dst6 = (struct sockaddr_in6 *)dst; 5518 struct sockaddr_in6 *src6 = (struct sockaddr_in6 *)src; 5519 struct sockaddr_in6 *sin6; 5520 #endif 5521 struct sockaddr *to; 5522 struct sctp_state_cookie stc; 5523 struct sctp_nets *net = NULL; 5524 uint8_t *signature = NULL; 5525 int cnt_inits_to = 0; 5526 uint16_t his_limit, i_want; 5527 int abort_flag; 5528 int nat_friendly = 0; 5529 int error; 5530 struct socket *so; 5531 uint16_t num_ext, chunk_len, padding_len, parameter_len; 5532 5533 if (stcb) { 5534 asoc = &stcb->asoc; 5535 } else { 5536 asoc = NULL; 5537 } 5538 if ((asoc != NULL) && 5539 (SCTP_GET_STATE(stcb) != SCTP_STATE_COOKIE_WAIT)) { 5540 if (sctp_are_there_new_addresses(asoc, init_pkt, offset, src)) { 5541 /* 5542 * new addresses, out of here in non-cookie-wait 5543 * states 5544 * 5545 * Send an ABORT, without the new address error 5546 * cause. This looks no different than if no 5547 * listener was present. 5548 */ 5549 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5550 "Address added"); 5551 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err, 5552 mflowtype, mflowid, inp->fibnum, 5553 vrf_id, port); 5554 return; 5555 } 5556 if (src_net != NULL && (src_net->port != port)) { 5557 /* 5558 * change of remote encapsulation port, out of here 5559 * in non-cookie-wait states 5560 * 5561 * Send an ABORT, without an specific error cause. 5562 * This looks no different than if no listener was 5563 * present. 5564 */ 5565 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5566 "Remote encapsulation port changed"); 5567 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 0, op_err, 5568 mflowtype, mflowid, inp->fibnum, 5569 vrf_id, port); 5570 return; 5571 } 5572 } 5573 abort_flag = 0; 5574 op_err = sctp_arethere_unrecognized_parameters(init_pkt, 5575 (offset + sizeof(struct sctp_init_chunk)), 5576 &abort_flag, 5577 (struct sctp_chunkhdr *)init_chk, 5578 &nat_friendly, NULL); 5579 if (abort_flag) { 5580 do_a_abort: 5581 if (op_err == NULL) { 5582 char msg[SCTP_DIAG_INFO_LEN]; 5583 5584 snprintf(msg, sizeof(msg), "%s:%d at %s", __FILE__, __LINE__, __func__); 5585 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 5586 msg); 5587 } 5588 sctp_send_abort(init_pkt, iphlen, src, dst, sh, 5589 init_chk->init.initiate_tag, op_err, 5590 mflowtype, mflowid, inp->fibnum, 5591 vrf_id, port); 5592 return; 5593 } 5594 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 5595 if (m == NULL) { 5596 /* No memory, INIT timer will re-attempt. */ 5597 sctp_m_freem(op_err); 5598 return; 5599 } 5600 chunk_len = (uint16_t)sizeof(struct sctp_init_ack_chunk); 5601 padding_len = 0; 5602 5603 /* 5604 * We might not overwrite the identification[] completely and on 5605 * some platforms time_entered will contain some padding. Therefore 5606 * zero out the cookie to avoid putting uninitialized memory on the 5607 * wire. 5608 */ 5609 memset(&stc, 0, sizeof(struct sctp_state_cookie)); 5610 5611 /* the time I built cookie */ 5612 (void)SCTP_GETTIME_TIMEVAL(&now); 5613 stc.time_entered.tv_sec = now.tv_sec; 5614 stc.time_entered.tv_usec = now.tv_usec; 5615 5616 /* populate any tie tags */ 5617 if (asoc != NULL) { 5618 /* unlock before tag selections */ 5619 stc.tie_tag_my_vtag = asoc->my_vtag_nonce; 5620 stc.tie_tag_peer_vtag = asoc->peer_vtag_nonce; 5621 stc.cookie_life = asoc->cookie_life; 5622 net = asoc->primary_destination; 5623 } else { 5624 stc.tie_tag_my_vtag = 0; 5625 stc.tie_tag_peer_vtag = 0; 5626 /* life I will award this cookie */ 5627 stc.cookie_life = inp->sctp_ep.def_cookie_life; 5628 } 5629 5630 /* copy in the ports for later check */ 5631 stc.myport = sh->dest_port; 5632 stc.peerport = sh->src_port; 5633 5634 /* 5635 * If we wanted to honor cookie life extensions, we would add to 5636 * stc.cookie_life. For now we should NOT honor any extension 5637 */ 5638 stc.site_scope = stc.local_scope = stc.loopback_scope = 0; 5639 if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 5640 stc.ipv6_addr_legal = 1; 5641 if (SCTP_IPV6_V6ONLY(inp)) { 5642 stc.ipv4_addr_legal = 0; 5643 } else { 5644 stc.ipv4_addr_legal = 1; 5645 } 5646 } else { 5647 stc.ipv6_addr_legal = 0; 5648 stc.ipv4_addr_legal = 1; 5649 } 5650 stc.ipv4_scope = 0; 5651 if (net == NULL) { 5652 to = src; 5653 switch (dst->sa_family) { 5654 #ifdef INET 5655 case AF_INET: 5656 { 5657 /* lookup address */ 5658 stc.address[0] = src4->sin_addr.s_addr; 5659 stc.address[1] = 0; 5660 stc.address[2] = 0; 5661 stc.address[3] = 0; 5662 stc.addr_type = SCTP_IPV4_ADDRESS; 5663 /* local from address */ 5664 stc.laddress[0] = dst4->sin_addr.s_addr; 5665 stc.laddress[1] = 0; 5666 stc.laddress[2] = 0; 5667 stc.laddress[3] = 0; 5668 stc.laddr_type = SCTP_IPV4_ADDRESS; 5669 /* scope_id is only for v6 */ 5670 stc.scope_id = 0; 5671 if ((IN4_ISPRIVATE_ADDRESS(&src4->sin_addr)) || 5672 (IN4_ISPRIVATE_ADDRESS(&dst4->sin_addr))) { 5673 stc.ipv4_scope = 1; 5674 } 5675 /* Must use the address in this case */ 5676 if (sctp_is_address_on_local_host(src, vrf_id)) { 5677 stc.loopback_scope = 1; 5678 stc.ipv4_scope = 1; 5679 stc.site_scope = 1; 5680 stc.local_scope = 0; 5681 } 5682 break; 5683 } 5684 #endif 5685 #ifdef INET6 5686 case AF_INET6: 5687 { 5688 stc.addr_type = SCTP_IPV6_ADDRESS; 5689 memcpy(&stc.address, &src6->sin6_addr, sizeof(struct in6_addr)); 5690 stc.scope_id = ntohs(in6_getscope(&src6->sin6_addr)); 5691 if (sctp_is_address_on_local_host(src, vrf_id)) { 5692 stc.loopback_scope = 1; 5693 stc.local_scope = 0; 5694 stc.site_scope = 1; 5695 stc.ipv4_scope = 1; 5696 } else if (IN6_IS_ADDR_LINKLOCAL(&src6->sin6_addr) || 5697 IN6_IS_ADDR_LINKLOCAL(&dst6->sin6_addr)) { 5698 /* 5699 * If the new destination or source 5700 * is a LINK_LOCAL we must have 5701 * common both site and local scope. 5702 * Don't set local scope though 5703 * since we must depend on the 5704 * source to be added implicitly. We 5705 * cannot assure just because we 5706 * share one link that all links are 5707 * common. 5708 */ 5709 stc.local_scope = 0; 5710 stc.site_scope = 1; 5711 stc.ipv4_scope = 1; 5712 /* 5713 * we start counting for the private 5714 * address stuff at 1. since the 5715 * link local we source from won't 5716 * show up in our scoped count. 5717 */ 5718 cnt_inits_to = 1; 5719 /* 5720 * pull out the scope_id from 5721 * incoming pkt 5722 */ 5723 } else if (IN6_IS_ADDR_SITELOCAL(&src6->sin6_addr) || 5724 IN6_IS_ADDR_SITELOCAL(&dst6->sin6_addr)) { 5725 /* 5726 * If the new destination or source 5727 * is SITE_LOCAL then we must have 5728 * site scope in common. 5729 */ 5730 stc.site_scope = 1; 5731 } 5732 memcpy(&stc.laddress, &dst6->sin6_addr, sizeof(struct in6_addr)); 5733 stc.laddr_type = SCTP_IPV6_ADDRESS; 5734 break; 5735 } 5736 #endif 5737 default: 5738 /* TSNH */ 5739 goto do_a_abort; 5740 break; 5741 } 5742 } else { 5743 /* set the scope per the existing tcb */ 5744 5745 #ifdef INET6 5746 struct sctp_nets *lnet; 5747 #endif 5748 5749 stc.loopback_scope = asoc->scope.loopback_scope; 5750 stc.ipv4_scope = asoc->scope.ipv4_local_scope; 5751 stc.site_scope = asoc->scope.site_scope; 5752 stc.local_scope = asoc->scope.local_scope; 5753 #ifdef INET6 5754 /* Why do we not consider IPv4 LL addresses? */ 5755 TAILQ_FOREACH(lnet, &asoc->nets, sctp_next) { 5756 if (lnet->ro._l_addr.sin6.sin6_family == AF_INET6) { 5757 if (IN6_IS_ADDR_LINKLOCAL(&lnet->ro._l_addr.sin6.sin6_addr)) { 5758 /* 5759 * if we have a LL address, start 5760 * counting at 1. 5761 */ 5762 cnt_inits_to = 1; 5763 } 5764 } 5765 } 5766 #endif 5767 /* use the net pointer */ 5768 to = (struct sockaddr *)&net->ro._l_addr; 5769 switch (to->sa_family) { 5770 #ifdef INET 5771 case AF_INET: 5772 sin = (struct sockaddr_in *)to; 5773 stc.address[0] = sin->sin_addr.s_addr; 5774 stc.address[1] = 0; 5775 stc.address[2] = 0; 5776 stc.address[3] = 0; 5777 stc.addr_type = SCTP_IPV4_ADDRESS; 5778 if (net->src_addr_selected == 0) { 5779 /* 5780 * strange case here, the INIT should have 5781 * did the selection. 5782 */ 5783 net->ro._s_addr = sctp_source_address_selection(inp, 5784 stcb, (sctp_route_t *)&net->ro, 5785 net, 0, vrf_id); 5786 if (net->ro._s_addr == NULL) { 5787 sctp_m_freem(op_err); 5788 sctp_m_freem(m); 5789 return; 5790 } 5791 5792 net->src_addr_selected = 1; 5793 5794 } 5795 stc.laddress[0] = net->ro._s_addr->address.sin.sin_addr.s_addr; 5796 stc.laddress[1] = 0; 5797 stc.laddress[2] = 0; 5798 stc.laddress[3] = 0; 5799 stc.laddr_type = SCTP_IPV4_ADDRESS; 5800 /* scope_id is only for v6 */ 5801 stc.scope_id = 0; 5802 break; 5803 #endif 5804 #ifdef INET6 5805 case AF_INET6: 5806 sin6 = (struct sockaddr_in6 *)to; 5807 memcpy(&stc.address, &sin6->sin6_addr, 5808 sizeof(struct in6_addr)); 5809 stc.addr_type = SCTP_IPV6_ADDRESS; 5810 stc.scope_id = sin6->sin6_scope_id; 5811 if (net->src_addr_selected == 0) { 5812 /* 5813 * strange case here, the INIT should have 5814 * done the selection. 5815 */ 5816 net->ro._s_addr = sctp_source_address_selection(inp, 5817 stcb, (sctp_route_t *)&net->ro, 5818 net, 0, vrf_id); 5819 if (net->ro._s_addr == NULL) { 5820 sctp_m_freem(op_err); 5821 sctp_m_freem(m); 5822 return; 5823 } 5824 5825 net->src_addr_selected = 1; 5826 } 5827 memcpy(&stc.laddress, &net->ro._s_addr->address.sin6.sin6_addr, 5828 sizeof(struct in6_addr)); 5829 stc.laddr_type = SCTP_IPV6_ADDRESS; 5830 break; 5831 #endif 5832 } 5833 } 5834 /* Now lets put the SCTP header in place */ 5835 initack = mtod(m, struct sctp_init_ack_chunk *); 5836 /* Save it off for quick ref */ 5837 stc.peers_vtag = ntohl(init_chk->init.initiate_tag); 5838 /* who are we */ 5839 memcpy(stc.identification, SCTP_VERSION_STRING, 5840 min(strlen(SCTP_VERSION_STRING), sizeof(stc.identification))); 5841 memset(stc.reserved, 0, SCTP_RESERVE_SPACE); 5842 /* now the chunk header */ 5843 initack->ch.chunk_type = SCTP_INITIATION_ACK; 5844 initack->ch.chunk_flags = 0; 5845 /* fill in later from mbuf we build */ 5846 initack->ch.chunk_length = 0; 5847 /* place in my tag */ 5848 if ((asoc != NULL) && 5849 ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) || 5850 (SCTP_GET_STATE(stcb) == SCTP_STATE_INUSE) || 5851 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED))) { 5852 /* re-use the v-tags and init-seq here */ 5853 initack->init.initiate_tag = htonl(asoc->my_vtag); 5854 initack->init.initial_tsn = htonl(asoc->init_seq_number); 5855 } else { 5856 uint32_t vtag, itsn; 5857 5858 if (asoc) { 5859 atomic_add_int(&asoc->refcnt, 1); 5860 SCTP_TCB_UNLOCK(stcb); 5861 new_tag: 5862 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5863 if ((asoc->peer_supports_nat) && (vtag == asoc->my_vtag)) { 5864 /* 5865 * Got a duplicate vtag on some guy behind a 5866 * nat make sure we don't use it. 5867 */ 5868 goto new_tag; 5869 } 5870 initack->init.initiate_tag = htonl(vtag); 5871 /* get a TSN to use too */ 5872 itsn = sctp_select_initial_TSN(&inp->sctp_ep); 5873 initack->init.initial_tsn = htonl(itsn); 5874 SCTP_TCB_LOCK(stcb); 5875 atomic_add_int(&asoc->refcnt, -1); 5876 } else { 5877 SCTP_INP_INCR_REF(inp); 5878 SCTP_INP_RUNLOCK(inp); 5879 vtag = sctp_select_a_tag(inp, inp->sctp_lport, sh->src_port, 1); 5880 initack->init.initiate_tag = htonl(vtag); 5881 /* get a TSN to use too */ 5882 initack->init.initial_tsn = htonl(sctp_select_initial_TSN(&inp->sctp_ep)); 5883 SCTP_INP_RLOCK(inp); 5884 SCTP_INP_DECR_REF(inp); 5885 } 5886 } 5887 /* save away my tag to */ 5888 stc.my_vtag = initack->init.initiate_tag; 5889 5890 /* set up some of the credits. */ 5891 so = inp->sctp_socket; 5892 if (so == NULL) { 5893 /* memory problem */ 5894 sctp_m_freem(op_err); 5895 sctp_m_freem(m); 5896 return; 5897 } else { 5898 initack->init.a_rwnd = htonl(max(SCTP_SB_LIMIT_RCV(so), SCTP_MINIMAL_RWND)); 5899 } 5900 /* set what I want */ 5901 his_limit = ntohs(init_chk->init.num_inbound_streams); 5902 /* choose what I want */ 5903 if (asoc != NULL) { 5904 if (asoc->streamoutcnt > asoc->pre_open_streams) { 5905 i_want = asoc->streamoutcnt; 5906 } else { 5907 i_want = asoc->pre_open_streams; 5908 } 5909 } else { 5910 i_want = inp->sctp_ep.pre_open_stream_count; 5911 } 5912 if (his_limit < i_want) { 5913 /* I Want more :< */ 5914 initack->init.num_outbound_streams = init_chk->init.num_inbound_streams; 5915 } else { 5916 /* I can have what I want :> */ 5917 initack->init.num_outbound_streams = htons(i_want); 5918 } 5919 /* tell him his limit. */ 5920 initack->init.num_inbound_streams = 5921 htons(inp->sctp_ep.max_open_streams_intome); 5922 5923 /* adaptation layer indication parameter */ 5924 if (inp->sctp_ep.adaptation_layer_indicator_provided) { 5925 parameter_len = (uint16_t)sizeof(struct sctp_adaptation_layer_indication); 5926 ali = (struct sctp_adaptation_layer_indication *)(mtod(m, caddr_t)+chunk_len); 5927 ali->ph.param_type = htons(SCTP_ULP_ADAPTATION); 5928 ali->ph.param_length = htons(parameter_len); 5929 ali->indication = htonl(inp->sctp_ep.adaptation_layer_indicator); 5930 chunk_len += parameter_len; 5931 } 5932 5933 /* ECN parameter */ 5934 if (((asoc != NULL) && (asoc->ecn_supported == 1)) || 5935 ((asoc == NULL) && (inp->ecn_supported == 1))) { 5936 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5937 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5938 ph->param_type = htons(SCTP_ECN_CAPABLE); 5939 ph->param_length = htons(parameter_len); 5940 chunk_len += parameter_len; 5941 } 5942 5943 /* PR-SCTP supported parameter */ 5944 if (((asoc != NULL) && (asoc->prsctp_supported == 1)) || 5945 ((asoc == NULL) && (inp->prsctp_supported == 1))) { 5946 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5947 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5948 ph->param_type = htons(SCTP_PRSCTP_SUPPORTED); 5949 ph->param_length = htons(parameter_len); 5950 chunk_len += parameter_len; 5951 } 5952 5953 /* Add NAT friendly parameter */ 5954 if (nat_friendly) { 5955 parameter_len = (uint16_t)sizeof(struct sctp_paramhdr); 5956 ph = (struct sctp_paramhdr *)(mtod(m, caddr_t)+chunk_len); 5957 ph->param_type = htons(SCTP_HAS_NAT_SUPPORT); 5958 ph->param_length = htons(parameter_len); 5959 chunk_len += parameter_len; 5960 } 5961 5962 /* And now tell the peer which extensions we support */ 5963 num_ext = 0; 5964 pr_supported = (struct sctp_supported_chunk_types_param *)(mtod(m, caddr_t)+chunk_len); 5965 if (((asoc != NULL) && (asoc->prsctp_supported == 1)) || 5966 ((asoc == NULL) && (inp->prsctp_supported == 1))) { 5967 pr_supported->chunk_types[num_ext++] = SCTP_FORWARD_CUM_TSN; 5968 if (((asoc != NULL) && (asoc->idata_supported == 1)) || 5969 ((asoc == NULL) && (inp->idata_supported == 1))) { 5970 pr_supported->chunk_types[num_ext++] = SCTP_IFORWARD_CUM_TSN; 5971 } 5972 } 5973 if (((asoc != NULL) && (asoc->auth_supported == 1)) || 5974 ((asoc == NULL) && (inp->auth_supported == 1))) { 5975 pr_supported->chunk_types[num_ext++] = SCTP_AUTHENTICATION; 5976 } 5977 if (((asoc != NULL) && (asoc->asconf_supported == 1)) || 5978 ((asoc == NULL) && (inp->asconf_supported == 1))) { 5979 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF; 5980 pr_supported->chunk_types[num_ext++] = SCTP_ASCONF_ACK; 5981 } 5982 if (((asoc != NULL) && (asoc->reconfig_supported == 1)) || 5983 ((asoc == NULL) && (inp->reconfig_supported == 1))) { 5984 pr_supported->chunk_types[num_ext++] = SCTP_STREAM_RESET; 5985 } 5986 if (((asoc != NULL) && (asoc->idata_supported == 1)) || 5987 ((asoc == NULL) && (inp->idata_supported == 1))) { 5988 pr_supported->chunk_types[num_ext++] = SCTP_IDATA; 5989 } 5990 if (((asoc != NULL) && (asoc->nrsack_supported == 1)) || 5991 ((asoc == NULL) && (inp->nrsack_supported == 1))) { 5992 pr_supported->chunk_types[num_ext++] = SCTP_NR_SELECTIVE_ACK; 5993 } 5994 if (((asoc != NULL) && (asoc->pktdrop_supported == 1)) || 5995 ((asoc == NULL) && (inp->pktdrop_supported == 1))) { 5996 pr_supported->chunk_types[num_ext++] = SCTP_PACKET_DROPPED; 5997 } 5998 if (num_ext > 0) { 5999 parameter_len = (uint16_t)sizeof(struct sctp_supported_chunk_types_param) + num_ext; 6000 pr_supported->ph.param_type = htons(SCTP_SUPPORTED_CHUNK_EXT); 6001 pr_supported->ph.param_length = htons(parameter_len); 6002 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6003 chunk_len += parameter_len; 6004 } 6005 6006 /* add authentication parameters */ 6007 if (((asoc != NULL) && (asoc->auth_supported == 1)) || 6008 ((asoc == NULL) && (inp->auth_supported == 1))) { 6009 struct sctp_auth_random *randp; 6010 struct sctp_auth_hmac_algo *hmacs; 6011 struct sctp_auth_chunk_list *chunks; 6012 6013 if (padding_len > 0) { 6014 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6015 chunk_len += padding_len; 6016 padding_len = 0; 6017 } 6018 /* generate and add RANDOM parameter */ 6019 randp = (struct sctp_auth_random *)(mtod(m, caddr_t)+chunk_len); 6020 parameter_len = (uint16_t)sizeof(struct sctp_auth_random) + 6021 SCTP_AUTH_RANDOM_SIZE_DEFAULT; 6022 randp->ph.param_type = htons(SCTP_RANDOM); 6023 randp->ph.param_length = htons(parameter_len); 6024 SCTP_READ_RANDOM(randp->random_data, SCTP_AUTH_RANDOM_SIZE_DEFAULT); 6025 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6026 chunk_len += parameter_len; 6027 6028 if (padding_len > 0) { 6029 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6030 chunk_len += padding_len; 6031 padding_len = 0; 6032 } 6033 /* add HMAC_ALGO parameter */ 6034 hmacs = (struct sctp_auth_hmac_algo *)(mtod(m, caddr_t)+chunk_len); 6035 parameter_len = (uint16_t)sizeof(struct sctp_auth_hmac_algo) + 6036 sctp_serialize_hmaclist(inp->sctp_ep.local_hmacs, 6037 (uint8_t *)hmacs->hmac_ids); 6038 hmacs->ph.param_type = htons(SCTP_HMAC_LIST); 6039 hmacs->ph.param_length = htons(parameter_len); 6040 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6041 chunk_len += parameter_len; 6042 6043 if (padding_len > 0) { 6044 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6045 chunk_len += padding_len; 6046 padding_len = 0; 6047 } 6048 /* add CHUNKS parameter */ 6049 chunks = (struct sctp_auth_chunk_list *)(mtod(m, caddr_t)+chunk_len); 6050 parameter_len = (uint16_t)sizeof(struct sctp_auth_chunk_list) + 6051 sctp_serialize_auth_chunks(inp->sctp_ep.local_auth_chunks, 6052 chunks->chunk_types); 6053 chunks->ph.param_type = htons(SCTP_CHUNK_LIST); 6054 chunks->ph.param_length = htons(parameter_len); 6055 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6056 chunk_len += parameter_len; 6057 } 6058 SCTP_BUF_LEN(m) = chunk_len; 6059 m_last = m; 6060 /* now the addresses */ 6061 /* 6062 * To optimize this we could put the scoping stuff into a structure 6063 * and remove the individual uint8's from the stc structure. Then we 6064 * could just sifa in the address within the stc.. but for now this 6065 * is a quick hack to get the address stuff teased apart. 6066 */ 6067 scp.ipv4_addr_legal = stc.ipv4_addr_legal; 6068 scp.ipv6_addr_legal = stc.ipv6_addr_legal; 6069 scp.loopback_scope = stc.loopback_scope; 6070 scp.ipv4_local_scope = stc.ipv4_scope; 6071 scp.local_scope = stc.local_scope; 6072 scp.site_scope = stc.site_scope; 6073 m_last = sctp_add_addresses_to_i_ia(inp, stcb, &scp, m_last, 6074 cnt_inits_to, 6075 &padding_len, &chunk_len); 6076 /* padding_len can only be positive, if no addresses have been added */ 6077 if (padding_len > 0) { 6078 memset(mtod(m, caddr_t)+chunk_len, 0, padding_len); 6079 chunk_len += padding_len; 6080 SCTP_BUF_LEN(m) += padding_len; 6081 padding_len = 0; 6082 } 6083 6084 /* tack on the operational error if present */ 6085 if (op_err) { 6086 parameter_len = 0; 6087 for (m_tmp = op_err; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 6088 parameter_len += SCTP_BUF_LEN(m_tmp); 6089 } 6090 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6091 SCTP_BUF_NEXT(m_last) = op_err; 6092 while (SCTP_BUF_NEXT(m_last) != NULL) { 6093 m_last = SCTP_BUF_NEXT(m_last); 6094 } 6095 chunk_len += parameter_len; 6096 } 6097 if (padding_len > 0) { 6098 m_last = sctp_add_pad_tombuf(m_last, padding_len); 6099 if (m_last == NULL) { 6100 /* Houston we have a problem, no space */ 6101 sctp_m_freem(m); 6102 return; 6103 } 6104 chunk_len += padding_len; 6105 padding_len = 0; 6106 } 6107 /* Now we must build a cookie */ 6108 m_cookie = sctp_add_cookie(init_pkt, offset, m, 0, &stc, &signature); 6109 if (m_cookie == NULL) { 6110 /* memory problem */ 6111 sctp_m_freem(m); 6112 return; 6113 } 6114 /* Now append the cookie to the end and update the space/size */ 6115 SCTP_BUF_NEXT(m_last) = m_cookie; 6116 parameter_len = 0; 6117 for (m_tmp = m_cookie; m_tmp != NULL; m_tmp = SCTP_BUF_NEXT(m_tmp)) { 6118 parameter_len += SCTP_BUF_LEN(m_tmp); 6119 if (SCTP_BUF_NEXT(m_tmp) == NULL) { 6120 m_last = m_tmp; 6121 } 6122 } 6123 padding_len = SCTP_SIZE32(parameter_len) - parameter_len; 6124 chunk_len += parameter_len; 6125 6126 /* 6127 * Place in the size, but we don't include the last pad (if any) in 6128 * the INIT-ACK. 6129 */ 6130 initack->ch.chunk_length = htons(chunk_len); 6131 6132 /* 6133 * Time to sign the cookie, we don't sign over the cookie signature 6134 * though thus we set trailer. 6135 */ 6136 (void)sctp_hmac_m(SCTP_HMAC, 6137 (uint8_t *)inp->sctp_ep.secret_key[(int)(inp->sctp_ep.current_secret_number)], 6138 SCTP_SECRET_SIZE, m_cookie, sizeof(struct sctp_paramhdr), 6139 (uint8_t *)signature, SCTP_SIGNATURE_SIZE); 6140 /* 6141 * We sifa 0 here to NOT set IP_DF if its IPv4, we ignore the return 6142 * here since the timer will drive a retranmission. 6143 */ 6144 if (padding_len > 0) { 6145 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 6146 sctp_m_freem(m); 6147 return; 6148 } 6149 } 6150 if (stc.loopback_scope) { 6151 over_addr = (union sctp_sockstore *)dst; 6152 } else { 6153 over_addr = NULL; 6154 } 6155 6156 if ((error = sctp_lowlevel_chunk_output(inp, NULL, NULL, to, m, 0, NULL, 0, 0, 6157 0, 0, 6158 inp->sctp_lport, sh->src_port, init_chk->init.initiate_tag, 6159 port, over_addr, 6160 mflowtype, mflowid, 6161 SCTP_SO_NOT_LOCKED))) { 6162 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak send error %d\n", error); 6163 if (error == ENOBUFS) { 6164 if (asoc != NULL) { 6165 asoc->ifp_had_enobuf = 1; 6166 } 6167 SCTP_STAT_INCR(sctps_lowlevelerr); 6168 } 6169 } else { 6170 if (asoc != NULL) { 6171 asoc->ifp_had_enobuf = 0; 6172 } 6173 } 6174 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 6175 } 6176 6177 6178 static void 6179 sctp_prune_prsctp(struct sctp_tcb *stcb, 6180 struct sctp_association *asoc, 6181 struct sctp_sndrcvinfo *srcv, 6182 int dataout) 6183 { 6184 int freed_spc = 0; 6185 struct sctp_tmit_chunk *chk, *nchk; 6186 6187 SCTP_TCB_LOCK_ASSERT(stcb); 6188 if ((asoc->prsctp_supported) && 6189 (asoc->sent_queue_cnt_removeable > 0)) { 6190 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 6191 /* 6192 * Look for chunks marked with the PR_SCTP flag AND 6193 * the buffer space flag. If the one being sent is 6194 * equal or greater priority then purge the old one 6195 * and free some space. 6196 */ 6197 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6198 /* 6199 * This one is PR-SCTP AND buffer space 6200 * limited type 6201 */ 6202 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 6203 /* 6204 * Lower numbers equates to higher 6205 * priority so if the one we are 6206 * looking at has a larger or equal 6207 * priority we want to drop the data 6208 * and NOT retransmit it. 6209 */ 6210 if (chk->data) { 6211 /* 6212 * We release the book_size 6213 * if the mbuf is here 6214 */ 6215 int ret_spc; 6216 uint8_t sent; 6217 6218 if (chk->sent > SCTP_DATAGRAM_UNSENT) 6219 sent = 1; 6220 else 6221 sent = 0; 6222 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6223 sent, 6224 SCTP_SO_LOCKED); 6225 freed_spc += ret_spc; 6226 if (freed_spc >= dataout) { 6227 return; 6228 } 6229 } /* if chunk was present */ 6230 } /* if of sufficient priority */ 6231 } /* if chunk has enabled */ 6232 } /* tailqforeach */ 6233 6234 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 6235 /* Here we must move to the sent queue and mark */ 6236 if (PR_SCTP_BUF_ENABLED(chk->flags)) { 6237 if (chk->rec.data.timetodrop.tv_sec >= (long)srcv->sinfo_timetolive) { 6238 if (chk->data) { 6239 /* 6240 * We release the book_size 6241 * if the mbuf is here 6242 */ 6243 int ret_spc; 6244 6245 ret_spc = sctp_release_pr_sctp_chunk(stcb, chk, 6246 0, SCTP_SO_LOCKED); 6247 6248 freed_spc += ret_spc; 6249 if (freed_spc >= dataout) { 6250 return; 6251 } 6252 } /* end if chk->data */ 6253 } /* end if right class */ 6254 } /* end if chk pr-sctp */ 6255 } /* tailqforeachsafe (chk) */ 6256 } /* if enabled in asoc */ 6257 } 6258 6259 int 6260 sctp_get_frag_point(struct sctp_tcb *stcb, 6261 struct sctp_association *asoc) 6262 { 6263 int siz, ovh; 6264 6265 /* 6266 * For endpoints that have both v6 and v4 addresses we must reserve 6267 * room for the ipv6 header, for those that are only dealing with V4 6268 * we use a larger frag point. 6269 */ 6270 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 6271 ovh = SCTP_MIN_OVERHEAD; 6272 } else { 6273 ovh = SCTP_MIN_V4_OVERHEAD; 6274 } 6275 ovh += SCTP_DATA_CHUNK_OVERHEAD(stcb); 6276 if (stcb->asoc.sctp_frag_point > asoc->smallest_mtu) 6277 siz = asoc->smallest_mtu - ovh; 6278 else 6279 siz = (stcb->asoc.sctp_frag_point - ovh); 6280 /* 6281 * if (siz > (MCLBYTES-sizeof(struct sctp_data_chunk))) { 6282 */ 6283 /* A data chunk MUST fit in a cluster */ 6284 /* siz = (MCLBYTES - sizeof(struct sctp_data_chunk)); */ 6285 /* } */ 6286 6287 /* adjust for an AUTH chunk if DATA requires auth */ 6288 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) 6289 siz -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 6290 6291 if (siz % 4) { 6292 /* make it an even word boundary please */ 6293 siz -= (siz % 4); 6294 } 6295 return (siz); 6296 } 6297 6298 static void 6299 sctp_set_prsctp_policy(struct sctp_stream_queue_pending *sp) 6300 { 6301 /* 6302 * We assume that the user wants PR_SCTP_TTL if the user provides a 6303 * positive lifetime but does not specify any PR_SCTP policy. 6304 */ 6305 if (PR_SCTP_ENABLED(sp->sinfo_flags)) { 6306 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6307 } else if (sp->timetolive > 0) { 6308 sp->sinfo_flags |= SCTP_PR_SCTP_TTL; 6309 sp->act_flags |= PR_SCTP_POLICY(sp->sinfo_flags); 6310 } else { 6311 return; 6312 } 6313 switch (PR_SCTP_POLICY(sp->sinfo_flags)) { 6314 case CHUNK_FLAGS_PR_SCTP_BUF: 6315 /* 6316 * Time to live is a priority stored in tv_sec when doing 6317 * the buffer drop thing. 6318 */ 6319 sp->ts.tv_sec = sp->timetolive; 6320 sp->ts.tv_usec = 0; 6321 break; 6322 case CHUNK_FLAGS_PR_SCTP_TTL: 6323 { 6324 struct timeval tv; 6325 6326 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6327 tv.tv_sec = sp->timetolive / 1000; 6328 tv.tv_usec = (sp->timetolive * 1000) % 1000000; 6329 /* 6330 * TODO sctp_constants.h needs alternative time 6331 * macros when _KERNEL is undefined. 6332 */ 6333 timevaladd(&sp->ts, &tv); 6334 } 6335 break; 6336 case CHUNK_FLAGS_PR_SCTP_RTX: 6337 /* 6338 * Time to live is a the number or retransmissions stored in 6339 * tv_sec. 6340 */ 6341 sp->ts.tv_sec = sp->timetolive; 6342 sp->ts.tv_usec = 0; 6343 break; 6344 default: 6345 SCTPDBG(SCTP_DEBUG_USRREQ1, 6346 "Unknown PR_SCTP policy %u.\n", 6347 PR_SCTP_POLICY(sp->sinfo_flags)); 6348 break; 6349 } 6350 } 6351 6352 static int 6353 sctp_msg_append(struct sctp_tcb *stcb, 6354 struct sctp_nets *net, 6355 struct mbuf *m, 6356 struct sctp_sndrcvinfo *srcv, int hold_stcb_lock) 6357 { 6358 int error = 0; 6359 struct mbuf *at; 6360 struct sctp_stream_queue_pending *sp = NULL; 6361 struct sctp_stream_out *strm; 6362 6363 /* 6364 * Given an mbuf chain, put it into the association send queue and 6365 * place it on the wheel 6366 */ 6367 if (srcv->sinfo_stream >= stcb->asoc.streamoutcnt) { 6368 /* Invalid stream number */ 6369 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6370 error = EINVAL; 6371 goto out_now; 6372 } 6373 if ((stcb->asoc.stream_locked) && 6374 (stcb->asoc.stream_locked_on != srcv->sinfo_stream)) { 6375 SCTP_LTRACE_ERR_RET_PKT(m, NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 6376 error = EINVAL; 6377 goto out_now; 6378 } 6379 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 6380 /* Now can we send this? */ 6381 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) || 6382 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 6383 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 6384 (stcb->asoc.state & SCTP_STATE_SHUTDOWN_PENDING)) { 6385 /* got data while shutting down */ 6386 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 6387 error = ECONNRESET; 6388 goto out_now; 6389 } 6390 sctp_alloc_a_strmoq(stcb, sp); 6391 if (sp == NULL) { 6392 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6393 error = ENOMEM; 6394 goto out_now; 6395 } 6396 sp->sinfo_flags = srcv->sinfo_flags; 6397 sp->timetolive = srcv->sinfo_timetolive; 6398 sp->ppid = srcv->sinfo_ppid; 6399 sp->context = srcv->sinfo_context; 6400 sp->fsn = 0; 6401 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 6402 sp->net = net; 6403 atomic_add_int(&sp->net->ref_count, 1); 6404 } else { 6405 sp->net = NULL; 6406 } 6407 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 6408 sp->sid = srcv->sinfo_stream; 6409 sp->msg_is_complete = 1; 6410 sp->sender_all_done = 1; 6411 sp->some_taken = 0; 6412 sp->data = m; 6413 sp->tail_mbuf = NULL; 6414 sctp_set_prsctp_policy(sp); 6415 /* 6416 * We could in theory (for sendall) sifa the length in, but we would 6417 * still have to hunt through the chain since we need to setup the 6418 * tail_mbuf 6419 */ 6420 sp->length = 0; 6421 for (at = m; at; at = SCTP_BUF_NEXT(at)) { 6422 if (SCTP_BUF_NEXT(at) == NULL) 6423 sp->tail_mbuf = at; 6424 sp->length += SCTP_BUF_LEN(at); 6425 } 6426 if (srcv->sinfo_keynumber_valid) { 6427 sp->auth_keyid = srcv->sinfo_keynumber; 6428 } else { 6429 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 6430 } 6431 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 6432 sctp_auth_key_acquire(stcb, sp->auth_keyid); 6433 sp->holds_key_ref = 1; 6434 } 6435 if (hold_stcb_lock == 0) { 6436 SCTP_TCB_SEND_LOCK(stcb); 6437 } 6438 sctp_snd_sb_alloc(stcb, sp->length); 6439 atomic_add_int(&stcb->asoc.stream_queue_cnt, 1); 6440 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 6441 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, &stcb->asoc, strm, sp, 1); 6442 m = NULL; 6443 if (hold_stcb_lock == 0) { 6444 SCTP_TCB_SEND_UNLOCK(stcb); 6445 } 6446 out_now: 6447 if (m) { 6448 sctp_m_freem(m); 6449 } 6450 return (error); 6451 } 6452 6453 6454 static struct mbuf * 6455 sctp_copy_mbufchain(struct mbuf *clonechain, 6456 struct mbuf *outchain, 6457 struct mbuf **endofchain, 6458 int can_take_mbuf, 6459 int sizeofcpy, 6460 uint8_t copy_by_ref) 6461 { 6462 struct mbuf *m; 6463 struct mbuf *appendchain; 6464 caddr_t cp; 6465 int len; 6466 6467 if (endofchain == NULL) { 6468 /* error */ 6469 error_out: 6470 if (outchain) 6471 sctp_m_freem(outchain); 6472 return (NULL); 6473 } 6474 if (can_take_mbuf) { 6475 appendchain = clonechain; 6476 } else { 6477 if (!copy_by_ref && 6478 (sizeofcpy <= (int)((((SCTP_BASE_SYSCTL(sctp_mbuf_threshold_count) - 1) * MLEN) + MHLEN))) 6479 ) { 6480 /* Its not in a cluster */ 6481 if (*endofchain == NULL) { 6482 /* lets get a mbuf cluster */ 6483 if (outchain == NULL) { 6484 /* This is the general case */ 6485 new_mbuf: 6486 outchain = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6487 if (outchain == NULL) { 6488 goto error_out; 6489 } 6490 SCTP_BUF_LEN(outchain) = 0; 6491 *endofchain = outchain; 6492 /* get the prepend space */ 6493 SCTP_BUF_RESV_UF(outchain, (SCTP_FIRST_MBUF_RESV + 4)); 6494 } else { 6495 /* 6496 * We really should not get a NULL 6497 * in endofchain 6498 */ 6499 /* find end */ 6500 m = outchain; 6501 while (m) { 6502 if (SCTP_BUF_NEXT(m) == NULL) { 6503 *endofchain = m; 6504 break; 6505 } 6506 m = SCTP_BUF_NEXT(m); 6507 } 6508 /* sanity */ 6509 if (*endofchain == NULL) { 6510 /* 6511 * huh, TSNH XXX maybe we 6512 * should panic 6513 */ 6514 sctp_m_freem(outchain); 6515 goto new_mbuf; 6516 } 6517 } 6518 /* get the new end of length */ 6519 len = (int)M_TRAILINGSPACE(*endofchain); 6520 } else { 6521 /* how much is left at the end? */ 6522 len = (int)M_TRAILINGSPACE(*endofchain); 6523 } 6524 /* Find the end of the data, for appending */ 6525 cp = (mtod((*endofchain), caddr_t)+SCTP_BUF_LEN((*endofchain))); 6526 6527 /* Now lets copy it out */ 6528 if (len >= sizeofcpy) { 6529 /* It all fits, copy it in */ 6530 m_copydata(clonechain, 0, sizeofcpy, cp); 6531 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6532 } else { 6533 /* fill up the end of the chain */ 6534 if (len > 0) { 6535 m_copydata(clonechain, 0, len, cp); 6536 SCTP_BUF_LEN((*endofchain)) += len; 6537 /* now we need another one */ 6538 sizeofcpy -= len; 6539 } 6540 m = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_HEADER); 6541 if (m == NULL) { 6542 /* We failed */ 6543 goto error_out; 6544 } 6545 SCTP_BUF_NEXT((*endofchain)) = m; 6546 *endofchain = m; 6547 cp = mtod((*endofchain), caddr_t); 6548 m_copydata(clonechain, len, sizeofcpy, cp); 6549 SCTP_BUF_LEN((*endofchain)) += sizeofcpy; 6550 } 6551 return (outchain); 6552 } else { 6553 /* copy the old fashion way */ 6554 appendchain = SCTP_M_COPYM(clonechain, 0, M_COPYALL, M_NOWAIT); 6555 #ifdef SCTP_MBUF_LOGGING 6556 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6557 sctp_log_mbc(appendchain, SCTP_MBUF_ICOPY); 6558 } 6559 #endif 6560 } 6561 } 6562 if (appendchain == NULL) { 6563 /* error */ 6564 if (outchain) 6565 sctp_m_freem(outchain); 6566 return (NULL); 6567 } 6568 if (outchain) { 6569 /* tack on to the end */ 6570 if (*endofchain != NULL) { 6571 SCTP_BUF_NEXT(((*endofchain))) = appendchain; 6572 } else { 6573 m = outchain; 6574 while (m) { 6575 if (SCTP_BUF_NEXT(m) == NULL) { 6576 SCTP_BUF_NEXT(m) = appendchain; 6577 break; 6578 } 6579 m = SCTP_BUF_NEXT(m); 6580 } 6581 } 6582 /* 6583 * save off the end and update the end-chain position 6584 */ 6585 m = appendchain; 6586 while (m) { 6587 if (SCTP_BUF_NEXT(m) == NULL) { 6588 *endofchain = m; 6589 break; 6590 } 6591 m = SCTP_BUF_NEXT(m); 6592 } 6593 return (outchain); 6594 } else { 6595 /* save off the end and update the end-chain position */ 6596 m = appendchain; 6597 while (m) { 6598 if (SCTP_BUF_NEXT(m) == NULL) { 6599 *endofchain = m; 6600 break; 6601 } 6602 m = SCTP_BUF_NEXT(m); 6603 } 6604 return (appendchain); 6605 } 6606 } 6607 6608 static int 6609 sctp_med_chunk_output(struct sctp_inpcb *inp, 6610 struct sctp_tcb *stcb, 6611 struct sctp_association *asoc, 6612 int *num_out, 6613 int *reason_code, 6614 int control_only, int from_where, 6615 struct timeval *now, int *now_filled, int frag_point, int so_locked 6616 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 6617 SCTP_UNUSED 6618 #endif 6619 ); 6620 6621 static void 6622 sctp_sendall_iterator(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, 6623 uint32_t val SCTP_UNUSED) 6624 { 6625 struct sctp_copy_all *ca; 6626 struct mbuf *m; 6627 int ret = 0; 6628 int added_control = 0; 6629 int un_sent, do_chunk_output = 1; 6630 struct sctp_association *asoc; 6631 struct sctp_nets *net; 6632 6633 ca = (struct sctp_copy_all *)ptr; 6634 if (ca->m == NULL) { 6635 return; 6636 } 6637 if (ca->inp != inp) { 6638 /* TSNH */ 6639 return; 6640 } 6641 if (ca->sndlen > 0) { 6642 m = SCTP_M_COPYM(ca->m, 0, M_COPYALL, M_NOWAIT); 6643 if (m == NULL) { 6644 /* can't copy so we are done */ 6645 ca->cnt_failed++; 6646 return; 6647 } 6648 #ifdef SCTP_MBUF_LOGGING 6649 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 6650 sctp_log_mbc(m, SCTP_MBUF_ICOPY); 6651 } 6652 #endif 6653 } else { 6654 m = NULL; 6655 } 6656 SCTP_TCB_LOCK_ASSERT(stcb); 6657 if (stcb->asoc.alternate) { 6658 net = stcb->asoc.alternate; 6659 } else { 6660 net = stcb->asoc.primary_destination; 6661 } 6662 if (ca->sndrcv.sinfo_flags & SCTP_ABORT) { 6663 /* Abort this assoc with m as the user defined reason */ 6664 if (m != NULL) { 6665 SCTP_BUF_PREPEND(m, sizeof(struct sctp_paramhdr), M_NOWAIT); 6666 } else { 6667 m = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 6668 0, M_NOWAIT, 1, MT_DATA); 6669 SCTP_BUF_LEN(m) = sizeof(struct sctp_paramhdr); 6670 } 6671 if (m != NULL) { 6672 struct sctp_paramhdr *ph; 6673 6674 ph = mtod(m, struct sctp_paramhdr *); 6675 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 6676 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + ca->sndlen)); 6677 } 6678 /* 6679 * We add one here to keep the assoc from dis-appearing on 6680 * us. 6681 */ 6682 atomic_add_int(&stcb->asoc.refcnt, 1); 6683 sctp_abort_an_association(inp, stcb, m, SCTP_SO_NOT_LOCKED); 6684 /* 6685 * sctp_abort_an_association calls sctp_free_asoc() free 6686 * association will NOT free it since we incremented the 6687 * refcnt .. we do this to prevent it being freed and things 6688 * getting tricky since we could end up (from free_asoc) 6689 * calling inpcb_free which would get a recursive lock call 6690 * to the iterator lock.. But as a consequence of that the 6691 * stcb will return to us un-locked.. since free_asoc 6692 * returns with either no TCB or the TCB unlocked, we must 6693 * relock.. to unlock in the iterator timer :-0 6694 */ 6695 SCTP_TCB_LOCK(stcb); 6696 atomic_add_int(&stcb->asoc.refcnt, -1); 6697 goto no_chunk_output; 6698 } else { 6699 if (m) { 6700 ret = sctp_msg_append(stcb, net, m, 6701 &ca->sndrcv, 1); 6702 } 6703 asoc = &stcb->asoc; 6704 if (ca->sndrcv.sinfo_flags & SCTP_EOF) { 6705 /* shutdown this assoc */ 6706 if (TAILQ_EMPTY(&asoc->send_queue) && 6707 TAILQ_EMPTY(&asoc->sent_queue) && 6708 sctp_is_there_unsent_data(stcb, SCTP_SO_NOT_LOCKED) == 0) { 6709 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 6710 goto abort_anyway; 6711 } 6712 /* 6713 * there is nothing queued to send, so I'm 6714 * done... 6715 */ 6716 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 6717 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6718 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6719 /* 6720 * only send SHUTDOWN the first time 6721 * through 6722 */ 6723 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 6724 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 6725 } 6726 SCTP_SET_STATE(stcb, SCTP_STATE_SHUTDOWN_SENT); 6727 sctp_stop_timers_for_shutdown(stcb); 6728 sctp_send_shutdown(stcb, net); 6729 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 6730 net); 6731 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6732 NULL); 6733 added_control = 1; 6734 do_chunk_output = 0; 6735 } 6736 } else { 6737 /* 6738 * we still got (or just got) data to send, 6739 * so set SHUTDOWN_PENDING 6740 */ 6741 /* 6742 * XXX sockets draft says that SCTP_EOF 6743 * should be sent with no data. currently, 6744 * we will allow user data to be sent first 6745 * and move to SHUTDOWN-PENDING 6746 */ 6747 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 6748 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 6749 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 6750 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 6751 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_PARTIAL_MSG_LEFT); 6752 } 6753 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_SHUTDOWN_PENDING); 6754 if (TAILQ_EMPTY(&asoc->send_queue) && 6755 TAILQ_EMPTY(&asoc->sent_queue) && 6756 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 6757 struct mbuf *op_err; 6758 char msg[SCTP_DIAG_INFO_LEN]; 6759 6760 abort_anyway: 6761 snprintf(msg, sizeof(msg), 6762 "%s:%d at %s", __FILE__, __LINE__, __func__); 6763 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 6764 msg); 6765 atomic_add_int(&stcb->asoc.refcnt, 1); 6766 sctp_abort_an_association(stcb->sctp_ep, stcb, 6767 op_err, SCTP_SO_NOT_LOCKED); 6768 atomic_add_int(&stcb->asoc.refcnt, -1); 6769 goto no_chunk_output; 6770 } 6771 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 6772 NULL); 6773 } 6774 } 6775 6776 } 6777 } 6778 un_sent = ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) + 6779 (stcb->asoc.stream_queue_cnt * SCTP_DATA_CHUNK_OVERHEAD(stcb))); 6780 6781 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 6782 (stcb->asoc.total_flight > 0) && 6783 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 6784 do_chunk_output = 0; 6785 } 6786 if (do_chunk_output) 6787 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_NOT_LOCKED); 6788 else if (added_control) { 6789 int num_out, reason, now_filled = 0; 6790 struct timeval now; 6791 int frag_point; 6792 6793 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 6794 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 6795 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_NOT_LOCKED); 6796 } 6797 no_chunk_output: 6798 if (ret) { 6799 ca->cnt_failed++; 6800 } else { 6801 ca->cnt_sent++; 6802 } 6803 } 6804 6805 static void 6806 sctp_sendall_completes(void *ptr, uint32_t val SCTP_UNUSED) 6807 { 6808 struct sctp_copy_all *ca; 6809 6810 ca = (struct sctp_copy_all *)ptr; 6811 /* 6812 * Do a notify here? Kacheong suggests that the notify be done at 6813 * the send time.. so you would push up a notification if any send 6814 * failed. Don't know if this is feasible since the only failures we 6815 * have is "memory" related and if you cannot get an mbuf to send 6816 * the data you surely can't get an mbuf to send up to notify the 6817 * user you can't send the data :-> 6818 */ 6819 6820 /* now free everything */ 6821 if (ca->inp) { 6822 /* Lets clear the flag to allow others to run. */ 6823 ca->inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6824 } 6825 sctp_m_freem(ca->m); 6826 SCTP_FREE(ca, SCTP_M_COPYAL); 6827 } 6828 6829 static struct mbuf * 6830 sctp_copy_out_all(struct uio *uio, ssize_t len) 6831 { 6832 struct mbuf *ret, *at; 6833 ssize_t left, willcpy, cancpy, error; 6834 6835 ret = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_WAITOK, 1, MT_DATA); 6836 if (ret == NULL) { 6837 /* TSNH */ 6838 return (NULL); 6839 } 6840 left = len; 6841 SCTP_BUF_LEN(ret) = 0; 6842 /* save space for the data chunk header */ 6843 cancpy = (int)M_TRAILINGSPACE(ret); 6844 willcpy = min(cancpy, left); 6845 at = ret; 6846 while (left > 0) { 6847 /* Align data to the end */ 6848 error = uiomove(mtod(at, caddr_t), (int)willcpy, uio); 6849 if (error) { 6850 err_out_now: 6851 sctp_m_freem(at); 6852 return (NULL); 6853 } 6854 SCTP_BUF_LEN(at) = (int)willcpy; 6855 SCTP_BUF_NEXT_PKT(at) = SCTP_BUF_NEXT(at) = 0; 6856 left -= willcpy; 6857 if (left > 0) { 6858 SCTP_BUF_NEXT(at) = sctp_get_mbuf_for_msg((unsigned int)left, 0, M_WAITOK, 1, MT_DATA); 6859 if (SCTP_BUF_NEXT(at) == NULL) { 6860 goto err_out_now; 6861 } 6862 at = SCTP_BUF_NEXT(at); 6863 SCTP_BUF_LEN(at) = 0; 6864 cancpy = (int)M_TRAILINGSPACE(at); 6865 willcpy = min(cancpy, left); 6866 } 6867 } 6868 return (ret); 6869 } 6870 6871 static int 6872 sctp_sendall(struct sctp_inpcb *inp, struct uio *uio, struct mbuf *m, 6873 struct sctp_sndrcvinfo *srcv) 6874 { 6875 int ret; 6876 struct sctp_copy_all *ca; 6877 6878 if (inp->sctp_flags & SCTP_PCB_FLAGS_SND_ITERATOR_UP) { 6879 /* There is another. */ 6880 return (EBUSY); 6881 } 6882 if (uio->uio_resid > (ssize_t)SCTP_BASE_SYSCTL(sctp_sendall_limit)) { 6883 /* You must not be larger than the limit! */ 6884 return (EMSGSIZE); 6885 } 6886 SCTP_MALLOC(ca, struct sctp_copy_all *, sizeof(struct sctp_copy_all), 6887 SCTP_M_COPYAL); 6888 if (ca == NULL) { 6889 sctp_m_freem(m); 6890 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6891 return (ENOMEM); 6892 } 6893 memset(ca, 0, sizeof(struct sctp_copy_all)); 6894 6895 ca->inp = inp; 6896 if (srcv) { 6897 memcpy(&ca->sndrcv, srcv, sizeof(struct sctp_nonpad_sndrcvinfo)); 6898 } 6899 /* 6900 * take off the sendall flag, it would be bad if we failed to do 6901 * this :-0 6902 */ 6903 ca->sndrcv.sinfo_flags &= ~SCTP_SENDALL; 6904 /* get length and mbuf chain */ 6905 if (uio) { 6906 ca->sndlen = uio->uio_resid; 6907 ca->m = sctp_copy_out_all(uio, ca->sndlen); 6908 if (ca->m == NULL) { 6909 SCTP_FREE(ca, SCTP_M_COPYAL); 6910 SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 6911 return (ENOMEM); 6912 } 6913 } else { 6914 /* Gather the length of the send */ 6915 struct mbuf *mat; 6916 6917 ca->sndlen = 0; 6918 for (mat = m; mat; mat = SCTP_BUF_NEXT(mat)) { 6919 ca->sndlen += SCTP_BUF_LEN(mat); 6920 } 6921 } 6922 inp->sctp_flags |= SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6923 ret = sctp_initiate_iterator(NULL, sctp_sendall_iterator, NULL, 6924 SCTP_PCB_ANY_FLAGS, SCTP_PCB_ANY_FEATURES, 6925 SCTP_ASOC_ANY_STATE, 6926 (void *)ca, 0, 6927 sctp_sendall_completes, inp, 1); 6928 if (ret) { 6929 inp->sctp_flags &= ~SCTP_PCB_FLAGS_SND_ITERATOR_UP; 6930 SCTP_FREE(ca, SCTP_M_COPYAL); 6931 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 6932 return (EFAULT); 6933 } 6934 return (0); 6935 } 6936 6937 6938 void 6939 sctp_toss_old_cookies(struct sctp_tcb *stcb, struct sctp_association *asoc) 6940 { 6941 struct sctp_tmit_chunk *chk, *nchk; 6942 6943 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 6944 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 6945 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 6946 asoc->ctrl_queue_cnt--; 6947 if (chk->data) { 6948 sctp_m_freem(chk->data); 6949 chk->data = NULL; 6950 } 6951 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6952 } 6953 } 6954 } 6955 6956 void 6957 sctp_toss_old_asconf(struct sctp_tcb *stcb) 6958 { 6959 struct sctp_association *asoc; 6960 struct sctp_tmit_chunk *chk, *nchk; 6961 struct sctp_asconf_chunk *acp; 6962 6963 asoc = &stcb->asoc; 6964 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 6965 /* find SCTP_ASCONF chunk in queue */ 6966 if (chk->rec.chunk_id.id == SCTP_ASCONF) { 6967 if (chk->data) { 6968 acp = mtod(chk->data, struct sctp_asconf_chunk *); 6969 if (SCTP_TSN_GT(ntohl(acp->serial_number), asoc->asconf_seq_out_acked)) { 6970 /* Not Acked yet */ 6971 break; 6972 } 6973 } 6974 TAILQ_REMOVE(&asoc->asconf_send_queue, chk, sctp_next); 6975 asoc->ctrl_queue_cnt--; 6976 if (chk->data) { 6977 sctp_m_freem(chk->data); 6978 chk->data = NULL; 6979 } 6980 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 6981 } 6982 } 6983 } 6984 6985 6986 static void 6987 sctp_clean_up_datalist(struct sctp_tcb *stcb, 6988 struct sctp_association *asoc, 6989 struct sctp_tmit_chunk **data_list, 6990 int bundle_at, 6991 struct sctp_nets *net) 6992 { 6993 int i; 6994 struct sctp_tmit_chunk *tp1; 6995 6996 for (i = 0; i < bundle_at; i++) { 6997 /* off of the send queue */ 6998 TAILQ_REMOVE(&asoc->send_queue, data_list[i], sctp_next); 6999 asoc->send_queue_cnt--; 7000 if (i > 0) { 7001 /* 7002 * Any chunk NOT 0 you zap the time chunk 0 gets 7003 * zapped or set based on if a RTO measurment is 7004 * needed. 7005 */ 7006 data_list[i]->do_rtt = 0; 7007 } 7008 /* record time */ 7009 data_list[i]->sent_rcv_time = net->last_sent_time; 7010 data_list[i]->rec.data.cwnd_at_send = net->cwnd; 7011 data_list[i]->rec.data.fast_retran_tsn = data_list[i]->rec.data.tsn; 7012 if (data_list[i]->whoTo == NULL) { 7013 data_list[i]->whoTo = net; 7014 atomic_add_int(&net->ref_count, 1); 7015 } 7016 /* on to the sent queue */ 7017 tp1 = TAILQ_LAST(&asoc->sent_queue, sctpchunk_listhead); 7018 if ((tp1) && SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) { 7019 struct sctp_tmit_chunk *tpp; 7020 7021 /* need to move back */ 7022 back_up_more: 7023 tpp = TAILQ_PREV(tp1, sctpchunk_listhead, sctp_next); 7024 if (tpp == NULL) { 7025 TAILQ_INSERT_BEFORE(tp1, data_list[i], sctp_next); 7026 goto all_done; 7027 } 7028 tp1 = tpp; 7029 if (SCTP_TSN_GT(tp1->rec.data.tsn, data_list[i]->rec.data.tsn)) { 7030 goto back_up_more; 7031 } 7032 TAILQ_INSERT_AFTER(&asoc->sent_queue, tp1, data_list[i], sctp_next); 7033 } else { 7034 TAILQ_INSERT_TAIL(&asoc->sent_queue, 7035 data_list[i], 7036 sctp_next); 7037 } 7038 all_done: 7039 /* This does not lower until the cum-ack passes it */ 7040 asoc->sent_queue_cnt++; 7041 if ((asoc->peers_rwnd <= 0) && 7042 (asoc->total_flight == 0) && 7043 (bundle_at == 1)) { 7044 /* Mark the chunk as being a window probe */ 7045 SCTP_STAT_INCR(sctps_windowprobed); 7046 } 7047 #ifdef SCTP_AUDITING_ENABLED 7048 sctp_audit_log(0xC2, 3); 7049 #endif 7050 data_list[i]->sent = SCTP_DATAGRAM_SENT; 7051 data_list[i]->snd_count = 1; 7052 data_list[i]->rec.data.chunk_was_revoked = 0; 7053 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 7054 sctp_misc_ints(SCTP_FLIGHT_LOG_UP, 7055 data_list[i]->whoTo->flight_size, 7056 data_list[i]->book_size, 7057 (uint32_t)(uintptr_t)data_list[i]->whoTo, 7058 data_list[i]->rec.data.tsn); 7059 } 7060 sctp_flight_size_increase(data_list[i]); 7061 sctp_total_flight_increase(stcb, data_list[i]); 7062 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 7063 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 7064 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 7065 } 7066 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 7067 (uint32_t)(data_list[i]->send_size + SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 7068 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 7069 /* SWS sender side engages */ 7070 asoc->peers_rwnd = 0; 7071 } 7072 } 7073 if (asoc->cc_functions.sctp_cwnd_update_packet_transmitted) { 7074 (*asoc->cc_functions.sctp_cwnd_update_packet_transmitted) (stcb, net); 7075 } 7076 } 7077 7078 static void 7079 sctp_clean_up_ctl(struct sctp_tcb *stcb, struct sctp_association *asoc, int so_locked 7080 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7081 SCTP_UNUSED 7082 #endif 7083 ) 7084 { 7085 struct sctp_tmit_chunk *chk, *nchk; 7086 7087 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 7088 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7089 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 7090 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 7091 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 7092 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) || 7093 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 7094 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 7095 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 7096 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 7097 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 7098 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 7099 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 7100 /* Stray chunks must be cleaned up */ 7101 clean_up_anyway: 7102 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 7103 asoc->ctrl_queue_cnt--; 7104 if (chk->data) { 7105 sctp_m_freem(chk->data); 7106 chk->data = NULL; 7107 } 7108 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 7109 asoc->fwd_tsn_cnt--; 7110 } 7111 sctp_free_a_chunk(stcb, chk, so_locked); 7112 } else if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 7113 /* special handling, we must look into the param */ 7114 if (chk != asoc->str_reset) { 7115 goto clean_up_anyway; 7116 } 7117 } 7118 } 7119 } 7120 7121 static uint32_t 7122 sctp_can_we_split_this(struct sctp_tcb *stcb, uint32_t length, 7123 uint32_t space_left, uint32_t frag_point, int eeor_on) 7124 { 7125 /* 7126 * Make a decision on if I should split a msg into multiple parts. 7127 * This is only asked of incomplete messages. 7128 */ 7129 if (eeor_on) { 7130 /* 7131 * If we are doing EEOR we need to always send it if its the 7132 * entire thing, since it might be all the guy is putting in 7133 * the hopper. 7134 */ 7135 if (space_left >= length) { 7136 /*- 7137 * If we have data outstanding, 7138 * we get another chance when the sack 7139 * arrives to transmit - wait for more data 7140 */ 7141 if (stcb->asoc.total_flight == 0) { 7142 /* 7143 * If nothing is in flight, we zero the 7144 * packet counter. 7145 */ 7146 return (length); 7147 } 7148 return (0); 7149 7150 } else { 7151 /* You can fill the rest */ 7152 return (space_left); 7153 } 7154 } 7155 /*- 7156 * For those strange folk that make the send buffer 7157 * smaller than our fragmentation point, we can't 7158 * get a full msg in so we have to allow splitting. 7159 */ 7160 if (SCTP_SB_LIMIT_SND(stcb->sctp_socket) < frag_point) { 7161 return (length); 7162 } 7163 if ((length <= space_left) || 7164 ((length - space_left) < SCTP_BASE_SYSCTL(sctp_min_residual))) { 7165 /* Sub-optimial residual don't split in non-eeor mode. */ 7166 return (0); 7167 } 7168 /* 7169 * If we reach here length is larger than the space_left. Do we wish 7170 * to split it for the sake of packet putting together? 7171 */ 7172 if (space_left >= min(SCTP_BASE_SYSCTL(sctp_min_split_point), frag_point)) { 7173 /* Its ok to split it */ 7174 return (min(space_left, frag_point)); 7175 } 7176 /* Nope, can't split */ 7177 return (0); 7178 } 7179 7180 static uint32_t 7181 sctp_move_to_outqueue(struct sctp_tcb *stcb, 7182 struct sctp_stream_out *strq, 7183 uint32_t space_left, 7184 uint32_t frag_point, 7185 int *giveup, 7186 int eeor_mode, 7187 int *bail, 7188 int so_locked 7189 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7190 SCTP_UNUSED 7191 #endif 7192 ) 7193 { 7194 /* Move from the stream to the send_queue keeping track of the total */ 7195 struct sctp_association *asoc; 7196 struct sctp_stream_queue_pending *sp; 7197 struct sctp_tmit_chunk *chk; 7198 struct sctp_data_chunk *dchkh = NULL; 7199 struct sctp_idata_chunk *ndchkh = NULL; 7200 uint32_t to_move, length; 7201 int leading; 7202 uint8_t rcv_flags = 0; 7203 uint8_t some_taken; 7204 uint8_t send_lock_up = 0; 7205 7206 SCTP_TCB_LOCK_ASSERT(stcb); 7207 asoc = &stcb->asoc; 7208 one_more_time: 7209 /* sa_ignore FREED_MEMORY */ 7210 sp = TAILQ_FIRST(&strq->outqueue); 7211 if (sp == NULL) { 7212 if (send_lock_up == 0) { 7213 SCTP_TCB_SEND_LOCK(stcb); 7214 send_lock_up = 1; 7215 } 7216 sp = TAILQ_FIRST(&strq->outqueue); 7217 if (sp) { 7218 goto one_more_time; 7219 } 7220 if ((sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_EXPLICIT_EOR) == 0) && 7221 (stcb->asoc.idata_supported == 0) && 7222 (strq->last_msg_incomplete)) { 7223 SCTP_PRINTF("Huh? Stream:%d lm_in_c=%d but queue is NULL\n", 7224 strq->sid, 7225 strq->last_msg_incomplete); 7226 strq->last_msg_incomplete = 0; 7227 } 7228 to_move = 0; 7229 if (send_lock_up) { 7230 SCTP_TCB_SEND_UNLOCK(stcb); 7231 send_lock_up = 0; 7232 } 7233 goto out_of; 7234 } 7235 if ((sp->msg_is_complete) && (sp->length == 0)) { 7236 if (sp->sender_all_done) { 7237 /* 7238 * We are doing deferred cleanup. Last time through 7239 * when we took all the data the sender_all_done was 7240 * not set. 7241 */ 7242 if ((sp->put_last_out == 0) && (sp->discard_rest == 0)) { 7243 SCTP_PRINTF("Gak, put out entire msg with NO end!-1\n"); 7244 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7245 sp->sender_all_done, 7246 sp->length, 7247 sp->msg_is_complete, 7248 sp->put_last_out, 7249 send_lock_up); 7250 } 7251 if ((TAILQ_NEXT(sp, next) == NULL) && (send_lock_up == 0)) { 7252 SCTP_TCB_SEND_LOCK(stcb); 7253 send_lock_up = 1; 7254 } 7255 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7256 TAILQ_REMOVE(&strq->outqueue, sp, next); 7257 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7258 if ((strq->state == SCTP_STREAM_RESET_PENDING) && 7259 (strq->chunks_on_queues == 0) && 7260 TAILQ_EMPTY(&strq->outqueue)) { 7261 stcb->asoc.trigger_reset = 1; 7262 } 7263 if (sp->net) { 7264 sctp_free_remote_addr(sp->net); 7265 sp->net = NULL; 7266 } 7267 if (sp->data) { 7268 sctp_m_freem(sp->data); 7269 sp->data = NULL; 7270 } 7271 sctp_free_a_strmoq(stcb, sp, so_locked); 7272 /* we can't be locked to it */ 7273 if (send_lock_up) { 7274 SCTP_TCB_SEND_UNLOCK(stcb); 7275 send_lock_up = 0; 7276 } 7277 /* back to get the next msg */ 7278 goto one_more_time; 7279 } else { 7280 /* 7281 * sender just finished this but still holds a 7282 * reference 7283 */ 7284 *giveup = 1; 7285 to_move = 0; 7286 goto out_of; 7287 } 7288 } else { 7289 /* is there some to get */ 7290 if (sp->length == 0) { 7291 /* no */ 7292 *giveup = 1; 7293 to_move = 0; 7294 goto out_of; 7295 } else if (sp->discard_rest) { 7296 if (send_lock_up == 0) { 7297 SCTP_TCB_SEND_LOCK(stcb); 7298 send_lock_up = 1; 7299 } 7300 /* Whack down the size */ 7301 atomic_subtract_int(&stcb->asoc.total_output_queue_size, sp->length); 7302 if ((stcb->sctp_socket != NULL) && 7303 ((stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) || 7304 (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL))) { 7305 atomic_subtract_int(&stcb->sctp_socket->so_snd.sb_cc, sp->length); 7306 } 7307 if (sp->data) { 7308 sctp_m_freem(sp->data); 7309 sp->data = NULL; 7310 sp->tail_mbuf = NULL; 7311 } 7312 sp->length = 0; 7313 sp->some_taken = 1; 7314 *giveup = 1; 7315 to_move = 0; 7316 goto out_of; 7317 } 7318 } 7319 some_taken = sp->some_taken; 7320 re_look: 7321 length = sp->length; 7322 if (sp->msg_is_complete) { 7323 /* The message is complete */ 7324 to_move = min(length, frag_point); 7325 if (to_move == length) { 7326 /* All of it fits in the MTU */ 7327 if (sp->some_taken) { 7328 rcv_flags |= SCTP_DATA_LAST_FRAG; 7329 } else { 7330 rcv_flags |= SCTP_DATA_NOT_FRAG; 7331 } 7332 sp->put_last_out = 1; 7333 if (sp->sinfo_flags & SCTP_SACK_IMMEDIATELY) { 7334 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7335 } 7336 } else { 7337 /* Not all of it fits, we fragment */ 7338 if (sp->some_taken == 0) { 7339 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7340 } 7341 sp->some_taken = 1; 7342 } 7343 } else { 7344 to_move = sctp_can_we_split_this(stcb, length, space_left, frag_point, eeor_mode); 7345 if (to_move) { 7346 /*- 7347 * We use a snapshot of length in case it 7348 * is expanding during the compare. 7349 */ 7350 uint32_t llen; 7351 7352 llen = length; 7353 if (to_move >= llen) { 7354 to_move = llen; 7355 if (send_lock_up == 0) { 7356 /*- 7357 * We are taking all of an incomplete msg 7358 * thus we need a send lock. 7359 */ 7360 SCTP_TCB_SEND_LOCK(stcb); 7361 send_lock_up = 1; 7362 if (sp->msg_is_complete) { 7363 /* 7364 * the sender finished the 7365 * msg 7366 */ 7367 goto re_look; 7368 } 7369 } 7370 } 7371 if (sp->some_taken == 0) { 7372 rcv_flags |= SCTP_DATA_FIRST_FRAG; 7373 sp->some_taken = 1; 7374 } 7375 } else { 7376 /* Nothing to take. */ 7377 *giveup = 1; 7378 to_move = 0; 7379 goto out_of; 7380 } 7381 } 7382 7383 /* If we reach here, we can copy out a chunk */ 7384 sctp_alloc_a_chunk(stcb, chk); 7385 if (chk == NULL) { 7386 /* No chunk memory */ 7387 *giveup = 1; 7388 to_move = 0; 7389 goto out_of; 7390 } 7391 /* 7392 * Setup for unordered if needed by looking at the user sent info 7393 * flags. 7394 */ 7395 if (sp->sinfo_flags & SCTP_UNORDERED) { 7396 rcv_flags |= SCTP_DATA_UNORDERED; 7397 } 7398 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 7399 (sp->sinfo_flags & SCTP_EOF) == SCTP_EOF) { 7400 rcv_flags |= SCTP_DATA_SACK_IMMEDIATELY; 7401 } 7402 /* clear out the chunk before setting up */ 7403 memset(chk, 0, sizeof(*chk)); 7404 chk->rec.data.rcv_flags = rcv_flags; 7405 7406 if (to_move >= length) { 7407 /* we think we can steal the whole thing */ 7408 if ((sp->sender_all_done == 0) && (send_lock_up == 0)) { 7409 SCTP_TCB_SEND_LOCK(stcb); 7410 send_lock_up = 1; 7411 } 7412 if (to_move < sp->length) { 7413 /* bail, it changed */ 7414 goto dont_do_it; 7415 } 7416 chk->data = sp->data; 7417 chk->last_mbuf = sp->tail_mbuf; 7418 /* register the stealing */ 7419 sp->data = sp->tail_mbuf = NULL; 7420 } else { 7421 struct mbuf *m; 7422 7423 dont_do_it: 7424 chk->data = SCTP_M_COPYM(sp->data, 0, to_move, M_NOWAIT); 7425 chk->last_mbuf = NULL; 7426 if (chk->data == NULL) { 7427 sp->some_taken = some_taken; 7428 sctp_free_a_chunk(stcb, chk, so_locked); 7429 *bail = 1; 7430 to_move = 0; 7431 goto out_of; 7432 } 7433 #ifdef SCTP_MBUF_LOGGING 7434 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 7435 sctp_log_mbc(chk->data, SCTP_MBUF_ICOPY); 7436 } 7437 #endif 7438 /* Pull off the data */ 7439 m_adj(sp->data, to_move); 7440 /* Now lets work our way down and compact it */ 7441 m = sp->data; 7442 while (m && (SCTP_BUF_LEN(m) == 0)) { 7443 sp->data = SCTP_BUF_NEXT(m); 7444 SCTP_BUF_NEXT(m) = NULL; 7445 if (sp->tail_mbuf == m) { 7446 /*- 7447 * Freeing tail? TSNH since 7448 * we supposedly were taking less 7449 * than the sp->length. 7450 */ 7451 #ifdef INVARIANTS 7452 panic("Huh, freing tail? - TSNH"); 7453 #else 7454 SCTP_PRINTF("Huh, freeing tail? - TSNH\n"); 7455 sp->tail_mbuf = sp->data = NULL; 7456 sp->length = 0; 7457 #endif 7458 7459 } 7460 sctp_m_free(m); 7461 m = sp->data; 7462 } 7463 } 7464 if (SCTP_BUF_IS_EXTENDED(chk->data)) { 7465 chk->copy_by_ref = 1; 7466 } else { 7467 chk->copy_by_ref = 0; 7468 } 7469 /* 7470 * get last_mbuf and counts of mb usage This is ugly but hopefully 7471 * its only one mbuf. 7472 */ 7473 if (chk->last_mbuf == NULL) { 7474 chk->last_mbuf = chk->data; 7475 while (SCTP_BUF_NEXT(chk->last_mbuf) != NULL) { 7476 chk->last_mbuf = SCTP_BUF_NEXT(chk->last_mbuf); 7477 } 7478 } 7479 7480 if (to_move > length) { 7481 /*- This should not happen either 7482 * since we always lower to_move to the size 7483 * of sp->length if its larger. 7484 */ 7485 #ifdef INVARIANTS 7486 panic("Huh, how can to_move be larger?"); 7487 #else 7488 SCTP_PRINTF("Huh, how can to_move be larger?\n"); 7489 sp->length = 0; 7490 #endif 7491 } else { 7492 atomic_subtract_int(&sp->length, to_move); 7493 } 7494 leading = SCTP_DATA_CHUNK_OVERHEAD(stcb); 7495 if (M_LEADINGSPACE(chk->data) < leading) { 7496 /* Not enough room for a chunk header, get some */ 7497 struct mbuf *m; 7498 7499 m = sctp_get_mbuf_for_msg(1, 0, M_NOWAIT, 1, MT_DATA); 7500 if (m == NULL) { 7501 /* 7502 * we're in trouble here. _PREPEND below will free 7503 * all the data if there is no leading space, so we 7504 * must put the data back and restore. 7505 */ 7506 if (send_lock_up == 0) { 7507 SCTP_TCB_SEND_LOCK(stcb); 7508 send_lock_up = 1; 7509 } 7510 if (sp->data == NULL) { 7511 /* unsteal the data */ 7512 sp->data = chk->data; 7513 sp->tail_mbuf = chk->last_mbuf; 7514 } else { 7515 struct mbuf *m_tmp; 7516 7517 /* reassemble the data */ 7518 m_tmp = sp->data; 7519 sp->data = chk->data; 7520 SCTP_BUF_NEXT(chk->last_mbuf) = m_tmp; 7521 } 7522 sp->some_taken = some_taken; 7523 atomic_add_int(&sp->length, to_move); 7524 chk->data = NULL; 7525 *bail = 1; 7526 sctp_free_a_chunk(stcb, chk, so_locked); 7527 to_move = 0; 7528 goto out_of; 7529 } else { 7530 SCTP_BUF_LEN(m) = 0; 7531 SCTP_BUF_NEXT(m) = chk->data; 7532 chk->data = m; 7533 M_ALIGN(chk->data, 4); 7534 } 7535 } 7536 SCTP_BUF_PREPEND(chk->data, SCTP_DATA_CHUNK_OVERHEAD(stcb), M_NOWAIT); 7537 if (chk->data == NULL) { 7538 /* HELP, TSNH since we assured it would not above? */ 7539 #ifdef INVARIANTS 7540 panic("prepend failes HELP?"); 7541 #else 7542 SCTP_PRINTF("prepend fails HELP?\n"); 7543 sctp_free_a_chunk(stcb, chk, so_locked); 7544 #endif 7545 *bail = 1; 7546 to_move = 0; 7547 goto out_of; 7548 } 7549 sctp_snd_sb_alloc(stcb, SCTP_DATA_CHUNK_OVERHEAD(stcb)); 7550 chk->book_size = chk->send_size = (uint16_t)(to_move + SCTP_DATA_CHUNK_OVERHEAD(stcb)); 7551 chk->book_size_scale = 0; 7552 chk->sent = SCTP_DATAGRAM_UNSENT; 7553 7554 chk->flags = 0; 7555 chk->asoc = &stcb->asoc; 7556 chk->pad_inplace = 0; 7557 chk->no_fr_allowed = 0; 7558 if (stcb->asoc.idata_supported == 0) { 7559 if (rcv_flags & SCTP_DATA_UNORDERED) { 7560 /* Just use 0. The receiver ignores the values. */ 7561 chk->rec.data.mid = 0; 7562 } else { 7563 chk->rec.data.mid = strq->next_mid_ordered; 7564 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7565 strq->next_mid_ordered++; 7566 } 7567 } 7568 } else { 7569 if (rcv_flags & SCTP_DATA_UNORDERED) { 7570 chk->rec.data.mid = strq->next_mid_unordered; 7571 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7572 strq->next_mid_unordered++; 7573 } 7574 } else { 7575 chk->rec.data.mid = strq->next_mid_ordered; 7576 if (rcv_flags & SCTP_DATA_LAST_FRAG) { 7577 strq->next_mid_ordered++; 7578 } 7579 } 7580 } 7581 chk->rec.data.sid = sp->sid; 7582 chk->rec.data.ppid = sp->ppid; 7583 chk->rec.data.context = sp->context; 7584 chk->rec.data.doing_fast_retransmit = 0; 7585 7586 chk->rec.data.timetodrop = sp->ts; 7587 chk->flags = sp->act_flags; 7588 7589 if (sp->net) { 7590 chk->whoTo = sp->net; 7591 atomic_add_int(&chk->whoTo->ref_count, 1); 7592 } else 7593 chk->whoTo = NULL; 7594 7595 if (sp->holds_key_ref) { 7596 chk->auth_keyid = sp->auth_keyid; 7597 sctp_auth_key_acquire(stcb, chk->auth_keyid); 7598 chk->holds_key_ref = 1; 7599 } 7600 chk->rec.data.tsn = atomic_fetchadd_int(&asoc->sending_seq, 1); 7601 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_AT_SEND_2_OUTQ) { 7602 sctp_misc_ints(SCTP_STRMOUT_LOG_SEND, 7603 (uint32_t)(uintptr_t)stcb, sp->length, 7604 (uint32_t)((chk->rec.data.sid << 16) | (0x0000ffff & chk->rec.data.mid)), 7605 chk->rec.data.tsn); 7606 } 7607 if (stcb->asoc.idata_supported == 0) { 7608 dchkh = mtod(chk->data, struct sctp_data_chunk *); 7609 } else { 7610 ndchkh = mtod(chk->data, struct sctp_idata_chunk *); 7611 } 7612 /* 7613 * Put the rest of the things in place now. Size was done earlier in 7614 * previous loop prior to padding. 7615 */ 7616 7617 #ifdef SCTP_ASOCLOG_OF_TSNS 7618 SCTP_TCB_LOCK_ASSERT(stcb); 7619 if (asoc->tsn_out_at >= SCTP_TSN_LOG_SIZE) { 7620 asoc->tsn_out_at = 0; 7621 asoc->tsn_out_wrapped = 1; 7622 } 7623 asoc->out_tsnlog[asoc->tsn_out_at].tsn = chk->rec.data.tsn; 7624 asoc->out_tsnlog[asoc->tsn_out_at].strm = chk->rec.data.sid; 7625 asoc->out_tsnlog[asoc->tsn_out_at].seq = chk->rec.data.mid; 7626 asoc->out_tsnlog[asoc->tsn_out_at].sz = chk->send_size; 7627 asoc->out_tsnlog[asoc->tsn_out_at].flgs = chk->rec.data.rcv_flags; 7628 asoc->out_tsnlog[asoc->tsn_out_at].stcb = (void *)stcb; 7629 asoc->out_tsnlog[asoc->tsn_out_at].in_pos = asoc->tsn_out_at; 7630 asoc->out_tsnlog[asoc->tsn_out_at].in_out = 2; 7631 asoc->tsn_out_at++; 7632 #endif 7633 if (stcb->asoc.idata_supported == 0) { 7634 dchkh->ch.chunk_type = SCTP_DATA; 7635 dchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7636 dchkh->dp.tsn = htonl(chk->rec.data.tsn); 7637 dchkh->dp.sid = htons(strq->sid); 7638 dchkh->dp.ssn = htons((uint16_t)chk->rec.data.mid); 7639 dchkh->dp.ppid = chk->rec.data.ppid; 7640 dchkh->ch.chunk_length = htons(chk->send_size); 7641 } else { 7642 ndchkh->ch.chunk_type = SCTP_IDATA; 7643 ndchkh->ch.chunk_flags = chk->rec.data.rcv_flags; 7644 ndchkh->dp.tsn = htonl(chk->rec.data.tsn); 7645 ndchkh->dp.sid = htons(strq->sid); 7646 ndchkh->dp.reserved = htons(0); 7647 ndchkh->dp.mid = htonl(chk->rec.data.mid); 7648 if (sp->fsn == 0) 7649 ndchkh->dp.ppid_fsn.ppid = chk->rec.data.ppid; 7650 else 7651 ndchkh->dp.ppid_fsn.fsn = htonl(sp->fsn); 7652 sp->fsn++; 7653 ndchkh->ch.chunk_length = htons(chk->send_size); 7654 } 7655 /* Now advance the chk->send_size by the actual pad needed. */ 7656 if (chk->send_size < SCTP_SIZE32(chk->book_size)) { 7657 /* need a pad */ 7658 struct mbuf *lm; 7659 int pads; 7660 7661 pads = SCTP_SIZE32(chk->book_size) - chk->send_size; 7662 lm = sctp_pad_lastmbuf(chk->data, pads, chk->last_mbuf); 7663 if (lm != NULL) { 7664 chk->last_mbuf = lm; 7665 chk->pad_inplace = 1; 7666 } 7667 chk->send_size += pads; 7668 } 7669 if (PR_SCTP_ENABLED(chk->flags)) { 7670 asoc->pr_sctp_cnt++; 7671 } 7672 if (sp->msg_is_complete && (sp->length == 0) && (sp->sender_all_done)) { 7673 /* All done pull and kill the message */ 7674 if (sp->put_last_out == 0) { 7675 SCTP_PRINTF("Gak, put out entire msg with NO end!-2\n"); 7676 SCTP_PRINTF("sender_done:%d len:%d msg_comp:%d put_last_out:%d send_lock:%d\n", 7677 sp->sender_all_done, 7678 sp->length, 7679 sp->msg_is_complete, 7680 sp->put_last_out, 7681 send_lock_up); 7682 } 7683 if ((send_lock_up == 0) && (TAILQ_NEXT(sp, next) == NULL)) { 7684 SCTP_TCB_SEND_LOCK(stcb); 7685 send_lock_up = 1; 7686 } 7687 atomic_subtract_int(&asoc->stream_queue_cnt, 1); 7688 TAILQ_REMOVE(&strq->outqueue, sp, next); 7689 stcb->asoc.ss_functions.sctp_ss_remove_from_stream(stcb, asoc, strq, sp, send_lock_up); 7690 if ((strq->state == SCTP_STREAM_RESET_PENDING) && 7691 (strq->chunks_on_queues == 0) && 7692 TAILQ_EMPTY(&strq->outqueue)) { 7693 stcb->asoc.trigger_reset = 1; 7694 } 7695 if (sp->net) { 7696 sctp_free_remote_addr(sp->net); 7697 sp->net = NULL; 7698 } 7699 if (sp->data) { 7700 sctp_m_freem(sp->data); 7701 sp->data = NULL; 7702 } 7703 sctp_free_a_strmoq(stcb, sp, so_locked); 7704 } 7705 asoc->chunks_on_out_queue++; 7706 strq->chunks_on_queues++; 7707 TAILQ_INSERT_TAIL(&asoc->send_queue, chk, sctp_next); 7708 asoc->send_queue_cnt++; 7709 out_of: 7710 if (send_lock_up) { 7711 SCTP_TCB_SEND_UNLOCK(stcb); 7712 } 7713 return (to_move); 7714 } 7715 7716 7717 static void 7718 sctp_fill_outqueue(struct sctp_tcb *stcb, 7719 struct sctp_nets *net, int frag_point, int eeor_mode, int *quit_now, int so_locked 7720 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7721 SCTP_UNUSED 7722 #endif 7723 ) 7724 { 7725 struct sctp_association *asoc; 7726 struct sctp_stream_out *strq; 7727 uint32_t space_left, moved, total_moved; 7728 int bail, giveup; 7729 7730 SCTP_TCB_LOCK_ASSERT(stcb); 7731 asoc = &stcb->asoc; 7732 total_moved = 0; 7733 switch (net->ro._l_addr.sa.sa_family) { 7734 #ifdef INET 7735 case AF_INET: 7736 space_left = net->mtu - SCTP_MIN_V4_OVERHEAD; 7737 break; 7738 #endif 7739 #ifdef INET6 7740 case AF_INET6: 7741 space_left = net->mtu - SCTP_MIN_OVERHEAD; 7742 break; 7743 #endif 7744 default: 7745 /* TSNH */ 7746 space_left = net->mtu; 7747 break; 7748 } 7749 /* Need an allowance for the data chunk header too */ 7750 space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb); 7751 7752 /* must make even word boundary */ 7753 space_left &= 0xfffffffc; 7754 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7755 giveup = 0; 7756 bail = 0; 7757 while ((space_left > 0) && (strq != NULL)) { 7758 moved = sctp_move_to_outqueue(stcb, strq, space_left, frag_point, 7759 &giveup, eeor_mode, &bail, so_locked); 7760 stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved); 7761 if ((giveup != 0) || (bail != 0)) { 7762 break; 7763 } 7764 strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc); 7765 total_moved += moved; 7766 space_left -= moved; 7767 if (space_left >= SCTP_DATA_CHUNK_OVERHEAD(stcb)) { 7768 space_left -= SCTP_DATA_CHUNK_OVERHEAD(stcb); 7769 } else { 7770 space_left = 0; 7771 } 7772 space_left &= 0xfffffffc; 7773 } 7774 if (bail != 0) 7775 *quit_now = 1; 7776 7777 stcb->asoc.ss_functions.sctp_ss_packet_done(stcb, net, asoc); 7778 7779 if (total_moved == 0) { 7780 if ((stcb->asoc.sctp_cmt_on_off == 0) && 7781 (net == stcb->asoc.primary_destination)) { 7782 /* ran dry for primary network net */ 7783 SCTP_STAT_INCR(sctps_primary_randry); 7784 } else if (stcb->asoc.sctp_cmt_on_off > 0) { 7785 /* ran dry with CMT on */ 7786 SCTP_STAT_INCR(sctps_cmt_randry); 7787 } 7788 } 7789 } 7790 7791 void 7792 sctp_fix_ecn_echo(struct sctp_association *asoc) 7793 { 7794 struct sctp_tmit_chunk *chk; 7795 7796 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7797 if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 7798 chk->sent = SCTP_DATAGRAM_UNSENT; 7799 } 7800 } 7801 } 7802 7803 void 7804 sctp_move_chunks_from_net(struct sctp_tcb *stcb, struct sctp_nets *net) 7805 { 7806 struct sctp_association *asoc; 7807 struct sctp_tmit_chunk *chk; 7808 struct sctp_stream_queue_pending *sp; 7809 unsigned int i; 7810 7811 if (net == NULL) { 7812 return; 7813 } 7814 asoc = &stcb->asoc; 7815 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 7816 TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) { 7817 if (sp->net == net) { 7818 sctp_free_remote_addr(sp->net); 7819 sp->net = NULL; 7820 } 7821 } 7822 } 7823 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7824 if (chk->whoTo == net) { 7825 sctp_free_remote_addr(chk->whoTo); 7826 chk->whoTo = NULL; 7827 } 7828 } 7829 } 7830 7831 int 7832 sctp_med_chunk_output(struct sctp_inpcb *inp, 7833 struct sctp_tcb *stcb, 7834 struct sctp_association *asoc, 7835 int *num_out, 7836 int *reason_code, 7837 int control_only, int from_where, 7838 struct timeval *now, int *now_filled, int frag_point, int so_locked 7839 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 7840 SCTP_UNUSED 7841 #endif 7842 ) 7843 { 7844 /** 7845 * Ok this is the generic chunk service queue. we must do the 7846 * following: 7847 * - Service the stream queue that is next, moving any 7848 * message (note I must get a complete message i.e. FIRST/MIDDLE and 7849 * LAST to the out queue in one pass) and assigning TSN's. This 7850 * only applys though if the peer does not support NDATA. For NDATA 7851 * chunks its ok to not send the entire message ;-) 7852 * - Check to see if the cwnd/rwnd allows any output, if so we go ahead and 7853 * fomulate and send the low level chunks. Making sure to combine 7854 * any control in the control chunk queue also. 7855 */ 7856 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; 7857 struct mbuf *outchain, *endoutchain; 7858 struct sctp_tmit_chunk *chk, *nchk; 7859 7860 /* temp arrays for unlinking */ 7861 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 7862 int no_fragmentflg, error; 7863 unsigned int max_rwnd_per_dest, max_send_per_dest; 7864 int one_chunk, hbflag, skip_data_for_this_net; 7865 int asconf, cookie, no_out_cnt; 7866 int bundle_at, ctl_cnt, no_data_chunks, eeor_mode; 7867 unsigned int mtu, r_mtu, omtu, mx_mtu, to_out; 7868 int tsns_sent = 0; 7869 uint32_t auth_offset; 7870 struct sctp_auth_chunk *auth; 7871 uint16_t auth_keyid; 7872 int override_ok = 1; 7873 int skip_fill_up = 0; 7874 int data_auth_reqd = 0; 7875 7876 /* 7877 * JRS 5/14/07 - Add flag for whether a heartbeat is sent to the 7878 * destination. 7879 */ 7880 int quit_now = 0; 7881 7882 *num_out = 0; 7883 *reason_code = 0; 7884 auth_keyid = stcb->asoc.authinfo.active_keyid; 7885 if ((asoc->state & SCTP_STATE_SHUTDOWN_PENDING) || 7886 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 7887 (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) { 7888 eeor_mode = 1; 7889 } else { 7890 eeor_mode = 0; 7891 } 7892 ctl_cnt = no_out_cnt = asconf = cookie = 0; 7893 /* 7894 * First lets prime the pump. For each destination, if there is room 7895 * in the flight size, attempt to pull an MTU's worth out of the 7896 * stream queues into the general send_queue 7897 */ 7898 #ifdef SCTP_AUDITING_ENABLED 7899 sctp_audit_log(0xC2, 2); 7900 #endif 7901 SCTP_TCB_LOCK_ASSERT(stcb); 7902 hbflag = 0; 7903 if (control_only) 7904 no_data_chunks = 1; 7905 else 7906 no_data_chunks = 0; 7907 7908 /* Nothing to possible to send? */ 7909 if ((TAILQ_EMPTY(&asoc->control_send_queue) || 7910 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) && 7911 TAILQ_EMPTY(&asoc->asconf_send_queue) && 7912 TAILQ_EMPTY(&asoc->send_queue) && 7913 sctp_is_there_unsent_data(stcb, so_locked) == 0) { 7914 nothing_to_send: 7915 *reason_code = 9; 7916 return (0); 7917 } 7918 if (asoc->peers_rwnd == 0) { 7919 /* No room in peers rwnd */ 7920 *reason_code = 1; 7921 if (asoc->total_flight > 0) { 7922 /* we are allowed one chunk in flight */ 7923 no_data_chunks = 1; 7924 } 7925 } 7926 if (stcb->asoc.ecn_echo_cnt_onq) { 7927 /* Record where a sack goes, if any */ 7928 if (no_data_chunks && 7929 (asoc->ctrl_queue_cnt == stcb->asoc.ecn_echo_cnt_onq)) { 7930 /* Nothing but ECNe to send - we don't do that */ 7931 goto nothing_to_send; 7932 } 7933 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 7934 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 7935 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 7936 sack_goes_to = chk->whoTo; 7937 break; 7938 } 7939 } 7940 } 7941 max_rwnd_per_dest = ((asoc->peers_rwnd + asoc->total_flight) / asoc->numnets); 7942 if (stcb->sctp_socket) 7943 max_send_per_dest = SCTP_SB_LIMIT_SND(stcb->sctp_socket) / asoc->numnets; 7944 else 7945 max_send_per_dest = 0; 7946 if (no_data_chunks == 0) { 7947 /* How many non-directed chunks are there? */ 7948 TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) { 7949 if (chk->whoTo == NULL) { 7950 /* 7951 * We already have non-directed chunks on 7952 * the queue, no need to do a fill-up. 7953 */ 7954 skip_fill_up = 1; 7955 break; 7956 } 7957 } 7958 7959 } 7960 if ((no_data_chunks == 0) && 7961 (skip_fill_up == 0) && 7962 (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, asoc))) { 7963 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 7964 /* 7965 * This for loop we are in takes in each net, if 7966 * its's got space in cwnd and has data sent to it 7967 * (when CMT is off) then it calls 7968 * sctp_fill_outqueue for the net. This gets data on 7969 * the send queue for that network. 7970 * 7971 * In sctp_fill_outqueue TSN's are assigned and data 7972 * is copied out of the stream buffers. Note mostly 7973 * copy by reference (we hope). 7974 */ 7975 net->window_probe = 0; 7976 if ((net != stcb->asoc.alternate) && 7977 ((net->dest_state & SCTP_ADDR_PF) || 7978 (!(net->dest_state & SCTP_ADDR_REACHABLE)) || 7979 (net->dest_state & SCTP_ADDR_UNCONFIRMED))) { 7980 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7981 sctp_log_cwnd(stcb, net, 1, 7982 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7983 } 7984 continue; 7985 } 7986 if ((stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) && 7987 (net->flight_size == 0)) { 7988 (*stcb->asoc.cc_functions.sctp_cwnd_new_transmission_begins) (stcb, net); 7989 } 7990 if (net->flight_size >= net->cwnd) { 7991 /* skip this network, no room - can't fill */ 7992 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7993 sctp_log_cwnd(stcb, net, 3, 7994 SCTP_CWND_LOG_FILL_OUTQ_CALLED); 7995 } 7996 continue; 7997 } 7998 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 7999 sctp_log_cwnd(stcb, net, 4, SCTP_CWND_LOG_FILL_OUTQ_CALLED); 8000 } 8001 sctp_fill_outqueue(stcb, net, frag_point, eeor_mode, &quit_now, so_locked); 8002 if (quit_now) { 8003 /* memory alloc failure */ 8004 no_data_chunks = 1; 8005 break; 8006 } 8007 } 8008 } 8009 /* now service each destination and send out what we can for it */ 8010 /* Nothing to send? */ 8011 if (TAILQ_EMPTY(&asoc->control_send_queue) && 8012 TAILQ_EMPTY(&asoc->asconf_send_queue) && 8013 TAILQ_EMPTY(&asoc->send_queue)) { 8014 *reason_code = 8; 8015 return (0); 8016 } 8017 8018 if (asoc->sctp_cmt_on_off > 0) { 8019 /* get the last start point */ 8020 start_at = asoc->last_net_cmt_send_started; 8021 if (start_at == NULL) { 8022 /* null so to beginning */ 8023 start_at = TAILQ_FIRST(&asoc->nets); 8024 } else { 8025 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next); 8026 if (start_at == NULL) { 8027 start_at = TAILQ_FIRST(&asoc->nets); 8028 } 8029 } 8030 asoc->last_net_cmt_send_started = start_at; 8031 } else { 8032 start_at = TAILQ_FIRST(&asoc->nets); 8033 } 8034 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 8035 if (chk->whoTo == NULL) { 8036 if (asoc->alternate) { 8037 chk->whoTo = asoc->alternate; 8038 } else { 8039 chk->whoTo = asoc->primary_destination; 8040 } 8041 atomic_add_int(&chk->whoTo->ref_count, 1); 8042 } 8043 } 8044 old_start_at = NULL; 8045 again_one_more_time: 8046 for (net = start_at; net != NULL; net = TAILQ_NEXT(net, sctp_next)) { 8047 /* how much can we send? */ 8048 /* SCTPDBG("Examine for sending net:%x\n", (uint32_t)net); */ 8049 if (old_start_at && (old_start_at == net)) { 8050 /* through list ocmpletely. */ 8051 break; 8052 } 8053 tsns_sent = 0xa; 8054 if (TAILQ_EMPTY(&asoc->control_send_queue) && 8055 TAILQ_EMPTY(&asoc->asconf_send_queue) && 8056 (net->flight_size >= net->cwnd)) { 8057 /* 8058 * Nothing on control or asconf and flight is full, 8059 * we can skip even in the CMT case. 8060 */ 8061 continue; 8062 } 8063 bundle_at = 0; 8064 endoutchain = outchain = NULL; 8065 auth = NULL; 8066 auth_offset = 0; 8067 no_fragmentflg = 1; 8068 one_chunk = 0; 8069 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 8070 skip_data_for_this_net = 1; 8071 } else { 8072 skip_data_for_this_net = 0; 8073 } 8074 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8075 #ifdef INET 8076 case AF_INET: 8077 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8078 break; 8079 #endif 8080 #ifdef INET6 8081 case AF_INET6: 8082 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8083 break; 8084 #endif 8085 default: 8086 /* TSNH */ 8087 mtu = net->mtu; 8088 break; 8089 } 8090 mx_mtu = mtu; 8091 to_out = 0; 8092 if (mtu > asoc->peers_rwnd) { 8093 if (asoc->total_flight > 0) { 8094 /* We have a packet in flight somewhere */ 8095 r_mtu = asoc->peers_rwnd; 8096 } else { 8097 /* We are always allowed to send one MTU out */ 8098 one_chunk = 1; 8099 r_mtu = mtu; 8100 } 8101 } else { 8102 r_mtu = mtu; 8103 } 8104 error = 0; 8105 /************************/ 8106 /* ASCONF transmission */ 8107 /************************/ 8108 /* Now first lets go through the asconf queue */ 8109 TAILQ_FOREACH_SAFE(chk, &asoc->asconf_send_queue, sctp_next, nchk) { 8110 if (chk->rec.chunk_id.id != SCTP_ASCONF) { 8111 continue; 8112 } 8113 if (chk->whoTo == NULL) { 8114 if (asoc->alternate == NULL) { 8115 if (asoc->primary_destination != net) { 8116 break; 8117 } 8118 } else { 8119 if (asoc->alternate != net) { 8120 break; 8121 } 8122 } 8123 } else { 8124 if (chk->whoTo != net) { 8125 break; 8126 } 8127 } 8128 if (chk->data == NULL) { 8129 break; 8130 } 8131 if (chk->sent != SCTP_DATAGRAM_UNSENT && 8132 chk->sent != SCTP_DATAGRAM_RESEND) { 8133 break; 8134 } 8135 /* 8136 * if no AUTH is yet included and this chunk 8137 * requires it, make sure to account for it. We 8138 * don't apply the size until the AUTH chunk is 8139 * actually added below in case there is no room for 8140 * this chunk. NOTE: we overload the use of "omtu" 8141 * here 8142 */ 8143 if ((auth == NULL) && 8144 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8145 stcb->asoc.peer_auth_chunks)) { 8146 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8147 } else 8148 omtu = 0; 8149 /* Here we do NOT factor the r_mtu */ 8150 if ((chk->send_size < (int)(mtu - omtu)) || 8151 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8152 /* 8153 * We probably should glom the mbuf chain 8154 * from the chk->data for control but the 8155 * problem is it becomes yet one more level 8156 * of tracking to do if for some reason 8157 * output fails. Then I have got to 8158 * reconstruct the merged control chain.. el 8159 * yucko.. for now we take the easy way and 8160 * do the copy 8161 */ 8162 /* 8163 * Add an AUTH chunk, if chunk requires it 8164 * save the offset into the chain for AUTH 8165 */ 8166 if ((auth == NULL) && 8167 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8168 stcb->asoc.peer_auth_chunks))) { 8169 outchain = sctp_add_auth_chunk(outchain, 8170 &endoutchain, 8171 &auth, 8172 &auth_offset, 8173 stcb, 8174 chk->rec.chunk_id.id); 8175 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8176 } 8177 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8178 (int)chk->rec.chunk_id.can_take_data, 8179 chk->send_size, chk->copy_by_ref); 8180 if (outchain == NULL) { 8181 *reason_code = 8; 8182 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8183 return (ENOMEM); 8184 } 8185 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8186 /* update our MTU size */ 8187 if (mtu > (chk->send_size + omtu)) 8188 mtu -= (chk->send_size + omtu); 8189 else 8190 mtu = 0; 8191 to_out += (chk->send_size + omtu); 8192 /* Do clear IP_DF ? */ 8193 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8194 no_fragmentflg = 0; 8195 } 8196 if (chk->rec.chunk_id.can_take_data) 8197 chk->data = NULL; 8198 /* 8199 * set hb flag since we can use these for 8200 * RTO 8201 */ 8202 hbflag = 1; 8203 asconf = 1; 8204 /* 8205 * should sysctl this: don't bundle data 8206 * with ASCONF since it requires AUTH 8207 */ 8208 no_data_chunks = 1; 8209 chk->sent = SCTP_DATAGRAM_SENT; 8210 if (chk->whoTo == NULL) { 8211 chk->whoTo = net; 8212 atomic_add_int(&net->ref_count, 1); 8213 } 8214 chk->snd_count++; 8215 if (mtu == 0) { 8216 /* 8217 * Ok we are out of room but we can 8218 * output without effecting the 8219 * flight size since this little guy 8220 * is a control only packet. 8221 */ 8222 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8223 /* 8224 * do NOT clear the asconf flag as 8225 * it is used to do appropriate 8226 * source address selection. 8227 */ 8228 if (*now_filled == 0) { 8229 (void)SCTP_GETTIME_TIMEVAL(now); 8230 *now_filled = 1; 8231 } 8232 net->last_sent_time = *now; 8233 hbflag = 0; 8234 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8235 (struct sockaddr *)&net->ro._l_addr, 8236 outchain, auth_offset, auth, 8237 stcb->asoc.authinfo.active_keyid, 8238 no_fragmentflg, 0, asconf, 8239 inp->sctp_lport, stcb->rport, 8240 htonl(stcb->asoc.peer_vtag), 8241 net->port, NULL, 8242 0, 0, 8243 so_locked))) { 8244 /* 8245 * error, we could not 8246 * output 8247 */ 8248 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8249 if (from_where == 0) { 8250 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8251 } 8252 if (error == ENOBUFS) { 8253 asoc->ifp_had_enobuf = 1; 8254 SCTP_STAT_INCR(sctps_lowlevelerr); 8255 } 8256 /* error, could not output */ 8257 if (error == EHOSTUNREACH) { 8258 /* 8259 * Destination went 8260 * unreachable 8261 * during this send 8262 */ 8263 sctp_move_chunks_from_net(stcb, net); 8264 } 8265 *reason_code = 7; 8266 break; 8267 } else { 8268 asoc->ifp_had_enobuf = 0; 8269 } 8270 /* 8271 * increase the number we sent, if a 8272 * cookie is sent we don't tell them 8273 * any was sent out. 8274 */ 8275 outchain = endoutchain = NULL; 8276 auth = NULL; 8277 auth_offset = 0; 8278 if (!no_out_cnt) 8279 *num_out += ctl_cnt; 8280 /* recalc a clean slate and setup */ 8281 switch (net->ro._l_addr.sa.sa_family) { 8282 #ifdef INET 8283 case AF_INET: 8284 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8285 break; 8286 #endif 8287 #ifdef INET6 8288 case AF_INET6: 8289 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8290 break; 8291 #endif 8292 default: 8293 /* TSNH */ 8294 mtu = net->mtu; 8295 break; 8296 } 8297 to_out = 0; 8298 no_fragmentflg = 1; 8299 } 8300 } 8301 } 8302 if (error != 0) { 8303 /* try next net */ 8304 continue; 8305 } 8306 /************************/ 8307 /* Control transmission */ 8308 /************************/ 8309 /* Now first lets go through the control queue */ 8310 TAILQ_FOREACH_SAFE(chk, &asoc->control_send_queue, sctp_next, nchk) { 8311 if ((sack_goes_to) && 8312 (chk->rec.chunk_id.id == SCTP_ECN_ECHO) && 8313 (chk->whoTo != sack_goes_to)) { 8314 /* 8315 * if we have a sack in queue, and we are 8316 * looking at an ecn echo that is NOT queued 8317 * to where the sack is going.. 8318 */ 8319 if (chk->whoTo == net) { 8320 /* 8321 * Don't transmit it to where its 8322 * going (current net) 8323 */ 8324 continue; 8325 } else if (sack_goes_to == net) { 8326 /* 8327 * But do transmit it to this 8328 * address 8329 */ 8330 goto skip_net_check; 8331 } 8332 } 8333 if (chk->whoTo == NULL) { 8334 if (asoc->alternate == NULL) { 8335 if (asoc->primary_destination != net) { 8336 continue; 8337 } 8338 } else { 8339 if (asoc->alternate != net) { 8340 continue; 8341 } 8342 } 8343 } else { 8344 if (chk->whoTo != net) { 8345 continue; 8346 } 8347 } 8348 skip_net_check: 8349 if (chk->data == NULL) { 8350 continue; 8351 } 8352 if (chk->sent != SCTP_DATAGRAM_UNSENT) { 8353 /* 8354 * It must be unsent. Cookies and ASCONF's 8355 * hang around but there timers will force 8356 * when marked for resend. 8357 */ 8358 continue; 8359 } 8360 /* 8361 * if no AUTH is yet included and this chunk 8362 * requires it, make sure to account for it. We 8363 * don't apply the size until the AUTH chunk is 8364 * actually added below in case there is no room for 8365 * this chunk. NOTE: we overload the use of "omtu" 8366 * here 8367 */ 8368 if ((auth == NULL) && 8369 sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8370 stcb->asoc.peer_auth_chunks)) { 8371 omtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8372 } else 8373 omtu = 0; 8374 /* Here we do NOT factor the r_mtu */ 8375 if ((chk->send_size <= (int)(mtu - omtu)) || 8376 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 8377 /* 8378 * We probably should glom the mbuf chain 8379 * from the chk->data for control but the 8380 * problem is it becomes yet one more level 8381 * of tracking to do if for some reason 8382 * output fails. Then I have got to 8383 * reconstruct the merged control chain.. el 8384 * yucko.. for now we take the easy way and 8385 * do the copy 8386 */ 8387 /* 8388 * Add an AUTH chunk, if chunk requires it 8389 * save the offset into the chain for AUTH 8390 */ 8391 if ((auth == NULL) && 8392 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 8393 stcb->asoc.peer_auth_chunks))) { 8394 outchain = sctp_add_auth_chunk(outchain, 8395 &endoutchain, 8396 &auth, 8397 &auth_offset, 8398 stcb, 8399 chk->rec.chunk_id.id); 8400 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8401 } 8402 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 8403 (int)chk->rec.chunk_id.can_take_data, 8404 chk->send_size, chk->copy_by_ref); 8405 if (outchain == NULL) { 8406 *reason_code = 8; 8407 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8408 return (ENOMEM); 8409 } 8410 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8411 /* update our MTU size */ 8412 if (mtu > (chk->send_size + omtu)) 8413 mtu -= (chk->send_size + omtu); 8414 else 8415 mtu = 0; 8416 to_out += (chk->send_size + omtu); 8417 /* Do clear IP_DF ? */ 8418 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8419 no_fragmentflg = 0; 8420 } 8421 if (chk->rec.chunk_id.can_take_data) 8422 chk->data = NULL; 8423 /* Mark things to be removed, if needed */ 8424 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8425 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK) || /* EY */ 8426 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) || 8427 (chk->rec.chunk_id.id == SCTP_HEARTBEAT_ACK) || 8428 (chk->rec.chunk_id.id == SCTP_SHUTDOWN) || 8429 (chk->rec.chunk_id.id == SCTP_SHUTDOWN_ACK) || 8430 (chk->rec.chunk_id.id == SCTP_OPERATION_ERROR) || 8431 (chk->rec.chunk_id.id == SCTP_COOKIE_ACK) || 8432 (chk->rec.chunk_id.id == SCTP_ECN_CWR) || 8433 (chk->rec.chunk_id.id == SCTP_PACKET_DROPPED) || 8434 (chk->rec.chunk_id.id == SCTP_ASCONF_ACK)) { 8435 if (chk->rec.chunk_id.id == SCTP_HEARTBEAT_REQUEST) { 8436 hbflag = 1; 8437 } 8438 /* remove these chunks at the end */ 8439 if ((chk->rec.chunk_id.id == SCTP_SELECTIVE_ACK) || 8440 (chk->rec.chunk_id.id == SCTP_NR_SELECTIVE_ACK)) { 8441 /* turn off the timer */ 8442 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 8443 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 8444 inp, stcb, NULL, 8445 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_1); 8446 } 8447 } 8448 ctl_cnt++; 8449 } else { 8450 /* 8451 * Other chunks, since they have 8452 * timers running (i.e. COOKIE) we 8453 * just "trust" that it gets sent or 8454 * retransmitted. 8455 */ 8456 ctl_cnt++; 8457 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 8458 cookie = 1; 8459 no_out_cnt = 1; 8460 } else if (chk->rec.chunk_id.id == SCTP_ECN_ECHO) { 8461 /* 8462 * Increment ecne send count 8463 * here this means we may be 8464 * over-zealous in our 8465 * counting if the send 8466 * fails, but its the best 8467 * place to do it (we used 8468 * to do it in the queue of 8469 * the chunk, but that did 8470 * not tell how many times 8471 * it was sent. 8472 */ 8473 SCTP_STAT_INCR(sctps_sendecne); 8474 } 8475 chk->sent = SCTP_DATAGRAM_SENT; 8476 if (chk->whoTo == NULL) { 8477 chk->whoTo = net; 8478 atomic_add_int(&net->ref_count, 1); 8479 } 8480 chk->snd_count++; 8481 } 8482 if (mtu == 0) { 8483 /* 8484 * Ok we are out of room but we can 8485 * output without effecting the 8486 * flight size since this little guy 8487 * is a control only packet. 8488 */ 8489 if (asconf) { 8490 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); 8491 /* 8492 * do NOT clear the asconf 8493 * flag as it is used to do 8494 * appropriate source 8495 * address selection. 8496 */ 8497 } 8498 if (cookie) { 8499 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8500 cookie = 0; 8501 } 8502 /* Only HB or ASCONF advances time */ 8503 if (hbflag) { 8504 if (*now_filled == 0) { 8505 (void)SCTP_GETTIME_TIMEVAL(now); 8506 *now_filled = 1; 8507 } 8508 net->last_sent_time = *now; 8509 hbflag = 0; 8510 } 8511 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 8512 (struct sockaddr *)&net->ro._l_addr, 8513 outchain, 8514 auth_offset, auth, 8515 stcb->asoc.authinfo.active_keyid, 8516 no_fragmentflg, 0, asconf, 8517 inp->sctp_lport, stcb->rport, 8518 htonl(stcb->asoc.peer_vtag), 8519 net->port, NULL, 8520 0, 0, 8521 so_locked))) { 8522 /* 8523 * error, we could not 8524 * output 8525 */ 8526 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8527 if (from_where == 0) { 8528 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8529 } 8530 if (error == ENOBUFS) { 8531 asoc->ifp_had_enobuf = 1; 8532 SCTP_STAT_INCR(sctps_lowlevelerr); 8533 } 8534 if (error == EHOSTUNREACH) { 8535 /* 8536 * Destination went 8537 * unreachable 8538 * during this send 8539 */ 8540 sctp_move_chunks_from_net(stcb, net); 8541 } 8542 *reason_code = 7; 8543 break; 8544 } else { 8545 asoc->ifp_had_enobuf = 0; 8546 } 8547 /* 8548 * increase the number we sent, if a 8549 * cookie is sent we don't tell them 8550 * any was sent out. 8551 */ 8552 outchain = endoutchain = NULL; 8553 auth = NULL; 8554 auth_offset = 0; 8555 if (!no_out_cnt) 8556 *num_out += ctl_cnt; 8557 /* recalc a clean slate and setup */ 8558 switch (net->ro._l_addr.sa.sa_family) { 8559 #ifdef INET 8560 case AF_INET: 8561 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8562 break; 8563 #endif 8564 #ifdef INET6 8565 case AF_INET6: 8566 mtu = net->mtu - SCTP_MIN_OVERHEAD; 8567 break; 8568 #endif 8569 default: 8570 /* TSNH */ 8571 mtu = net->mtu; 8572 break; 8573 } 8574 to_out = 0; 8575 no_fragmentflg = 1; 8576 } 8577 } 8578 } 8579 if (error != 0) { 8580 /* try next net */ 8581 continue; 8582 } 8583 /* JRI: if dest is in PF state, do not send data to it */ 8584 if ((asoc->sctp_cmt_on_off > 0) && 8585 (net != stcb->asoc.alternate) && 8586 (net->dest_state & SCTP_ADDR_PF)) { 8587 goto no_data_fill; 8588 } 8589 if (net->flight_size >= net->cwnd) { 8590 goto no_data_fill; 8591 } 8592 if ((asoc->sctp_cmt_on_off > 0) && 8593 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_RECV_BUFFER_SPLITTING) && 8594 (net->flight_size > max_rwnd_per_dest)) { 8595 goto no_data_fill; 8596 } 8597 /* 8598 * We need a specific accounting for the usage of the send 8599 * buffer. We also need to check the number of messages per 8600 * net. For now, this is better than nothing and it disabled 8601 * by default... 8602 */ 8603 if ((asoc->sctp_cmt_on_off > 0) && 8604 (SCTP_BASE_SYSCTL(sctp_buffer_splitting) & SCTP_SEND_BUFFER_SPLITTING) && 8605 (max_send_per_dest > 0) && 8606 (net->flight_size > max_send_per_dest)) { 8607 goto no_data_fill; 8608 } 8609 /*********************/ 8610 /* Data transmission */ 8611 /*********************/ 8612 /* 8613 * if AUTH for DATA is required and no AUTH has been added 8614 * yet, account for this in the mtu now... if no data can be 8615 * bundled, this adjustment won't matter anyways since the 8616 * packet will be going out... 8617 */ 8618 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, 8619 stcb->asoc.peer_auth_chunks); 8620 if (data_auth_reqd && (auth == NULL)) { 8621 mtu -= sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 8622 } 8623 /* now lets add any data within the MTU constraints */ 8624 switch (((struct sockaddr *)&net->ro._l_addr)->sa_family) { 8625 #ifdef INET 8626 case AF_INET: 8627 if (net->mtu > SCTP_MIN_V4_OVERHEAD) 8628 omtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 8629 else 8630 omtu = 0; 8631 break; 8632 #endif 8633 #ifdef INET6 8634 case AF_INET6: 8635 if (net->mtu > SCTP_MIN_OVERHEAD) 8636 omtu = net->mtu - SCTP_MIN_OVERHEAD; 8637 else 8638 omtu = 0; 8639 break; 8640 #endif 8641 default: 8642 /* TSNH */ 8643 omtu = 0; 8644 break; 8645 } 8646 if ((((SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) || 8647 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED)) && 8648 (skip_data_for_this_net == 0)) || 8649 (cookie)) { 8650 TAILQ_FOREACH_SAFE(chk, &asoc->send_queue, sctp_next, nchk) { 8651 if (no_data_chunks) { 8652 /* let only control go out */ 8653 *reason_code = 1; 8654 break; 8655 } 8656 if (net->flight_size >= net->cwnd) { 8657 /* skip this net, no room for data */ 8658 *reason_code = 2; 8659 break; 8660 } 8661 if ((chk->whoTo != NULL) && 8662 (chk->whoTo != net)) { 8663 /* Don't send the chunk on this net */ 8664 continue; 8665 } 8666 8667 if (asoc->sctp_cmt_on_off == 0) { 8668 if ((asoc->alternate) && 8669 (asoc->alternate != net) && 8670 (chk->whoTo == NULL)) { 8671 continue; 8672 } else if ((net != asoc->primary_destination) && 8673 (asoc->alternate == NULL) && 8674 (chk->whoTo == NULL)) { 8675 continue; 8676 } 8677 } 8678 if ((chk->send_size > omtu) && ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) == 0)) { 8679 /*- 8680 * strange, we have a chunk that is 8681 * to big for its destination and 8682 * yet no fragment ok flag. 8683 * Something went wrong when the 8684 * PMTU changed...we did not mark 8685 * this chunk for some reason?? I 8686 * will fix it here by letting IP 8687 * fragment it for now and printing 8688 * a warning. This really should not 8689 * happen ... 8690 */ 8691 SCTP_PRINTF("Warning chunk of %d bytes > mtu:%d and yet PMTU disc missed\n", 8692 chk->send_size, mtu); 8693 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK; 8694 } 8695 if (SCTP_BASE_SYSCTL(sctp_enable_sack_immediately) && 8696 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 8697 struct sctp_data_chunk *dchkh; 8698 8699 dchkh = mtod(chk->data, struct sctp_data_chunk *); 8700 dchkh->ch.chunk_flags |= SCTP_DATA_SACK_IMMEDIATELY; 8701 } 8702 if (((chk->send_size <= mtu) && (chk->send_size <= r_mtu)) || 8703 ((chk->flags & CHUNK_FLAGS_FRAGMENT_OK) && (chk->send_size <= asoc->peers_rwnd))) { 8704 /* ok we will add this one */ 8705 8706 /* 8707 * Add an AUTH chunk, if chunk 8708 * requires it, save the offset into 8709 * the chain for AUTH 8710 */ 8711 if (data_auth_reqd) { 8712 if (auth == NULL) { 8713 outchain = sctp_add_auth_chunk(outchain, 8714 &endoutchain, 8715 &auth, 8716 &auth_offset, 8717 stcb, 8718 SCTP_DATA); 8719 auth_keyid = chk->auth_keyid; 8720 override_ok = 0; 8721 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 8722 } else if (override_ok) { 8723 /* 8724 * use this data's 8725 * keyid 8726 */ 8727 auth_keyid = chk->auth_keyid; 8728 override_ok = 0; 8729 } else if (auth_keyid != chk->auth_keyid) { 8730 /* 8731 * different keyid, 8732 * so done bundling 8733 */ 8734 break; 8735 } 8736 } 8737 outchain = sctp_copy_mbufchain(chk->data, outchain, &endoutchain, 0, 8738 chk->send_size, chk->copy_by_ref); 8739 if (outchain == NULL) { 8740 SCTPDBG(SCTP_DEBUG_OUTPUT3, "No memory?\n"); 8741 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 8742 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8743 } 8744 *reason_code = 3; 8745 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 8746 return (ENOMEM); 8747 } 8748 /* upate our MTU size */ 8749 /* Do clear IP_DF ? */ 8750 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 8751 no_fragmentflg = 0; 8752 } 8753 /* unsigned subtraction of mtu */ 8754 if (mtu > chk->send_size) 8755 mtu -= chk->send_size; 8756 else 8757 mtu = 0; 8758 /* unsigned subtraction of r_mtu */ 8759 if (r_mtu > chk->send_size) 8760 r_mtu -= chk->send_size; 8761 else 8762 r_mtu = 0; 8763 8764 to_out += chk->send_size; 8765 if ((to_out > mx_mtu) && no_fragmentflg) { 8766 #ifdef INVARIANTS 8767 panic("Exceeding mtu of %d out size is %d", mx_mtu, to_out); 8768 #else 8769 SCTP_PRINTF("Exceeding mtu of %d out size is %d\n", 8770 mx_mtu, to_out); 8771 #endif 8772 } 8773 chk->window_probe = 0; 8774 data_list[bundle_at++] = chk; 8775 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 8776 break; 8777 } 8778 if (chk->sent == SCTP_DATAGRAM_UNSENT) { 8779 if ((chk->rec.data.rcv_flags & SCTP_DATA_UNORDERED) == 0) { 8780 SCTP_STAT_INCR_COUNTER64(sctps_outorderchunks); 8781 } else { 8782 SCTP_STAT_INCR_COUNTER64(sctps_outunorderchunks); 8783 } 8784 if (((chk->rec.data.rcv_flags & SCTP_DATA_LAST_FRAG) == SCTP_DATA_LAST_FRAG) && 8785 ((chk->rec.data.rcv_flags & SCTP_DATA_FIRST_FRAG) == 0)) 8786 /* 8787 * Count number of 8788 * user msg's that 8789 * were fragmented 8790 * we do this by 8791 * counting when we 8792 * see a LAST 8793 * fragment only. 8794 */ 8795 SCTP_STAT_INCR_COUNTER64(sctps_fragusrmsgs); 8796 } 8797 if ((mtu == 0) || (r_mtu == 0) || (one_chunk)) { 8798 if ((one_chunk) && (stcb->asoc.total_flight == 0)) { 8799 data_list[0]->window_probe = 1; 8800 net->window_probe = 1; 8801 } 8802 break; 8803 } 8804 } else { 8805 /* 8806 * Must be sent in order of the 8807 * TSN's (on a network) 8808 */ 8809 break; 8810 } 8811 } /* for (chunk gather loop for this net) */ 8812 } /* if asoc.state OPEN */ 8813 no_data_fill: 8814 /* Is there something to send for this destination? */ 8815 if (outchain) { 8816 /* We may need to start a control timer or two */ 8817 if (asconf) { 8818 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, 8819 stcb, net); 8820 /* 8821 * do NOT clear the asconf flag as it is 8822 * used to do appropriate source address 8823 * selection. 8824 */ 8825 } 8826 if (cookie) { 8827 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, net); 8828 cookie = 0; 8829 } 8830 /* must start a send timer if data is being sent */ 8831 if (bundle_at && (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer))) { 8832 /* 8833 * no timer running on this destination 8834 * restart it. 8835 */ 8836 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 8837 } 8838 if (bundle_at || hbflag) { 8839 /* For data/asconf and hb set time */ 8840 if (*now_filled == 0) { 8841 (void)SCTP_GETTIME_TIMEVAL(now); 8842 *now_filled = 1; 8843 } 8844 net->last_sent_time = *now; 8845 } 8846 /* Now send it, if there is anything to send :> */ 8847 if ((error = sctp_lowlevel_chunk_output(inp, 8848 stcb, 8849 net, 8850 (struct sockaddr *)&net->ro._l_addr, 8851 outchain, 8852 auth_offset, 8853 auth, 8854 auth_keyid, 8855 no_fragmentflg, 8856 bundle_at, 8857 asconf, 8858 inp->sctp_lport, stcb->rport, 8859 htonl(stcb->asoc.peer_vtag), 8860 net->port, NULL, 8861 0, 0, 8862 so_locked))) { 8863 /* error, we could not output */ 8864 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 8865 if (from_where == 0) { 8866 SCTP_STAT_INCR(sctps_lowlevelerrusr); 8867 } 8868 if (error == ENOBUFS) { 8869 asoc->ifp_had_enobuf = 1; 8870 SCTP_STAT_INCR(sctps_lowlevelerr); 8871 } 8872 if (error == EHOSTUNREACH) { 8873 /* 8874 * Destination went unreachable 8875 * during this send 8876 */ 8877 sctp_move_chunks_from_net(stcb, net); 8878 } 8879 *reason_code = 6; 8880 /*- 8881 * I add this line to be paranoid. As far as 8882 * I can tell the continue, takes us back to 8883 * the top of the for, but just to make sure 8884 * I will reset these again here. 8885 */ 8886 ctl_cnt = bundle_at = 0; 8887 continue; /* This takes us back to the 8888 * for() for the nets. */ 8889 } else { 8890 asoc->ifp_had_enobuf = 0; 8891 } 8892 endoutchain = NULL; 8893 auth = NULL; 8894 auth_offset = 0; 8895 if (!no_out_cnt) { 8896 *num_out += (ctl_cnt + bundle_at); 8897 } 8898 if (bundle_at) { 8899 /* setup for a RTO measurement */ 8900 tsns_sent = data_list[0]->rec.data.tsn; 8901 /* fill time if not already filled */ 8902 if (*now_filled == 0) { 8903 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 8904 *now_filled = 1; 8905 *now = asoc->time_last_sent; 8906 } else { 8907 asoc->time_last_sent = *now; 8908 } 8909 if (net->rto_needed) { 8910 data_list[0]->do_rtt = 1; 8911 net->rto_needed = 0; 8912 } 8913 SCTP_STAT_INCR_BY(sctps_senddata, bundle_at); 8914 sctp_clean_up_datalist(stcb, asoc, data_list, bundle_at, net); 8915 } 8916 if (one_chunk) { 8917 break; 8918 } 8919 } 8920 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8921 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_SEND); 8922 } 8923 } 8924 if (old_start_at == NULL) { 8925 old_start_at = start_at; 8926 start_at = TAILQ_FIRST(&asoc->nets); 8927 if (old_start_at) 8928 goto again_one_more_time; 8929 } 8930 8931 /* 8932 * At the end there should be no NON timed chunks hanging on this 8933 * queue. 8934 */ 8935 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 8936 sctp_log_cwnd(stcb, net, *num_out, SCTP_CWND_LOG_FROM_SEND); 8937 } 8938 if ((*num_out == 0) && (*reason_code == 0)) { 8939 *reason_code = 4; 8940 } else { 8941 *reason_code = 5; 8942 } 8943 sctp_clean_up_ctl(stcb, asoc, so_locked); 8944 return (0); 8945 } 8946 8947 void 8948 sctp_queue_op_err(struct sctp_tcb *stcb, struct mbuf *op_err) 8949 { 8950 /*- 8951 * Prepend a OPERATIONAL_ERROR chunk header and put on the end of 8952 * the control chunk queue. 8953 */ 8954 struct sctp_chunkhdr *hdr; 8955 struct sctp_tmit_chunk *chk; 8956 struct mbuf *mat, *last_mbuf; 8957 uint32_t chunk_length; 8958 uint16_t padding_length; 8959 8960 SCTP_TCB_LOCK_ASSERT(stcb); 8961 SCTP_BUF_PREPEND(op_err, sizeof(struct sctp_chunkhdr), M_NOWAIT); 8962 if (op_err == NULL) { 8963 return; 8964 } 8965 last_mbuf = NULL; 8966 chunk_length = 0; 8967 for (mat = op_err; mat != NULL; mat = SCTP_BUF_NEXT(mat)) { 8968 chunk_length += SCTP_BUF_LEN(mat); 8969 if (SCTP_BUF_NEXT(mat) == NULL) { 8970 last_mbuf = mat; 8971 } 8972 } 8973 if (chunk_length > SCTP_MAX_CHUNK_LENGTH) { 8974 sctp_m_freem(op_err); 8975 return; 8976 } 8977 padding_length = chunk_length % 4; 8978 if (padding_length != 0) { 8979 padding_length = 4 - padding_length; 8980 } 8981 if (padding_length != 0) { 8982 if (sctp_add_pad_tombuf(last_mbuf, padding_length) == NULL) { 8983 sctp_m_freem(op_err); 8984 return; 8985 } 8986 } 8987 sctp_alloc_a_chunk(stcb, chk); 8988 if (chk == NULL) { 8989 /* no memory */ 8990 sctp_m_freem(op_err); 8991 return; 8992 } 8993 chk->copy_by_ref = 0; 8994 chk->rec.chunk_id.id = SCTP_OPERATION_ERROR; 8995 chk->rec.chunk_id.can_take_data = 0; 8996 chk->flags = 0; 8997 chk->send_size = (uint16_t)chunk_length; 8998 chk->sent = SCTP_DATAGRAM_UNSENT; 8999 chk->snd_count = 0; 9000 chk->asoc = &stcb->asoc; 9001 chk->data = op_err; 9002 chk->whoTo = NULL; 9003 hdr = mtod(op_err, struct sctp_chunkhdr *); 9004 hdr->chunk_type = SCTP_OPERATION_ERROR; 9005 hdr->chunk_flags = 0; 9006 hdr->chunk_length = htons(chk->send_size); 9007 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9008 chk->asoc->ctrl_queue_cnt++; 9009 } 9010 9011 int 9012 sctp_send_cookie_echo(struct mbuf *m, 9013 int offset, int limit, 9014 struct sctp_tcb *stcb, 9015 struct sctp_nets *net) 9016 { 9017 /*- 9018 * pull out the cookie and put it at the front of the control chunk 9019 * queue. 9020 */ 9021 int at; 9022 struct mbuf *cookie; 9023 struct sctp_paramhdr param, *phdr; 9024 struct sctp_chunkhdr *hdr; 9025 struct sctp_tmit_chunk *chk; 9026 uint16_t ptype, plen; 9027 9028 SCTP_TCB_LOCK_ASSERT(stcb); 9029 /* First find the cookie in the param area */ 9030 cookie = NULL; 9031 at = offset + sizeof(struct sctp_init_chunk); 9032 for (;;) { 9033 phdr = sctp_get_next_param(m, at, ¶m, sizeof(param)); 9034 if (phdr == NULL) { 9035 return (-3); 9036 } 9037 ptype = ntohs(phdr->param_type); 9038 plen = ntohs(phdr->param_length); 9039 if (plen < sizeof(struct sctp_paramhdr)) { 9040 return (-6); 9041 } 9042 if (ptype == SCTP_STATE_COOKIE) { 9043 int pad; 9044 9045 /* found the cookie */ 9046 if (at + plen > limit) { 9047 return (-7); 9048 } 9049 cookie = SCTP_M_COPYM(m, at, plen, M_NOWAIT); 9050 if (cookie == NULL) { 9051 /* No memory */ 9052 return (-2); 9053 } 9054 if ((pad = (plen % 4)) > 0) { 9055 pad = 4 - pad; 9056 } 9057 if (pad > 0) { 9058 if (sctp_pad_lastmbuf(cookie, pad, NULL) == NULL) { 9059 return (-8); 9060 } 9061 } 9062 #ifdef SCTP_MBUF_LOGGING 9063 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9064 sctp_log_mbc(cookie, SCTP_MBUF_ICOPY); 9065 } 9066 #endif 9067 break; 9068 } 9069 at += SCTP_SIZE32(plen); 9070 } 9071 /* ok, we got the cookie lets change it into a cookie echo chunk */ 9072 /* first the change from param to cookie */ 9073 hdr = mtod(cookie, struct sctp_chunkhdr *); 9074 hdr->chunk_type = SCTP_COOKIE_ECHO; 9075 hdr->chunk_flags = 0; 9076 /* get the chunk stuff now and place it in the FRONT of the queue */ 9077 sctp_alloc_a_chunk(stcb, chk); 9078 if (chk == NULL) { 9079 /* no memory */ 9080 sctp_m_freem(cookie); 9081 return (-5); 9082 } 9083 chk->copy_by_ref = 0; 9084 chk->rec.chunk_id.id = SCTP_COOKIE_ECHO; 9085 chk->rec.chunk_id.can_take_data = 0; 9086 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9087 chk->send_size = SCTP_SIZE32(plen); 9088 chk->sent = SCTP_DATAGRAM_UNSENT; 9089 chk->snd_count = 0; 9090 chk->asoc = &stcb->asoc; 9091 chk->data = cookie; 9092 chk->whoTo = net; 9093 atomic_add_int(&chk->whoTo->ref_count, 1); 9094 TAILQ_INSERT_HEAD(&chk->asoc->control_send_queue, chk, sctp_next); 9095 chk->asoc->ctrl_queue_cnt++; 9096 return (0); 9097 } 9098 9099 void 9100 sctp_send_heartbeat_ack(struct sctp_tcb *stcb, 9101 struct mbuf *m, 9102 int offset, 9103 int chk_length, 9104 struct sctp_nets *net) 9105 { 9106 /* 9107 * take a HB request and make it into a HB ack and send it. 9108 */ 9109 struct mbuf *outchain; 9110 struct sctp_chunkhdr *chdr; 9111 struct sctp_tmit_chunk *chk; 9112 9113 if (net == NULL) 9114 /* must have a net pointer */ 9115 return; 9116 9117 outchain = SCTP_M_COPYM(m, offset, chk_length, M_NOWAIT); 9118 if (outchain == NULL) { 9119 /* gak out of memory */ 9120 return; 9121 } 9122 #ifdef SCTP_MBUF_LOGGING 9123 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9124 sctp_log_mbc(outchain, SCTP_MBUF_ICOPY); 9125 } 9126 #endif 9127 chdr = mtod(outchain, struct sctp_chunkhdr *); 9128 chdr->chunk_type = SCTP_HEARTBEAT_ACK; 9129 chdr->chunk_flags = 0; 9130 if (chk_length % 4 != 0) { 9131 sctp_pad_lastmbuf(outchain, 4 - (chk_length % 4), NULL); 9132 } 9133 sctp_alloc_a_chunk(stcb, chk); 9134 if (chk == NULL) { 9135 /* no memory */ 9136 sctp_m_freem(outchain); 9137 return; 9138 } 9139 chk->copy_by_ref = 0; 9140 chk->rec.chunk_id.id = SCTP_HEARTBEAT_ACK; 9141 chk->rec.chunk_id.can_take_data = 1; 9142 chk->flags = 0; 9143 chk->send_size = chk_length; 9144 chk->sent = SCTP_DATAGRAM_UNSENT; 9145 chk->snd_count = 0; 9146 chk->asoc = &stcb->asoc; 9147 chk->data = outchain; 9148 chk->whoTo = net; 9149 atomic_add_int(&chk->whoTo->ref_count, 1); 9150 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9151 chk->asoc->ctrl_queue_cnt++; 9152 } 9153 9154 void 9155 sctp_send_cookie_ack(struct sctp_tcb *stcb) 9156 { 9157 /* formulate and queue a cookie-ack back to sender */ 9158 struct mbuf *cookie_ack; 9159 struct sctp_chunkhdr *hdr; 9160 struct sctp_tmit_chunk *chk; 9161 9162 SCTP_TCB_LOCK_ASSERT(stcb); 9163 9164 cookie_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 9165 if (cookie_ack == NULL) { 9166 /* no mbuf's */ 9167 return; 9168 } 9169 SCTP_BUF_RESV_UF(cookie_ack, SCTP_MIN_OVERHEAD); 9170 sctp_alloc_a_chunk(stcb, chk); 9171 if (chk == NULL) { 9172 /* no memory */ 9173 sctp_m_freem(cookie_ack); 9174 return; 9175 } 9176 chk->copy_by_ref = 0; 9177 chk->rec.chunk_id.id = SCTP_COOKIE_ACK; 9178 chk->rec.chunk_id.can_take_data = 1; 9179 chk->flags = 0; 9180 chk->send_size = sizeof(struct sctp_chunkhdr); 9181 chk->sent = SCTP_DATAGRAM_UNSENT; 9182 chk->snd_count = 0; 9183 chk->asoc = &stcb->asoc; 9184 chk->data = cookie_ack; 9185 if (chk->asoc->last_control_chunk_from != NULL) { 9186 chk->whoTo = chk->asoc->last_control_chunk_from; 9187 atomic_add_int(&chk->whoTo->ref_count, 1); 9188 } else { 9189 chk->whoTo = NULL; 9190 } 9191 hdr = mtod(cookie_ack, struct sctp_chunkhdr *); 9192 hdr->chunk_type = SCTP_COOKIE_ACK; 9193 hdr->chunk_flags = 0; 9194 hdr->chunk_length = htons(chk->send_size); 9195 SCTP_BUF_LEN(cookie_ack) = chk->send_size; 9196 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9197 chk->asoc->ctrl_queue_cnt++; 9198 return; 9199 } 9200 9201 9202 void 9203 sctp_send_shutdown_ack(struct sctp_tcb *stcb, struct sctp_nets *net) 9204 { 9205 /* formulate and queue a SHUTDOWN-ACK back to the sender */ 9206 struct mbuf *m_shutdown_ack; 9207 struct sctp_shutdown_ack_chunk *ack_cp; 9208 struct sctp_tmit_chunk *chk; 9209 9210 m_shutdown_ack = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_ack_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9211 if (m_shutdown_ack == NULL) { 9212 /* no mbuf's */ 9213 return; 9214 } 9215 SCTP_BUF_RESV_UF(m_shutdown_ack, SCTP_MIN_OVERHEAD); 9216 sctp_alloc_a_chunk(stcb, chk); 9217 if (chk == NULL) { 9218 /* no memory */ 9219 sctp_m_freem(m_shutdown_ack); 9220 return; 9221 } 9222 chk->copy_by_ref = 0; 9223 chk->rec.chunk_id.id = SCTP_SHUTDOWN_ACK; 9224 chk->rec.chunk_id.can_take_data = 1; 9225 chk->flags = 0; 9226 chk->send_size = sizeof(struct sctp_chunkhdr); 9227 chk->sent = SCTP_DATAGRAM_UNSENT; 9228 chk->snd_count = 0; 9229 chk->asoc = &stcb->asoc; 9230 chk->data = m_shutdown_ack; 9231 chk->whoTo = net; 9232 if (chk->whoTo) { 9233 atomic_add_int(&chk->whoTo->ref_count, 1); 9234 } 9235 ack_cp = mtod(m_shutdown_ack, struct sctp_shutdown_ack_chunk *); 9236 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK; 9237 ack_cp->ch.chunk_flags = 0; 9238 ack_cp->ch.chunk_length = htons(chk->send_size); 9239 SCTP_BUF_LEN(m_shutdown_ack) = chk->send_size; 9240 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9241 chk->asoc->ctrl_queue_cnt++; 9242 return; 9243 } 9244 9245 void 9246 sctp_send_shutdown(struct sctp_tcb *stcb, struct sctp_nets *net) 9247 { 9248 /* formulate and queue a SHUTDOWN to the sender */ 9249 struct mbuf *m_shutdown; 9250 struct sctp_shutdown_chunk *shutdown_cp; 9251 struct sctp_tmit_chunk *chk; 9252 9253 TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 9254 if (chk->rec.chunk_id.id == SCTP_SHUTDOWN) { 9255 /* We already have a SHUTDOWN queued. Reuse it. */ 9256 if (chk->whoTo) { 9257 sctp_free_remote_addr(chk->whoTo); 9258 chk->whoTo = NULL; 9259 } 9260 break; 9261 } 9262 } 9263 if (chk == NULL) { 9264 m_shutdown = sctp_get_mbuf_for_msg(sizeof(struct sctp_shutdown_chunk), 0, M_NOWAIT, 1, MT_HEADER); 9265 if (m_shutdown == NULL) { 9266 /* no mbuf's */ 9267 return; 9268 } 9269 SCTP_BUF_RESV_UF(m_shutdown, SCTP_MIN_OVERHEAD); 9270 sctp_alloc_a_chunk(stcb, chk); 9271 if (chk == NULL) { 9272 /* no memory */ 9273 sctp_m_freem(m_shutdown); 9274 return; 9275 } 9276 chk->copy_by_ref = 0; 9277 chk->rec.chunk_id.id = SCTP_SHUTDOWN; 9278 chk->rec.chunk_id.can_take_data = 1; 9279 chk->flags = 0; 9280 chk->send_size = sizeof(struct sctp_shutdown_chunk); 9281 chk->sent = SCTP_DATAGRAM_UNSENT; 9282 chk->snd_count = 0; 9283 chk->asoc = &stcb->asoc; 9284 chk->data = m_shutdown; 9285 chk->whoTo = net; 9286 if (chk->whoTo) { 9287 atomic_add_int(&chk->whoTo->ref_count, 1); 9288 } 9289 shutdown_cp = mtod(m_shutdown, struct sctp_shutdown_chunk *); 9290 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN; 9291 shutdown_cp->ch.chunk_flags = 0; 9292 shutdown_cp->ch.chunk_length = htons(chk->send_size); 9293 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9294 SCTP_BUF_LEN(m_shutdown) = chk->send_size; 9295 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9296 chk->asoc->ctrl_queue_cnt++; 9297 } else { 9298 TAILQ_REMOVE(&stcb->asoc.control_send_queue, chk, sctp_next); 9299 chk->whoTo = net; 9300 if (chk->whoTo) { 9301 atomic_add_int(&chk->whoTo->ref_count, 1); 9302 } 9303 shutdown_cp = mtod(chk->data, struct sctp_shutdown_chunk *); 9304 shutdown_cp->cumulative_tsn_ack = htonl(stcb->asoc.cumulative_tsn); 9305 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 9306 } 9307 return; 9308 } 9309 9310 void 9311 sctp_send_asconf(struct sctp_tcb *stcb, struct sctp_nets *net, int addr_locked) 9312 { 9313 /* 9314 * formulate and queue an ASCONF to the peer. ASCONF parameters 9315 * should be queued on the assoc queue. 9316 */ 9317 struct sctp_tmit_chunk *chk; 9318 struct mbuf *m_asconf; 9319 int len; 9320 9321 SCTP_TCB_LOCK_ASSERT(stcb); 9322 9323 if ((!TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) && 9324 (!sctp_is_feature_on(stcb->sctp_ep, SCTP_PCB_FLAGS_MULTIPLE_ASCONFS))) { 9325 /* can't send a new one if there is one in flight already */ 9326 return; 9327 } 9328 9329 /* compose an ASCONF chunk, maximum length is PMTU */ 9330 m_asconf = sctp_compose_asconf(stcb, &len, addr_locked); 9331 if (m_asconf == NULL) { 9332 return; 9333 } 9334 9335 sctp_alloc_a_chunk(stcb, chk); 9336 if (chk == NULL) { 9337 /* no memory */ 9338 sctp_m_freem(m_asconf); 9339 return; 9340 } 9341 9342 chk->copy_by_ref = 0; 9343 chk->rec.chunk_id.id = SCTP_ASCONF; 9344 chk->rec.chunk_id.can_take_data = 0; 9345 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9346 chk->data = m_asconf; 9347 chk->send_size = len; 9348 chk->sent = SCTP_DATAGRAM_UNSENT; 9349 chk->snd_count = 0; 9350 chk->asoc = &stcb->asoc; 9351 chk->whoTo = net; 9352 if (chk->whoTo) { 9353 atomic_add_int(&chk->whoTo->ref_count, 1); 9354 } 9355 TAILQ_INSERT_TAIL(&chk->asoc->asconf_send_queue, chk, sctp_next); 9356 chk->asoc->ctrl_queue_cnt++; 9357 return; 9358 } 9359 9360 void 9361 sctp_send_asconf_ack(struct sctp_tcb *stcb) 9362 { 9363 /* 9364 * formulate and queue a asconf-ack back to sender. the asconf-ack 9365 * must be stored in the tcb. 9366 */ 9367 struct sctp_tmit_chunk *chk; 9368 struct sctp_asconf_ack *ack, *latest_ack; 9369 struct mbuf *m_ack; 9370 struct sctp_nets *net = NULL; 9371 9372 SCTP_TCB_LOCK_ASSERT(stcb); 9373 /* Get the latest ASCONF-ACK */ 9374 latest_ack = TAILQ_LAST(&stcb->asoc.asconf_ack_sent, sctp_asconf_ackhead); 9375 if (latest_ack == NULL) { 9376 return; 9377 } 9378 if (latest_ack->last_sent_to != NULL && 9379 latest_ack->last_sent_to == stcb->asoc.last_control_chunk_from) { 9380 /* we're doing a retransmission */ 9381 net = sctp_find_alternate_net(stcb, stcb->asoc.last_control_chunk_from, 0); 9382 if (net == NULL) { 9383 /* no alternate */ 9384 if (stcb->asoc.last_control_chunk_from == NULL) { 9385 if (stcb->asoc.alternate) { 9386 net = stcb->asoc.alternate; 9387 } else { 9388 net = stcb->asoc.primary_destination; 9389 } 9390 } else { 9391 net = stcb->asoc.last_control_chunk_from; 9392 } 9393 } 9394 } else { 9395 /* normal case */ 9396 if (stcb->asoc.last_control_chunk_from == NULL) { 9397 if (stcb->asoc.alternate) { 9398 net = stcb->asoc.alternate; 9399 } else { 9400 net = stcb->asoc.primary_destination; 9401 } 9402 } else { 9403 net = stcb->asoc.last_control_chunk_from; 9404 } 9405 } 9406 latest_ack->last_sent_to = net; 9407 9408 TAILQ_FOREACH(ack, &stcb->asoc.asconf_ack_sent, next) { 9409 if (ack->data == NULL) { 9410 continue; 9411 } 9412 9413 /* copy the asconf_ack */ 9414 m_ack = SCTP_M_COPYM(ack->data, 0, M_COPYALL, M_NOWAIT); 9415 if (m_ack == NULL) { 9416 /* couldn't copy it */ 9417 return; 9418 } 9419 #ifdef SCTP_MBUF_LOGGING 9420 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_MBUF_LOGGING_ENABLE) { 9421 sctp_log_mbc(m_ack, SCTP_MBUF_ICOPY); 9422 } 9423 #endif 9424 9425 sctp_alloc_a_chunk(stcb, chk); 9426 if (chk == NULL) { 9427 /* no memory */ 9428 if (m_ack) 9429 sctp_m_freem(m_ack); 9430 return; 9431 } 9432 chk->copy_by_ref = 0; 9433 chk->rec.chunk_id.id = SCTP_ASCONF_ACK; 9434 chk->rec.chunk_id.can_take_data = 1; 9435 chk->flags = CHUNK_FLAGS_FRAGMENT_OK; 9436 chk->whoTo = net; 9437 if (chk->whoTo) { 9438 atomic_add_int(&chk->whoTo->ref_count, 1); 9439 } 9440 chk->data = m_ack; 9441 chk->send_size = ack->len; 9442 chk->sent = SCTP_DATAGRAM_UNSENT; 9443 chk->snd_count = 0; 9444 chk->asoc = &stcb->asoc; 9445 9446 TAILQ_INSERT_TAIL(&chk->asoc->control_send_queue, chk, sctp_next); 9447 chk->asoc->ctrl_queue_cnt++; 9448 } 9449 return; 9450 } 9451 9452 9453 static int 9454 sctp_chunk_retransmission(struct sctp_inpcb *inp, 9455 struct sctp_tcb *stcb, 9456 struct sctp_association *asoc, 9457 int *cnt_out, struct timeval *now, int *now_filled, int *fr_done, int so_locked 9458 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 9459 SCTP_UNUSED 9460 #endif 9461 ) 9462 { 9463 /*- 9464 * send out one MTU of retransmission. If fast_retransmit is 9465 * happening we ignore the cwnd. Otherwise we obey the cwnd and 9466 * rwnd. For a Cookie or Asconf in the control chunk queue we 9467 * retransmit them by themselves. 9468 * 9469 * For data chunks we will pick out the lowest TSN's in the sent_queue 9470 * marked for resend and bundle them all together (up to a MTU of 9471 * destination). The address to send to should have been 9472 * selected/changed where the retransmission was marked (i.e. in FR 9473 * or t3-timeout routines). 9474 */ 9475 struct sctp_tmit_chunk *data_list[SCTP_MAX_DATA_BUNDLING]; 9476 struct sctp_tmit_chunk *chk, *fwd; 9477 struct mbuf *m, *endofchain; 9478 struct sctp_nets *net = NULL; 9479 uint32_t tsns_sent = 0; 9480 int no_fragmentflg, bundle_at, cnt_thru; 9481 unsigned int mtu; 9482 int error, i, one_chunk, fwd_tsn, ctl_cnt, tmr_started; 9483 struct sctp_auth_chunk *auth = NULL; 9484 uint32_t auth_offset = 0; 9485 uint16_t auth_keyid; 9486 int override_ok = 1; 9487 int data_auth_reqd = 0; 9488 uint32_t dmtu = 0; 9489 9490 SCTP_TCB_LOCK_ASSERT(stcb); 9491 tmr_started = ctl_cnt = bundle_at = error = 0; 9492 no_fragmentflg = 1; 9493 fwd_tsn = 0; 9494 *cnt_out = 0; 9495 fwd = NULL; 9496 endofchain = m = NULL; 9497 auth_keyid = stcb->asoc.authinfo.active_keyid; 9498 #ifdef SCTP_AUDITING_ENABLED 9499 sctp_audit_log(0xC3, 1); 9500 #endif 9501 if ((TAILQ_EMPTY(&asoc->sent_queue)) && 9502 (TAILQ_EMPTY(&asoc->control_send_queue))) { 9503 SCTPDBG(SCTP_DEBUG_OUTPUT1, "SCTP hits empty queue with cnt set to %d?\n", 9504 asoc->sent_queue_retran_cnt); 9505 asoc->sent_queue_cnt = 0; 9506 asoc->sent_queue_cnt_removeable = 0; 9507 /* send back 0/0 so we enter normal transmission */ 9508 *cnt_out = 0; 9509 return (0); 9510 } 9511 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 9512 if ((chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) || 9513 (chk->rec.chunk_id.id == SCTP_STREAM_RESET) || 9514 (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN)) { 9515 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9516 continue; 9517 } 9518 if (chk->rec.chunk_id.id == SCTP_STREAM_RESET) { 9519 if (chk != asoc->str_reset) { 9520 /* 9521 * not eligible for retran if its 9522 * not ours 9523 */ 9524 continue; 9525 } 9526 } 9527 ctl_cnt++; 9528 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 9529 fwd_tsn = 1; 9530 } 9531 /* 9532 * Add an AUTH chunk, if chunk requires it save the 9533 * offset into the chain for AUTH 9534 */ 9535 if ((auth == NULL) && 9536 (sctp_auth_is_required_chunk(chk->rec.chunk_id.id, 9537 stcb->asoc.peer_auth_chunks))) { 9538 m = sctp_add_auth_chunk(m, &endofchain, 9539 &auth, &auth_offset, 9540 stcb, 9541 chk->rec.chunk_id.id); 9542 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9543 } 9544 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9545 break; 9546 } 9547 } 9548 one_chunk = 0; 9549 cnt_thru = 0; 9550 /* do we have control chunks to retransmit? */ 9551 if (m != NULL) { 9552 /* Start a timer no matter if we succeed or fail */ 9553 if (chk->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 9554 sctp_timer_start(SCTP_TIMER_TYPE_COOKIE, inp, stcb, chk->whoTo); 9555 } else if (chk->rec.chunk_id.id == SCTP_ASCONF) 9556 sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, chk->whoTo); 9557 chk->snd_count++; /* update our count */ 9558 if ((error = sctp_lowlevel_chunk_output(inp, stcb, chk->whoTo, 9559 (struct sockaddr *)&chk->whoTo->ro._l_addr, m, 9560 auth_offset, auth, stcb->asoc.authinfo.active_keyid, 9561 no_fragmentflg, 0, 0, 9562 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9563 chk->whoTo->port, NULL, 9564 0, 0, 9565 so_locked))) { 9566 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 9567 if (error == ENOBUFS) { 9568 asoc->ifp_had_enobuf = 1; 9569 SCTP_STAT_INCR(sctps_lowlevelerr); 9570 } 9571 return (error); 9572 } else { 9573 asoc->ifp_had_enobuf = 0; 9574 } 9575 endofchain = NULL; 9576 auth = NULL; 9577 auth_offset = 0; 9578 /* 9579 * We don't want to mark the net->sent time here since this 9580 * we use this for HB and retrans cannot measure RTT 9581 */ 9582 /* (void)SCTP_GETTIME_TIMEVAL(&chk->whoTo->last_sent_time); */ 9583 *cnt_out += 1; 9584 chk->sent = SCTP_DATAGRAM_SENT; 9585 sctp_ucount_decr(stcb->asoc.sent_queue_retran_cnt); 9586 if (fwd_tsn == 0) { 9587 return (0); 9588 } else { 9589 /* Clean up the fwd-tsn list */ 9590 sctp_clean_up_ctl(stcb, asoc, so_locked); 9591 return (0); 9592 } 9593 } 9594 /* 9595 * Ok, it is just data retransmission we need to do or that and a 9596 * fwd-tsn with it all. 9597 */ 9598 if (TAILQ_EMPTY(&asoc->sent_queue)) { 9599 return (SCTP_RETRAN_DONE); 9600 } 9601 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED) || 9602 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT)) { 9603 /* not yet open, resend the cookie and that is it */ 9604 return (1); 9605 } 9606 #ifdef SCTP_AUDITING_ENABLED 9607 sctp_auditing(20, inp, stcb, NULL); 9608 #endif 9609 data_auth_reqd = sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks); 9610 TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 9611 if (chk->sent != SCTP_DATAGRAM_RESEND) { 9612 /* No, not sent to this net or not ready for rtx */ 9613 continue; 9614 } 9615 if (chk->data == NULL) { 9616 SCTP_PRINTF("TSN:%x chk->snd_count:%d chk->sent:%d can't retran - no data\n", 9617 chk->rec.data.tsn, chk->snd_count, chk->sent); 9618 continue; 9619 } 9620 if ((SCTP_BASE_SYSCTL(sctp_max_retran_chunk)) && 9621 (chk->snd_count >= SCTP_BASE_SYSCTL(sctp_max_retran_chunk))) { 9622 struct mbuf *op_err; 9623 char msg[SCTP_DIAG_INFO_LEN]; 9624 9625 snprintf(msg, sizeof(msg), "TSN %8.8x retransmitted %d times, giving up", 9626 chk->rec.data.tsn, chk->snd_count); 9627 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 9628 msg); 9629 atomic_add_int(&stcb->asoc.refcnt, 1); 9630 sctp_abort_an_association(stcb->sctp_ep, stcb, op_err, 9631 so_locked); 9632 SCTP_TCB_LOCK(stcb); 9633 atomic_subtract_int(&stcb->asoc.refcnt, 1); 9634 return (SCTP_RETRAN_EXIT); 9635 } 9636 /* pick up the net */ 9637 net = chk->whoTo; 9638 switch (net->ro._l_addr.sa.sa_family) { 9639 #ifdef INET 9640 case AF_INET: 9641 mtu = net->mtu - SCTP_MIN_V4_OVERHEAD; 9642 break; 9643 #endif 9644 #ifdef INET6 9645 case AF_INET6: 9646 mtu = net->mtu - SCTP_MIN_OVERHEAD; 9647 break; 9648 #endif 9649 default: 9650 /* TSNH */ 9651 mtu = net->mtu; 9652 break; 9653 } 9654 9655 if ((asoc->peers_rwnd < mtu) && (asoc->total_flight > 0)) { 9656 /* No room in peers rwnd */ 9657 uint32_t tsn; 9658 9659 tsn = asoc->last_acked_seq + 1; 9660 if (tsn == chk->rec.data.tsn) { 9661 /* 9662 * we make a special exception for this 9663 * case. The peer has no rwnd but is missing 9664 * the lowest chunk.. which is probably what 9665 * is holding up the rwnd. 9666 */ 9667 goto one_chunk_around; 9668 } 9669 return (1); 9670 } 9671 one_chunk_around: 9672 if (asoc->peers_rwnd < mtu) { 9673 one_chunk = 1; 9674 if ((asoc->peers_rwnd == 0) && 9675 (asoc->total_flight == 0)) { 9676 chk->window_probe = 1; 9677 chk->whoTo->window_probe = 1; 9678 } 9679 } 9680 #ifdef SCTP_AUDITING_ENABLED 9681 sctp_audit_log(0xC3, 2); 9682 #endif 9683 bundle_at = 0; 9684 m = NULL; 9685 net->fast_retran_ip = 0; 9686 if (chk->rec.data.doing_fast_retransmit == 0) { 9687 /* 9688 * if no FR in progress skip destination that have 9689 * flight_size > cwnd. 9690 */ 9691 if (net->flight_size >= net->cwnd) { 9692 continue; 9693 } 9694 } else { 9695 /* 9696 * Mark the destination net to have FR recovery 9697 * limits put on it. 9698 */ 9699 *fr_done = 1; 9700 net->fast_retran_ip = 1; 9701 } 9702 9703 /* 9704 * if no AUTH is yet included and this chunk requires it, 9705 * make sure to account for it. We don't apply the size 9706 * until the AUTH chunk is actually added below in case 9707 * there is no room for this chunk. 9708 */ 9709 if (data_auth_reqd && (auth == NULL)) { 9710 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9711 } else 9712 dmtu = 0; 9713 9714 if ((chk->send_size <= (mtu - dmtu)) || 9715 (chk->flags & CHUNK_FLAGS_FRAGMENT_OK)) { 9716 /* ok we will add this one */ 9717 if (data_auth_reqd) { 9718 if (auth == NULL) { 9719 m = sctp_add_auth_chunk(m, 9720 &endofchain, 9721 &auth, 9722 &auth_offset, 9723 stcb, 9724 SCTP_DATA); 9725 auth_keyid = chk->auth_keyid; 9726 override_ok = 0; 9727 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9728 } else if (override_ok) { 9729 auth_keyid = chk->auth_keyid; 9730 override_ok = 0; 9731 } else if (chk->auth_keyid != auth_keyid) { 9732 /* different keyid, so done bundling */ 9733 break; 9734 } 9735 } 9736 m = sctp_copy_mbufchain(chk->data, m, &endofchain, 0, chk->send_size, chk->copy_by_ref); 9737 if (m == NULL) { 9738 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9739 return (ENOMEM); 9740 } 9741 /* Do clear IP_DF ? */ 9742 if (chk->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9743 no_fragmentflg = 0; 9744 } 9745 /* upate our MTU size */ 9746 if (mtu > (chk->send_size + dmtu)) 9747 mtu -= (chk->send_size + dmtu); 9748 else 9749 mtu = 0; 9750 data_list[bundle_at++] = chk; 9751 if (one_chunk && (asoc->total_flight <= 0)) { 9752 SCTP_STAT_INCR(sctps_windowprobed); 9753 } 9754 } 9755 if (one_chunk == 0) { 9756 /* 9757 * now are there anymore forward from chk to pick 9758 * up? 9759 */ 9760 for (fwd = TAILQ_NEXT(chk, sctp_next); fwd != NULL; fwd = TAILQ_NEXT(fwd, sctp_next)) { 9761 if (fwd->sent != SCTP_DATAGRAM_RESEND) { 9762 /* Nope, not for retran */ 9763 continue; 9764 } 9765 if (fwd->whoTo != net) { 9766 /* Nope, not the net in question */ 9767 continue; 9768 } 9769 if (data_auth_reqd && (auth == NULL)) { 9770 dmtu = sctp_get_auth_chunk_len(stcb->asoc.peer_hmac_id); 9771 } else 9772 dmtu = 0; 9773 if (fwd->send_size <= (mtu - dmtu)) { 9774 if (data_auth_reqd) { 9775 if (auth == NULL) { 9776 m = sctp_add_auth_chunk(m, 9777 &endofchain, 9778 &auth, 9779 &auth_offset, 9780 stcb, 9781 SCTP_DATA); 9782 auth_keyid = fwd->auth_keyid; 9783 override_ok = 0; 9784 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 9785 } else if (override_ok) { 9786 auth_keyid = fwd->auth_keyid; 9787 override_ok = 0; 9788 } else if (fwd->auth_keyid != auth_keyid) { 9789 /* 9790 * different keyid, 9791 * so done bundling 9792 */ 9793 break; 9794 } 9795 } 9796 m = sctp_copy_mbufchain(fwd->data, m, &endofchain, 0, fwd->send_size, fwd->copy_by_ref); 9797 if (m == NULL) { 9798 SCTP_LTRACE_ERR_RET(inp, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 9799 return (ENOMEM); 9800 } 9801 /* Do clear IP_DF ? */ 9802 if (fwd->flags & CHUNK_FLAGS_FRAGMENT_OK) { 9803 no_fragmentflg = 0; 9804 } 9805 /* upate our MTU size */ 9806 if (mtu > (fwd->send_size + dmtu)) 9807 mtu -= (fwd->send_size + dmtu); 9808 else 9809 mtu = 0; 9810 data_list[bundle_at++] = fwd; 9811 if (bundle_at >= SCTP_MAX_DATA_BUNDLING) { 9812 break; 9813 } 9814 } else { 9815 /* can't fit so we are done */ 9816 break; 9817 } 9818 } 9819 } 9820 /* Is there something to send for this destination? */ 9821 if (m) { 9822 /* 9823 * No matter if we fail/or succeed we should start a 9824 * timer. A failure is like a lost IP packet :-) 9825 */ 9826 if (!SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9827 /* 9828 * no timer running on this destination 9829 * restart it. 9830 */ 9831 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9832 tmr_started = 1; 9833 } 9834 /* Now lets send it, if there is anything to send :> */ 9835 if ((error = sctp_lowlevel_chunk_output(inp, stcb, net, 9836 (struct sockaddr *)&net->ro._l_addr, m, 9837 auth_offset, auth, auth_keyid, 9838 no_fragmentflg, 0, 0, 9839 inp->sctp_lport, stcb->rport, htonl(stcb->asoc.peer_vtag), 9840 net->port, NULL, 9841 0, 0, 9842 so_locked))) { 9843 /* error, we could not output */ 9844 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 9845 if (error == ENOBUFS) { 9846 asoc->ifp_had_enobuf = 1; 9847 SCTP_STAT_INCR(sctps_lowlevelerr); 9848 } 9849 return (error); 9850 } else { 9851 asoc->ifp_had_enobuf = 0; 9852 } 9853 endofchain = NULL; 9854 auth = NULL; 9855 auth_offset = 0; 9856 /* For HB's */ 9857 /* 9858 * We don't want to mark the net->sent time here 9859 * since this we use this for HB and retrans cannot 9860 * measure RTT 9861 */ 9862 /* (void)SCTP_GETTIME_TIMEVAL(&net->last_sent_time); */ 9863 9864 /* For auto-close */ 9865 cnt_thru++; 9866 if (*now_filled == 0) { 9867 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_last_sent); 9868 *now = asoc->time_last_sent; 9869 *now_filled = 1; 9870 } else { 9871 asoc->time_last_sent = *now; 9872 } 9873 *cnt_out += bundle_at; 9874 #ifdef SCTP_AUDITING_ENABLED 9875 sctp_audit_log(0xC4, bundle_at); 9876 #endif 9877 if (bundle_at) { 9878 tsns_sent = data_list[0]->rec.data.tsn; 9879 } 9880 for (i = 0; i < bundle_at; i++) { 9881 SCTP_STAT_INCR(sctps_sendretransdata); 9882 data_list[i]->sent = SCTP_DATAGRAM_SENT; 9883 /* 9884 * When we have a revoked data, and we 9885 * retransmit it, then we clear the revoked 9886 * flag since this flag dictates if we 9887 * subtracted from the fs 9888 */ 9889 if (data_list[i]->rec.data.chunk_was_revoked) { 9890 /* Deflate the cwnd */ 9891 data_list[i]->whoTo->cwnd -= data_list[i]->book_size; 9892 data_list[i]->rec.data.chunk_was_revoked = 0; 9893 } 9894 data_list[i]->snd_count++; 9895 sctp_ucount_decr(asoc->sent_queue_retran_cnt); 9896 /* record the time */ 9897 data_list[i]->sent_rcv_time = asoc->time_last_sent; 9898 if (data_list[i]->book_size_scale) { 9899 /* 9900 * need to double the book size on 9901 * this one 9902 */ 9903 data_list[i]->book_size_scale = 0; 9904 /* 9905 * Since we double the booksize, we 9906 * must also double the output queue 9907 * size, since this get shrunk when 9908 * we free by this amount. 9909 */ 9910 atomic_add_int(&((asoc)->total_output_queue_size), data_list[i]->book_size); 9911 data_list[i]->book_size *= 2; 9912 9913 9914 } else { 9915 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_RWND_ENABLE) { 9916 sctp_log_rwnd(SCTP_DECREASE_PEER_RWND, 9917 asoc->peers_rwnd, data_list[i]->send_size, SCTP_BASE_SYSCTL(sctp_peer_chunk_oh)); 9918 } 9919 asoc->peers_rwnd = sctp_sbspace_sub(asoc->peers_rwnd, 9920 (uint32_t)(data_list[i]->send_size + 9921 SCTP_BASE_SYSCTL(sctp_peer_chunk_oh))); 9922 } 9923 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 9924 sctp_misc_ints(SCTP_FLIGHT_LOG_UP_RSND, 9925 data_list[i]->whoTo->flight_size, 9926 data_list[i]->book_size, 9927 (uint32_t)(uintptr_t)data_list[i]->whoTo, 9928 data_list[i]->rec.data.tsn); 9929 } 9930 sctp_flight_size_increase(data_list[i]); 9931 sctp_total_flight_increase(stcb, data_list[i]); 9932 if (asoc->peers_rwnd < stcb->sctp_ep->sctp_ep.sctp_sws_sender) { 9933 /* SWS sender side engages */ 9934 asoc->peers_rwnd = 0; 9935 } 9936 if ((i == 0) && 9937 (data_list[i]->rec.data.doing_fast_retransmit)) { 9938 SCTP_STAT_INCR(sctps_sendfastretrans); 9939 if ((data_list[i] == TAILQ_FIRST(&asoc->sent_queue)) && 9940 (tmr_started == 0)) { 9941 /*- 9942 * ok we just fast-retrans'd 9943 * the lowest TSN, i.e the 9944 * first on the list. In 9945 * this case we want to give 9946 * some more time to get a 9947 * SACK back without a 9948 * t3-expiring. 9949 */ 9950 sctp_timer_stop(SCTP_TIMER_TYPE_SEND, inp, stcb, net, 9951 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_2); 9952 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 9953 } 9954 } 9955 } 9956 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 9957 sctp_log_cwnd(stcb, net, tsns_sent, SCTP_CWND_LOG_FROM_RESEND); 9958 } 9959 #ifdef SCTP_AUDITING_ENABLED 9960 sctp_auditing(21, inp, stcb, NULL); 9961 #endif 9962 } else { 9963 /* None will fit */ 9964 return (1); 9965 } 9966 if (asoc->sent_queue_retran_cnt <= 0) { 9967 /* all done we have no more to retran */ 9968 asoc->sent_queue_retran_cnt = 0; 9969 break; 9970 } 9971 if (one_chunk) { 9972 /* No more room in rwnd */ 9973 return (1); 9974 } 9975 /* stop the for loop here. we sent out a packet */ 9976 break; 9977 } 9978 return (0); 9979 } 9980 9981 static void 9982 sctp_timer_validation(struct sctp_inpcb *inp, 9983 struct sctp_tcb *stcb, 9984 struct sctp_association *asoc) 9985 { 9986 struct sctp_nets *net; 9987 9988 /* Validate that a timer is running somewhere */ 9989 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 9990 if (SCTP_OS_TIMER_PENDING(&net->rxt_timer.timer)) { 9991 /* Here is a timer */ 9992 return; 9993 } 9994 } 9995 SCTP_TCB_LOCK_ASSERT(stcb); 9996 /* Gak, we did not have a timer somewhere */ 9997 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Deadlock avoided starting timer on a dest at retran\n"); 9998 if (asoc->alternate) { 9999 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->alternate); 10000 } else { 10001 sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, asoc->primary_destination); 10002 } 10003 return; 10004 } 10005 10006 void 10007 sctp_chunk_output(struct sctp_inpcb *inp, 10008 struct sctp_tcb *stcb, 10009 int from_where, 10010 int so_locked 10011 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10012 SCTP_UNUSED 10013 #endif 10014 ) 10015 { 10016 /*- 10017 * Ok this is the generic chunk service queue. we must do the 10018 * following: 10019 * - See if there are retransmits pending, if so we must 10020 * do these first. 10021 * - Service the stream queue that is next, moving any 10022 * message (note I must get a complete message i.e. 10023 * FIRST/MIDDLE and LAST to the out queue in one pass) and assigning 10024 * TSN's 10025 * - Check to see if the cwnd/rwnd allows any output, if so we 10026 * go ahead and fomulate and send the low level chunks. Making sure 10027 * to combine any control in the control chunk queue also. 10028 */ 10029 struct sctp_association *asoc; 10030 struct sctp_nets *net; 10031 int error = 0, num_out, tot_out = 0, ret = 0, reason_code; 10032 unsigned int burst_cnt = 0; 10033 struct timeval now; 10034 int now_filled = 0; 10035 int nagle_on; 10036 int frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 10037 int un_sent = 0; 10038 int fr_done; 10039 unsigned int tot_frs = 0; 10040 10041 asoc = &stcb->asoc; 10042 do_it_again: 10043 /* The Nagle algorithm is only applied when handling a send call. */ 10044 if (from_where == SCTP_OUTPUT_FROM_USR_SEND) { 10045 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NODELAY)) { 10046 nagle_on = 0; 10047 } else { 10048 nagle_on = 1; 10049 } 10050 } else { 10051 nagle_on = 0; 10052 } 10053 SCTP_TCB_LOCK_ASSERT(stcb); 10054 10055 un_sent = (stcb->asoc.total_output_queue_size - stcb->asoc.total_flight); 10056 10057 if ((un_sent <= 0) && 10058 (TAILQ_EMPTY(&asoc->control_send_queue)) && 10059 (TAILQ_EMPTY(&asoc->asconf_send_queue)) && 10060 (asoc->sent_queue_retran_cnt == 0) && 10061 (asoc->trigger_reset == 0)) { 10062 /* Nothing to do unless there is something to be sent left */ 10063 return; 10064 } 10065 /* 10066 * Do we have something to send, data or control AND a sack timer 10067 * running, if so piggy-back the sack. 10068 */ 10069 if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) { 10070 sctp_send_sack(stcb, so_locked); 10071 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, stcb->sctp_ep, stcb, NULL, 10072 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_3); 10073 } 10074 while (asoc->sent_queue_retran_cnt) { 10075 /*- 10076 * Ok, it is retransmission time only, we send out only ONE 10077 * packet with a single call off to the retran code. 10078 */ 10079 if (from_where == SCTP_OUTPUT_FROM_COOKIE_ACK) { 10080 /*- 10081 * Special hook for handling cookiess discarded 10082 * by peer that carried data. Send cookie-ack only 10083 * and then the next call with get the retran's. 10084 */ 10085 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 10086 from_where, 10087 &now, &now_filled, frag_point, so_locked); 10088 return; 10089 } else if (from_where != SCTP_OUTPUT_FROM_HB_TMR) { 10090 /* if its not from a HB then do it */ 10091 fr_done = 0; 10092 ret = sctp_chunk_retransmission(inp, stcb, asoc, &num_out, &now, &now_filled, &fr_done, so_locked); 10093 if (fr_done) { 10094 tot_frs++; 10095 } 10096 } else { 10097 /* 10098 * its from any other place, we don't allow retran 10099 * output (only control) 10100 */ 10101 ret = 1; 10102 } 10103 if (ret > 0) { 10104 /* Can't send anymore */ 10105 /*- 10106 * now lets push out control by calling med-level 10107 * output once. this assures that we WILL send HB's 10108 * if queued too. 10109 */ 10110 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, 10111 from_where, 10112 &now, &now_filled, frag_point, so_locked); 10113 #ifdef SCTP_AUDITING_ENABLED 10114 sctp_auditing(8, inp, stcb, NULL); 10115 #endif 10116 sctp_timer_validation(inp, stcb, asoc); 10117 return; 10118 } 10119 if (ret < 0) { 10120 /*- 10121 * The count was off.. retran is not happening so do 10122 * the normal retransmission. 10123 */ 10124 #ifdef SCTP_AUDITING_ENABLED 10125 sctp_auditing(9, inp, stcb, NULL); 10126 #endif 10127 if (ret == SCTP_RETRAN_EXIT) { 10128 return; 10129 } 10130 break; 10131 } 10132 if (from_where == SCTP_OUTPUT_FROM_T3) { 10133 /* Only one transmission allowed out of a timeout */ 10134 #ifdef SCTP_AUDITING_ENABLED 10135 sctp_auditing(10, inp, stcb, NULL); 10136 #endif 10137 /* Push out any control */ 10138 (void)sctp_med_chunk_output(inp, stcb, asoc, &num_out, &reason_code, 1, from_where, 10139 &now, &now_filled, frag_point, so_locked); 10140 return; 10141 } 10142 if ((asoc->fr_max_burst > 0) && (tot_frs >= asoc->fr_max_burst)) { 10143 /* Hit FR burst limit */ 10144 return; 10145 } 10146 if ((num_out == 0) && (ret == 0)) { 10147 /* No more retrans to send */ 10148 break; 10149 } 10150 } 10151 #ifdef SCTP_AUDITING_ENABLED 10152 sctp_auditing(12, inp, stcb, NULL); 10153 #endif 10154 /* Check for bad destinations, if they exist move chunks around. */ 10155 TAILQ_FOREACH(net, &asoc->nets, sctp_next) { 10156 if (!(net->dest_state & SCTP_ADDR_REACHABLE)) { 10157 /*- 10158 * if possible move things off of this address we 10159 * still may send below due to the dormant state but 10160 * we try to find an alternate address to send to 10161 * and if we have one we move all queued data on the 10162 * out wheel to this alternate address. 10163 */ 10164 if (net->ref_count > 1) 10165 sctp_move_chunks_from_net(stcb, net); 10166 } else { 10167 /*- 10168 * if ((asoc->sat_network) || (net->addr_is_local)) 10169 * { burst_limit = asoc->max_burst * 10170 * SCTP_SAT_NETWORK_BURST_INCR; } 10171 */ 10172 if (asoc->max_burst > 0) { 10173 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst)) { 10174 if ((net->flight_size + (asoc->max_burst * net->mtu)) < net->cwnd) { 10175 /* 10176 * JRS - Use the congestion 10177 * control given in the 10178 * congestion control module 10179 */ 10180 asoc->cc_functions.sctp_cwnd_update_after_output(stcb, net, asoc->max_burst); 10181 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10182 sctp_log_maxburst(stcb, net, 0, asoc->max_burst, SCTP_MAX_BURST_APPLIED); 10183 } 10184 SCTP_STAT_INCR(sctps_maxburstqueued); 10185 } 10186 net->fast_retran_ip = 0; 10187 } else { 10188 if (net->flight_size == 0) { 10189 /* 10190 * Should be decaying the 10191 * cwnd here 10192 */ 10193 ; 10194 } 10195 } 10196 } 10197 } 10198 10199 } 10200 burst_cnt = 0; 10201 do { 10202 error = sctp_med_chunk_output(inp, stcb, asoc, &num_out, 10203 &reason_code, 0, from_where, 10204 &now, &now_filled, frag_point, so_locked); 10205 if (error) { 10206 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Error %d was returned from med-c-op\n", error); 10207 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10208 sctp_log_maxburst(stcb, asoc->primary_destination, error, burst_cnt, SCTP_MAX_BURST_ERROR_STOP); 10209 } 10210 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10211 sctp_log_cwnd(stcb, NULL, error, SCTP_SEND_NOW_COMPLETES); 10212 sctp_log_cwnd(stcb, NULL, 0xdeadbeef, SCTP_SEND_NOW_COMPLETES); 10213 } 10214 break; 10215 } 10216 SCTPDBG(SCTP_DEBUG_OUTPUT3, "m-c-o put out %d\n", num_out); 10217 10218 tot_out += num_out; 10219 burst_cnt++; 10220 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10221 sctp_log_cwnd(stcb, NULL, num_out, SCTP_SEND_NOW_COMPLETES); 10222 if (num_out == 0) { 10223 sctp_log_cwnd(stcb, NULL, reason_code, SCTP_SEND_NOW_COMPLETES); 10224 } 10225 } 10226 if (nagle_on) { 10227 /* 10228 * When the Nagle algorithm is used, look at how 10229 * much is unsent, then if its smaller than an MTU 10230 * and we have data in flight we stop, except if we 10231 * are handling a fragmented user message. 10232 */ 10233 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 10234 if ((un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD)) && 10235 (stcb->asoc.total_flight > 0)) { 10236 /* && sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR))) {*/ 10237 break; 10238 } 10239 } 10240 if (TAILQ_EMPTY(&asoc->control_send_queue) && 10241 TAILQ_EMPTY(&asoc->send_queue) && 10242 sctp_is_there_unsent_data(stcb, so_locked) == 0) { 10243 /* Nothing left to send */ 10244 break; 10245 } 10246 if ((stcb->asoc.total_output_queue_size - stcb->asoc.total_flight) <= 0) { 10247 /* Nothing left to send */ 10248 break; 10249 } 10250 } while (num_out && 10251 ((asoc->max_burst == 0) || 10252 SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) || 10253 (burst_cnt < asoc->max_burst))); 10254 10255 if (SCTP_BASE_SYSCTL(sctp_use_cwnd_based_maxburst) == 0) { 10256 if ((asoc->max_burst > 0) && (burst_cnt >= asoc->max_burst)) { 10257 SCTP_STAT_INCR(sctps_maxburstqueued); 10258 asoc->burst_limit_applied = 1; 10259 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_MAXBURST_ENABLE) { 10260 sctp_log_maxburst(stcb, asoc->primary_destination, 0, burst_cnt, SCTP_MAX_BURST_APPLIED); 10261 } 10262 } else { 10263 asoc->burst_limit_applied = 0; 10264 } 10265 } 10266 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 10267 sctp_log_cwnd(stcb, NULL, tot_out, SCTP_SEND_NOW_COMPLETES); 10268 } 10269 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Ok, we have put out %d chunks\n", 10270 tot_out); 10271 10272 /*- 10273 * Now we need to clean up the control chunk chain if a ECNE is on 10274 * it. It must be marked as UNSENT again so next call will continue 10275 * to send it until such time that we get a CWR, to remove it. 10276 */ 10277 if (stcb->asoc.ecn_echo_cnt_onq) 10278 sctp_fix_ecn_echo(asoc); 10279 10280 if (stcb->asoc.trigger_reset) { 10281 if (sctp_send_stream_reset_out_if_possible(stcb, so_locked) == 0) { 10282 goto do_it_again; 10283 } 10284 } 10285 return; 10286 } 10287 10288 10289 int 10290 sctp_output( 10291 struct sctp_inpcb *inp, 10292 struct mbuf *m, 10293 struct sockaddr *addr, 10294 struct mbuf *control, 10295 struct thread *p, 10296 int flags) 10297 { 10298 if (inp == NULL) { 10299 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10300 return (EINVAL); 10301 } 10302 10303 if (inp->sctp_socket == NULL) { 10304 SCTP_LTRACE_ERR_RET_PKT(m, inp, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 10305 return (EINVAL); 10306 } 10307 return (sctp_sosend(inp->sctp_socket, 10308 addr, 10309 (struct uio *)NULL, 10310 m, 10311 control, 10312 flags, p 10313 )); 10314 } 10315 10316 void 10317 send_forward_tsn(struct sctp_tcb *stcb, 10318 struct sctp_association *asoc) 10319 { 10320 struct sctp_tmit_chunk *chk, *at, *tp1, *last; 10321 struct sctp_forward_tsn_chunk *fwdtsn; 10322 struct sctp_strseq *strseq; 10323 struct sctp_strseq_mid *strseq_m; 10324 uint32_t advance_peer_ack_point; 10325 unsigned int cnt_of_space, i, ovh; 10326 unsigned int space_needed; 10327 unsigned int cnt_of_skipped = 0; 10328 10329 SCTP_TCB_LOCK_ASSERT(stcb); 10330 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10331 if (chk->rec.chunk_id.id == SCTP_FORWARD_CUM_TSN) { 10332 /* mark it to unsent */ 10333 chk->sent = SCTP_DATAGRAM_UNSENT; 10334 chk->snd_count = 0; 10335 /* Do we correct its output location? */ 10336 if (chk->whoTo) { 10337 sctp_free_remote_addr(chk->whoTo); 10338 chk->whoTo = NULL; 10339 } 10340 goto sctp_fill_in_rest; 10341 } 10342 } 10343 /* Ok if we reach here we must build one */ 10344 sctp_alloc_a_chunk(stcb, chk); 10345 if (chk == NULL) { 10346 return; 10347 } 10348 asoc->fwd_tsn_cnt++; 10349 chk->copy_by_ref = 0; 10350 /* 10351 * We don't do the old thing here since this is used not for on-wire 10352 * but to tell if we are sending a fwd-tsn by the stack during 10353 * output. And if its a IFORWARD or a FORWARD it is a fwd-tsn. 10354 */ 10355 chk->rec.chunk_id.id = SCTP_FORWARD_CUM_TSN; 10356 chk->rec.chunk_id.can_take_data = 0; 10357 chk->flags = 0; 10358 chk->asoc = asoc; 10359 chk->whoTo = NULL; 10360 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 10361 if (chk->data == NULL) { 10362 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 10363 return; 10364 } 10365 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 10366 chk->sent = SCTP_DATAGRAM_UNSENT; 10367 chk->snd_count = 0; 10368 TAILQ_INSERT_TAIL(&asoc->control_send_queue, chk, sctp_next); 10369 asoc->ctrl_queue_cnt++; 10370 sctp_fill_in_rest: 10371 /*- 10372 * Here we go through and fill out the part that deals with 10373 * stream/seq of the ones we skip. 10374 */ 10375 SCTP_BUF_LEN(chk->data) = 0; 10376 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10377 if ((at->sent != SCTP_FORWARD_TSN_SKIP) && 10378 (at->sent != SCTP_DATAGRAM_NR_ACKED)) { 10379 /* no more to look at */ 10380 break; 10381 } 10382 if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) { 10383 /* We don't report these */ 10384 continue; 10385 } 10386 cnt_of_skipped++; 10387 } 10388 if (asoc->idata_supported) { 10389 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10390 (cnt_of_skipped * sizeof(struct sctp_strseq_mid))); 10391 } else { 10392 space_needed = (sizeof(struct sctp_forward_tsn_chunk) + 10393 (cnt_of_skipped * sizeof(struct sctp_strseq))); 10394 } 10395 cnt_of_space = (unsigned int)M_TRAILINGSPACE(chk->data); 10396 10397 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) { 10398 ovh = SCTP_MIN_OVERHEAD; 10399 } else { 10400 ovh = SCTP_MIN_V4_OVERHEAD; 10401 } 10402 if (cnt_of_space > (asoc->smallest_mtu - ovh)) { 10403 /* trim to a mtu size */ 10404 cnt_of_space = asoc->smallest_mtu - ovh; 10405 } 10406 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10407 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10408 0xff, 0, cnt_of_skipped, 10409 asoc->advanced_peer_ack_point); 10410 } 10411 advance_peer_ack_point = asoc->advanced_peer_ack_point; 10412 if (cnt_of_space < space_needed) { 10413 /*- 10414 * ok we must trim down the chunk by lowering the 10415 * advance peer ack point. 10416 */ 10417 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10418 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10419 0xff, 0xff, cnt_of_space, 10420 space_needed); 10421 } 10422 cnt_of_skipped = cnt_of_space - sizeof(struct sctp_forward_tsn_chunk); 10423 if (asoc->idata_supported) { 10424 cnt_of_skipped /= sizeof(struct sctp_strseq_mid); 10425 } else { 10426 cnt_of_skipped /= sizeof(struct sctp_strseq); 10427 } 10428 /*- 10429 * Go through and find the TSN that will be the one 10430 * we report. 10431 */ 10432 at = TAILQ_FIRST(&asoc->sent_queue); 10433 if (at != NULL) { 10434 for (i = 0; i < cnt_of_skipped; i++) { 10435 tp1 = TAILQ_NEXT(at, sctp_next); 10436 if (tp1 == NULL) { 10437 break; 10438 } 10439 at = tp1; 10440 } 10441 } 10442 if (at && SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LOG_TRY_ADVANCE) { 10443 sctp_misc_ints(SCTP_FWD_TSN_CHECK, 10444 0xff, cnt_of_skipped, at->rec.data.tsn, 10445 asoc->advanced_peer_ack_point); 10446 } 10447 last = at; 10448 /*- 10449 * last now points to last one I can report, update 10450 * peer ack point 10451 */ 10452 if (last) { 10453 advance_peer_ack_point = last->rec.data.tsn; 10454 } 10455 if (asoc->idata_supported) { 10456 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10457 cnt_of_skipped * sizeof(struct sctp_strseq_mid); 10458 } else { 10459 space_needed = sizeof(struct sctp_forward_tsn_chunk) + 10460 cnt_of_skipped * sizeof(struct sctp_strseq); 10461 } 10462 } 10463 chk->send_size = space_needed; 10464 /* Setup the chunk */ 10465 fwdtsn = mtod(chk->data, struct sctp_forward_tsn_chunk *); 10466 fwdtsn->ch.chunk_length = htons(chk->send_size); 10467 fwdtsn->ch.chunk_flags = 0; 10468 if (asoc->idata_supported) { 10469 fwdtsn->ch.chunk_type = SCTP_IFORWARD_CUM_TSN; 10470 } else { 10471 fwdtsn->ch.chunk_type = SCTP_FORWARD_CUM_TSN; 10472 } 10473 fwdtsn->new_cumulative_tsn = htonl(advance_peer_ack_point); 10474 SCTP_BUF_LEN(chk->data) = chk->send_size; 10475 fwdtsn++; 10476 /*- 10477 * Move pointer to after the fwdtsn and transfer to the 10478 * strseq pointer. 10479 */ 10480 if (asoc->idata_supported) { 10481 strseq_m = (struct sctp_strseq_mid *)fwdtsn; 10482 strseq = NULL; 10483 } else { 10484 strseq = (struct sctp_strseq *)fwdtsn; 10485 strseq_m = NULL; 10486 } 10487 /*- 10488 * Now populate the strseq list. This is done blindly 10489 * without pulling out duplicate stream info. This is 10490 * inefficent but won't harm the process since the peer will 10491 * look at these in sequence and will thus release anything. 10492 * It could mean we exceed the PMTU and chop off some that 10493 * we could have included.. but this is unlikely (aka 1432/4 10494 * would mean 300+ stream seq's would have to be reported in 10495 * one FWD-TSN. With a bit of work we can later FIX this to 10496 * optimize and pull out duplicates.. but it does add more 10497 * overhead. So for now... not! 10498 */ 10499 i = 0; 10500 TAILQ_FOREACH(at, &asoc->sent_queue, sctp_next) { 10501 if (i >= cnt_of_skipped) { 10502 break; 10503 } 10504 if (!asoc->idata_supported && (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED)) { 10505 /* We don't report these */ 10506 continue; 10507 } 10508 if (at->rec.data.tsn == advance_peer_ack_point) { 10509 at->rec.data.fwd_tsn_cnt = 0; 10510 } 10511 if (asoc->idata_supported) { 10512 strseq_m->sid = htons(at->rec.data.sid); 10513 if (at->rec.data.rcv_flags & SCTP_DATA_UNORDERED) { 10514 strseq_m->flags = htons(PR_SCTP_UNORDERED_FLAG); 10515 } else { 10516 strseq_m->flags = 0; 10517 } 10518 strseq_m->mid = htonl(at->rec.data.mid); 10519 strseq_m++; 10520 } else { 10521 strseq->sid = htons(at->rec.data.sid); 10522 strseq->ssn = htons((uint16_t)at->rec.data.mid); 10523 strseq++; 10524 } 10525 i++; 10526 } 10527 return; 10528 } 10529 10530 void 10531 sctp_send_sack(struct sctp_tcb *stcb, int so_locked 10532 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10533 SCTP_UNUSED 10534 #endif 10535 ) 10536 { 10537 /*- 10538 * Queue up a SACK or NR-SACK in the control queue. 10539 * We must first check to see if a SACK or NR-SACK is 10540 * somehow on the control queue. 10541 * If so, we will take and and remove the old one. 10542 */ 10543 struct sctp_association *asoc; 10544 struct sctp_tmit_chunk *chk, *a_chk; 10545 struct sctp_sack_chunk *sack; 10546 struct sctp_nr_sack_chunk *nr_sack; 10547 struct sctp_gap_ack_block *gap_descriptor; 10548 const struct sack_track *selector; 10549 int mergeable = 0; 10550 int offset; 10551 caddr_t limit; 10552 uint32_t *dup; 10553 int limit_reached = 0; 10554 unsigned int i, siz, j; 10555 unsigned int num_gap_blocks = 0, num_nr_gap_blocks = 0, space; 10556 int num_dups = 0; 10557 int space_req; 10558 uint32_t highest_tsn; 10559 uint8_t flags; 10560 uint8_t type; 10561 uint8_t tsn_map; 10562 10563 if (stcb->asoc.nrsack_supported == 1) { 10564 type = SCTP_NR_SELECTIVE_ACK; 10565 } else { 10566 type = SCTP_SELECTIVE_ACK; 10567 } 10568 a_chk = NULL; 10569 asoc = &stcb->asoc; 10570 SCTP_TCB_LOCK_ASSERT(stcb); 10571 if (asoc->last_data_chunk_from == NULL) { 10572 /* Hmm we never received anything */ 10573 return; 10574 } 10575 sctp_slide_mapping_arrays(stcb); 10576 sctp_set_rwnd(stcb, asoc); 10577 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 10578 if (chk->rec.chunk_id.id == type) { 10579 /* Hmm, found a sack already on queue, remove it */ 10580 TAILQ_REMOVE(&asoc->control_send_queue, chk, sctp_next); 10581 asoc->ctrl_queue_cnt--; 10582 a_chk = chk; 10583 if (a_chk->data) { 10584 sctp_m_freem(a_chk->data); 10585 a_chk->data = NULL; 10586 } 10587 if (a_chk->whoTo) { 10588 sctp_free_remote_addr(a_chk->whoTo); 10589 a_chk->whoTo = NULL; 10590 } 10591 break; 10592 } 10593 } 10594 if (a_chk == NULL) { 10595 sctp_alloc_a_chunk(stcb, a_chk); 10596 if (a_chk == NULL) { 10597 /* No memory so we drop the idea, and set a timer */ 10598 if (stcb->asoc.delayed_ack) { 10599 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10600 stcb->sctp_ep, stcb, NULL, 10601 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_4); 10602 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10603 stcb->sctp_ep, stcb, NULL); 10604 } else { 10605 stcb->asoc.send_sack = 1; 10606 } 10607 return; 10608 } 10609 a_chk->copy_by_ref = 0; 10610 a_chk->rec.chunk_id.id = type; 10611 a_chk->rec.chunk_id.can_take_data = 1; 10612 } 10613 /* Clear our pkt counts */ 10614 asoc->data_pkts_seen = 0; 10615 10616 a_chk->flags = 0; 10617 a_chk->asoc = asoc; 10618 a_chk->snd_count = 0; 10619 a_chk->send_size = 0; /* fill in later */ 10620 a_chk->sent = SCTP_DATAGRAM_UNSENT; 10621 a_chk->whoTo = NULL; 10622 10623 if (!(asoc->last_data_chunk_from->dest_state & SCTP_ADDR_REACHABLE)) { 10624 /*- 10625 * Ok, the destination for the SACK is unreachable, lets see if 10626 * we can select an alternate to asoc->last_data_chunk_from 10627 */ 10628 a_chk->whoTo = sctp_find_alternate_net(stcb, asoc->last_data_chunk_from, 0); 10629 if (a_chk->whoTo == NULL) { 10630 /* Nope, no alternate */ 10631 a_chk->whoTo = asoc->last_data_chunk_from; 10632 } 10633 } else { 10634 a_chk->whoTo = asoc->last_data_chunk_from; 10635 } 10636 if (a_chk->whoTo) { 10637 atomic_add_int(&a_chk->whoTo->ref_count, 1); 10638 } 10639 if (SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->highest_tsn_inside_nr_map)) { 10640 highest_tsn = asoc->highest_tsn_inside_map; 10641 } else { 10642 highest_tsn = asoc->highest_tsn_inside_nr_map; 10643 } 10644 if (highest_tsn == asoc->cumulative_tsn) { 10645 /* no gaps */ 10646 if (type == SCTP_SELECTIVE_ACK) { 10647 space_req = sizeof(struct sctp_sack_chunk); 10648 } else { 10649 space_req = sizeof(struct sctp_nr_sack_chunk); 10650 } 10651 } else { 10652 /* gaps get a cluster */ 10653 space_req = MCLBYTES; 10654 } 10655 /* Ok now lets formulate a MBUF with our sack */ 10656 a_chk->data = sctp_get_mbuf_for_msg(space_req, 0, M_NOWAIT, 1, MT_DATA); 10657 if ((a_chk->data == NULL) || 10658 (a_chk->whoTo == NULL)) { 10659 /* rats, no mbuf memory */ 10660 if (a_chk->data) { 10661 /* was a problem with the destination */ 10662 sctp_m_freem(a_chk->data); 10663 a_chk->data = NULL; 10664 } 10665 sctp_free_a_chunk(stcb, a_chk, so_locked); 10666 /* sa_ignore NO_NULL_CHK */ 10667 if (stcb->asoc.delayed_ack) { 10668 sctp_timer_stop(SCTP_TIMER_TYPE_RECV, 10669 stcb->sctp_ep, stcb, NULL, 10670 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_5); 10671 sctp_timer_start(SCTP_TIMER_TYPE_RECV, 10672 stcb->sctp_ep, stcb, NULL); 10673 } else { 10674 stcb->asoc.send_sack = 1; 10675 } 10676 return; 10677 } 10678 /* ok, lets go through and fill it in */ 10679 SCTP_BUF_RESV_UF(a_chk->data, SCTP_MIN_OVERHEAD); 10680 space = (unsigned int)M_TRAILINGSPACE(a_chk->data); 10681 if (space > (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD)) { 10682 space = (a_chk->whoTo->mtu - SCTP_MIN_OVERHEAD); 10683 } 10684 limit = mtod(a_chk->data, caddr_t); 10685 limit += space; 10686 10687 flags = 0; 10688 10689 if ((asoc->sctp_cmt_on_off > 0) && 10690 SCTP_BASE_SYSCTL(sctp_cmt_use_dac)) { 10691 /*- 10692 * CMT DAC algorithm: If 2 (i.e., 0x10) packets have been 10693 * received, then set high bit to 1, else 0. Reset 10694 * pkts_rcvd. 10695 */ 10696 flags |= (asoc->cmt_dac_pkts_rcvd << 6); 10697 asoc->cmt_dac_pkts_rcvd = 0; 10698 } 10699 #ifdef SCTP_ASOCLOG_OF_TSNS 10700 stcb->asoc.cumack_logsnt[stcb->asoc.cumack_log_atsnt] = asoc->cumulative_tsn; 10701 stcb->asoc.cumack_log_atsnt++; 10702 if (stcb->asoc.cumack_log_atsnt >= SCTP_TSN_LOG_SIZE) { 10703 stcb->asoc.cumack_log_atsnt = 0; 10704 } 10705 #endif 10706 /* reset the readers interpretation */ 10707 stcb->freed_by_sorcv_sincelast = 0; 10708 10709 if (type == SCTP_SELECTIVE_ACK) { 10710 sack = mtod(a_chk->data, struct sctp_sack_chunk *); 10711 nr_sack = NULL; 10712 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)sack + sizeof(struct sctp_sack_chunk)); 10713 if (highest_tsn > asoc->mapping_array_base_tsn) { 10714 siz = (((highest_tsn - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10715 } else { 10716 siz = (((MAX_TSN - highest_tsn) + 1) + highest_tsn + 7) / 8; 10717 } 10718 } else { 10719 sack = NULL; 10720 nr_sack = mtod(a_chk->data, struct sctp_nr_sack_chunk *); 10721 gap_descriptor = (struct sctp_gap_ack_block *)((caddr_t)nr_sack + sizeof(struct sctp_nr_sack_chunk)); 10722 if (asoc->highest_tsn_inside_map > asoc->mapping_array_base_tsn) { 10723 siz = (((asoc->highest_tsn_inside_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10724 } else { 10725 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_map + 7) / 8; 10726 } 10727 } 10728 10729 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10730 offset = 1; 10731 } else { 10732 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10733 } 10734 if (((type == SCTP_SELECTIVE_ACK) && 10735 SCTP_TSN_GT(highest_tsn, asoc->cumulative_tsn)) || 10736 ((type == SCTP_NR_SELECTIVE_ACK) && 10737 SCTP_TSN_GT(asoc->highest_tsn_inside_map, asoc->cumulative_tsn))) { 10738 /* we have a gap .. maybe */ 10739 for (i = 0; i < siz; i++) { 10740 tsn_map = asoc->mapping_array[i]; 10741 if (type == SCTP_SELECTIVE_ACK) { 10742 tsn_map |= asoc->nr_mapping_array[i]; 10743 } 10744 if (i == 0) { 10745 /* 10746 * Clear all bits corresponding to TSNs 10747 * smaller or equal to the cumulative TSN. 10748 */ 10749 tsn_map &= (~0U << (1 - offset)); 10750 } 10751 selector = &sack_array[tsn_map]; 10752 if (mergeable && selector->right_edge) { 10753 /* 10754 * Backup, left and right edges were ok to 10755 * merge. 10756 */ 10757 num_gap_blocks--; 10758 gap_descriptor--; 10759 } 10760 if (selector->num_entries == 0) 10761 mergeable = 0; 10762 else { 10763 for (j = 0; j < selector->num_entries; j++) { 10764 if (mergeable && selector->right_edge) { 10765 /* 10766 * do a merge by NOT setting 10767 * the left side 10768 */ 10769 mergeable = 0; 10770 } else { 10771 /* 10772 * no merge, set the left 10773 * side 10774 */ 10775 mergeable = 0; 10776 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10777 } 10778 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10779 num_gap_blocks++; 10780 gap_descriptor++; 10781 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10782 /* no more room */ 10783 limit_reached = 1; 10784 break; 10785 } 10786 } 10787 if (selector->left_edge) { 10788 mergeable = 1; 10789 } 10790 } 10791 if (limit_reached) { 10792 /* Reached the limit stop */ 10793 break; 10794 } 10795 offset += 8; 10796 } 10797 } 10798 if ((type == SCTP_NR_SELECTIVE_ACK) && 10799 (limit_reached == 0)) { 10800 10801 mergeable = 0; 10802 10803 if (asoc->highest_tsn_inside_nr_map > asoc->mapping_array_base_tsn) { 10804 siz = (((asoc->highest_tsn_inside_nr_map - asoc->mapping_array_base_tsn) + 1) + 7) / 8; 10805 } else { 10806 siz = (((MAX_TSN - asoc->mapping_array_base_tsn) + 1) + asoc->highest_tsn_inside_nr_map + 7) / 8; 10807 } 10808 10809 if (SCTP_TSN_GT(asoc->mapping_array_base_tsn, asoc->cumulative_tsn)) { 10810 offset = 1; 10811 } else { 10812 offset = asoc->mapping_array_base_tsn - asoc->cumulative_tsn; 10813 } 10814 if (SCTP_TSN_GT(asoc->highest_tsn_inside_nr_map, asoc->cumulative_tsn)) { 10815 /* we have a gap .. maybe */ 10816 for (i = 0; i < siz; i++) { 10817 tsn_map = asoc->nr_mapping_array[i]; 10818 if (i == 0) { 10819 /* 10820 * Clear all bits corresponding to 10821 * TSNs smaller or equal to the 10822 * cumulative TSN. 10823 */ 10824 tsn_map &= (~0U << (1 - offset)); 10825 } 10826 selector = &sack_array[tsn_map]; 10827 if (mergeable && selector->right_edge) { 10828 /* 10829 * Backup, left and right edges were 10830 * ok to merge. 10831 */ 10832 num_nr_gap_blocks--; 10833 gap_descriptor--; 10834 } 10835 if (selector->num_entries == 0) 10836 mergeable = 0; 10837 else { 10838 for (j = 0; j < selector->num_entries; j++) { 10839 if (mergeable && selector->right_edge) { 10840 /* 10841 * do a merge by NOT 10842 * setting the left 10843 * side 10844 */ 10845 mergeable = 0; 10846 } else { 10847 /* 10848 * no merge, set the 10849 * left side 10850 */ 10851 mergeable = 0; 10852 gap_descriptor->start = htons((selector->gaps[j].start + offset)); 10853 } 10854 gap_descriptor->end = htons((selector->gaps[j].end + offset)); 10855 num_nr_gap_blocks++; 10856 gap_descriptor++; 10857 if (((caddr_t)gap_descriptor + sizeof(struct sctp_gap_ack_block)) > limit) { 10858 /* no more room */ 10859 limit_reached = 1; 10860 break; 10861 } 10862 } 10863 if (selector->left_edge) { 10864 mergeable = 1; 10865 } 10866 } 10867 if (limit_reached) { 10868 /* Reached the limit stop */ 10869 break; 10870 } 10871 offset += 8; 10872 } 10873 } 10874 } 10875 /* now we must add any dups we are going to report. */ 10876 if ((limit_reached == 0) && (asoc->numduptsns)) { 10877 dup = (uint32_t *)gap_descriptor; 10878 for (i = 0; i < asoc->numduptsns; i++) { 10879 *dup = htonl(asoc->dup_tsns[i]); 10880 dup++; 10881 num_dups++; 10882 if (((caddr_t)dup + sizeof(uint32_t)) > limit) { 10883 /* no more room */ 10884 break; 10885 } 10886 } 10887 asoc->numduptsns = 0; 10888 } 10889 /* 10890 * now that the chunk is prepared queue it to the control chunk 10891 * queue. 10892 */ 10893 if (type == SCTP_SELECTIVE_ACK) { 10894 a_chk->send_size = (uint16_t)(sizeof(struct sctp_sack_chunk) + 10895 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10896 num_dups * sizeof(int32_t)); 10897 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10898 sack->sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10899 sack->sack.a_rwnd = htonl(asoc->my_rwnd); 10900 sack->sack.num_gap_ack_blks = htons(num_gap_blocks); 10901 sack->sack.num_dup_tsns = htons(num_dups); 10902 sack->ch.chunk_type = type; 10903 sack->ch.chunk_flags = flags; 10904 sack->ch.chunk_length = htons(a_chk->send_size); 10905 } else { 10906 a_chk->send_size = (uint16_t)(sizeof(struct sctp_nr_sack_chunk) + 10907 (num_gap_blocks + num_nr_gap_blocks) * sizeof(struct sctp_gap_ack_block) + 10908 num_dups * sizeof(int32_t)); 10909 SCTP_BUF_LEN(a_chk->data) = a_chk->send_size; 10910 nr_sack->nr_sack.cum_tsn_ack = htonl(asoc->cumulative_tsn); 10911 nr_sack->nr_sack.a_rwnd = htonl(asoc->my_rwnd); 10912 nr_sack->nr_sack.num_gap_ack_blks = htons(num_gap_blocks); 10913 nr_sack->nr_sack.num_nr_gap_ack_blks = htons(num_nr_gap_blocks); 10914 nr_sack->nr_sack.num_dup_tsns = htons(num_dups); 10915 nr_sack->nr_sack.reserved = 0; 10916 nr_sack->ch.chunk_type = type; 10917 nr_sack->ch.chunk_flags = flags; 10918 nr_sack->ch.chunk_length = htons(a_chk->send_size); 10919 } 10920 TAILQ_INSERT_TAIL(&asoc->control_send_queue, a_chk, sctp_next); 10921 asoc->my_last_reported_rwnd = asoc->my_rwnd; 10922 asoc->ctrl_queue_cnt++; 10923 asoc->send_sack = 0; 10924 SCTP_STAT_INCR(sctps_sendsacks); 10925 return; 10926 } 10927 10928 void 10929 sctp_send_abort_tcb(struct sctp_tcb *stcb, struct mbuf *operr, int so_locked 10930 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 10931 SCTP_UNUSED 10932 #endif 10933 ) 10934 { 10935 struct mbuf *m_abort, *m, *m_last; 10936 struct mbuf *m_out, *m_end = NULL; 10937 struct sctp_abort_chunk *abort; 10938 struct sctp_auth_chunk *auth = NULL; 10939 struct sctp_nets *net; 10940 uint32_t vtag; 10941 uint32_t auth_offset = 0; 10942 int error; 10943 uint16_t cause_len, chunk_len, padding_len; 10944 10945 SCTP_TCB_LOCK_ASSERT(stcb); 10946 /*- 10947 * Add an AUTH chunk, if chunk requires it and save the offset into 10948 * the chain for AUTH 10949 */ 10950 if (sctp_auth_is_required_chunk(SCTP_ABORT_ASSOCIATION, 10951 stcb->asoc.peer_auth_chunks)) { 10952 m_out = sctp_add_auth_chunk(NULL, &m_end, &auth, &auth_offset, 10953 stcb, SCTP_ABORT_ASSOCIATION); 10954 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 10955 } else { 10956 m_out = NULL; 10957 } 10958 m_abort = sctp_get_mbuf_for_msg(sizeof(struct sctp_abort_chunk), 0, M_NOWAIT, 1, MT_HEADER); 10959 if (m_abort == NULL) { 10960 if (m_out) { 10961 sctp_m_freem(m_out); 10962 } 10963 if (operr) { 10964 sctp_m_freem(operr); 10965 } 10966 return; 10967 } 10968 /* link in any error */ 10969 SCTP_BUF_NEXT(m_abort) = operr; 10970 cause_len = 0; 10971 m_last = NULL; 10972 for (m = operr; m; m = SCTP_BUF_NEXT(m)) { 10973 cause_len += (uint16_t)SCTP_BUF_LEN(m); 10974 if (SCTP_BUF_NEXT(m) == NULL) { 10975 m_last = m; 10976 } 10977 } 10978 SCTP_BUF_LEN(m_abort) = sizeof(struct sctp_abort_chunk); 10979 chunk_len = (uint16_t)sizeof(struct sctp_abort_chunk) + cause_len; 10980 padding_len = SCTP_SIZE32(chunk_len) - chunk_len; 10981 if (m_out == NULL) { 10982 /* NO Auth chunk prepended, so reserve space in front */ 10983 SCTP_BUF_RESV_UF(m_abort, SCTP_MIN_OVERHEAD); 10984 m_out = m_abort; 10985 } else { 10986 /* Put AUTH chunk at the front of the chain */ 10987 SCTP_BUF_NEXT(m_end) = m_abort; 10988 } 10989 if (stcb->asoc.alternate) { 10990 net = stcb->asoc.alternate; 10991 } else { 10992 net = stcb->asoc.primary_destination; 10993 } 10994 /* Fill in the ABORT chunk header. */ 10995 abort = mtod(m_abort, struct sctp_abort_chunk *); 10996 abort->ch.chunk_type = SCTP_ABORT_ASSOCIATION; 10997 if (stcb->asoc.peer_vtag == 0) { 10998 /* This happens iff the assoc is in COOKIE-WAIT state. */ 10999 vtag = stcb->asoc.my_vtag; 11000 abort->ch.chunk_flags = SCTP_HAD_NO_TCB; 11001 } else { 11002 vtag = stcb->asoc.peer_vtag; 11003 abort->ch.chunk_flags = 0; 11004 } 11005 abort->ch.chunk_length = htons(chunk_len); 11006 /* Add padding, if necessary. */ 11007 if (padding_len > 0) { 11008 if ((m_last == NULL) || 11009 (sctp_add_pad_tombuf(m_last, padding_len) == NULL)) { 11010 sctp_m_freem(m_out); 11011 return; 11012 } 11013 } 11014 if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 11015 (struct sockaddr *)&net->ro._l_addr, 11016 m_out, auth_offset, auth, stcb->asoc.authinfo.active_keyid, 1, 0, 0, 11017 stcb->sctp_ep->sctp_lport, stcb->rport, htonl(vtag), 11018 stcb->asoc.primary_destination->port, NULL, 11019 0, 0, 11020 so_locked))) { 11021 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 11022 if (error == ENOBUFS) { 11023 stcb->asoc.ifp_had_enobuf = 1; 11024 SCTP_STAT_INCR(sctps_lowlevelerr); 11025 } 11026 } else { 11027 stcb->asoc.ifp_had_enobuf = 0; 11028 } 11029 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11030 } 11031 11032 void 11033 sctp_send_shutdown_complete(struct sctp_tcb *stcb, 11034 struct sctp_nets *net, 11035 int reflect_vtag) 11036 { 11037 /* formulate and SEND a SHUTDOWN-COMPLETE */ 11038 struct mbuf *m_shutdown_comp; 11039 struct sctp_shutdown_complete_chunk *shutdown_complete; 11040 uint32_t vtag; 11041 int error; 11042 uint8_t flags; 11043 11044 m_shutdown_comp = sctp_get_mbuf_for_msg(sizeof(struct sctp_chunkhdr), 0, M_NOWAIT, 1, MT_HEADER); 11045 if (m_shutdown_comp == NULL) { 11046 /* no mbuf's */ 11047 return; 11048 } 11049 if (reflect_vtag) { 11050 flags = SCTP_HAD_NO_TCB; 11051 vtag = stcb->asoc.my_vtag; 11052 } else { 11053 flags = 0; 11054 vtag = stcb->asoc.peer_vtag; 11055 } 11056 shutdown_complete = mtod(m_shutdown_comp, struct sctp_shutdown_complete_chunk *); 11057 shutdown_complete->ch.chunk_type = SCTP_SHUTDOWN_COMPLETE; 11058 shutdown_complete->ch.chunk_flags = flags; 11059 shutdown_complete->ch.chunk_length = htons(sizeof(struct sctp_shutdown_complete_chunk)); 11060 SCTP_BUF_LEN(m_shutdown_comp) = sizeof(struct sctp_shutdown_complete_chunk); 11061 if ((error = sctp_lowlevel_chunk_output(stcb->sctp_ep, stcb, net, 11062 (struct sockaddr *)&net->ro._l_addr, 11063 m_shutdown_comp, 0, NULL, 0, 1, 0, 0, 11064 stcb->sctp_ep->sctp_lport, stcb->rport, 11065 htonl(vtag), 11066 net->port, NULL, 11067 0, 0, 11068 SCTP_SO_NOT_LOCKED))) { 11069 SCTPDBG(SCTP_DEBUG_OUTPUT3, "Gak send error %d\n", error); 11070 if (error == ENOBUFS) { 11071 stcb->asoc.ifp_had_enobuf = 1; 11072 SCTP_STAT_INCR(sctps_lowlevelerr); 11073 } 11074 } else { 11075 stcb->asoc.ifp_had_enobuf = 0; 11076 } 11077 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11078 return; 11079 } 11080 11081 static void 11082 sctp_send_resp_msg(struct sockaddr *src, struct sockaddr *dst, 11083 struct sctphdr *sh, uint32_t vtag, 11084 uint8_t type, struct mbuf *cause, 11085 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 11086 uint32_t vrf_id, uint16_t port) 11087 { 11088 struct mbuf *o_pak; 11089 struct mbuf *mout; 11090 struct sctphdr *shout; 11091 struct sctp_chunkhdr *ch; 11092 #if defined(INET) || defined(INET6) 11093 struct udphdr *udp; 11094 #endif 11095 int ret, len, cause_len, padding_len; 11096 #ifdef INET 11097 struct sockaddr_in *src_sin, *dst_sin; 11098 struct ip *ip; 11099 #endif 11100 #ifdef INET6 11101 struct sockaddr_in6 *src_sin6, *dst_sin6; 11102 struct ip6_hdr *ip6; 11103 #endif 11104 11105 /* Compute the length of the cause and add final padding. */ 11106 cause_len = 0; 11107 if (cause != NULL) { 11108 struct mbuf *m_at, *m_last = NULL; 11109 11110 for (m_at = cause; m_at; m_at = SCTP_BUF_NEXT(m_at)) { 11111 if (SCTP_BUF_NEXT(m_at) == NULL) 11112 m_last = m_at; 11113 cause_len += SCTP_BUF_LEN(m_at); 11114 } 11115 padding_len = cause_len % 4; 11116 if (padding_len != 0) { 11117 padding_len = 4 - padding_len; 11118 } 11119 if (padding_len != 0) { 11120 if (sctp_add_pad_tombuf(m_last, padding_len) == NULL) { 11121 sctp_m_freem(cause); 11122 return; 11123 } 11124 } 11125 } else { 11126 padding_len = 0; 11127 } 11128 /* Get an mbuf for the header. */ 11129 len = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr); 11130 switch (dst->sa_family) { 11131 #ifdef INET 11132 case AF_INET: 11133 len += sizeof(struct ip); 11134 break; 11135 #endif 11136 #ifdef INET6 11137 case AF_INET6: 11138 len += sizeof(struct ip6_hdr); 11139 break; 11140 #endif 11141 default: 11142 break; 11143 } 11144 #if defined(INET) || defined(INET6) 11145 if (port) { 11146 len += sizeof(struct udphdr); 11147 } 11148 #endif 11149 mout = sctp_get_mbuf_for_msg(len + max_linkhdr, 1, M_NOWAIT, 1, MT_DATA); 11150 if (mout == NULL) { 11151 if (cause) { 11152 sctp_m_freem(cause); 11153 } 11154 return; 11155 } 11156 SCTP_BUF_RESV_UF(mout, max_linkhdr); 11157 SCTP_BUF_LEN(mout) = len; 11158 SCTP_BUF_NEXT(mout) = cause; 11159 M_SETFIB(mout, fibnum); 11160 mout->m_pkthdr.flowid = mflowid; 11161 M_HASHTYPE_SET(mout, mflowtype); 11162 #ifdef INET 11163 ip = NULL; 11164 #endif 11165 #ifdef INET6 11166 ip6 = NULL; 11167 #endif 11168 switch (dst->sa_family) { 11169 #ifdef INET 11170 case AF_INET: 11171 src_sin = (struct sockaddr_in *)src; 11172 dst_sin = (struct sockaddr_in *)dst; 11173 ip = mtod(mout, struct ip *); 11174 ip->ip_v = IPVERSION; 11175 ip->ip_hl = (sizeof(struct ip) >> 2); 11176 ip->ip_tos = 0; 11177 ip->ip_off = htons(IP_DF); 11178 ip_fillid(ip); 11179 ip->ip_ttl = MODULE_GLOBAL(ip_defttl); 11180 if (port) { 11181 ip->ip_p = IPPROTO_UDP; 11182 } else { 11183 ip->ip_p = IPPROTO_SCTP; 11184 } 11185 ip->ip_src.s_addr = dst_sin->sin_addr.s_addr; 11186 ip->ip_dst.s_addr = src_sin->sin_addr.s_addr; 11187 ip->ip_sum = 0; 11188 len = sizeof(struct ip); 11189 shout = (struct sctphdr *)((caddr_t)ip + len); 11190 break; 11191 #endif 11192 #ifdef INET6 11193 case AF_INET6: 11194 src_sin6 = (struct sockaddr_in6 *)src; 11195 dst_sin6 = (struct sockaddr_in6 *)dst; 11196 ip6 = mtod(mout, struct ip6_hdr *); 11197 ip6->ip6_flow = htonl(0x60000000); 11198 if (V_ip6_auto_flowlabel) { 11199 ip6->ip6_flow |= (htonl(ip6_randomflowlabel()) & IPV6_FLOWLABEL_MASK); 11200 } 11201 ip6->ip6_hlim = MODULE_GLOBAL(ip6_defhlim); 11202 if (port) { 11203 ip6->ip6_nxt = IPPROTO_UDP; 11204 } else { 11205 ip6->ip6_nxt = IPPROTO_SCTP; 11206 } 11207 ip6->ip6_src = dst_sin6->sin6_addr; 11208 ip6->ip6_dst = src_sin6->sin6_addr; 11209 len = sizeof(struct ip6_hdr); 11210 shout = (struct sctphdr *)((caddr_t)ip6 + len); 11211 break; 11212 #endif 11213 default: 11214 len = 0; 11215 shout = mtod(mout, struct sctphdr *); 11216 break; 11217 } 11218 #if defined(INET) || defined(INET6) 11219 if (port) { 11220 if (htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)) == 0) { 11221 sctp_m_freem(mout); 11222 return; 11223 } 11224 udp = (struct udphdr *)shout; 11225 udp->uh_sport = htons(SCTP_BASE_SYSCTL(sctp_udp_tunneling_port)); 11226 udp->uh_dport = port; 11227 udp->uh_sum = 0; 11228 udp->uh_ulen = htons((uint16_t)(sizeof(struct udphdr) + 11229 sizeof(struct sctphdr) + 11230 sizeof(struct sctp_chunkhdr) + 11231 cause_len + padding_len)); 11232 len += sizeof(struct udphdr); 11233 shout = (struct sctphdr *)((caddr_t)shout + sizeof(struct udphdr)); 11234 } else { 11235 udp = NULL; 11236 } 11237 #endif 11238 shout->src_port = sh->dest_port; 11239 shout->dest_port = sh->src_port; 11240 shout->checksum = 0; 11241 if (vtag) { 11242 shout->v_tag = htonl(vtag); 11243 } else { 11244 shout->v_tag = sh->v_tag; 11245 } 11246 len += sizeof(struct sctphdr); 11247 ch = (struct sctp_chunkhdr *)((caddr_t)shout + sizeof(struct sctphdr)); 11248 ch->chunk_type = type; 11249 if (vtag) { 11250 ch->chunk_flags = 0; 11251 } else { 11252 ch->chunk_flags = SCTP_HAD_NO_TCB; 11253 } 11254 ch->chunk_length = htons((uint16_t)(sizeof(struct sctp_chunkhdr) + cause_len)); 11255 len += sizeof(struct sctp_chunkhdr); 11256 len += cause_len + padding_len; 11257 11258 if (SCTP_GET_HEADER_FOR_OUTPUT(o_pak)) { 11259 sctp_m_freem(mout); 11260 return; 11261 } 11262 SCTP_ATTACH_CHAIN(o_pak, mout, len); 11263 switch (dst->sa_family) { 11264 #ifdef INET 11265 case AF_INET: 11266 if (port) { 11267 if (V_udp_cksum) { 11268 udp->uh_sum = in_pseudo(ip->ip_src.s_addr, ip->ip_dst.s_addr, udp->uh_ulen + htons(IPPROTO_UDP)); 11269 } else { 11270 udp->uh_sum = 0; 11271 } 11272 } 11273 ip->ip_len = htons(len); 11274 if (port) { 11275 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip) + sizeof(struct udphdr)); 11276 SCTP_STAT_INCR(sctps_sendswcrc); 11277 if (V_udp_cksum) { 11278 SCTP_ENABLE_UDP_CSUM(o_pak); 11279 } 11280 } else { 11281 mout->m_pkthdr.csum_flags = CSUM_SCTP; 11282 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11283 SCTP_STAT_INCR(sctps_sendhwcrc); 11284 } 11285 #ifdef SCTP_PACKET_LOGGING 11286 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11287 sctp_packet_log(o_pak); 11288 } 11289 #endif 11290 SCTP_PROBE5(send, NULL, NULL, ip, NULL, shout); 11291 SCTP_IP_OUTPUT(ret, o_pak, NULL, NULL, vrf_id); 11292 break; 11293 #endif 11294 #ifdef INET6 11295 case AF_INET6: 11296 ip6->ip6_plen = htons((uint16_t)(len - sizeof(struct ip6_hdr))); 11297 if (port) { 11298 shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr) + sizeof(struct udphdr)); 11299 SCTP_STAT_INCR(sctps_sendswcrc); 11300 if ((udp->uh_sum = in6_cksum(o_pak, IPPROTO_UDP, sizeof(struct ip6_hdr), len - sizeof(struct ip6_hdr))) == 0) { 11301 udp->uh_sum = 0xffff; 11302 } 11303 } else { 11304 mout->m_pkthdr.csum_flags = CSUM_SCTP_IPV6; 11305 mout->m_pkthdr.csum_data = offsetof(struct sctphdr, checksum); 11306 SCTP_STAT_INCR(sctps_sendhwcrc); 11307 } 11308 #ifdef SCTP_PACKET_LOGGING 11309 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_LAST_PACKET_TRACING) { 11310 sctp_packet_log(o_pak); 11311 } 11312 #endif 11313 SCTP_PROBE5(send, NULL, NULL, ip6, NULL, shout); 11314 SCTP_IP6_OUTPUT(ret, o_pak, NULL, NULL, NULL, vrf_id); 11315 break; 11316 #endif 11317 default: 11318 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Unknown protocol (TSNH) type %d\n", 11319 dst->sa_family); 11320 sctp_m_freem(mout); 11321 SCTP_LTRACE_ERR_RET_PKT(mout, NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EFAULT); 11322 return; 11323 } 11324 SCTPDBG(SCTP_DEBUG_OUTPUT3, "return from send is %d\n", ret); 11325 if (port) { 11326 UDPSTAT_INC(udps_opackets); 11327 } 11328 SCTP_STAT_INCR(sctps_sendpackets); 11329 SCTP_STAT_INCR_COUNTER64(sctps_outpackets); 11330 SCTP_STAT_INCR_COUNTER64(sctps_outcontrolchunks); 11331 if (ret) { 11332 SCTP_STAT_INCR(sctps_senderrors); 11333 } 11334 return; 11335 } 11336 11337 void 11338 sctp_send_shutdown_complete2(struct sockaddr *src, struct sockaddr *dst, 11339 struct sctphdr *sh, 11340 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 11341 uint32_t vrf_id, uint16_t port) 11342 { 11343 sctp_send_resp_msg(src, dst, sh, 0, SCTP_SHUTDOWN_COMPLETE, NULL, 11344 mflowtype, mflowid, fibnum, 11345 vrf_id, port); 11346 } 11347 11348 void 11349 sctp_send_hb(struct sctp_tcb *stcb, struct sctp_nets *net, int so_locked 11350 #if !defined(__APPLE__) && !defined(SCTP_SO_LOCK_TESTING) 11351 SCTP_UNUSED 11352 #endif 11353 ) 11354 { 11355 struct sctp_tmit_chunk *chk; 11356 struct sctp_heartbeat_chunk *hb; 11357 struct timeval now; 11358 11359 SCTP_TCB_LOCK_ASSERT(stcb); 11360 if (net == NULL) { 11361 return; 11362 } 11363 (void)SCTP_GETTIME_TIMEVAL(&now); 11364 switch (net->ro._l_addr.sa.sa_family) { 11365 #ifdef INET 11366 case AF_INET: 11367 break; 11368 #endif 11369 #ifdef INET6 11370 case AF_INET6: 11371 break; 11372 #endif 11373 default: 11374 return; 11375 } 11376 sctp_alloc_a_chunk(stcb, chk); 11377 if (chk == NULL) { 11378 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n"); 11379 return; 11380 } 11381 11382 chk->copy_by_ref = 0; 11383 chk->rec.chunk_id.id = SCTP_HEARTBEAT_REQUEST; 11384 chk->rec.chunk_id.can_take_data = 1; 11385 chk->flags = 0; 11386 chk->asoc = &stcb->asoc; 11387 chk->send_size = sizeof(struct sctp_heartbeat_chunk); 11388 11389 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11390 if (chk->data == NULL) { 11391 sctp_free_a_chunk(stcb, chk, so_locked); 11392 return; 11393 } 11394 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11395 SCTP_BUF_LEN(chk->data) = chk->send_size; 11396 chk->sent = SCTP_DATAGRAM_UNSENT; 11397 chk->snd_count = 0; 11398 chk->whoTo = net; 11399 atomic_add_int(&chk->whoTo->ref_count, 1); 11400 /* Now we have a mbuf that we can fill in with the details */ 11401 hb = mtod(chk->data, struct sctp_heartbeat_chunk *); 11402 memset(hb, 0, sizeof(struct sctp_heartbeat_chunk)); 11403 /* fill out chunk header */ 11404 hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST; 11405 hb->ch.chunk_flags = 0; 11406 hb->ch.chunk_length = htons(chk->send_size); 11407 /* Fill out hb parameter */ 11408 hb->heartbeat.hb_info.ph.param_type = htons(SCTP_HEARTBEAT_INFO); 11409 hb->heartbeat.hb_info.ph.param_length = htons(sizeof(struct sctp_heartbeat_info_param)); 11410 hb->heartbeat.hb_info.time_value_1 = now.tv_sec; 11411 hb->heartbeat.hb_info.time_value_2 = now.tv_usec; 11412 /* Did our user request this one, put it in */ 11413 hb->heartbeat.hb_info.addr_family = (uint8_t)net->ro._l_addr.sa.sa_family; 11414 hb->heartbeat.hb_info.addr_len = net->ro._l_addr.sa.sa_len; 11415 if (net->dest_state & SCTP_ADDR_UNCONFIRMED) { 11416 /* 11417 * we only take from the entropy pool if the address is not 11418 * confirmed. 11419 */ 11420 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11421 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 11422 } else { 11423 net->heartbeat_random1 = hb->heartbeat.hb_info.random_value1 = 0; 11424 net->heartbeat_random2 = hb->heartbeat.hb_info.random_value2 = 0; 11425 } 11426 switch (net->ro._l_addr.sa.sa_family) { 11427 #ifdef INET 11428 case AF_INET: 11429 memcpy(hb->heartbeat.hb_info.address, 11430 &net->ro._l_addr.sin.sin_addr, 11431 sizeof(net->ro._l_addr.sin.sin_addr)); 11432 break; 11433 #endif 11434 #ifdef INET6 11435 case AF_INET6: 11436 memcpy(hb->heartbeat.hb_info.address, 11437 &net->ro._l_addr.sin6.sin6_addr, 11438 sizeof(net->ro._l_addr.sin6.sin6_addr)); 11439 break; 11440 #endif 11441 default: 11442 if (chk->data) { 11443 sctp_m_freem(chk->data); 11444 chk->data = NULL; 11445 } 11446 sctp_free_a_chunk(stcb, chk, so_locked); 11447 return; 11448 break; 11449 } 11450 net->hb_responded = 0; 11451 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11452 stcb->asoc.ctrl_queue_cnt++; 11453 SCTP_STAT_INCR(sctps_sendheartbeat); 11454 return; 11455 } 11456 11457 void 11458 sctp_send_ecn_echo(struct sctp_tcb *stcb, struct sctp_nets *net, 11459 uint32_t high_tsn) 11460 { 11461 struct sctp_association *asoc; 11462 struct sctp_ecne_chunk *ecne; 11463 struct sctp_tmit_chunk *chk; 11464 11465 if (net == NULL) { 11466 return; 11467 } 11468 asoc = &stcb->asoc; 11469 SCTP_TCB_LOCK_ASSERT(stcb); 11470 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11471 if ((chk->rec.chunk_id.id == SCTP_ECN_ECHO) && (net == chk->whoTo)) { 11472 /* found a previous ECN_ECHO update it if needed */ 11473 uint32_t cnt, ctsn; 11474 11475 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11476 ctsn = ntohl(ecne->tsn); 11477 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11478 ecne->tsn = htonl(high_tsn); 11479 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11480 } 11481 cnt = ntohl(ecne->num_pkts_since_cwr); 11482 cnt++; 11483 ecne->num_pkts_since_cwr = htonl(cnt); 11484 return; 11485 } 11486 } 11487 /* nope could not find one to update so we must build one */ 11488 sctp_alloc_a_chunk(stcb, chk); 11489 if (chk == NULL) { 11490 return; 11491 } 11492 SCTP_STAT_INCR(sctps_queue_upd_ecne); 11493 chk->copy_by_ref = 0; 11494 chk->rec.chunk_id.id = SCTP_ECN_ECHO; 11495 chk->rec.chunk_id.can_take_data = 0; 11496 chk->flags = 0; 11497 chk->asoc = &stcb->asoc; 11498 chk->send_size = sizeof(struct sctp_ecne_chunk); 11499 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11500 if (chk->data == NULL) { 11501 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11502 return; 11503 } 11504 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11505 SCTP_BUF_LEN(chk->data) = chk->send_size; 11506 chk->sent = SCTP_DATAGRAM_UNSENT; 11507 chk->snd_count = 0; 11508 chk->whoTo = net; 11509 atomic_add_int(&chk->whoTo->ref_count, 1); 11510 11511 stcb->asoc.ecn_echo_cnt_onq++; 11512 ecne = mtod(chk->data, struct sctp_ecne_chunk *); 11513 ecne->ch.chunk_type = SCTP_ECN_ECHO; 11514 ecne->ch.chunk_flags = 0; 11515 ecne->ch.chunk_length = htons(sizeof(struct sctp_ecne_chunk)); 11516 ecne->tsn = htonl(high_tsn); 11517 ecne->num_pkts_since_cwr = htonl(1); 11518 TAILQ_INSERT_HEAD(&stcb->asoc.control_send_queue, chk, sctp_next); 11519 asoc->ctrl_queue_cnt++; 11520 } 11521 11522 void 11523 sctp_send_packet_dropped(struct sctp_tcb *stcb, struct sctp_nets *net, 11524 struct mbuf *m, int len, int iphlen, int bad_crc) 11525 { 11526 struct sctp_association *asoc; 11527 struct sctp_pktdrop_chunk *drp; 11528 struct sctp_tmit_chunk *chk; 11529 uint8_t *datap; 11530 int was_trunc = 0; 11531 int fullsz = 0; 11532 long spc; 11533 int offset; 11534 struct sctp_chunkhdr *ch, chunk_buf; 11535 unsigned int chk_length; 11536 11537 if (!stcb) { 11538 return; 11539 } 11540 asoc = &stcb->asoc; 11541 SCTP_TCB_LOCK_ASSERT(stcb); 11542 if (asoc->pktdrop_supported == 0) { 11543 /*- 11544 * peer must declare support before I send one. 11545 */ 11546 return; 11547 } 11548 if (stcb->sctp_socket == NULL) { 11549 return; 11550 } 11551 sctp_alloc_a_chunk(stcb, chk); 11552 if (chk == NULL) { 11553 return; 11554 } 11555 chk->copy_by_ref = 0; 11556 chk->rec.chunk_id.id = SCTP_PACKET_DROPPED; 11557 chk->rec.chunk_id.can_take_data = 1; 11558 chk->flags = 0; 11559 len -= iphlen; 11560 chk->send_size = len; 11561 /* Validate that we do not have an ABORT in here. */ 11562 offset = iphlen + sizeof(struct sctphdr); 11563 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11564 sizeof(*ch), (uint8_t *)&chunk_buf); 11565 while (ch != NULL) { 11566 chk_length = ntohs(ch->chunk_length); 11567 if (chk_length < sizeof(*ch)) { 11568 /* break to abort land */ 11569 break; 11570 } 11571 switch (ch->chunk_type) { 11572 case SCTP_PACKET_DROPPED: 11573 case SCTP_ABORT_ASSOCIATION: 11574 case SCTP_INITIATION_ACK: 11575 /** 11576 * We don't respond with an PKT-DROP to an ABORT 11577 * or PKT-DROP. We also do not respond to an 11578 * INIT-ACK, because we can't know if the initiation 11579 * tag is correct or not. 11580 */ 11581 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11582 return; 11583 default: 11584 break; 11585 } 11586 offset += SCTP_SIZE32(chk_length); 11587 ch = (struct sctp_chunkhdr *)sctp_m_getptr(m, offset, 11588 sizeof(*ch), (uint8_t *)&chunk_buf); 11589 } 11590 11591 if ((len + SCTP_MAX_OVERHEAD + sizeof(struct sctp_pktdrop_chunk)) > 11592 min(stcb->asoc.smallest_mtu, MCLBYTES)) { 11593 /* 11594 * only send 1 mtu worth, trim off the excess on the end. 11595 */ 11596 fullsz = len; 11597 len = min(stcb->asoc.smallest_mtu, MCLBYTES) - SCTP_MAX_OVERHEAD; 11598 was_trunc = 1; 11599 } 11600 chk->asoc = &stcb->asoc; 11601 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11602 if (chk->data == NULL) { 11603 jump_out: 11604 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11605 return; 11606 } 11607 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11608 drp = mtod(chk->data, struct sctp_pktdrop_chunk *); 11609 if (drp == NULL) { 11610 sctp_m_freem(chk->data); 11611 chk->data = NULL; 11612 goto jump_out; 11613 } 11614 chk->book_size = SCTP_SIZE32((chk->send_size + sizeof(struct sctp_pktdrop_chunk) + 11615 sizeof(struct sctphdr) + SCTP_MED_OVERHEAD)); 11616 chk->book_size_scale = 0; 11617 if (was_trunc) { 11618 drp->ch.chunk_flags = SCTP_PACKET_TRUNCATED; 11619 drp->trunc_len = htons(fullsz); 11620 /* 11621 * Len is already adjusted to size minus overhead above take 11622 * out the pkt_drop chunk itself from it. 11623 */ 11624 chk->send_size = (uint16_t)(len - sizeof(struct sctp_pktdrop_chunk)); 11625 len = chk->send_size; 11626 } else { 11627 /* no truncation needed */ 11628 drp->ch.chunk_flags = 0; 11629 drp->trunc_len = htons(0); 11630 } 11631 if (bad_crc) { 11632 drp->ch.chunk_flags |= SCTP_BADCRC; 11633 } 11634 chk->send_size += sizeof(struct sctp_pktdrop_chunk); 11635 SCTP_BUF_LEN(chk->data) = chk->send_size; 11636 chk->sent = SCTP_DATAGRAM_UNSENT; 11637 chk->snd_count = 0; 11638 if (net) { 11639 /* we should hit here */ 11640 chk->whoTo = net; 11641 atomic_add_int(&chk->whoTo->ref_count, 1); 11642 } else { 11643 chk->whoTo = NULL; 11644 } 11645 drp->ch.chunk_type = SCTP_PACKET_DROPPED; 11646 drp->ch.chunk_length = htons(chk->send_size); 11647 spc = SCTP_SB_LIMIT_RCV(stcb->sctp_socket); 11648 if (spc < 0) { 11649 spc = 0; 11650 } 11651 drp->bottle_bw = htonl(spc); 11652 if (asoc->my_rwnd) { 11653 drp->current_onq = htonl(asoc->size_on_reasm_queue + 11654 asoc->size_on_all_streams + 11655 asoc->my_rwnd_control_len + 11656 stcb->sctp_socket->so_rcv.sb_cc); 11657 } else { 11658 /*- 11659 * If my rwnd is 0, possibly from mbuf depletion as well as 11660 * space used, tell the peer there is NO space aka onq == bw 11661 */ 11662 drp->current_onq = htonl(spc); 11663 } 11664 drp->reserved = 0; 11665 datap = drp->data; 11666 m_copydata(m, iphlen, len, (caddr_t)datap); 11667 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11668 asoc->ctrl_queue_cnt++; 11669 } 11670 11671 void 11672 sctp_send_cwr(struct sctp_tcb *stcb, struct sctp_nets *net, uint32_t high_tsn, uint8_t override) 11673 { 11674 struct sctp_association *asoc; 11675 struct sctp_cwr_chunk *cwr; 11676 struct sctp_tmit_chunk *chk; 11677 11678 SCTP_TCB_LOCK_ASSERT(stcb); 11679 if (net == NULL) { 11680 return; 11681 } 11682 asoc = &stcb->asoc; 11683 TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) { 11684 if ((chk->rec.chunk_id.id == SCTP_ECN_CWR) && (net == chk->whoTo)) { 11685 /* 11686 * found a previous CWR queued to same destination 11687 * update it if needed 11688 */ 11689 uint32_t ctsn; 11690 11691 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11692 ctsn = ntohl(cwr->tsn); 11693 if (SCTP_TSN_GT(high_tsn, ctsn)) { 11694 cwr->tsn = htonl(high_tsn); 11695 } 11696 if (override & SCTP_CWR_REDUCE_OVERRIDE) { 11697 /* Make sure override is carried */ 11698 cwr->ch.chunk_flags |= SCTP_CWR_REDUCE_OVERRIDE; 11699 } 11700 return; 11701 } 11702 } 11703 sctp_alloc_a_chunk(stcb, chk); 11704 if (chk == NULL) { 11705 return; 11706 } 11707 chk->copy_by_ref = 0; 11708 chk->rec.chunk_id.id = SCTP_ECN_CWR; 11709 chk->rec.chunk_id.can_take_data = 1; 11710 chk->flags = 0; 11711 chk->asoc = &stcb->asoc; 11712 chk->send_size = sizeof(struct sctp_cwr_chunk); 11713 chk->data = sctp_get_mbuf_for_msg(chk->send_size, 0, M_NOWAIT, 1, MT_HEADER); 11714 if (chk->data == NULL) { 11715 sctp_free_a_chunk(stcb, chk, SCTP_SO_NOT_LOCKED); 11716 return; 11717 } 11718 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11719 SCTP_BUF_LEN(chk->data) = chk->send_size; 11720 chk->sent = SCTP_DATAGRAM_UNSENT; 11721 chk->snd_count = 0; 11722 chk->whoTo = net; 11723 atomic_add_int(&chk->whoTo->ref_count, 1); 11724 cwr = mtod(chk->data, struct sctp_cwr_chunk *); 11725 cwr->ch.chunk_type = SCTP_ECN_CWR; 11726 cwr->ch.chunk_flags = override; 11727 cwr->ch.chunk_length = htons(sizeof(struct sctp_cwr_chunk)); 11728 cwr->tsn = htonl(high_tsn); 11729 TAILQ_INSERT_TAIL(&stcb->asoc.control_send_queue, chk, sctp_next); 11730 asoc->ctrl_queue_cnt++; 11731 } 11732 11733 static int 11734 sctp_add_stream_reset_out(struct sctp_tcb *stcb, struct sctp_tmit_chunk *chk, 11735 uint32_t seq, uint32_t resp_seq, uint32_t last_sent) 11736 { 11737 uint16_t len, old_len, i; 11738 struct sctp_stream_reset_out_request *req_out; 11739 struct sctp_chunkhdr *ch; 11740 int at; 11741 int number_entries = 0; 11742 11743 ch = mtod(chk->data, struct sctp_chunkhdr *); 11744 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11745 /* get to new offset for the param. */ 11746 req_out = (struct sctp_stream_reset_out_request *)((caddr_t)ch + len); 11747 /* now how long will this param be? */ 11748 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11749 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) && 11750 (stcb->asoc.strmout[i].chunks_on_queues == 0) && 11751 TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 11752 number_entries++; 11753 } 11754 } 11755 if (number_entries == 0) { 11756 return (0); 11757 } 11758 if (number_entries == stcb->asoc.streamoutcnt) { 11759 number_entries = 0; 11760 } 11761 if (number_entries > SCTP_MAX_STREAMS_AT_ONCE_RESET) { 11762 number_entries = SCTP_MAX_STREAMS_AT_ONCE_RESET; 11763 } 11764 len = (uint16_t)(sizeof(struct sctp_stream_reset_out_request) + (sizeof(uint16_t) * number_entries)); 11765 req_out->ph.param_type = htons(SCTP_STR_RESET_OUT_REQUEST); 11766 req_out->ph.param_length = htons(len); 11767 req_out->request_seq = htonl(seq); 11768 req_out->response_seq = htonl(resp_seq); 11769 req_out->send_reset_at_tsn = htonl(last_sent); 11770 at = 0; 11771 if (number_entries) { 11772 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11773 if ((stcb->asoc.strmout[i].state == SCTP_STREAM_RESET_PENDING) && 11774 (stcb->asoc.strmout[i].chunks_on_queues == 0) && 11775 TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 11776 req_out->list_of_streams[at] = htons(i); 11777 at++; 11778 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT; 11779 if (at >= number_entries) { 11780 break; 11781 } 11782 } 11783 } 11784 } else { 11785 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 11786 stcb->asoc.strmout[i].state = SCTP_STREAM_RESET_IN_FLIGHT; 11787 } 11788 } 11789 if (SCTP_SIZE32(len) > len) { 11790 /*- 11791 * Need to worry about the pad we may end up adding to the 11792 * end. This is easy since the struct is either aligned to 4 11793 * bytes or 2 bytes off. 11794 */ 11795 req_out->list_of_streams[number_entries] = 0; 11796 } 11797 /* now fix the chunk length */ 11798 ch->chunk_length = htons(len + old_len); 11799 chk->book_size = len + old_len; 11800 chk->book_size_scale = 0; 11801 chk->send_size = SCTP_SIZE32(chk->book_size); 11802 SCTP_BUF_LEN(chk->data) = chk->send_size; 11803 return (1); 11804 } 11805 11806 static void 11807 sctp_add_stream_reset_in(struct sctp_tmit_chunk *chk, 11808 int number_entries, uint16_t *list, 11809 uint32_t seq) 11810 { 11811 uint16_t len, old_len, i; 11812 struct sctp_stream_reset_in_request *req_in; 11813 struct sctp_chunkhdr *ch; 11814 11815 ch = mtod(chk->data, struct sctp_chunkhdr *); 11816 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11817 11818 /* get to new offset for the param. */ 11819 req_in = (struct sctp_stream_reset_in_request *)((caddr_t)ch + len); 11820 /* now how long will this param be? */ 11821 len = (uint16_t)(sizeof(struct sctp_stream_reset_in_request) + (sizeof(uint16_t) * number_entries)); 11822 req_in->ph.param_type = htons(SCTP_STR_RESET_IN_REQUEST); 11823 req_in->ph.param_length = htons(len); 11824 req_in->request_seq = htonl(seq); 11825 if (number_entries) { 11826 for (i = 0; i < number_entries; i++) { 11827 req_in->list_of_streams[i] = htons(list[i]); 11828 } 11829 } 11830 if (SCTP_SIZE32(len) > len) { 11831 /*- 11832 * Need to worry about the pad we may end up adding to the 11833 * end. This is easy since the struct is either aligned to 4 11834 * bytes or 2 bytes off. 11835 */ 11836 req_in->list_of_streams[number_entries] = 0; 11837 } 11838 /* now fix the chunk length */ 11839 ch->chunk_length = htons(len + old_len); 11840 chk->book_size = len + old_len; 11841 chk->book_size_scale = 0; 11842 chk->send_size = SCTP_SIZE32(chk->book_size); 11843 SCTP_BUF_LEN(chk->data) = chk->send_size; 11844 return; 11845 } 11846 11847 static void 11848 sctp_add_stream_reset_tsn(struct sctp_tmit_chunk *chk, 11849 uint32_t seq) 11850 { 11851 uint16_t len, old_len; 11852 struct sctp_stream_reset_tsn_request *req_tsn; 11853 struct sctp_chunkhdr *ch; 11854 11855 ch = mtod(chk->data, struct sctp_chunkhdr *); 11856 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11857 11858 /* get to new offset for the param. */ 11859 req_tsn = (struct sctp_stream_reset_tsn_request *)((caddr_t)ch + len); 11860 /* now how long will this param be? */ 11861 len = sizeof(struct sctp_stream_reset_tsn_request); 11862 req_tsn->ph.param_type = htons(SCTP_STR_RESET_TSN_REQUEST); 11863 req_tsn->ph.param_length = htons(len); 11864 req_tsn->request_seq = htonl(seq); 11865 11866 /* now fix the chunk length */ 11867 ch->chunk_length = htons(len + old_len); 11868 chk->send_size = len + old_len; 11869 chk->book_size = SCTP_SIZE32(chk->send_size); 11870 chk->book_size_scale = 0; 11871 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 11872 return; 11873 } 11874 11875 void 11876 sctp_add_stream_reset_result(struct sctp_tmit_chunk *chk, 11877 uint32_t resp_seq, uint32_t result) 11878 { 11879 uint16_t len, old_len; 11880 struct sctp_stream_reset_response *resp; 11881 struct sctp_chunkhdr *ch; 11882 11883 ch = mtod(chk->data, struct sctp_chunkhdr *); 11884 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11885 11886 /* get to new offset for the param. */ 11887 resp = (struct sctp_stream_reset_response *)((caddr_t)ch + len); 11888 /* now how long will this param be? */ 11889 len = sizeof(struct sctp_stream_reset_response); 11890 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11891 resp->ph.param_length = htons(len); 11892 resp->response_seq = htonl(resp_seq); 11893 resp->result = ntohl(result); 11894 11895 /* now fix the chunk length */ 11896 ch->chunk_length = htons(len + old_len); 11897 chk->book_size = len + old_len; 11898 chk->book_size_scale = 0; 11899 chk->send_size = SCTP_SIZE32(chk->book_size); 11900 SCTP_BUF_LEN(chk->data) = chk->send_size; 11901 return; 11902 } 11903 11904 void 11905 sctp_send_deferred_reset_response(struct sctp_tcb *stcb, 11906 struct sctp_stream_reset_list *ent, 11907 int response) 11908 { 11909 struct sctp_association *asoc; 11910 struct sctp_tmit_chunk *chk; 11911 struct sctp_chunkhdr *ch; 11912 11913 asoc = &stcb->asoc; 11914 11915 /* 11916 * Reset our last reset action to the new one IP -> response 11917 * (PERFORMED probably). This assures that if we fail to send, a 11918 * retran from the peer will get the new response. 11919 */ 11920 asoc->last_reset_action[0] = response; 11921 if (asoc->stream_reset_outstanding) { 11922 return; 11923 } 11924 sctp_alloc_a_chunk(stcb, chk); 11925 if (chk == NULL) { 11926 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11927 return; 11928 } 11929 chk->copy_by_ref = 0; 11930 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 11931 chk->rec.chunk_id.can_take_data = 0; 11932 chk->flags = 0; 11933 chk->asoc = &stcb->asoc; 11934 chk->book_size = sizeof(struct sctp_chunkhdr); 11935 chk->send_size = SCTP_SIZE32(chk->book_size); 11936 chk->book_size_scale = 0; 11937 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 11938 if (chk->data == NULL) { 11939 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 11940 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 11941 return; 11942 } 11943 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 11944 /* setup chunk parameters */ 11945 chk->sent = SCTP_DATAGRAM_UNSENT; 11946 chk->snd_count = 0; 11947 if (stcb->asoc.alternate) { 11948 chk->whoTo = stcb->asoc.alternate; 11949 } else { 11950 chk->whoTo = stcb->asoc.primary_destination; 11951 } 11952 ch = mtod(chk->data, struct sctp_chunkhdr *); 11953 ch->chunk_type = SCTP_STREAM_RESET; 11954 ch->chunk_flags = 0; 11955 ch->chunk_length = htons(chk->book_size); 11956 atomic_add_int(&chk->whoTo->ref_count, 1); 11957 SCTP_BUF_LEN(chk->data) = chk->send_size; 11958 sctp_add_stream_reset_result(chk, ent->seq, response); 11959 /* insert the chunk for sending */ 11960 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 11961 chk, 11962 sctp_next); 11963 asoc->ctrl_queue_cnt++; 11964 } 11965 11966 void 11967 sctp_add_stream_reset_result_tsn(struct sctp_tmit_chunk *chk, 11968 uint32_t resp_seq, uint32_t result, 11969 uint32_t send_una, uint32_t recv_next) 11970 { 11971 uint16_t len, old_len; 11972 struct sctp_stream_reset_response_tsn *resp; 11973 struct sctp_chunkhdr *ch; 11974 11975 ch = mtod(chk->data, struct sctp_chunkhdr *); 11976 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 11977 11978 /* get to new offset for the param. */ 11979 resp = (struct sctp_stream_reset_response_tsn *)((caddr_t)ch + len); 11980 /* now how long will this param be? */ 11981 len = sizeof(struct sctp_stream_reset_response_tsn); 11982 resp->ph.param_type = htons(SCTP_STR_RESET_RESPONSE); 11983 resp->ph.param_length = htons(len); 11984 resp->response_seq = htonl(resp_seq); 11985 resp->result = htonl(result); 11986 resp->senders_next_tsn = htonl(send_una); 11987 resp->receivers_next_tsn = htonl(recv_next); 11988 11989 /* now fix the chunk length */ 11990 ch->chunk_length = htons(len + old_len); 11991 chk->book_size = len + old_len; 11992 chk->send_size = SCTP_SIZE32(chk->book_size); 11993 chk->book_size_scale = 0; 11994 SCTP_BUF_LEN(chk->data) = chk->send_size; 11995 return; 11996 } 11997 11998 static void 11999 sctp_add_an_out_stream(struct sctp_tmit_chunk *chk, 12000 uint32_t seq, 12001 uint16_t adding) 12002 { 12003 uint16_t len, old_len; 12004 struct sctp_chunkhdr *ch; 12005 struct sctp_stream_reset_add_strm *addstr; 12006 12007 ch = mtod(chk->data, struct sctp_chunkhdr *); 12008 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 12009 12010 /* get to new offset for the param. */ 12011 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 12012 /* now how long will this param be? */ 12013 len = sizeof(struct sctp_stream_reset_add_strm); 12014 12015 /* Fill it out. */ 12016 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_OUT_STREAMS); 12017 addstr->ph.param_length = htons(len); 12018 addstr->request_seq = htonl(seq); 12019 addstr->number_of_streams = htons(adding); 12020 addstr->reserved = 0; 12021 12022 /* now fix the chunk length */ 12023 ch->chunk_length = htons(len + old_len); 12024 chk->send_size = len + old_len; 12025 chk->book_size = SCTP_SIZE32(chk->send_size); 12026 chk->book_size_scale = 0; 12027 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 12028 return; 12029 } 12030 12031 static void 12032 sctp_add_an_in_stream(struct sctp_tmit_chunk *chk, 12033 uint32_t seq, 12034 uint16_t adding) 12035 { 12036 uint16_t len, old_len; 12037 struct sctp_chunkhdr *ch; 12038 struct sctp_stream_reset_add_strm *addstr; 12039 12040 ch = mtod(chk->data, struct sctp_chunkhdr *); 12041 old_len = len = SCTP_SIZE32(ntohs(ch->chunk_length)); 12042 12043 /* get to new offset for the param. */ 12044 addstr = (struct sctp_stream_reset_add_strm *)((caddr_t)ch + len); 12045 /* now how long will this param be? */ 12046 len = sizeof(struct sctp_stream_reset_add_strm); 12047 /* Fill it out. */ 12048 addstr->ph.param_type = htons(SCTP_STR_RESET_ADD_IN_STREAMS); 12049 addstr->ph.param_length = htons(len); 12050 addstr->request_seq = htonl(seq); 12051 addstr->number_of_streams = htons(adding); 12052 addstr->reserved = 0; 12053 12054 /* now fix the chunk length */ 12055 ch->chunk_length = htons(len + old_len); 12056 chk->send_size = len + old_len; 12057 chk->book_size = SCTP_SIZE32(chk->send_size); 12058 chk->book_size_scale = 0; 12059 SCTP_BUF_LEN(chk->data) = SCTP_SIZE32(chk->send_size); 12060 return; 12061 } 12062 12063 int 12064 sctp_send_stream_reset_out_if_possible(struct sctp_tcb *stcb, int so_locked) 12065 { 12066 struct sctp_association *asoc; 12067 struct sctp_tmit_chunk *chk; 12068 struct sctp_chunkhdr *ch; 12069 uint32_t seq; 12070 12071 asoc = &stcb->asoc; 12072 asoc->trigger_reset = 0; 12073 if (asoc->stream_reset_outstanding) { 12074 return (EALREADY); 12075 } 12076 sctp_alloc_a_chunk(stcb, chk); 12077 if (chk == NULL) { 12078 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12079 return (ENOMEM); 12080 } 12081 chk->copy_by_ref = 0; 12082 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 12083 chk->rec.chunk_id.can_take_data = 0; 12084 chk->flags = 0; 12085 chk->asoc = &stcb->asoc; 12086 chk->book_size = sizeof(struct sctp_chunkhdr); 12087 chk->send_size = SCTP_SIZE32(chk->book_size); 12088 chk->book_size_scale = 0; 12089 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 12090 if (chk->data == NULL) { 12091 sctp_free_a_chunk(stcb, chk, so_locked); 12092 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12093 return (ENOMEM); 12094 } 12095 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 12096 12097 /* setup chunk parameters */ 12098 chk->sent = SCTP_DATAGRAM_UNSENT; 12099 chk->snd_count = 0; 12100 if (stcb->asoc.alternate) { 12101 chk->whoTo = stcb->asoc.alternate; 12102 } else { 12103 chk->whoTo = stcb->asoc.primary_destination; 12104 } 12105 ch = mtod(chk->data, struct sctp_chunkhdr *); 12106 ch->chunk_type = SCTP_STREAM_RESET; 12107 ch->chunk_flags = 0; 12108 ch->chunk_length = htons(chk->book_size); 12109 atomic_add_int(&chk->whoTo->ref_count, 1); 12110 SCTP_BUF_LEN(chk->data) = chk->send_size; 12111 seq = stcb->asoc.str_reset_seq_out; 12112 if (sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1))) { 12113 seq++; 12114 asoc->stream_reset_outstanding++; 12115 } else { 12116 m_freem(chk->data); 12117 chk->data = NULL; 12118 sctp_free_a_chunk(stcb, chk, so_locked); 12119 return (ENOENT); 12120 } 12121 asoc->str_reset = chk; 12122 /* insert the chunk for sending */ 12123 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 12124 chk, 12125 sctp_next); 12126 asoc->ctrl_queue_cnt++; 12127 12128 if (stcb->asoc.send_sack) { 12129 sctp_send_sack(stcb, so_locked); 12130 } 12131 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 12132 return (0); 12133 } 12134 12135 int 12136 sctp_send_str_reset_req(struct sctp_tcb *stcb, 12137 uint16_t number_entries, uint16_t *list, 12138 uint8_t send_in_req, 12139 uint8_t send_tsn_req, 12140 uint8_t add_stream, 12141 uint16_t adding_o, 12142 uint16_t adding_i, uint8_t peer_asked) 12143 { 12144 struct sctp_association *asoc; 12145 struct sctp_tmit_chunk *chk; 12146 struct sctp_chunkhdr *ch; 12147 int can_send_out_req = 0; 12148 uint32_t seq; 12149 12150 asoc = &stcb->asoc; 12151 if (asoc->stream_reset_outstanding) { 12152 /*- 12153 * Already one pending, must get ACK back to clear the flag. 12154 */ 12155 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EBUSY); 12156 return (EBUSY); 12157 } 12158 if ((send_in_req == 0) && (send_tsn_req == 0) && 12159 (add_stream == 0)) { 12160 /* nothing to do */ 12161 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12162 return (EINVAL); 12163 } 12164 if (send_tsn_req && send_in_req) { 12165 /* error, can't do that */ 12166 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12167 return (EINVAL); 12168 } else if (send_in_req) { 12169 can_send_out_req = 1; 12170 } 12171 if (number_entries > (MCLBYTES - 12172 SCTP_MIN_OVERHEAD - 12173 sizeof(struct sctp_chunkhdr) - 12174 sizeof(struct sctp_stream_reset_out_request)) / 12175 sizeof(uint16_t)) { 12176 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12177 return (ENOMEM); 12178 } 12179 sctp_alloc_a_chunk(stcb, chk); 12180 if (chk == NULL) { 12181 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12182 return (ENOMEM); 12183 } 12184 chk->copy_by_ref = 0; 12185 chk->rec.chunk_id.id = SCTP_STREAM_RESET; 12186 chk->rec.chunk_id.can_take_data = 0; 12187 chk->flags = 0; 12188 chk->asoc = &stcb->asoc; 12189 chk->book_size = sizeof(struct sctp_chunkhdr); 12190 chk->send_size = SCTP_SIZE32(chk->book_size); 12191 chk->book_size_scale = 0; 12192 chk->data = sctp_get_mbuf_for_msg(MCLBYTES, 0, M_NOWAIT, 1, MT_DATA); 12193 if (chk->data == NULL) { 12194 sctp_free_a_chunk(stcb, chk, SCTP_SO_LOCKED); 12195 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12196 return (ENOMEM); 12197 } 12198 SCTP_BUF_RESV_UF(chk->data, SCTP_MIN_OVERHEAD); 12199 12200 /* setup chunk parameters */ 12201 chk->sent = SCTP_DATAGRAM_UNSENT; 12202 chk->snd_count = 0; 12203 if (stcb->asoc.alternate) { 12204 chk->whoTo = stcb->asoc.alternate; 12205 } else { 12206 chk->whoTo = stcb->asoc.primary_destination; 12207 } 12208 atomic_add_int(&chk->whoTo->ref_count, 1); 12209 ch = mtod(chk->data, struct sctp_chunkhdr *); 12210 ch->chunk_type = SCTP_STREAM_RESET; 12211 ch->chunk_flags = 0; 12212 ch->chunk_length = htons(chk->book_size); 12213 SCTP_BUF_LEN(chk->data) = chk->send_size; 12214 12215 seq = stcb->asoc.str_reset_seq_out; 12216 if (can_send_out_req) { 12217 int ret; 12218 12219 ret = sctp_add_stream_reset_out(stcb, chk, seq, (stcb->asoc.str_reset_seq_in - 1), (stcb->asoc.sending_seq - 1)); 12220 if (ret) { 12221 seq++; 12222 asoc->stream_reset_outstanding++; 12223 } 12224 } 12225 if ((add_stream & 1) && 12226 ((stcb->asoc.strm_realoutsize - stcb->asoc.streamoutcnt) < adding_o)) { 12227 /* Need to allocate more */ 12228 struct sctp_stream_out *oldstream; 12229 struct sctp_stream_queue_pending *sp, *nsp; 12230 int i; 12231 #if defined(SCTP_DETAILED_STR_STATS) 12232 int j; 12233 #endif 12234 12235 oldstream = stcb->asoc.strmout; 12236 /* get some more */ 12237 SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *, 12238 (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out), 12239 SCTP_M_STRMO); 12240 if (stcb->asoc.strmout == NULL) { 12241 uint8_t x; 12242 12243 stcb->asoc.strmout = oldstream; 12244 /* Turn off the bit */ 12245 x = add_stream & 0xfe; 12246 add_stream = x; 12247 goto skip_stuff; 12248 } 12249 /* 12250 * Ok now we proceed with copying the old out stuff and 12251 * initializing the new stuff. 12252 */ 12253 SCTP_TCB_SEND_LOCK(stcb); 12254 stcb->asoc.ss_functions.sctp_ss_clear(stcb, &stcb->asoc, 0, 1); 12255 for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 12256 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 12257 stcb->asoc.strmout[i].chunks_on_queues = oldstream[i].chunks_on_queues; 12258 stcb->asoc.strmout[i].next_mid_ordered = oldstream[i].next_mid_ordered; 12259 stcb->asoc.strmout[i].next_mid_unordered = oldstream[i].next_mid_unordered; 12260 stcb->asoc.strmout[i].last_msg_incomplete = oldstream[i].last_msg_incomplete; 12261 stcb->asoc.strmout[i].sid = i; 12262 stcb->asoc.strmout[i].state = oldstream[i].state; 12263 /* FIX ME FIX ME */ 12264 /* 12265 * This should be a SS_COPY operation FIX ME STREAM 12266 * SCHEDULER EXPERT 12267 */ 12268 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], &oldstream[i]); 12269 /* now anything on those queues? */ 12270 TAILQ_FOREACH_SAFE(sp, &oldstream[i].outqueue, next, nsp) { 12271 TAILQ_REMOVE(&oldstream[i].outqueue, sp, next); 12272 TAILQ_INSERT_TAIL(&stcb->asoc.strmout[i].outqueue, sp, next); 12273 } 12274 12275 } 12276 /* now the new streams */ 12277 stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 1); 12278 for (i = stcb->asoc.streamoutcnt; i < (stcb->asoc.streamoutcnt + adding_o); i++) { 12279 TAILQ_INIT(&stcb->asoc.strmout[i].outqueue); 12280 stcb->asoc.strmout[i].chunks_on_queues = 0; 12281 #if defined(SCTP_DETAILED_STR_STATS) 12282 for (j = 0; j < SCTP_PR_SCTP_MAX + 1; j++) { 12283 stcb->asoc.strmout[i].abandoned_sent[j] = 0; 12284 stcb->asoc.strmout[i].abandoned_unsent[j] = 0; 12285 } 12286 #else 12287 stcb->asoc.strmout[i].abandoned_sent[0] = 0; 12288 stcb->asoc.strmout[i].abandoned_unsent[0] = 0; 12289 #endif 12290 stcb->asoc.strmout[i].next_mid_ordered = 0; 12291 stcb->asoc.strmout[i].next_mid_unordered = 0; 12292 stcb->asoc.strmout[i].sid = i; 12293 stcb->asoc.strmout[i].last_msg_incomplete = 0; 12294 stcb->asoc.ss_functions.sctp_ss_init_stream(stcb, &stcb->asoc.strmout[i], NULL); 12295 stcb->asoc.strmout[i].state = SCTP_STREAM_CLOSED; 12296 } 12297 stcb->asoc.strm_realoutsize = stcb->asoc.streamoutcnt + adding_o; 12298 SCTP_FREE(oldstream, SCTP_M_STRMO); 12299 SCTP_TCB_SEND_UNLOCK(stcb); 12300 } 12301 skip_stuff: 12302 if ((add_stream & 1) && (adding_o > 0)) { 12303 asoc->strm_pending_add_size = adding_o; 12304 asoc->peer_req_out = peer_asked; 12305 sctp_add_an_out_stream(chk, seq, adding_o); 12306 seq++; 12307 asoc->stream_reset_outstanding++; 12308 } 12309 if ((add_stream & 2) && (adding_i > 0)) { 12310 sctp_add_an_in_stream(chk, seq, adding_i); 12311 seq++; 12312 asoc->stream_reset_outstanding++; 12313 } 12314 if (send_in_req) { 12315 sctp_add_stream_reset_in(chk, number_entries, list, seq); 12316 seq++; 12317 asoc->stream_reset_outstanding++; 12318 } 12319 if (send_tsn_req) { 12320 sctp_add_stream_reset_tsn(chk, seq); 12321 asoc->stream_reset_outstanding++; 12322 } 12323 asoc->str_reset = chk; 12324 /* insert the chunk for sending */ 12325 TAILQ_INSERT_TAIL(&asoc->control_send_queue, 12326 chk, 12327 sctp_next); 12328 asoc->ctrl_queue_cnt++; 12329 if (stcb->asoc.send_sack) { 12330 sctp_send_sack(stcb, SCTP_SO_LOCKED); 12331 } 12332 sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, stcb->sctp_ep, stcb, chk->whoTo); 12333 return (0); 12334 } 12335 12336 void 12337 sctp_send_abort(struct mbuf *m, int iphlen, struct sockaddr *src, struct sockaddr *dst, 12338 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 12339 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 12340 uint32_t vrf_id, uint16_t port) 12341 { 12342 /* Don't respond to an ABORT with an ABORT. */ 12343 if (sctp_is_there_an_abort_here(m, iphlen, &vtag)) { 12344 if (cause) 12345 sctp_m_freem(cause); 12346 return; 12347 } 12348 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_ABORT_ASSOCIATION, cause, 12349 mflowtype, mflowid, fibnum, 12350 vrf_id, port); 12351 return; 12352 } 12353 12354 void 12355 sctp_send_operr_to(struct sockaddr *src, struct sockaddr *dst, 12356 struct sctphdr *sh, uint32_t vtag, struct mbuf *cause, 12357 uint8_t mflowtype, uint32_t mflowid, uint16_t fibnum, 12358 uint32_t vrf_id, uint16_t port) 12359 { 12360 sctp_send_resp_msg(src, dst, sh, vtag, SCTP_OPERATION_ERROR, cause, 12361 mflowtype, mflowid, fibnum, 12362 vrf_id, port); 12363 return; 12364 } 12365 12366 static struct mbuf * 12367 sctp_copy_resume(struct uio *uio, 12368 int max_send_len, 12369 int user_marks_eor, 12370 int *error, 12371 uint32_t *sndout, 12372 struct mbuf **new_tail) 12373 { 12374 struct mbuf *m; 12375 12376 m = m_uiotombuf(uio, M_WAITOK, max_send_len, 0, 12377 (M_PKTHDR | (user_marks_eor ? M_EOR : 0))); 12378 if (m == NULL) { 12379 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS); 12380 *error = ENOBUFS; 12381 } else { 12382 *sndout = m_length(m, NULL); 12383 *new_tail = m_last(m); 12384 } 12385 return (m); 12386 } 12387 12388 static int 12389 sctp_copy_one(struct sctp_stream_queue_pending *sp, 12390 struct uio *uio, 12391 int resv_upfront) 12392 { 12393 sp->data = m_uiotombuf(uio, M_WAITOK, sp->length, 12394 resv_upfront, 0); 12395 if (sp->data == NULL) { 12396 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOBUFS); 12397 return (ENOBUFS); 12398 } 12399 12400 sp->tail_mbuf = m_last(sp->data); 12401 return (0); 12402 } 12403 12404 12405 12406 static struct sctp_stream_queue_pending * 12407 sctp_copy_it_in(struct sctp_tcb *stcb, 12408 struct sctp_association *asoc, 12409 struct sctp_sndrcvinfo *srcv, 12410 struct uio *uio, 12411 struct sctp_nets *net, 12412 ssize_t max_send_len, 12413 int user_marks_eor, 12414 int *error) 12415 { 12416 12417 /*- 12418 * This routine must be very careful in its work. Protocol 12419 * processing is up and running so care must be taken to spl...() 12420 * when you need to do something that may effect the stcb/asoc. The 12421 * sb is locked however. When data is copied the protocol processing 12422 * should be enabled since this is a slower operation... 12423 */ 12424 struct sctp_stream_queue_pending *sp = NULL; 12425 int resv_in_first; 12426 12427 *error = 0; 12428 /* Now can we send this? */ 12429 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) || 12430 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 12431 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 12432 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 12433 /* got data while shutting down */ 12434 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12435 *error = ECONNRESET; 12436 goto out_now; 12437 } 12438 sctp_alloc_a_strmoq(stcb, sp); 12439 if (sp == NULL) { 12440 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 12441 *error = ENOMEM; 12442 goto out_now; 12443 } 12444 sp->act_flags = 0; 12445 sp->sender_all_done = 0; 12446 sp->sinfo_flags = srcv->sinfo_flags; 12447 sp->timetolive = srcv->sinfo_timetolive; 12448 sp->ppid = srcv->sinfo_ppid; 12449 sp->context = srcv->sinfo_context; 12450 sp->fsn = 0; 12451 (void)SCTP_GETTIME_TIMEVAL(&sp->ts); 12452 12453 sp->sid = srcv->sinfo_stream; 12454 sp->length = (uint32_t)min(uio->uio_resid, max_send_len); 12455 if ((sp->length == (uint32_t)uio->uio_resid) && 12456 ((user_marks_eor == 0) || 12457 (srcv->sinfo_flags & SCTP_EOF) || 12458 (user_marks_eor && (srcv->sinfo_flags & SCTP_EOR)))) { 12459 sp->msg_is_complete = 1; 12460 } else { 12461 sp->msg_is_complete = 0; 12462 } 12463 sp->sender_all_done = 0; 12464 sp->some_taken = 0; 12465 sp->put_last_out = 0; 12466 resv_in_first = SCTP_DATA_CHUNK_OVERHEAD(stcb); 12467 sp->data = sp->tail_mbuf = NULL; 12468 if (sp->length == 0) { 12469 goto skip_copy; 12470 } 12471 if (srcv->sinfo_keynumber_valid) { 12472 sp->auth_keyid = srcv->sinfo_keynumber; 12473 } else { 12474 sp->auth_keyid = stcb->asoc.authinfo.active_keyid; 12475 } 12476 if (sctp_auth_is_required_chunk(SCTP_DATA, stcb->asoc.peer_auth_chunks)) { 12477 sctp_auth_key_acquire(stcb, sp->auth_keyid); 12478 sp->holds_key_ref = 1; 12479 } 12480 *error = sctp_copy_one(sp, uio, resv_in_first); 12481 skip_copy: 12482 if (*error) { 12483 sctp_free_a_strmoq(stcb, sp, SCTP_SO_LOCKED); 12484 sp = NULL; 12485 } else { 12486 if (sp->sinfo_flags & SCTP_ADDR_OVER) { 12487 sp->net = net; 12488 atomic_add_int(&sp->net->ref_count, 1); 12489 } else { 12490 sp->net = NULL; 12491 } 12492 sctp_set_prsctp_policy(sp); 12493 } 12494 out_now: 12495 return (sp); 12496 } 12497 12498 12499 int 12500 sctp_sosend(struct socket *so, 12501 struct sockaddr *addr, 12502 struct uio *uio, 12503 struct mbuf *top, 12504 struct mbuf *control, 12505 int flags, 12506 struct thread *p 12507 ) 12508 { 12509 int error, use_sndinfo = 0; 12510 struct sctp_sndrcvinfo sndrcvninfo; 12511 struct sockaddr *addr_to_use; 12512 #if defined(INET) && defined(INET6) 12513 struct sockaddr_in sin; 12514 #endif 12515 12516 if (control) { 12517 /* process cmsg snd/rcv info (maybe a assoc-id) */ 12518 if (sctp_find_cmsg(SCTP_SNDRCV, (void *)&sndrcvninfo, control, 12519 sizeof(sndrcvninfo))) { 12520 /* got one */ 12521 use_sndinfo = 1; 12522 } 12523 } 12524 addr_to_use = addr; 12525 #if defined(INET) && defined(INET6) 12526 if ((addr) && (addr->sa_family == AF_INET6)) { 12527 struct sockaddr_in6 *sin6; 12528 12529 sin6 = (struct sockaddr_in6 *)addr; 12530 if (IN6_IS_ADDR_V4MAPPED(&sin6->sin6_addr)) { 12531 in6_sin6_2_sin(&sin, sin6); 12532 addr_to_use = (struct sockaddr *)&sin; 12533 } 12534 } 12535 #endif 12536 error = sctp_lower_sosend(so, addr_to_use, uio, top, 12537 control, 12538 flags, 12539 use_sndinfo ? &sndrcvninfo : NULL 12540 ,p 12541 ); 12542 return (error); 12543 } 12544 12545 12546 int 12547 sctp_lower_sosend(struct socket *so, 12548 struct sockaddr *addr, 12549 struct uio *uio, 12550 struct mbuf *i_pak, 12551 struct mbuf *control, 12552 int flags, 12553 struct sctp_sndrcvinfo *srcv 12554 , 12555 struct thread *p 12556 ) 12557 { 12558 struct epoch_tracker et; 12559 ssize_t sndlen = 0, max_len, local_add_more; 12560 int error, len; 12561 struct mbuf *top = NULL; 12562 int queue_only = 0, queue_only_for_init = 0; 12563 int free_cnt_applied = 0; 12564 int un_sent; 12565 int now_filled = 0; 12566 unsigned int inqueue_bytes = 0; 12567 struct sctp_block_entry be; 12568 struct sctp_inpcb *inp; 12569 struct sctp_tcb *stcb = NULL; 12570 struct timeval now; 12571 struct sctp_nets *net; 12572 struct sctp_association *asoc; 12573 struct sctp_inpcb *t_inp; 12574 int user_marks_eor; 12575 int create_lock_applied = 0; 12576 int nagle_applies = 0; 12577 int some_on_control = 0; 12578 int got_all_of_the_send = 0; 12579 int hold_tcblock = 0; 12580 int non_blocking = 0; 12581 ssize_t local_soresv = 0; 12582 uint16_t port; 12583 uint16_t sinfo_flags; 12584 sctp_assoc_t sinfo_assoc_id; 12585 12586 error = 0; 12587 net = NULL; 12588 stcb = NULL; 12589 asoc = NULL; 12590 12591 t_inp = inp = (struct sctp_inpcb *)so->so_pcb; 12592 if (inp == NULL) { 12593 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12594 error = EINVAL; 12595 if (i_pak) { 12596 SCTP_RELEASE_PKT(i_pak); 12597 } 12598 return (error); 12599 } 12600 if ((uio == NULL) && (i_pak == NULL)) { 12601 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12602 return (EINVAL); 12603 } 12604 user_marks_eor = sctp_is_feature_on(inp, SCTP_PCB_FLAGS_EXPLICIT_EOR); 12605 atomic_add_int(&inp->total_sends, 1); 12606 if (uio) { 12607 if (uio->uio_resid < 0) { 12608 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12609 return (EINVAL); 12610 } 12611 sndlen = uio->uio_resid; 12612 } else { 12613 top = SCTP_HEADER_TO_CHAIN(i_pak); 12614 sndlen = SCTP_HEADER_LEN(i_pak); 12615 } 12616 SCTPDBG(SCTP_DEBUG_OUTPUT1, "Send called addr:%p send length %zu\n", 12617 (void *)addr, 12618 sndlen); 12619 if ((inp->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) && 12620 SCTP_IS_LISTENING(inp)) { 12621 /* The listener can NOT send */ 12622 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12623 error = ENOTCONN; 12624 goto out_unlocked; 12625 } 12626 /** 12627 * Pre-screen address, if one is given the sin-len 12628 * must be set correctly! 12629 */ 12630 if (addr) { 12631 union sctp_sockstore *raddr = (union sctp_sockstore *)addr; 12632 12633 switch (raddr->sa.sa_family) { 12634 #ifdef INET 12635 case AF_INET: 12636 if (raddr->sin.sin_len != sizeof(struct sockaddr_in)) { 12637 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12638 error = EINVAL; 12639 goto out_unlocked; 12640 } 12641 port = raddr->sin.sin_port; 12642 break; 12643 #endif 12644 #ifdef INET6 12645 case AF_INET6: 12646 if (raddr->sin6.sin6_len != sizeof(struct sockaddr_in6)) { 12647 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12648 error = EINVAL; 12649 goto out_unlocked; 12650 } 12651 port = raddr->sin6.sin6_port; 12652 break; 12653 #endif 12654 default: 12655 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EAFNOSUPPORT); 12656 error = EAFNOSUPPORT; 12657 goto out_unlocked; 12658 } 12659 } else 12660 port = 0; 12661 12662 if (srcv) { 12663 sinfo_flags = srcv->sinfo_flags; 12664 sinfo_assoc_id = srcv->sinfo_assoc_id; 12665 if (INVALID_SINFO_FLAG(sinfo_flags) || 12666 PR_SCTP_INVALID_POLICY(sinfo_flags)) { 12667 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12668 error = EINVAL; 12669 goto out_unlocked; 12670 } 12671 if (srcv->sinfo_flags) 12672 SCTP_STAT_INCR(sctps_sends_with_flags); 12673 } else { 12674 sinfo_flags = inp->def_send.sinfo_flags; 12675 sinfo_assoc_id = inp->def_send.sinfo_assoc_id; 12676 } 12677 if (flags & MSG_EOR) { 12678 sinfo_flags |= SCTP_EOR; 12679 } 12680 if (flags & MSG_EOF) { 12681 sinfo_flags |= SCTP_EOF; 12682 } 12683 if (sinfo_flags & SCTP_SENDALL) { 12684 /* its a sendall */ 12685 error = sctp_sendall(inp, uio, top, srcv); 12686 top = NULL; 12687 goto out_unlocked; 12688 } 12689 if ((sinfo_flags & SCTP_ADDR_OVER) && (addr == NULL)) { 12690 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12691 error = EINVAL; 12692 goto out_unlocked; 12693 } 12694 /* now we must find the assoc */ 12695 if ((inp->sctp_flags & SCTP_PCB_FLAGS_CONNECTED) || 12696 (inp->sctp_flags & SCTP_PCB_FLAGS_IN_TCPPOOL)) { 12697 SCTP_INP_RLOCK(inp); 12698 stcb = LIST_FIRST(&inp->sctp_asoc_list); 12699 if (stcb) { 12700 SCTP_TCB_LOCK(stcb); 12701 hold_tcblock = 1; 12702 } 12703 SCTP_INP_RUNLOCK(inp); 12704 } else if (sinfo_assoc_id) { 12705 stcb = sctp_findassociation_ep_asocid(inp, sinfo_assoc_id, 1); 12706 if (stcb != NULL) { 12707 hold_tcblock = 1; 12708 } 12709 } else if (addr) { 12710 /*- 12711 * Since we did not use findep we must 12712 * increment it, and if we don't find a tcb 12713 * decrement it. 12714 */ 12715 SCTP_INP_WLOCK(inp); 12716 SCTP_INP_INCR_REF(inp); 12717 SCTP_INP_WUNLOCK(inp); 12718 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12719 if (stcb == NULL) { 12720 SCTP_INP_WLOCK(inp); 12721 SCTP_INP_DECR_REF(inp); 12722 SCTP_INP_WUNLOCK(inp); 12723 } else { 12724 hold_tcblock = 1; 12725 } 12726 } 12727 if ((stcb == NULL) && (addr)) { 12728 /* Possible implicit send? */ 12729 SCTP_ASOC_CREATE_LOCK(inp); 12730 create_lock_applied = 1; 12731 if ((inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_GONE) || 12732 (inp->sctp_flags & SCTP_PCB_FLAGS_SOCKET_ALLGONE)) { 12733 /* Should I really unlock ? */ 12734 SCTP_LTRACE_ERR_RET(NULL, NULL, NULL, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12735 error = EINVAL; 12736 goto out_unlocked; 12737 12738 } 12739 if (((inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) == 0) && 12740 (addr->sa_family == AF_INET6)) { 12741 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12742 error = EINVAL; 12743 goto out_unlocked; 12744 } 12745 SCTP_INP_WLOCK(inp); 12746 SCTP_INP_INCR_REF(inp); 12747 SCTP_INP_WUNLOCK(inp); 12748 /* With the lock applied look again */ 12749 stcb = sctp_findassociation_ep_addr(&t_inp, addr, &net, NULL, NULL); 12750 #if defined(INET) || defined(INET6) 12751 if ((stcb == NULL) && (control != NULL) && (port > 0)) { 12752 stcb = sctp_findassociation_cmsgs(&t_inp, port, control, &net, &error); 12753 } 12754 #endif 12755 if (stcb == NULL) { 12756 SCTP_INP_WLOCK(inp); 12757 SCTP_INP_DECR_REF(inp); 12758 SCTP_INP_WUNLOCK(inp); 12759 } else { 12760 hold_tcblock = 1; 12761 } 12762 if (error) { 12763 goto out_unlocked; 12764 } 12765 if (t_inp != inp) { 12766 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOTCONN); 12767 error = ENOTCONN; 12768 goto out_unlocked; 12769 } 12770 } 12771 if (stcb == NULL) { 12772 if (addr == NULL) { 12773 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12774 error = ENOENT; 12775 goto out_unlocked; 12776 } else { 12777 /* We must go ahead and start the INIT process */ 12778 uint32_t vrf_id; 12779 12780 if ((sinfo_flags & SCTP_ABORT) || 12781 ((sinfo_flags & SCTP_EOF) && (sndlen == 0))) { 12782 /*- 12783 * User asks to abort a non-existant assoc, 12784 * or EOF a non-existant assoc with no data 12785 */ 12786 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOENT); 12787 error = ENOENT; 12788 goto out_unlocked; 12789 } 12790 /* get an asoc/stcb struct */ 12791 vrf_id = inp->def_vrf_id; 12792 #ifdef INVARIANTS 12793 if (create_lock_applied == 0) { 12794 panic("Error, should hold create lock and I don't?"); 12795 } 12796 #endif 12797 stcb = sctp_aloc_assoc(inp, addr, &error, 0, vrf_id, 12798 inp->sctp_ep.pre_open_stream_count, 12799 inp->sctp_ep.port, 12800 p, 12801 SCTP_INITIALIZE_AUTH_PARAMS); 12802 if (stcb == NULL) { 12803 /* Error is setup for us in the call */ 12804 goto out_unlocked; 12805 } 12806 if (stcb->sctp_ep->sctp_flags & SCTP_PCB_FLAGS_TCPTYPE) { 12807 stcb->sctp_ep->sctp_flags |= SCTP_PCB_FLAGS_CONNECTED; 12808 /* 12809 * Set the connected flag so we can queue 12810 * data 12811 */ 12812 soisconnecting(so); 12813 } 12814 hold_tcblock = 1; 12815 if (create_lock_applied) { 12816 SCTP_ASOC_CREATE_UNLOCK(inp); 12817 create_lock_applied = 0; 12818 } else { 12819 SCTP_PRINTF("Huh-3? create lock should have been on??\n"); 12820 } 12821 /* 12822 * Turn on queue only flag to prevent data from 12823 * being sent 12824 */ 12825 queue_only = 1; 12826 asoc = &stcb->asoc; 12827 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 12828 (void)SCTP_GETTIME_TIMEVAL(&asoc->time_entered); 12829 12830 if (control) { 12831 if (sctp_process_cmsgs_for_init(stcb, control, &error)) { 12832 sctp_free_assoc(inp, stcb, SCTP_PCBFREE_FORCE, 12833 SCTP_FROM_SCTP_OUTPUT + SCTP_LOC_6); 12834 hold_tcblock = 0; 12835 stcb = NULL; 12836 goto out_unlocked; 12837 } 12838 } 12839 /* out with the INIT */ 12840 queue_only_for_init = 1; 12841 /*- 12842 * we may want to dig in after this call and adjust the MTU 12843 * value. It defaulted to 1500 (constant) but the ro 12844 * structure may now have an update and thus we may need to 12845 * change it BEFORE we append the message. 12846 */ 12847 } 12848 } else 12849 asoc = &stcb->asoc; 12850 if (srcv == NULL) { 12851 srcv = (struct sctp_sndrcvinfo *)&asoc->def_send; 12852 sinfo_flags = srcv->sinfo_flags; 12853 if (flags & MSG_EOR) { 12854 sinfo_flags |= SCTP_EOR; 12855 } 12856 if (flags & MSG_EOF) { 12857 sinfo_flags |= SCTP_EOF; 12858 } 12859 } 12860 if (sinfo_flags & SCTP_ADDR_OVER) { 12861 if (addr) 12862 net = sctp_findnet(stcb, addr); 12863 else 12864 net = NULL; 12865 if ((net == NULL) || 12866 ((port != 0) && (port != stcb->rport))) { 12867 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12868 error = EINVAL; 12869 goto out_unlocked; 12870 } 12871 } else { 12872 if (stcb->asoc.alternate) { 12873 net = stcb->asoc.alternate; 12874 } else { 12875 net = stcb->asoc.primary_destination; 12876 } 12877 } 12878 atomic_add_int(&stcb->total_sends, 1); 12879 /* Keep the stcb from being freed under our feet */ 12880 atomic_add_int(&asoc->refcnt, 1); 12881 free_cnt_applied = 1; 12882 12883 if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_NO_FRAGMENT)) { 12884 if (sndlen > (ssize_t)asoc->smallest_mtu) { 12885 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 12886 error = EMSGSIZE; 12887 goto out_unlocked; 12888 } 12889 } 12890 if (SCTP_SO_IS_NBIO(so) 12891 || (flags & (MSG_NBIO | MSG_DONTWAIT)) != 0 12892 ) { 12893 non_blocking = 1; 12894 } 12895 /* would we block? */ 12896 if (non_blocking) { 12897 ssize_t amount; 12898 12899 if (hold_tcblock == 0) { 12900 SCTP_TCB_LOCK(stcb); 12901 hold_tcblock = 1; 12902 } 12903 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 12904 if (user_marks_eor == 0) { 12905 amount = sndlen; 12906 } else { 12907 amount = 1; 12908 } 12909 if ((SCTP_SB_LIMIT_SND(so) < (amount + inqueue_bytes + stcb->asoc.sb_send_resv)) || 12910 (stcb->asoc.chunks_on_out_queue >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 12911 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EWOULDBLOCK); 12912 if (sndlen > (ssize_t)SCTP_SB_LIMIT_SND(so)) 12913 error = EMSGSIZE; 12914 else 12915 error = EWOULDBLOCK; 12916 goto out_unlocked; 12917 } 12918 stcb->asoc.sb_send_resv += (uint32_t)sndlen; 12919 SCTP_TCB_UNLOCK(stcb); 12920 hold_tcblock = 0; 12921 } else { 12922 atomic_add_int(&stcb->asoc.sb_send_resv, sndlen); 12923 } 12924 local_soresv = sndlen; 12925 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 12926 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12927 error = ECONNRESET; 12928 goto out_unlocked; 12929 } 12930 if (create_lock_applied) { 12931 SCTP_ASOC_CREATE_UNLOCK(inp); 12932 create_lock_applied = 0; 12933 } 12934 /* Is the stream no. valid? */ 12935 if (srcv->sinfo_stream >= asoc->streamoutcnt) { 12936 /* Invalid stream number */ 12937 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12938 error = EINVAL; 12939 goto out_unlocked; 12940 } 12941 if ((asoc->strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPEN) && 12942 (asoc->strmout[srcv->sinfo_stream].state != SCTP_STREAM_OPENING)) { 12943 /* 12944 * Can't queue any data while stream reset is underway. 12945 */ 12946 if (asoc->strmout[srcv->sinfo_stream].state > SCTP_STREAM_OPEN) { 12947 error = EAGAIN; 12948 } else { 12949 error = EINVAL; 12950 } 12951 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, error); 12952 goto out_unlocked; 12953 } 12954 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) || 12955 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED)) { 12956 queue_only = 1; 12957 } 12958 /* we are now done with all control */ 12959 if (control) { 12960 sctp_m_freem(control); 12961 control = NULL; 12962 } 12963 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_SENT) || 12964 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_RECEIVED) || 12965 (SCTP_GET_STATE(stcb) == SCTP_STATE_SHUTDOWN_ACK_SENT) || 12966 (asoc->state & SCTP_STATE_SHUTDOWN_PENDING)) { 12967 if (sinfo_flags & SCTP_ABORT) { 12968 ; 12969 } else { 12970 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 12971 error = ECONNRESET; 12972 goto out_unlocked; 12973 } 12974 } 12975 /* Ok, we will attempt a msgsnd :> */ 12976 if (p) { 12977 p->td_ru.ru_msgsnd++; 12978 } 12979 /* Are we aborting? */ 12980 if (sinfo_flags & SCTP_ABORT) { 12981 struct mbuf *mm; 12982 ssize_t tot_demand, tot_out = 0, max_out; 12983 12984 SCTP_STAT_INCR(sctps_sends_with_abort); 12985 if ((SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_WAIT) || 12986 (SCTP_GET_STATE(stcb) == SCTP_STATE_COOKIE_ECHOED)) { 12987 /* It has to be up before we abort */ 12988 /* how big is the user initiated abort? */ 12989 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 12990 error = EINVAL; 12991 goto out; 12992 } 12993 if (hold_tcblock) { 12994 SCTP_TCB_UNLOCK(stcb); 12995 hold_tcblock = 0; 12996 } 12997 if (top) { 12998 struct mbuf *cntm = NULL; 12999 13000 mm = sctp_get_mbuf_for_msg(sizeof(struct sctp_paramhdr), 0, M_WAITOK, 1, MT_DATA); 13001 if (sndlen != 0) { 13002 for (cntm = top; cntm; cntm = SCTP_BUF_NEXT(cntm)) { 13003 tot_out += SCTP_BUF_LEN(cntm); 13004 } 13005 } 13006 } else { 13007 /* Must fit in a MTU */ 13008 tot_out = sndlen; 13009 tot_demand = (tot_out + sizeof(struct sctp_paramhdr)); 13010 if (tot_demand > SCTP_DEFAULT_ADD_MORE) { 13011 /* To big */ 13012 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 13013 error = EMSGSIZE; 13014 goto out; 13015 } 13016 mm = sctp_get_mbuf_for_msg((unsigned int)tot_demand, 0, M_WAITOK, 1, MT_DATA); 13017 } 13018 if (mm == NULL) { 13019 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, ENOMEM); 13020 error = ENOMEM; 13021 goto out; 13022 } 13023 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr); 13024 max_out -= sizeof(struct sctp_abort_msg); 13025 if (tot_out > max_out) { 13026 tot_out = max_out; 13027 } 13028 if (mm) { 13029 struct sctp_paramhdr *ph; 13030 13031 /* now move forward the data pointer */ 13032 ph = mtod(mm, struct sctp_paramhdr *); 13033 ph->param_type = htons(SCTP_CAUSE_USER_INITIATED_ABT); 13034 ph->param_length = htons((uint16_t)(sizeof(struct sctp_paramhdr) + tot_out)); 13035 ph++; 13036 SCTP_BUF_LEN(mm) = (int)(tot_out + sizeof(struct sctp_paramhdr)); 13037 if (top == NULL) { 13038 error = uiomove((caddr_t)ph, (int)tot_out, uio); 13039 if (error) { 13040 /*- 13041 * Here if we can't get his data we 13042 * still abort we just don't get to 13043 * send the users note :-0 13044 */ 13045 sctp_m_freem(mm); 13046 mm = NULL; 13047 } 13048 } else { 13049 if (sndlen != 0) { 13050 SCTP_BUF_NEXT(mm) = top; 13051 } 13052 } 13053 } 13054 if (hold_tcblock == 0) { 13055 SCTP_TCB_LOCK(stcb); 13056 } 13057 atomic_add_int(&stcb->asoc.refcnt, -1); 13058 free_cnt_applied = 0; 13059 /* release this lock, otherwise we hang on ourselves */ 13060 NET_EPOCH_ENTER(et); 13061 sctp_abort_an_association(stcb->sctp_ep, stcb, mm, SCTP_SO_LOCKED); 13062 NET_EPOCH_EXIT(et); 13063 /* now relock the stcb so everything is sane */ 13064 hold_tcblock = 0; 13065 stcb = NULL; 13066 /* 13067 * In this case top is already chained to mm avoid double 13068 * free, since we free it below if top != NULL and driver 13069 * would free it after sending the packet out 13070 */ 13071 if (sndlen != 0) { 13072 top = NULL; 13073 } 13074 goto out_unlocked; 13075 } 13076 /* Calculate the maximum we can send */ 13077 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13078 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 13079 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13080 } else { 13081 max_len = 0; 13082 } 13083 if (hold_tcblock) { 13084 SCTP_TCB_UNLOCK(stcb); 13085 hold_tcblock = 0; 13086 } 13087 if (asoc->strmout == NULL) { 13088 /* huh? software error */ 13089 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EFAULT); 13090 error = EFAULT; 13091 goto out_unlocked; 13092 } 13093 13094 /* Unless E_EOR mode is on, we must make a send FIT in one call. */ 13095 if ((user_marks_eor == 0) && 13096 (sndlen > (ssize_t)SCTP_SB_LIMIT_SND(stcb->sctp_socket))) { 13097 /* It will NEVER fit */ 13098 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EMSGSIZE); 13099 error = EMSGSIZE; 13100 goto out_unlocked; 13101 } 13102 if ((uio == NULL) && user_marks_eor) { 13103 /*- 13104 * We do not support eeor mode for 13105 * sending with mbuf chains (like sendfile). 13106 */ 13107 SCTP_LTRACE_ERR_RET(NULL, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 13108 error = EINVAL; 13109 goto out_unlocked; 13110 } 13111 13112 if (user_marks_eor) { 13113 local_add_more = (ssize_t)min(SCTP_SB_LIMIT_SND(so), SCTP_BASE_SYSCTL(sctp_add_more_threshold)); 13114 } else { 13115 /*- 13116 * For non-eeor the whole message must fit in 13117 * the socket send buffer. 13118 */ 13119 local_add_more = sndlen; 13120 } 13121 len = 0; 13122 if (non_blocking) { 13123 goto skip_preblock; 13124 } 13125 if (((max_len <= local_add_more) && 13126 ((ssize_t)SCTP_SB_LIMIT_SND(so) >= local_add_more)) || 13127 (max_len == 0) || 13128 ((stcb->asoc.chunks_on_out_queue + stcb->asoc.stream_queue_cnt) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 13129 /* No room right now ! */ 13130 SOCKBUF_LOCK(&so->so_snd); 13131 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13132 while ((SCTP_SB_LIMIT_SND(so) < (inqueue_bytes + local_add_more)) || 13133 ((stcb->asoc.stream_queue_cnt + stcb->asoc.chunks_on_out_queue) >= SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue))) { 13134 SCTPDBG(SCTP_DEBUG_OUTPUT1, "pre_block limit:%u <(inq:%d + %zd) || (%d+%d > %d)\n", 13135 (unsigned int)SCTP_SB_LIMIT_SND(so), 13136 inqueue_bytes, 13137 local_add_more, 13138 stcb->asoc.stream_queue_cnt, 13139 stcb->asoc.chunks_on_out_queue, 13140 SCTP_BASE_SYSCTL(sctp_max_chunks_on_queue)); 13141 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13142 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLKA, asoc, sndlen); 13143 } 13144 be.error = 0; 13145 stcb->block_entry = &be; 13146 error = sbwait(&so->so_snd); 13147 stcb->block_entry = NULL; 13148 if (error || so->so_error || be.error) { 13149 if (error == 0) { 13150 if (so->so_error) 13151 error = so->so_error; 13152 if (be.error) { 13153 error = be.error; 13154 } 13155 } 13156 SOCKBUF_UNLOCK(&so->so_snd); 13157 goto out_unlocked; 13158 } 13159 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13160 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 13161 asoc, stcb->asoc.total_output_queue_size); 13162 } 13163 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13164 SOCKBUF_UNLOCK(&so->so_snd); 13165 goto out_unlocked; 13166 } 13167 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13168 } 13169 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) { 13170 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13171 } else { 13172 max_len = 0; 13173 } 13174 SOCKBUF_UNLOCK(&so->so_snd); 13175 } 13176 13177 skip_preblock: 13178 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13179 goto out_unlocked; 13180 } 13181 /* 13182 * sndlen covers for mbuf case uio_resid covers for the non-mbuf 13183 * case NOTE: uio will be null when top/mbuf is passed 13184 */ 13185 if (sndlen == 0) { 13186 if (sinfo_flags & SCTP_EOF) { 13187 got_all_of_the_send = 1; 13188 goto dataless_eof; 13189 } else { 13190 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 13191 error = EINVAL; 13192 goto out; 13193 } 13194 } 13195 if (top == NULL) { 13196 struct sctp_stream_queue_pending *sp; 13197 struct sctp_stream_out *strm; 13198 uint32_t sndout; 13199 13200 SCTP_TCB_SEND_LOCK(stcb); 13201 if ((asoc->stream_locked) && 13202 (asoc->stream_locked_on != srcv->sinfo_stream)) { 13203 SCTP_TCB_SEND_UNLOCK(stcb); 13204 SCTP_LTRACE_ERR_RET(inp, stcb, net, SCTP_FROM_SCTP_OUTPUT, EINVAL); 13205 error = EINVAL; 13206 goto out; 13207 } 13208 SCTP_TCB_SEND_UNLOCK(stcb); 13209 13210 strm = &stcb->asoc.strmout[srcv->sinfo_stream]; 13211 if (strm->last_msg_incomplete == 0) { 13212 do_a_copy_in: 13213 sp = sctp_copy_it_in(stcb, asoc, srcv, uio, net, max_len, user_marks_eor, &error); 13214 if (error) { 13215 goto out; 13216 } 13217 SCTP_TCB_SEND_LOCK(stcb); 13218 if (sp->msg_is_complete) { 13219 strm->last_msg_incomplete = 0; 13220 asoc->stream_locked = 0; 13221 } else { 13222 /* 13223 * Just got locked to this guy in case of an 13224 * interrupt. 13225 */ 13226 strm->last_msg_incomplete = 1; 13227 if (stcb->asoc.idata_supported == 0) { 13228 asoc->stream_locked = 1; 13229 asoc->stream_locked_on = srcv->sinfo_stream; 13230 } 13231 sp->sender_all_done = 0; 13232 } 13233 sctp_snd_sb_alloc(stcb, sp->length); 13234 atomic_add_int(&asoc->stream_queue_cnt, 1); 13235 if (sinfo_flags & SCTP_UNORDERED) { 13236 SCTP_STAT_INCR(sctps_sends_with_unord); 13237 } 13238 TAILQ_INSERT_TAIL(&strm->outqueue, sp, next); 13239 stcb->asoc.ss_functions.sctp_ss_add_to_stream(stcb, asoc, strm, sp, 1); 13240 SCTP_TCB_SEND_UNLOCK(stcb); 13241 } else { 13242 SCTP_TCB_SEND_LOCK(stcb); 13243 sp = TAILQ_LAST(&strm->outqueue, sctp_streamhead); 13244 SCTP_TCB_SEND_UNLOCK(stcb); 13245 if (sp == NULL) { 13246 /* ???? Huh ??? last msg is gone */ 13247 #ifdef INVARIANTS 13248 panic("Warning: Last msg marked incomplete, yet nothing left?"); 13249 #else 13250 SCTP_PRINTF("Warning: Last msg marked incomplete, yet nothing left?\n"); 13251 strm->last_msg_incomplete = 0; 13252 #endif 13253 goto do_a_copy_in; 13254 13255 } 13256 } 13257 while (uio->uio_resid > 0) { 13258 /* How much room do we have? */ 13259 struct mbuf *new_tail, *mm; 13260 13261 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13262 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) 13263 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13264 else 13265 max_len = 0; 13266 13267 if ((max_len > (ssize_t)SCTP_BASE_SYSCTL(sctp_add_more_threshold)) || 13268 (max_len && (SCTP_SB_LIMIT_SND(so) < SCTP_BASE_SYSCTL(sctp_add_more_threshold))) || 13269 (uio->uio_resid && (uio->uio_resid <= max_len))) { 13270 sndout = 0; 13271 new_tail = NULL; 13272 if (hold_tcblock) { 13273 SCTP_TCB_UNLOCK(stcb); 13274 hold_tcblock = 0; 13275 } 13276 mm = sctp_copy_resume(uio, (int)max_len, user_marks_eor, &error, &sndout, &new_tail); 13277 if ((mm == NULL) || error) { 13278 if (mm) { 13279 sctp_m_freem(mm); 13280 } 13281 goto out; 13282 } 13283 /* Update the mbuf and count */ 13284 SCTP_TCB_SEND_LOCK(stcb); 13285 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13286 /* 13287 * we need to get out. Peer probably 13288 * aborted. 13289 */ 13290 sctp_m_freem(mm); 13291 if (stcb->asoc.state & SCTP_PCB_FLAGS_WAS_ABORTED) { 13292 SCTP_LTRACE_ERR_RET(NULL, stcb, NULL, SCTP_FROM_SCTP_OUTPUT, ECONNRESET); 13293 error = ECONNRESET; 13294 } 13295 SCTP_TCB_SEND_UNLOCK(stcb); 13296 goto out; 13297 } 13298 if (sp->tail_mbuf) { 13299 /* tack it to the end */ 13300 SCTP_BUF_NEXT(sp->tail_mbuf) = mm; 13301 sp->tail_mbuf = new_tail; 13302 } else { 13303 /* A stolen mbuf */ 13304 sp->data = mm; 13305 sp->tail_mbuf = new_tail; 13306 } 13307 sctp_snd_sb_alloc(stcb, sndout); 13308 atomic_add_int(&sp->length, sndout); 13309 len += sndout; 13310 if (sinfo_flags & SCTP_SACK_IMMEDIATELY) { 13311 sp->sinfo_flags |= SCTP_SACK_IMMEDIATELY; 13312 } 13313 13314 /* Did we reach EOR? */ 13315 if ((uio->uio_resid == 0) && 13316 ((user_marks_eor == 0) || 13317 (sinfo_flags & SCTP_EOF) || 13318 (user_marks_eor && (sinfo_flags & SCTP_EOR)))) { 13319 sp->msg_is_complete = 1; 13320 } else { 13321 sp->msg_is_complete = 0; 13322 } 13323 SCTP_TCB_SEND_UNLOCK(stcb); 13324 } 13325 if (uio->uio_resid == 0) { 13326 /* got it all? */ 13327 continue; 13328 } 13329 /* PR-SCTP? */ 13330 if ((asoc->prsctp_supported) && (asoc->sent_queue_cnt_removeable > 0)) { 13331 /* 13332 * This is ugly but we must assure locking 13333 * order 13334 */ 13335 if (hold_tcblock == 0) { 13336 SCTP_TCB_LOCK(stcb); 13337 hold_tcblock = 1; 13338 } 13339 sctp_prune_prsctp(stcb, asoc, srcv, (int)sndlen); 13340 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13341 if (SCTP_SB_LIMIT_SND(so) > inqueue_bytes) 13342 max_len = SCTP_SB_LIMIT_SND(so) - inqueue_bytes; 13343 else 13344 max_len = 0; 13345 if (max_len > 0) { 13346 continue; 13347 } 13348 SCTP_TCB_UNLOCK(stcb); 13349 hold_tcblock = 0; 13350 } 13351 /* wait for space now */ 13352 if (non_blocking) { 13353 /* Non-blocking io in place out */ 13354 goto skip_out_eof; 13355 } 13356 /* What about the INIT, send it maybe */ 13357 if (queue_only_for_init) { 13358 if (hold_tcblock == 0) { 13359 SCTP_TCB_LOCK(stcb); 13360 hold_tcblock = 1; 13361 } 13362 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 13363 /* a collision took us forward? */ 13364 queue_only = 0; 13365 } else { 13366 NET_EPOCH_ENTER(et); 13367 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13368 NET_EPOCH_EXIT(et); 13369 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 13370 queue_only = 1; 13371 } 13372 } 13373 if ((net->flight_size > net->cwnd) && 13374 (asoc->sctp_cmt_on_off == 0)) { 13375 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13376 queue_only = 1; 13377 } else if (asoc->ifp_had_enobuf) { 13378 SCTP_STAT_INCR(sctps_ifnomemqueued); 13379 if (net->flight_size > (2 * net->mtu)) { 13380 queue_only = 1; 13381 } 13382 asoc->ifp_had_enobuf = 0; 13383 } 13384 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 13385 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13386 (stcb->asoc.total_flight > 0) && 13387 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13388 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 13389 13390 /*- 13391 * Ok, Nagle is set on and we have data outstanding. 13392 * Don't send anything and let SACKs drive out the 13393 * data unless we have a "full" segment to send. 13394 */ 13395 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13396 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13397 } 13398 SCTP_STAT_INCR(sctps_naglequeued); 13399 nagle_applies = 1; 13400 } else { 13401 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13402 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13403 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13404 } 13405 SCTP_STAT_INCR(sctps_naglesent); 13406 nagle_applies = 0; 13407 } 13408 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13409 13410 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13411 nagle_applies, un_sent); 13412 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 13413 stcb->asoc.total_flight, 13414 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 13415 } 13416 if (queue_only_for_init) 13417 queue_only_for_init = 0; 13418 if ((queue_only == 0) && (nagle_applies == 0)) { 13419 /*- 13420 * need to start chunk output 13421 * before blocking.. note that if 13422 * a lock is already applied, then 13423 * the input via the net is happening 13424 * and I don't need to start output :-D 13425 */ 13426 NET_EPOCH_ENTER(et); 13427 if (hold_tcblock == 0) { 13428 if (SCTP_TCB_TRYLOCK(stcb)) { 13429 hold_tcblock = 1; 13430 sctp_chunk_output(inp, 13431 stcb, 13432 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13433 } 13434 } else { 13435 sctp_chunk_output(inp, 13436 stcb, 13437 SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13438 } 13439 NET_EPOCH_EXIT(et); 13440 } 13441 if (hold_tcblock == 1) { 13442 SCTP_TCB_UNLOCK(stcb); 13443 hold_tcblock = 0; 13444 } 13445 SOCKBUF_LOCK(&so->so_snd); 13446 /*- 13447 * This is a bit strange, but I think it will 13448 * work. The total_output_queue_size is locked and 13449 * protected by the TCB_LOCK, which we just released. 13450 * There is a race that can occur between releasing it 13451 * above, and me getting the socket lock, where sacks 13452 * come in but we have not put the SB_WAIT on the 13453 * so_snd buffer to get the wakeup. After the LOCK 13454 * is applied the sack_processing will also need to 13455 * LOCK the so->so_snd to do the actual sowwakeup(). So 13456 * once we have the socket buffer lock if we recheck the 13457 * size we KNOW we will get to sleep safely with the 13458 * wakeup flag in place. 13459 */ 13460 inqueue_bytes = stcb->asoc.total_output_queue_size - (stcb->asoc.chunks_on_out_queue * SCTP_DATA_CHUNK_OVERHEAD(stcb)); 13461 if (SCTP_SB_LIMIT_SND(so) <= (inqueue_bytes + 13462 min(SCTP_BASE_SYSCTL(sctp_add_more_threshold), SCTP_SB_LIMIT_SND(so)))) { 13463 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13464 sctp_log_block(SCTP_BLOCK_LOG_INTO_BLK, 13465 asoc, uio->uio_resid); 13466 } 13467 be.error = 0; 13468 stcb->block_entry = &be; 13469 error = sbwait(&so->so_snd); 13470 stcb->block_entry = NULL; 13471 13472 if (error || so->so_error || be.error) { 13473 if (error == 0) { 13474 if (so->so_error) 13475 error = so->so_error; 13476 if (be.error) { 13477 error = be.error; 13478 } 13479 } 13480 SOCKBUF_UNLOCK(&so->so_snd); 13481 goto out_unlocked; 13482 } 13483 13484 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13485 sctp_log_block(SCTP_BLOCK_LOG_OUTOF_BLK, 13486 asoc, stcb->asoc.total_output_queue_size); 13487 } 13488 } 13489 SOCKBUF_UNLOCK(&so->so_snd); 13490 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13491 goto out_unlocked; 13492 } 13493 } 13494 SCTP_TCB_SEND_LOCK(stcb); 13495 if (stcb->asoc.state & SCTP_STATE_ABOUT_TO_BE_FREED) { 13496 SCTP_TCB_SEND_UNLOCK(stcb); 13497 goto out_unlocked; 13498 } 13499 if (sp) { 13500 if (sp->msg_is_complete == 0) { 13501 strm->last_msg_incomplete = 1; 13502 if (stcb->asoc.idata_supported == 0) { 13503 asoc->stream_locked = 1; 13504 asoc->stream_locked_on = srcv->sinfo_stream; 13505 } 13506 } else { 13507 sp->sender_all_done = 1; 13508 strm->last_msg_incomplete = 0; 13509 asoc->stream_locked = 0; 13510 } 13511 } else { 13512 SCTP_PRINTF("Huh no sp TSNH?\n"); 13513 strm->last_msg_incomplete = 0; 13514 asoc->stream_locked = 0; 13515 } 13516 SCTP_TCB_SEND_UNLOCK(stcb); 13517 if (uio->uio_resid == 0) { 13518 got_all_of_the_send = 1; 13519 } 13520 } else { 13521 /* We send in a 0, since we do NOT have any locks */ 13522 error = sctp_msg_append(stcb, net, top, srcv, 0); 13523 top = NULL; 13524 if (sinfo_flags & SCTP_EOF) { 13525 /* 13526 * This should only happen for Panda for the mbuf 13527 * send case, which does NOT yet support EEOR mode. 13528 * Thus, we can just set this flag to do the proper 13529 * EOF handling. 13530 */ 13531 got_all_of_the_send = 1; 13532 } 13533 } 13534 if (error) { 13535 goto out; 13536 } 13537 dataless_eof: 13538 /* EOF thing ? */ 13539 if ((sinfo_flags & SCTP_EOF) && 13540 (got_all_of_the_send == 1)) { 13541 SCTP_STAT_INCR(sctps_sends_with_eof); 13542 error = 0; 13543 if (hold_tcblock == 0) { 13544 SCTP_TCB_LOCK(stcb); 13545 hold_tcblock = 1; 13546 } 13547 if (TAILQ_EMPTY(&asoc->send_queue) && 13548 TAILQ_EMPTY(&asoc->sent_queue) && 13549 sctp_is_there_unsent_data(stcb, SCTP_SO_LOCKED) == 0) { 13550 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 13551 goto abort_anyway; 13552 } 13553 /* there is nothing queued to send, so I'm done... */ 13554 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 13555 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13556 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13557 struct sctp_nets *netp; 13558 13559 /* only send SHUTDOWN the first time through */ 13560 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 13561 SCTP_STAT_DECR_GAUGE32(sctps_currestab); 13562 } 13563 SCTP_SET_STATE(stcb, SCTP_STATE_SHUTDOWN_SENT); 13564 sctp_stop_timers_for_shutdown(stcb); 13565 if (stcb->asoc.alternate) { 13566 netp = stcb->asoc.alternate; 13567 } else { 13568 netp = stcb->asoc.primary_destination; 13569 } 13570 sctp_send_shutdown(stcb, netp); 13571 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, stcb->sctp_ep, stcb, 13572 netp); 13573 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13574 NULL); 13575 } 13576 } else { 13577 /*- 13578 * we still got (or just got) data to send, so set 13579 * SHUTDOWN_PENDING 13580 */ 13581 /*- 13582 * XXX sockets draft says that SCTP_EOF should be 13583 * sent with no data. currently, we will allow user 13584 * data to be sent first and move to 13585 * SHUTDOWN-PENDING 13586 */ 13587 if ((SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_SENT) && 13588 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_RECEIVED) && 13589 (SCTP_GET_STATE(stcb) != SCTP_STATE_SHUTDOWN_ACK_SENT)) { 13590 if (hold_tcblock == 0) { 13591 SCTP_TCB_LOCK(stcb); 13592 hold_tcblock = 1; 13593 } 13594 if ((*asoc->ss_functions.sctp_ss_is_user_msgs_incomplete) (stcb, asoc)) { 13595 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_PARTIAL_MSG_LEFT); 13596 } 13597 SCTP_ADD_SUBSTATE(stcb, SCTP_STATE_SHUTDOWN_PENDING); 13598 if (TAILQ_EMPTY(&asoc->send_queue) && 13599 TAILQ_EMPTY(&asoc->sent_queue) && 13600 (asoc->state & SCTP_STATE_PARTIAL_MSG_LEFT)) { 13601 struct mbuf *op_err; 13602 char msg[SCTP_DIAG_INFO_LEN]; 13603 13604 abort_anyway: 13605 if (free_cnt_applied) { 13606 atomic_add_int(&stcb->asoc.refcnt, -1); 13607 free_cnt_applied = 0; 13608 } 13609 snprintf(msg, sizeof(msg), 13610 "%s:%d at %s", __FILE__, __LINE__, __func__); 13611 op_err = sctp_generate_cause(SCTP_BASE_SYSCTL(sctp_diag_info_code), 13612 msg); 13613 NET_EPOCH_ENTER(et); 13614 sctp_abort_an_association(stcb->sctp_ep, stcb, 13615 op_err, SCTP_SO_LOCKED); 13616 NET_EPOCH_EXIT(et); 13617 /* 13618 * now relock the stcb so everything 13619 * is sane 13620 */ 13621 hold_tcblock = 0; 13622 stcb = NULL; 13623 goto out; 13624 } 13625 sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, stcb->sctp_ep, stcb, 13626 NULL); 13627 sctp_feature_off(inp, SCTP_PCB_FLAGS_NODELAY); 13628 } 13629 } 13630 } 13631 skip_out_eof: 13632 if (!TAILQ_EMPTY(&stcb->asoc.control_send_queue)) { 13633 some_on_control = 1; 13634 } 13635 if (queue_only_for_init) { 13636 if (hold_tcblock == 0) { 13637 SCTP_TCB_LOCK(stcb); 13638 hold_tcblock = 1; 13639 } 13640 if (SCTP_GET_STATE(stcb) == SCTP_STATE_OPEN) { 13641 /* a collision took us forward? */ 13642 queue_only = 0; 13643 } else { 13644 NET_EPOCH_ENTER(et); 13645 sctp_send_initiate(inp, stcb, SCTP_SO_LOCKED); 13646 NET_EPOCH_EXIT(et); 13647 SCTP_SET_STATE(stcb, SCTP_STATE_COOKIE_WAIT); 13648 queue_only = 1; 13649 } 13650 } 13651 if ((net->flight_size > net->cwnd) && 13652 (stcb->asoc.sctp_cmt_on_off == 0)) { 13653 SCTP_STAT_INCR(sctps_send_cwnd_avoid); 13654 queue_only = 1; 13655 } else if (asoc->ifp_had_enobuf) { 13656 SCTP_STAT_INCR(sctps_ifnomemqueued); 13657 if (net->flight_size > (2 * net->mtu)) { 13658 queue_only = 1; 13659 } 13660 asoc->ifp_had_enobuf = 0; 13661 } 13662 un_sent = stcb->asoc.total_output_queue_size - stcb->asoc.total_flight; 13663 if ((sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) && 13664 (stcb->asoc.total_flight > 0) && 13665 (stcb->asoc.stream_queue_cnt < SCTP_MAX_DATA_BUNDLING) && 13666 (un_sent < (int)(stcb->asoc.smallest_mtu - SCTP_MIN_OVERHEAD))) { 13667 /*- 13668 * Ok, Nagle is set on and we have data outstanding. 13669 * Don't send anything and let SACKs drive out the 13670 * data unless wen have a "full" segment to send. 13671 */ 13672 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13673 sctp_log_nagle_event(stcb, SCTP_NAGLE_APPLIED); 13674 } 13675 SCTP_STAT_INCR(sctps_naglequeued); 13676 nagle_applies = 1; 13677 } else { 13678 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_NAGLE_LOGGING_ENABLE) { 13679 if (sctp_is_feature_off(inp, SCTP_PCB_FLAGS_NODELAY)) 13680 sctp_log_nagle_event(stcb, SCTP_NAGLE_SKIPPED); 13681 } 13682 SCTP_STAT_INCR(sctps_naglesent); 13683 nagle_applies = 0; 13684 } 13685 if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_BLK_LOGGING_ENABLE) { 13686 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, queue_only_for_init, queue_only, 13687 nagle_applies, un_sent); 13688 sctp_misc_ints(SCTP_CWNDLOG_PRESEND, stcb->asoc.total_output_queue_size, 13689 stcb->asoc.total_flight, 13690 stcb->asoc.chunks_on_out_queue, stcb->asoc.total_flight_count); 13691 } 13692 NET_EPOCH_ENTER(et); 13693 if ((queue_only == 0) && (nagle_applies == 0) && (stcb->asoc.peers_rwnd && un_sent)) { 13694 /* we can attempt to send too. */ 13695 if (hold_tcblock == 0) { 13696 /* 13697 * If there is activity recv'ing sacks no need to 13698 * send 13699 */ 13700 if (SCTP_TCB_TRYLOCK(stcb)) { 13701 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13702 hold_tcblock = 1; 13703 } 13704 } else { 13705 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13706 } 13707 } else if ((queue_only == 0) && 13708 (stcb->asoc.peers_rwnd == 0) && 13709 (stcb->asoc.total_flight == 0)) { 13710 /* We get to have a probe outstanding */ 13711 if (hold_tcblock == 0) { 13712 hold_tcblock = 1; 13713 SCTP_TCB_LOCK(stcb); 13714 } 13715 sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_USR_SEND, SCTP_SO_LOCKED); 13716 } else if (some_on_control) { 13717 int num_out, reason, frag_point; 13718 13719 /* Here we do control only */ 13720 if (hold_tcblock == 0) { 13721 hold_tcblock = 1; 13722 SCTP_TCB_LOCK(stcb); 13723 } 13724 frag_point = sctp_get_frag_point(stcb, &stcb->asoc); 13725 (void)sctp_med_chunk_output(inp, stcb, &stcb->asoc, &num_out, 13726 &reason, 1, 1, &now, &now_filled, frag_point, SCTP_SO_LOCKED); 13727 } 13728 NET_EPOCH_EXIT(et); 13729 SCTPDBG(SCTP_DEBUG_OUTPUT1, "USR Send complete qo:%d prw:%d unsent:%d tf:%d cooq:%d toqs:%d err:%d\n", 13730 queue_only, stcb->asoc.peers_rwnd, un_sent, 13731 stcb->asoc.total_flight, stcb->asoc.chunks_on_out_queue, 13732 stcb->asoc.total_output_queue_size, error); 13733 13734 out: 13735 out_unlocked: 13736 13737 if (local_soresv && stcb) { 13738 atomic_subtract_int(&stcb->asoc.sb_send_resv, sndlen); 13739 } 13740 if (create_lock_applied) { 13741 SCTP_ASOC_CREATE_UNLOCK(inp); 13742 } 13743 if ((stcb) && hold_tcblock) { 13744 SCTP_TCB_UNLOCK(stcb); 13745 } 13746 if (stcb && free_cnt_applied) { 13747 atomic_add_int(&stcb->asoc.refcnt, -1); 13748 } 13749 #ifdef INVARIANTS 13750 if (stcb) { 13751 if (mtx_owned(&stcb->tcb_mtx)) { 13752 panic("Leaving with tcb mtx owned?"); 13753 } 13754 if (mtx_owned(&stcb->tcb_send_mtx)) { 13755 panic("Leaving with tcb send mtx owned?"); 13756 } 13757 } 13758 #endif 13759 if (top) { 13760 sctp_m_freem(top); 13761 } 13762 if (control) { 13763 sctp_m_freem(control); 13764 } 13765 return (error); 13766 } 13767 13768 13769 /* 13770 * generate an AUTHentication chunk, if required 13771 */ 13772 struct mbuf * 13773 sctp_add_auth_chunk(struct mbuf *m, struct mbuf **m_end, 13774 struct sctp_auth_chunk **auth_ret, uint32_t *offset, 13775 struct sctp_tcb *stcb, uint8_t chunk) 13776 { 13777 struct mbuf *m_auth; 13778 struct sctp_auth_chunk *auth; 13779 int chunk_len; 13780 struct mbuf *cn; 13781 13782 if ((m_end == NULL) || (auth_ret == NULL) || (offset == NULL) || 13783 (stcb == NULL)) 13784 return (m); 13785 13786 if (stcb->asoc.auth_supported == 0) { 13787 return (m); 13788 } 13789 /* does the requested chunk require auth? */ 13790 if (!sctp_auth_is_required_chunk(chunk, stcb->asoc.peer_auth_chunks)) { 13791 return (m); 13792 } 13793 m_auth = sctp_get_mbuf_for_msg(sizeof(*auth), 0, M_NOWAIT, 1, MT_HEADER); 13794 if (m_auth == NULL) { 13795 /* no mbuf's */ 13796 return (m); 13797 } 13798 /* reserve some space if this will be the first mbuf */ 13799 if (m == NULL) 13800 SCTP_BUF_RESV_UF(m_auth, SCTP_MIN_OVERHEAD); 13801 /* fill in the AUTH chunk details */ 13802 auth = mtod(m_auth, struct sctp_auth_chunk *); 13803 memset(auth, 0, sizeof(*auth)); 13804 auth->ch.chunk_type = SCTP_AUTHENTICATION; 13805 auth->ch.chunk_flags = 0; 13806 chunk_len = sizeof(*auth) + 13807 sctp_get_hmac_digest_len(stcb->asoc.peer_hmac_id); 13808 auth->ch.chunk_length = htons(chunk_len); 13809 auth->hmac_id = htons(stcb->asoc.peer_hmac_id); 13810 /* key id and hmac digest will be computed and filled in upon send */ 13811 13812 /* save the offset where the auth was inserted into the chain */ 13813 *offset = 0; 13814 for (cn = m; cn; cn = SCTP_BUF_NEXT(cn)) { 13815 *offset += SCTP_BUF_LEN(cn); 13816 } 13817 13818 /* update length and return pointer to the auth chunk */ 13819 SCTP_BUF_LEN(m_auth) = chunk_len; 13820 m = sctp_copy_mbufchain(m_auth, m, m_end, 1, chunk_len, 0); 13821 if (auth_ret != NULL) 13822 *auth_ret = auth; 13823 13824 return (m); 13825 } 13826 13827 #ifdef INET6 13828 int 13829 sctp_v6src_match_nexthop(struct sockaddr_in6 *src6, sctp_route_t *ro) 13830 { 13831 struct nd_prefix *pfx = NULL; 13832 struct nd_pfxrouter *pfxrtr = NULL; 13833 struct sockaddr_in6 gw6; 13834 13835 if (ro == NULL || ro->ro_nh == NULL || src6->sin6_family != AF_INET6) 13836 return (0); 13837 13838 /* get prefix entry of address */ 13839 ND6_RLOCK(); 13840 LIST_FOREACH(pfx, &MODULE_GLOBAL(nd_prefix), ndpr_entry) { 13841 if (pfx->ndpr_stateflags & NDPRF_DETACHED) 13842 continue; 13843 if (IN6_ARE_MASKED_ADDR_EQUAL(&pfx->ndpr_prefix.sin6_addr, 13844 &src6->sin6_addr, &pfx->ndpr_mask)) 13845 break; 13846 } 13847 /* no prefix entry in the prefix list */ 13848 if (pfx == NULL) { 13849 ND6_RUNLOCK(); 13850 SCTPDBG(SCTP_DEBUG_OUTPUT2, "No prefix entry for "); 13851 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13852 return (0); 13853 } 13854 13855 SCTPDBG(SCTP_DEBUG_OUTPUT2, "v6src_match_nexthop(), Prefix entry is "); 13856 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)src6); 13857 13858 /* search installed gateway from prefix entry */ 13859 LIST_FOREACH(pfxrtr, &pfx->ndpr_advrtrs, pfr_entry) { 13860 memset(&gw6, 0, sizeof(struct sockaddr_in6)); 13861 gw6.sin6_family = AF_INET6; 13862 gw6.sin6_len = sizeof(struct sockaddr_in6); 13863 memcpy(&gw6.sin6_addr, &pfxrtr->router->rtaddr, 13864 sizeof(struct in6_addr)); 13865 SCTPDBG(SCTP_DEBUG_OUTPUT2, "prefix router is "); 13866 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, (struct sockaddr *)&gw6); 13867 SCTPDBG(SCTP_DEBUG_OUTPUT2, "installed router is "); 13868 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ro->ro_nh->gw_sa); 13869 if (sctp_cmpaddr((struct sockaddr *)&gw6, &ro->ro_nh->gw_sa)) { 13870 ND6_RUNLOCK(); 13871 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is installed\n"); 13872 return (1); 13873 } 13874 } 13875 ND6_RUNLOCK(); 13876 SCTPDBG(SCTP_DEBUG_OUTPUT2, "pfxrouter is not installed\n"); 13877 return (0); 13878 } 13879 #endif 13880 13881 int 13882 sctp_v4src_match_nexthop(struct sctp_ifa *sifa, sctp_route_t *ro) 13883 { 13884 #ifdef INET 13885 struct sockaddr_in *sin, *mask; 13886 struct ifaddr *ifa; 13887 struct in_addr srcnetaddr, gwnetaddr; 13888 13889 if (ro == NULL || ro->ro_nh == NULL || 13890 sifa->address.sa.sa_family != AF_INET) { 13891 return (0); 13892 } 13893 ifa = (struct ifaddr *)sifa->ifa; 13894 mask = (struct sockaddr_in *)(ifa->ifa_netmask); 13895 sin = &sifa->address.sin; 13896 srcnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13897 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: src address is "); 13898 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &sifa->address.sa); 13899 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", srcnetaddr.s_addr); 13900 13901 sin = &ro->ro_nh->gw4_sa; 13902 gwnetaddr.s_addr = (sin->sin_addr.s_addr & mask->sin_addr.s_addr); 13903 SCTPDBG(SCTP_DEBUG_OUTPUT1, "match_nexthop4: nexthop is "); 13904 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &ro->ro_nh->gw_sa); 13905 SCTPDBG(SCTP_DEBUG_OUTPUT1, "network address is %x\n", gwnetaddr.s_addr); 13906 if (srcnetaddr.s_addr == gwnetaddr.s_addr) { 13907 return (1); 13908 } 13909 #endif 13910 return (0); 13911 } 13912