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 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724
|
/*
* Copyright (C) 2002-12 Luca Deri <deri@ntop.org>
*
* http://www.ntop.org/
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
ntop includes sFlow(TM), freely available from http://www.inmon.com/".
Some code has been copied from the InMon sflowtool
*/
#include "ntop.h"
#include "globals-report.h"
static void* sflowMainLoop(void* _deviceId);
/* #define DEBUG_FLOWS */
/* ********************************* */
enum SFLAddress_type {
SFLADDRESSTYPE_IP_V4 = 1,
SFLADDRESSTYPE_IP_V6 = 2
};
typedef union _SFLAddress_value {
struct in_addr ip_v4;
struct in6_addr ip_v6;
} SFLAddress_value;
typedef struct _SFLAddress {
u_int32_t type; /* enum SFLAddress_type */
SFLAddress_value address;
} SFLAddress;
/* Packet header data */
#define SFL_DEFAULT_HEADER_SIZE 128
#define SFL_DEFAULT_COLLECTOR_PORT 6343
#define SFL_DEFAULT_SAMPLING_RATE 400
/* The header protocol describes the format of the sampled header */
enum SFLHeader_protocol {
SFLHEADER_ETHERNET_ISO8023 = 1,
SFLHEADER_ISO88024_TOKENBUS = 2,
SFLHEADER_ISO88025_TOKENRING = 3,
SFLHEADER_FDDI = 4,
SFLHEADER_FRAME_RELAY = 5,
SFLHEADER_X25 = 6,
SFLHEADER_PPP = 7,
SFLHEADER_SMDS = 8,
SFLHEADER_AAL5 = 9,
SFLHEADER_AAL5_IP = 10, /* e.g. Cisco AAL5 mux */
SFLHEADER_IPv4 = 11,
SFLHEADER_IPv6 = 12,
SFLHEADER_MPLS = 13
};
/* raw sampled header */
typedef struct _SFLSampled_header {
u_int32_t header_protocol; /* (enum SFLHeader_protocol) */
u_int32_t frame_length; /* Original length of packet before sampling */
u_int32_t stripped; /* header/trailer bytes stripped by sender */
u_int32_t header_length; /* length of sampled header bytes to follow */
u_int8_t *header_bytes; /* Header bytes */
} SFLSampled_header;
/* decoded ethernet header */
typedef struct _SFLSampled_ethernet {
u_int32_t eth_len; /* The length of the MAC packet excluding
lower layer encapsulations */
u_int8_t src_mac[8]; /* 6 bytes + 2 pad */
u_int8_t dst_mac[8];
u_int32_t eth_type;
} SFLSampled_ethernet;
/* decoded IP version 4 header */
typedef struct _SFLSampled_ipv4 {
u_int32_t length; /* The length of the IP packet
excluding lower layer encapsulations */
u_int32_t protocol; /* IP Protocol type (for example, TCP = 6, UDP = 17) */
struct in_addr src_ip; /* Source IP Address */
struct in_addr dst_ip; /* Destination IP Address */
u_int32_t src_port; /* TCP/UDP source port number or equivalent */
u_int32_t dst_port; /* TCP/UDP destination port number or equivalent */
u_int32_t tcp_flags; /* TCP flags */
u_int32_t tos; /* IP type of service */
} SFLSampled_ipv4;
/* decoded IP version 6 data */
typedef struct _SFLSampled_ipv6 {
u_int32_t length; /* The length of the IP packet
excluding lower layer encapsulations */
u_int32_t protocol; /* IP Protocol type (for example, TCP = 6, UDP = 17) */
struct in6_addr src_ip; /* Source IP Address */
struct in6_addr dst_ip; /* Destination IP Address */
u_int32_t src_port; /* TCP/UDP source port number or equivalent */
u_int32_t dst_port; /* TCP/UDP destination port number or equivalent */
u_int32_t tcp_flags; /* TCP flags */
u_int32_t priority; /* IP priority */
} SFLSampled_ipv6;
/* Extended data types */
/* Extended switch data */
typedef struct _SFLExtended_switch {
u_int32_t src_vlan; /* The 802.1Q VLAN id of incomming frame */
u_int32_t src_priority; /* The 802.1p priority */
u_int32_t dst_vlan; /* The 802.1Q VLAN id of outgoing frame */
u_int32_t dst_priority; /* The 802.1p priority */
} SFLExtended_switch;
/* Extended router data */
typedef struct _SFLExtended_router {
SFLAddress nexthop; /* IP address of next hop router */
u_int32_t src_mask; /* Source address prefix mask bits */
u_int32_t dst_mask; /* Destination address prefix mask bits */
} SFLExtended_router;
/* Extended gateway data */
enum SFLExtended_as_path_segment_type {
SFLEXTENDED_AS_SET = 1, /* Unordered set of ASs */
SFLEXTENDED_AS_SEQUENCE = 2 /* Ordered sequence of ASs */
};
typedef struct _SFLExtended_as_path_segment {
u_int32_t type; /* enum SFLExtended_as_path_segment_type */
u_int32_t length; /* number of AS numbers in set/sequence */
union {
u_int32_t *set;
u_int32_t *seq;
} as;
} SFLExtended_as_path_segment;
typedef struct _SFLExtended_gateway {
SFLAddress nexthop; /* Address of the border router that should
be used for the destination network */
u_int32_t as; /* AS number for this gateway */
u_int32_t src_as; /* AS number of source (origin) */
u_int32_t src_peer_as; /* AS number of source peer */
u_int32_t dst_as_path_segments; /* number of segments in path */
SFLExtended_as_path_segment *dst_as_path; /* list of seqs or sets */
u_int32_t communities_length; /* number of communities */
u_int32_t *communities; /* set of communities */
u_int32_t localpref; /* LocalPref associated with this route */
} SFLExtended_gateway;
typedef struct _SFLString {
u_int32_t len;
char *str;
} SFLString;
/* Extended user data */
typedef struct _SFLExtended_user {
u_int32_t src_charset; /* MIBEnum value of character set used to encode a string - See RFC 2978
Where possible UTF-8 encoding (MIBEnum=106) should be used. A value
of zero indicates an unknown encoding. */
SFLString src_user;
u_int32_t dst_charset;
SFLString dst_user;
} SFLExtended_user;
/* Extended URL data */
enum SFLExtended_url_direction {
SFLEXTENDED_URL_SRC = 1, /* URL is associated with source address */
SFLEXTENDED_URL_DST = 2 /* URL is associated with destination address */
};
typedef struct _SFLExtended_url {
u_int32_t direction; /* enum SFLExtended_url_direction */
SFLString url; /* URL associated with the packet flow.
Must be URL encoded */
SFLString host; /* The host field from the HTTP header */
} SFLExtended_url;
/* Extended MPLS data */
typedef struct _SFLLabelStack {
u_int32_t depth;
u_int32_t *stack; /* first entry is top of stack - see RFC 3032 for encoding */
} SFLLabelStack;
typedef struct _SFLExtended_mpls {
SFLAddress nextHop; /* Address of the next hop */
SFLLabelStack in_stack;
SFLLabelStack out_stack;
} SFLExtended_mpls;
/* Extended NAT data
Packet header records report addresses as seen at the sFlowDataSource.
The extended_nat structure reports on translated source and/or destination
addesses for this packet. If an address was not translated it should
be equal to that reported for the header. */
typedef struct _SFLExtended_nat {
SFLAddress src; /* Source address */
SFLAddress dst; /* Destination address */
} SFLExtended_nat;
/* additional Extended MPLS stucts */
typedef struct _SFLExtended_mpls_tunnel {
SFLString tunnel_lsp_name; /* Tunnel name */
u_int32_t tunnel_id; /* Tunnel ID */
u_int32_t tunnel_cos; /* Tunnel COS value */
} SFLExtended_mpls_tunnel;
typedef struct _SFLExtended_mpls_vc {
SFLString vc_instance_name; /* VC instance name */
u_int32_t vll_vc_id; /* VLL/VC instance ID */
u_int32_t vc_label_cos; /* VC Label COS value */
} SFLExtended_mpls_vc;
/* Extended MPLS FEC
- Definitions from MPLS-FTN-STD-MIB mplsFTNTable */
typedef struct _SFLExtended_mpls_FTN {
SFLString mplsFTNDescr;
u_int32_t mplsFTNMask;
} SFLExtended_mpls_FTN;
/* Extended MPLS LVP FEC
- Definition from MPLS-LDP-STD-MIB mplsFecTable
Note: mplsFecAddrType, mplsFecAddr information available
from packet header */
typedef struct _SFLExtended_mpls_LDP_FEC {
u_int32_t mplsFecAddrPrefixLength;
} SFLExtended_mpls_LDP_FEC;
/* Extended VLAN tunnel information
Record outer VLAN encapsulations that have
been stripped. extended_vlantunnel information
should only be reported if all the following conditions are satisfied:
1. The packet has nested vlan tags, AND
2. The reporting device is VLAN aware, AND
3. One or more VLAN tags have been stripped, either
because they represent proprietary encapsulations, or
because switch hardware automatically strips the outer VLAN
encapsulation.
Reporting extended_vlantunnel information is not a substitute for
reporting extended_switch information. extended_switch data must
always be reported to describe the ingress/egress VLAN information
for the packet. The extended_vlantunnel information only applies to
nested VLAN tags, and then only when one or more tags has been
stripped. */
typedef SFLLabelStack SFLVlanStack;
typedef struct _SFLExtended_vlan_tunnel {
SFLVlanStack stack; /* List of stripped 802.1Q TPID/TCI layers. Each
TPID,TCI pair is represented as a single 32 bit
integer. Layers listed from outermost to
innermost. */
} SFLExtended_vlan_tunnel;
enum SFLFlow_type_tag {
/* enterprise = 0, format = ... */
SFLFLOW_HEADER = 1, /* Packet headers are sampled */
SFLFLOW_ETHERNET = 2, /* MAC layer information */
SFLFLOW_IPV4 = 3, /* IP version 4 data */
SFLFLOW_IPV6 = 4, /* IP version 6 data */
SFLFLOW_EX_SWITCH = 1001, /* Extended switch information */
SFLFLOW_EX_ROUTER = 1002, /* Extended router information */
SFLFLOW_EX_GATEWAY = 1003, /* Extended gateway router information */
SFLFLOW_EX_USER = 1004, /* Extended TACAS/RADIUS user information */
SFLFLOW_EX_URL = 1005, /* Extended URL information */
SFLFLOW_EX_MPLS = 1006, /* Extended MPLS information */
SFLFLOW_EX_NAT = 1007, /* Extended NAT information */
SFLFLOW_EX_MPLS_TUNNEL = 1008, /* additional MPLS information */
SFLFLOW_EX_MPLS_VC = 1009,
SFLFLOW_EX_MPLS_FTN = 1010,
SFLFLOW_EX_MPLS_LDP_FEC = 1011,
SFLFLOW_EX_VLAN_TUNNEL = 1012, /* VLAN stack */
};
typedef union _SFLFlow_type {
SFLSampled_header header;
SFLSampled_ethernet ethernet;
SFLSampled_ipv4 ipv4;
SFLSampled_ipv6 ipv6;
SFLExtended_switch sw;
SFLExtended_router router;
SFLExtended_gateway gateway;
SFLExtended_user user;
SFLExtended_url url;
SFLExtended_mpls mpls;
SFLExtended_nat nat;
SFLExtended_mpls_tunnel mpls_tunnel;
SFLExtended_mpls_vc mpls_vc;
SFLExtended_mpls_FTN mpls_ftn;
SFLExtended_mpls_LDP_FEC mpls_ldp_fec;
SFLExtended_vlan_tunnel vlan_tunnel;
} SFLFlow_type;
typedef struct _SFLFlow_sample_element {
struct _SFLFlow_sample_element *nxt;
u_int32_t tag; /* SFLFlow_type_tag */
u_int32_t length;
SFLFlow_type flowType;
} SFLFlow_sample_element;
enum SFL_sample_tag {
SFLFLOW_SAMPLE = 1, /* enterprise = 0 : format = 1 */
SFLCOUNTERS_SAMPLE = 2, /* enterprise = 0 : format = 2 */
SFLFLOW_SAMPLE_EXPANDED = 3, /* enterprise = 0 : format = 3 */
SFLCOUNTERS_SAMPLE_EXPANDED = 4 /* enterprise = 0 : format = 4 */
};
/* Format of a single flow sample */
typedef struct _SFLFlow_sample {
/* u_int32_t tag; */ /* SFL_sample_tag -- enterprise = 0 : format = 1 */
/* u_int32_t length; */
u_int32_t sequence_number; /* Incremented with each flow sample
generated */
u_int32_t source_id; /* fsSourceId */
u_int32_t sampling_rate; /* fsPacketSamplingRate */
u_int32_t sample_pool; /* Total number of packets that could have been
sampled (i.e. packets skipped by sampling
process + total number of samples) */
u_int32_t drops; /* Number of times a packet was dropped due to
lack of resources */
u_int32_t input; /* SNMP ifIndex of input interface.
0 if interface is not known. */
u_int32_t output; /* SNMP ifIndex of output interface,
0 if interface is not known.
Set most significant bit to indicate
multiple destination interfaces
(i.e. in case of broadcast or multicast)
and set lower order bits to indicate
number of destination interfaces.
Examples:
0x00000002 indicates ifIndex = 2
0x00000000 ifIndex unknown.
0x80000007 indicates a packet sent
to 7 interfaces.
0x80000000 indicates a packet sent to
an unknown number of
interfaces greater than 1.*/
u_int32_t num_elements;
SFLFlow_sample_element *elements;
} SFLFlow_sample;
/* same thing, but the expanded version (for full 32-bit ifIndex numbers) */
typedef struct _SFLFlow_sample_expanded {
/* u_int32_t tag; */ /* SFL_sample_tag -- enterprise = 0 : format = 1 */
/* u_int32_t length; */
u_int32_t sequence_number; /* Incremented with each flow sample
generated */
u_int32_t ds_class; /* EXPANDED */
u_int32_t ds_index; /* EXPANDED */
u_int32_t sampling_rate; /* fsPacketSamplingRate */
u_int32_t sample_pool; /* Total number of packets that could have been
sampled (i.e. packets skipped by sampling
process + total number of samples) */
u_int32_t drops; /* Number of times a packet was dropped due to
lack of resources */
u_int32_t inputFormat; /* EXPANDED */
u_int32_t input; /* SNMP ifIndex of input interface.
0 if interface is not known. */
u_int32_t outputFormat; /* EXPANDED */
u_int32_t output; /* SNMP ifIndex of output interface,
0 if interface is not known. */
u_int32_t num_elements;
SFLFlow_sample_element *elements;
} SFLFlow_sample_expanded;
/* Counter types */
/* Generic interface counters - see RFC 1573, 2233 */
typedef struct _SFLIf_counters {
u_int32_t ifIndex;
u_int32_t ifType;
u_int64_t ifSpeed;
u_int32_t ifDirection; /* Derived from MAU MIB (RFC 2668)
0 = unknown, 1 = full-duplex,
2 = half-duplex, 3 = in, 4 = out */
u_int32_t ifStatus; /* bit field with the following bits assigned:
bit 0 = ifAdminStatus (0 = down, 1 = up)
bit 1 = ifOperStatus (0 = down, 1 = up) */
u_int64_t ifInOctets;
u_int32_t ifInUcastPkts;
u_int32_t ifInMulticastPkts;
u_int32_t ifInBroadcastPkts;
u_int32_t ifInDiscards;
u_int32_t ifInErrors;
u_int32_t ifInUnknownProtos;
u_int64_t ifOutOctets;
u_int32_t ifOutUcastPkts;
u_int32_t ifOutMulticastPkts;
u_int32_t ifOutBroadcastPkts;
u_int32_t ifOutDiscards;
u_int32_t ifOutErrors;
u_int32_t ifPromiscuousMode;
} SFLIf_counters;
/* Ethernet interface counters - see RFC 2358 */
typedef struct _SFLEthernet_counters {
u_int32_t dot3StatsAlignmentErrors;
u_int32_t dot3StatsFCSErrors;
u_int32_t dot3StatsSingleCollisionFrames;
u_int32_t dot3StatsMultipleCollisionFrames;
u_int32_t dot3StatsSQETestErrors;
u_int32_t dot3StatsDeferredTransmissions;
u_int32_t dot3StatsLateCollisions;
u_int32_t dot3StatsExcessiveCollisions;
u_int32_t dot3StatsInternalMacTransmitErrors;
u_int32_t dot3StatsCarrierSenseErrors;
u_int32_t dot3StatsFrameTooLongs;
u_int32_t dot3StatsInternalMacReceiveErrors;
u_int32_t dot3StatsSymbolErrors;
} SFLEthernet_counters;
/* Token ring counters - see RFC 1748 */
typedef struct _SFLTokenring_counters {
u_int32_t dot5StatsLineErrors;
u_int32_t dot5StatsBurstErrors;
u_int32_t dot5StatsACErrors;
u_int32_t dot5StatsAbortTransErrors;
u_int32_t dot5StatsInternalErrors;
u_int32_t dot5StatsLostFrameErrors;
u_int32_t dot5StatsReceiveCongestions;
u_int32_t dot5StatsFrameCopiedErrors;
u_int32_t dot5StatsTokenErrors;
u_int32_t dot5StatsSoftErrors;
u_int32_t dot5StatsHardErrors;
u_int32_t dot5StatsSignalLoss;
u_int32_t dot5StatsTransmitBeacons;
u_int32_t dot5StatsRecoverys;
u_int32_t dot5StatsLobeWires;
u_int32_t dot5StatsRemoves;
u_int32_t dot5StatsSingles;
u_int32_t dot5StatsFreqErrors;
} SFLTokenring_counters;
/* 100 BaseVG interface counters - see RFC 2020 */
typedef struct _SFLVg_counters {
u_int32_t dot12InHighPriorityFrames;
u_int64_t dot12InHighPriorityOctets;
u_int32_t dot12InNormPriorityFrames;
u_int64_t dot12InNormPriorityOctets;
u_int32_t dot12InIPMErrors;
u_int32_t dot12InOversizeFrameErrors;
u_int32_t dot12InDataErrors;
u_int32_t dot12InNullAddressedFrames;
u_int32_t dot12OutHighPriorityFrames;
u_int64_t dot12OutHighPriorityOctets;
u_int32_t dot12TransitionIntoTrainings;
u_int64_t dot12HCInHighPriorityOctets;
u_int64_t dot12HCInNormPriorityOctets;
u_int64_t dot12HCOutHighPriorityOctets;
} SFLVg_counters;
typedef struct _SFLVlan_counters {
u_int32_t vlan_id;
u_int64_t octets;
u_int32_t ucastPkts;
u_int32_t multicastPkts;
u_int32_t broadcastPkts;
u_int32_t discards;
} SFLVlan_counters;
/* Counters data */
enum SFLCounters_type_tag {
/* enterprise = 0, format = ... */
SFLCOUNTERS_GENERIC = 1,
SFLCOUNTERS_ETHERNET = 2,
SFLCOUNTERS_TOKENRING = 3,
SFLCOUNTERS_VG = 4,
SFLCOUNTERS_VLAN = 5
};
typedef union _SFLCounters_type {
SFLIf_counters generic;
SFLEthernet_counters ethernet;
SFLTokenring_counters tokenring;
SFLVg_counters vg;
SFLVlan_counters vlan;
} SFLCounters_type;
typedef struct _SFLCounters_sample_element {
struct _SFLCounters_sample_element *nxt; /* linked list */
u_int32_t tag; /* SFLCounters_type_tag */
u_int32_t length;
SFLCounters_type counterBlock;
} SFLCounters_sample_element;
typedef struct _SFLCounters_sample {
/* u_int32_t tag; */ /* SFL_sample_tag -- enterprise = 0 : format = 2 */
/* u_int32_t length; */
u_int32_t sequence_number; /* Incremented with each counters sample
generated by this source_id */
u_int32_t source_id; /* fsSourceId */
u_int32_t num_elements;
SFLCounters_sample_element *elements;
} SFLCounters_sample;
/* same thing, but the expanded version, so ds_index can be a full 32 bits */
typedef struct _SFLCounters_sample_expanded {
/* u_int32_t tag; */ /* SFL_sample_tag -- enterprise = 0 : format = 2 */
/* u_int32_t length; */
u_int32_t sequence_number; /* Incremented with each counters sample
generated by this source_id */
u_int32_t ds_class; /* EXPANDED */
u_int32_t ds_index; /* EXPANDED */
u_int32_t num_elements;
SFLCounters_sample_element *elements;
} SFLCounters_sample_expanded;
#define SFLADD_ELEMENT(_sm, _el) do { (_el)->nxt = (_sm)->elements; (_sm)->elements = (_el); } while(0)
/* Format of a sample datagram */
enum SFLDatagram_version {
SFLDATAGRAM_VERSION2 = 2,
SFLDATAGRAM_VERSION4 = 4,
SFLDATAGRAM_VERSION5 = 5
};
typedef struct _SFLSample_datagram_hdr {
u_int32_t datagram_version; /* (enum SFLDatagram_version) = VERSION5 = 5 */
SFLAddress agent_address; /* IP address of sampling agent */
u_int32_t sub_agent_id; /* Used to distinguishing between datagram
streams from separate agent sub entities
within an device. */
u_int32_t sequence_number; /* Incremented with each sample datagram
generated */
u_int32_t uptime; /* Current time (in milliseconds since device
last booted). Should be set as close to
datagram transmission time as possible.*/
u_int32_t num_records; /* Number of tag-len-val flow/counter records to follow */
} SFLSample_datagram_hdr;
#define SFL_MAX_DATAGRAM_SIZE 1500
#define SFL_MIN_DATAGRAM_SIZE 200
#define SFL_DEFAULT_DATAGRAM_SIZE 1400
#define SFL_DATA_PAD 400
#define YES 1
#define NO 0
enum INMAddress_type {
INMADDRESSTYPE_IP_V4 = 1,
INMADDRESSTYPE_IP_V6 = 2
};
typedef union _INMAddress_value {
struct in_addr ip_v4;
struct in6_addr ip_v6;
} INMAddress_value;
typedef struct _INMAddress {
u_int32_t type; /* enum INMAddress_type */
INMAddress_value address;
} INMAddress;
/* Packet header data */
#define INM_MAX_HEADER_SIZE 256 /* The maximum sampled header size. */
#define INM_DEFAULT_HEADER_SIZE 128
#define INM_DEFAULT_COLLECTOR_PORT 6343
#define INM_DEFAULT_SAMPLING_RATE 400
/* The header protocol describes the format of the sampled header */
enum INMHeader_protocol {
INMHEADER_ETHERNET_ISO8023 = 1,
INMHEADER_ISO88024_TOKENBUS = 2,
INMHEADER_ISO88025_TOKENRING = 3,
INMHEADER_FDDI = 4,
INMHEADER_FRAME_RELAY = 5,
INMHEADER_X25 = 6,
INMHEADER_PPP = 7,
INMHEADER_SMDS = 8,
INMHEADER_AAL5 = 9,
INMHEADER_AAL5_IP = 10, /* e.g. Cisco AAL5 mux */
INMHEADER_IPv4 = 11,
INMHEADER_IPv6 = 12
};
typedef struct _INMSampled_header {
u_int32_t header_protocol; /* (enum INMHeader_protocol) */
u_int32_t frame_length; /* Original length of packet before sampling */
u_int32_t header_length; /* length of sampled header bytes to follow */
u_int8_t header[INM_MAX_HEADER_SIZE]; /* Header bytes */
} INMSampled_header;
/* Packet IP version 4 data */
typedef struct _INMSampled_ipv4 {
u_int32_t length; /* The length of the IP packet
excluding lower layer encapsulations */
u_int32_t protocol; /* IP Protocol type (for example, TCP = 6, UDP = 17) */
struct in_addr src_ip; /* Source IP Address */
struct in_addr dst_ip; /* Destination IP Address */
u_int32_t src_port; /* TCP/UDP source port number or equivalent */
u_int32_t dst_port; /* TCP/UDP destination port number or equivalent */
u_int32_t tcp_flags; /* TCP flags */
u_int32_t tos; /* IP type of service */
} INMSampled_ipv4;
/* Packet IP version 6 data */
typedef struct _INMSampled_ipv6 {
u_int32_t length; /* The length of the IP packet
excluding lower layer encapsulations */
u_int32_t protocol; /* IP Protocol type (for example, TCP = 6, UDP = 17) */
struct in6_addr src_ip; /* Source IP Address */
struct in6_addr dst_ip; /* Destination IP Address */
u_int32_t src_port; /* TCP/UDP source port number or equivalent */
u_int32_t dst_port; /* TCP/UDP destination port number or equivalent */
u_int32_t tcp_flags; /* TCP flags */
u_int32_t tos; /* IP type of service */
} INMSampled_ipv6;
/* Packet data */
enum INMPacket_information_type {
INMPACKETTYPE_HEADER = 1, /* Packet headers are sampled */
INMPACKETTYPE_IPV4 = 2, /* IP version 4 data */
INMPACKETTYPE_IPV6 = 3 /* IP version 4 data */
};
typedef union _INMPacket_data_type {
INMSampled_header header;
INMSampled_ipv4 ipv4;
INMSampled_ipv6 ipv6;
} INMPacket_data_type;
/* Extended data types */
/* Extended switch data */
typedef struct _INMExtended_switch {
u_int32_t src_vlan; /* The 802.1Q VLAN id of incomming frame */
u_int32_t src_priority; /* The 802.1p priority */
u_int32_t dst_vlan; /* The 802.1Q VLAN id of outgoing frame */
u_int32_t dst_priority; /* The 802.1p priority */
} INMExtended_switch;
/* Extended router data */
typedef struct _INMExtended_router {
INMAddress nexthop; /* IP address of next hop router */
u_int32_t src_mask; /* Source address prefix mask bits */
u_int32_t dst_mask; /* Destination address prefix mask bits */
} INMExtended_router;
/* Extended gateway data */
enum INMExtended_as_path_segment_type {
INMEXTENDED_AS_SET = 1, /* Unordered set of ASs */
INMEXTENDED_AS_SEQUENCE = 2 /* Ordered sequence of ASs */
};
typedef struct _INMExtended_as_path_segment {
u_int32_t type; /* enum INMExtended_as_path_segment_type */
u_int32_t length; /* number of AS numbers in set/sequence */
union {
u_int32_t *set;
u_int32_t *seq;
} as;
} INMExtended_as_path_segment;
/* note: the INMExtended_gateway structure has changed between v2 and v4.
Here is the old version first... */
typedef struct _INMExtended_gateway_v2 {
u_int32_t as; /* AS number for this gateway */
u_int32_t src_as; /* AS number of source (origin) */
u_int32_t src_peer_as; /* AS number of source peer */
u_int32_t dst_as_path_length; /* number of AS numbers in path */
u_int32_t *dst_as_path;
} INMExtended_gateway_v2;
/* now here is the new version... */
typedef struct _INMExtended_gateway_v4 {
u_int32_t as; /* AS number for this gateway */
u_int32_t src_as; /* AS number of source (origin) */
u_int32_t src_peer_as; /* AS number of source peer */
u_int32_t dst_as_path_segments; /* number of segments in path */
INMExtended_as_path_segment *dst_as_path; /* list of seqs or sets */
u_int32_t communities_length; /* number of communities */
u_int32_t *communities; /* set of communities */
u_int32_t localpref; /* LocalPref associated with this route */
} INMExtended_gateway_v4;
/* Extended user data */
typedef struct _INMExtended_user {
u_int32_t src_user_len;
char *src_user;
u_int32_t dst_user_len;
char *dst_user;
} INMExtended_user;
enum INMExtended_url_direction {
INMEXTENDED_URL_SRC = 1, /* URL is associated with source address */
INMEXTENDED_URL_DST = 2 /* URL is associated with destination address */
};
typedef struct _INMExtended_url {
u_int32_t direction; /* enum INMExtended_url_direction */
u_int32_t url_len;
char *url;
} INMExtended_url;
/* Extended data */
enum INMExtended_information_type {
INMEXTENDED_SWITCH = 1, /* Extended switch information */
INMEXTENDED_ROUTER = 2, /* Extended router information */
INMEXTENDED_GATEWAY = 3, /* Extended gateway router information */
INMEXTENDED_USER = 4, /* Extended TACAS/RADIUS user information */
INMEXTENDED_URL = 5 /* Extended URL information */
};
/* Format of a single sample */
typedef struct _INMFlow_sample {
u_int32_t sequence_number; /* Incremented with each flow sample
generated */
u_int32_t source_id; /* fsSourceId */
u_int32_t sampling_rate; /* fsPacketSamplingRate */
u_int32_t sample_pool; /* Total number of packets that could have been
sampled (i.e. packets skipped by sampling
process + total number of samples) */
u_int32_t drops; /* Number of times a packet was dropped due to
lack of resources */
u_int32_t input; /* SNMP ifIndex of input interface.
0 if interface is not known. */
u_int32_t output; /* SNMP ifIndex of output interface,
0 if interface is not known.
Set most significant bit to indicate
multiple destination interfaces
(i.e. in case of broadcast or multicast)
and set lower order bits to indicate
number of destination interfaces.
Examples:
0x00000002 indicates ifIndex = 2
0x00000000 ifIndex unknown.
0x80000007 indicates a packet sent
to 7 interfaces.
0x80000000 indicates a packet sent to
an unknown number of
interfaces greater than 1.*/
u_int32_t packet_data_tag; /* enum INMPacket_information_type */
INMPacket_data_type packet_data; /* Information about sampled packet */
/* in the sFlow packet spec the next field is the number of extended objects
followed by the data for each one (tagged with the type). Here we just
provide space for each one, and flags to enable them. The correct format
is then put together by the serialization code */
int gotSwitch;
INMExtended_switch switchDevice;
int gotRouter;
INMExtended_router router;
int gotGateway;
union {
INMExtended_gateway_v2 v2; /* make the version explicit so that there is */
INMExtended_gateway_v4 v4; /* less danger of mistakes when upgrading code */
} gateway;
int gotUser;
INMExtended_user user;
int gotUrl;
INMExtended_url url;
} INMFlow_sample;
/* Counter types */
/* Generic interface counters - see RFC 1573, 2233 */
typedef struct _INMIf_counters {
u_int32_t ifIndex;
u_int32_t ifType;
u_int64_t ifSpeed;
u_int32_t ifDirection; /* Derived from MAU MIB (RFC 2239)
0 = unknown, 1 = full-duplex,
2 = half-duplex, 3 = in, 4 = out */
u_int32_t ifStatus; /* bit field with the following bits assigned:
bit 0 = ifAdminStatus (0 = down, 1 = up)
bit 1 = ifOperStatus (0 = down, 1 = up) */
u_int64_t ifInOctets;
u_int32_t ifInUcastPkts;
u_int32_t ifInMulticastPkts;
u_int32_t ifInBroadcastPkts;
u_int32_t ifInDiscards;
u_int32_t ifInErrors;
u_int32_t ifInUnknownProtos;
u_int64_t ifOutOctets;
u_int32_t ifOutUcastPkts;
u_int32_t ifOutMulticastPkts;
u_int32_t ifOutBroadcastPkts;
u_int32_t ifOutDiscards;
u_int32_t ifOutErrors;
u_int32_t ifPromiscuousMode;
} INMIf_counters;
/* Ethernet interface counters - see RFC 2358 */
typedef struct _INMEthernet_specific_counters {
u_int32_t dot3StatsAlignmentErrors;
u_int32_t dot3StatsFCSErrors;
u_int32_t dot3StatsSingleCollisionFrames;
u_int32_t dot3StatsMultipleCollisionFrames;
u_int32_t dot3StatsSQETestErrors;
u_int32_t dot3StatsDeferredTransmissions;
u_int32_t dot3StatsLateCollisions;
u_int32_t dot3StatsExcessiveCollisions;
u_int32_t dot3StatsInternalMacTransmitErrors;
u_int32_t dot3StatsCarrierSenseErrors;
u_int32_t dot3StatsFrameTooLongs;
u_int32_t dot3StatsInternalMacReceiveErrors;
u_int32_t dot3StatsSymbolErrors;
} INMEthernet_specific_counters;
typedef struct _INMEthernet_counters {
INMIf_counters generic;
INMEthernet_specific_counters ethernet;
} INMEthernet_counters;
/* FDDI interface counters - see RFC 1512 */
typedef struct _INMFddi_counters {
INMIf_counters generic;
} INMFddi_counters;
/* Token ring counters - see RFC 1748 */
typedef struct _INMTokenring_specific_counters {
u_int32_t dot5StatsLineErrors;
u_int32_t dot5StatsBurstErrors;
u_int32_t dot5StatsACErrors;
u_int32_t dot5StatsAbortTransErrors;
u_int32_t dot5StatsInternalErrors;
u_int32_t dot5StatsLostFrameErrors;
u_int32_t dot5StatsReceiveCongestions;
u_int32_t dot5StatsFrameCopiedErrors;
u_int32_t dot5StatsTokenErrors;
u_int32_t dot5StatsSoftErrors;
u_int32_t dot5StatsHardErrors;
u_int32_t dot5StatsSignalLoss;
u_int32_t dot5StatsTransmitBeacons;
u_int32_t dot5StatsRecoverys;
u_int32_t dot5StatsLobeWires;
u_int32_t dot5StatsRemoves;
u_int32_t dot5StatsSingles;
u_int32_t dot5StatsFreqErrors;
} INMTokenring_specific_counters;
typedef struct _INMTokenring_counters {
INMIf_counters generic;
INMTokenring_specific_counters tokenring;
} INMTokenring_counters;
/* 100 BaseVG interface counters - see RFC 2020 */
typedef struct _INMVg_specific_counters {
u_int32_t dot12InHighPriorityFrames;
u_int64_t dot12InHighPriorityOctets;
u_int32_t dot12InNormPriorityFrames;
u_int64_t dot12InNormPriorityOctets;
u_int32_t dot12InIPMErrors;
u_int32_t dot12InOversizeFrameErrors;
u_int32_t dot12InDataErrors;
u_int32_t dot12InNullAddressedFrames;
u_int32_t dot12OutHighPriorityFrames;
u_int64_t dot12OutHighPriorityOctets;
u_int32_t dot12TransitionIntoTrainings;
u_int64_t dot12HCInHighPriorityOctets;
u_int64_t dot12HCInNormPriorityOctets;
u_int64_t dot12HCOutHighPriorityOctets;
} INMVg_specific_counters;
typedef struct _INMVg_counters {
INMIf_counters generic;
INMVg_specific_counters vg;
} INMVg_counters;
/* WAN counters */
typedef struct _INMWan_counters {
INMIf_counters generic;
} INMWan_counters;
typedef struct _INMVlan_counters {
u_int32_t vlan_id;
u_int64_t octets;
u_int32_t ucastPkts;
u_int32_t multicastPkts;
u_int32_t broadcastPkts;
u_int32_t discards;
} INMVlan_counters;
/* Counters data */
enum INMCounters_version {
INMCOUNTERSVERSION_GENERIC = 1,
INMCOUNTERSVERSION_ETHERNET = 2,
INMCOUNTERSVERSION_TOKENRING = 3,
INMCOUNTERSVERSION_FDDI = 4,
INMCOUNTERSVERSION_VG = 5,
INMCOUNTERSVERSION_WAN = 6,
INMCOUNTERSVERSION_VLAN = 7
};
typedef union _INMCounters_type {
INMIf_counters generic;
INMEthernet_counters ethernet;
INMTokenring_counters tokenring;
INMFddi_counters fddi;
INMVg_counters vg;
INMWan_counters wan;
INMVlan_counters vlan;
} INMCounters_type;
typedef struct _INMCounters_sample_hdr {
u_int32_t sequence_number; /* Incremented with each counters sample
generated by this source_id */
u_int32_t source_id; /* fsSourceId */
u_int32_t sampling_interval; /* fsCounterSamplingInterval */
} INMCounters_sample_hdr;
typedef struct _INMCounters_sample {
INMCounters_sample_hdr hdr;
u_int32_t counters_type_tag; /* Enum INMCounters_version */
INMCounters_type counters; /* Counter set for this interface type */
} INMCounters_sample;
enum INMSample_types {
FLOWSAMPLE = 1,
COUNTERSSAMPLE = 2
};
typedef union _INMSample_type {
INMFlow_sample flowsample;
INMCounters_sample counterssample;
} INMSample_type;
/* Format of a sample datagram */
enum INMDatagram_version {
INMDATAGRAM_VERSION2 = 2,
INMDATAGRAM_VERSION4 = 4
};
typedef struct _INMSample_datagram_hdr {
u_int32_t datagram_version; /* (enum INMDatagram_version) = VERSION4 */
INMAddress agent_address; /* IP address of sampling agent */
u_int32_t sequence_number; /* Incremented with each sample datagram
generated */
u_int32_t uptime; /* Current time (in milliseconds since device
last booted). Should be set as close to
datagram transmission time as possible.*/
u_int32_t num_samples; /* Number of flow and counters samples to follow */
} INMSample_datagram_hdr;
#define INM_MAX_DATAGRAM_SIZE 1500
#define INM_MIN_DATAGRAM_SIZE 200
#define INM_DEFAULT_DATAGRAM_SIZE 1400
#define INM_DATA_PAD 400
/* define my own IP header struct - to ease portability */
struct myiphdr
{
u_int8_t version_and_headerLen;
u_int8_t tos;
u_int16_t tot_len;
u_int16_t id;
u_int16_t frag_off;
u_int8_t ttl;
u_int8_t protocol;
u_int16_t check;
u_int32_t saddr;
u_int32_t daddr;
};
/* same for tcp */
struct mytcphdr
{
u_int16_t th_sport; /* source port */
u_int16_t th_dport; /* destination port */
u_int32_t th_seq; /* sequence number */
u_int32_t th_ack; /* acknowledgement number */
u_int8_t th_off_and_unused;
u_int8_t th_flags;
u_int16_t th_win; /* window */
u_int16_t th_sum; /* checksum */
u_int16_t th_urp; /* urgent pointer */
};
/* and UDP */
struct myudphdr {
u_int16_t uh_sport; /* source port */
u_int16_t uh_dport; /* destination port */
u_int16_t uh_ulen; /* udp length */
u_int16_t uh_sum; /* udp checksum */
};
/* and ICMP */
struct myicmphdr
{
u_int8_t type; /* message type */
u_int8_t code; /* type sub-code */
/* ignore the rest */
};
#ifdef SPOOFSOURCE
#define SPOOFSOURCE_SENDPACKET_SIZE 2000
struct mySendPacket {
struct myiphdr ip;
struct myudphdr udp;
u_char data[SPOOFSOURCE_SENDPACKET_SIZE];
};
#endif
typedef struct _SFConfig {
/* sflow options */
u_int16_t sFlowInputPort;
/* netflow options */
u_int16_t netFlowOutputPort;
struct in_addr netFlowOutputIP;
int netFlowOutputSocket;
u_int16_t netFlowPeerAS;
int disableNetFlowScale;
/* tcpdump options */
int tcpdumpFormat;
u_int32_t tcpdumpHdrPad;
u_char zeroPad[100];
#ifdef SPOOFSOURCE
int spoofSource;
u_int16_t ipid;
struct mySendPacket sendPkt;
u_int32_t packetLen;
#endif
} SFConfig;
/* make the options structure global to the program */
typedef struct _SFSample {
struct in_addr sourceIP;
SFLAddress agent_addr;
u_int32_t agentSubId;
/* the raw pdu */
u_char *rawSample;
u_int32_t rawSampleLen;
u_char *endp;
/* decode cursor */
#if 0
u_int32_t *datap;
#else
u_char *datap;
#endif
u_int32_t datagramVersion;
u_int32_t sampleType;
u_int32_t ds_class;
u_int32_t ds_index;
/* interface info */
u_int32_t ifIndex;
u_int32_t networkType;
u_int64_t ifSpeed;
u_int32_t ifDirection;
u_int32_t ifStatus;
/* sample stream info */
u_int32_t sysUpTime;
u_int32_t sequenceNo;
u_int32_t sampledPacketSize;
u_int32_t samplesGenerated;
u_int32_t meanSkipCount;
u_int32_t samplePool;
u_int32_t dropEvents;
/* the sampled header */
u_int32_t packet_data_tag;
u_int32_t headerProtocol;
u_char *header;
int headerLen;
u_int32_t stripped;
/* header decode */
int gotIPV4;
int offsetToIPV4;
struct in_addr dcd_srcIP;
struct in_addr dcd_dstIP;
u_int32_t dcd_ipProtocol;
u_int32_t dcd_ipTos;
u_int32_t dcd_ipTTL;
u_int32_t dcd_sport;
u_int32_t dcd_dport;
u_int32_t dcd_tcpFlags;
u_int32_t ip_fragmentOffset;
u_int32_t udp_pduLen;
/* ports */
u_int32_t inputPortFormat;
u_int32_t outputPortFormat;
u_int32_t inputPort;
u_int32_t outputPort;
/* ethernet */
u_int32_t eth_type;
u_int32_t eth_len;
u_char eth_src[8];
u_char eth_dst[8];
/* vlan */
u_int32_t in_vlan;
u_int32_t in_priority;
u_int32_t internalPriority;
u_int32_t out_vlan;
u_int32_t out_priority;
/* extended data fields */
u_int32_t num_extended;
u_int32_t extended_data_tag;
#define SASAMPLE_EXTENDED_DATA_SWITCH 1
#define SASAMPLE_EXTENDED_DATA_ROUTER 4
#define SASAMPLE_EXTENDED_DATA_GATEWAY 8
#define SASAMPLE_EXTENDED_DATA_USER 16
#define SASAMPLE_EXTENDED_DATA_URL 32
#define SASAMPLE_EXTENDED_DATA_MPLS 64
#define SASAMPLE_EXTENDED_DATA_NAT 128
#define SASAMPLE_EXTENDED_DATA_MPLS_TUNNEL 256
#define SASAMPLE_EXTENDED_DATA_MPLS_VC 512
#define SASAMPLE_EXTENDED_DATA_MPLS_FTN 1024
#define SASAMPLE_EXTENDED_DATA_MPLS_LDP_FEC 2048
#define SASAMPLE_EXTENDED_DATA_VLAN_TUNNEL 4096
/* IP forwarding info */
SFLAddress nextHop;
u_int32_t srcMask;
u_int32_t dstMask;
/* BGP info */
SFLAddress bgp_nextHop;
u_int32_t my_as;
u_int32_t src_as;
u_int32_t src_peer_as;
u_int32_t dst_as_path_len;
u_int32_t *dst_as_path;
/* note: version 4 dst as path segments just get printed, not stored here, however
* the dst_peer and dst_as are filled in, since those are used for netflow encoding
*/
u_int32_t dst_peer_as;
u_int32_t dst_as;
u_int32_t communities_len;
u_int32_t *communities;
u_int32_t localpref;
/* user id */
#define SA_MAX_EXTENDED_USER_LEN 200
u_int32_t src_user_charset;
u_int32_t src_user_len;
char src_user[SA_MAX_EXTENDED_USER_LEN+1];
u_int32_t dst_user_charset;
u_int32_t dst_user_len;
char dst_user[SA_MAX_EXTENDED_USER_LEN+1];
/* url */
#define SA_MAX_EXTENDED_URL_LEN 200
#define SA_MAX_EXTENDED_HOST_LEN 200
u_int32_t url_direction;
u_int32_t url_len;
char url[SA_MAX_EXTENDED_URL_LEN+1];
u_int32_t host_len;
char host[SA_MAX_EXTENDED_HOST_LEN+1];
/* mpls */
SFLAddress mpls_nextHop;
/* nat */
SFLAddress nat_src;
SFLAddress nat_dst;
/* counter blocks */
u_int32_t statsSamplingInterval;
u_int32_t counterBlockVersion;
} SFSample;
/* ********************************* */
#ifdef DEBUG_FLOWS
#define SFLOW_DEBUG(a) (1)
#else
#define SFLOW_DEBUG(a) ((a < myGlobals.numDevices) && myGlobals.device[a].sflowGlobals && myGlobals.device[a].sflowGlobals->sflowDebug)
#endif
/* ********************************* */
/* Forward */
static int setsFlowInSocket(int);
static void setPluginStatus(char * status);
static int initsFlowFunct(void);
static void termsFlowFunct(u_char termNtop /* 0=term plugin, 1=term ntop */);
static void termsFlowDevice(int deviceId);
static void initsFlowDevice(int deviceId);
#ifdef DEBUG_FLOWS
static void handlesFlowPacket(u_char *_deviceId,
const struct pcap_pkthdr *h,
const u_char *p);
#endif
static void handlesFlowHTTPrequest(char* url);
static void printsFlowStatisticsRcvd(int deviceId);
static void printsFlowConfiguration(int deviceId);
static int createsFlowDevice(int sflowDeviceId);
static int mapsFlowDeviceToNtopDevice(int deviceId);
/* ****************************** */
u_char static pluginActive = 0;
static PluginInfo sflowPluginInfo[] = {
{
VERSION, /* current ntop version */
"sFlow",
"This plugin is used to setup, activate and deactivate ntop's sFlow support.<br>"
"<b>ntop</b> can both collect and receive <A HREF=http://www.sflow.org/>sFlow</A> data. "
"Note that ntop.org is a member of the <A HREF=http://www.sflow.org/organization/>sFlow consortium</A>.<br>"
"<i>Received flow data is reported as a separate 'NIC' in the regular <b>ntop</b> "
"reports.<br><em>Remember to <A HREF=/switch.html>switch</A> the reporting NIC.</em>",
"3.0", /* version */
"<A HREF=\"http://luca.ntop.org/\" alt=\"Luca's home page\">L.Deri</A>",
"sFlow", /* http://<host>:<port>/plugins/sFlow */
0, /* Active by default */
ViewConfigure,
1, /* Inactive setup */
initsFlowFunct, /* InitFunc */
termsFlowFunct, /* TermFunc */
#ifdef DEBUG_FLOWS
handlesFlowPacket,
#else
NULL, /* PluginFunc */
#endif
handlesFlowHTTPrequest,
NULL, /* no host creation/deletion handle */
#ifdef DEBUG_FLOWS
"udp and (port 6343 or port 9002)",
#else
NULL, /* no capture */
#endif
NULL, /* no status */
NULL /* no extra pages */
}
};
/* ****************************** */
static char* sfValue(int deviceId, char *name, int appendDeviceId) {
static char buf[64];
if(appendDeviceId) {
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "sflow.%d.%s",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId, name);
} else {
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "sflow.%s", name);
}
#ifdef DEBUG
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: sfValue=%s", buf);
#endif
return(buf);
}
/* ************************************** */
static int setsFlowInSocket(int deviceId) {
struct sockaddr_in sockIn;
int sockopt = 1;
if(myGlobals.device[deviceId].sflowGlobals->sflowInSocket > 0) {
traceEvent(CONST_TRACE_ALWAYSDISPLAY, "SFLOW: Collector terminated");
closeNwSocket(&myGlobals.device[deviceId].sflowGlobals->sflowInSocket);
shutdown(myGlobals.device[deviceId].sflowGlobals->sflowInSocket, SHUT_RDWR);
}
if(myGlobals.device[deviceId].sflowGlobals->sflowInPort > 0) {
errno = 0;
myGlobals.device[deviceId].sflowGlobals->sflowInSocket = socket(AF_INET, SOCK_DGRAM, 0);
if((myGlobals.device[deviceId].sflowGlobals->sflowInSocket <= 0)
|| (errno != 0) ) {
traceEvent(CONST_TRACE_INFO, "SFLOW: Unable to create a socket - returned %d, error is '%s'(%d)",
myGlobals.device[deviceId].sflowGlobals->sflowInSocket, strerror(errno), errno);
setPluginStatus("Disabled - Unable to create listening socket.");
return(-1);
}
traceEvent(CONST_TRACE_INFO, "SFLOW: Created a UDP socket (%d)",
myGlobals.device[deviceId].sflowGlobals->sflowInSocket);
setsockopt(myGlobals.device[deviceId].sflowGlobals->sflowInSocket,
SOL_SOCKET, SO_REUSEADDR, (char *)&sockopt, sizeof(sockopt));
sockIn.sin_family = AF_INET;
sockIn.sin_port =(int)htons(myGlobals.device[deviceId].sflowGlobals->sflowInPort);
sockIn.sin_addr.s_addr = INADDR_ANY;
if((bind(myGlobals.device[deviceId].sflowGlobals->sflowInSocket,
(struct sockaddr *)&sockIn, sizeof(sockIn)) < 0)
) {
traceEvent(CONST_TRACE_ERROR, "SFLOW: Collector port %d already in use",
myGlobals.device[deviceId].sflowGlobals->sflowInPort);
closeNwSocket(&myGlobals.device[deviceId].sflowGlobals->sflowInSocket);
shutdown(myGlobals.device[deviceId].sflowGlobals->sflowInSocket, SHUT_RDWR);
myGlobals.device[deviceId].sflowGlobals->sflowInSocket = 0;
return(0);
}
traceEvent(CONST_TRACE_ALWAYSDISPLAY, "SFLOW: Collector listening on port %d",
myGlobals.device[deviceId].sflowGlobals->sflowInPort);
}
if((myGlobals.device[deviceId].sflowGlobals->sflowInPort != 0)
&& (!myGlobals.device[deviceId].sflowGlobals->threadActive)) {
/* This plugin works only with threads */
createThread(&myGlobals.device[deviceId].sflowGlobals->sflowThread,
sflowMainLoop, (void*)((long)deviceId));
traceEvent(CONST_TRACE_INFO, "THREADMGMT: SFLOW: Started thread (%lu) for receiving flows on port %d",
(long)myGlobals.device[deviceId].sflowGlobals->sflowThread,
myGlobals.device[deviceId].sflowGlobals->sflowInPort);
}
maximize_socket_buffer(myGlobals.device[deviceId].sflowGlobals->sflowInSocket, SO_RCVBUF);
return(0);
}
/* *************************** */
static void updateSflowInterfaceCounters(int deviceId, IfCounters *ifName) {
IfCounters *counter, *prev_counter, *next;
if(ifName == NULL)
return;
else
prev_counter = NULL, counter = myGlobals.device[deviceId].sflowGlobals->ifCounters;
while(counter) {
if(counter->ifIndex == ifName->ifIndex)
break;
else if(counter->ifIndex > ifName->ifIndex) {
counter = NULL;
break;
} else {
prev_counter = counter;
counter = counter->next;
}
}
if(counter == NULL) {
counter = (IfCounters*)malloc(sizeof(IfCounters));
if(!counter) return; /* Not enough memory */
if(prev_counter == NULL) {
counter->next = NULL;
myGlobals.device[deviceId].sflowGlobals->ifCounters = counter;
} else {
counter->next = prev_counter->next;
prev_counter->next = counter;
}
}
/* Note: the ->next pointer is not overwritten */
next = counter->next;
memcpy(counter, ifName, sizeof(IfCounters));
counter->next = next;
myGlobals.device[deviceId].sflowGlobals->numsFlowCounterUpdates++;
}
/* =============================================================== */
static void handleSflowSample(SFSample *sample, int deviceId) {
struct pcap_pkthdr pkthdr;
bool oldVal = myGlobals.runningPref.disableMutexExtraInfo;
pkthdr.ts.tv_sec = time(NULL);
pkthdr.ts.tv_usec = 0;
pkthdr.caplen = sample->headerLen;
pkthdr.len = sample->sampledPacketSize*sample->meanSkipCount /* Scale data */;
/* Needed to avoid silly (for sFlow) warning */
myGlobals.runningPref.disableMutexExtraInfo = 1;
queuePacket((u_char*)((long)deviceId), &pkthdr, sample->header); /* Pass the packet to ntop */
myGlobals.runningPref.disableMutexExtraInfo = oldVal;
myGlobals.device[deviceId].samplingRate = sample->meanSkipCount;
myGlobals.device[deviceId].sflowGlobals->numsFlowsSamples++;
/* Save flows on disk (debug) */
#ifdef DEBUG_FLOWS
if(1) {
#define TCPDUMP_MAGIC 0xa1b2c3d4 /* from libpcap-0.5: savefile.c */
#define DLT_EN10MB 1 /* from libpcap-0.5: net/bpf.h */
#define PCAP_VERSION_MAJOR 2 /* from libpcap-0.5: pcap.h */
#define PCAP_VERSION_MINOR 4 /* from libpcap-0.5: pcap.h */
static FILE *fd = NULL;
char buf[2048];
int bytes = 0;
struct pcap_file_header hdr;
if(fd == NULL) {
fd = fopen("/tmp/sflowpackets.pcap", "w+");
if(fd) {
memset(&hdr, 0, sizeof(hdr));
hdr.magic = TCPDUMP_MAGIC;
hdr.version_major = PCAP_VERSION_MAJOR;
hdr.version_minor = PCAP_VERSION_MINOR;
hdr.thiszone = 0;
hdr.snaplen = 128;
hdr.sigfigs = 0;
hdr.linktype = DLT_EN10MB;
if (fwrite((char *)&hdr, sizeof(hdr), 1, fd) != 1) {
fprintf(stderr, "failed to write tcpdump header: %s\n", strerror(errno));
exit(-1);
}
fflush(fd);
}
/* Save packet */
// prepare the whole thing in a buffer first, in case we are piping the output
// to another process and the reader expects it all to appear at once...
memcpy(buf, &pkthdr, sizeof(pkthdr));
bytes = sizeof(hdr);
memcpy(buf+bytes, sample->header, sample->headerLen);
bytes += sample->headerLen;
if(fwrite(buf, bytes, 1, fd) != 1) {
fprintf(stderr, "writePcapPacket: packet write failed: %s\n", strerror(errno));
exit(-3);
}
fflush(fd);
}
}
#endif
}
/* =============================================================== */
/* Forward */
void SFABORT(SFSample *s, int r);
int printHex(const u_char *a, int len, u_char *buf, int bufLen, int marker, int bytesPerOutputLine);
char *IP_to_a(u_int32_t ipaddr, char *buf);
#define SF_ABORT_EOS 1
#define SF_ABORT_DECODE_ERROR 2
#define SF_ABORT_LENGTH_ERROR 3
void SFABORT(SFSample *s, int r) {
printf("SFABORT: %d\n", r);
}
/*_________________---------------------------__________________
_________________ printHex __________________
-----------------___________________________------------------
*/
static u_char bin2hex(int nib) { return (nib < 10) ? ('0' + nib) : ('A' - 10 + nib); }
int printHex(const u_char *a, int len, u_char *buf, int bufLen, int marker, int bytesPerOutputLine)
{
int b = 0, i = 0;
for(; i < len; i++) {
u_char byte;
if(b > (bufLen - 10)) break;
if(marker > 0 && i == marker) {
buf[b++] = '<';
buf[b++] = '*';
buf[b++] = '>';
buf[b++] = '-';
}
byte = a[i];
buf[b++] = bin2hex(byte >> 4);
buf[b++] = bin2hex(byte & 0x0f);
if(i > 0 && (i % bytesPerOutputLine) == 0) buf[b++] = '\n';
else {
// separate the bytes with a dash
if (i < (len - 1)) buf[b++] = '-';
}
}
buf[b] = '\0';
return b;
}
/*_________________---------------------------__________________
_________________ IP_to_a __________________
-----------------___________________________------------------
*/
char *IP_to_a(u_int32_t ipaddr, char *buf)
{
u_char *ip = (u_char *)&ipaddr;
sprintf(buf, "%u.%u.%u.%u", ip[0], ip[1], ip[2], ip[3]);
return buf;
}
/*_________________---------------------------__________________
_________________ receiveError __________________
-----------------___________________________------------------
*/
static void receiveError(SFSample *sample, char *errm, int hexdump)
{
char ipbuf[51];
u_char scratch[6000];
char *msg = "";
char *hex = "";
u_int32_t markOffset = (u_char *)sample->datap - sample->rawSample;
if(errm) msg = errm;
if(hexdump) {
printHex(sample->rawSample, sample->rawSampleLen, scratch, 6000, markOffset, 16);
hex = (char*)scratch;
}
fprintf(stderr, "%s (source IP = %s) %s\n", msg, IP_to_a(sample->sourceIP.s_addr, ipbuf), hex);
SFABORT(sample, SF_ABORT_DECODE_ERROR);
}
static void skipBytes(SFSample *sample, int skip) {
#if 0
int quads = (skip + 3) / 4;
sample->datap += quads;
#else
/* Luca's fix */
sample->datap += skip;
#endif
if((u_char *)sample->datap > sample->endp) SFABORT(sample, SF_ABORT_EOS);
}
/*_________________---------------------------__________________
_________________ lengthCheck __________________
-----------------___________________________------------------
*/
static void lengthCheck(SFSample *sample, char *description, u_char *start, int len) {
u_int32_t actualLen = (u_char *)sample->datap - start;
if(actualLen != len)
{
fprintf(stderr, "%s length error (expected %d, found %d)\n", description, len, actualLen);
SFABORT(sample, SF_ABORT_LENGTH_ERROR);
}
}
/*_________________---------------------------__________________
_________________ decodeLinkLayer __________________
-----------------___________________________------------------
store the offset to the start of the ipv4 header in the sequence_number field
or -1 if not found. Decode the 802.1d if it's there.
*/
#define NFT_ETHHDR_SIZ 14
#define NFT_8022_SIZ 3
#define NFT_MAX_8023_LEN 1500
#define NFT_MIN_SIZ (NFT_ETHHDR_SIZ + sizeof(struct myiphdr))
static void decodeLinkLayer(SFSample *sample, int deviceId)
{
u_char *start = (u_char *)sample->header;
u_char *end = start + sample->headerLen;
u_char *ptr = start;
u_int16_t type_len;
/* assume not found */
sample->gotIPV4 = NO;
if(sample->headerLen < NFT_ETHHDR_SIZ) return; /* not enough for an Ethernet header */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dstMAC %02x%02x%02x%02x%02x%02x\n", ptr[0], ptr[1], ptr[2], ptr[3], ptr[4], ptr[5]);
ptr += 6;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "srcMAC %02x%02x%02x%02x%02x%02x\n", ptr[0], ptr[1], ptr[2], ptr[3], ptr[4], ptr[5]);
ptr += 6;
type_len = (ptr[0] << 8) + ptr[1];
ptr += 2;
if(type_len == 0x8100) {
/* VLAN - next two bytes */
u_int32_t vlanData = (ptr[0] << 8) + ptr[1];
u_int32_t vlan = vlanData & 0x0fff;
u_int32_t priority = vlanData >> 13;
ptr += 2;
/* _____________________________________ */
/* | pri | c | vlan-id | */
/* ------------------------------------- */
/* [priority = 3bits] [Canonical Format Flag = 1bit] [vlan-id = 12 bits] */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "decodedVLAN %lu\n", (long unsigned int)vlan);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "decodedPriority %lu\n", (long unsigned int)priority);
/* now get the type_len again (next two bytes) */
type_len = (ptr[0] << 8) + ptr[1];
ptr += 2;
}
/* now we're just looking for IP */
if(sample->headerLen < NFT_MIN_SIZ) return; /* not enough for an IPv4 header */
/* peek for IPX */
if(type_len == 0x0200 || type_len == 0x0201 || type_len == 0x0600) {
#define IPX_HDR_LEN 30
#define IPX_MAX_DATA 546
int ipxChecksum = (ptr[0] == 0xff && ptr[1] == 0xff);
int ipxLen = (ptr[2] << 8) + ptr[3];
if(ipxChecksum &&
ipxLen >= IPX_HDR_LEN &&
ipxLen <= (IPX_HDR_LEN + IPX_MAX_DATA))
/* we don't do anything with IPX here */
return;
}
if(type_len <= NFT_MAX_8023_LEN) {
/* assume 802.3+802.2 header */
/* check for SNAP */
if(ptr[0] == 0xAA &&
ptr[1] == 0xAA &&
ptr[2] == 0x03) {
ptr += 3;
if(ptr[0] != 0 ||
ptr[1] != 0 ||
ptr[2] != 0) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "VSNAP_OUI %02X-%02X-%02X\n", ptr[0], ptr[1], ptr[2]);
return; /* no further decode for vendor-specific protocol */
}
ptr += 3;
/* OUI == 00-00-00 means the next two bytes are the ethernet type (RFC 2895) */
type_len = (ptr[0] << 8) + ptr[1];
ptr += 2;
}
else {
if (ptr[0] == 0x06 &&
ptr[1] == 0x06 &&
(ptr[2] & 0x01)) {
/* IP over 8022 */
ptr += 3;
/* force the type_len to be IP so we can inline the IP decode below */
type_len = 0x0800;
}
else return;
}
}
/* assume type_len is an ethernet-type now */
if(type_len == 0x0800) {
/* IPV4 */
if((end - ptr) < sizeof(struct myiphdr)) return;
/* look at first byte of header.... */
/* ___________________________ */
/* | version | hdrlen | */
/* --------------------------- */
if((*ptr >> 4) != 4) return; /* not version 4 */
if((*ptr & 15) < 5) return; /* not IP (hdr len must be 5 quads or more) */
/* survived all the tests - store the offset to the start of the ip header */
sample->gotIPV4 = YES;
sample->offsetToIPV4 = (ptr - start);
}
}
/*_________________---------------------------__________________
_________________ decodeIPV4 __________________
-----------------___________________________------------------
*/
static void decodeIPV4(SFSample *sample, int deviceId)
{
if(sample->gotIPV4) {
char buf[51];
u_char *ptr = sample->header + sample->offsetToIPV4;
/* Create a local copy of the IP header (cannot overlay structure in case it is not quad-aligned...some
platforms would core-dump if we tried that). It's OK coz this probably performs just as well anyway. */
struct myiphdr ip;
memcpy(&ip, ptr, sizeof(ip));
/* Value copy all ip elements into sample */
sample->dcd_srcIP.s_addr = ip.saddr;
sample->dcd_dstIP.s_addr = ip.daddr;
sample->dcd_ipProtocol = ip.protocol;
sample->dcd_ipTos = ip.tos;
sample->dcd_ipTTL = ip.ttl;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ip.tot_len = %d\n", ntohs(ip.tot_len));
/* Log out the decoded IP fields */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "srcIP %s\n", IP_to_a(sample->dcd_srcIP.s_addr, buf));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dstIP %s\n", IP_to_a(sample->dcd_dstIP.s_addr, buf));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPProtocol %u\n", sample->dcd_ipProtocol);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPTOS %u\n", sample->dcd_ipTos);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPTTL %u\n", sample->dcd_ipTTL);
/* check for fragments */
sample->ip_fragmentOffset = ntohs(ip.frag_off) & 0x1FFF;
if(sample->ip_fragmentOffset > 0) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPFragmentOffset %u\n", sample->ip_fragmentOffset);
}
else {
/* advance the pointer to the next protocol layer */
/* ip headerLen is expressed as a number of quads */
ptr += (ip.version_and_headerLen & 0x0f) * 4;
switch(ip.protocol) {
case 1: /* ICMP */
{
struct myicmphdr icmp;
memcpy(&icmp, ptr, sizeof(icmp));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ICMPType %u\n", icmp.type);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ICMPCode %u\n", icmp.code);
}
break;
case 6: /* TCP */
{
struct mytcphdr tcp;
memcpy(&tcp, ptr, sizeof(tcp));
sample->dcd_sport = ntohs(tcp.th_sport);
sample->dcd_dport = ntohs(tcp.th_dport);
sample->dcd_tcpFlags = tcp.th_flags;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "TCPSrcPort %u\n", sample->dcd_sport);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "TCPDstPort %u\n",sample->dcd_dport);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "TCPFlags %u\n", sample->dcd_tcpFlags);
if(sample->dcd_dport == 80) {
int headerBytes = (tcp.th_off_and_unused >> 4) * 4;
ptr += headerBytes;
}
}
break;
case 17: /* UDP */
{
struct myudphdr udp;
memcpy(&udp, ptr, sizeof(udp));
sample->dcd_sport = ntohs(udp.uh_sport);
sample->dcd_dport = ntohs(udp.uh_dport);
sample->udp_pduLen = ntohs(udp.uh_ulen);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "UDPSrcPort %u\n", sample->dcd_sport);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "UDPDstPort %u\n", sample->dcd_dport);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "UDPBytes %u\n", sample->udp_pduLen);
}
break;
default: /* some other protcol */
break;
}
}
}
}
#if 0
/*_________________---------------------------__________________
_________________ in_checksum __________________
-----------------___________________________------------------
*/
static u_int16_t in_checksum(u_int16_t *addr, int len)
{
int nleft = len;
u_short *w = addr;
u_short answer;
int sum = 0;
while (nleft > 1) {
sum += *w++;
nleft -= 2;
}
if (nleft == 1) sum += *(u_char *)w;
sum = (sum >> 16) + (sum & 0xffff);
sum += (sum >> 16);
answer = ~sum;
return (answer);
}
#endif
/*_________________---------------------------__________________
_________________ read data fns __________________
-----------------___________________________------------------
*/
static u_int32_t getData32(SFSample *sample, int deviceId) {
u_int32_t *val;
if((u_char *)sample->datap > sample->endp) SFABORT(sample, SF_ABORT_EOS);
val = (u_int32_t*)sample->datap;
skipBytes(sample, 4);
return ntohl(*val);
}
static u_int32_t getData32_nobswap(SFSample *sample, int deviceId) {
u_int32_t *val;
if((u_char *)sample->datap > sample->endp) SFABORT(sample, SF_ABORT_EOS);
val = (u_int32_t*)sample->datap;
skipBytes(sample, 4);
return *val;
}
static u_int64_t getData64(SFSample *sample, int deviceId) {
u_int64_t tmpLo, tmpHi;
tmpHi = getData32(sample, deviceId);
tmpLo = getData32(sample, deviceId);
return (tmpHi << 32) + tmpLo;
}
static u_int32_t sf_log_next32(SFSample *sample, char *fieldName, int deviceId) {
u_int32_t val = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%s %lu\n", fieldName, (long unsigned int)val);
return(val);
}
static u_int64_t sf_log_next64(SFSample *sample, char *fieldName, int deviceId) {
u_int64_t val = getData64(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%s %llu\n", fieldName, (long long unsigned int)val);
return(val);
}
static u_int32_t getString(SFSample *sample, char *buf, int bufLen, int deviceId) {
u_int32_t len, read_len;
len = getData32(sample, deviceId);
// truncate if too long
read_len = (len >= bufLen) ? (bufLen - 1) : len;
memcpy(buf, sample->datap, read_len);
buf[read_len] = '\0'; // null terminate
skipBytes(sample, len);
return len;
}
static u_int32_t getAddress(SFSample *sample, SFLAddress *address, int deviceId) {
address->type = getData32(sample, deviceId);
if(address->type == SFLADDRESSTYPE_IP_V4)
address->address.ip_v4.s_addr = getData32_nobswap(sample, deviceId);
else {
memcpy(&address->address.ip_v6.s6_addr, sample->datap, 16);
skipBytes(sample, 16);
}
return address->type;
}
static char *printAddress(SFLAddress *address, char *buf, int bufLen, int deviceId) {
if(address->type == SFLADDRESSTYPE_IP_V4)
IP_to_a(address->address.ip_v4.s_addr, buf);
else {
u_char *b = address->address.ip_v6.s6_addr;
// should really be: snprintf(buf, buflen,...) but snprintf() is not always available
sprintf(buf, "%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x",
b[0],b[1],b[2],b[3],b[4],b[5],b[6],b[7],b[8],b[9],b[10],b[11],b[12],b[13],b[14],b[15]);
}
return buf;
}
static char *printTag(u_int32_t tag, char *buf, int bufLen, int deviceId) {
// should really be: snprintf(buf, buflen,...) but snprintf() is not always available
sprintf(buf, "%lu:%lu", (long unsigned int)(tag >> 12), (long unsigned int)(tag & 0x00000FFF));
return buf;
}
static u_int32_t skipTLVRecord(SFSample *sample, u_int32_t tag, char *description, int deviceId) {
char buf[51];
u_int32_t len;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "skipping unknown %s: %s\n", description, printTag(tag, buf, 50, deviceId));
len = getData32(sample, deviceId);
// sanity check
if(len > sample->rawSampleLen) SFABORT(sample, SF_ABORT_EOS);
else skipBytes(sample, len);
return len;
}
/*_________________---------------------------__________________
_________________ readExtendedSwitch __________________
-----------------___________________________------------------
*/
static void readExtendedSwitch(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType SWITCH\n");
sample->in_vlan = getData32(sample, deviceId);
sample->in_priority = getData32(sample, deviceId);
sample->out_vlan = getData32(sample, deviceId);
sample->out_priority = getData32(sample, deviceId);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_SWITCH;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "in_vlan %lu\n", (long unsigned int)sample->in_vlan);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "in_priority %lu\n", (long unsigned int)sample->in_priority);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "out_vlan %lu\n", (long unsigned int)sample->out_vlan);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "out_priority %lu\n", (long unsigned int)sample->out_priority);
}
/*_________________---------------------------__________________
_________________ readExtendedRouter __________________
-----------------___________________________------------------
*/
static void readExtendedRouter(SFSample *sample, int deviceId)
{
char buf[51];
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType ROUTER\n");
getAddress(sample, &sample->nextHop, deviceId);
sample->srcMask = getData32(sample, deviceId);
sample->dstMask = getData32(sample, deviceId);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_ROUTER;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "nextHop %s\n",
printAddress(&sample->nextHop, buf, 50, deviceId));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "srcSubnetMask %lu\n", (long unsigned int)sample->srcMask);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dstSubnetMask %lu\n", (long unsigned int)sample->dstMask);
}
/*_________________---------------------------__________________
_________________ readExtendedGateway_v2 __________________
-----------------___________________________------------------
*/
static void readExtendedGateway_v2(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType GATEWAY\n");
sample->my_as = getData32(sample, deviceId);
sample->src_as = getData32(sample, deviceId);
sample->src_peer_as = getData32(sample, deviceId);
sample->dst_as_path_len = getData32(sample, deviceId);
/* just point at the dst_as_path array */
if(sample->dst_as_path_len > 0) {
sample->dst_as_path = (u_int32_t*)sample->datap;
/* and skip over it in the input */
skipBytes(sample, sample->dst_as_path_len * 4);
// fill in the dst and dst_peer fields too
sample->dst_peer_as = ntohl(sample->dst_as_path[0]);
sample->dst_as = ntohl(sample->dst_as_path[sample->dst_as_path_len - 1]);
}
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_GATEWAY;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "my_as %lu\n",
(long unsigned int)sample->my_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "src_as %lu\n",
(long unsigned int)sample->src_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "src_peer_as %lu\n",
(long unsigned int)sample->src_peer_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_as %lu\n",
(long unsigned int)sample->dst_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_peer_as %lu\n",
(long unsigned int)sample->dst_peer_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_as_path_len %lu\n",
(long unsigned int)sample->dst_as_path_len);
if(sample->dst_as_path_len > 0) {
u_int32_t i = 0;
for(; i < sample->dst_as_path_len; i++) {
if(i == 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_as_path "); }
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "-");
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%lu", (long unsigned int)ntohl(sample->dst_as_path[i]));
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "\n");
}
}
/*_________________---------------------------__________________
_________________ readExtendedGateway __________________
-----------------___________________________------------------
*/
static void readExtendedGateway(SFSample *sample, int deviceId)
{
u_int32_t segments;
int seg;
char buf[51];
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType GATEWAY\n");
if(sample->datagramVersion >= 5) {
getAddress(sample, &sample->bgp_nextHop, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "bgp_nexthop %s\n",
printAddress(&sample->bgp_nextHop, buf, 50, deviceId));
}
sample->my_as = getData32(sample, deviceId);
sample->src_as = getData32(sample, deviceId);
sample->src_peer_as = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "my_as %lu\n", (long unsigned int)sample->my_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "src_as %lu\n", (long unsigned int)sample->src_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "src_peer_as %lu\n", (long unsigned int)sample->src_peer_as);
segments = getData32(sample, deviceId);
if(segments > 0) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_as_path ");
for(seg = 0; seg < segments; seg++) {
u_int32_t seg_type;
u_int32_t seg_len;
int i;
seg_type = getData32(sample, deviceId);
seg_len = getData32(sample, deviceId);
for(i = 0; i < seg_len; i++) {
u_int32_t asNumber;
asNumber = getData32(sample, deviceId);
/* mark the first one as the dst_peer_as */
if(i == 0 && seg == 0) sample->dst_peer_as = asNumber;
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "-");
/* make sure the AS sets are in parentheses */
if(i == 0 && seg_type == SFLEXTENDED_AS_SET) if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "(");
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%lu", (long unsigned int)asNumber);
/* mark the last one as the dst_as */
if(seg == (segments - 1) && i == (seg_len - 1)) sample->dst_as = asNumber;
}
if(seg_type == SFLEXTENDED_AS_SET) if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, ")");
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "\n");
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_as %lu\n", (long unsigned int)sample->dst_as);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_peer_as %lu\n", (long unsigned int)sample->dst_peer_as);
sample->communities_len = getData32(sample, deviceId);
/* just point at the communities array */
if(sample->communities_len > 0) sample->communities = (u_int32_t*)sample->datap;
/* and skip over it in the input */
skipBytes(sample, sample->communities_len * 4);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_GATEWAY;
if(sample->communities_len > 0) {
int j = 0;
for(; j < sample->communities_len; j++) {
if(j == 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "BGP_communities "); }
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "-");
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%lu", (long unsigned int)ntohl(sample->communities[j]));
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "\n");
}
sample->localpref = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "BGP_localpref %lu\n", (long unsigned int)sample->localpref);
}
/*_________________---------------------------__________________
_________________ readExtendedUser __________________
-----------------___________________________------------------
*/
static void readExtendedUser(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType USER\n");
if(sample->datagramVersion >= 5) {
sample->src_user_charset = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "src_user_charset %d\n", sample->src_user_charset);
}
sample->src_user_len = getString(sample, sample->src_user, SA_MAX_EXTENDED_USER_LEN, deviceId);
if(sample->datagramVersion >= 5) {
sample->dst_user_charset = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_user_charset %d\n", sample->dst_user_charset);
}
sample->dst_user_len = getString(sample, sample->dst_user, SA_MAX_EXTENDED_USER_LEN, deviceId);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_USER;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "src_user %s\n", sample->src_user);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dst_user %s\n", sample->dst_user);
}
/*_________________---------------------------__________________
_________________ readExtendedUrl __________________
-----------------___________________________------------------
*/
static void readExtendedUrl(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType URL\n");
sample->url_direction = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "url_direction %lu\n", (long unsigned int)sample->url_direction);
sample->url_len = getString(sample, sample->url, SA_MAX_EXTENDED_URL_LEN, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "url %s\n", sample->url);
if(sample->datagramVersion >= 5) {
sample->host_len = getString(sample, sample->host, SA_MAX_EXTENDED_HOST_LEN, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "host %s\n", sample->host);
}
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_URL;
}
/*_________________---------------------------__________________
_________________ mplsLabelStack __________________
-----------------___________________________------------------
*/
static void mplsLabelStack(SFSample *sample, char *fieldName, int deviceId)
{
SFLLabelStack lstk;
u_int32_t lab;
lstk.depth = getData32(sample, deviceId);
/* just point at the lablelstack array */
if(lstk.depth > 0)
lstk.stack = (u_int32_t *)sample->datap;
else
return;
/* and skip over it in the input */
skipBytes(sample, lstk.depth * 4);
if(lstk.depth > 0) {
int j = 0;
for(; j < lstk.depth; j++) {
if(j == 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%s ", fieldName); }
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "-");
lab = ntohl(lstk.stack[j]);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "%lu.%lu.%lu.%lu",
(long unsigned int)(lab >> 12), // label
(long unsigned int)(lab >> 9) & 7, // experimental
(long unsigned int)(lab >> 8) & 1, // bottom of stack
(long unsigned int)(lab & 255)); // TTL
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "\n");
}
}
/*_________________---------------------------__________________
_________________ readExtendedMpls __________________
-----------------___________________________------------------
*/
static void readExtendedMpls(SFSample *sample, int deviceId)
{
char buf[51];
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType MPLS\n");
getAddress(sample, &sample->mpls_nextHop, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_nexthop %s\n", printAddress(&sample->mpls_nextHop, buf, 50, deviceId));
mplsLabelStack(sample, "mpls_input_stack", deviceId);
mplsLabelStack(sample, "mpls_output_stack", deviceId);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_MPLS;
}
/*_________________---------------------------__________________
_________________ readExtendedNat __________________
-----------------___________________________------------------
*/
static void readExtendedNat(SFSample *sample, int deviceId)
{
char buf[51];
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "extendedType NAT\n");
getAddress(sample, &sample->nat_src, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "nat_src %s\n", printAddress(&sample->nat_src, buf, 50, deviceId));
getAddress(sample, &sample->nat_dst, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "nat_dst %s\n", printAddress(&sample->nat_dst, buf, 50, deviceId));
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_NAT;
}
/*_________________---------------------------__________________
_________________ readExtendedMplsTunnel __________________
-----------------___________________________------------------
*/
static void readExtendedMplsTunnel(SFSample *sample, int deviceId)
{
#define SA_MAX_TUNNELNAME_LEN 100
char tunnel_name[SA_MAX_TUNNELNAME_LEN+1];
u_int32_t tunnel_id, tunnel_cos;
if(getString(sample, tunnel_name, SA_MAX_TUNNELNAME_LEN, deviceId) > 0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_tunnel_lsp_name %s\n", tunnel_name);
tunnel_id = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_tunnel_id %lu\n", (long unsigned int)tunnel_id);
tunnel_cos = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_tunnel_cos %lu\n", (long unsigned int)tunnel_cos);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_MPLS_TUNNEL;
}
/*_________________---------------------------__________________
_________________ readExtendedMplsVC __________________
-----------------___________________________------------------
*/
static void readExtendedMplsVC(SFSample *sample, int deviceId)
{
#define SA_MAX_VCNAME_LEN 100
char vc_name[SA_MAX_VCNAME_LEN+1];
u_int32_t vll_vc_id, vc_cos;
if(getString(sample, vc_name, SA_MAX_VCNAME_LEN, deviceId) > 0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_vc_name %s\n", vc_name);
vll_vc_id = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_vll_vc_id %lu\n", (long unsigned int)vll_vc_id);
vc_cos = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_vc_cos %lu\n", (long unsigned int)vc_cos);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_MPLS_VC;
}
/*_________________---------------------------__________________
_________________ readExtendedMplsFTN __________________
-----------------___________________________------------------
*/
static void readExtendedMplsFTN(SFSample *sample, int deviceId)
{
#define SA_MAX_FTN_LEN 100
char ftn_descr[SA_MAX_FTN_LEN+1];
u_int32_t ftn_mask;
if(getString(sample, ftn_descr, SA_MAX_FTN_LEN, deviceId) > 0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_ftn_descr %s\n", ftn_descr);
ftn_mask = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_ftn_mask %lu\n", (long unsigned int)ftn_mask);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_MPLS_FTN;
}
/*_________________---------------------------__________________
_________________ readExtendedMplsLDP_FEC __________________
-----------------___________________________------------------
*/
static void readExtendedMplsLDP_FEC(SFSample *sample, int deviceId)
{
u_int32_t fec_addr_prefix_len = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "mpls_fec_addr_prefix_len %lu\n",
(long unsigned int)fec_addr_prefix_len);
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_MPLS_LDP_FEC;
}
/*_________________---------------------------__________________
_________________ readExtendedVlanTunnel __________________
-----------------___________________________------------------
*/
static void readExtendedVlanTunnel(SFSample *sample, int deviceId)
{
u_int32_t lab;
SFLLabelStack lstk;
memset(&lstk, 0, sizeof(lstk));
lstk.depth = getData32(sample, deviceId);
/* just point at the lablelstack array */
if(lstk.depth > 0) lstk.stack = (u_int32_t *)sample->datap;
/* and skip over it in the input */
skipBytes(sample, lstk.depth * 4);
if(lstk.depth > 0) {
int j = 0;
for(; j < lstk.depth; j++) {
if(j == 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "vlan_tunnel "); }
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "-");
lab = ntohl(lstk.stack[j]);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "0x%04x.%lu.%lu.%lu",
(lab >> 16), // TPI
(long unsigned int)(lab >> 13) & 7, // priority
(long unsigned int)(lab >> 12) & 1, // CFI
(long unsigned int)(lab & 4095)); // VLAN
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "\n");
}
sample->extended_data_tag |= SASAMPLE_EXTENDED_DATA_VLAN_TUNNEL;
}
/*_________________---------------------------__________________
_________________ readFlowSample_header __________________
-----------------___________________________------------------
*/
static void readFlowSample_header(SFSample *sample, int deviceId)
{
u_int toSkip;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "flowSampleType HEADER\n");
sample->headerProtocol = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "headerProtocol %lu\n", (long unsigned int)sample->headerProtocol);
sample->sampledPacketSize = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampledPacketSize %lu\n", (long unsigned int)sample->sampledPacketSize);
if(sample->datagramVersion > 4) {
// stripped count introduced in sFlow version 5
sample->stripped = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "strippedBytes %lu\n", (long unsigned int)sample->stripped);
}
sample->headerLen = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "headerLen %lu\n", (long unsigned int)sample->headerLen);
sample->header = (u_char *)sample->datap; /* just point at the header */
toSkip = ((sample->headerLen + 3) / 4) * 4; /* L.Deri */
skipBytes(sample, toSkip);
{
char scratch[2000];
printHex(sample->header, sample->headerLen, (u_char*)scratch, 2000, 0, 2000);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "headerBytes %s\n", scratch);
}
switch(sample->headerProtocol) {
/* the header protocol tells us where to jump into the decode */
case SFLHEADER_ETHERNET_ISO8023:
decodeLinkLayer(sample, deviceId);
break;
case SFLHEADER_IPv4:
sample->gotIPV4 = YES;
sample->offsetToIPV4 = 0;
break;
case SFLHEADER_ISO88024_TOKENBUS:
case SFLHEADER_ISO88025_TOKENRING:
case SFLHEADER_FDDI:
case SFLHEADER_FRAME_RELAY:
case SFLHEADER_X25:
case SFLHEADER_PPP:
case SFLHEADER_SMDS:
case SFLHEADER_AAL5:
case SFLHEADER_AAL5_IP:
case SFLHEADER_IPv6:
case SFLHEADER_MPLS:
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "NO_DECODE headerProtocol=%d\n", sample->headerProtocol);
break;
default:
fprintf(stderr, "undefined headerProtocol = %d\n", sample->headerProtocol);
exit(-12);
}
if(sample->gotIPV4) {
// report the size of the original IPPdu (including the IP header)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPSize %d\n", sample->sampledPacketSize - sample->stripped - sample->offsetToIPV4);
decodeIPV4(sample, deviceId);
}
}
/*_________________---------------------------__________________
_________________ readFlowSample_ethernet __________________
-----------------___________________________------------------
*/
static void readFlowSample_ethernet(SFSample *sample, int deviceId)
{
char *p;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "flowSampleType ETHERNET\n");
sample->eth_len = getData32(sample, deviceId);
memcpy(sample->eth_src, sample->datap, 6);
skipBytes(sample, 6);
memcpy(sample->eth_dst, sample->datap, 6);
skipBytes(sample, 6);
sample->eth_type = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ethernet_type %lu\n", (long unsigned int)sample->eth_type);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ethernet_len %lu\n", (long unsigned int)sample->eth_len);
p = (char*)sample->eth_src;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ethernet_src %02x%02x%02x%02x%02x%02x\n", p[0], p[1], p[2], p[3], p[4], p[5]);
p = (char*)sample->eth_dst;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ethernet_dst %02x%02x%02x%02x%02x%02x\n", p[0], p[1], p[2], p[3], p[4], p[5]);
}
/*_________________---------------------------__________________
_________________ readFlowSample_IPv4 __________________
-----------------___________________________------------------
*/
static void readFlowSample_IPv4(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "flowSampleType IPV4\n");
sample->headerLen = sizeof(SFLSampled_ipv4);
sample->header = (u_char *)sample->datap; /* just point at the header */
skipBytes(sample, sample->headerLen);
{
char buf[51];
SFLSampled_ipv4 nfKey;
memcpy(&nfKey, sample->header, sizeof(nfKey));
sample->sampledPacketSize = ntohl(nfKey.length);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampledPacketSize %lu\n", (long unsigned int)sample->sampledPacketSize);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPSize %d\n", sample->sampledPacketSize);
sample->dcd_srcIP = nfKey.src_ip;
sample->dcd_dstIP = nfKey.dst_ip;
sample->dcd_ipProtocol = ntohl(nfKey.protocol);
sample->dcd_ipTos = ntohl(nfKey.tos);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "srcIP %s\n", IP_to_a(sample->dcd_srcIP.s_addr, buf));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dstIP %s\n", IP_to_a(sample->dcd_dstIP.s_addr, buf));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPProtocol %u\n", sample->dcd_ipProtocol);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "IPTOS %u\n", sample->dcd_ipTos);
sample->dcd_sport = ntohl(nfKey.src_port);
sample->dcd_dport = ntohl(nfKey.dst_port);
switch(sample->dcd_ipProtocol) {
case 1: /* ICMP */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ICMPType %u\n", sample->dcd_dport);
/* not sure about the dest port being icmp type
- might be that src port is icmp type and dest
port is icmp code. Still, have seen some
implementations where src port is 0 and dst
port is the type, so it may be safer to
assume that the destination port has the type */
break;
case 6: /* TCP */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "TCPSrcPort %u\n", sample->dcd_sport);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "TCPDstPort %u\n", sample->dcd_dport);
sample->dcd_tcpFlags = ntohl(nfKey.tcp_flags);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "TCPFlags %u\n", sample->dcd_tcpFlags);
break;
case 17: /* UDP */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "UDPSrcPort %u\n", sample->dcd_sport);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "UDPDstPort %u\n", sample->dcd_dport);
break;
default: /* some other protcol */
break;
}
}
}
/*_________________---------------------------__________________
_________________ readFlowSample_IPv6 __________________
-----------------___________________________------------------
*/
static void readFlowSample_IPv6(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "flowSampleType IPV6\n");
sample->header = (u_char *)sample->datap; /* just point at the header */
sample->headerLen = sizeof(SFLSampled_ipv6);
skipBytes(sample, sample->headerLen);
{
SFLSampled_ipv6 nfKey6;
memcpy(&nfKey6, sample->header, sizeof(nfKey6));
sample->sampledPacketSize = ntohl(nfKey6.length);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampledPacketSize %lu\n", (long unsigned int)sample->sampledPacketSize);
}
/* bug: more decode to do here */
}
/*_________________---------------------------__________________
_________________ readFlowSample_v2v4 __________________
-----------------___________________________------------------
*/
static void readFlowSample_v2v4(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleType FLOWSAMPLE\n");
sample->samplesGenerated = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleSequenceNo %lu\n", (long unsigned int)sample->samplesGenerated);
{
u_int32_t samplerId = getData32(sample, deviceId);
sample->ds_class = samplerId >> 24;
sample->ds_index = samplerId & 0x00ffffff;
if(SFLOW_DEBUG(deviceId))
traceEvent(CONST_TRACE_INFO, "sourceId %lu:%lu\n",
(long unsigned int)sample->ds_class,
(long unsigned int)sample->ds_index);
}
sample->meanSkipCount = getData32(sample, deviceId);
sample->samplePool = getData32(sample, deviceId);
sample->dropEvents = getData32(sample, deviceId);
sample->inputPort = getData32(sample, deviceId);
sample->outputPort = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "meanSkipCount %lu\n", (long unsigned int)sample->meanSkipCount);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "samplePool %lu\n", (long unsigned int)sample->samplePool);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dropEvents %lu\n", (long unsigned int)sample->dropEvents);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "inputPort %lu\n", (long unsigned int)sample->inputPort);
if(sample->outputPort & 0x80000000) {
u_int32_t numOutputs = sample->outputPort & 0x7fffffff;
if(numOutputs > 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort multiple %d\n", numOutputs); }
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort multiple >1\n");
}
else if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort %lu\n", (long unsigned int)sample->outputPort);
sample->packet_data_tag = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "packet_data_tag=%d", sample->packet_data_tag);
switch(sample->packet_data_tag) {
case INMPACKETTYPE_HEADER: readFlowSample_header(sample, deviceId); break;
case INMPACKETTYPE_IPV4: readFlowSample_IPv4(sample, deviceId); break;
case INMPACKETTYPE_IPV6: readFlowSample_IPv6(sample, deviceId); break;
default: receiveError(sample, "unexpected packet_data_tag", YES); break;
}
sample->extended_data_tag = 0;
{
u_int32_t x;
sample->num_extended = getData32(sample, deviceId);
for(x = 0; x < sample->num_extended; x++) {
u_int32_t extended_tag;
extended_tag = getData32(sample, deviceId);
switch(extended_tag) {
case INMEXTENDED_SWITCH: readExtendedSwitch(sample, deviceId); break;
case INMEXTENDED_ROUTER: readExtendedRouter(sample, deviceId); break;
case INMEXTENDED_GATEWAY:
if(sample->datagramVersion == 2) readExtendedGateway_v2(sample, deviceId);
else readExtendedGateway(sample, deviceId);
break;
case INMEXTENDED_USER: readExtendedUser(sample, deviceId); break;
case INMEXTENDED_URL: readExtendedUrl(sample, deviceId); break;
default: receiveError(sample, "unrecognized extended data tag", YES); break;
}
}
}
}
/*_________________---------------------------__________________
_________________ readFlowSample __________________
-----------------___________________________------------------
*/
static void readFlowSample(SFSample *sample, int expanded, int deviceId)
{
u_int32_t num_elements, sampleLength;
u_char *sampleStart;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleType FLOWSAMPLE\n");
sampleLength = getData32(sample, deviceId);
sampleStart = (u_char *)sample->datap;
sample->samplesGenerated = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleSequenceNo %lu\n", (long unsigned int)sample->samplesGenerated);
if(expanded) {
sample->ds_class = getData32(sample, deviceId);
sample->ds_index = getData32(sample, deviceId);
}
else {
u_int32_t samplerId = getData32(sample, deviceId);
sample->ds_class = samplerId >> 24;
sample->ds_index = samplerId & 0x00ffffff;
}
if(SFLOW_DEBUG(deviceId))
traceEvent(CONST_TRACE_INFO, "sourceId %lu:%lu\n",
(long unsigned int)sample->ds_class,
(long unsigned int)sample->ds_index);
sample->meanSkipCount = getData32(sample, deviceId);
sample->samplePool = getData32(sample, deviceId);
sample->dropEvents = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "meanSkipCount %lu\n", (long unsigned int)sample->meanSkipCount);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "samplePool %lu\n", (long unsigned int)sample->samplePool);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "dropEvents %lu\n", (long unsigned int)sample->dropEvents);
if(expanded) {
sample->inputPortFormat = getData32(sample, deviceId);
sample->inputPort = getData32(sample, deviceId);
sample->outputPortFormat = getData32(sample, deviceId);
sample->outputPort = getData32(sample, deviceId);
}
else {
u_int32_t inp, outp;
inp = getData32(sample, deviceId);
outp = getData32(sample, deviceId);
sample->inputPortFormat = inp >> 30;
sample->outputPortFormat = outp >> 30;
sample->inputPort = inp & 0x3fffffff;
sample->outputPort = outp & 0x3fffffff;
}
if(sample->inputPortFormat == 3) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "inputPort format==3 %lu\n", (long unsigned int)sample->inputPort); }
else if(sample->inputPortFormat == 2) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "inputPort multiple %lu\n", (long unsigned int)sample->inputPort); }
else if(sample->inputPortFormat == 1) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "inputPort dropCode %lu\n", (long unsigned int)sample->inputPort); }
else if(sample->inputPortFormat == 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "inputPort %lu\n", (long unsigned int)sample->inputPort); }
if(sample->outputPortFormat == 3) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort format==3 %lu\n", (long unsigned int)sample->outputPort); }
else if(sample->outputPortFormat == 2) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort multiple %lu\n", (long unsigned int)sample->outputPort); }
else if(sample->outputPortFormat == 1) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort dropCode %lu\n", (long unsigned int)sample->outputPort); }
else if(sample->outputPortFormat == 0) { if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "outputPort %lu\n", (long unsigned int)sample->outputPort); }
num_elements = getData32(sample, deviceId);
{
int el;
for(el = 0; el < num_elements; el++) {
u_int32_t tag, length;
u_char *start;
char buf[51];
tag = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "flowBlock_tag %s\n", printTag(tag, buf, 50, deviceId));
length = getData32(sample, deviceId);
start = (u_char *)sample->datap;
switch(tag) {
case SFLFLOW_HEADER: readFlowSample_header(sample, deviceId); break;
case SFLFLOW_ETHERNET: readFlowSample_ethernet(sample, deviceId); break;
case SFLFLOW_IPV4: readFlowSample_IPv4(sample, deviceId); break;
case SFLFLOW_IPV6: readFlowSample_IPv6(sample, deviceId); break;
case SFLFLOW_EX_SWITCH: readExtendedSwitch(sample, deviceId); break;
case SFLFLOW_EX_ROUTER: readExtendedRouter(sample, deviceId); break;
case SFLFLOW_EX_GATEWAY: readExtendedGateway(sample, deviceId); break;
case SFLFLOW_EX_USER: readExtendedUser(sample, deviceId); break;
case SFLFLOW_EX_URL: readExtendedUrl(sample, deviceId); break;
case SFLFLOW_EX_MPLS: readExtendedMpls(sample, deviceId); break;
case SFLFLOW_EX_NAT: readExtendedNat(sample, deviceId); break;
case SFLFLOW_EX_MPLS_TUNNEL: readExtendedMplsTunnel(sample, deviceId); break;
case SFLFLOW_EX_MPLS_VC: readExtendedMplsVC(sample, deviceId); break;
case SFLFLOW_EX_MPLS_FTN: readExtendedMplsFTN(sample, deviceId); break;
case SFLFLOW_EX_MPLS_LDP_FEC: readExtendedMplsLDP_FEC(sample, deviceId); break;
case SFLFLOW_EX_VLAN_TUNNEL: readExtendedVlanTunnel(sample, deviceId); break;
default: skipTLVRecord(sample, tag, "flow_sample_element", deviceId); break;
}
lengthCheck(sample, "flow_sample_element", start, length);
}
}
lengthCheck(sample, "flow_sample", sampleStart, sampleLength);
}
/*_________________---------------------------__________________
_________________ readCounters_generic __________________
-----------------___________________________------------------
*/
static void readCounters_generic(SFSample *sample, int deviceId)
{
IfCounters ifName;
/* the first part of the generic counters block is really just more info about the interface. */
sample->ifIndex = getData32(sample, deviceId); if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ifIndex %lu\n", (long unsigned int)sample->ifIndex);
sample->networkType = getData32(sample, deviceId); if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "networkType %lu\n", (long unsigned int)sample->networkType);
sample->ifSpeed = getData64(sample, deviceId); if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ifSpeed %llu\n", (long long unsigned int)sample->ifSpeed);
sample->ifDirection = getData32(sample, deviceId); if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ifDirection %lu\n", (long unsigned int)sample->ifDirection);
sample->ifStatus = getData32(sample, deviceId); if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "ifStatus %lu\n", (long unsigned int)sample->ifStatus);
ifName.ifIndex = sample->ifIndex;
ifName.ifType = sample->networkType;
ifName.ifSpeed = sample->ifSpeed;
ifName.ifDirection = sample->ifDirection;
ifName.ifStatus = sample->ifStatus;
/* the generic counters always come first */
ifName.ifInOctets = sf_log_next64(sample, "ifInOctets", deviceId);
ifName.ifInUcastPkts = sf_log_next32(sample, "ifInUcastPkts", deviceId);
ifName.ifInMulticastPkts = sf_log_next32(sample, "ifInMulticastPkts", deviceId);
ifName.ifInBroadcastPkts = sf_log_next32(sample, "ifInBroadcastPkts", deviceId);
ifName.ifInDiscards = sf_log_next32(sample, "ifInDiscards", deviceId);
ifName.ifInErrors = sf_log_next32(sample, "ifInErrors", deviceId);
ifName.ifInUnknownProtos = sf_log_next32(sample, "ifInUnknownProtos", deviceId);
ifName.ifOutOctets = sf_log_next64(sample, "ifOutOctets", deviceId);
ifName.ifOutUcastPkts = sf_log_next32(sample, "ifOutUcastPkts", deviceId);
ifName.ifOutMulticastPkts = sf_log_next32(sample, "ifOutMulticastPkts", deviceId);
ifName.ifOutBroadcastPkts = sf_log_next32(sample, "ifOutBroadcastPkts", deviceId);
ifName.ifOutDiscards = sf_log_next32(sample, "ifOutDiscards", deviceId);
ifName.ifOutErrors = sf_log_next32(sample, "ifOutErrors", deviceId);
ifName.ifPromiscuousMode = sf_log_next32(sample, "ifPromiscuousMode", deviceId);
updateSflowInterfaceCounters(deviceId, &ifName);
}
/*_________________---------------------------__________________
_________________ readCounters_ethernet __________________
-----------------___________________________------------------
*/
static void readCounters_ethernet(SFSample *sample, int deviceId)
{
sf_log_next32(sample, "dot3StatsAlignmentErrors", deviceId);
sf_log_next32(sample, "dot3StatsFCSErrors", deviceId);
sf_log_next32(sample, "dot3StatsSingleCollisionFrames", deviceId);
sf_log_next32(sample, "dot3StatsMultipleCollisionFrames", deviceId);
sf_log_next32(sample, "dot3StatsSQETestErrors", deviceId);
sf_log_next32(sample, "dot3StatsDeferredTransmissions", deviceId);
sf_log_next32(sample, "dot3StatsLateCollisions", deviceId);
sf_log_next32(sample, "dot3StatsExcessiveCollisions", deviceId);
sf_log_next32(sample, "dot3StatsInternalMacTransmitErrors", deviceId);
sf_log_next32(sample, "dot3StatsCarrierSenseErrors", deviceId);
sf_log_next32(sample, "dot3StatsFrameTooLongs", deviceId);
sf_log_next32(sample, "dot3StatsInternalMacReceiveErrors", deviceId);
sf_log_next32(sample, "dot3StatsSymbolErrors", deviceId);
}
/*_________________---------------------------__________________
_________________ readCounters_tokenring __________________
-----------------___________________________------------------
*/
static void readCounters_tokenring(SFSample *sample, int deviceId)
{
sf_log_next32(sample, "dot5StatsLineErrors", deviceId);
sf_log_next32(sample, "dot5StatsBurstErrors", deviceId);
sf_log_next32(sample, "dot5StatsACErrors", deviceId);
sf_log_next32(sample, "dot5StatsAbortTransErrors", deviceId);
sf_log_next32(sample, "dot5StatsInternalErrors", deviceId);
sf_log_next32(sample, "dot5StatsLostFrameErrors", deviceId);
sf_log_next32(sample, "dot5StatsReceiveCongestions", deviceId);
sf_log_next32(sample, "dot5StatsFrameCopiedErrors", deviceId);
sf_log_next32(sample, "dot5StatsTokenErrors", deviceId);
sf_log_next32(sample, "dot5StatsSoftErrors", deviceId);
sf_log_next32(sample, "dot5StatsHardErrors", deviceId);
sf_log_next32(sample, "dot5StatsSignalLoss", deviceId);
sf_log_next32(sample, "dot5StatsTransmitBeacons", deviceId);
sf_log_next32(sample, "dot5StatsRecoverys", deviceId);
sf_log_next32(sample, "dot5StatsLobeWires", deviceId);
sf_log_next32(sample, "dot5StatsRemoves", deviceId);
sf_log_next32(sample, "dot5StatsSingles", deviceId);
sf_log_next32(sample, "dot5StatsFreqErrors", deviceId);
}
/*_________________---------------------------__________________
_________________ readCounters_vg __________________
-----------------___________________________------------------
*/
static void readCounters_vg(SFSample *sample, int deviceId)
{
sf_log_next32(sample, "dot12InHighPriorityFrames", deviceId);
sf_log_next64(sample, "dot12InHighPriorityOctets", deviceId);
sf_log_next32(sample, "dot12InNormPriorityFrames", deviceId);
sf_log_next64(sample, "dot12InNormPriorityOctets", deviceId);
sf_log_next32(sample, "dot12InIPMErrors", deviceId);
sf_log_next32(sample, "dot12InOversizeFrameErrors", deviceId);
sf_log_next32(sample, "dot12InDataErrors", deviceId);
sf_log_next32(sample, "dot12InNullAddressedFrames", deviceId);
sf_log_next32(sample, "dot12OutHighPriorityFrames", deviceId);
sf_log_next64(sample, "dot12OutHighPriorityOctets", deviceId);
sf_log_next32(sample, "dot12TransitionIntoTrainings", deviceId);
sf_log_next64(sample, "dot12HCInHighPriorityOctets", deviceId);
sf_log_next64(sample, "dot12HCInNormPriorityOctets", deviceId);
sf_log_next64(sample, "dot12HCOutHighPriorityOctets", deviceId);
}
/*_________________---------------------------__________________
_________________ readCounters_vlan __________________
-----------------___________________________------------------
*/
static void readCounters_vlan(SFSample *sample, int deviceId)
{
sample->in_vlan = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "in_vlan %lu\n", (long unsigned int)sample->in_vlan);
sf_log_next64(sample, "octets", deviceId);
sf_log_next32(sample, "ucastPkts", deviceId);
sf_log_next32(sample, "multicastPkts", deviceId);
sf_log_next32(sample, "broadcastPkts", deviceId);
sf_log_next32(sample, "discards", deviceId);
}
/*_________________---------------------------__________________
_________________ readCountersSample_v2v4 __________________
-----------------___________________________------------------
*/
static void readCountersSample_v2v4(SFSample *sample, int deviceId)
{
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleType COUNTERSSAMPLE\n");
sample->samplesGenerated = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleSequenceNo %lu\n", (long unsigned int)sample->samplesGenerated);
{
u_int32_t samplerId = getData32(sample, deviceId);
sample->ds_class = samplerId >> 24;
sample->ds_index = samplerId & 0x00ffffff;
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sourceId %lu:%lu\n", (long unsigned int)sample->ds_class, (long unsigned int)sample->ds_index);
sample->statsSamplingInterval = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "statsSamplingInterval %lu\n", (long unsigned int)sample->statsSamplingInterval);
/* now find out what sort of counter blocks we have here... */
sample->counterBlockVersion = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "counterBlockVersion %lu\n", (long unsigned int)sample->counterBlockVersion);
/* first see if we should read the generic stats */
switch(sample->counterBlockVersion) {
case INMCOUNTERSVERSION_GENERIC:
case INMCOUNTERSVERSION_ETHERNET:
case INMCOUNTERSVERSION_TOKENRING:
case INMCOUNTERSVERSION_FDDI:
case INMCOUNTERSVERSION_VG:
case INMCOUNTERSVERSION_WAN: readCounters_generic(sample, deviceId); break;
case INMCOUNTERSVERSION_VLAN: break;
default: receiveError(sample, "unknown stats version", YES); break;
}
/* now see if there are any specific counter blocks to add */
switch(sample->counterBlockVersion) {
case INMCOUNTERSVERSION_GENERIC: /* nothing more */ break;
case INMCOUNTERSVERSION_ETHERNET: readCounters_ethernet(sample, deviceId); break;
case INMCOUNTERSVERSION_TOKENRING:readCounters_tokenring(sample, deviceId); break;
case INMCOUNTERSVERSION_FDDI: break;
case INMCOUNTERSVERSION_VG: readCounters_vg(sample, deviceId); break;
case INMCOUNTERSVERSION_WAN: break;
case INMCOUNTERSVERSION_VLAN: readCounters_vlan(sample, deviceId); break;
default: receiveError(sample, "unknown INMCOUNTERSVERSION", YES); break;
}
}
/*_________________---------------------------__________________
_________________ readCountersSample __________________
-----------------___________________________------------------
*/
static void readCountersSample(SFSample *sample, int expanded, int deviceId)
{
u_int32_t sampleLength;
u_int32_t num_elements;
char *sampleStart;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleType COUNTERSSAMPLE\n");
sampleLength = getData32(sample, deviceId);
sampleStart = (char *)sample->datap;
sample->samplesGenerated = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleSequenceNo %lu\n", (long unsigned int)sample->samplesGenerated);
if(expanded) {
sample->ds_class = getData32(sample, deviceId);
sample->ds_index = getData32(sample, deviceId);
}
else {
u_int32_t samplerId = getData32(sample, deviceId);
sample->ds_class = samplerId >> 24;
sample->ds_index = samplerId & 0x00ffffff;
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sourceId %lu:%lu\n", (long unsigned int)sample->ds_class, (long unsigned int)sample->ds_index);
num_elements = getData32(sample, deviceId);
{
int el;
for(el = 0; el < num_elements; el++) {
u_int32_t tag, length;
char *start;
char buf[51];
tag = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "counterBlock_tag %s\n", printTag(tag, buf, 50, deviceId));
length = getData32(sample, deviceId);
start = (char *)sample->datap;
switch(tag) {
case SFLCOUNTERS_GENERIC: readCounters_generic(sample, deviceId); break;
case SFLCOUNTERS_ETHERNET: readCounters_ethernet(sample, deviceId); break;
case SFLCOUNTERS_TOKENRING:readCounters_tokenring(sample, deviceId); break;
case SFLCOUNTERS_VG: readCounters_vg(sample, deviceId); break;
case SFLCOUNTERS_VLAN: readCounters_vlan(sample, deviceId); break;
default: skipTLVRecord(sample, tag, "counters_sample_element", deviceId); break;
}
lengthCheck(sample, "counters_sample_element", (u_char*)start, length);
}
}
lengthCheck(sample, "counters_sample", (u_char*)sampleStart, sampleLength);
}
/*_________________---------------------------__________________
_________________ readSFlowDatagram __________________
-----------------___________________________------------------
*/
static void readSFlowDatagram(SFSample *sample, int deviceId)
{
u_int32_t samplesInPacket;
struct timeval now;
char buf[51];
/* log some datagram info */
now.tv_sec = time(NULL);
now.tv_usec = 0;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "datagramSourceIP %s\n", IP_to_a(sample->sourceIP.s_addr, buf));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "datagramSize %lu\n", (long unsigned int)sample->rawSampleLen);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "unixSecondsUTC %lu\n", now.tv_sec);
/* check the version */
sample->datagramVersion = getData32(sample, deviceId);
switch(sample->datagramVersion) {
case 2:
myGlobals.device[deviceId].sflowGlobals->numsFlowsV2Rcvd++;
break;
case 4:
myGlobals.device[deviceId].sflowGlobals->numsFlowsV4Rcvd++;
break;
case 5:
myGlobals.device[deviceId].sflowGlobals->numsFlowsV5Rcvd++;
break;
default:
myGlobals.device[deviceId].sflowGlobals->numBadsFlowsVersionsRcvd++;
break;
}
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "datagramVersion %d\n", sample->datagramVersion);
if(sample->datagramVersion != 2 &&
sample->datagramVersion != 4 &&
sample->datagramVersion != 5) {
receiveError(sample, "unexpected datagram version number\n", YES);
}
/* get the agent address */
getAddress(sample, &sample->agent_addr, deviceId);
/* version 5 has an agent sub-id as well */
if(sample->datagramVersion >= 5) {
sample->agentSubId = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "agentSubId %lu\n", (long unsigned int)sample->agentSubId);
}
sample->sequenceNo = getData32(sample, deviceId); /* this is the packet sequence number */
sample->sysUpTime = getData32(sample, deviceId);
samplesInPacket = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "agent %s\n", printAddress(&sample->agent_addr, buf, 50, deviceId));
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "packetSequenceNo %lu\n", (long unsigned int)sample->sequenceNo);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sysUpTime %lu\n", (long unsigned int)sample->sysUpTime);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "samplesInPacket %lu\n", (long unsigned int)samplesInPacket);
/* now iterate and pull out the flows and counters samples */
{
u_int32_t samp = 0;
for(; samp < samplesInPacket; samp++) {
// just read the tag, then call the approriate decode fn
sample->sampleType = getData32(sample, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "startSample ----------------------\n");
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "sampleType_tag %s\n", printTag(sample->sampleType, buf, 50, deviceId));
if(sample->datagramVersion >= 5) {
switch(sample->sampleType) {
case SFLFLOW_SAMPLE: readFlowSample(sample, NO, deviceId); break;
case SFLCOUNTERS_SAMPLE: readCountersSample(sample, NO, deviceId); break;
case SFLFLOW_SAMPLE_EXPANDED: readFlowSample(sample, YES, deviceId); break;
case SFLCOUNTERS_SAMPLE_EXPANDED: readCountersSample(sample, YES, deviceId); break;
default: skipTLVRecord(sample, sample->sampleType, "sample", deviceId); break;
}
} else {
switch(sample->sampleType) {
case FLOWSAMPLE: readFlowSample_v2v4(sample, deviceId); break;
case COUNTERSSAMPLE: readCountersSample_v2v4(sample, deviceId); break;
default: receiveError(sample, "unexpected sample type", YES); break;
}
}
if(SFLOW_DEBUG(deviceId))
traceEvent(CONST_TRACE_INFO, "endSample [%d] ----------------------\n", sample->sampleType);
// traceEvent(CONST_TRACE_INFO, "endSample [%d] ----------------------\n", sample->sampleType);
if((sample->sampleType == SFLFLOW_SAMPLE)
|| (sample->sampleType == SFLFLOW_SAMPLE_EXPANDED)) {
handleSflowSample(sample, deviceId);
}
}
}
}
/* =============================================================== */
/* *************************** */
static void dissectFlow(SFSample *sample, int deviceId) {
readSFlowDatagram(sample, deviceId);
}
/* ****************************** */
#ifdef MAKE_WITH_SFLOWSIGTRAP
RETSIGTYPE sflowcleanup(int signo) {
static int msgSent = 0;
int i;
void *array[20];
size_t size;
char **strings;
if(msgSent<10) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_FATALERROR, "SFLOW: caught signal %d %s", signo,
signo == SIGHUP ? "SIGHUP" :
signo == SIGINT ? "SIGINT" :
signo == SIGQUIT ? "SIGQUIT" :
signo == SIGILL ? "SIGILL" :
signo == SIGABRT ? "SIGABRT" :
signo == SIGFPE ? "SIGFPE" :
signo == SIGKILL ? "SIGKILL" :
signo == SIGSEGV ? "SIGSEGV" :
signo == SIGPIPE ? "SIGPIPE" :
signo == SIGALRM ? "SIGALRM" :
signo == SIGTERM ? "SIGTERM" :
signo == SIGUSR1 ? "SIGUSR1" :
signo == SIGUSR2 ? "SIGUSR2" :
signo == SIGCHLD ? "SIGCHLD" :
#ifdef SIGCONT
signo == SIGCONT ? "SIGCONT" :
#endif
#ifdef SIGSTOP
signo == SIGSTOP ? "SIGSTOP" :
#endif
#ifdef SIGBUS
signo == SIGBUS ? "SIGBUS" :
#endif
#ifdef SIGSYS
signo == SIGSYS ? "SIGSYS"
#endif
: "other");
msgSent++;
}
traceEvent(CONST_TRACE_FATALERROR, "SFLOW: ntop shutting down...");
exit(102);
}
#endif /* MAKE_WITH_SFLOWSIGTRAP */
/* ****************************** */
static void* sflowMainLoop(void* _deviceId) {
fd_set sflowMask;
int rc, len, deviceId;
u_char buffer[2048];
struct sockaddr_in fromHost;
deviceId = (int)((long)_deviceId);
if(!(myGlobals.device[deviceId].sflowGlobals->sflowInSocket > 0)) return(NULL);
traceEvent(CONST_TRACE_INFO, "THREADMGMT: SFLOW: thread starting [p%d, t%lu]...",
getpid(), (long unsigned int)pthread_self());
#ifdef MAKE_WITH_SFLOWSIGTRAP
signal(SIGSEGV, sflowcleanup);
signal(SIGHUP, sflowcleanup);
signal(SIGINT, sflowcleanup);
signal(SIGQUIT, sflowcleanup);
signal(SIGILL, sflowcleanup);
signal(SIGABRT, sflowcleanup);
signal(SIGFPE, sflowcleanup);
signal(SIGKILL, sflowcleanup);
signal(SIGPIPE, sflowcleanup);
signal(SIGALRM, sflowcleanup);
signal(SIGTERM, sflowcleanup);
signal(SIGUSR1, sflowcleanup);
signal(SIGUSR2, sflowcleanup);
/* signal(SIGCHLD, sflowcleanup); */
#ifdef SIGCONT
signal(SIGCONT, sflowcleanup);
#endif
#ifdef SIGSTOP
signal(SIGSTOP, sflowcleanup);
#endif
#ifdef SIGBUS
signal(SIGBUS, sflowcleanup);
#endif
#ifdef SIGSYS
signal(SIGSYS, sflowcleanup);
#endif
#endif /* MAKE_WITH_SFLOWSIGTRAP */
myGlobals.device[deviceId].activeDevice = 1;
myGlobals.device[deviceId].dummyDevice = 0;
myGlobals.device[deviceId].sflowGlobals->threadActive = 1;
ntopSleepUntilStateRUN();
traceEvent(CONST_TRACE_INFO, "THREADMGMT: SFLOW: thread running [p%d, t%lu]...",
getpid(), (long unsigned int)pthread_self());
for(;myGlobals.ntopRunState <= FLAG_NTOPSTATE_RUN;) {
int maxSock = myGlobals.device[deviceId].sflowGlobals->sflowInSocket;
struct timeval wait_time;
FD_ZERO(&sflowMask);
FD_SET(myGlobals.device[deviceId].sflowGlobals->sflowInSocket, &sflowMask);
wait_time.tv_sec = 3, wait_time.tv_usec = 0;
if(!myGlobals.device[deviceId].activeDevice) break;
rc = select(maxSock+1, &sflowMask, NULL, NULL, &wait_time);
if(!myGlobals.device[deviceId].activeDevice) break;
if(rc > 0) {
if(FD_ISSET(myGlobals.device[deviceId].sflowGlobals->sflowInSocket, &sflowMask)){
len = sizeof(fromHost);
rc = recvfrom(myGlobals.device[deviceId].sflowGlobals->sflowInSocket,(char*)&buffer, sizeof(buffer),
0,(struct sockaddr*)&fromHost, (socklen_t*)&len);
}
#ifdef DEBUG_FLOWS
if(0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW_DEBUG: Received sFlow packet(len=%d)(deviceId=%d)",
rc, deviceId);
#endif
if(rc > 0) {
int i;
SFSample sample;
myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd++;
NTOHL(fromHost.sin_addr.s_addr);
for(i=0; i<MAX_NUM_PROBES; i++) {
if(myGlobals.device[deviceId].sflowGlobals->probeList[i].probeAddr.s_addr == 0) {
myGlobals.device[deviceId].sflowGlobals->probeList[i].probeAddr.s_addr = fromHost.sin_addr.s_addr;
myGlobals.device[deviceId].sflowGlobals->probeList[i].pkts = 1;
break;
} else if(myGlobals.device[deviceId].sflowGlobals->probeList[i].probeAddr.s_addr == fromHost.sin_addr.s_addr) {
myGlobals.device[deviceId].sflowGlobals->probeList[i].pkts++;
break;
}
}
memset(&sample, 0, sizeof(sample));
sample.rawSample = buffer;
sample.rawSampleLen = rc;
sample.sourceIP = fromHost.sin_addr;
sample.datap = (u_char *)sample.rawSample;
sample.endp = (u_char *)sample.rawSample + sample.rawSampleLen;
dissectFlow(&sample, deviceId);
}
} else {
if(rc < 0) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_ERROR, "SFLOW: select() failed(%d, %s), terminating sflow",
errno, strerror(errno));
break;
}
}
}
myGlobals.device[deviceId].sflowGlobals->threadActive = 0;
myGlobals.device[deviceId].sflowGlobals->sflowThread = 0;
myGlobals.device[deviceId].activeDevice = 0;
if(myGlobals.device[deviceId].sflowGlobals)
traceEvent(CONST_TRACE_INFO, "THREADMGMT: SFLOW: thread terminated [p%d][sflowDeviceId=%d]",
getpid(), myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
return(NULL);
}
/* ****************************** */
static void initsFlowDevice(int deviceId) {
int a, b, c, d, a1, b1, c1, d1, rc;
char value[1024], workList[1024];
if(!pluginActive) return;
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: initializing deviceId=%d", deviceId);
if(myGlobals.device[deviceId].sflowGlobals == NULL) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_ERROR, "SFLOW: initsFlowDevice internal error");
return;
}
setPluginStatus(NULL);
allocDeviceMemory(deviceId);
myGlobals.device[deviceId].sflowGlobals->threadActive = 0;
createMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex);
if(fetchPrefsValue(sfValue(deviceId, "sflowInPort", 1), value, sizeof(value)) == -1)
storePrefsValue(sfValue(deviceId, "sflowInPort", 1), "0");
else
myGlobals.device[deviceId].sflowGlobals->sflowInPort = atoi(value);
if((fetchPrefsValue(sfValue(deviceId, "ifNetMask", 1), value, sizeof(value)) == -1)
|| (((rc = sscanf(value, "%d.%d.%d.%d/%d.%d.%d.%d", &a, &b, &c, &d, &a1, &b1, &c1, &d1)) != 8)
&& ((rc = sscanf(value, "%d.%d.%d.%d/%d", &a, &b, &c, &d, &a1)) != 5))) {
storePrefsValue(sfValue(deviceId, "ifNetMask", 1), "192.168.0.0/255.255.255.0");
myGlobals.device[deviceId].sflowGlobals->sflowIfAddress.s_addr = 0xC0A80000;
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr = 0xFFFFFF00;
} else {
myGlobals.device[deviceId].sflowGlobals->sflowIfAddress.s_addr = (a << 24) +(b << 16) +(c << 8) + d;
if(rc == 8)
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr = (a1 << 24) +(b1 << 16) +(c1 << 8) + d1;
else {
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr = 0xffffffff >> a1;
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr =~
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr;
}
}
if(fetchPrefsValue(sfValue(deviceId, "whiteList", 1), value, sizeof(value)) == -1) {
storePrefsValue(sfValue(deviceId, "whiteList", 1), "");
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList = strdup("");
} else
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList = strdup(value);
accessMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex, "initsFlowDevice");
handleWhiteBlackListAddresses((char*)&value,
myGlobals.device[deviceId].sflowGlobals->whiteNetworks,
&myGlobals.device[deviceId].sflowGlobals->numWhiteNets,
(char*)&workList,
sizeof(workList));
if(myGlobals.device[deviceId].sflowGlobals->sflowWhiteList != NULL)
free(myGlobals.device[deviceId].sflowGlobals->sflowWhiteList);
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList = strdup(workList);
releaseMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: White list initialized to '%s'",
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList);
if(fetchPrefsValue(sfValue(deviceId, "blackList", 1), value, sizeof(value)) == -1) {
storePrefsValue(sfValue(deviceId, "blackList", 1), "");
myGlobals.device[deviceId].sflowGlobals->sflowBlackList=strdup("");
} else
myGlobals.device[deviceId].sflowGlobals->sflowBlackList=strdup(value);
accessMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex, "initsFlowDevice()");
handleWhiteBlackListAddresses((char*)&value, myGlobals.device[deviceId].sflowGlobals->blackNetworks,
&myGlobals.device[deviceId].sflowGlobals->numBlackNets, (char*)&workList,
sizeof(workList));
if(myGlobals.device[deviceId].sflowGlobals->sflowBlackList != NULL)
free(myGlobals.device[deviceId].sflowGlobals->sflowBlackList);
myGlobals.device[deviceId].sflowGlobals->sflowBlackList = strdup(workList);
releaseMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: Black list initialized to '%s'",
myGlobals.device[deviceId].sflowGlobals->sflowBlackList);
if(fetchPrefsValue(sfValue(deviceId, "sflowAggregation", 1), value, sizeof(value)) == -1)
storePrefsValue(sfValue(deviceId, "sflowAggregation", 1), "0" /* noAggregation */);
else
myGlobals.device[deviceId].sflowGlobals->sflowAggregation = atoi(value);
if(fetchPrefsValue(sfValue(deviceId, "sflowAssumeFTP", 1), value, sizeof(value)) == -1) {
storePrefsValue(sfValue(deviceId, "sflowAssumeFTP", 1), "0" /* no */);
myGlobals.device[deviceId].sflowGlobals->sflowAssumeFTP = 0;
} else
myGlobals.device[deviceId].sflowGlobals->sflowAssumeFTP = atoi(value);
if(setsFlowInSocket(deviceId) != 0) return;
if(fetchPrefsValue(sfValue(deviceId, "debug", 1), value, sizeof(value)) == -1) {
storePrefsValue(sfValue(deviceId, "debug", 1), "0");
myGlobals.device[deviceId].sflowGlobals->sflowDebug = 0;
} else {
myGlobals.device[deviceId].sflowGlobals->sflowDebug = atoi(value);
}
/* Allocate a pure dummy for white/black list use */
myGlobals.device[deviceId].sflowGlobals->dummyHost = (HostTraffic*)malloc(sizeof(HostTraffic));
memset(myGlobals.device[deviceId].sflowGlobals->dummyHost, 0, sizeof(HostTraffic));
myGlobals.device[deviceId].sflowGlobals->dummyHost->hostIp4Address.s_addr = 0x00112233;
strncpy(myGlobals.device[deviceId].sflowGlobals->dummyHost->hostNumIpAddress, " ",
sizeof(myGlobals.device[deviceId].sflowGlobals->dummyHost->hostNumIpAddress));
strncpy(myGlobals.device[deviceId].sflowGlobals->dummyHost->hostResolvedName, "white/black list dummy",
sizeof(myGlobals.device[deviceId].sflowGlobals->dummyHost->hostResolvedName));
myGlobals.device[deviceId].sflowGlobals->dummyHost->hostResolvedNameType = FLAG_HOST_SYM_ADDR_TYPE_FAKE;
strcpy(myGlobals.device[deviceId].sflowGlobals->dummyHost->ethAddressString, "00:00:00:00:00:00");
setEmptySerial(&myGlobals.device[deviceId].sflowGlobals->dummyHost->serialHostIndex);
myGlobals.device[deviceId].sflowGlobals->dummyHost->portsUsage = NULL;
myGlobals.device[deviceId].sflowGlobals->ifCounters = NULL;
myGlobals.device[deviceId].activeDevice = 1;
myGlobals.device[deviceId].samplingRate = 1;
myGlobals.device[deviceId].mtuSize = myGlobals.mtuSize[myGlobals.device[deviceId].datalink];
myGlobals.device[deviceId].headerSize = myGlobals.headerSize[myGlobals.device[deviceId].datalink];
initDeviceSemaphores(deviceId);
}
/* ****************************** */
static int initsFlowFunct(void) {
char value[128];
pluginActive = 1;
myGlobals.runningPref.mergeInterfaces = 0; /* Use different devices */
if((fetchPrefsValue(sfValue(0, "knownDevices", 0), value, sizeof(value)) != -1)
&& (strlen(value) > 0)) {
char *strtokState, *dev;
traceEvent(CONST_TRACE_INFO, "SFLOW: initializing '%s' devices", value);
dev = strtok_r(value, ",", &strtokState);
while(dev != NULL) {
int deviceId = atoi(dev);
if(deviceId > 0) {
if((deviceId = createsFlowDevice(deviceId)) == -1) {
pluginActive = 0;
return(-1);
}
}
dev = strtok_r(NULL, ",", &strtokState);
}
} else
traceEvent(CONST_TRACE_INFO, "SFLOW: no devices to initialize");
return(0);
}
/* ****************************** */
static void printsFlowDeviceConfiguration(void) {
char buf[512], value[128];
int i = 0;
sendString("<center><table border=\"1\" "TABLE_DEFAULTS">\n");
sendString("<tr><th "DARK_BG">Available sFlow Devices</th></tr>\n");
sendString("<tr><td align=left>\n");
if((fetchPrefsValue(sfValue(0, "knownDevices", 0), value, sizeof(value)) != -1)
&& (strlen(value) > 0)) {
char *strtokState, *dev;
sendString("<FORM ACTION=\"/plugins/");
sendString(sflowPluginInfo->pluginURLname);
sendString("\" METHOD=GET>\n");
dev = strtok_r(value, ",", &strtokState);
while(dev != NULL) {
int id = mapsFlowDeviceToNtopDevice(atoi(dev));
if(id == -1)
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=radio NAME=device VALUE=%s %s>%s.%s\n",
dev, i == 0 ? "CHECKED" : "", SFLOW_DEVICE_NAME, dev);
else
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=radio NAME=device VALUE=%s %s>%s\n",
dev, i == 0 ? "CHECKED" : "", myGlobals.device[id].humanFriendlyName);
sendString(buf);
if(pluginActive) {
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "[ <A HREF=\"/plugins/%s?device=-%s\" "
"onClick=\"return confirmDelete()\">Delete</A> ]",
sflowPluginInfo->pluginURLname, dev);
sendString(buf);
}
sendString("<br>\n");
i++; dev = strtok_r(NULL, ",", &strtokState);
}
if(pluginActive)
sendString("<p><INPUT TYPE=submit VALUE=\"Edit sFlow Device\"> "
"<INPUT TYPE=reset VALUE=Reset>\n</FORM><p>\n");
}
/* *********************** */
if(pluginActive) {
sendString("<FORM ACTION=\"/plugins/");
sendString(sflowPluginInfo->pluginURLname);
sendString("\" METHOD=GET>\n<input type=hidden name=device size=5 value=0>");
sendString("<p align=center><INPUT TYPE=submit VALUE=\"Add sFlow Device\"> \n</FORM><p>\n");
} else {
sendString("<p>Please <A HREF=\"/"CONST_SHOW_PLUGINS_HTML"?");
sendString(sflowPluginInfo->pluginURLname);
sendString("=1\">enable</A> the sFlow plugin first<br>\n");
}
sendString("</td></TR></TABLE></center>");
printHTMLtrailer();
}
/* ****************************** */
static void printsFlowConfiguration(int deviceId) {
char buf[512], buf1[32], buf2[32];
sendString("<center><table border=\"1\" "TABLE_DEFAULTS">\n");
sendString("<tr><th colspan=\"4\" "DARK_BG">Incoming Flows</th></tr>\n");
sendString("<tr><th colspan=2 "DARK_BG">sFlow Device</th>");
sendString("<td "TD_BG"><form action=\"/" CONST_PLUGINS_HEADER);
sendString(sflowPluginInfo->pluginURLname);
sendString("\" method=GET>\n<p>");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=hidden NAME=device VALUE=%d>",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
sendString(buf);
sendString("<input name=\"name\" size=\"24\" value=\"");
sendString(myGlobals.device[deviceId].humanFriendlyName);
sendString("\"> <input type=\"submit\" value=\"Set Interface Name\">");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), " [ <A HREF=\"/plugins/%s\"/>List sFlow Interfaces</A> ]</p>\n</form>",
sflowPluginInfo->pluginName);
sendString(buf);
sendString("</td></tr>\n");
sendString("<tr><th rowspan=\"2\" "DARK_BG">Flow<br>Collection</th>\n");
sendString("<th "DARK_BG">Local<br>Collector<br>UDP"
"<br>Port</th>\n");
sendString("<td "TD_BG"><form action=\"/" CONST_PLUGINS_HEADER);
sendString(sflowPluginInfo->pluginURLname);
sendString("\" method=GET>\n<p>");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=hidden NAME=device VALUE=%d>",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
sendString(buf);
sendString("<input name=\"port\" size=\"5\" value=\"");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%d", myGlobals.device[deviceId].sflowGlobals->sflowInPort);
sendString(buf);
sendString("\"> [ Use a port value of 0 to disable collection ] "
"<input type=\"submit\" value=\"Set Port\">"
"</p>\n</form>\n\n"
"<p>If you want <b>ntop</b> to display sFlow data it receives from other "
"hosts, i.e. act as a collector, you must specify the UDP"
" port to listen to. "
"The default port used for sFlow is " DEFAULT_SFLOW_PORT_STR ".</p>\n"
"<p align=\"right\"></p>\n");
if(myGlobals.device[deviceId].sflowGlobals->sflowInPort == 0)
sendString("<p><font color=red>WARNING</font>: "
"The 'Local Collector UDP"
" Port' is zero (none). "
"Even if this plugin is ACTIVE, you must still enter a port number for "
"<b>ntop</b> to receive and process sFlow data.</p>\n");
sendString("</td></tr>\n");
sendString("<tr><th "DARK_BG">Virtual<br>sFlow<br>Interface<br>Network<br>Address</th>\n");
sendString("<td "TD_BG"><form action=\"/" CONST_PLUGINS_HEADER);
sendString(sflowPluginInfo->pluginURLname);
sendString("\" method=GET>\n");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=hidden NAME=device VALUE=%d>",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
sendString(buf);
sendString(" <input name=\"ifNetMask\" size=\"32\" value=\"");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%s/%s",
_intoa(myGlobals.device[deviceId].sflowGlobals->sflowIfAddress, buf1, sizeof(buf1)),
_intoa(myGlobals.device[deviceId].sflowGlobals->sflowIfMask, buf2, sizeof(buf2)));
sendString(buf);
sendString("\"> ");
sendString("<input type=\"submit\" value=\"Set Interface Address\"></p>\n</form>\n");
sendString("<p>This value is in the form of a network address and mask on the "
"network where the actual sFlow probe is located. "
"<b>ntop</b> uses this value to determine which TCP/IP addresses are "
"local and which are remote.</p>\n"
"<p>You may specify this in either format, <network>/<mask> or "
"CIDR (<network>/<bits>). An existing value is displayed "
"in <network>/<mask> format.</p>\n"
"<p>If the sFlow probe is monitoring only a single network, then "
"this is all you need to set. If the sFlow probe is monitoring "
"multiple networks, then pick one of them for this setting and use "
"the -m | --local-subnets parameter to specify the others.</p>\n"
"<p>This interface is called 'virtual' because the <b>ntop</b> host "
"is not really connected to the network you specify here.</p>\n"
"</td></tr>\n");
sendString("<tr><th rowspan=\"3\" "DARK_BG">Filtering</th>\n");
sendString("<th "DARK_BG">White List</th>\n");
sendString("<td "TD_BG"><form action=\"/" CONST_PLUGINS_HEADER);
sendString(sflowPluginInfo->pluginURLname);
sendString("\" method=GET>\n");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=hidden NAME=device VALUE=%d>",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
sendString(buf);
sendString("<input name=\"whiteList\" size=\"60\" value=\"");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%s",
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList == NULL ?
" " : myGlobals.device[deviceId].sflowGlobals->sflowWhiteList);
sendString(buf);
sendString("\"> <input type=\"submit\" value=\"Set White List\"></p>\n</form>\n"
"<p>This is a list of one or more TCP/IP host(s)/network(s) which we will "
"store data from when these host(s)/network(s) occur in the sFlow records.</p>\n"
"</td>\n</tr>\n");
sendString("<tr><th "DARK_BG">Black List</th>\n");
sendString("<td "TD_BG"><form action=\"/" CONST_PLUGINS_HEADER);
sendString(sflowPluginInfo->pluginURLname);
sendString("\" method=GET>");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=hidden NAME=device VALUE=%d>",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
sendString(buf);
sendString("<input name=\"blackList\" size=\"60\" value=\"");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%s",
myGlobals.device[deviceId].sflowGlobals->sflowBlackList == NULL ?
" " : myGlobals.device[deviceId].sflowGlobals->sflowBlackList);
sendString(buf);
sendString("\"> <input type=\"submit\" value=\"Set Black List\"></p>\n</form>\n"
"<p>This is a list of one or more TCP/IP host(s)/network(s) which we will "
"exclude data from (i.e. not store it) when these host(s)/network(s) occur "
"in the sFlow records.</p>\n"
"</td>\n</tr>\n");
sendString("<tr><td colspan=\"3\"><ul>"
"<li><i>Changes to white / black lists take affect immediately, "
"but are NOT retro-active.</i></li>\n"
"<li>Use a space to disable a list.</li>\n"
"<li>Use a.b.c.d/32 for a single host in a list.</li>\n"
"<li>The white / black lists accept both <network>/<mask> and "
"CIDR <network>/<bits> format. Both formats may be used in the "
"same list. "
"For example, 192.168.1.0/24 means all addresses with 24 bits of network and "
"thus 8 bits of host, or the range from 192.168.1.0 to 192.168.1.255. "
"Similarly, the list 192.168.1.0/24,192.168.2.0/255.255.255.0 means the range "
"from 192.168.1.0 - 192.168.2.255.</li>\n"
"<li>The white list and black interact this way:\n"
"<ul><li>If present, the black list is processed FIRST. Data from any host "
"matching the black list is simply thrown away.</li>\n"
"<li>If no black list is specified, no hosts are excluded.</li>\n"
"<li>If present, the white list is processed SECOND. Data from any host "
"NOT matching the white list is thrown away.</li>\n"
"<li>If no white list is specified, the value 0.0.0.0/0 (ALL hosts) is used.</li>\n"
"</ul>\n</li>\n</ul>\n"
"</td></tr>\n");
sendString("<tr><td colspan=\"4\"> </td></tr>\n"
"<tr><th colspan=\"4\" "DARK_BG">General Options</th></tr>\n");
/* *************************************** */
sendString("<tr><th colspan=\"2\" "DARK_BG">Debug</th>\n");
sendString("<td "TD_BG"><form action=\"/" CONST_PLUGINS_HEADER);
sendString(sflowPluginInfo->pluginURLname);
sendString("\" method=GET>\n<p>");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<INPUT TYPE=hidden NAME=device VALUE=%d>",
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId);
sendString(buf);
if(myGlobals.device[deviceId].sflowGlobals->sflowDebug) {
sendString("<input type=\"radio\" name=\"debug\" value=\"1\" checked>On");
sendString("<input type=\"radio\" name=\"debug\" value=\"0\">Off");
} else {
sendString("<input type=\"radio\" name=\"debug\" value=\"1\">On");
sendString("<input type=\"radio\" name=\"debug\" value=\"0\" checked>Off");
}
sendString(" <input type=\"submit\" value=\"Set Debug\"></p>\n");
sendString("</form>\n"
"<p>This option turns on debugging, which dumps a huge quantity of "
"noise into the standard <b>ntop</b> log, all about what the sFlow "
"plugin is doing. If you are doing development, this might be helpful, "
"otherwise <i>leave it alone</i>!</p>\n"
"</td>\n</tr>\n");
sendString("<tr><td colspan=4><font color=red><b>REMEMBER</b><br></font><ul><li>Regardless of settings here, "
"the sFlow plugin must be ACTIVE on the main plugin menu (click "
"<a href=\"../" CONST_SHOW_PLUGINS_HTML "\">here</a> to go back) "
"for <b>ntop</b> to receive and/or "
"process sFlow data.\n"
"<li>Any option not indicated as taking effect immediately will require you "
"to recycle (inactivate and then activate) the sFlow plugin in order "
"for the change to take affect.</ul></td></tr>\n");
sendString("</table>\n</center>\n");
}
/* ****************************** */
static void printsFlowStatisticsRcvd(int deviceId) {
char buf[512], formatBuf[32], formatBuf2[32];
u_int32_t i;
sendString("<tr " TR_ON ">\n"
"<th colspan=\"2\" "DARK_BG">Received Flows</th>\n"
"</tr>\n"
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Flow Senders</th>\n"
"<td width=\"20%\">");
for(i=0; i<MAX_NUM_PROBES; i++) {
if(myGlobals.device[deviceId].sflowGlobals->probeList[i].probeAddr.s_addr == 0) break;
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%s [%s pkts]<br>\n",
_intoa(myGlobals.device[deviceId].sflowGlobals->probeList[i].probeAddr, buf, sizeof(buf)),
formatPkts(myGlobals.device[deviceId].sflowGlobals->probeList[i].pkts, formatBuf, sizeof(formatBuf)));
sendString(buf);
}
sendString(" </td>\n</tr>\n");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of sFlow Packets Rcvd</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd, formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of sFlow Packets with Bad Version</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numBadsFlowsVersionsRcvd, formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of sFlow Packets Processed</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd -
myGlobals.device[deviceId].sflowGlobals->numBadsFlowsVersionsRcvd,
formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of v2 Flows Rcvd</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsV2Rcvd,
formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of v4 Flows Rcvd</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsV4Rcvd,
formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of v5 Flows Rcvd</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsV5Rcvd,
formatBuf, sizeof(formatBuf)));
sendString(buf);
sendString("<tr><td colspan=\"4\"> </td></tr>\n"
"<tr " TR_ON ">\n"
"<th colspan=\"2\" "DARK_BG">Discarded Flows</th>\n"
"</tr>\n");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of Flows with Bad Data</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numBadFlowReality,
formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Total Number of Flows Processed</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsProcessed,
formatBuf, sizeof(formatBuf)));
sendString(buf);
if((myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryFailedWhiteList +
myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryFailedBlackList +
myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryFailedWhiteList +
myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryFailedBlackList) > 0) {
sendString("<tr><td colspan=\"4\"> </td></tr>\n"
"<tr " TR_ON ">\n"
"<th colspan=\"2\" "DARK_BG">Accepted/Rejected Flows</th>\n"
"</tr>\n"
"<tr " TR_ON ">\n"
"<th " DARK_BG"> </th>\n"
"<th " DARK_BG">Source / Destination</th>\n"
"</tr>\n");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Rejected - Black list</th>\n"
"<td " TD_BG ">%s / %s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryFailedBlackList,
formatBuf, sizeof(formatBuf)),
formatPkts(myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryFailedBlackList,
formatBuf2, sizeof(formatBuf2)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Rejected - White list</th>\n"
"<td " TD_BG ">%s / %s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryFailedWhiteList,
formatBuf, sizeof(formatBuf)),
formatPkts(myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryFailedWhiteList,
formatBuf2, sizeof(formatBuf2)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Accepted</th>\n"
"<td " TD_BG ">%s / %s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryAccepted,
formatBuf, sizeof(formatBuf)),
formatPkts(myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryAccepted,
formatBuf2, sizeof(formatBuf2)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Total</th>\n"
"<td " TD_BG ">%s / %s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryFailedBlackList +
myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryFailedWhiteList +
myGlobals.device[deviceId].sflowGlobals->numSrcsFlowsEntryAccepted,
formatBuf, sizeof(formatBuf)),
formatPkts(myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryFailedBlackList +
myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryFailedWhiteList +
myGlobals.device[deviceId].sflowGlobals->numDstsFlowsEntryAccepted,
formatBuf2, sizeof(formatBuf2)));
sendString(buf);
}
sendString("<tr><td colspan=\"4\"> </td></tr>\n"
"<tr " TR_ON ">\n"
"<th colspan=\"2\" "DARK_BG">Flow Analisys</th>\n"
"</tr>\n");
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of sFlow Samples Rcvd</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowsSamples,
formatBuf, sizeof(formatBuf)));
sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Number of sFlow Counter Updates Rcvd</th>\n"
"<td " TD_BG " align=\"right\">%s</td>\n"
"</tr>\n",
formatPkts(myGlobals.device[deviceId].sflowGlobals->numsFlowCounterUpdates,
formatBuf, sizeof(formatBuf)));
sendString(buf);
#ifdef DEBUG
sendString("<tr><td colspan=\"4\"> </td></tr>\n"
"<tr " TR_ON ">\n"
"<th colspan=\"2\" "DARK_BG">Debug></th>\n"
"</tr>\n"
"<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">White net list</th>\n"
"<td " TD_BG ">");
if(myGlobals.device[deviceId].sflowGlobals->numWhiteNets == 0) {
sendString("none");
} else {
sendString("Network "
"Netmask "
"Hostmask<br>\n");
for(i=0; i<myGlobals.device[deviceId].sflowGlobals->numWhiteNets; i++) {
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<br>\n%3d. %08x(%3d.%3d.%3d.%3d) "
"%08x(%3d.%3d.%3d.%3d) %08x(%3d.%3d.%3d.%3d)",
i,
myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][0],
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][0] >> 24) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][0] >> 16) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][0] >> 8) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][0] ) & 0xff),
myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][1],
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][1] >> 24) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][1] >> 16) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][1] >> 8) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][1] ) & 0xff),
myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][2],
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][2] >> 24) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][2] >> 16) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][2] >> 8) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->whiteNetworks[i][2] ) & 0xff)
);
sendString(buf);
if(i<myGlobals.device[deviceId].sflowGlobals->numWhiteNets) sendString("<br>\n");
}
}
sendString("</td>\n</tr>\n");
sendString("<tr " TR_ON ">\n"
"<th " TH_BG " align=\"left\" "DARK_BG ">Black net list</th>\n"
"<td " TD_BG ">");
if(myGlobals.device[deviceId].sflowGlobals->numBlackNets == 0) {
sendString("none");
} else {
sendString("Network "
"Netmask "
"Hostmask<br>\n");
for(i=0; i<myGlobals.device[deviceId].sflowGlobals->numBlackNets; i++) {
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf),
"<br>\n%3d. %08x(%3d.%3d.%3d.%3d) "
"%08x(%3d.%3d.%3d.%3d) %08x(%3d.%3d.%3d.%3d)",
i,
myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][0],
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][0] >> 24) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][0] >> 16) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][0] >> 8) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][0] ) & 0xff),
myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][1],
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][1] >> 24) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][1] >> 16) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][1] >> 8) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][1] ) & 0xff),
myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][2],
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][2] >> 24) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][2] >> 16) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][2] >> 8) & 0xff),
((myGlobals.device[deviceId].sflowGlobals->blackNetworks[i][2] ) & 0xff)
);
sendString(buf);
if(i<myGlobals.device[deviceId].sflowGlobals->numBlackNets) sendString("<br>\n");
}
}
sendString("</td>\n</tr>\n");
#endif
}
/* ****************************** */
static int createsFlowDevice(int sflowDeviceId) {
int deviceId;
char buf[32], value[128];
traceEvent(CONST_TRACE_INFO, "SFLOW: createsFlowDevice(%d)", sflowDeviceId);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%s.%d", SFLOW_DEVICE_NAME, sflowDeviceId);
deviceId = createDummyInterface(buf);
if(deviceId != -1) {
myGlobals.device[deviceId].sflowGlobals = (SflowGlobals*)malloc(sizeof(SflowGlobals));
if(myGlobals.device[deviceId].sflowGlobals == NULL) {
/* Not enough memory */
traceEvent(CONST_TRACE_ERROR, "SFLOW: not enough memory (sflowGlobals malloc)");
return(-1);
}
memset(myGlobals.device[deviceId].sflowGlobals, 0, sizeof(SflowGlobals));
myGlobals.device[deviceId].activeDevice = 1;
myGlobals.device[deviceId].sflowGlobals->sflowDeviceId = sflowDeviceId;
initsFlowDevice(deviceId);
if(fetchPrefsValue(sfValue(deviceId, "humanFriendlyName", 1), value, sizeof(value)) != -1) {
free(myGlobals.device[deviceId].humanFriendlyName);
myGlobals.device[deviceId].humanFriendlyName = strdup(value);
calculateUniqueInterfaceName(deviceId);
}
traceEvent(CONST_TRACE_INFO, "SFLOW: createsFlowDevice created device %d",
deviceId);
} else
traceEvent(CONST_TRACE_ERROR, "SFLOW: createDummyInterface failed");
return(deviceId);
}
/* ****************************** */
static int mapsFlowDeviceToNtopDevice(int sflowDeviceId) {
int i;
for(i=0; i<myGlobals.numDevices; i++)
if((myGlobals.device[i].sflowGlobals != NULL)
&& myGlobals.device[i].activeDevice
&& (myGlobals.device[i].sflowGlobals->sflowDeviceId == sflowDeviceId)) {
#ifdef DEBUG
traceEvent(CONST_TRACE_INFO, "SFLOW: mapsFlowDeviceToNtopDevice(%d) = %d",
sflowDeviceId, i);
#endif
return(i);
} else if(myGlobals.device[i].sflowGlobals != NULL) {
#ifdef DEBUG
traceEvent(CONST_TRACE_INFO, "SFLOW: mapsFlowDeviceToNtopDevice (id=%d) <=> (sflowDeviceId=%d)",
i, myGlobals.device[i].sflowGlobals->sflowDeviceId);
#endif
}
#ifdef DEBUG
traceEvent(CONST_TRACE_INFO, "SFLOW: mapsFlowDeviceToNtopDevice(%d) failed\n",
sflowDeviceId);
#endif
return(-1); /* Not found */
}
/* ****************************** */
static char *ifType(u_int32_t interface_type) {
static char buf[8];
switch(interface_type) {
case 1: return("other");
case 2: return("regular1822");
case 3: return("hdh1822");
case 4: return("ddn-x25");
case 5: return("rfc877-x25");
case 6: return("ethernet");
case 7: return("iso88023-csmacd");
case 8: return("iso88024-tokenBus");
case 9: return("iso88025-tokenRing");
case 10: return("iso88026-man");
case 11: return("starLan");
case 12: return("proteon-10Mbit");
case 13: return("proteon-80Mbit");
case 14: return("hyperchannel");
case 15: return("fddi");
case 16: return("lapb");
case 17: return("sdlc");
case 18: return("ds1");
case 19: return("e1");
case 20: return("basicISDN");
case 21: return("primaryISDN");
case 22: return("propPointToPointSerial");
case 23: return("ppp");
case 24: return("softwareLoopback");
case 25: return("eon");
case 26: return("ethernet-3Mbit");
case 27: return("nsip");
case 28: return("slip");
case 29: return("ultra");
case 30: return("ds3");
case 31: return("sip");
case 32: return("frame-relay");
case 33: return("rs232");
case 34: return("para");
case 35: return("arcnet");
case 36: return("arcnetPlus");
case 37: return("atm");
case 38: return("miox25");
case 39: return("sonet");
case 40: return("x25ple");
case 41: return("iso88022llc");
case 42: return("localTalk");
case 43: return("smdsDxi");
case 44: return("frameRelayService");
case 45: return("v35");
case 46: return("hssi");
case 47: return("hippi");
case 48: return("modem");
case 49: return("aal5");
case 50: return("sonetPath");
case 51: return("sonetVT");
case 52: return("smdsIcip");
case 53: return("propVirtual");
case 54: return("propMultiplexor");
case 55: return("100BaseVG");
case 56: return("Fibre Channel");
case 57: return("HIPPI Interface");
case 58: return("Obsolete for FrameRelay");
case 59: return("ATM Emulation of 802.3 LAN");
case 60: return("ATM Emulation of 802.5 LAN");
case 61: return("ATM Emulation of a Circuit");
case 62: return("FastEthernet (100BaseT)");
case 63: return("ISDN & X.25");
case 64: return("CCITT V.11/X.21");
case 65: return("CCITT V.36");
case 66: return("CCITT G703 at 64Kbps");
case 67: return("Obsolete G702 see DS1-MIB");
case 68: return("SNA QLLC");
case 69: return("Full Duplex Fast Ethernet (100BaseFX)");
case 70: return("Channel");
case 71: return("Radio Spread Spectrum (802.11)");
case 72: return("IBM System 360/370 OEMI Channel");
case 73: return("IBM Enterprise Systems Connection");
case 74: return("Data Link Switching");
case 75: return("ISDN S/T Interface");
case 76: return("ISDN U Interface");
case 77: return("Link Access Protocol D (LAPD)");
case 78: return("IP Switching Opjects");
case 79: return("Remote Source Route Bridging");
case 80: return("ATM Logical Port");
case 81: return("AT&T DS0 Point (64 Kbps)");
case 82: return("AT&T Group of DS0 on a single DS1");
case 83: return("BiSync Protocol (BSC)");
case 84: return("Asynchronous Protocol");
case 85: return("Combat Net Radio");
case 86: return("ISO 802.5r DTR");
case 87: return("Ext Pos Loc Report Sys");
case 88: return("Apple Talk Remote Access Protocol");
case 89: return("Proprietary Connectionless Protocol");
case 90: return("CCITT-ITU X.29 PAD Protocol");
case 91: return("CCITT-ITU X.3 PAD Facility");
case 92: return("MultiProtocol Connection over Frame/Relay");
case 93: return("CCITT-ITU X213");
case 94: return("Asymetric Digitial Subscriber Loop (ADSL)");
case 95: return("Rate-Adapt Digital Subscriber Loop (RDSL)");
case 96: return("Symetric Digitial Subscriber Loop (SDSL)");
case 97: return("Very High Speed Digitial Subscriber Loop (HDSL)");
case 98: return("ISO 802.5 CRFP");
case 99: return("Myricom Myrinet");
case 100: return("Voice recEive and transMit (voiceEM)");
case 101: return("Voice Foreign eXchange Office (voiceFXO)");
case 102: return("Voice Foreign eXchange Station (voiceFXS)");
case 103: return("Voice Encapulation");
case 104: return("Voice Over IP Encapulation");
case 105: return("ATM DXI");
case 106: return("ATM FUNI");
case 107: return("ATM IMA");
case 108: return("PPP Multilink Bundle");
case 109: return("IBM IP over CDLC");
case 110: return("IBM Common Link Access to Workstation");
case 111: return("IBM Stack to Stack");
case 112: return("IBM Virtual IP Address (VIPA)");
case 113: return("IBM Multi-Protocol Channel Support");
case 114: return("IBM IP over ATM");
case 115: return("ISO 802.5j Fiber Token Ring");
case 116: return("IBM Twinaxial Data Link Control (TDLC)");
case 117: return("Gigabit Ethernet");
case 118: return("Higher Data Link Control (HDLC)");
case 119: return("Link Access Protocol F (LAPF)");
case 120: return("CCITT V.37");
case 121: return("CCITT X.25 Multi-Link Protocol");
case 122: return("CCITT X.25 Hunt Group");
case 123: return("Transp HDLC");
case 124: return("Interleave Channel");
case 125: return("Fast Channel");
case 126: return("IP (for APPN HPR in IP Networks)");
case 127: return("CATV MAC Layer");
case 128: return("CATV Downstream Interface");
case 129: return("CATV Upstream Interface");
case 130: return("Avalon Parallel Processor");
case 131: return("Encapsulation Interface");
case 132: return("Coffee Pot");
case 133: return("Circuit Emulation Service");
case 134: return("ATM Sub Interface");
case 135: return("Layer 2 Virtual LAN using 802.1Q");
case 136: return("Layer 3 Virtual LAN using IP");
case 137: return("Layer 3 Virtual LAN using IPX");
case 138: return("IP Over Power Lines");
case 139: return("Multi-Media Mail over IP");
case 140: return("Dynamic synchronous Transfer Mode (DTM)");
case 141: return("Data Communications Network");
case 142: return("IP Forwarding Interface");
case 162: return("Cisco Express Forwarding Interface");
default:
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%d", interface_type);
return(buf);
}
}
/* ****************************** */
static char *ifDirection(u_int32_t interface_direction) {
switch(interface_direction) {
case 0: return("unknown");
case 1: return("full-duplex");
case 2: return("half-duplex");
case 3: return("in");
case 4: return("out");
default: return("?");
}
}
/* ****************************** */
static char *ifStatus(u_int32_t interface_status) {
switch(interface_status) {
case 0: return("<FONT COLOR=red>Administrative</FONT><br><FONT COLOR=red>Operational</FONT>");
case 1: return("<FONT COLOR=green>Administrative</FONT><br><FONT COLOR=red>Operational</FONT>");
case 2: return("<FONT COLOR=red>Administrative</FONT><br><FONT COLOR=green>Operational</FONT>");
case 3: return("<FONT COLOR=green>Administrative</FONT><br><FONT COLOR=green>Operational</FONT>");
default: return("?");
}
}
/* ****************************** */
static void flushDevicePrefs(int deviceId) {
if(deviceId >= myGlobals.numDevices) return;
delPrefsValue(sfValue(deviceId, "ifNetMask", 1));
delPrefsValue(sfValue(deviceId, "whiteList", 1));
delPrefsValue(sfValue(deviceId, "sflowInPort", 1));
delPrefsValue(sfValue(deviceId, "blackList", 1));
delPrefsValue(sfValue(deviceId, "enableSessionHandling", 1));
delPrefsValue(sfValue(deviceId, "sflowAssumeFTP", 1));
delPrefsValue(sfValue(deviceId, "sflowAggregation", 1));
delPrefsValue(sfValue(deviceId, "debug", 1));
delPrefsValue(sfValue(deviceId, "humanFriendlyName", 1));
}
/* ****************************** */
static void handlesFlowHTTPrequest(char* _url) {
char workList[1024], *url;
int deviceId = -1, originalId = -1;
sendHTTPHeader(FLAG_HTTP_TYPE_HTML, 0, 1);
/* ****************************
* Process URL stuff *
****************************** */
if((_url != NULL) && pluginActive) {
char *strtokState;
url = strtok_r(_url, "&", &strtokState);
while(url != NULL) {
char *device, *_value = NULL;
device = strtok(url, "=");
if(device != NULL) _value = strtok(NULL, "="); else _value = NULL;
if(_value == NULL) _value = "";
if(_value && device) {
char value[256];
unescape(value, sizeof(value), _value);
if(strcmp(device, "device") == 0) {
originalId = deviceId = atoi(value);
if((deviceId > 0) && ((deviceId = mapsFlowDeviceToNtopDevice(deviceId)) == -1)) {
printHTMLheader("sFlow Configuration Error", NULL, 0);
printFlagedWarning("<I>Unable to locate the specified device. Please activate the plugin first.</I>");
return;
}
} else if(strcmp(device, "port") == 0) {
if(myGlobals.device[deviceId].sflowGlobals->sflowInPort != atoi(value)) {
if(deviceId > 0) {
myGlobals.device[deviceId].sflowGlobals->sflowInPort = atoi(value);
storePrefsValue(sfValue(deviceId, "sflowInPort", 1), value);
setsFlowInSocket(deviceId);
}
}
} else if(strcmp(device, "name") == 0) {
char old_name[256], new_name[256];
sanitize_rrd_string(value);
safe_snprintf(__FILE__, __LINE__, old_name, sizeof(old_name),
"%s/interfaces/%s", myGlobals.rrdPath,
myGlobals.device[deviceId].uniqueIfName);
revertSlashIfWIN32(old_name, 0);
free(myGlobals.device[deviceId].humanFriendlyName);
web_sanitize(value);
myGlobals.device[deviceId].humanFriendlyName = strdup(value);
storePrefsValue(sfValue(deviceId, "humanFriendlyName", 1), value);
calculateUniqueInterfaceName(deviceId);
safe_snprintf(__FILE__, __LINE__, new_name, sizeof(new_name),
"%s/interfaces/%s", myGlobals.rrdPath,
myGlobals.device[deviceId].uniqueIfName);
revertSlashIfWIN32(new_name, 0);
if(rename(old_name, new_name) != 0) {
traceEvent(CONST_TRACE_ERROR,
"SFLOW: Error renaming %s -> %s",
old_name, new_name);
}
} else if(strcmp(device, "debug") == 0) {
if(deviceId > 0) {
myGlobals.device[deviceId].sflowGlobals->sflowDebug = atoi(value);
storePrefsValue(sfValue(deviceId, "debug", 1), value);
}
} else if(strcmp(device, "ifNetMask") == 0) {
int a, b, c, d, a1, b1, c1, d1;
if(deviceId > 0) {
if(sscanf(value, "%d.%d.%d.%d/%d.%d.%d.%d",
&a, &b, &c, &d, &a1, &b1, &c1, &d1) == 8) {
myGlobals.device[deviceId].sflowGlobals->sflowIfAddress.s_addr = (a << 24) +(b << 16) +(c << 8) + d;
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr = (a1 << 24) +(b1 << 16) +(c1 << 8) + d1;
storePrefsValue(sfValue(deviceId, "ifNetMask", 1), value);
} else if(sscanf(value, "%d.%d.%d.%d/%d", &a, &b, &c, &d, &a1) == 5) {
myGlobals.device[deviceId].sflowGlobals->sflowIfAddress.s_addr = (a << 24) +(b << 16) +(c << 8) + d;
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr = 0xffffffff >> a1;
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr =~
myGlobals.device[deviceId].sflowGlobals->sflowIfMask.s_addr;
storePrefsValue(sfValue(deviceId, "ifNetMask", 1), value);
} else
traceEvent(CONST_TRACE_ERROR, "SFLOW: HTTP request netmask parse error (%s)", value);
}
} else if(strcmp(device, "whiteList") == 0) {
/* Cleanup the http control char xform */
char *fPtr=value, *tPtr=value;
if(deviceId > 0) {
while(fPtr[0] != '\0') {
if((fPtr[0] == '%') && (fPtr[1] == '2')) {
*tPtr++ = (fPtr[2] == 'C') ? ',' : '/';
fPtr += 3;
} else {
*tPtr++ = *fPtr++;
}
}
tPtr[0]='\0';
accessMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex,
"handlesFlowHTTPrequest()w");
handleWhiteBlackListAddresses(value,
myGlobals.device[deviceId].sflowGlobals->whiteNetworks,
&myGlobals.device[deviceId].sflowGlobals->numWhiteNets,
(char*)&workList,
sizeof(workList));
if(myGlobals.device[deviceId].sflowGlobals->sflowWhiteList != NULL)
free(myGlobals.device[deviceId].sflowGlobals->sflowWhiteList);
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList=strdup(workList);
releaseMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex);
storePrefsValue(sfValue(deviceId, "whiteList", 1),
myGlobals.device[deviceId].sflowGlobals->sflowWhiteList);
}
} else if(strcmp(device, "blackList") == 0) {
/* Cleanup the http control char xform */
char *fPtr=value, *tPtr=value;
if(deviceId > 0) {
while(fPtr[0] != '\0') {
if((fPtr[0] == '%') && (fPtr[1] == '2')) {
*tPtr++ = (fPtr[2] == 'C') ? ',' : '/';
fPtr += 3;
} else {
*tPtr++ = *fPtr++;
}
}
tPtr[0]='\0';
accessMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex,
"handlesFlowHTTPrequest()b");
handleWhiteBlackListAddresses(value,
myGlobals.device[deviceId].sflowGlobals->blackNetworks,
&myGlobals.device[deviceId].sflowGlobals->numBlackNets,
(char*)&workList,
sizeof(workList));
if(myGlobals.device[deviceId].sflowGlobals->sflowBlackList != NULL)
free(myGlobals.device[deviceId].sflowGlobals->sflowBlackList);
myGlobals.device[deviceId].sflowGlobals->sflowBlackList=strdup(workList);
releaseMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex);
storePrefsValue(sfValue(deviceId, "blackList", 1),
myGlobals.device[deviceId].sflowGlobals->sflowBlackList);
}
}
}
url = strtok_r(NULL, "&", &strtokState);
}
}
#ifdef DEBUG
traceEvent(CONST_TRACE_INFO, "SFLOW: deviceId=%d", deviceId);
#endif
if(deviceId == -1) {
printHTMLheader("sFlow Device Configuration", NULL, 0);
printsFlowDeviceConfiguration();
return;
} else if(deviceId < 0) {
/* Delete an existing device */
char value[128];
int readDeviceId;
deviceId = -deviceId;
if((deviceId < 0) || ((readDeviceId = mapsFlowDeviceToNtopDevice(deviceId)) == -1)) {
printHTMLheader("sFlow Configuration Error", NULL, 0);
printFlagedWarning("<I>Unable to locate the specified device. Please activate the plugin first.</I>");
return;
}
if(SFLOW_DEBUG(deviceId))
traceEvent(CONST_TRACE_INFO, "SFLOW: Attempting to delete [deviceId=%d][sFlow device=%d]",
deviceId, readDeviceId);
if(fetchPrefsValue(sfValue(deviceId, "knownDevices", 0), value, sizeof(value)) != -1) {
char *strtokState, *dev, value1[128];
value1[0] = '\0';
dev = strtok_r(value, ",", &strtokState);
while(dev != NULL) {
int _dev = atoi(dev);
if(_dev != deviceId) {
if(value1[0] != '\0') strcat(value1, ",");
strcat(value1, dev);
}
dev = strtok_r(NULL, ",", &strtokState);
}
storePrefsValue(sfValue(deviceId, "knownDevices", 0), value1);
}
myGlobals.device[readDeviceId].activeDevice = 0; // Terminate thread
flushDevicePrefs(readDeviceId);
// termsFlowDevice(readDeviceId);
checkReportDevice();
printHTMLheader("sFlow Device Configuration", NULL, 0);
printsFlowDeviceConfiguration();
return;
} else if(deviceId == 0) {
/* Add new device */
char value[128];
if((fetchPrefsValue(sfValue(deviceId, "knownDevices", 0), value, sizeof(value)) != -1)
&& (strlen(value) > 0)) {
char *strtokState, *dev, value1[128], buf[256];
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: knownDevices=%s", value);
value1[0] = '\0';
dev = strtok_r(value, ",", &strtokState);
while(dev != NULL) {
int _dev;
if(strlen(dev) > 0) {
_dev = atoi(dev);
strcat(value1, ",");
strcat(value1, dev);
if(_dev >= deviceId)
deviceId = _dev+1;
}
dev = strtok_r(NULL, ",", &strtokState);
}
if(deviceId == 0) deviceId = 2;
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "%s,%d", value1, deviceId);
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: knownDevices=%s", buf);
storePrefsValue(sfValue(deviceId, "knownDevices", 0), buf);
} else {
deviceId = 2; /* 1 is reserved */
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: knownDevices=2");
storePrefsValue(sfValue(deviceId, "knownDevices", 0), "2");
}
if((deviceId = createsFlowDevice(deviceId)) <= 0) {
printHTMLheader("sFlow Configuration Error", NULL, 0);
printFlagedWarning("<I>Unable to create a new sFlow device</I>");
return;
}
} else {
/* Existing device */
}
if(deviceId > 0) {
/* ****************************
* Print Configuration stuff *
****************************** */
printHTMLheader("sFlow Configuration", NULL, 0);
printsFlowConfiguration(deviceId);
if(myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd > 0) {
u_int headerSent = 0;
IfCounters *ifName = myGlobals.device[deviceId].sflowGlobals->ifCounters;
char buf[512], formatBuf[256], formatBuf1[256];
sendString("<br><hr><p>\n");
/* ****************************
* Print interface statistics *
****************************** */
while(ifName != NULL) {
if(!headerSent) {
printSectionTitle("sFlow Interface Statistics");
sendString("<center><table border=\"1\" "TABLE_DEFAULTS">\n");
sendString("<tr><th>Idx</th><th>Type</th><th>Speed</th><th>Direction</th><th>Status</th><th>Promisc</th>"
"<th>Octets</th><th>Unicasts<br>Packets</th><th>Multicasts<br>Packets</th><th>Broadcasts<br>Packets</th>"
"<th>Discards<br>Packets</th><th>Errors<br>Packets</th><th>Unkn Proto<br>Packets</th><th> </th></tr>\n");
headerSent = 1;
}
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<tr><th>%u</th>",
ifName->ifIndex); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s</td>",
ifType(ifName->ifType)); sendString(buf);
if(ifName->ifSpeed >= 10000000) {
u_int32_t speed = ifName->ifSpeed / 1000000;
if(speed < 1000)
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%u Mbit</td>",
speed);
else
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%u Gbit</td>",
speed/1000);
sendString(buf);
} else {
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%u</td>",
ifName->ifSpeed);
sendString(buf);
}
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s</td>",
ifDirection(ifName->ifDirection)); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s</td>",
ifStatus(ifName->ifStatus)); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%u</td>",
ifName->ifPromiscuousMode); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s<br>%s</td>",
formatBytes(ifName->ifInOctets, 1, formatBuf, sizeof(formatBuf)),
formatBytes(ifName->ifOutOctets, 1, formatBuf1, sizeof(formatBuf1))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s<br>%s</td>",
formatPkts(ifName->ifInUcastPkts, formatBuf, sizeof(formatBuf)),
formatPkts(ifName->ifOutUcastPkts, formatBuf1, sizeof(formatBuf1))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s<br>%s</td>",
formatPkts(ifName->ifInMulticastPkts, formatBuf, sizeof(formatBuf)),
formatPkts(ifName->ifOutMulticastPkts, formatBuf1, sizeof(formatBuf1))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s<br>%s</td>",
formatPkts(ifName->ifInBroadcastPkts, formatBuf, sizeof(formatBuf)),
formatPkts(ifName->ifOutBroadcastPkts, formatBuf1, sizeof(formatBuf1))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s<br>%s</td>",
formatPkts(ifName->ifInDiscards, formatBuf, sizeof(formatBuf)),
formatPkts(ifName->ifOutDiscards, formatBuf1, sizeof(formatBuf1))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s<br>%s</td>",
formatPkts(ifName->ifInErrors, formatBuf, sizeof(formatBuf)),
formatPkts(ifName->ifOutErrors, formatBuf, sizeof(formatBuf1))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center>%s</td>",
formatPkts(ifName->ifInUnknownProtos, formatBuf, sizeof(formatBuf))); sendString(buf);
safe_snprintf(__FILE__, __LINE__, buf, sizeof(buf), "<td align=center><A HREF=\"/plugins/rrdPlugin?action=list&key="
"interfaces%s%s/sFlow/%u&title=Interface+Id+%u\">"
"<IMG SRC=/graph.gif BORDER=0></A></td></tr>",
(myGlobals.device[myGlobals.actualReportDeviceId].uniqueIfName[0] == '/') ? "" : "/",
myGlobals.device[myGlobals.actualReportDeviceId].uniqueIfName,
ifName->ifIndex, ifName->ifIndex,
formatPkts(ifName->ifInUnknownProtos, formatBuf, sizeof(formatBuf)));
sendString(buf);
ifName = ifName->next;
}
if(headerSent) sendString("</table><p><table><tr><td>Note: Counters are represented as "
"</td><td align=center>input value<br>output value</td></tr></table></center><p>\n");
/* ****************************
* Print statistics *
****************************** */
printSectionTitle("Flow Statistics");
sendString("<center><table border=\"1\" "TABLE_DEFAULTS">\n");
if(myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd > 0)
printsFlowStatisticsRcvd(deviceId);
sendString("</table>\n</center>\n");
sendString("<p><table border=\"0\"><tr><td width=\"25%\" valign=\"top\" align=\"right\">"
"<b>NOTES</b>:</td>\n"
"<td><ul>"
"<li>The virtual NIC, '" SFLOW_DEVICE_NAME "' is activated only when incoming "
"flow capture is enabled.</li>\n"
"<li>Once the virtual NIC is activated, it will remain available for the "
"duration of the ntop run, even if you disable incoming flows.</li>\n"
"<li>sFlow packets are associated with this separate, virtual device and are "
"not mixed with captured packets.</li>\n"
"<li>Activating incoming flows will override the command line -M | "
"--no-interface-merge parameter for the duration of the ntop run.</li>\n"
"<li>sFlow activation may (rarely) require ntop restart.</li>\n"
"<li>You can switch the reporting device using Admin | Switch NIC, or this "
"<a href=\"/" CONST_SWITCH_NIC_HTML "\" title=\"Switch NIC\">link</a>.</li>\n"
"</ul></td>\n"
"<td width=\"25%\"> </td>\n</tr>\n</table>\n");
#ifdef MUTEX_DEBUG
if(myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex.isLocked) {
sendString("<table><tr><td colspan=\"2\"> </td></tr>\n"
"<tr " TR_ON ">\n"
"<th colspan=\"2\" "DARK_BG">Mutexes</th>\n"
"</tr>\n");
sendString("<tr " TR_ON ">\n"
"<th>List Mutex</th>\n<td><table>");
printMutexStatus(FALSE, &myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex,
"White/Black list mutex");
sendString("</table><td></tr></table>\n");
}
#endif
}
}
safe_snprintf(__FILE__, __LINE__, workList, sizeof(workList), "%s?device=%d",
sflowPluginInfo->pluginURLname, originalId);
printPluginTrailer((myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd > 0) ?
workList : NULL,
"sFlow is a trademark of <a href=\"http://www.inmon.com/\" "
"title=\"InMon home page\">InMon Corporation</a>");
printHTMLtrailer();
}
/* ****************************** */
static void termsFlowDevice(int deviceId) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "SFLOW: terminating deviceId=%d", deviceId);
if(!pluginActive) return;
if(myGlobals.device[deviceId].activeDevice == 0) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_WARNING, "SFLOW: deviceId=%d terminated already", deviceId);
return;
}
if(myGlobals.device[deviceId].sflowGlobals == NULL) {
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_WARNING, "SFLOW: deviceId=%d terminating a non-sFlow device", deviceId);
return;
}
if((deviceId >= 0) && (deviceId < myGlobals.numDevices)) {
if(myGlobals.device[deviceId].sflowGlobals->threadActive) {
killThread(&myGlobals.device[deviceId].sflowGlobals->sflowThread);
myGlobals.device[deviceId].sflowGlobals->threadActive = 0;
}
tryLockMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex, "termsFlow");
deleteMutex(&myGlobals.device[deviceId].sflowGlobals->whiteblackListMutex);
if(myGlobals.device[deviceId].sflowGlobals->sflowInSocket > 0) {
closeNwSocket(&myGlobals.device[deviceId].sflowGlobals->sflowInSocket);
shutdown(myGlobals.device[deviceId].sflowGlobals->sflowInSocket, SHUT_RDWR);
}
while(myGlobals.device[deviceId].sflowGlobals->ifCounters != NULL) {
IfCounters *next = myGlobals.device[deviceId].sflowGlobals->ifCounters->next;
free(myGlobals.device[deviceId].sflowGlobals->ifCounters);
myGlobals.device[deviceId].sflowGlobals->ifCounters = next;
}
free(myGlobals.device[deviceId].sflowGlobals);
myGlobals.device[deviceId].activeDevice = 0;
} else
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_WARNING, "SFLOW: requested invalid termination of deviceId=%d", deviceId);
}
/* **************************************** */
static void termsFlowFunct(u_char termNtop /* 0=term plugin, 1=term ntop */) {
char value[128];
traceEvent(CONST_TRACE_ALWAYSDISPLAY, "SFLOW: Terminating sFlow");
if((fetchPrefsValue(sfValue(0, "knownDevices", 0), value, sizeof(value)) != -1) && (strlen(value) > 0)) {
char *strtokState, *dev;
dev = strtok_r(value, ",", &strtokState);
while(dev != NULL) {
int deviceId, theDeviceId = atoi(dev);
if((theDeviceId > 0) && ((deviceId = mapsFlowDeviceToNtopDevice(theDeviceId)) > 0)) {
termsFlowDevice(deviceId);
} else
traceEvent(CONST_TRACE_INFO, "NETFLOW: [sflowDeviceId=%d] device thread terminated in the meantime", theDeviceId);
dev = strtok_r(NULL, ",", &strtokState);
}
} else
traceEvent(CONST_TRACE_INFO, "SFLOW: no devices to terminate (%s)", value);
traceEvent(CONST_TRACE_INFO, "SFLOW: Thanks for using ntop sFlow");
traceEvent(CONST_TRACE_ALWAYSDISPLAY, "SFLOW: Done");
fflush(stdout);
pluginActive = 0;
}
/* **************************************** */
#ifdef DEBUG_FLOWS
static void handlesFlowPacket(u_char *_deviceId,
const struct pcap_pkthdr *h,
const u_char *p) {
int deviceId;
if(myGlobals.pcap_file_list->fileName != NULL) {
/* ntop is reading packets from a file */
struct ether_header ehdr;
u_int32_t caplen = h->caplen;
u_int32_t length = h->len;
unsigned short eth_type;
struct ip ip;
deviceId = 1; /* Dummy value */
if(myGlobals.device[deviceId].sflowGlobals == NULL)
deviceId = 2;
if(myGlobals.device[deviceId].sflowGlobals == NULL) {
traceEvent(CONST_TRACE_INFO, "NULL device (%d)", deviceId);
return;
}
#ifdef DEBUG_FLOWS
if(0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO,
"Rcvd packet to dissect [caplen=%d][len=%d]",
caplen, length);
#endif
if(caplen >= sizeof(struct ether_header)) {
int displ = sizeof(struct ether_header);
memcpy(&ehdr, p, displ);
eth_type = ntohs(ehdr.ether_type);
#ifdef DEBUG_FLOWS
/*
Quick patch for files captures with
Linux cooked capture (i.e. -i any)
*/
if(eth_type != ETHERTYPE_IP) {
eth_type = ETHERTYPE_IP, displ = 16;
}
#endif
if(eth_type == ETHERTYPE_IP) {
u_int32_t plen, hlen;
#ifdef DEBUG_FLOWS
if(0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "Rcvd IP packet to dissect");
#endif
memcpy(&ip, p+displ, sizeof(struct ip));
hlen =(u_int32_t)ip.ip_hl * 4;
NTOHL(ip.ip_dst.s_addr); NTOHL(ip.ip_src.s_addr);
plen = length-displ;
#ifdef DEBUG_FLOWS
if(SFLOW_DEBUG(deviceId))
traceEvent(CONST_TRACE_INFO, "Rcvd IP packet to dissect [deviceId=%d][sender=%s][proto=%d][len=%d][hlen=%d]",
deviceId, intoa(ip.ip_src), ip.ip_p, plen, hlen);
#endif
if(ip.ip_p == IPPROTO_UDP) {
if(plen >(hlen+sizeof(struct udphdr))) {
SFSample sample;
char* rawSample =(char*)(p+displ+hlen+sizeof(struct udphdr));
int rawSampleLen = h->caplen-(displ+hlen+sizeof(struct udphdr));
#ifdef DEBUG_FLOWS
if(SFLOW_DEBUG(deviceId))
traceEvent(CONST_TRACE_INFO, "Rcvd from from %s",
intoa(ip.ip_src));
#endif
myGlobals.device[deviceId].sflowGlobals->numsFlowsPktsRcvd++;
memset(&sample, 0, sizeof(sample));
sample.rawSample = (u_char*)rawSample;
sample.rawSampleLen = rawSampleLen;
sample.sourceIP = ip.ip_src;
sample.datap = (u_int32_t *)sample.rawSample;
sample.endp = (u_char *)sample.rawSample + sample.rawSampleLen;
dissectFlow(&sample, deviceId);
}
}
} else {
#ifdef DEBUG_FLOWS
if(0)
if(SFLOW_DEBUG(deviceId)) traceEvent(CONST_TRACE_INFO, "Rcvd non-IP [0x%04X] packet to dissect", eth_type);
#endif
}
}
}
}
#endif
/* ***************************************** */
/* Plugin entry fctn */
#ifdef MAKE_STATIC_PLUGIN
PluginInfo* sflowPluginEntryFctn(void)
#else
PluginInfo* PluginEntryFctn(void)
#endif
{
traceEvent(CONST_TRACE_ALWAYSDISPLAY,
"SFLOW: Welcome to %s.(C) 2002-12 by Luca Deri",
sflowPluginInfo->pluginName);
return(sflowPluginInfo);
}
/* This must be here so it can access the struct PluginInfo, above */
static void setPluginStatus(char * status)
{
if(sflowPluginInfo->pluginStatusMessage != NULL)
free(sflowPluginInfo->pluginStatusMessage);
if(status == NULL) {
sflowPluginInfo->pluginStatusMessage = NULL;
} else {
sflowPluginInfo->pluginStatusMessage = strdup(status);
}
}
/* ************************************************** */
|