1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985
|
/*
* tcp6 : A security assessment tool that exploits potential flaws in the
* processing of TCP/IPv6 packets
*
* Copyright (C) 2011-2015 Fernando Gont <fgont@si6networks.com>
*
* Programmed by Fernando Gont for SI6 Networks <http://www.si6networks.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Build with: make tcp6
*
* It requires that the libpcap library be installed on your system.
*
* Please send any bug reports to Fernando Gont <fgont@si6networks.com>
*/
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/param.h>
#include <sys/select.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/ip6.h>
#include <netinet/icmp6.h>
#include <arpa/inet.h>
#include <pcap.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <getopt.h>
#include <limits.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <setjmp.h>
#include <pwd.h>
#include "tcp6.h"
#include "ipv6toolkit.h"
#include "libipv6.h"
/* Function prototypes */
void init_packet_data(struct iface_data *);
void send_packet(struct iface_data *, const u_char *, struct pcap_pkthdr *);
void print_attack_info(struct iface_data *);
void usage(void);
void print_help(void);
void frag_and_send(struct iface_data *);
unsigned int queue_data(struct tcp_queue *, unsigned char *, unsigned int);
unsigned int dequeue_data(struct tcp_queue *, unsigned char *, unsigned int);
unsigned int queue_copy(struct tcp_queue *, unsigned char *, unsigned int, unsigned char *, unsigned int);
unsigned int queue_remove(struct tcp_queue *, unsigned char *, unsigned int);
void queue_purge( struct tcp_queue *);
int tcp_init(struct tcp *);
int tcp_open(struct iface_data *, struct tcp *, unsigned int);
int tcp_close(struct iface_data *, struct tcp *);
int tcp_send(struct iface_data *, struct tcp *, unsigned char *, unsigned int);
int tcp_receive(struct iface_data *, struct tcp *, unsigned char *, unsigned int);
int tcp_input(struct iface_data *, struct tcp *, const u_char *, struct pcap_pkthdr *, struct packet *);
int tcp_output(struct iface_data *, struct tcp *, struct packet *, struct timeval *);
int is_valid_tcp_segment(struct iface_data *, const u_char *, struct pcap_pkthdr *);
/* Flags */
unsigned char floodt_f=0;
unsigned char listen_f=0, accepted_f=0, loop_f=0, sleep_f=0;
unsigned char hoplimit_f=0, rand_link_src_f=0, rand_src_f=0;
unsigned char floods_f=0, floodp_f=0, donesending_f=0, startclose_f=0;
unsigned char data_f=0, senddata_f=0, useaddrkey_f=0, window_f=0, winmodulate_f=0;
/* Flags used for TCP (specifically) */
unsigned char srcport_f=0, dstport_f=0;
unsigned char tcpseq_f=0, tcpack_f=0, tcpurg_f=0, tcpflags_f=0, tcpwin_f=0;
unsigned char rhbytes_f=0, tcpflags_auto_f=0, tcpopen_f=0, tcpclose_f=0;
unsigned char pps_f=0, bps_f=0, probemode_f=0, retrans_f=0, rto_f=0;
unsigned char ackdata_f=1, ackflags_f=1;
unsigned int probemode, tcpopen=0, tcpclose=0, win1_size=0, win2_size=0, window=0, time1_len=0, time2_len=0;
uint16_t srcport, dstport, tcpurg, tcpwin, tcpwinm;
unsigned int retrans, rto;
uint32_t tcpseq, tcpack;
uint8_t tcpflags=0, pkt_tcp_flags;
struct tcp_hdr *rhtcp;
unsigned int rhbytes, currentsize, packetsize;
/* Used for router discovery */
struct iface_data idata;
/* Data structures for packets read from the wire */
struct pcap_pkthdr *pkthdr;
const u_char *pktdata;
unsigned char *pkt_end;
struct ether_header *pkt_ether;
struct nd_neighbor_solicit *pkt_ns;
struct ip6_hdr *pkt_ipv6;
struct tcp_hdr *pkt_tcp;
struct in6_addr *pkt_ipv6addr;
unsigned int pktbytes;
bpf_u_int32 my_netmask;
bpf_u_int32 my_ip;
struct bpf_program pcap_filter;
char dev[64], errbuf[PCAP_ERRBUF_SIZE];
unsigned char buffer[65556], buffrh[MIN_IPV6_HLEN + MIN_TCP_HLEN];
unsigned char *v6buffer, *ptr, *startofprefixes;
char *pref;
char data[DATA_BUFFER_LEN];
unsigned int datalen;
char iface[IFACE_LENGTH];
char line[LINE_BUFFER_SIZE];
struct ip6_hdr *ipv6;
struct tcp_hdr *tcp;
struct ether_header *ethernet;
struct nd_opt_tlla *tllaopt;
struct in6_addr targetaddr, randprefix;
struct ether_addr linkaddr[MAX_TLLA_OPTION];
unsigned int nlinkaddr=0, linkaddrs;
char *lasts, *rpref;
char *charptr;
size_t nw;
unsigned long ul_res, ul_val, rate;
unsigned int i, j, startrand;
unsigned int skip;
unsigned int sources, nsources, ports, nports, nsleep;
unsigned char randpreflen;
uint16_t mask;
uint8_t hoplimit;
uint16_t addr_key;
char plinkaddr[ETHER_ADDR_PLEN];
char psrcaddr[INET6_ADDRSTRLEN], pdstaddr[INET6_ADDRSTRLEN], pv6addr[INET6_ADDRSTRLEN];
/* Support for Extension Headers */
unsigned int dstopthdrs, dstoptuhdrs, hbhopthdrs;
char hbhopthdr_f=0, dstoptuhdr_f=0, dstopthdr_f=0;
unsigned char *dstopthdr[MAX_DST_OPT_HDR], *dstoptuhdr[MAX_DST_OPT_U_HDR];
unsigned char *hbhopthdr[MAX_HBH_OPT_HDR];
unsigned int dstopthdrlen[MAX_DST_OPT_HDR], dstoptuhdrlen[MAX_DST_OPT_U_HDR];
unsigned int hbhopthdrlen[MAX_HBH_OPT_HDR], m, pad;
struct ip6_frag fraghdr, *fh;
struct ip6_hdr *fipv6;
unsigned char fragbuffer[ETHER_HDR_LEN+MIN_IPV6_HLEN+MAX_IPV6_PAYLOAD];
unsigned char *fragpart, *fptr, *fptrend, *ptrend, *ptrhdr, *ptrhdrend;
unsigned int hdrlen, ndstopthdr=0, nhbhopthdr=0, ndstoptuhdr=0;
unsigned int nfrags, fragsize;
unsigned char *prev_nh, *startoffragment;
struct filters filters;
int main(int argc, char **argv){
extern char *optarg;
char *endptr; /* Used by strtoul() */
fd_set sset, rset;
/* fd_set wset, eset; */
int r, sel;
struct timeval timeout, stimeout, curtime, lastprobe, wmtimeout;
/*struct tcp tcb; */
/* unsigned char end_f=0, error_f; */
unsigned char end_f=0;
unsigned long pktinterval=0; /*Add datasent=0*/
unsigned int retr=0;
struct target_ipv6 targetipv6;
static struct option longopts[] = {
{"interface", required_argument, 0, 'i'},
{"src-address", required_argument, 0, 's'},
{"dst-address", required_argument, 0, 'd'},
{"hop-limit", required_argument, 0, 'A'},
{"open-mode", required_argument, 0, 'c'},
{"close-mode", required_argument, 0, 'C'},
{"data", required_argument, 0, 'Z'},
{"dst-opt-hdr", required_argument, 0, 'u'},
{"dst-opt-u-hdr", required_argument, 0, 'U'},
{"hbh-opt-hdr", required_argument, 0, 'H'},
{"frag-hdr", required_argument, 0, 'y'},
{"link-src-addr", required_argument, 0, 'S'},
{"link-dst-addr", required_argument, 0, 'D'},
{"payload-size", required_argument, 0, 'P'},
{"src-port", required_argument, 0, 'o'},
{"dst-port", required_argument, 0, 'a'},
{"tcp-flags", required_argument, 0, 'X'},
{"tcp-seq", required_argument, 0, 'q'},
{"tcp-ack", required_argument, 0, 'Q'},
{"tcp-urg", required_argument, 0, 'V'},
{"tcp-win", required_argument, 0, 'w'},
{"window-mode", required_argument, 0, 'W'},
{"win-modulation", required_argument, 0, 'M'},
{"not-ack-data", no_argument, 0, 'N'},
{"not-ack-flags", no_argument, 0, 'n'},
{"block-src-addr", required_argument, 0, 'j'},
{"block-dst-addr", required_argument, 0, 'k'},
{"block-link-src-addr", required_argument, 0, 'J'},
{"block-link-dst-addr", required_argument, 0, 'K'},
{"accept-src-addr", required_argument, 0, 'b'},
{"accept-dst-addr", required_argument, 0, 'g'},
{"accept-link-src-addr", required_argument, 0, 'B'},
{"accept-link-dst-addr", required_argument, 0, 'G'},
{"flood-sources", required_argument, 0, 'F'},
{"flood-ports", required_argument, 0, 'T'},
{"loop", no_argument, 0, 'l'},
{"rate-limit", required_argument, 0, 'r'},
{"sleep", required_argument, 0, 'z'},
{"listen", no_argument, 0, 'L'},
{"probe-mode", required_argument, 0, 'p'},
{"retrans", required_argument, 0, 'x'},
{"verbose", no_argument, 0, 'v'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0 }
};
char shortopts[]= "i:s:d:A:c:C:Z:u:U:H:y:S:D:P:o:a:X:q:Q:V:w:W:M:Nnj:k:J:K:b:g:B:G:F:T:lr:z:Lp:x:vh";
char option;
if(argc<=1){
usage();
exit(EXIT_FAILURE);
}
hoplimit=255;
pktinterval= 0;
lastprobe.tv_sec= 0;
lastprobe.tv_usec= 0;
/* Initialize filters structure */
if(init_filters(&filters) == -1){
puts("Error initializing internal data structure");
exit(EXIT_FAILURE);
}
if(init_iface_data(&idata) == FAILURE){
puts("Error initializing internal data structure");
exit(EXIT_FAILURE);
}
while((r=getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
option= r;
switch(option){
case 'i': /* Interface */
strncpy(idata.iface, optarg, IFACE_LENGTH-1);
idata.iface[IFACE_LENGTH-1]=0;
idata.ifindex= if_nametoindex(idata.iface);
idata.iface_f=TRUE;
break;
case 's': /* IPv6 Source Address */
if(idata.srcaddr_f){
puts("Error: Multiple '-s' options have been specified");
exit(EXIT_FAILURE);
}
if((charptr = strtok_r(optarg, "/", &lasts)) == NULL){
puts("Error in Source Address");
exit(EXIT_FAILURE);
}
if ( inet_pton(AF_INET6, charptr, &(idata.srcaddr)) <= 0){
puts("inet_pton(): Source Address not valid");
exit(EXIT_FAILURE);
}
idata.srcaddr_f = 1;
if((charptr = strtok_r(NULL, " ", &lasts)) != NULL){
idata.srcpreflen = atoi(charptr);
if(idata.srcpreflen>128){
puts("Prefix length error in IPv6 Source Address");
exit(EXIT_FAILURE);
}
if(idata.srcpreflen == 64)
useaddrkey_f= 1;
sanitize_ipv6_prefix(&(idata.srcaddr), idata.srcpreflen);
idata.srcprefix_f=1;
}
break;
case 'd': /* IPv6 Destination Address */
strncpy( targetipv6.name, optarg, NI_MAXHOST);
targetipv6.name[NI_MAXHOST-1]= 0;
targetipv6.flags= AI_CANONNAME;
if( (r=get_ipv6_target(&targetipv6)) != 0){
if(r < 0){
printf("Unknown Destination: %s\n", gai_strerror(targetipv6.res));
}
else{
puts("Unknown Destination: No IPv6 address found for specified destination");
}
exit(1);
}
idata.dstaddr= targetipv6.ip6;
idata.dstaddr_f = 1;
break;
case 'A': /* Hop Limit */
hoplimit= atoi(optarg);
hoplimit_f=1;
break;
case 'c':
if(strncmp(optarg, "simultaneous", MAX_CMDLINE_OPT_LEN) == 0){
tcpopen= OPEN_SIMULTANEOUS;
}
else if(strncmp(optarg, "passive", MAX_CMDLINE_OPT_LEN) == 0){
tcpopen= OPEN_PASSIVE;
}
else if(strncmp(optarg, "abort", MAX_CMDLINE_OPT_LEN) == 0){
tcpopen= OPEN_ABORT;
}
else if(strncmp(optarg, "active", MAX_CMDLINE_OPT_LEN) == 0){
tcpopen= OPEN_ACTIVE;
}
else{
puts("Error: Unknown open mode in '-c' option");
exit(EXIT_FAILURE);
}
tcpopen_f=1;
break;
case 'C':
if(strncmp(optarg, "simultaneous", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_SIMULTANEOUS;
}
else if(strncmp(optarg, "passive", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_PASSIVE;
}
else if(strncmp(optarg, "abort", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_ABORT;
}
else if(strncmp(optarg, "active", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_ACTIVE;
}
else if( strncmp(optarg, "fin-wait-1", MAX_CMDLINE_OPT_LEN) == 0 || \
strncmp(optarg, "FIN-WAIT-1", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_FIN_WAIT_1;
}
else if( strncmp(optarg, "fin-wait-2", MAX_CMDLINE_OPT_LEN) == 0 || \
strncmp(optarg, "FIN-WAIT-2", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_FIN_WAIT_2;
}
else if( strncmp(optarg, "last-ack", MAX_CMDLINE_OPT_LEN) == 0 || \
strncmp(optarg, "LAST-ACK", MAX_CMDLINE_OPT_LEN) == 0){
tcpclose= CLOSE_LAST_ACK;
}
else{
puts("Error: Unknown close option ('-C')");
exit(EXIT_FAILURE);
}
tcpclose_f=1;
break;
case 'Z': /* Data */
datalen= Strnlen(optarg, MAX_CMDLINE_OPT_LEN);
if(datalen >= DATA_BUFFER_LEN)
datalen= DATA_BUFFER_LEN-1;
strncpy(data, optarg, DATA_BUFFER_LEN-1);
data_f=1;
break;
case 'u': /* Destinations Options Header */
if(ndstopthdr >= MAX_DST_OPT_HDR){
puts("Too many Destination Options Headers");
exit(EXIT_FAILURE);
}
hdrlen= atoi(optarg);
if(hdrlen < 8){
puts("Bad length in Destination Options Header");
exit(EXIT_FAILURE);
}
hdrlen = ((hdrlen+7)/8) * 8;
dstopthdrlen[ndstopthdr]= hdrlen;
if( (dstopthdr[ndstopthdr]= malloc(hdrlen)) == NULL){
puts("Not enough memory for Destination Options Header");
exit(EXIT_FAILURE);
}
ptrhdr= dstopthdr[ndstopthdr] + 2;
ptrhdrend= dstopthdr[ndstopthdr] + hdrlen;
while( ptrhdr < ptrhdrend){
if( (ptrhdrend-ptrhdr)>257)
pad= 257;
else
pad= ptrhdrend-ptrhdr;
if(!insert_pad_opt(ptrhdr, ptrhdrend, pad)){
puts("Destination Options Header Too Big");
exit(EXIT_FAILURE);
}
ptrhdr= ptrhdr + pad;
}
*(dstopthdr[ndstopthdr]+1)= (hdrlen/8)-1;
ndstopthdr++;
dstopthdr_f=1;
break;
case 'U': /* Destination Options Header (Unfragmentable Part) */
if(ndstoptuhdr >= MAX_DST_OPT_U_HDR){
puts("Too many Destination Options Headers (Unfragmentable Part)");
exit(EXIT_FAILURE);
}
hdrlen= atoi(optarg);
if(hdrlen < 8){
puts("Bad length in Destination Options Header (Unfragmentable Part)");
exit(EXIT_FAILURE);
}
hdrlen = ((hdrlen+7)/8) * 8;
dstoptuhdrlen[ndstoptuhdr]= hdrlen;
if( (dstoptuhdr[ndstoptuhdr]= malloc(hdrlen)) == NULL){
puts("Not enough memory for Destination Options Header (Unfragmentable Part)");
exit(EXIT_FAILURE);
}
ptrhdr= dstoptuhdr[ndstoptuhdr]+2;
ptrhdrend= dstoptuhdr[ndstoptuhdr] + hdrlen;
while( ptrhdr < ptrhdrend){
if( (ptrhdrend-ptrhdr)>257)
pad= 257;
else
pad= ptrhdrend-ptrhdr;
if(!insert_pad_opt(ptrhdr, ptrhdrend, pad)){
puts("Destination Options Header (Unfragmentable Part) Too Big");
exit(EXIT_FAILURE);
}
ptrhdr = ptrhdr + pad;
}
*(dstoptuhdr[ndstoptuhdr]+1)= (hdrlen/8) - 1;
ndstoptuhdr++;
dstoptuhdr_f=1;
break;
case 'H': /* Hop-by-Hop Options Header */
if(nhbhopthdr >= MAX_HBH_OPT_HDR){
puts("Too many Hop-by-Hop Options Headers");
exit(EXIT_FAILURE);
}
hdrlen= atoi(optarg);
if(hdrlen < 8){
puts("Bad length in Hop-by-Hop Options Header");
exit(EXIT_FAILURE);
}
hdrlen = ((hdrlen+7)/8) * 8;
hbhopthdrlen[nhbhopthdr]= hdrlen;
if( (hbhopthdr[nhbhopthdr]= malloc(hdrlen)) == NULL){
puts("Not enough memory for Hop-by-Hop Options Header");
exit(EXIT_FAILURE);
}
ptrhdr= hbhopthdr[nhbhopthdr] + 2;
ptrhdrend= hbhopthdr[nhbhopthdr] + hdrlen;
while( ptrhdr < ptrhdrend){
if( (ptrhdrend-ptrhdr)>257)
pad= 257;
else
pad= ptrhdrend-ptrhdr;
if(!insert_pad_opt(ptrhdr, ptrhdrend, pad)){
puts("Hop-by-Hop Options Header Too Big");
exit(EXIT_FAILURE);
}
ptrhdr = ptrhdr + pad;
}
*(hbhopthdr[nhbhopthdr]+1)= (hdrlen/8) - 1;
nhbhopthdr++;
hbhopthdr_f=1;
break;
case 'y': /* Fragment header */
nfrags= atoi(optarg);
if(nfrags < 8){
puts("Error in Fragmentation option: Fragment Size must be at least 8 bytes");
exit(EXIT_FAILURE);
}
nfrags = (nfrags +7) & 0xfff8;
idata.fragh_f= 1;
break;
case 'S': /* Source Ethernet address */
if(ether_pton(optarg, &(idata.hsrcaddr), sizeof(idata.hsrcaddr)) == 0){
puts("Error in Source link-layer address.");
exit(EXIT_FAILURE);
}
idata.hsrcaddr_f = 1;
break;
case 'D': /* Destination Ethernet Address */
if(ether_pton(optarg, &(idata.hdstaddr), sizeof(idata.hdstaddr)) == 0){
puts("Error in Source link-layer address.");
exit(EXIT_FAILURE);
}
idata.hdstaddr_f = 1;
break;
case 'P': /* Payload Size*/
rhbytes= atoi(optarg);
rhbytes_f= 1;
break;
case 'o': /* TCP Source Port */
srcport= atoi(optarg);
srcport_f= 1;
break;
case 'a': /* TCP Destination Port */
dstport= atoi(optarg);
dstport_f= 1;
break;
case 'X':
if(strncmp(optarg, "auto", 4) == 0){
tcpflags_auto_f=1;
break;
}
charptr = optarg;
while(*charptr){
switch(*charptr){
case 'F':
tcpflags= tcpflags | TH_FIN;
break;
case 'S':
tcpflags= tcpflags | TH_SYN;
break;
case 'R':
tcpflags= tcpflags | TH_RST;
break;
case 'P':
tcpflags= tcpflags | TH_PUSH;
break;
case 'A':
tcpflags= tcpflags | TH_ACK;
break;
case 'U':
tcpflags= tcpflags | TH_URG;
break;
case 'X': /* No TCP flags */
break;
default:
printf("Unknown TCP flag '%c'\n", *charptr);
exit(EXIT_FAILURE);
break;
}
if(*charptr == 'X')
break;
charptr++;
}
tcpflags_f=1;
break;
case 'q': /* TCP Sequence Number */
if((ul_res = strtoul(optarg, &endptr, 0)) == ULONG_MAX){
perror("Error in 'TCP Sequence NUmber' parameter");
exit(EXIT_FAILURE);
}
if(endptr != optarg){
tcpseq = ul_res;
tcpseq_f=1;
}
break;
case 'Q': /* TCP Acknowledgement Number */
if((ul_res = strtoul(optarg, &endptr, 0)) == ULONG_MAX){
perror("Error in 'TCP Sequence NUmber' parameter");
exit(EXIT_FAILURE);
}
if(endptr != optarg){
tcpack = ul_res;
tcpack_f=1;
}
break;
case 'V': /* TCP Urgent Pointer */
tcpurg= atoi(optarg);
tcpurg_f= 1;
break;
case 'w': /* TCP Window */
tcpwin= atoi(optarg);
tcpwin_f=1;
break;
case 'W': /* TCP Window */
if(strncmp(optarg, "close", MAX_CMDLINE_OPT_LEN) == 0 || strncmp(optarg, "closed", MAX_CMDLINE_OPT_LEN) == 0){
window= WIN_CLOSED;
}
else if(strncmp(optarg, "modulate", MAX_CMDLINE_OPT_LEN) == 0 || strncmp(optarg, "modulation", MAX_CMDLINE_OPT_LEN) == 0){
window= WIN_MODULATE;
}
else{
puts("Error: Unknown window option ('-W')");
exit(EXIT_FAILURE);
}
window_f=1;
break;
case 'M':
sscanf(optarg, "%u:%u:%u:%u", &win1_size, &time1_len, &win2_size, &time2_len);
winmodulate_f= 1;
break;
case 'N': /* Do not ack data */
ackdata_f= 0;
break;
case 'n': /* Do not ack flags */
ackflags_f= 0;
break;
case 'j': /* IPv6 Source Address (block) filter */
if(filters.nblocksrc >= MAX_BLOCK_SRC){
puts("Too many IPv6 Source Address (block) filters.");
exit(EXIT_FAILURE);
}
if((pref = strtok_r(optarg, "/", &lasts)) == NULL){
printf("Error in IPv6 Source Address (block) filter number %u.\n", \
filters.nblocksrc+1);
exit(EXIT_FAILURE);
}
if ( inet_pton(AF_INET6, pref, &(filters.blocksrc[filters.nblocksrc])) <= 0){
printf("Error in IPv6 Source Address (block) filter number %u.", \
filters.nblocksrc+1);
exit(EXIT_FAILURE);
}
if((charptr = strtok_r(NULL, " ", &lasts)) == NULL){
filters.blocksrclen[filters.nblocksrc] = 128;
}
else{
filters.blocksrclen[filters.nblocksrc] = atoi(charptr);
if(filters.blocksrclen[filters.nblocksrc]>128){
printf("Length error in IPv6 Source Address (block) filter number %u.\n", \
filters.nblocksrc+1);
exit(EXIT_FAILURE);
}
}
sanitize_ipv6_prefix(&(filters.blocksrc[filters.nblocksrc]), filters.blocksrclen[filters.nblocksrc]);
(filters.nblocksrc)++;
break;
case 'k': /* IPv6 Destination Address (block) filter */
if(filters.nblockdst >= MAX_BLOCK_DST){
puts("Too many IPv6 Destination Address (block) filters.");
exit(EXIT_FAILURE);
}
if((pref = strtok_r(optarg, "/", &lasts)) == NULL){
printf("Error in IPv6 Destination Address (block) filter number %u.\n", \
filters.nblockdst+1);
exit(EXIT_FAILURE);
}
if ( inet_pton(AF_INET6, pref, &(filters.blockdst[filters.nblockdst])) <= 0){
printf("Error in IPv6 Source Address (block) filter number %u.", \
filters.nblockdst+1);
exit(EXIT_FAILURE);
}
if((charptr = strtok_r(NULL, " ", &lasts)) == NULL){
filters.blockdstlen[filters.nblockdst] = 128;
}
else{
filters.blockdstlen[filters.nblockdst] = atoi(charptr);
if(filters.blockdstlen[filters.nblockdst]>128){
printf("Length error in IPv6 Source Address (block) filter number %u.\n", \
filters.nblockdst+1);
exit(EXIT_FAILURE);
}
}
sanitize_ipv6_prefix(&(filters.blockdst[filters.nblockdst]), filters.blockdstlen[filters.nblockdst]);
(filters.nblockdst)++;
break;
case 'J': /* Link Source Address (block) filter */
if(filters.nblocklinksrc > MAX_BLOCK_LINK_SRC){
puts("Too many link-layer Source Address (accept) filters.");
exit(EXIT_FAILURE);
}
if(ether_pton(optarg, &(filters.blocklinksrc[filters.nblocklinksrc]), sizeof(struct ether_addr)) == 0){
printf("Error in link-layer Source Address (blick) filter number %u.\n", \
filters.nblocklinksrc+1);
exit(EXIT_FAILURE);
}
(filters.nblocklinksrc)++;
break;
case 'K': /* Link Destination Address (block) filter */
if(filters.nblocklinkdst > MAX_BLOCK_LINK_DST){
puts("Too many link-layer Destination Address (block) filters.");
exit(EXIT_FAILURE);
}
if(ether_pton(optarg, &(filters.blocklinkdst[filters.nblocklinkdst]), sizeof(struct ether_addr)) == 0){
printf("Error in link-layer Destination Address (blick) filter number %u.\n", \
filters.nblocklinkdst+1);
exit(EXIT_FAILURE);
}
filters.nblocklinkdst++;
break;
case 'b': /* IPv6 Source Address (accept) filter */
if(filters.nacceptsrc > MAX_ACCEPT_SRC){
puts("Too many IPv6 Source Address (accept) filters.");
exit(EXIT_FAILURE);
}
if((pref = strtok_r(optarg, "/", &lasts)) == NULL){
printf("Error in IPv6 Source Address (accept) filter number %u.\n", \
filters.nacceptsrc+1);
exit(EXIT_FAILURE);
}
if ( inet_pton(AF_INET6, pref, &(filters.acceptsrc[filters.nacceptsrc])) <= 0){
printf("Error in IPv6 Source Address (accept) filter number %u.\n", \
filters.nacceptsrc+1);
exit(EXIT_FAILURE);
}
if((charptr = strtok_r(NULL, " ", &lasts)) == NULL){
filters.acceptsrclen[filters.nacceptsrc] = 128;
}
else{
filters.acceptsrclen[filters.nacceptsrc] = atoi(charptr);
if(filters.acceptsrclen[filters.nacceptsrc]>128){
printf("Length error in IPv6 Source Address (accept) filter number %u.\n", \
filters.nacceptsrc+1);
exit(EXIT_FAILURE);
}
}
sanitize_ipv6_prefix(&(filters.acceptsrc[filters.nacceptsrc]), filters.acceptsrclen[filters.nacceptsrc]);
(filters.nacceptsrc)++;
filters.acceptfilters_f=1;
break;
case 'g': /* IPv6 Destination Address (accept) filter */
if(filters.nacceptdst > MAX_ACCEPT_DST){
puts("Too many IPv6 Destination Address (accept) filters.");
exit(EXIT_FAILURE);
}
if((pref = strtok_r(optarg, "/", &lasts)) == NULL){
printf("Error in IPv6 Destination Address (accept) filter number %u.\n", \
filters.nacceptdst+1);
exit(EXIT_FAILURE);
}
if ( inet_pton(AF_INET6, pref, &(filters.acceptdst[filters.nacceptdst])) <= 0){
printf("Error in IPv6 Source Address (accept) filter number %u.\n", \
filters.nacceptdst+1);
exit(EXIT_FAILURE);
}
if((charptr = strtok_r(NULL, " ", &lasts)) == NULL){
filters.acceptdstlen[filters.nacceptdst] = 128;
}
else{
filters.acceptdstlen[filters.nacceptdst] = atoi(charptr);
if(filters.acceptdstlen[filters.nacceptdst] > 128){
printf("Length error in IPv6 Source Address (accept) filter number %u.\n", \
filters.nacceptdst+1);
exit(EXIT_FAILURE);
}
}
sanitize_ipv6_prefix(&(filters.acceptdst[filters.nacceptdst]), filters.acceptdstlen[filters.nacceptdst]);
(filters.nacceptdst)++;
filters.acceptfilters_f=1;
break;
case 'B': /* Link-layer Source Address (accept) filter */
if(filters.nacceptlinksrc > MAX_ACCEPT_LINK_SRC){
puts("Too many link-later Source Address (accept) filters.");
exit(EXIT_FAILURE);
}
if(ether_pton(optarg, &(filters.acceptlinksrc[filters.nacceptlinksrc]), sizeof(struct ether_addr)) == 0){
printf("Error in link-layer Source Address (accept) filter number %u.\n", \
filters.nacceptlinksrc+1);
exit(EXIT_FAILURE);
}
(filters.nacceptlinksrc)++;
filters.acceptfilters_f=1;
break;
case 'G': /* Link Destination Address (accept) filter */
if(filters.nacceptlinkdst > MAX_ACCEPT_LINK_DST){
puts("Too many link-layer Destination Address (accept) filters.");
exit(EXIT_FAILURE);
}
if(ether_pton(optarg, &(filters.acceptlinkdst[filters.nacceptlinkdst]), sizeof(struct ether_addr)) == 0){
printf("Error in link-layer Destination Address (accept) filter number %u.\n",\
filters.nacceptlinkdst+1);
exit(EXIT_FAILURE);
}
(filters.nacceptlinkdst)++;
filters.acceptfilters_f=1;
break;
case 'F': /* Flood source addresses */
nsources= atoi(optarg);
if(nsources == 0){
puts("Invalid number of source addresses in option -F");
exit(EXIT_FAILURE);
}
floods_f= 1;
break;
case 'T': /* Flood source ports */
nports= atoi(optarg);
if(nports == 0){
puts("Invalid number of source ports in option -T");
exit(EXIT_FAILURE);
}
floodp_f= 1;
break;
case 'l': /* "Loop mode */
loop_f = 1;
break;
case 'r':
if( Strnlen(optarg, LINE_BUFFER_SIZE-1) >= (LINE_BUFFER_SIZE-1)){
puts("tcp6: -r option is too long");
exit(EXIT_FAILURE);
}
sscanf(optarg, "%lu%s", &rate, line);
line[LINE_BUFFER_SIZE-1]=0;
if(strncmp(line, "pps", 3) == 0)
pps_f=1;
else if(strncmp(line, "bps", 3) == 0)
bps_f=1;
else{
puts("tcp6: Unknown unit of for the rate limit ('-r' option). Unit should be 'bps' or 'pps'");
exit(EXIT_FAILURE);
}
break;
case 'z': /* Sleep option */
nsleep=atoi(optarg);
if(nsleep==0){
puts("Invalid number of seconds in '-z' option");
exit(EXIT_FAILURE);
}
sleep_f=1;
break;
case 'L': /* "Listen mode */
listen_f = 1;
break;
case 'p': /* Probe mode */
if(strncmp(optarg, "dump", MAX_CMDLINE_OPT_LEN) == 0){
probemode= PROBE_DUMP;
}
else if(strncmp(optarg, "script", MAX_CMDLINE_OPT_LEN) == 0){
probemode= PROBE_SCRIPT;
}
else{
puts("Error: Unknown open mode in '-Y' option");
exit(EXIT_FAILURE);
}
probemode_f=1;
break;
case 'x': /* Number of retrnasmissions */
retrans= atoi(optarg);
retrans_f=1;
break;
case 'v': /* Be verbose */
(idata.verbose_f)++;
break;
case 'h': /* Help */
print_help();
exit(EXIT_FAILURE);
break;
default:
usage();
exit(EXIT_FAILURE);
break;
} /* switch */
} /* while(getopt) */
if(geteuid()) {
puts("tcp6 needs root privileges to run.");
exit(EXIT_FAILURE);
}
srandom(time(NULL));
/*
If the flood option ("-F") has been specified, but no prefix has been specified,
assume a /64 prefix.
*/
if(floods_f && !idata.srcprefix_f){
idata.srcpreflen=64;
}
if(idata.srcprefix_f && !floods_f && loop_f){
floods_f=1;
nsources= 1;
}
if(!(idata.dstaddr_f) && !listen_f){ /* Must specify IPv6 Destination Address if listening mode not used */
puts("IPv6 Destination Address not specified (and listening mode not selected)");
exit(EXIT_FAILURE);
}
if(rhbytes_f && data_f){
puts("Cannot set '--data' and '--payload-size' at the same time");
exit(EXIT_FAILURE);
}
if(!idata.iface_f){
if(idata.dstaddr_f && IN6_IS_ADDR_LINKLOCAL(&(idata.dstaddr))){
puts("Must specify a network interface for link-local destinations");
exit(EXIT_FAILURE);
}
else if(listen_f){
puts("Must specify a network interface when employing the 'listenging' mode");
exit(EXIT_FAILURE);
}
}
if(load_dst_and_pcap(&idata, (idata.dstaddr_f?LOAD_SRC_NXT_HOP:LOAD_PCAP_ONLY)) == FAILURE){
puts("Error while learning Souce Address and Next Hop");
exit(EXIT_FAILURE);
}
release_privileges();
if(data_f){
data[datalen]=0;
if(!string_escapes(data, &datalen, DATA_BUFFER_LEN-1)){
puts("Error in data string option ('-Z')");
exit(EXIT_FAILURE);
}
data[datalen]=0;
}
if(!floods_f)
nsources=1;
if(!floodp_f)
nports=1;
if(!sleep_f)
nsleep=1;
if(sleep_f && (pps_f || bps_f)){
puts("Cannot specify a rate-limit (-r) and a sleep time at the same time");
exit(EXIT_FAILURE);
}
if(pps_f && bps_f){
puts("Cannot specify a rate-limit in bps and pps at the same time");
exit(EXIT_FAILURE);
}
if(pps_f){
if(rate < 1)
rate=1;
pktinterval= 1000000/rate;
}
if(bps_f){
packetsize= MIN_IPV6_HLEN + sizeof(struct tcp_hdr) + rhbytes;
for(i=0; i < ndstopthdr; i++)
packetsize+= dstopthdrlen[i];
for(i=0; i < ndstoptuhdr; i++)
packetsize+= dstoptuhdrlen[i];
for(i=0; i < nhbhopthdr; i++)
packetsize+= hbhopthdrlen[i];
if(idata.fragh_f)
packetsize+= sizeof(struct ip6_frag);
if(rate == 0 || ((packetsize * 8)/rate) <= 0)
pktinterval= 1000000;
else
pktinterval= ((packetsize * 8)/rate) * 1000000;
}
/* We Default to 1000 pps */
if(!pps_f && !bps_f)
pktinterval= 1000;
if( !idata.fragh_f && dstoptuhdr_f){
puts("Dst. Options Header (Unfragmentable Part) set, but Fragmentation not specified");
exit(EXIT_FAILURE);
}
/*
* If we are going to send packets to a specified target, we must set some default values
*/
if(idata.dstaddr_f){
if(!tcpflags_auto_f && !tcpflags_f && !tcpopen_f && !tcpclose_f)
tcpflags= tcpflags | TH_ACK;
if(!tcpack_f)
tcpack= random();
if(!tcpseq_f)
tcpseq= random();
if(!srcport_f)
srcport= random();
if(!dstport_f)
dstport= random();
if(!tcpurg_f)
tcpurg= 0;
}
/* By default, we randomize the TCP Window */
if(!tcpwin_f)
tcpwin= ((uint16_t) random() + 1500) & (uint16_t)0x7f00;
if(!rhbytes_f)
rhbytes=0;
if(idata.verbose_f){
print_attack_info(&idata);
}
/*
Set filter for IPv6 packets (find_ipv6_router() set its own filter fore receiving RAs)
*/
if(pcap_compile(idata.pfd, &pcap_filter, PCAP_TCPIPV6_NS_FILTER, PCAP_OPT, PCAP_NETMASK_UNKNOWN) == -1){
printf("pcap_compile(): %s", pcap_geterr(idata.pfd));
exit(EXIT_FAILURE);
}
if(pcap_setfilter(idata.pfd, &pcap_filter) == -1){
printf("pcap_setfilter(): %s", pcap_geterr(idata.pfd));
exit(EXIT_FAILURE);
}
pcap_freecode(&pcap_filter);
/* Set initial contents of the attack packet */
init_packet_data(&idata);
addr_key= random();
if(sleep_f)
pktinterval= (nsleep * 1000000)/(nsources * nports);
timeout.tv_sec= pktinterval / 1000000;
timeout.tv_usec= pktinterval % 1000000;
stimeout= timeout;
if(window_f){
if(window == WIN_MODULATE && !winmodulate_f){
win1_size= WIN_MODULATE_CLOSED_SIZE;
time1_len= WIN_MODULATE_CLOSED_LEN;
win2_size= WIN_MODULATE_OPEN_SIZE;
time2_len= WIN_MODULATE_OPEN_LEN;
}
}
if(window_f && window == WIN_MODULATE){
if(gettimeofday(&wmtimeout, NULL) == -1){
if(idata.verbose_f)
perror("tcp6");
exit(EXIT_FAILURE);
}
tcpwinm= win1_size;
}
if(probemode_f){
end_f=0;
if(!dstport_f)
dstport= 80;
if(!srcport_f)
srcport= 50000 + random() % 15000; /* We select ports from the "high ports" range */
if(!rto_f)
rto=1;
if(!retrans_f)
retrans=0;
retr=0;
retrans++;
FD_ZERO(&sset);
FD_SET(idata.fd, &sset);
lastprobe.tv_sec= 0;
lastprobe.tv_usec=0;
while(!end_f){
if(gettimeofday(&curtime, NULL) == -1){
if(idata.verbose_f)
perror("tcp6");
exit(EXIT_FAILURE);
}
if(is_time_elapsed(&curtime, &lastprobe, rto * 1000000) && retr < retrans){
retr++;
lastprobe= curtime;
send_packet(&idata, NULL, NULL);
}
if(is_time_elapsed(&curtime, &lastprobe, rto * 1000000) && retr >= retrans){
end_f=1;
break;
}
rset= sset;
timeout.tv_usec=0;
timeout.tv_sec= (rto < 1)?rto:1;
if((sel=select(idata.fd+1, &rset, NULL, NULL, &timeout)) == -1){
if(errno == EINTR){
continue;
}
else{
puts("Error in select()");
exit(EXIT_FAILURE);
}
}
#if !defined(sun) && !defined(__sun) && !defined(__linux__)
if(sel && FD_ISSET(idata.fd, &rset)){
#else
if(TRUE){
#endif
/* Read a packet */
if((r=pcap_next_ex(idata.pfd, &pkthdr, &pktdata)) == -1){
printf("pcap_next_ex(): %s", pcap_geterr(idata.pfd));
exit(EXIT_FAILURE);
}
else if(r == 1 && pktdata != NULL){
pkt_ether = (struct ether_header *) pktdata;
pkt_ipv6 = (struct ip6_hdr *)((char *) pkt_ether + idata.linkhsize);
pkt_tcp= (struct tcp_hdr *) ( (char *) pkt_ipv6 + MIN_IPV6_HLEN);
pkt_ns= (struct nd_neighbor_solicit *) ( (char *) pkt_ipv6 + MIN_IPV6_HLEN);
pkt_end = (unsigned char *) pktdata + pkthdr->caplen;
pkt_tcp_flags= pkt_tcp->th_flags;
/* Check that we are able to look into the IPv6 header */
if( (pkt_end - pktdata) < (idata.linkhsize + MIN_IPV6_HLEN))
continue;
if(is_eq_in6_addr(&(pkt_ipv6->ip6_src), &(idata.srcaddr))){
continue;
}
if(!is_eq_in6_addr(&(pkt_ipv6->ip6_dst), &(idata.srcaddr))){
continue;
}
if(pkt_tcp->th_sport != htons(dstport)){
continue;
}
if(pkt_tcp->th_dport != htons(srcport)){
continue;
}
/* The TCP checksum must be valid */
if(in_chksum(pkt_ipv6, pkt_tcp, pkt_end-((unsigned char *)pkt_tcp), IPPROTO_TCP) != 0)
continue;
printf("RESPONSE:TCP6:%s%s%s%s%s%s:\n", ((pkt_tcp_flags & TH_FIN)?"F":""), \
((pkt_tcp_flags & TH_SYN)?"S":""), \
((pkt_tcp_flags & TH_RST)?"R":""), ((pkt_tcp_flags & TH_PUSH)?"P":""),\
((pkt_tcp_flags & TH_ACK)?"A":""), ((pkt_tcp_flags & TH_URG)?"U":""));
exit(EXIT_SUCCESS);
}
}
}
puts("RESPONSE:TIMEOUT:");
exit(EXIT_SUCCESS);
}
/* Fire a TCP segment if an IPv6 Destination Address was specified */
if(!listen_f && idata.dstaddr_f){
if(loop_f){
if(idata.verbose_f)
printf("Sending TCP segments every %u second%s...\n", nsleep, \
((nsleep>1)?"s":""));
}
do{
send_packet(&idata, NULL, NULL);
if(loop_f && (sel=select(0, NULL, NULL, NULL, &timeout)) == -1){
if(errno == EINTR){
continue;
}
else{
puts("Error in select()");
exit(EXIT_FAILURE);
}
}
}while(loop_f);
if(idata.verbose_f)
puts("Initial attack packet(s) sent successfully.");
exit(EXIT_SUCCESS);
}
else if(listen_f){
FD_ZERO(&sset);
FD_SET(idata.fd, &sset);
if(idata.verbose_f){
print_filters(&idata, &filters);
puts("Listening to incoming IPv6 messages...");
}
while(listen_f){
rset= sset;
timeout= stimeout;
#if !defined(sun) && !defined(__sun) && !defined(__linux__)
if((sel=select(idata.fd+1, &rset, NULL, NULL, ((floods_f || floodp_f) && !donesending_f)?(&timeout):NULL)) == -1){
#else
timeout.tv_usec=1000;
timeout.tv_sec= 0;
if((sel=select(idata.fd+1, &rset, NULL, NULL, &timeout)) == -1){
#endif
if(errno == EINTR){
continue;
}
else{
puts("Error in select()");
exit(EXIT_FAILURE);
}
}
/* If there are some bits set, we need to check whether it's time to send packets */
#if !defined(sun) && !defined(__sun) && !defined(__linux__)
if(sel){
#else
if(TRUE){
#endif
if(gettimeofday(&curtime, NULL) == -1){
if(idata.verbose_f)
perror("tcp6");
exit(EXIT_FAILURE);
}
if(window == WIN_MODULATE){
if(tcpwinm == win1_size){
if( (curtime.tv_sec - wmtimeout.tv_sec) >= time1_len){
wmtimeout= curtime;
tcpwinm = win2_size;
}
}
else{
if( (curtime.tv_sec - wmtimeout.tv_sec) >= time2_len){
wmtimeout= curtime;
tcpwinm = win1_size;
}
}
}
}
#if !defined(sun) && !defined(__sun) && !defined(__linux__)
if(sel && FD_ISSET(idata.fd, &rset)){
#else
if(TRUE){
#endif
/* Read a packet */
if((r=pcap_next_ex(idata.pfd, &pkthdr, &pktdata)) == -1){
printf("pcap_next_ex(): %s", pcap_geterr(idata.pfd));
exit(EXIT_FAILURE);
}
else if(r == 1 && pktdata != NULL){
pkt_ether = (struct ether_header *) pktdata;
pkt_ipv6 = (struct ip6_hdr *)((char *) pkt_ether + idata.linkhsize);
pkt_tcp= (struct tcp_hdr *) ( (char *) pkt_ipv6 + MIN_IPV6_HLEN);
pkt_ns= (struct nd_neighbor_solicit *) ( (char *) pkt_ipv6 + MIN_IPV6_HLEN);
pkt_end = (unsigned char *) pktdata + pkthdr->caplen;
/* Check that we are able to look into the IPv6 header */
if( (pkt_end - pktdata) < (idata.linkhsize + MIN_IPV6_HLEN))
continue;
accepted_f=0;
if(idata.type == DLT_EN10MB && !(idata.flags & IFACE_LOOPBACK)){
if(filters.nblocklinksrc){
if(match_ether(filters.blocklinksrc, filters.nblocklinksrc, &(pkt_ether->src))){
if(idata.verbose_f>1)
print_filter_result(&idata, pktdata, BLOCKED);
continue;
}
}
if(filters.nblocklinkdst){
if(match_ether(filters.blocklinkdst, filters.nblocklinkdst, &(pkt_ether->dst))){
if(idata.verbose_f>1)
print_filter_result(&idata, pktdata, BLOCKED);
continue;
}
}
}
if(filters.nblocksrc){
if(match_ipv6(filters.blocksrc, filters.blocksrclen, filters.nblocksrc, &(pkt_ipv6->ip6_src))){
if(idata.verbose_f>1)
print_filter_result(&idata, pktdata, BLOCKED);
continue;
}
}
if(filters.nblockdst){
if(match_ipv6(filters.blockdst, filters.blockdstlen, filters.nblockdst, &(pkt_ipv6->ip6_dst))){
if(idata.verbose_f>1)
print_filter_result(&idata, pktdata, BLOCKED);
continue;
}
}
if(idata.type == DLT_EN10MB && !(idata.flags & IFACE_LOOPBACK)){
if(filters.nacceptlinksrc){
if(match_ether(filters.acceptlinksrc, filters.nacceptlinksrc, &(pkt_ether->src)))
accepted_f=1;
}
if(filters.nacceptlinkdst && !accepted_f){
if(match_ether(filters.acceptlinkdst, filters.nacceptlinkdst, &(pkt_ether->dst)))
accepted_f= 1;
}
}
if(filters.nacceptsrc && !accepted_f){
if(match_ipv6(filters.acceptsrc, filters.acceptsrclen, filters.nacceptsrc, &(pkt_ipv6->ip6_src)))
accepted_f= 1;
}
if(filters.nacceptdst && !accepted_f){
if(match_ipv6(filters.acceptdst, filters.acceptdstlen, filters.nacceptdst, &(pkt_ipv6->ip6_dst)))
accepted_f=1;
}
if(filters.acceptfilters_f && !accepted_f){
if(idata.verbose_f>1)
print_filter_result(&idata, pktdata, BLOCKED);
continue;
}
if(idata.verbose_f>1)
print_filter_result(&idata, pktdata, ACCEPTED);
if(pkt_ipv6->ip6_nxt == IPPROTO_TCP){
/* Check that we are able to look into the TCP header */
if( (pkt_end - pktdata) < (idata.linkhsize + MIN_IPV6_HLEN + sizeof(struct tcp_hdr))){
continue;
}
if(idata.dstaddr_f){
if(!floods_f){
/* Discard our own packets */
if(is_eq_in6_addr(&(pkt_ipv6->ip6_src), &(idata.srcaddr))){
continue;
}
if(!is_eq_in6_addr(&(pkt_ipv6->ip6_dst), &(idata.srcaddr))){
continue;
}
}
else{
/* Discard our own packets */
if(!is_eq_in6_addr(&(pkt_ipv6->ip6_src), &(idata.dstaddr))){
continue;
}
if(useaddrkey_f){
if( (ntohl(pkt_ipv6->ip6_src.s6_addr32[2]) & 0x0000ffff) == ( (uint16_t)(ntohl(pkt_ipv6->ip6_src.s6_addr32[2])>>16) ^ addr_key) && \
(ntohl(pkt_ipv6->ip6_src.s6_addr32[3]) & 0x0000ffff) == ( (uint16_t)(ntohl(pkt_ipv6->ip6_src.s6_addr32[3])>>16) ^ addr_key)){
continue;
}
if( (ntohl(pkt_ipv6->ip6_dst.s6_addr32[2]) & 0x0000ffff) != ((uint16_t)(ntohl(pkt_ipv6->ip6_dst.s6_addr32[2]) >> 16) ^ addr_key) || \
(ntohl(pkt_ipv6->ip6_dst.s6_addr32[3]) & 0x0000ffff) != ((uint16_t)(ntohl(pkt_ipv6->ip6_dst.s6_addr32[3])>>16) ^ addr_key)){
continue;
}
}
}
/* The TCP checksum must be valid */
if(in_chksum(pkt_ipv6, pkt_tcp, pkt_end-((unsigned char *)pkt_tcp), IPPROTO_TCP) != 0)
continue;
if(pkt_tcp->th_sport != htons(dstport)){
continue;
}
if(!floodp_f && pkt_tcp->th_dport != htons(srcport)){
continue;
}
}
/* Send a TCP segment */
send_packet(&idata, pktdata, pkthdr);
}
else if(pkt_ipv6->ip6_nxt == IPPROTO_ICMPV6){
/* Check that we are able to look into the NS header */
if( (pkt_end - pktdata) < (idata.linkhsize + MIN_IPV6_HLEN + sizeof(struct nd_neighbor_solicit))){
continue;
}
if(idata.type == DLT_EN10MB && !(idata.flags & IFACE_LOOPBACK)){
if(floods_f){
if(useaddrkey_f){
if( (ntohl(pkt_ns->nd_ns_target.s6_addr32[2]) & 0x0000ffff) != ( (ntohl(pkt_ns->nd_ns_target.s6_addr32[2]) >>16) ^ addr_key) || \
(ntohl(pkt_ns->nd_ns_target.s6_addr32[3]) & 0x0000ffff) != ( (ntohl(pkt_ns->nd_ns_target.s6_addr32[3]) >>16) ^ addr_key)){
continue;
}
}
/* Check that the target address belongs to the prefix from which we are sending packets */
if(!match_ipv6(&(idata.srcaddr), &idata.srcpreflen, 1, &(pkt_ns->nd_ns_target))){
continue;
}
}
else{
if(!is_eq_in6_addr( &(pkt_ns->nd_ns_target), &(idata.srcaddr)) ){
continue;
}
}
if(send_neighbor_advert(&idata, idata.pfd, pktdata) == -1){
puts("Error sending Neighbor Advertisement");
exit(EXIT_FAILURE);
}
}
}
}
}
if(idata.dstaddr_f && !donesending_f && is_time_elapsed(&curtime, &lastprobe, pktinterval)){
lastprobe= curtime;
send_packet(&idata, NULL, NULL);
}
}
exit(EXIT_SUCCESS);
}
if(!(idata.dstaddr_f) && !listen_f){
puts("Error: Nothing to send! (Destination Address left unspecified, and not using listening mode)");
exit(EXIT_FAILURE);
}
exit(EXIT_SUCCESS);
}
/*
* Function: init_packet_data()
*
* Initialize the contents of the attack packet (Ethernet header, IPv6 Header, and ICMPv6 header)
* that are expected to remain constant for the specified attack.
*/
void init_packet_data(struct iface_data *idata){
struct dlt_null *dlt_null;
ethernet= (struct ether_header *) buffer;
dlt_null= (struct dlt_null *) buffer;
v6buffer = buffer + idata->linkhsize;
ipv6 = (struct ip6_hdr *) v6buffer;
if(idata->type == DLT_EN10MB){
ethernet->ether_type = htons(ETHERTYPE_IPV6);
if(!(idata->flags & IFACE_LOOPBACK)){
ethernet->src = idata->hsrcaddr;
ethernet->dst = idata->hdstaddr;
}
}
else if(idata->type == DLT_NULL){
dlt_null->family= PF_INET6;
}
#if defined (__OpenBSD__)
else if(idata->type == DLT_LOOP){
dlt_null->family= htonl(PF_INET6);
}
#endif
ipv6->ip6_flow=0;
ipv6->ip6_vfc= 0x60;
ipv6->ip6_hlim= hoplimit;
ipv6->ip6_src= idata->srcaddr;
ipv6->ip6_dst= idata->dstaddr;
prev_nh = (unsigned char *) &(ipv6->ip6_nxt);
ptr = (unsigned char *) v6buffer + MIN_IPV6_HLEN;
if(hbhopthdr_f){
hbhopthdrs=0;
while(hbhopthdrs < nhbhopthdr){
if((ptr+ hbhopthdrlen[hbhopthdrs]) > (v6buffer+ idata->mtu)){
puts("Packet too large while processing HBH Opt. Header");
exit(EXIT_FAILURE);
}
*prev_nh = IPPROTO_HOPOPTS;
prev_nh = ptr;
memcpy(ptr, hbhopthdr[hbhopthdrs], hbhopthdrlen[hbhopthdrs]);
ptr = ptr + hbhopthdrlen[hbhopthdrs];
hbhopthdrs++;
}
}
if(dstoptuhdr_f){
dstoptuhdrs=0;
while(dstoptuhdrs < ndstoptuhdr){
if((ptr+ dstoptuhdrlen[dstoptuhdrs]) > (v6buffer+ idata->mtu)){
puts("Packet too large while processing Dest. Opt. Header (Unfrag. Part)");
exit(EXIT_FAILURE);
}
*prev_nh = IPPROTO_DSTOPTS;
prev_nh = ptr;
memcpy(ptr, dstoptuhdr[dstoptuhdrs], dstoptuhdrlen[dstoptuhdrs]);
ptr = ptr + dstoptuhdrlen[dstoptuhdrs];
dstoptuhdrs++;
}
}
/* Everything that follows is the Fragmentable Part of the packet */
fragpart = ptr;
if(idata->fragh_f){
/* Check that we are able to send the Unfragmentable Part, together with a
Fragment Header and a chunk data over our link layer
*/
if( (fragpart+sizeof(fraghdr)+nfrags) > (v6buffer+idata->mtu)){
puts("Unfragmentable part too large for current MTU");
exit(EXIT_FAILURE);
}
/* We prepare a separete Fragment Header, but we do not include it in the packet to be sent.
This Fragment Header will be used (an assembled with the rest of the packet by the
send_packet() function.
*/
memset(&fraghdr, 0, FRAG_HDR_SIZE);
*prev_nh = IPPROTO_FRAGMENT;
prev_nh = (unsigned char *) &fraghdr;
}
if(dstopthdr_f){
dstopthdrs=0;
while(dstopthdrs < ndstopthdr){
if((ptr+ dstopthdrlen[dstopthdrs]) > (v6buffer+ idata->max_packet_size)){
puts("Packet too large while processing Dest. Opt. Header (should be using the Frag. option?)");
exit(EXIT_FAILURE);
}
*prev_nh = IPPROTO_DSTOPTS;
prev_nh = ptr;
memcpy(ptr, dstopthdr[dstopthdrs], dstopthdrlen[dstopthdrs]);
ptr = ptr + dstopthdrlen[dstopthdrs];
dstopthdrs++;
}
}
*prev_nh = IPPROTO_TCP;
startofprefixes=ptr;
}
/*
* Function: send_packet()
*
* Initialize the remaining fields of the TCP segment, and send the attack packet(s).
*/
void send_packet(struct iface_data *idata, const u_char *pktdata, struct pcap_pkthdr *pkthdr){
static unsigned int sources=0, ports=0;
ptr=startofprefixes;
startclose_f= 0;
senddata_f= 0;
if(pktdata != NULL){ /* Sending a TCP segment in response to a received packet */
pkt_ether = (struct ether_header *) pktdata;
pkt_ipv6 = (struct ip6_hdr *)((char *) pkt_ether + idata->linkhsize);
pkt_tcp= (struct tcp_hdr *)( (char *) pkt_ipv6 + sizeof(struct ip6_hdr));
pkt_end = (unsigned char *) pktdata + pkthdr->caplen;
/* The packet length is the minimum of what we capured, and what is specified in the
IPv6 Total Lenght field
*/
if( pkt_end > ((unsigned char *)pkt_ipv6 + sizeof(struct ip6_hdr) + pkt_ipv6->ip6_plen) )
pkt_end = (unsigned char *)pkt_ipv6 + sizeof(struct ip6_hdr) + pkt_ipv6->ip6_plen;
pkt_ipv6addr = &(pkt_ipv6->ip6_src);
/*
We don't send any packets if the Source Address of the captured packet is the unspecified
address or a multicast address
*/
if(IN6_IS_ADDR_UNSPECIFIED(pkt_ipv6addr) || IN6_IS_ADDR_MULTICAST(pkt_ipv6addr)){
return;
}
else{
ipv6->ip6_dst = pkt_ipv6->ip6_src;
if(idata->type == DLT_EN10MB && !(idata->flags & IFACE_LOOPBACK))
ethernet->dst = pkt_ether->src;
}
pkt_ipv6addr = &(pkt_ipv6->ip6_dst);
/*
We do not send any packets if the Destination Address of the captured packet is the unspecified
address or a multicast address
*/
if(IN6_IS_ADDR_MULTICAST(pkt_ipv6addr) || IN6_IS_ADDR_MULTICAST(pkt_ipv6addr)){
return;
}
else{
ipv6->ip6_src = pkt_ipv6->ip6_dst;
if(idata->type == DLT_EN10MB && !(idata->flags & IFACE_LOOPBACK))
ethernet->src = pkt_ether->dst;
}
if( (ptr+sizeof(struct tcp_hdr)) > (v6buffer+ idata->max_packet_size)){
puts("Packet Too Large while inserting TCP header");
exit(EXIT_FAILURE);
}
/* If we are setting the flags automatically, do not respond to RST segments */
if((tcpflags_auto_f || tcpopen_f || tcpclose_f) && pkt_tcp->th_flags & TH_RST)
return;
tcp = (struct tcp_hdr *) ptr;
memset(tcp, 0, sizeof(struct tcp_hdr));
tcp->th_sport= pkt_tcp->th_dport;
tcp->th_dport= pkt_tcp->th_sport;
if(tcpseq_f)
tcp->th_seq= htonl(tcpseq);
else
tcp->th_seq = pkt_tcp->th_ack;
if( pkt_tcp->th_flags & TH_SYN){
if(tcpopen_f){
if(tcpopen == OPEN_PASSIVE){
/* If it is a pure SYN, respond with a SYN/ACK */
if(!(pkt_tcp->th_flags & TH_ACK)){
tcp->th_flags = tcp->th_flags | TH_SYN | TH_ACK;
tcp->th_seq= random();
tcp->th_ack= htonl(ntohl(pkt_tcp->th_seq) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
else if(tcpopen == OPEN_SIMULTANEOUS){
/* If it is a pure SYN, respond with a SYN */
if(!(pkt_tcp->th_flags & TH_ACK)){
tcp->th_flags = tcp->th_flags | TH_SYN;
tcp->th_seq= random();
tcp->th_ack= 0;
}
else{
/* If we receive a SYN/ACK (product of the above SYN), send a SYN/ACK */
tcp->th_flags = tcp->th_flags | TH_SYN | TH_ACK;
tcp->th_seq= (pkt_tcp->th_ack) - (rhbytes + 1);
tcp->th_ack= htonl(ntohl(pkt_tcp->th_seq) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
if(data_f)
senddata_f= 1;
}
}
else if(tcpopen == OPEN_ABORT){
/* If we receive a SYN, send RST */
tcp->th_flags = tcp->th_flags | TH_RST | TH_ACK;
if(pkt_tcp->th_flags & TH_ACK)
tcp->th_seq= pkt_tcp->th_ack;
else
tcp->th_seq= 0;
tcp->th_ack= htonl(ntohl(pkt_tcp->th_seq) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
else{
/* We have received a SYN/ACK */
if(pkt_tcp->th_flags & TH_ACK){
/* It's a SYN/ACK, and we are doing an active open */
if(tcpack_f){
tcp->th_ack= htonl(tcpack);
}
else{
if( !tcpflags_f || (tcpflags_f && (tcpflags & TH_ACK))){
tcp->th_ack= pkt_tcp->th_seq;
if(ackdata_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
}
if(ackflags_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
}
if(tcpflags_f){
tcp->th_flags= tcpflags;
}
else{
tcp->th_flags= TH_ACK;
/* If the incoming packet was a SYN, we should respond with a SYN/ACK */
if( (pkt_tcp->th_flags & TH_SYN) && !(pkt_tcp->th_flags & TH_ACK))
tcp->th_flags = tcp->th_flags | TH_SYN;
}
if(data_f)
senddata_f= 1;
if(tcpclose_f && tcpclose != CLOSE_FIN_WAIT_2 && tcpclose != CLOSE_PASSIVE)
startclose_f= 1;
}
else{
/* Simple SYN segment */
if(tcpack_f){
tcp->th_ack= htonl(tcpack);
}
else{
if( !tcpflags_f || (tcpflags_f && (tcpflags & TH_ACK))){
tcp->th_ack= pkt_tcp->th_seq;
if(ackdata_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
}
if(ackflags_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
}
if(tcpflags_f){
tcp->th_flags= tcpflags;
}
else{
tcp->th_flags= TH_ACK;
/* If the incoming packet was a SYN, we should respond with a SYN/ACK */
if( (pkt_tcp->th_flags & TH_SYN) && !(pkt_tcp->th_flags & TH_ACK))
tcp->th_flags = tcp->th_flags | TH_SYN;
}
}
}
tcp->th_win= htons(tcpwin);
}
else if(pkt_tcp->th_flags & TH_FIN){
if(tcpclose_f && (tcpclose == CLOSE_SIMULTANEOUS || tcpclose == CLOSE_PASSIVE || tcpclose == CLOSE_ABORT)){
if(tcpclose == CLOSE_SIMULTANEOUS){
tcp->th_flags = TH_ACK | TH_FIN;
tcp->th_seq= pkt_tcp->th_ack;
tcp->th_ack= pkt_tcp->th_seq;
}
else if(tcpclose == CLOSE_PASSIVE){
tcp->th_flags = TH_ACK | TH_FIN;
tcp->th_seq= pkt_tcp->th_ack;
tcp->th_ack= htonl(ntohl(pkt_tcp->th_seq) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
else if(tcpclose == CLOSE_ABORT){
tcp->th_flags = TH_ACK | TH_RST;
tcp->th_seq= pkt_tcp->th_ack;
tcp->th_ack= htonl(ntohl(pkt_tcp->th_seq) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
else{
if(tcpflags_f){
tcp->th_flags= tcpflags;
}
else{
tcp->th_flags= TH_ACK;
}
if(tcpack_f){
tcp->th_ack= htonl(tcpack);
}
else{
if( !tcpflags_f || (tcpflags_f && (tcpflags & TH_ACK))){
tcp->th_ack= pkt_tcp->th_seq;
if(ackdata_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
}
if(ackflags_f && !(tcpclose_f && tcpclose == CLOSE_LAST_ACK) && !(tcpclose_f && tcpclose == CLOSE_FIN_WAIT_1)){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
}
}
if(window_f){
if(window == WIN_CLOSED){
tcp->th_win= htons(0);
}
else if(window == WIN_MODULATE){
tcp->th_win= htons(tcpwinm);
}
}
else
tcp->th_win= htons(tcpwin);
}
else if(pkt_tcp->th_flags & TH_ACK){
if(tcpclose_f && tcpclose == CLOSE_ABORT){
tcp->th_flags = TH_ACK | TH_RST;
tcp->th_seq= pkt_tcp->th_ack;
tcp->th_ack= htonl(ntohl(pkt_tcp->th_seq) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
else{
if(tcpflags_f){
tcp->th_flags= tcpflags;
}
else{
tcp->th_flags= TH_ACK;
}
if(tcpack_f){
tcp->th_ack= htonl(tcpack);
}
else{
if( !tcpflags_f || (tcpflags_f && (tcpflags & TH_ACK))){
tcp->th_ack= pkt_tcp->th_seq;
if(ackdata_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_end - (unsigned char *)pkt_tcp) - (pkt_tcp->th_off << 2)));
}
if(ackflags_f){
tcp->th_ack= htonl(ntohl(tcp->th_ack) + ((pkt_tcp->th_flags & TH_FIN)?1:0) + \
((pkt_tcp->th_flags & TH_SYN)?1:0));
}
}
}
}
if(window_f){
if(window == WIN_CLOSED){
tcp->th_win= htons(0);
}
else if(window == WIN_MODULATE){
tcp->th_win= htons(tcpwinm);
}
}
else
tcp->th_win= htons(tcpwin);
}
tcp->th_urp= htons(tcpurg);
/* Current version of tcp6 does not support sending TCP options */
tcp->th_off= sizeof(struct tcp_hdr) >> 2;
ptr+= tcp->th_off << 2;
if(rhbytes_f){
if( (ptr + rhbytes) > v6buffer+ idata->max_packet_size){
puts("Packet Too Large while inserting TCP segment");
exit(EXIT_FAILURE);
}
while(rhbytes>=4){
*(uint32_t *)ptr = random();
ptr += sizeof(uint32_t);
rhbytes -= sizeof(uint32_t);
}
while(rhbytes>0){
*(uint8_t *) ptr= (uint8_t) random();
ptr++;
rhbytes--;
}
}
tcp->th_sum = 0;
tcp->th_sum = in_chksum(v6buffer, tcp, ptr-((unsigned char *)tcp), IPPROTO_TCP);
frag_and_send(idata);
if(senddata_f){
tcp->th_seq= htonl( ntohl(tcp->th_seq) + ptr-((unsigned char *)tcp + (tcp->th_off << 2)));
ptr= (unsigned char *)tcp + sizeof(struct tcp_hdr);
if((ptr+ datalen) > (v6buffer + idata->max_packet_size)){
if(idata->verbose_f)
puts("Packet too large while inserting TCP data");
exit(EXIT_FAILURE);
}
memcpy(ptr, data, datalen);
ptr+= datalen;
if(window_f){
if(window == WIN_CLOSED)
tcp->th_win = htons(0);
else
tcp->th_win = htons((uint16_t) win1_size);
}
else{
tcp->th_win = htons(tcpwin);
}
tcp->th_sum = 0;
tcp->th_sum = in_chksum(v6buffer, tcp, ptr-((unsigned char *)tcp), IPPROTO_TCP);
frag_and_send(idata);
}
if(startclose_f){
tcp->th_seq= htonl( ntohl(tcp->th_seq) + ptr-((unsigned char *)tcp + (tcp->th_off << 2)));
ptr= (unsigned char *) tcp + sizeof(struct tcp_hdr);
if(tcpclose == CLOSE_ABORT){
tcp->th_flags= TH_ACK | TH_RST;
}
else if(tcpclose == CLOSE_ACTIVE || tcpclose == CLOSE_LAST_ACK){
tcp->th_flags= TH_ACK | TH_FIN;
}
tcp->th_sum = 0;
tcp->th_sum = in_chksum(v6buffer, tcp, ptr-((unsigned char *)tcp), IPPROTO_TCP);
frag_and_send(idata);
}
return;
}
else{
if(ports >= nports){
sources++;
ports= 0;
}
if(sources >= nsources){
if(loop_f){
sources= 0;
}
else{
donesending_f= 1;
return;
}
}
if( (ptr+sizeof(struct tcp_hdr)) > (v6buffer + idata->max_packet_size)){
puts("Packet Too Large while inserting TCP header");
exit(EXIT_FAILURE);
}
tcp= (struct tcp_hdr *) ptr;
memset(ptr, 0, sizeof(struct tcp_hdr));
tcp->th_sport= htons(srcport);
tcp->th_dport= htons(dstport);
tcp->th_seq = htonl(tcpseq);
if(tcpack_f || (tcpflags & TH_ACK))
tcp->th_ack= htonl(tcpack);
else
tcp->th_ack= 0;
if(tcpflags_auto_f || tcpopen_f || tcpclose_f){
tcp->th_flags= TH_SYN;
}
else{
tcp->th_flags= tcpflags;
}
tcp->th_urp= htons(tcpurg);
tcp->th_win= htons(tcpwin);
tcp->th_off= sizeof(struct tcp_hdr) >> 2;
ptr += tcp->th_off << 2;
if( (ptr + rhbytes) > v6buffer + idata->max_packet_size){
puts("Packet Too Large while inserting TCP segment");
exit(EXIT_FAILURE);
}
while(rhbytes>=4){
*(uint32_t *)ptr = random();
ptr += sizeof(uint32_t);
rhbytes -= sizeof(uint32_t);
}
while(rhbytes>0){
*(uint8_t *) ptr= (uint8_t) random();
ptr++;
rhbytes--;
}
if(pktdata == NULL && (floods_f && ports == 0)){
/*
Randomizing the IPv6 Source address based on the prefix specified by
"srcaddr" and srcpreflen.
*/
randomize_ipv6_addr( &(ipv6->ip6_src), &(idata->srcaddr), idata->srcpreflen);
/*
If we need to respond to incomming packets, we set the Interface ID such that we can
detect which IPv6 addresses we have used.
*/
if(listen_f && useaddrkey_f){
ipv6->ip6_src.s6_addr32[2]= ntohl((uint32_t)random() <<16);
ipv6->ip6_src.s6_addr32[2]= htonl(ntohl(ipv6->ip6_src.s6_addr32[2]) | ((ntohl(ipv6->ip6_src.s6_addr32[2])>>16) ^ addr_key));
ipv6->ip6_src.s6_addr32[3]= ntohl((uint32_t)random() <<16);
ipv6->ip6_src.s6_addr32[3]= htonl(ntohl(ipv6->ip6_src.s6_addr32[3]) | (uint32_t)((ntohl(ipv6->ip6_src.s6_addr32[3]) >>16) ^ addr_key));
}
if(idata->type == DLT_EN10MB && !(idata->flags & IFACE_LOOPBACK) && !(idata->hsrcaddr_f)){
for(i=0; i<6; i++)
ethernet->src.a[i]= random();
}
}
if(pktdata == NULL && floodp_f){
tcp->th_sport= random();
}
tcp->th_sum = 0;
tcp->th_sum = in_chksum(v6buffer, tcp, ptr-((unsigned char *)tcp), IPPROTO_TCP);
frag_and_send(idata);
if(pktdata == NULL)
ports++;
return;
}
}
/*
* Function: frag_and_send()
*
* Send an IPv6 datagram, and fragment if selected
*/
void frag_and_send(struct iface_data *idata){
if(!idata->fragh_f){
ipv6->ip6_plen = htons((ptr - v6buffer) - MIN_IPV6_HLEN);
if((nw=pcap_inject(idata->pfd, buffer, ptr - buffer)) == -1){
printf("pcap_inject(): %s\n", pcap_geterr(idata->pfd));
exit(EXIT_FAILURE);
}
if(nw != (ptr-buffer)){
printf("pcap_inject(): only wrote %lu bytes (rather than %lu bytes)\n", \
(LUI) nw, (LUI) (ptr-buffer));
exit(EXIT_FAILURE);
}
}
else{
ptrend= ptr;
ptr= fragpart;
fptr = fragbuffer;
fipv6 = (struct ip6_hdr *) (fragbuffer + idata->linkhsize);
fptrend = fptr + idata->linkhsize+MIN_IPV6_HLEN+MAX_IPV6_PAYLOAD;
memcpy(fptr, buffer, fragpart-buffer);
fptr = fptr + (fragpart-buffer);
if( (fptr+FRAG_HDR_SIZE)> fptrend){
puts("Unfragmentable Part is Too Large");
exit(EXIT_FAILURE);
}
memcpy(fptr, (char *) &fraghdr, FRAG_HDR_SIZE);
fh= (struct ip6_frag *) fptr;
fh->ip6f_ident=random();
startoffragment = fptr + FRAG_HDR_SIZE;
/*
* Check that the selected fragment size is not larger than the largest
* fragment size that can be sent
*/
if(nfrags <= (fptrend - fptr))
fragsize=nfrags;
else
fragsize= (fptrend-fptr) & IP6F_OFF_MASK;
m=IP6F_MORE_FRAG;
while((ptr< ptrend) && m==IP6F_MORE_FRAG){
fptr= startoffragment;
if( (ptrend-ptr) <= fragsize){
fragsize= ptrend-ptr;
m=0;
}
memcpy(fptr, ptr, fragsize);
fh->ip6f_offlg = (htons(ptr-fragpart) & IP6F_OFF_MASK) | m;
ptr+=fragsize;
fptr+=fragsize;
fipv6->ip6_plen = htons((fptr - fragbuffer) - MIN_IPV6_HLEN - idata->linkhsize);
if((nw=pcap_inject(idata->pfd, fragbuffer, fptr - fragbuffer)) == -1){
printf("pcap_inject(): %s\n", pcap_geterr(idata->pfd));
exit(EXIT_FAILURE);
}
if(nw != (fptr- fragbuffer)){
printf("pcap_inject(): only wrote %lu bytes (rather than %lu bytes)\n", \
(LUI) nw, (LUI) (ptr-buffer));
exit(EXIT_FAILURE);
}
} /* Sending fragments */
} /* Sending fragmented datagram */
}
/*
* Function: usage()
*
* Prints the syntax of the tcp6 tool
*/
void usage(void){
puts("usage: tcp6 [-i INTERFACE] [-S LINK_SRC_ADDR] [-D LINK-DST-ADDR] "
"[-s SRC_ADDR[/LEN]] [-d DST_ADDR] [-A HOP_LIMIT] [-y FRAG_SIZE] [-u DST_OPT_HDR_SIZE] "
"[-U DST_OPT_U_HDR_SIZE] [-H HBH_OPT_HDR_SIZE] [-P PAYLOAD_SIZE] [-o SRC_PORT] "
"[-a DST_PORT] [-X TCP_FLAGS] [-q TCP_SEQ] [-Q TCP_ACK] [-V TCP_URP] [-w TCP_WIN] "
"[-c OPEN_MODE] [-C CLOSE_MODE] [-Z DATA] [-P PAYLOAD_SIZE] [-W WIN_MODE]"
"[-M WIN_MOD_MODE] [-r RATE] [-p PROBE_MODE] [-x RETRANS] "
"[-N] [-n] [-j PREFIX[/LEN]] [-k PREFIX[/LEN]] [-J LINK_ADDR] [-K LINK_ADDR] "
"[-b PREFIX[/LEN]] [-g PREFIX[/LEN]] [-B LINK_ADDR] [-G LINK_ADDR] "
"[-F N_SOURCES] [-T N_PORTS] [-L | -l] [-z SECONDS] [-v] [-h]");
}
/*
* Function: print_help()
*
* Prints help information for the tcp6 tool
*/
void print_help(void){
puts(SI6_TOOLKIT);
puts( "tcp6: Security assessment tool for attack vectors based on TCP/IPv6 packets\n");
usage();
puts("\nOPTIONS:\n"
" --interface, -i Network interface\n"
" --src-address, -s IPv6 Source Address\n"
" --dst-address, -d IPv6 Destination Address\n"
" --hop-limit, -A IPv6 Hop Limit\n"
" --frag-hdr. -y Fragment Header\n"
" --dst-opt-hdr, -u Destination Options Header (Fragmentable Part)\n"
" --dst-opt-u-hdr, -U Destination Options Header (Unfragmentable Part)\n"
" --hbh-opt-hdr, -H Hop by Hop Options Header\n"
" --link-src-address, -S Link-layer Destination Address\n"
" --link-dst-address, -D Link-layer Source Address\n"
" --payload-size, -P TCP Payload Size\n"
" --src-port, -o TCP Source Port\n"
" --dst-port, -a TCP Destination Port\n"
" --tcp-flags, -X TCP Flags\n"
" --tcp-seq, -q TCP Sequence Number\n"
" --tcp-ack, -Q TCP Acknowledgment Number\n"
" --not-ack-data, -N Do not acknowledge the TCP payload\n"
" --not-ack-flags, -n Do not acknowledge the TCP flags\n"
" --tcp-urg, -V TCP Urgent Pointer\n"
" --tcp-win, -w TCP Window\n"
" --window-mode, -W TCP Window mode {close,modulate}\n"
" --win-modulation, -M TCP Window modulation (WIN1:TIME1:WIN2:TIME2)\n"
" --open-mode, -c Open mode {simultaneous,passive,abort,active}\n"
" --close-mode, -C Close mode {simultaneous,passive,abort\n"
" active,FIN-WAIT-1,FIN-WAIT-2,LAST-ACK}\n"
" --data, -Z TCP payload data\n"
" --rate-limit, -r Rate limit the address scan to specified rate\n"
" --probe-mode, -p TCP probe mode {dump,script}\n"
" --retrans, -x Set number of TCP retransmissions\n"
" --block-src, -j Block IPv6 Source Address prefix\n"
" --block-dst, -k Block IPv6 Destination Address prefix\n"
" --block-link-src, -J Block Ethernet Source Address\n"
" --block-link-dst, -K Block Ethernet Destination Address\n"
" --accept-src, -b Accept IPv6 Source Addres prefix\n"
" --accept-dst, -g Accept IPv6 Destination Address prefix\n"
" --accept-link-src, -B Accept Ethernet Source Address\n"
" --accept-link-dst, -G Accept Ethernet Destination Address\n"
" --flood-sources, -F Flood from multiple IPv6 Source Addresses\n"
" --flood-ports, -T Flood from multiple TCP Source Ports\n"
" --listen, -L Listen to incoming packets\n"
" --loop, -l Send periodic TCP segments\n"
" --sleep, -z Pause between sending TCP segments\n"
" --help, -h Print help for the tcp6 tool\n"
" --verbose, -v Be verbose\n"
"\n"
"Programmed by Fernando Gont for SI6 Networks <http://www.si6networks.com>\n"
"Please send any bug reports to <fgont@si6networks.com>\n"
);
}
/*
* Function: print_attack_info()
*
* Prints attack details (when the verbose ("-v") option is specified).
*/
void print_attack_info(struct iface_data *idata){
puts(SI6_TOOLKIT);
puts( "tcp6: Security assessment tool for attack vectors based on TCP/IPv6 packets\n");
if(floods_f)
printf("Flooding the target from %u different IPv6 Source Addresses\n", nsources);
if(floodp_f)
printf("Flooding the target from %u different TCP ports\n", nports);
if(idata->type == DLT_EN10MB && !(idata->flags & IFACE_LOOPBACK)){
if(idata->hsrcaddr_f){
if(ether_ntop(&(idata->hsrcaddr), plinkaddr, sizeof(plinkaddr)) == 0){
puts("ether_ntop(): Error converting address");
exit(EXIT_FAILURE);
}
printf("Ethernet Source Address: %s\n", plinkaddr);
}
else{
if(idata->dstaddr_f){
if(ether_ntop(&(idata->hsrcaddr), plinkaddr, sizeof(plinkaddr)) == 0){
puts("ether_ntop(): Error converting address");
exit(EXIT_FAILURE);
}
printf("Ethernet Source Address: %s%s\n", plinkaddr, ((!(idata->hsrcaddr_f))?" (randomized)":""));
}
else
puts("Ethernet Source Address: Automatically selected for each packet");
}
/*
Ethernet Destination Address only used if a IPv6 Destination Address or an
Ethernet Destination Address were specified.
*/
if(idata->dstaddr_f){
if(ether_ntop(&(idata->hdstaddr), plinkaddr, sizeof(plinkaddr)) == 0){
puts("ether_ntop(): Error converting address");
exit(EXIT_FAILURE);
}
printf("Ethernet Destination Address: %s\n", plinkaddr);
}
}
if(inet_ntop(AF_INET6, &(idata->srcaddr), psrcaddr, sizeof(psrcaddr)) == NULL){
puts("inet_ntop(): Error converting IPv6 Source Address to presentation format");
exit(EXIT_FAILURE);
}
if(!floods_f){
if(idata->dstaddr_f){
printf("IPv6 Source Address: %s%s\n", psrcaddr, ((idata->srcaddr_f != TRUE)?" (randomized)":""));
}
}
else{
printf("IPv6 Source Address: randomized, from the fc00:1::/%u prefix%s\n", idata->srcpreflen, \
(!idata->srcprefix_f)?" (default)":"");
/*
printf("IPv6 Source Address: randomized, from the %s/%u prefix%s\n", psrcaddr, idata->srcpreflen, \
(!idata->srcprefix_f)?" (default)":"");
*/
}
if(idata->dstaddr_f){
if(inet_ntop(AF_INET6, &(idata->dstaddr), pdstaddr, sizeof(pdstaddr)) == NULL){
puts("inet_ntop(): Error converting IPv6 Destination Address to presentation format");
exit(EXIT_FAILURE);
}
printf("IPv6 Destination Address: %s\n", pdstaddr);
}
printf("IPv6 Hop Limit: %u%s\n", hoplimit, (hoplimit_f)?"":" (default)");
for(i=0; i<ndstoptuhdr; i++)
printf("Destination Options Header (Unfragmentable part): %u bytes\n", dstoptuhdrlen[i]);
for(i=0; i<nhbhopthdr; i++)
printf("Hop by Hop Options Header: %u bytes\n", hbhopthdrlen[i]);
for(i=0; i<ndstopthdr; i++)
printf("Destination Options Header: %u bytes\n", dstopthdrlen[i]);
if(idata->fragh_f)
printf("Sending each packet in fragments of %u bytes (plus the Unfragmentable part)\n", nfrags);
if(idata->dstaddr_f){
if(!floodp_f || (floodp_f && nports ==1)){
printf("Source Port: %u%s\t", srcport, (srcport_f?"":" (randomized)"));
}
else{
printf("Source Port: (randomized)\t");
}
printf("Destination Port: %u%s\n", dstport, (dstport_f?"":" (randomized)"));
if( (floods_f || floodp_f) && (nsources != 1 || nports != 1)){
printf("SEQ Number: (randomized)\t");
}
else{
printf("SEQ Number: %u%s\t", tcpseq, (tcpseq_f?"":" (randomized)"));
}
if( (floods_f || floodp_f) && (nsources != 1 || nports != 1)){
printf("ACK Number: (randomized)\n");
}
else{
printf("ACK Number: %u%s\n", tcpack, (tcpack_f?"":" (randomized)"));
}
if(tcpflags_f){
printf("Flags: %s%s%s%s%s%s%s%s\t", ((tcpflags & TH_FIN)?"F":""), ((tcpflags & TH_SYN)?"S":""), \
((tcpflags & TH_RST)?"R":""), ((tcpflags & TH_PUSH)?"P":""),\
((tcpflags & TH_ACK)?"A":""), ((tcpflags & TH_URG)?"U":""),\
((!tcpflags)?"none":""), ((!tcpflags_f)?" (default)":""));
}
else{
printf("Flags: Auto\t");
}
if(window_f){
printf("Window (initial): %u%s\t", tcpwin, (tcpwin_f?"":" (randomized)"));
if(window == WIN_CLOSED)
printf("Window: Closed\n");
else if(window == WIN_MODULATE)
printf("\nWindow: Modulated (%u byte%s (%u second%s), %u byte%s (%u second%s))\n",\
win1_size, ((win1_size>1)?"s":""), time1_len, ((time1_len>1)?"s":""), \
win2_size, ((win2_size>1)?"s":""), time2_len, ((time2_len>1)?"s":""));
}
else{
printf("Window: %u%s\t", tcpwin, (tcpwin_f?"":" (randomized)"));
}
printf("URG Pointer: %u%s\n", tcpurg, (tcpurg_f?"":" (default)"));
}
else{
printf("Source Port: Auto\tDestination Port: Auto\n");
if(tcpseq_f){
printf("SEQ Number: %u\t", tcpseq);
}
else{
printf("SEQ Number: Auto\t");
}
if(tcpack_f){
printf("ACK Number: %u\n", tcpack);
}
else{
printf("ACK Number: Auto\n");
}
if(tcpflags_f){
printf("Flags: %s%s%s%s%s%s%s\t", ((tcpflags & TH_FIN)?"F":""), ((tcpflags & TH_SYN)?"S":""), \
((tcpflags & TH_RST)?"R":""), ((tcpflags & TH_PUSH)?"P":""),\
((tcpflags & TH_ACK)?"A":""), ((tcpflags & TH_URG)?"U":""),\
((!tcpflags)?"none":""));
}
else{
printf("Flags: Auto\t");
}
if(window_f){
printf("Window (initial): %u%s\t", tcpwin, (tcpwin_f?"":" (randomized)"));
if(window == WIN_CLOSED)
printf("Window: Closed\n");
else if(window == WIN_MODULATE)
printf("\nWindow: Modulated (%u byte%s (%u second%s), %u byte%s (%u second%s))\n",\
win1_size, ((win1_size>1)?"s":""), time1_len, ((time1_len>1)?"s":""), \
win2_size, ((win2_size>1)?"s":""), time2_len, ((time2_len>1)?"s":""));
}
else{
printf("Window: %u%s\n", tcpwin, (tcpwin_f?"":" (randomized)"));
}
}
}
/*
* Function: queue_data()
*
* Puts data into a queue
*/
unsigned int queue_data(struct tcp_queue *q, unsigned char *data, unsigned int nbytes){
unsigned int fbytes, nleft;
/*
We have to scenarios: in >= out and in < out
In the first scenario, the circular buffer may be "split in two". In the second one,
all available space is clustered together.
*/
if(q->in >= q->out){
fbytes= (q->data+ q->size) - q->in -1;
fbytes= fbytes+ (q->out - q->data);
if(nbytes > fbytes)
nbytes= fbytes;
/* There is enough space available on the right side of the buffer */
if( (q->data + q->size - q->in) >= nbytes){
memcpy(q->in, data, nbytes);
q->in= q->in + nbytes;
if(q->in == (q->data + q->size))
q->in= q->data;
return(nbytes);
}
else{
nleft= nbytes;
memcpy(q->in, data, (q->data + q->size - q->in));
nleft= nleft - (q->data + q->size - q->in);
q->in= q->data;
memcpy(q->in, data, nleft);
return(nbytes);
}
}
else{
fbytes= q->out - q->in - 1;
if(nbytes > fbytes)
nbytes= fbytes;
memcpy(q->in, data, nbytes);
q->in= q->in + nbytes;
if(q->in == (q->data + q->size))
q->in= q->data;
return(nbytes);
}
/* Should never reach here, but avoid compiler warnings */
return(0);
}
/*
* Function: dequeue_data()
*
* Reads data from a queue
*/
unsigned int dequeue_data(struct tcp_queue *q, unsigned char *data, unsigned int nbytes){
unsigned int dbytes, nleft;
/*
We have to scenarios: out > in and out <= in
In the first scenario, the circular buffer may be "split in two". In the second one,
all available data are clustered together.
*/
if(q->out > q->in){
dbytes= (q->data+ q->size) - q->out;
dbytes= dbytes+ (q->in - q->out);
if(nbytes > dbytes)
nbytes= dbytes;
/* There is enough data available on the right side of the buffer */
if( (q->data + q->size - q->out) >= nbytes){
memcpy(data, q->out, nbytes);
q->out= q->out + nbytes;
if(q->out == (q->data + q->size))
q->out= q->data;
return(nbytes);
}
else{
/* Data are split in two parts */
nleft= nbytes;
memcpy(data, q->out, (q->data + q->size - q->out));
data= data+ (q->data + q->size - q->out);
nleft= nleft - (q->data + q->size - q->out);
q->out= q->data;
memcpy(data, q->out, nleft);
q->out= q->out + nleft;
return(nbytes);
}
}
else{
dbytes= q->in - q->out;
if(nbytes > dbytes)
nbytes= dbytes;
memcpy(data, q->out, nbytes);
q->out= q->out + nbytes;
if(q->out == (q->data + q->size))
q->out= q->data;
return(nbytes);
}
/* Should never reach here, but avoid compiler warnings */
return(0);
}
/*
* Function: queue_copy()
*
* Copies data from queue, without removing it
*/
unsigned int queue_copy(struct tcp_queue *q, unsigned char *org, unsigned int offset, unsigned char *data, unsigned int nbytes){
unsigned int dbytes, nleft;
if(org+offset >= (q->data + q->size)){
org= q->data + offset - (q->data + q->size - org);
}
/* | in out
We have to scenarios: out > in and out <= in
In the first scenario, the circular buffer may be "split in two". In the second one,
all available data are clustered together.
*/
if(org > q->in){
dbytes= (q->data+ q->size) - org;
dbytes= dbytes+ (q->in - org);
if(nbytes > dbytes)
nbytes= dbytes;
/* There is enough data available on the right side of the buffer */
if( (q->data + q->size - org) >= nbytes){
memcpy(data, org, nbytes);
return(nbytes);
}
else{
/* Data are split in two parts */
nleft= nbytes;
memcpy(data, org, (q->data + q->size - org));
data= data + (q->data + q->size - org);
nleft= nleft - (q->data + q->size - org);
org= q->data;
memcpy(data, org, nleft);
return(nbytes);
}
}
else{
dbytes= q->in - org;
if(nbytes > dbytes)
nbytes= dbytes;
memcpy(data, org, nbytes);
return(nbytes);
}
/* Should never reach here, buts avoid compiler warnings */
return(0);
}
/*
* Function: queue_remove()
*
* Discards data from queue
* Note: This function is employed to discard data from the TCP send buffer when they are ACKed
* by the remote TCP endpoint.
*/
unsigned int queue_remove(struct tcp_queue *q, unsigned char *data, unsigned int nbytes){
unsigned int dbytes, nleft;
/*
We have to scenarios: out > in and out <= in
In the first scenario, the circular buffer may be "split in two". In the second one,
all available data are clustered together.
*/
if(q->out > q->in){
dbytes= (q->data+ q->size) - q->out;
dbytes= dbytes+ (q->in - q->out);
if(nbytes > dbytes)
nbytes= dbytes;
/* There is enough data available on the right side of the buffer */
if( (q->data + q->size - q->out) >= nbytes){
q->out= q->out + nbytes;
if(q->out == (q->data + q->size))
q->out= q->data;
return(nbytes);
}
else{
/* Data are split in two parts */
nleft= nbytes;
data= data+ (q->data + q->size - q->out);
nleft= nleft - (q->data + q->size - q->out);
q->out= q->data;
q->out= q->out + nleft;
return(nbytes);
}
}
else{
dbytes= q->in - q->out;
if(nbytes > dbytes)
nbytes= dbytes;
memcpy(data, q->out, nbytes);
q->out= q->out + nbytes;
if(q->out == (q->data + q->size))
q->out= q->data;
return(nbytes);
}
/* Should never reach here, but avoid compiler warnings */
return(0);
}
/*
* Function: tcp_init()
*
* Initilizes a TCP structure
*/
int tcp_init(struct tcp *tcp){
memset(&(tcp->srcaddr), 0, sizeof(struct in6_addr));
memset(&(tcp->dstaddr), 0, sizeof(struct in6_addr));
tcp->srcport= 0;
tcp->dstport= 0;
tcp->in.in = tcp->in.data;
tcp->in.out= tcp->in.data;
tcp->in.size= sizeof(tcp->in.data);
tcp->rcv_nxt= 0;
tcp->rcv_nxtwnd= 0;
tcp->out.in= tcp->out.data;
tcp->out.out= tcp->out.data;
tcp->out.size= sizeof(tcp->out.data);
tcp->out_una= tcp->out.data;
tcp->out_nxt= tcp->out.data;
tcp->snd_una=0;
tcp->snd_nxtwnd=0;
memset(&(tcp->time), 0, sizeof(struct timeval));
tcp->state= TCP_CLOSED;
tcp->ack= 0;
tcp->win= sizeof(tcp->in.data) - 1;
return(SUCCESS);
}
/*
* Function: tcp_open()
*
* Performs an open (active or passive) on a TCP socket
*/
int tcp_open(struct iface_data *idata, struct tcp *tcb, unsigned int mode){
if(mode == OPEN_ACTIVE){
tcb->state= TCP_SYN_SENT;
tcb->flags= TH_SYN;
tcb->snd_una= random();
tcb->snd_nxt= tcb->snd_una + 1;
tcb->pending_write_f= TRUE;
return(SUCCESS);
}
else if(mode == OPEN_PASSIVE){
tcb->state= TCP_LISTEN;
return(SUCCESS);
}
return(FAILURE);
}
/*
* Function: tcp_close()
*
* Performs a close on a TCP socket
*/
int tcp_close(struct iface_data *idata, struct tcp *tcb){
tcb->fin_flag= TRUE;
tcb->fin_seq= tcb->snd_nxt;
tcb->pending_write_f= TRUE;
return(SUCCESS);
}
/*
* Function: tcp_send()
*
* Sends data over TCP (actually copies it to the TCP send buffer)
*/
int tcp_send(struct iface_data *idata, struct tcp *tcb, unsigned char *data, unsigned int nbytes){
if(tcb->fin_flag == TRUE)
return(-1);
else
return(queue_data( &(tcb->out), data, nbytes));
}
/*
* Function: tcp_receive()
*
* Receive data from a TCP socket
*/
int tcp_receive(struct iface_data *idata, struct tcp *tcb, unsigned char *data, unsigned int nbytes){
unsigned int r;
r= dequeue_data(&(tcb->in), data, nbytes);
if(r > 0)
tcb->pending_write_f= TRUE;
return(r);
}
/*
* Function: tcp_input()
*
* Processes an incoming TCP segment
*/
int tcp_input(struct iface_data *idata, struct tcp *tcb, const u_char *pktdata, struct pcap_pkthdr *pkthdr, struct packet *packet){
return(SUCCESS);
}
/*
* Function: tcp_output()
*
* Sends TCP segments as necessary
*/
int tcp_output(struct iface_data *idata, struct tcp *tcb, struct packet *packet, struct timeval *curtime){
/* Placeholder */
return(SUCCESS);
}
/*
* Function: is_valid_tcp_segment()
*
* Performs sanity checks on an incomming TCP/IPv6 segment
*/
int is_valid_tcp_segment(struct iface_data *idata, const u_char *pktdata, struct pcap_pkthdr *pkthdr){
struct ether_header *pkt_ether;
struct ip6_hdr *pkt_ipv6;
struct tcp_hdr *pkt_tcp;
unsigned char *pkt_end;
pkt_ether = (struct ether_header *) pktdata;
pkt_ipv6 = (struct ip6_hdr *)((char *) pkt_ether + idata->linkhsize);
pkt_tcp = (struct tcp_hdr *) ((char *) pkt_ipv6 + MIN_IPV6_HLEN);
pkt_end = (unsigned char *) pktdata + pkthdr->caplen;
/* XXX: We are assuming no extension headers on incoming packets -- this should be improved! */
/* The packet length is the minimum of what we capured, and what is specified in the
IPv6 Total Lenght field
*/
if( pkt_end > ((unsigned char *)pkt_tcp + pkt_ipv6->ip6_plen) )
pkt_end = (unsigned char *)pkt_tcp + pkt_ipv6->ip6_plen;
/*
Discard the packet if it is not of the minimum size to contain a TCP header
*/
if( (pkt_end - (unsigned char *) pkt_tcp) < sizeof(struct tcp_hdr)){
return FALSE;
}
/* Check that the TCP checksum is correct */
if(in_chksum(pkt_ipv6, pkt_tcp, pkt_end-((unsigned char *)pkt_tcp), IPPROTO_TCP) != 0){
return FALSE;
}
/* XXX: Should perform additional checks on the IPv6 header */
/*
Sanity checks on the Source Address and the Destination Address
*/
if(IN6_IS_ADDR_UNSPECIFIED(&(pkt_ipv6->ip6_src)) || IN6_IS_ADDR_UNSPECIFIED(&(pkt_ipv6->ip6_dst))){
return FALSE;
}
if(IN6_IS_ADDR_MULTICAST(&(pkt_ipv6->ip6_src)) || IN6_IS_ADDR_MULTICAST(&(pkt_ipv6->ip6_dst))){
return FALSE;
}
return TRUE;
}
|