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
|
/*
* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
* http://www.ntop.org
*
* Copyright (C) 1998-2012 Luca Deri <deri@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.
*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
*
* This file, included from ntop.h, contains ALL common #define statements.
*
* Changes here affect how ntop compiles. This includes features that are
* enabled, etc.
*
* Names have at least one part that defines their "type". Listed below in the order
* they are most frequently changed.
*
* PARM -- any "PARM" item is an internal tuning item, e.g. one that must be set at
* compile time and can not be overridden at run time.
*
* MAKE -- MAKEs are like PARM, but set based on other factors like the os, absence
* of other values, etc.
*
* DEBUG -- any "DEBUG" item is not normally set, but if #define(d) causes additional
* output fron ntop of a debugging nature.
*
* CONST, LEN and MAX - these are arbitrary values, limits and lengths of fields
* (buffer size, ethernet address, et al) and arrays.
*
* FLAG and BITFLAG -- are various constants and flags.
* FLAG is a numeric/char value used to mean something
* BITFLAG is a value used to test/set a specific bit in a value
*
* HTML -- an "HTML" item is the name of a page produced by the ntop web server. Using
* these constants ensures that the same name is used for testing and for including in
* generated html. Note that this includes the graphics we use (.jpg, .gif and .png)
* regardless of whether it's a generated "page" or just a static included image.
*
* CFG -- any "CFG" item is set in config.h by ./configure indicating that ntop was
* requested to be compiled with a particular configuration. These are not defined in
* this file.
*
* HAVE -- any "HAVE" item is set in config.h by ./configure indicating that the .h and
* .a/.so tests found we have a particular file or library during the testing process.
* HAVE items are not defined in this file (they're in config.h). However -
* Note that we don't differentiate in the code between the automatically generated
* singular items (HAVE_SSL_H) and the composite ones (generated from a bunch of tests,
* HAVE_OPENSSL). Forced and/or Composite items should be defined here.
*
* DEFAULT -- any "DEFAULT" item is the standard, default value of a global data item.
* This can be over-ridden (usually) by a command-line pararameter at run-time.
* These go pretty much last so they can use values from other classes.
*
* -- any MISSING or EXTERNALLY named item, obviously, has to have the proper missing
* or externally named name. These are grouped after the ntop stuff...
*
* Note that with this initial version (01-2003), there is something less than 100%
* adherence to this. Any corrections, comments, (hopefully) documentation would be
* greatly appreciated.
*
*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* P A R M items */
/* These typically make MAJOR changes in how ntop's operates */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* These cause features (debugging or ones that may have problems) to be enabled/disabled.
*/
/*
* A general work-in-progress flag
*/
/* #define PARM_ENABLE_EXPERIMENTAL */
/*
* Controls whether to make a fork() call in http.c and others
*/
#define PARM_FORK_CHILD_PROCESS
/*
* Cache sessions instead of purging them and reuse.
*/
/* #define PARM_USE_SESSIONS_CACHE */
/*
* Define to enable alternating row colors on many tables.
*/
#undef PARM_USE_COLOR
/*
* This causes the hash functions in vendor.c to invert the mac address #s when
* computing the hash. This allows a lot fewer entries in the hash table.
*/
#define PARM_USE_MACHASH_INVERT
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* These cause more data (perhaps controversial or experimental) to be reported.
*/
/* PARM_PRINT_ALL_SESSIONS causes report.c/reportUtils.c to include in reports
* lines for sessions that are not "active".
*/
#define PARM_PRINT_ALL_SESSIONS
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Timeouts and intervals - in seconds (x*60 = x minutes)
*/
/*
* SLEEP LIMIT - this is how long we let a thread actually sleep before
* waking up and checking myGlobals.ntopRunState...
*
* The lower this is, the more responsive ntop is to shutdowns. But the more time is 'wasted'
* just making threads and putting them back to sleep.
*
*/
#define PARM_SLEEP_LIMIT 10
/*
* Max number of hosts a 'non server' host should contact
*/
#define CONTACTED_PEERS_THRESHOLD 1024
/*
* How long between runs of the idle host purge?
*/
#define PARM_HOST_PURGE_INTERVAL 60
/*
* How long must a host be idle to be considered for purge?
*/
#define PARM_HOST_PURGE_MINIMUM_IDLE_NOACTVSES 60
#define PARM_HOST_PURGE_MINIMUM_IDLE_ACTVSES 60
/*
* How long must a session be idle to be considered for purge?
*/
#define PARM_SESSION_PURGE_MINIMUM_IDLE 10*60
/*
* How long before a passive ftp session timesout?
*/
#define PARM_PASSIVE_SESSION_MINIMUM_IDLE 60
/*
* How long an idle AS entry can last (sec)
* NOTE: it should be longer than the default RRD time
*/
#define PARM_AS_MAXIMUM_IDLE 360
/*
* How long to leave somebody in myGlobals.weDontWantToTalkWithYou[]
*/
#define PARM_WEDONTWANTTOTALKWITHYOU_INTERVAL 5*60 /* 5 minutes */
/*
* How often should we update the throughput counters?
*/
#define PARM_THROUGHPUT_REFRESH_INTERVAL 30
/*
* Minimum value for the auto refresh of web pages (those that can be auto refreshed).
* User set via the -r | --refresh-time parameter.
*/
#define PARM_MIN_WEBPAGE_AUTOREFRESH_TIME 15
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* M A K E option items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Win32 - Force various things to make up for lack of ./configure process */
#ifdef WIN32
#define MAKE_STATIC_PLUGIN
#define CFG_LITTLE_ENDIAN 1
#undef CFG_BIG_ENDIAN
/* CFG_DATAFILE_DIR - see ntop_win32.h */
#ifndef CFG_PLUGIN_DIR
#define CFG_PLUGIN_DIR "."
#endif
#ifndef CFG_CONFIGFILE_DIR
#define CFG_CONFIGFILE_DIR "."
#endif
#ifndef CFG_DBFILE_DIR
#define CFG_DBFILE_DIR "."
#endif
#endif
/*
* Defined in (Linux) <arpa/nameser_compat.h> which is included from
* <arpa/nameser.h>
* If - for whatever reason - they're not found... add them, based on the Linux definitions.
*/
#ifndef PACKETSZ
#define MAKE_NTOP_PACKETSZ_DECLARATIONS
#endif
/*
* MAKE_WITH_SYSLOG is shorthand for defined(HAVE_SYS_SYSLOG_H) || defined(HAVE_SYSLOG_H)
* Use that ifdef everywhere else for code dependent on the includes.
*/
#undef MAKE_WITH_SYSLOG
#ifdef HAVE_SYS_SYSLOG_H
#define MAKE_WITH_SYSLOG
#else
#ifdef HAVE_SYSLOG_H
#define MAKE_WITH_SYSLOG
#endif
#endif
/*
* This flag indicates that fork() is implemented with copy-on-write.
* This means that the set of tables reported on in fork()ed processes
* will be complete and unchanged as of the instant of the fork.
*/
#if defined(LINUX)
#define MAKE_WITH_FORK_COPYONWRITE
#else /* WIN32 OPENBSD FREEBSD et al */
#undef MAKE_WITH_FORK_COPYONWRITE
#endif
/*
* This flag turns on a signal trap in netflowPlugin.c. If you're seeing
* netflow simply and silently die, this might catch the signal and log
* it for analysis.
*/
/* #define MAKE_WITH_NETFLOWSIGTRAP */
/*
* This flag turns on a signal trap in webInterface.c and in http.c for
* the children. If you're seeing pages simply and silently die, this
* might catch the signal and log it for analysis.
*/
/* #define MAKE_WITH_HTTPSIGTRAP */
/* EXPERIMENTAL */
/* Define MAKE_WITH_LOG_XXXXXX if you want log messages to use more than just
* LOG_ERR for ntop's messages.
*
* See util.c for the mappings from CONST_TRACE_xxxx_LEVEL to LOG_xxxxxx settings.
*
* If you do this, it's STRONGLY suggested - to prevent a large # of console
* messages - that you:
* use --use-syslog=local3 or such
* add local3.none to a couple of places in /etc/syslog.conf
* so ntop's LOG_ERROR messages don't flood the real console.
*/
/* #undef MAKE_WITH_LOG_XXXXXX */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* D E B U G items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* WARNING: Descriptions are APPROXIMATE. Check the code before turning
* these on/off. They can cause HUGE amounts of log messages,
* and/or slow ntop down so it can't keep up.
*
* Debugging code has not been widely tested, is subject to change
* on a developers whim and should NOT be used on production systems!
*
* OK? You've been warned!
*
* If you add something here, remember to add it to the #ifdef and the
* detailed reporting lines in webInterface.c
*
*/
/*
* Enable these to make MAJOR, debug-type changes in ntop's activities!
* These are usually lots and lots of log messages
*/
/* ADDRESS_DEBUG logs the activities in address.c related to testing for
* local, pseudolocal and remote status for ip addresses.
*/
/* #define ADDRESS_DEBUG */
/* CHKVER_DEBUG logs the activities in util.c related to checking the ntop
* version.
*/
/* #define CHKVER_DEBUG */
/* CMPFCTN_DEBUG logs info about the hostResolvedName compare function.
*/
/* #define CMPFCTN_DEBUG */
/* DNS_DEBUG logs the activites in address.c related to Name resolution.
*/
/* #define DNS_DEBUG */
/* DNS_SNIFF_DEBUG logs the activites in pbuf.c and sessions.c related to
* DNS requests and replies sniffed out of the ntop monitored traffic.
*/
/* #define DNS_SNIFF_DEBUG */
/* FINGERPRINT_DEBUG logs information about OS Fingerprinting.
*/
/* #define FINGERPRINT_DEBUG */
/* FRAGMENT_DEBUG logs information about packet fragments nto receives.
*/
/* #define FRAGMENT_DEBUG */
/* FTP_DEBUG logs ftp control session information.
*/
/* #define FTP_DEBUG */
/* GDBM_DEBUG logs the activites in address.c related to gdbm */
/* #define GDBM_DEBUG */
/* HASH_DEBUG logs the adding of values to the hash. It also enables
* (a presently unused) routine, hashDump().
*/
/* #define HASH_DEBUG */
/* HOST_FREE_DEBUG logs the freeing of hash_hostTraffic by freeHostInfo() in hash.c
*/
/* #define HOST_FREE_DEBUG */
/* HTTP_DEBUG logs the http sessions. It logs HTTP/1... from source port 80
* and anything to destination port 80. Also http headers, etc.
*/
/* #define HTTP_DEBUG */
/* IDLE_PURGE_DEBUG logs the purging of idle hosts
*/
/* #define IDLE_PURGE_DEBUG */
/* INITWEB_DEBUG logs the initialization of the web server
*/
/* #define INITWEB_DEBUG */
/* LATENCY_DEBUG logs the acquisition of latency figures.
*/
/* #define LATENCY_DEBUG */
/* MEMORY_DEBUG selects among various options for debugging ntop's memory allocations
* (look in leaks.c for most of this).
*
* You can (and should) set this via --with-memorydebug=VALUE in ./configure!
*
* Undefined (or zero) ... no debugging
*
* 1 gnu mtrace()/muntrace()
* see http://www.gnu.org/software/libc/manual/html_node/Interpreting-the-traces.html
* 2 ElectricFence
* see http://directory.fsf.org/devel/debug/ElectricFence.html
* 3 leaks.c - ntop custom allocation tracker
* 4 gnu mcheck()
* see http://www.gnu.org/software/libc/manual/html_node/Heap-Consistency-Checking.html
*
* WARNING: If this is enabled, the size of the hash_list (later in ntop.h) is restricted.
*
* Use this construct for coding:
*
* #ifdef MAKE_WITH_SAFER_ROUTINES
* ...here...
* #elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 1)
* ...here...
* #elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 2)
* ...here...
* #elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 3)
* ...here...
* #elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 4)
* ...here...
* #elif defined(MEMORY_DEBUG)
* <error>
* #else
* <default, usually nothing>
* #endif
*
*/
/* #define MEMORY_DEBUG 1 */
/*
* WARNING: Unless you also define MEMORY_DEBUG_UNLIMITED, there
* There is code in pbuf.c that will automatically stop ntop,
* based upon the limits below...
*/
/* #define MEMORY_DEBUG_UNLIMITED */
#define MEMORY_DEBUG_PACKETS 10000
#define MEMORY_DEBUG_SECONDS 15*60 /* 15 Minutes */
/* Don't change this (except to add new cases) - it's the default handling for above ... */
#ifdef MAKE_WITH_SAFER_ROUTINES
#elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 1)
#elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 2)
#elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 3)
#elif defined(MEMORY_DEBUG) && (MEMORY_DEBUG == 4)
#elif defined(MEMORY_DEBUG)
#error Invalid value for MEMORY_DEBUG - fix --with-memorydebug= ./configure option
#else
#define MAKE_WITH_SAFER_ROUTINES
#endif /* MAKE_WITH_SAFER_ROUTINES / MEMORY_DEBUG */
/*
* MUTEX_DEBUG causes util.c to log information about mutex/condvar operations.
*/
/* #define MUTEX_DEBUG */
/* NETFLOW_DEBUG logs the netflow packets as they are sent from
* sendNetFlow() in netflow.c
*/
/* #define NETFLOW_DEBUG */
/* PACKET_DEBUG writes the IP and ETHER packets received by ntop to
* a file. Major impact on performance...
*/
/* #define PACKET_DEBUG */
/* PARAM_DEBUG enabled debug messages during command line parameter
* processing.
*/
/* #define PARAM_DEBUG */
/* PLUGIN_DEBUG enables debug messages during plugin start/stop.
*/
/* #define PLUGIN_DEBUG */
/* PROBLEMREPORTID_DEBUG enables debug messages showing the values used to create
* the unique ProblemReport Id
*/
/* #define PROBLEMREPORTID_DEBUG */
/* P2P_DEBUG enables debug messages during P2P protocol processing.
*/
/* #define P2P_DEBUG 1 */
/* SESSION_TRACE_DEBUG causes sessions.c to log the start and end of
* tcp sessions.
*/
/* #define SESSION_TRACE_DEBUG */
/* STORAGE_DEBUG causes util.c to log the store/resurrection of host information,
* i.e. the -S command line parameter.
*/
/* #define STORAGE_DEBUG */
/* URL_DEBUG causes http.c to log information regarding processing of URLs
* received by the ntop web server
*/
/* #define URL_DEBUG */
/* UNKNOWN_PACKET_DEBUG causes pbuf.c to log packets that are
* either from an unknown protocol or of an unknown ethernet type
*/
/* #define UNKNOWN_PACKET_DEBUG */
/* VENDOR_DEBUG debugs the vendor table stuff in vendor.c
*/
/* #define VENDOR_DEBUG */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* L E N, L I M, M A X items */
/* Some are with the CONST_ items, below too */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Tunables - changing these should allow ntop to handle more or less of some thing.
* Commonly changed ones are up front...
*/
/*
* Number of entries in myGlobals.packetQueue[], which is the queue of
* received but unanalyzed packets.
*
* Keep an eye on myGlobals.maxPacketQueueLen - this can eat up a lot of memory.
* Each entry is well over 2*DEFAULT_SNAPLEN bytes.
*/
#define CONST_PACKET_QUEUE_LENGTH 2048
/*
* This is the size of the table that holds IP addresses we don't want to
* talk to (due to sending an invalid - i.e. hostile) URL
*
* Valid values are 0 (disables) up to whatever.
*/
#define MAX_NUM_BAD_IP_ADDRESSES 3
/* Maximum number of queued addresses waiting to be resolved */
#define MAX_NUM_QUEUED_ADDRESSES 16384
/* Maximum length of network delay statistics */
#define MAX_NUM_NET_DELAY_STATS 16
/*
* Number of (optional) "AR - Address Resolution" threads,
* i.e. dequeueAddressThreadId[] and numDequeueThreads in myGlobals.
*
* You might increase this if you have really slow dns resolution and are running
* asyncronously.
*/
#define MAX_NUM_DEQUEUE_ADDRESS_THREADS 3
/* Hash size */
#define CONST_HASH_INITIAL_SIZE 32*1024
/* Number of mutexes used for locking sessions */
#define NUM_SESSION_MUTEXES 8
/*
* These change the break points for the "Network Traffic: xxxx" reports
* (e.g. dataHostTraffic.html et al). See getBgPctgColor() in reportUtils.c
*/
#define CONST_PCTG_LOW 25 /* % */
#define CONST_CONST_PCTG_LOW_COLOR "BGCOLOR=#C6EEF7"
#define CONST_PCTG_MID 75 /* % */
#define CONST_CONST_PCTG_MID_COLOR "BGCOLOR=#C6EFC8"
#define CONST_PCTG_HIGH_COLOR "BGCOLOR=#FF3118"
/*
* The number of entries in the logView ring buffer - how many log messages
* we can display in the GUI.
*/
#define CONST_LOG_VIEW_BUFFER_SIZE 50
/*
* Tunables - changing these should allow ntop to handle more or less of some thing.
* Uncommonly changed ones...
*/
/*
* The number of entries in HostTrafic's recentlyUsedClientPorts[] and
* recentlyUsedServerPorts[] - this is the "TCP/UDP Recently Used Ports"
* section of the "Info about host" report.
*/
#define MAX_NUM_RECENT_PORTS 5
/* it defines the maximum number of undefined protocols */
#define MAX_NUM_UNKNOWN_PROTOS 5
/*
* These are various html colors used in places throughout ntop.
*
* Change them if you want, remember there are also static .html pages and
* .css style sheets to change too!
*/
#define CONST_COLOR_1 "#CCCCFF"
#define CONST_COLOR_2 "#FFCCCC"
/*
* This is the minimum percentage of a slice in many of the pie graphs
* Anything smaller is just dropped. If you don't like your pies, change it.
* 0.1 % is 1 part in 1000. 0.5 or 1.0 might be better choices.
*/
#define MIN_SLICE_PERCENTAGE 0.1
/*
* This is the size if the box to draw the legends in
*/
#define CONST_LEGEND_BOX_SIZE 7
#define CONST_VLAN_COLUMN_SORT 20
/*
* Max number of OS entries in the report
*/
#define MAX_NUM_OS 256
#ifdef MEMORY_DEBUG
#define MAX_PER_DEVICE_HASH_LIST 256
#else
#define MAX_PER_DEVICE_HASH_LIST ((u_int16_t)-1) /* Static hash size */
#endif
#define MAX_NUM_PURGED_SESSIONS 512
#define MAX_TOT_NUM_SESSIONS MAX_PER_DEVICE_HASH_LIST
/*
* This is the theoretical upper limit on "NIC"s. This must be large enough to include
* the dummy device, other pseudo- devices (sFlow, netFlow) and all of the real and
* virtual network interface cards on the -i parameter.
*
* Note that because the big allocators are dynamic, reducing this will not save
* much memory. Still, 32 is absurd for MOST people.
*
* But, remember - when sniffing from a multihomed interface it is necessary to add
* all the virtual interfaces because ntop has to know all the local addresses.
*
* This affects static allocations:
* in graph.c - for reporting
* in hash.c - for lastPurgeTime[] in purgeIdleHosts()
* in plugin.c - for the flow filters structure
*
* This affects dynamic allocations in initialize.c - if it's too small for the -i parameter,
* there is a warning message in initDevices().
*
*/
#define MAX_NUM_DEVICES 32
/*
* Maximum virtual device (e.g. eth0:n) to check
*/
#define MAX_NUM_DEVICES_VIRTUAL 7
/*
* Display name for netFlow/sFlow 'dummy' or virtual devices
*/
#define NETFLOW_DEVICE_NAME "NetFlow-device"
#define SFLOW_DEVICE_NAME "sFlow-device"
#define CPACKET_DEVICE_NAME "cPacket-device"
/*
* This defines the maximum number of entries in the ntop pwFile
* note that both 'users' and 'urls' are stored in here.
*/
#define MAX_NUM_PWFILE_ENTRIES 64
/*
* This is an IPv4 convention - it's the upper port # that is "officially assigned" (reserved)
* for a specific service. This controls upto what port# ntop reports in various places,
* such as the 'TCP/UDP Service/Port Usage' section in the "Info about host" page, the
* 'TCP/UDP Protocol Subnet Usage' section in ipProtoUsage.html, etc.
*
* You could certainly make this larger if you are concerned about ports over 1024, but
* it will cost you memory.
*/
#define MAX_ASSIGNED_IP_PORTS 1024
/*
* Work table entries[] in dumpElementHash(), reportUtils.c
*/
#define MAX_HASHDUMP_ENTRY (u_short)-1
/*
* Size of the AS and VLAN hashes, created by allocateElementHash() and dumped by
* dumpElementHash().
*/
#define MAX_ELEMENT_HASH 4096
/*
* Size of the array of tcp ACK ids we are waiting to see (sessions.c).
* Note that this is a PER SESSION value. See handleSession().
*/
#define MAX_NUM_FIN 4
/*
* This MUST be a little bigger than the number of entries in the array in vendor.c
* Ideally, it would be prime and big enough to minimize the collisions
* (check IPX/SAP Hash Collisions in the configuration report).
*
* NOTE: The hashs can be optimized - look at the note in vendor.c
*
* Don't kill yourself on this - it's not a LOT of storage - unused entries cost
* only 8 bytes... These values are pretty good for the table as of 01-2003.
*
* Based on the data as of 01-2003:
* normal: size 181 2 collisions
* 109 4 collisions
* invert: size 179 0 collisions
* 93 2 collisions
*/
#ifdef PARM_USE_MACHASH_INVERT
#define MAX_IPXSAP_NAME_HASH 179
#else
#define MAX_IPXSAP_NAME_HASH 181
#endif
/*
* Size of the nfs entries hash in plugins/nfsPlugin.c.
*/
#define MAX_NFS_NAME_HASH 12288
/*
* Limit of the table used to display hosts in the pda Plugin.
*/
#define MAX_PDA_HOST_TABLE 4096
/*
* Limit of the table used to display hosts in the lastSeen plugin.
*/
#define MAX_LASTSEEN_TABLE_SIZE 4096
/*
* Maximum number of entries in the User Lists.
* See updateHTTPVirtualHosts(), updateFileList() and updateHostUsers().
* Note that these are singly linked lists, so this is the only limit
* on their size.
*/
#define MAX_NUM_LIST_ENTRIES 32
/*
* This is the maximum number of entries in the contacted peers tables,
* peersSerials[] in UsageCounter, and contactedIpPeersIndexes[] in ProcessInfo.
* These tables maintain the host to host contact information for various reports.
*/
#define MAX_NUM_CONTACTED_PEERS 8
/*
* This is the maximum number of 'routers' to report in the "Local Subnet Routers" section
* (that is localRoutersList.html). It's a local array, routerList[] built in
* printLocalRoutersList(). It is built from a scan of all of the contacted peers data.
*/
#define MAX_NUM_ROUTERS 512
/*
* This defines the number of entries in util.c of the local structure networks[][3]
* (i.e. the network, mask, and broadcast).
*
* This array is set from the NICs and -m values and used to determine if an address
* is pseudoLocal, see __pseudoLocalAddress().
*
* It MUST be big enough to hold all of the addresses assigned to each interface, plus
* any additional values set by -m. Don't be stingy - it's 3 32bit integers per entry.
*/
#define MAX_NUM_NETWORKS 64
/*
* This defines the # of entries in hostsCache[] in myGlobals.
*
* That is used as a holding tank of purged host entries for reuse, instead of
* doing free/malloc sets. The current value is reported as 'Host Memory Cache Size'
* in the configuration report.
*
* On a busy network with lots of hosts coming and going, this MIGHT help - check the
* info.html report and see if the MAX is this size.
*
* MAX_SESSIONS_CACHE_LEN defaults to the same, but it caches sessions and could
* be different.
*/
#define MAX_HOSTS_CACHE_LEN 512
#define MAX_SESSIONS_CACHE_LEN MAX_HOSTS_CACHE_LEN
/*
* Maximum number of bytes to process from a packet.
* Should equal the value of _mtuSize[DLT_NULL], set in globals-core.h.
*
* Note that this is the SIZE of the buffer, the actual # of bytes copied is
* set by DEFAULT_SNAPLEN.
*/
#ifdef MAKE_WITH_JUMBO_FRAMES
#define MAX_PACKET_LEN 9000
#else
#define MAX_PACKET_LEN 8232
#endif
/*
* Maximum number of protocols for graphs - hostIPTrafficDistrib()
* Probably don't want to change this - they get pretty unreadable even this big.
*/
#define MAX_NUM_PROTOS 64
/*
* Used in initialize.c to limit the size of myGlobals.device[].numHosts (you will see
* the message, Truncated network size (device xxx) to nnnn hosts (real netmask xxx).
*
* If you have a few devices but large networks (e.g. a single /16) you might want to
* increase this to track more hosts. But watch the memory usage.
*/
#define MAX_SUBNET_HOSTS 1024
/*
* Used in util.c - the number of entries in the (ftp) passiveSessions
* and voipSessions tracking structure
*/
#define MAX_PASSIVE_FTP_SESSION_TRACKER 2048
/*
* Sets myGlobals.maxNumLines, which is used to determine how many rows (lines)
* appear on each page of a multiple paged report
*/
#define CONST_NUM_TABLE_ROWS_PER_PAGE 30
/*
* Size of myGlobals.transTimeHash[], used to produce the "IP Service Stats"
* in the "Info about host" report. If you are monitoring a busy server
* handling lots of long running requests, you might need to up this -
* IF coding for other longer-running services is added. The key structure
* is ServiceStats in ProtocolInfo.
*/
#define CONST_NUM_TRANSACTION_ENTRIES 256
/*
* Number of entries in probeList[] in netFlowPlugin.c and sflowPlugin.c
*/
#define MAX_NUM_PROBES 16
/*
* Number of entries in flowIgnored[] in netFlowPlugin.c
*/
#define MAX_NUM_IGNOREDFLOWS 32
/*
* This is used in URL security to put an upper limit on the URL we're willing to
* deal with - it's then used in http.c as the size of a couple of static work buffers.
*/
#define MAX_LEN_URL 512
/*
* Number of tcp flags we'll store for an IP Session
*/
#define MAX_NUM_STORED_FLAGS 4
/*
* Used during initialization and the mtu and header size tables in globals-core.c,
* if we don't know the real value. This is a flag value so we don't do processing
* based on an unknown value.
*/
#define CONST_UNKNOWN_MTU 65355
/*
* Interval to run the (background) fingerprint lookup scan
*/
#define CONST_FINGERPRINT_LOOP_INTERVAL 150 /* 2.5m */
/*
* OS Fingerprint file, from ettercap (http://ettercap.sourceforge.net/)
*/
#define CONST_OSFINGERPRINT_FILE "etter.finger.os"
/*
* SourceForge page to submit new fingerprints for Ettercap...
*/
#define CONST_ETTERCAP_HOMEPAGE "http://ettercap.sourceforge.net/"
#define CONST_ETTERCAP_FINGERPRINT "fingerprint.php"
/*
* Autonomous System Number list file...
*/
#define CONST_ASLIST_FILE "AS-list.txt"
/*
* libgd file name
*/
#define CONST_LIBGD_SO "libgd.so"
/*
* openSSL (https://) stuff
*
* MAX_SSL_CONNECTIONS
* This is the # of SSL_connection entries in ssl[] and thus the maximum number
* of simultaneous SSL connections ntop can support.
*
* CONST_SSL_CERTF_FILENAME
* This is the name of the ssl certificate file ntop used, located in the
* myGlobals.configFileDirs[] list of directories.
*/
#ifdef HAVE_OPENSSL
#define MAX_SSL_CONNECTIONS 32
#define CONST_SSL_CERTF_FILENAME "ntop-cert.pem"
#endif
/*
* This is the URL to request the latest version information
*/
#define CONST_VERSIONCHECK_SITE "version.ntop.org"
#define CONST_VERSIONCHECK_DOCUMENT "version.xml"
#define CONST_VERSIONCHECK_URL CONST_VERSIONCHECK_SITE "/" CONST_VERSIONCHECK_DOCUMENT
/*
* How often - in SECONDS - to recheck the version information
* Why the weird value? So every instance in the world, which is started @ midnight by a
* cron job doesn't hit the web server at exactly the same time every nn days...
*/
#define CONST_VERSIONRECHECK_INTERVAL 1300000 /* 15 days 1 hour 6 minutes 40 seconds */
/* Other choices: */
//#define CONST_VERSIONRECHECK_INTERVAL 3600 /* 1 hour */
//#define CONST_VERSIONRECHECK_INTERVAL 86400 /* 1 Day */
//#define CONST_VERSIONRECHECK_INTERVAL 360000 /* 100 hours */
//#define CONST_VERSIONRECHECK_INTERVAL 604800 /* 1 week */
//#define CONST_VERSIONRECHECK_INTERVAL 1209600 /* 14 days */
//#define CONST_VERSIONRECHECK_INTERVAL 2592000 /* 30 days */
/*
* Status for checkVersion...
*/
#define FLAG_CHECKVERSION_NOTCHECKED 0
#define FLAG_CHECKVERSION_OBSOLETE 1
#define FLAG_CHECKVERSION_UNSUPPORTED 2
#define FLAG_CHECKVERSION_NOTCURRENT 3
#define FLAG_CHECKVERSION_CURRENT 4
#define FLAG_CHECKVERSION_OLDDEVELOPMENT 5
#define FLAG_CHECKVERSION_DEVELOPMENT 6
#define FLAG_CHECKVERSION_NEWDEVELOPMENT 7
/* Flag for printBar() */
#define FLAG_NONSPLITBAR 999 /* Anything > 100 < MAX_SHORT will work */
/*
* Items which affect the listen() call in webInterface.c. Making this larger
* allows the tcp/ip stack to queue more requests for the ntop web server
* before it starts dropping them. See man listen.
*/
#define DEFAULT_WEBSERVER_REQUEST_QUEUE_LEN 10
/*
* Be aware that some OSes have limits on how large this can be and
* will silently ignore larger values...
*/
#define MIN_WEBSERVER_REQUEST_QUEUE_LEN 2
#define MAX_WEBSERVER_REQUEST_QUEUE_LEN 20
/*
* These adjust the width of the columns in the info.html report
*/
#define CONST_INFOHTML_COL1_WIDTH 250
#define CONST_INFOHTML_COL2_WIDTH 175
#define CONST_INFOHTML_COL3_WIDTH 175
#define CONST_INFOHTML_COL23_WIDTH 350 /* columns 2 + 3 */
/*
* How many pathological cases (same IP/MAC different VLANs) to warn about
*/
#define MAX_MULTIPLE_VLAN_WARNINGS 10
/*
* How many packets/flows/cycles/records to track for the processing time stats -
* undef means don't do it...
*
* Values MUST BE a power of 2!
*/
#define MAX_PROCESS_BUFFER 1024
/* For compatibility w/ 3.2rc1, these are undef. But it's a good idea to enable them... */
#undef MAX_RRD_PROCESS_BUFFER
#undef MAX_RRD_CYCLE_BUFFER
#undef MAX_NETFLOW_FLOW_BUFFER
#undef MAX_NETFLOW_PACKET_BUFFER
/* #define MAX_RRD_PROCESS_BUFFER 512 */
/* #define MAX_RRD_CYCLE_BUFFER 4 */
/* #define MAX_NETFLOW_FLOW_BUFFER 128 */
/* #define MAX_NETFLOW_PACKET_BUFFER 16 */
/*
http://code.google.com/apis/maps/
*/
#define GOOGLE_DEFAULT_MAP_KEY "ABQIAAAAfFZuochHQVROgoyQEe3_SBS6yewdwLQqdZ11GEdkGrSPz1gWRxTmFdYiXZrTS3LFawwiK5Pufj5j1Q"
/*
* These are the constants used by the ntop web server to match requests and
* to generate links in generated pages. Look in http.c, plugins, etc.
*
* 1. Keep this list sorted by the defined value (e.g. the xxxx.html)
* 2. Add to it INSTEAD of using inline constants.
* 3. If the text ends .html, end the CONST_ constant with _HTML
* that keeps the full names different from the partials
* (similarly .xml .p3p, etc.)
* If it's a header (ends /), end the CONST_ with _HEADER
*/
#define CONST_ABTNTOP_HTML "aboutNtop.html"
#define CONST_ADD_URLS_HTML "addURLs.html"
#define CONST_ADD_USERS_HTML "addUsers.html"
#define CONST_CHANGE_FILTER_HTML "changeFilter.html"
#define CONST_CREDITS_HTML "Credits.html"
#define CONST_SORT_DATA_HOST_TRAFFIC_HTML "dataHostTraffic.html"
#define CONST_SORT_DATA_RCVD_HOST_TRAFFIC_HTML "dataRcvdHostTraffic.html"
#define CONST_SORT_DATA_SENT_HOST_TRAFFIC_HTML "dataSentHostTraffic.html"
#define CONST_DELETE_URL "deleteURL"
#define CONST_DELETE_USER "deleteUser"
#define CONST_DO_ADD_URL "doAddURL"
#define CONST_DO_ADD_USER "doAddUser"
#define CONST_DO_CHANGE_FILTER "doChangeFilter"
#define CONST_DOMAIN_STATS_HTML "domainStats.html"
#define CONST_COMMUNITIES_STATS_HTML "hostCommunities.html"
#define CONST_DUMP_DATA_HTML "dumpData.html"
#define CONST_DUMP_HOSTS_INDEXES_HTML "dumpDataIndexes.html"
#define CONST_DUMP_NTOP_FLOWS_HTML "dumpFlows.html"
#define CONST_DUMP_TRAFFIC_DATA_HTML "dumpTrafficData.html"
#define CONST_DUMP_NTOP_XML "dump.xml"
#define CONST_EDIT_PREFS "editPrefs.html"
#define CONST_FAVICON_ICO "favicon.ico"
#define CONST_FILTER_INFO_HTML "filterInfo.html"
#define CONST_IF_STATS_HTML "ifStats.html"
#define CONST_NTOP_HELP_HTML "help.html"
#define CONST_HOME_HTML "home.html"
#define CONST_HOME_UNDERSCORE_HTML "home_.html"
#define CONST_HOST_HTML "host.html"
#define CONST_HOSTS_INFO_HTML "hostsInfo.html"
#define CONST_HOST_SORT_NOTE_HTML "hostSortNote.html"
#define CONST_INDEX_HTML "index.html"
#define CONST_INDEX_INNER_HTML "index_inner.html"
#define CONST_INFO_NTOP_HTML "info.html"
#define CONST_CONFIG_NTOP_HTML "configNtop.html"
#define CONST_PIE_INTERFACE_DIST "interfaceTrafficPie"
#define CONST_IP_L_2_L_HTML "ipL2L.html"
#define CONST_IP_L_2_R_HTML "ipL2R.html"
#define CONST_IP_PROTO_DISTRIB_HTML "ipProtoDistrib.html"
#define CONST_PIE_IPPROTO_RL_DIST "ipProtoDistribPie"
#define CONST_BAR_IPPROTO_DIST "ipProtoDistribution"
#define CONST_IP_PROTO_USAGE_HTML "ipProtoUsage.html"
#define CONST_IP_R_2_L_HTML "ipR2L.html"
#define CONST_IP_R_2_R_HTML "ipR2R.html"
#define CONST_PIE_IP_TRAFFIC "ipTrafficPie"
#define CONST_LEFTMENU_HTML "leftmenu.html"
#define CONST_LEFTMENU_NOJS_HTML "leftmenu-nojs.html"
#define CONST_HOSTS_LOCAL_FINGERPRINT_HTML "localHostsFingerprint.html"
#define CONST_HOSTS_LOCAL_CHARACT_HTML "localHostsCharacterization.html"
#define CONST_HOSTS_REMOTE_FINGERPRINT_HTML "remoteHostsFingerprint.html"
#define CONST_LOCAL_ROUTERS_LIST_HTML "localRoutersList.html"
#define CONST_MODIFY_URL "modifyURL"
#define CONST_MODIFY_USERS "modifyUsers"
#define CONST_MULTICAST_STATS_HTML "multicastStats.html"
#define CONST_LAST_HOUR_TOP_TALKERS_HTML "lastHourTopTalkers.html"
#define CONST_LAST_DAY_TOP_TALKERS_HTML "lastDayTopTalkers.html"
#define CONST_HISTORICAL_TALKERS_HTML "historicalTalkers.html"
#define CONST_NET_FLOWS_HTML "NetFlows.html"
#define CONST_ACTIVE_SESSIONS_HTML "activeSessions.html"
#define CONST_NETWORK_IMAGE_MAP "network_map.svg"
#define CONST_CGI_HEADER "ntop-bin/"
#define CONST_EMBEDDED_PYTHON_HEADER "python/"
#define CONST_MAN_NTOP_HTML "ntop.html"
#define CONST_NTOP_P3P "ntop.p3p"
#define CONST_PROBLEMRPT_HTML "ntopProblemReport.html"
#define CONST_EDIT_IMG "edit.gif"
#define CONST_NETWORK_MAP_HTML "networkMap.html"
#define CONST_PIE_PKT_CAST_DIST "pktCastDistribPie"
#define CONST_PIE_PKT_SIZE_DIST "pktSizeDistribPie"
#define CONST_PIE_TTL_DIST "pktTTLDistribPie"
#define CONST_PLUGINS_HEADER "plugins/"
#define CONST_PRIVACYCLEAR_HTML "privacyFlagClear.html"
#define CONST_PRIVACYFORCE_HTML "privacyFlagForce.html"
#define CONST_PRIVACYNOTICE_HTML "privacyNotice.html"
#define CONST_PURGE_HOST "purgeHost.html"
#define CONST_HOST_MAP "hostMap.html"
#define CONST_REGION_MAP "python/GeoPacketVisualizer.py"
#define CONST_RESET_STATS_HTML "resetStats.html"
#define CONST_SCSI_BYTES_HTML "ScsiBytes.html"
#define CONST_BAR_LUNSTATS_DIST "ScsiBytesLunDistribution"
#define CONST_SCSI_STATUS_HTML "ScsiStatus.html"
#define CONST_SCSI_TIMES_HTML "ScsiTimes.html"
#define CONST_SCSI_TM_HTML "ScsiTMInfo.html"
#define CONST_SHOW_MUTEX_HTML "showMutex.html"
#define CONST_SHOW_PLUGINS_HTML "showPlugins.html"
#define CONST_SHOW_PORT_TRAFFIC_HTML "showPortTraffic.html"
#define CONST_SHOW_URLS_HTML "showURLs.html"
#define CONST_SHOW_USERS_HTML "showUsers.html"
#define CONST_SHUTDOWN_NTOP_HTML "shutdown.html"
#define CONST_SHUTDOWNNOW_NTOP_IMG "shutdown.gif"
#define CONST_SORT_DATA_IP_HTML "sortDataIP.html"
#define CONST_SORT_DATA_PROTOS_HTML "sortDataProtos.html"
#define CONST_SORT_DATA_THPT_HTML "sortDataThpt.html"
#define CONST_SWITCH_NIC_HTML "switch.html"
#define CONST_TEXT_INFO_NTOP_HTML "textinfo.html"
#define CONST_SORT_DATA_THPT_STATS_HTML "thptStats.html"
#define CONST_THPT_STATS_MATRIX_HTML "thptStatsMatrix.html"
#define CONST_TRAFFIC_STATS_HTML "trafficStats.html"
#define CONST_TRAFFIC_SUMMARY_HTML "trafficSummary.html"
#define CONST_VIEW_LOG_HTML "viewLog.html"
#define CONST_VLAN_LIST_HTML "vlanList.html"
#define CONST_FIND_HOST_JSON "findHost.json"
#define CONST_W3C_P3P_XML "w3c/p3p.xml"
#define CONST_XMLDUMP_PLUGIN_NAME "xmldump"
#define CONST_HOST_SERVICE_DISTR_HTML "hostServiceDistrib"
#define CONST_HOST_IP_MAP_HTML "hostIPMap"
#define CONST_NTOP_LOGO "ntop_logo.png"
/*
* SSI names
*/
#define CONST_SSI_MENUHEAD_HTML "menuHead.html"
#define CONST_SSI_MENUBODY_HTML "menuBody.html"
/*
* Prevent harvesting...
*/
#define CONST_MAILTO_LIST "<a class=mailto href=\"mailto:ntop@ntop.org\" title=\"Send email to ntop mailing list\">mailing list</a>"
#define CONST_MAILTO_LUCA "<a class=mailto href=\"mailto:deri@ntop.org\" title=\"Send email to Luca Deri\">Luca Deri</a>"
#define CONST_MAILTO_STEFANO "<a class=mailto href=\"mailto:stefano@ntop.org\" title=\"Send email to Stefano Suin\">Stefano Suin</a>"
#define CONST_MAILTO_ABDELKADER "<a class=mailto href=\"mailto:abdelkader.lahmadi@loria.fr\" title=\"Send email to Abdelkader Lahmadi\">Abdelkader Lahmadi</a>"
#define CONST_MAILTO_OLIVIER "<a class=mailto href=\"mailto:olivier.festor@loria.fr\" title=\"Send email to Olivier Festor\">Olivier Festor</a>"
#define CONST_MAILTO_DINESH "<a class=mailto href=\"mailto:ddutt@cisco.com\" title=\"Send email to Dinesh G. Dutt\">Dinesh G. Dutt</a>"
#define CONST_MAILTO_BURTON "<a class=mailto href=\"mailto:burton@ntopsupport.com\" title=\"Send email to Burton Strauss\">Burton Strauss</a>"
#define CONST_MAILTO_MEDICI "<a class=mailto href=\"mailto:gianluca_medici@tin.it\" title=\"Send email to Gianluca Medici\">Gianluca Medici</a>"
#define CONST_NO_DATA_YET "<I>No Data To Display (yet)</I>"
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Static - don't change unless you REALLY, REALLY, know what you are doing.
*/
/*
* Lengths of various static sized buffers.
*/
#define LEN_TIMEFORMAT_BUFFER 48
#define LEN_CMDLINE_BUFFER 4096
#define LEN_FGETS_BUFFER 512
#define LEN_HUGE_WORK_BUFFER 4096
#define LEN_GENERAL_WORK_BUFFER 1024
#define LEN_MEDIUM_WORK_BUFFER 128
#define LEN_SMALL_WORK_BUFFER 24 /* nnn.nnn.nnn.nnn\n */
#define LEN_ADDRESS_BUFFER sizeof("FEDC:BA98:7654:3210:FEDC:BA98:7654:3210")+4
/*
* Static buffer used for pcap error messages in initialize.c and ntop_win32.c.
*/
#define CONST_SIZE_PCAP_ERR_BUF 512
/*
* Number of u_char in an ethernet (mac) address, ethAddress[], lastEthAddress[] and
* dummyEthAddress[].
*/
#define LEN_ETHERNET_ADDRESS 6
#define LEN_ETHERNET_ADDRESS_DISPLAY sizeof("00:00:00:00:00:00")
#define LEN_ETHERNET_VENDOR 3
#define LEN_ETHERNET_VENDOR_DISPLAY sizeof("00:00:00")
/*
* Maximum number of addresses in a dns packet - see handleDNSpacket()
*/
#define MAX_ADDRESSES 35
/*
* Maximum number of aliases in a dns packet - see handleDNSpacket()
*/
#define MAX_ALIASES 35
/*
* Maximum number of top talkers
*/
#define MAX_NUM_TOP_TALKERS 5
/*
* 9 messages in total -- see #define FLAG_DHCP_ _MSG below
*/
#define MAX_NUM_DHCP_MSG 8
/*
* Symbolic host buffer name length (hostResolvedName, symAddress, etc.)
* MAX_LEN_SYM_HOST_NAME_HTML is the fully tricked out html version (emitter.c and hash.c)
*/
#define MAX_LEN_SYM_HOST_NAME 128
#define MAX_LEN_SYM_HOST_NAME_HTML 256
/*
* Maximum length of a name in the IEEE OUI file.
*/
#define MAX_LEN_VENDOR_NAME 64
/*
* i18n - maximum number of languages we'll support... and permit per request...
*/
#define MAX_LANGUAGES_REQUESTED 4
#define MAX_LANGUAGES_SUPPORTED 8
/*
* Maximum number of node types (Appletalk, IPX) to record - see struct NonIPTraffic{}
*/
#define MAX_NODE_TYPES 8
/*
* This is basically an IPv4 limit - the number of ports is a 16 bit integer.
* Constant is used in NtopInterface to define the per-host ports structure, ipPorts[]
*/
#define MAX_IP_PORT 65534 /* IP ports range from 0 to 65535 */
/*
* This constant defines the size of the _mtuSize and _headerSize arrays (globals-core.c)
* It needs to be at least as large as the largest value defined in bpf.h. Remember, your
* version of bpf.h isn't always everyone else's version. For the latest & greatest (?)
* see: http://cvs.tcpdump.org/cgi-bin/cvsweb/libpcap/bpf/net/bpf.h
* Last sync: Sep2002, BStrauss
*/
#define MAX_DLT_ARRAY 123
/*
* handleAddressLists() constants
*/
#define CONST_HANDLEADDRESSLISTS_MAIN 0
#define CONST_HANDLEADDRESSLISTS_RRD 1
#define CONST_HANDLEADDRESSLISTS_NETFLOW 2
#define CONST_HANDLEADDRESSLISTS_COMMUNITIES 3
/*
* Protocol types
*/
#define CONST_GRE_PROTOCOL_TYPE 0x2F
#define CONST_PPP_PROTOCOL_TYPE 0x880b
/*
* Various extensions used by ntop
*/
#define CONST_RRD_EXTENSION ".rrd"
#define CONST_PLUGIN_EXTENSION ".so"
/*
* The (internal) name of the plugin function itself.
* courtesy of Tanner Lovelace <lovelace@opennms.org>
*/
#if (defined(DARWIN) && (!defined(TIGER))) || defined(OPENBSD)
#define CONST_PLUGIN_ENTRY_FCTN_NAME "_PluginEntryFctn"
#else
#define CONST_PLUGIN_ENTRY_FCTN_NAME "PluginEntryFctn"
#endif
/*
* This is the 2MSL timeout as defined in the TCP standard (RFC 761).
* Used in sessions.c and pbuf.c
*/
#define CONST_TWO_MSL_TIMEOUT 60 /* 1 minute */
#define CONST_DOUBLE_TWO_MSL_TIMEOUT (2*CONST_TWO_MSL_TIMEOUT)
/*
* File name used in setnetent()/getnetent() to retrieve the list of networks.
*/
#define CONST_WIN32_PATH_NETWORKS "networks"
/*
* Maximum number of aliases in a (win32) in a net_aliases packet - see getnetent()
*/
#define MAX_WIN32_NET_ALIASES 35
/*
* Used in crypt() for ntop's passwords.
* Must be a 2 char string
*/
#define CONST_CRYPT_SALT "99"
/*
* What's our 'name', for tcp wrappers (/etc/hosts.allow, /etc/hosts.deny)
*/
#define CONST_DAEMONNAME "ntop"
#define CONST_FACEBOOK_ICON "<IMG SRC=facebook.gif ALT=\"FaceBook\">"
#define CONST_TWITTER_ICON "<IMG SRC=twitter.png ALT=\"Twitter\">"
#define CONST_LINKEDIN_ICON "<IMG SRC=linkedin.gif ALT=\"LinkedIn\">"
#define CONST_YOUTUBE_ICON "<IMG SRC=youtube.gif ALT=\"YouTube\">"
#define CONST_SKYPE_ICON "<IMG SRC=skype.png ALT=\"Skype\">"
/*
* This list is derived from RFC1945 in sec 3.2 Uniform Resource Identifiers
* which defines the permitted characters in a URI/URL. Specifically, the
* definitions of
*
* reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+"
* unsafe = CTL | SP | <"> | "#" | "%" | "<" | ">"
*
* DO NOT put % here - it's special cased - it's too dangerous to handle the same...
* We allow "/" - most browsers do
*
* Courtesy of "Burton M. Strauss III" <bstrauss@acm.org>
*/
#define CONST_URL_PROHIBITED_CHARACTERS "\001\002\003\004\005\006" \
"\010\011\012\013\014\015\016" \
"\020\021\022\023\024\025\026" \
"\030\031\032\033\034\035\036" \
" \"#&+:;<=>?@\177"
/*
* Used in deviceSanityCheck() in util.c to set an upper limit on the length
* of a device name. Remember, WIN32 names are long, but not that long!
*/
#define MAX_DEVICE_NAME_LEN 64
/*
* w3c conformance stuff
* If the --w3c flag is given, we use these constants to
* make the generated html more compliant. This is NOT the
* default as some older browsers have problems with stuff
* like the UTF-8 and meta tags...
*/
#define CONST_W3C_DOCTYPE_LINE "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">"
#define CONST_W3C_DOCTYPE_LINE_32 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2//EN\">"
#define CONST_W3C_CHARTYPE_LINE "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">"
// Alternate version:
//#define CONST_W3C_CHARTYPE_LINE "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">"
/*
* dumpXML.c constants...
* <!DOCTYPE -name- SYSTEM \"-dtd-uri-\">
*
* CONST_XML_DOCTYPE_NAME
* Is the name used in the <!DOCTYPE> line.
*
* CONST_XML_DTD_NAME
* Is the name of the dtd in the <!DOCTYPE> line.
*
* CONST_XML_TMP_NAME
* Is the prefix for a unique temp name used to dump the generated xml
*
*/
#define CONST_XML_DOCTYPE_NAME "ntop_dump"
#define CONST_XML_DTD_NAME "ntopdump.dtd"
#define CONST_XML_TMP_NAME "/tmp/ntop-xml"
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* These are just useful things, shorthand, etc. Don't change 'em
*/
/*
* Unix vs. Windows path separator character.
*/
#if !defined(CONST_PATH_SEP)
#if !defined(WIN32)
#define CONST_PATH_SEP '/'
#else
#define CONST_PATH_SEP '\\'
#endif
#endif
/*
* These are the values for networks[] in util.c. See MAX_NUM_NETWORKS, above...
*/
#define CONST_NETWORK_ENTRY 0
#define CONST_NETMASK_ENTRY 1
#define CONST_BROADCAST_ENTRY 2
#define CONST_NETMASK_V6_ENTRY 3
#define CONST_INVALIDNETMASK -1
/*
* Used in traceEvent()
*/
#define CONST_ALWAYSDISPLAY_TRACE_LEVEL -1
#define CONST_FATALERROR_TRACE_LEVEL 0
#define CONST_ERROR_TRACE_LEVEL 1
#define CONST_WARNING_TRACE_LEVEL 2
#define CONST_INFO_TRACE_LEVEL 3
#define CONST_NOISY_TRACE_LEVEL 4
/* DETAILED is NOISY + EXTRA FILELINE */
#define CONST_DETAIL_TRACE_LEVEL 5
#define CONST_VERYNOISY_TRACE_LEVEL 6
#define CONST_BEYONDNOISY_TRACE_LEVEL 7
/* CONST_BEYONDNOISY_TRACE_LEVEL is used as the limiting value in prefs.c */
#define CONST_TRACE_ALWAYSDISPLAY CONST_ALWAYSDISPLAY_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_FATALERROR CONST_FATALERROR_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_ERROR CONST_ERROR_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_WARNING CONST_WARNING_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_INFO CONST_INFO_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_NOISY CONST_NOISY_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_VERYNOISY CONST_VERYNOISY_TRACE_LEVEL, __FILE__, __LINE__
#define CONST_TRACE_BEYONDNOISY CONST_BEYONDNOISY_TRACE_LEVEL, __FILE__, __LINE__
/*
* Used in sessions to make sure we don't step on the data area. It doesn't mean
* anything - just has to be consistent.
* We use 'unmagic' to indicate that it's in the process of being deleted
*/
#define CONST_MAGIC_NUMBER 1968 /* Magic year actually */
#define CONST_UNMAGIC_NUMBER 1290
/*
* Define the output flag values
*/
#define CONST_REPORT_ITS_DEFAULT "(default) "
#define CONST_REPORT_ITS_EFFECTIVE " (effective)"
/*
* Text used for the "Listening on [...]" message. Either this value or
* the name of the file being read is displayed.
*/
#define CONST_PCAP_NW_INTERFACE_FILE "pcap file"
/*
* 224.x.y.z
*/
#define CONST_MULTICAST_MASK 0xE0000000
/*
* Header lengths were we can't pull it from the packet. Look in processPacket()
* for the case DLT_XXXX: lines.
*/
#define CONST_NULL_HDRLEN 4
#define CONST_PPP_HDRLEN 4
/*
* Token Ring control values
*/
#define CONST_TRMTU 2000 /* 2000 bytes */
#define CONST_TR_RII 0x80
#define CONST_TR_RCF_DIR_BIT 0x80
#define CONST_TR_RCF_LEN_MASK 0x1f00
#define CONST_TR_RCF_BROADCAST 0x8000 /* all-routes broadcast */
#define CONST_TR_RCF_LIMITED_BROADCAST 0xC000 /* single-route broadcast */
#define CONST_TR_RCF_FRAME2K 0x20
#define CONST_TR_RCF_BROADCAST_MASK 0xC000
/*
* FDDI Frame Control bits
*/
#define CONST_FDDIFC_C 0x80 /* Class bit */
#define CONST_FDDIFC_L 0x40 /* Address length bit */
#define CONST_FDDIFC_F 0x30 /* Frame format bits */
#define CONST_FDDIFC_Z 0x0f /* Control bits */
/*
* FDDI Frame Control values. (48-bit addressing only).
*/
#define CONST_FDDIFC_VOID 0x40 /* Void frame */
#define CONST_FDDIFC_NRT 0x80 /* Nonrestricted token */
#define CONST_FDDIFC_RT 0xc0 /* Restricted token */
#define CONST_FDDIFC_SMT_INFO 0x41 /* SMT Info */
#define CONST_FDDIFC_SMT_NSA 0x4F /* SMT Next station adrs */
#define CONST_FDDIFC_MAC_BEACON 0xc2 /* MAC Beacon frame */
#define CONST_FDDIFC_MAC_CLAIM 0xc3 /* MAC Claim frame */
#define CONST_FDDIFC_CONST_LLC_ASYNC 0x50 /* Async. LLC frame */
#define CONST_FDDIFC_CONST_LLC_SYNC 0xd0 /* Sync. LLC frame */
#define CONST_FDDIFC_IMP_ASYNC 0x60 /* Implementor Async. */
#define CONST_FDDIFC_IMP_SYNC 0xe0 /* Implementor Synch. */
#define CONST_FDDIFC_SMT 0x40 /* SMT frame */
#define CONST_FDDIFC_MAC 0xc0 /* MAC frame */
#define CONST_FDDIFC_CLFF 0xF0 /* Class/Length/Format bits */
#define CONST_FDDIFC_ZZZZ 0x0F /* Control bits */
/*
* SNAP/LLC
*/
#define CONST_LLC_GSAP 1
#define CONST_LLC_S_FMT 1
#define CONST_LLC_U_POLL 0x10
#define CONST_LLC_IS_POLL 0x0001
#define CONST_LLC_XID_FI 0x81
#define CONST_LLC_UI 0x03
#define CONST_LLC_UA 0x63
#define CONST_LLC_DISC 0x43
#define CONST_LLC_DM 0x0f
#define CONST_LLC_SABME 0x6f
#define CONST_LLC_TEST 0xe3
#define CONST_LLC_XID 0xaf
#define CONST_LLC_FRMR 0x87
#define CONST_LLC_RR 0x0100
#define CONST_LLC_RNR 0x0500
#define CONST_LLC_REJ 0x0900
/* This is 'ftp-data' from /etc/services */
#define CONST_FTPDATA 20
/*
* sFlow header constants (what version of pcap are we claiming to be)...
* from libpcap-0.5: pcap.h
*/
#define CONST_SFLOW_TCPDUMP_MAGIC 0xa1b2c3d4
#define CONST_SFLOW_PCAP_VERSION_MAJOR 2
#define CONST_SFLOW_PCAP_VERSION_MINOR 4
/*
* This is the strftime() specifications to match various 'standardized' times
*/
#define CONST_LOCALE_TIMESPEC "%c"
#define CONST_ISO8601_TIMESPEC "%Y-%m-%dT%H:%M:%S"
#define CONST_TOD_NOSEC_TIMESPEC "%H:%M"
#define CONST_TOD_WSEC_TIMESPEC "%H:%M:%S"
#define CONST_TOD_HOUR_TIMESPEC "%H"
#define CONST_RFC1945_TIMESPEC "%a, %d %b %Y %H:%M:%S GMT"
#define CONST_APACHELOG_TIMESPEC "%d/%b/%Y:%H:%M:%S"
#define CONST_THPTLABEL_TIMESPEC "%d/%m"
/*
* html img tags for various devices
*/
#define CONST_IMG_DHCP_CLIENT "<img class=tooltip src=\"/bulb.gif\" border=\"0\" alt=\"DHCP Client\" title=\"DHCP Client\">"
#define CONST_IMG_DHCP_SERVER "<img class=tooltip src=\"/antenna.gif\" border=\"0\" alt=\"DHCP Server\" title=\"DHCP Server\">"
#define CONST_IMG_MULTIHOMED "<img class=tooltip src=\"/multihomed.png\" border=\"0\" alt=\"Multihomed\" title=\"Multihomed\">"
#define CONST_IMG_MULTIVLANED "<img class=tooltip src=\"/multivlaned.gif\"\" border=\"0\" alt=\"Multivlaned\" title=\"Multivlaned\">"
#define CONST_IMG_BRIDGE "<img class=tooltip src=\"/bridge.gif\" border=\"0\" alt=\"Bridge\" title=\"Bridge\">"
#define CONST_IMG_ROUTER "<img class=tooltip src=\"/router.gif\" border=\"0\" alt=\"Router\" title=\"Router\">"
#define CONST_IMG_DNS_SERVER "<img class=tooltip src=\"/dns.gif\" border=\"0\" alt=\"DNS\" title=\"DNS\">"
#define CONST_IMG_PRINTER "<img class=tooltip src=\"/printer.gif\" border=\"0\" alt=\"Printer\" title=\"Printer\">"
#define CONST_IMG_SMTP_SERVER "<img class=tooltip src=\"/mail.gif\" border=\"0\" alt=\"Mail (SMTP)\" title=\"Mail (SMTP)\">"
#define CONST_IMG_POP_SERVER "" /* No icon, yet */
#define CONST_IMG_IMAP_SERVER "" /* No icon, yet */
#define CONST_IMG_DIRECTORY_SERVER "" /* No icon, yet */
#define CONST_IMG_FTP_SERVER "" /* No icon, yet */
#define CONST_IMG_VOIP_HOST "<img class=tooltip src=\"/phone.gif\" border=\"0\" alt=\"VoIP\" title=\"VoIP\">"
#define CONST_IMG_HTTP_SERVER "<img class=tooltip src=\"/web.gif\" border=\"0\" alt=\"HTTP Server\" title=\"HTTP Server\">"
#define CONST_IMG_NTP_SERVER "<img class=tooltip src=\"/clock.gif\" border=\"0\" alt=\"NTP Server\" title=\"NTP Server\">"
#define CONST_IMG_HAS_P2P "<img class=tooltip src=\"/p2p.gif\" border=\"0\" alt=\"P2P Server\" title=\"P2P Server\">"
#define CONST_IMG_HAS_USERS "<img class=tooltip src=\"/users.gif\" border=\"0\" alt=\"Users\" title=\"Users\">"
#define CONST_IMG_HIGH_RISK " <img class=tooltip src=\"/Risk_high.gif\" border=\"0\" alt=\"High Risk\" title=\"High Risk\">"
#define CONST_IMG_MEDIUM_RISK " <img class=tooltip src=\"/Risk_medium.gif\" border=\"0\" alt=\"Medium Risk\" title=\"Medium Risk\">"
#define CONST_IMG_LOW_RISK " <img class=tooltip src=\"/Risk_low.gif\" border=\"0\" alt=\"Low Risk\" title=\"Low Risk\">"
#define CONST_IMG_NIC_CARD "<img class=tooltip src=\"/card.gif\" border=\"0\" alt=\"Network Card\" title=\"Network Card\">"
#define CONST_IMG_ARROW_UP "<img class=tooltip src=\"/arrow_up.png\" border=\"0\" alt=\"Ascending order, click to reverse\" title=\"Ascending order, click to reverse\">"
#define CONST_IMG_ARROW_DOWN "<img class=tooltip src=\"/arrow_down.png\" border=\"0\" alt=\"Descending order, click to reverse\" title=\"Descending order, click to reverse\">"
#define CONST_IMG_OS_WINDOWS "<img class=tooltip alt=\"OS: Windows\" title=\"OS: Windows\" align=\"middle\" src=\"/statsicons/os/windows.gif\">"
#define CONST_IMG_OS_IRIX "<img class=tooltip alt=\"OS: Irix\" title=\"OS: Irix\" align=\"middle\" src=\"/statsicons/os/irix.gif\">"
#define CONST_IMG_OS_LINUX "<img class=tooltip alt=\"OS: Linux\" title=\"OS: Linux\" align=\"middle\" src=\"/statsicons/os/linux.gif\">"
#define CONST_IMG_OS_SUNOS "<img class=tooltip alt=\"OS: SunOS\" title=\"OS: SunOS\" align=\"middle\" src=\"/statsicons/os/sun.gif\">"
#define CONST_IMG_OS_SOLARIS "<img class=tooltip alt=\"OS: Solaris\" title=\"OS: Solaris\" align=\"middle\" src=\"/statsicons/os/sun.gif\">"
#define CONST_IMG_OS_HP_JETDIRET "<img class=tooltip alt=\"OS: HP/JetDirect\" title=\"OS: HP/JetDirect\" align=\"middle\" src=\"/statsicons/os/hp.gif\">"
#define CONST_IMG_OS_MAC "<img class=tooltip alt=\"OS: Apple Mac\" title=\"OS: Apple Mac\" align=\"middle\" src=\"/statsicons/os/mac.jpg\">"
#define CONST_IMG_OS_NOVELL "<img class=tooltip alt=\"OS: Novell\" title=\"OS: Novell\" align=\"middle\" src=\"/statsicons/os/novell.gif\">"
#define CONST_IMG_OS_BSD "<img class=tooltip alt=\"OS: BSD Unix\" title=\"OS: BSD Unix\" align=\"middle\" src=\"/statsicons/os/bsd.gif\">"
#define CONST_IMG_OS_UNIX "<img class=tooltip alt=\"OS: BSD Unix\" title=\"OS: BSD Unix\" align=\"middle\" src=\"/statsicons/os/bsd.gif\">"
#define CONST_IMG_OS_BERKELEY "<img class=tooltip alt=\"OS: BSD Unix\" title=\"OS: BSD Unix\" align=\"middle\" src=\"/statsicons/os/bsd.gif\">"
#define CONST_IMG_OS_HP_UX "<img class=tooltip alt=\"OS: HP-UX\" title=\"OS: HP-UX\" align=\"middle\" src=\"/statsicons/os/hp.gif\">"
#define CONST_IMG_OS_AIX "<img class=tooltip alt=\"OS: AIX\" title=\"OS: AIX\" align=\"middle\" src=\"/statsicons/os/aix.gif\">"
#define CONST_IMG_OS_CISCO "<img class=tooltip alt=\"OS: Cisco\" title=\"OS: Cisco\" align=\"middle\" src=\"/statsicons/os/cisco.gif\">"
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* F L A G and B I T F L A G items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* Flags for myGlobals.ntopRunState
*
* State transitions:
* 0->1 When ntop first starts up, after memset(myGlobals)
* 1->2 After the basic system protective environment is up...
* 2->3 When ntop gives up root
* 3->4 When ntop finishes initialization
*Or 2->4 When ntop finishes initialization on systems w/o root, e.g. Win32
* 4->5, 6, 7 Stopcap to keep webserver up after a problem or Shutdown on user request
* 5->6, 7 Shutdown requested
* 6->7 Shutdown running
* 7->8 Shutdown complete
* 8->1 (restart) FUTURE...
*
* *** *** *** Make sure you keep _setRunState() in globals-core.c up to date with this! *** *** ***
*
*/
#define FLAG_NTOPSTATE_NOTINIT 0
#define FLAG_NTOPSTATE_PREINIT 1
#define FLAG_NTOPSTATE_INIT 2
#define FLAG_NTOPSTATE_INITNONROOT 3
#define FLAG_NTOPSTATE_RUN 4
#define FLAG_NTOPSTATE_STOPCAP 5
#define FLAG_NTOPSTATE_SHUTDOWNREQ 6
#define FLAG_NTOPSTATE_SHUTDOWN 7
#define FLAG_NTOPSTATE_TERM 8
#define ntopstate_text(a) ( \
a==FLAG_NTOPSTATE_NOTINIT ? "NotInit" : \
a==FLAG_NTOPSTATE_PREINIT ? "PreInit" : \
a==FLAG_NTOPSTATE_INIT ? "Init" : \
a==FLAG_NTOPSTATE_INITNONROOT ? "InitNonRoot" : \
a==FLAG_NTOPSTATE_RUN ? "Run" : \
a==FLAG_NTOPSTATE_STOPCAP ? "StopCap" : \
a==FLAG_NTOPSTATE_SHUTDOWNREQ ? "ShutDownReq" : \
a==FLAG_NTOPSTATE_SHUTDOWN ? "ShutDown" : \
a==FLAG_NTOPSTATE_TERM ? "Term" : "UNKNOWN" \
)
/*
* When myGlobals.useSyslog is set to this, turns off the logging
*/
#define FLAG_SYSLOG_NONE -1
/*
* Flags related to html and http types
*/
#define CONST_HTTP_ACCEPT_ALL "*/*"
/*
* Code below courtesy of Roberto F. De Luca <deluca@tandar.cnea.gov.ar>
*/
#define FLAG_HTTP_TYPE_NONE 0
#define FLAG_HTTP_TYPE_HTML 1
#define FLAG_HTTP_TYPE_GIF 2
#define FLAG_HTTP_TYPE_JPEG 3
#define FLAG_HTTP_TYPE_PNG 4
#define FLAG_HTTP_TYPE_CSS 5
#define FLAG_HTTP_TYPE_TEXT 6
#define FLAG_HTTP_TYPE_ICO 7
#define FLAG_HTTP_TYPE_JS 8
#define FLAG_HTTP_TYPE_XML 9
#define FLAG_HTTP_TYPE_P3P 10
#define FLAG_HTTP_TYPE_SVG 11
#define FLAG_HTTP_TYPE_JSON 12
#define FLAG_HTTP_TYPE_PDF 13
#define BITFLAG_HTTP_IS_CACHEABLE (1<<0)
#define BITFLAG_HTTP_NO_CACHE_CONTROL (1<<1)
#define BITFLAG_HTTP_KEEP_OPEN (1<<2)
#define BITFLAG_HTTP_NEED_AUTHENTICATION (1<<3)
#define BITFLAG_HTTP_MORE_FIELDS (1<<4)
#define BITFLAG_HTML_NO_REFRESH (1<<5)
#define BITFLAG_HTML_NO_STYLESHEET (1<<6)
#define BITFLAG_HTML_NO_BODY (1<<7)
#define BITFLAG_HTML_NO_HEADING (1<<8)
#define FLAG_HTTP_INVALID_REQUEST -2
#define FLAG_HTTP_INVALID_METHOD -3
#define FLAG_HTTP_INVALID_VERSION -4
#define FLAG_HTTP_REQUEST_TIMEOUT -5
#define FLAG_HTTP_INVALID_PAGE -6
/*
* Flags for fileFlags in typedef struct fileList {}
*
* If you change them please update event.c
*/
#define FLAG_THE_DOMAIN_HAS_BEEN_COMPUTED 1
#define FLAG_PRIVATE_IP_ADDRESS 2 /* the IP address is private (192.168..) */
#define FLAG_SUBNET_LOCALHOST 3 /* the host is either local or remote */
#define FLAG_BROADCAST_HOST 4 /* a broadcast address */
#define FLAG_MULTICAST_HOST 5 /* a multicast address */
#define FLAG_GATEWAY_HOST 6 /* used as a gateway */
#define FLAG_NAME_SERVER_HOST 7 /* used as a name server (e.g. DNS) */
#define FLAG_SUBNET_PSEUDO_LOCALHOST 8 /* local (with respect to the specified subnets) */
/* Host Type */
#define FLAG_HOST_TYPE_SERVER 9
#define FLAG_HOST_TYPE_WORKSTATION 10
#define FLAG_HOST_TYPE_PRINTER 11
/* Host provided services */
#define FLAG_HOST_TYPE_SVC_SMTP 12
#define FLAG_HOST_TYPE_SVC_POP 13
#define FLAG_HOST_TYPE_SVC_IMAP 14
#define FLAG_HOST_TYPE_SVC_DIRECTORY 15 /* e.g.IMAP, Novell Directory server */
#define FLAG_HOST_TYPE_SVC_FTP 16
#define FLAG_HOST_TYPE_SVC_HTTP 17
#define FLAG_HOST_TYPE_SVC_WINS 18
#define FLAG_HOST_TYPE_SVC_BRIDGE 19
#define FLAG_HOST_TYPE_SVC_DHCP_CLIENT 23
#define FLAG_HOST_TYPE_SVC_DHCP_SERVER 24
#define FLAG_HOST_TYPE_MASTER_BROWSER 25
#define FLAG_HOST_TYPE_MULTIHOMED 26
#define FLAG_HOST_TYPE_SVC_NTP_SERVER 27
#define FLAG_HOST_TYPE_MULTIVLANED 28
#define FLAG_HOST_TYPE_SVC_VOIP_CLIENT 29
#define FLAG_HOST_TYPE_SVC_VOIP_GATEWAY 30
#define FLAG_HOST_TYPE_SVC_FACEBOOK_CLIENT 31
#define FLAG_HOST_TYPE_SVC_TWITTER_CLIENT 32
#define MAX_FLAG_HOST_TYPE FLAG_HOST_TYPE_SVC_VOIP_GATEWAY
/* Flags for possible error codes */
#define FLAG_HOST_WRONG_NETMASK 65
#define FLAG_HOST_DUPLICATED_MAC 66
#define FLAG_HOST_IP_ZERO_PORT_TRAFFIC 67
/*
* ->userFlags settings
* Flags for userFlags in typedef struct userList {}
*/
#define BITFLAG_POP_USER 1
#define BITFLAG_IMAP_USER 2
#define BITFLAG_SMTP_USER 3
#define BITFLAG_P2P_USER 4
#define BITFLAG_FTP_USER 5
#define BITFLAG_MESSENGER_USER 6
#define BITFLAG_VOIP_USER 7
#define BITFLAG_DAAP_USER 8
#define UNKNOWN_P2P_FILE "<unknown file>"
#define FLAG_DHCP_UNKNOWN_MSG 0
#define FLAG_DHCP_DISCOVER_MSG 1
#define FLAG_DHCP_OFFER_MSG 2
#define FLAG_DHCP_REQUEST_MSG 3
#define FLAG_DHCP_DECLINE_MSG 4
#define FLAG_DHCP_ACK_MSG 5
#define FLAG_DHCP_NACK_MSG 6
#define FLAG_DHCP_RELEASE_MSG 7
#define FLAG_DHCP_INFORM_MSG 8
/*
* These are flags used to indicate that the sort for various reports should
* be of the pseudo-column HOST or DOMAIN.
*/
#define FLAG_HOST_DUMMY_IDX 99
#define FLAG_HOST_DUMMY_IDX_STR "99"
#define FLAG_DOMAIN_DUMMY_IDX 98
#define FLAG_DOMAIN_DUMMY_IDX_STR "98"
/*
* Flag to makeHostLink() as to which type of link to create
*/
#define FLAG_HOSTLINK_HTML_FORMAT 1
#define FLAG_HOSTLINK_TEXT_FORMAT 2
#define FLAG_HOSTLINK_TEXT_NO_LINK_FORMAT 3
#define FLAG_HOSTLINK_TEXT_LITE_FORMAT 4
/*
* Used in http.c and util.c to flag that a socket is closed and should not be
* reclosed - term_ssl_connection() nor closesocket().
*/
#define FLAG_DUMMY_SOCKET -999
/*
* settings for myGlobals.device[].exportNetFlow
*/
#define FLAG_NETFLOW_EXPORT_UNKNOWN 0
#define FLAG_NETFLOW_EXPORT_DISABLED 1
#define FLAG_NETFLOW_EXPORT_ENABLED 2
/*
* Settings for hostResolvedNameType
*
* The relative order is important for makeHostLink()
* Items we know definitively should be positive
* NONE should be zero
* 'fake' entries < zero
*
* So the Type starts as NONE, and if it's still that, makeHostLink()
* can try other sources in the tables to find the 'name'.
*
* If we know, explicitly, the type of an item then hostResolvedNameType
* becomes >0 and makeHostLink() must respect it.
*
* Items for which we shouldn't create a host entry are <NONE, i.e. FAKE.
*
* Use broad ranges for this ... the actual #s don't matter, only the
* relative values.
*
* So... 1.. 9 are low level (frame, transport) addresses such as the
* Ethernet MAC address.
*
* 11..19 are basic protocol addresses, such as IPX or IP
*
* 21..29 are high level names, such as DNS name or NetBIOS name
*
* Use the last digit for 'family' so tcp/ip over ethernet would normally
* flow MAC (9) to IP (19) to (DNS) NAME (29)
*/
#define FLAG_HOST_SYM_ADDR_TYPE_FAKE -9
#define FLAG_HOST_SYM_ADDR_TYPE_NONE 0
#define FLAG_HOST_SYM_ADDR_TYPE_FCID 5
#define FLAG_HOST_SYM_ADDR_TYPE_MAC 9
#define FLAG_HOST_SYM_ADDR_TYPE_IP 19
#define FLAG_HOST_SYM_ADDR_TYPE_NETBIOS 27
#define FLAG_HOST_SYM_ADDR_TYPE_NAME 29
#define FLAG_HOST_SYM_ADDR_TYPE_MDNS 30 /* Multicast DNS */
/*
* emitter.c language flags
*/
#define FLAG_PERL_LANGUAGE 1
#define FLAG_PHP_LANGUAGE 2
#define FLAG_XML_LANGUAGE 3
#define FLAG_PYTHON_LANGUAGE 4
#define FLAG_JSON_LANGUAGE 5
#define FLAG_GOOGLE_LANGUAGE 6
#define FLAG_NO_LANGUAGE 7
#define MAX_FLAG_LANGUGE FLAG_NO_LANGUAGE
#define FLAG_NO_PEER UINT_MAX
/*
* Flags for flowDirection in handleSession()
*/
#define FLAG_CLIENT_TO_SERVER 1
#define FLAG_CLIENT_FROM_SERVER 2
#define FLAG_SERVER_TO_CLIENT 3
#define FLAG_SERVER_FROM_CLIENT 4
/*
* Flags for initiator in typedef struct ipGlobalSession {}
*/
#define FLAG_CLIENT_ROLE 1
#define FLAG_SERVER_ROLE 2
/*
* Flags for printIpAccounting()
*/
#define FLAG_REMOTE_TO_LOCAL_ACCOUNTING 1
#define FLAG_LOCAL_TO_REMOTE_ACCOUNTING 2
#define FLAG_LOCAL_TO_LOCAL_ACCOUNTING 3
#define FLAG_REMOTE_TO_REMOTE_ACCOUNTING 4
/* **************************** */
/*
* TCP Session State Transition
*
* Flags for sessionState in typedef struct ipSession {}
*/
#define FLAG_STATE_SYN 0
#define FLAG_STATE_SYN_ACK 1
#define FLAG_STATE_ACK 2
#define FLAG_STATE_ACTIVE FLAG_STATE_ACK
#define FLAG_STATE_BEGIN FLAG_STATE_ACTIVE
#define FLAG_STATE_FIN1_ACK0 3
#define FLAG_STATE_FIN1_ACK1 4
#define FLAG_STATE_FIN2_ACK0 5
#define FLAG_STATE_FIN2_ACK1 6
#define FLAG_STATE_FIN2_ACK2 7
#define FLAG_STATE_TIMEOUT 8
#define FLAG_STATE_END 9
/*
* Flags for fragmentOrder typedef struct ipFragment {}
*/
#define FLAG_UNKNOWN_FRAGMENT_ORDER 0
#define FLAG_INCREASING_FRAGMENT_ORDER 1
#define FLAG_DECREASING_FRAGMENT_ORDER 2
/*
* PACKET_DEBUG timestamp() presentation formats
*/
#define FLAG_TIMESTAMP_FMT_DELTA 1 /* the time since receiving the previous packet */
#define FLAG_TIMESTAMP_FMT_ABS 2 /* the current time */
#define FLAG_TIMESTAMP_FMT_RELATIVE 3 /* the time relative to the first packet rcvd */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* H T M L items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* External URLs...
*/
#define HTML_OPENSSL_URL "http://www.openssl.org/"
#define CONST_HTML_OPENSSL_URL_ALT "OpenSSL home page"
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* H A V E (derived) items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* D E F A U L T items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* default file and directories
*/
#define DEFAULT_NTOP_PIDFILE "ntop.pid"
#define DEFAULT_NTOP_PID_DIRECTORY "/var/run"
/*
* default configuration parameters -- the comment gives the (short getopt) name
* which overrides this value.
*/
#define DEFAULT_NTOP_ACCESS_LOG_FILE NULL /* -a */
#define DEFAULT_NTOP_PACKET_DECODING 1 /* -b */
/* access log disabled by default */
#define DEFAULT_NTOP_STICKY_HOSTS 0 /* -c */
#define DEFAULT_NTOP_DAEMON_MODE 0 /* -d */
#define DEFAULT_NTOP_TRAFFICDUMP_FILENAME NULL /* -f */
#define DEFAULT_NTOP_TRACK_ONLY_LOCAL 0 /* -g */
#define DEFAULT_NTOP_DEVICES NULL /* -i */
#define DEFAULT_NTOP_OTHER_PKT_DUMP 0 /* -j */
#define DEFAULT_NTOP_PCAP_LOG_FILENAME NULL /* -l */
#define DEFAULT_NTOP_LOCAL_SUBNETS NULL /* -m */
#define DEFAULT_NTOP_NUMERIC_IP_ADDRESSES dnsResolutionForAll /* -n */
#define DEFAULT_NTOP_DONT_TRUST_MAC_ADDR 0 /* -o */
#define DEFAULT_NTOP_PROTO_SPECS NULL /* -p */
#define DEFAULT_NTOP_SUSPICIOUS_PKT_DUMP 0 /* -q */
#define DEFAULT_NTOP_AUTOREFRESH_INTERVAL 120 /* -r */
#define DEFAULT_NTOP_DISABLE_PROMISCUOUS 0 /* -s */
#define DEFAULT_NTOP_WEB_ADDR NULL /* -w */ /* e.g. all interfaces & addresses */
#define DEFAULT_NTOP_WEB_PORT 3000
#define DEFAULT_NTOP_FAMILY AF_UNSPEC /* -6/4 */
#define DEFAULT_NTOP_ENABLE_SESSIONHANDLE 1 /* -z */
#define DEFAULT_NTOP_FILTER_EXPRESSION NULL /* -B */
#define DEFAULT_NTOP_SAMPLING 1 /* -C (1 = no sampling) */
#define DEFAULT_NTOP_DOMAIN_NAME "" /* -D */
/* Note: don't use null, as this isn't a char*, its a char[] */
#define DEFAULT_NTOP_FLOW_SPECS NULL /* -F */
#define DEFAULT_NTOP_DEBUG_MODE 0 /* -K */
#define DEFAULT_NTOP_DEBUG 0 /* that means debug disabled */
#define DEFAULT_NTOP_SYSLOG FLAG_SYSLOG_NONE /* -L */
#define DEFAULT_NTOP_MERGE_INTERFACES 1 /* -M */
/* -O and -P are special, see globals-core.h */
#define DEFAULT_NTOP_MAX_HASH_ENTRIES (u_int)8192 /* -x */
#define DEFAULT_NTOP_MAX_NUM_SESSIONS (u_int)32768 /* -X */
#define DEFAULT_NTOP_SQL_DB_CONFIG "localhost:root:" /* MySQL */
#define DEFAULT_NTOP_SQL_REC_DAYS_LIFETIME 7 /* days */
#define DEFAULT_NTOP_SAVE_REC_INTO_DB 0 /* don't save data */
#define DEFAULT_NTOP_SAVE_SESSIONS_INTO_DB 0 /* don't save data */
/*
* What should we set tracing to unless we have a parameter?
*/
#define DEFAULT_TRACE_LEVEL 3
#if 0
#define DEFAULT_NTOP_MAPPER_URL "http://www.ntop.org/cgi-bin/mapper.pl" /* -U -*/
#else
#define DEFAULT_NTOP_MAPPER_URL "http://www.geoiptool.com/en/" /* -U -*/
#endif
#define DEFAULT_NTOP_FCNS_FILE NULL
#define DEFAULT_NTOP_W3C TRUE
#define DEFAULT_NTOP_P3PCP NULL
#define DEFAULT_NTOP_P3PURI NULL
#define DEFAULT_NTOP_DISABLE_STOPCAP TRUE
#define DEFAULT_NTOP_DISABLE_IS_PURGE FALSE
#define DEFAULT_NTOP_PRINTIPONLY FALSE
#define DEFAULT_NTOP_PRINTFCONLY FALSE
#define DEFAULT_NTOP_NO_INVLUN_DISPLAY FALSE
#define DEFAULT_NTOP_DISABLE_MUTEXINFO TRUE
#define DEFAULT_NTOP_SKIP_VERSION_CHECK FALSE
/*
* --set-pcap-nonblocking option init
*/
#define DEFAULT_NTOP_SETNONBLOCK FALSE
/*
* Bytes to save out of each packet -
* remember, if we're decoding packets, 68 (the default) is not enough
* for DNS packets.
*/
#define DEFAULT_SNAPLEN 384
/*
* emitter.c default language is
*/
#define DEFAULT_FLAG_LANGUAGE FLAG_NO_LANGUAGE
/*
* Default log facility value, if not specified otherwise
*/
#if defined(MAKE_WITH_SYSLOG) && !defined(DEFAULT_SYSLOG_FACILITY)
#define DEFAULT_SYSLOG_FACILITY LOG_DAEMON
#endif
/*
* Define this constant if - for performance reasons - you need to limit the number of
* hosts purged per cycle (per device).
*/
/* #define MAX_HOSTS_PURGE_PER_CYCLE 512 */
/*
* Default port to use for netflow.
*/
#define DEFAULT_NETFLOW_PORT_STR "2055"
/*
* Default port to use for sFlow.
*/
#define DEFAULT_SFLOW_PORT_STR "6343"
#define DEFAULT_SFLOW_PORT atoi(DEFAULT_SFLOW_COLLECTOR_PORT_STR)
/*
* Sampling rate - sflow samples every n-th packet
*/
#define DEFAULT_SFLOW_SAMPLING_RATE "400"
/*
* Text string to lookup an ASN
*/
#define DEFAULT_AS_LOOKUP_URL "https://apps.db.ripe.net/search/query.html?searchtext=AS%d&searchSubmit=search#resultsAnchor"
#define DEFAULT_WHOIS_LOOKUP_URL "https://apps.db.ripe.net/search/query.html?searchtext=%s&searchSubmit=search#resultsAnchor"
/*
* img tag for lock (secure URL)
*/
#define CONST_IMG_LOCK "<img class=tooltip src=\"/lock.png\" alt=\"Secured URL\" title=\"Secured URL\" border=\"0\">"
/*
* Password set message - long enough to be noticeable in the console output
*/
#define CONST_ADMINPW_QUESTION "\n\nntop startup - waiting for user response!\n\n\nPlease enter the password for the admin user: "
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* MISSING items */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
* These sets of ifndef ... define ... endifs
* are provided to define things that should already be in defined in the various
* header files.
*
* However, there is a chance - on some systems - for these not to be defined.
*
* So we provide the definitions here, usually swiped from the header files which
* exist on Linux or Solaris or Darwin.
*/
#if !defined(HAVE_ETHERTYPE_H)
#ifndef ETHERTYPE_IP
#define ETHERTYPE_IP 0x0800
#endif
#ifndef ETHERTYPE_NS
#define ETHERTYPE_NS 0x0600
#endif
#ifndef ETHERTYPE_SPRITE
#define ETHERTYPE_SPRITE 0x0500
#endif
#ifndef ETHERTYPE_TRAIL
#define ETHERTYPE_TRAIL 0x1000
#endif
#ifndef ETHERTYPE_MOPDL
#define ETHERTYPE_MOPDL 0x6001
#endif
#ifndef ETHERTYPE_MOPRC
#define ETHERTYPE_MOPRC 0x6002
#endif
#ifndef ETHERTYPE_DN
#define ETHERTYPE_DN 0x6003
#endif
#ifndef ETHERTYPE_ARP
#define ETHERTYPE_ARP 0x0806
#endif
#ifndef ETHERTYPE_LAT
#define ETHERTYPE_LAT 0x6004
#endif
#ifndef ETHERTYPE_SCA
#define ETHERTYPE_SCA 0x6007
#endif
#ifndef ETHERTYPE_REVARP
#define ETHERTYPE_REVARP 0x8035
#endif
#ifndef ETHERTYPE_LANBRIDGE
#define ETHERTYPE_LANBRIDGE 0x8038
#endif
#ifndef ETHERTYPE_DECDNS
#define ETHERTYPE_DECDNS 0x803c
#endif
#ifndef ETHERTYPE_DECDTS
#define ETHERTYPE_DECDTS 0x803e
#endif
#ifndef ETHERTYPE_VEXP
#define ETHERTYPE_VEXP 0x805b
#endif
#ifndef ETHERTYPE_VPROD
#define ETHERTYPE_VPROD 0x805c
#endif
#ifndef ETHERTYPE_ATALK
#define ETHERTYPE_ATALK 0x809b
#endif
#ifndef ETHERTYPE_AARP
#define ETHERTYPE_AARP 0x80f3
#endif
#ifndef ETHERTYPE_LOOPBACK
#define ETHERTYPE_LOOPBACK 0x9000
#endif
#endif /* HAVE_ETHERTYPE_H */
/*
* The #ifdef below are needed for some BSD systems
* Courtesy of Kimmo Suominen <kim@tac.nyc.ny.us>
*/
#ifndef ETHERTYPE_DN
#define ETHERTYPE_DN 0x6003
#endif
#ifndef ETHERTYPE_ATALK
#define ETHERTYPE_ATALK 0x809b
#endif
/*
* On some OSes (e.g. Linux without patches),
* these ETHERTYPE_ constants aren't defined in <net/ethernet.h>
*/
#ifndef ETHERTYPE_IPv6
#define ETHERTYPE_IPv6 0x86DD
#endif
#ifndef ETHERTYPE_802_1Q
#define ETHERTYPE_802_1Q 0x8100
#endif
#ifndef ETHERTYPE_MPLS
#define ETHERTYPE_MPLS 0x8847 /* MPLS protocol */
#endif
#ifndef ETHERTYPE_MPLS_MULTI
#define ETHERTYPE_MPLS_MULTI 0x8848 /* MPLS multicast packet */
#endif
#define MAX_NUM_MPLS_LABELS 10
#define MPLS_LABEL_LEN 3
#ifndef ETHERMTU
#define ETHERMTU 1500
#endif
/* Additional ethertypes for FC */
#ifndef ETHERTYPE_BRDWLK
#define ETHERTYPE_BRDWLK 0x88AE
#endif
#ifndef ETHERTYPE_BRDWLK_OLD
#define ETHERTYPE_BRDWLK_OLD 0xABCD
#endif
#ifndef ETHERTYPE_MDSHDR
#define ETHERTYPE_MDSHDR 0xFCFC
#endif
#ifndef ETHERTYPE_UNKNOWN
#define ETHERTYPE_UNKNOWN 0
#endif
/* ******************************
NOTE: Most of the icmp code below has been borrowed from tcpdump.
****************************** */
/* rfc1700 */
#ifndef ICMP_UNREACH_NET_UNKNOWN
#define ICMP_UNREACH_NET_UNKNOWN 6 /* destination net unknown */
#endif
#ifndef ICMP_UNREACH_HOST_UNKNOWN
#define ICMP_UNREACH_HOST_UNKNOWN 7 /* destination host unknown */
#endif
#ifndef ICMP_UNREACH_ISOLATED
#define ICMP_UNREACH_ISOLATED 8 /* source host isolated */
#endif
#ifndef ICMP_UNREACH_NET_PROHIB
#define ICMP_UNREACH_NET_PROHIB 9 /* admin prohibited net */
#endif
#ifndef ICMP_UNREACH_HOST_PROHIB
#define ICMP_UNREACH_HOST_PROHIB 10 /* admin prohibited host */
#endif
#ifndef ICMP_UNREACH_TOSNET
#define ICMP_UNREACH_TOSNET 11 /* tos prohibited net */
#endif
#ifndef ICMP_UNREACH_TOSHOST
#define ICMP_UNREACH_TOSHOST 12 /* tos prohibited host */
#endif
/* rfc1716 */
#ifndef ICMP_UNREACH_FILTER_PROHIB
#define ICMP_UNREACH_FILTER_PROHIB 13 /* admin prohibited filter */
#endif
#ifndef ICMP_UNREACH_HOST_PRECEDENCE
#define ICMP_UNREACH_HOST_PRECEDENCE 14 /* host precedence violation */
#endif
#ifndef ICMP_UNREACH_PRECEDENCE_CUTOFF
#define ICMP_UNREACH_PRECEDENCE_CUTOFF 15 /* precedence cutoff */
#endif
/* rfc1256 */
#ifndef ICMP_ROUTERADVERT
#define ICMP_ROUTERADVERT 9 /* router advertisement */
#endif
#ifndef ICMP_ROUTERSOLICIT
#define ICMP_ROUTERSOLICIT 10 /* router solicitation */
#endif
#ifndef ICMP_INFO_REQUEST
#define ICMP_INFO_REQUEST 15 /* Information Request */
#endif
#ifndef ICMP_DEST_UNREACHABLE
#define ICMP_DEST_UNREACHABLE 3 /* Destination Unreachable */
#endif
#ifndef ICMP_INFO_REPLY
#define ICMP_INFO_REPLY 16 /* Information Reply */
#endif
#ifndef ICMP_SOURCE_QUENCH
#define ICMP_SOURCE_QUENCH 4 /* Source Quench: packet lost, slow down */
#endif
#ifndef ICMP_TIMESTAMP
#define ICMP_TIMESTAMP 13 /* Timestamp Request */
#endif
#ifndef ICMP_TIMESTAMPREPLY
#define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */
#endif
#ifndef ICMP_MAXTYPE
#define ICMP_MAXTYPE 18
#endif
/* ******************************* */
/*
* These should be in <net/bpf.h>, but aren't always...
*/
#ifndef DLT_RAW
#define DLT_RAW 12 /* raw IP */
#endif
#ifndef DLT_SLIP_BSDOS
#define DLT_SLIP_BSDOS 13 /* BSD/OS Serial Line IP */
#endif
#ifndef DLT_PPP_BSDOS
#define DLT_PPP_BSDOS 14 /* BSD/OS Point-to-point Protocol */
#endif
#ifndef DLT_ANY
#define DLT_ANY 113 /* Linux 'any' device */
#endif
/* ******************************** */
/* PPPoE patch courtesy of Stefano Picerno <stefanopp@libero.it> */
#ifdef LINUX
#ifndef SLL_HDR_LEN
#define SLL_HDR_LEN 16
#endif
#endif
/* ******************************* */
/*
* Should be in <netinet/in.h> or similar
*/
#ifndef INADDR_NONE
#define INADDR_NONE 0xffffffff
#endif
/* ******************************* */
/*
* Should be in <syslog.h> or <sys/syslog.h>
*/
#if defined(MAKE_WITH_SYSLOG) && !defined(LOG_AUTHPRIV)
#define LOG_AUTHPRIV LOG_AUTH
#endif
/* ******************************* */
/*
* Defined in (Linux) <arpa/nameser_compat.h> which is included from
* <arpa/nameser.h>
* If - for whatever reason - they're not found... add them, based on the Linux definitions.
*/
#ifdef MAKE_NTOP_PACKETSZ_DECLARATIONS
/*
* Define constants based on RFC 883
*/
#define PACKETSZ 512 /* maximum packet size */
#define MAXDNAME 256 /* maximum domain name */
#define MAXCDNAME 255 /* maximum compressed domain name */
#define MAXLABEL 63 /* maximum length of domain label */
#define HFIXEDSZ 12 /* #/bytes of fixed data in header */
#define QFIXEDSZ 4 /* #/bytes of fixed data in query */
#define RRFIXEDSZ 10 /* #/bytes of fixed data in r record */
#define INT32SZ 4 /* for systems without 32-bit ints */
#define INT16SZ 2 /* for systems without 16-bit ints */
#define INADDRSZ 4 /* for sizeof(struct inaddr) != 4 */
/*
* Type values for resources and queries
*/
#define T_A 1 /* host address */
#define T_NS 2 /* authoritative server */
#define T_MD 3 /* mail destination */
#define T_MF 4 /* mail forwarder */
#define T_CNAME 5 /* canonical name */
#define T_SOA 6 /* start of authority zone */
#define T_MB 7 /* mailbox domain name */
#define T_MG 8 /* mail group member */
#define T_MR 9 /* mail rename name */
#define T_NULL 10 /* null resource record */
#define T_WKS 11 /* well known service */
#define T_PTR 12 /* domain name pointer */
#define T_HINFO 13 /* host information */
#define T_MINFO 14 /* mailbox information */
#define T_MX 15 /* mail routing information */
#define T_TXT 16 /* text strings */
#define T_RP 17 /* responsible person */
#define T_AFSDB 18 /* AFS cell database */
#define T_X25 19 /* X_25 calling address */
/*
* Values for class field
*/
#define C_IN 1 /* the arpa internet */
#define C_CHAOS 3 /* for chaos net (MIT) */
#define C_HS 4 /* for Hesiod name server (MIT) (XXX) */
/* Query class values which do not appear in resource records */
#define C_ANY 255 /* wildcard match */
#endif /* MAKE_NTOP_PACKETSZ_DECLARATIONS */
/* End the <arpa/nameser_compat.h> stuff */
/* ******************************* */
/*
* This should be defined from something included by <sys/param.h>
*/
/* Stefano Suin <stefano@ntop.org> */
#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN 256
#endif
/* ******************************************* */
/*
* The definitions below have been copied
* from llc.h that's part of tcpdump
*
*/
#ifndef LLCSAP_NULL
#define LLCSAP_NULL 0x00
#endif
#ifndef LLCSAP_GLOBAL
#define LLCSAP_GLOBAL 0xff
#endif
#ifndef LLCSAP_8021B
#define LLCSAP_8021B_I 0x02
#endif
#ifndef LLCSAP_8021B
#define LLCSAP_8021B_G 0x03
#endif
#ifndef LLCSAP_IP
#define LLCSAP_IP 0x06
#endif
#ifndef LLCSAP_PROWAYNM
#define LLCSAP_PROWAYNM 0x0e
#endif
#ifndef LLCSAP_8021D
#define LLCSAP_8021D 0x42
#endif
#ifndef LLCSAP_RS511
#define LLCSAP_RS511 0x4e
#endif
#ifndef LLCSAP_ISO8208
#define LLCSAP_ISO8208 0x7e
#endif
#ifndef LLCSAP_PROWAY
#define LLCSAP_PROWAY 0x8e
#endif
#ifndef LLCSAP_SNAP
#define LLCSAP_SNAP 0xaa
#endif
#ifndef LLCSAP_ISONS
#define LLCSAP_ISONS 0xfe
#endif
#ifndef LLCSAP_NETBIOS
#define LLCSAP_NETBIOS 0xf0
#endif
/* Open Shortest Path */
#ifndef IPPROTO_OSPF
#define IPPROTO_OSPF 89
#endif
#ifndef IPPROTO_GRE
#define IPPROTO_GRE 47
#endif
/* Internet Group Management Protocol */
#ifndef IPPROTO_IGMP
#define IPPROTO_IGMP 2
#endif
/* IPSec Encapsulating Security Protocol (ESP) */
#ifndef IPPROTO_IPSEC_ESP
#define IPPROTO_IPSEC_ESP 0x32
#endif
/* IPSec Authentication Header (AH) */
#ifndef IPPROTO_IPSEC_AH
#define IPPROTO_IPSEC_AH 0x33
#endif
/* ******************************* */
/*
* This should be defined from <stdlib.h>, which includes <bits/waitflags.h>
*/
#ifndef WNOHANG
#define WNOHANG 1
#endif
/* ******************************** */
/*
* This is POSIX, but might not be set - see <dirent.h>
*/
#ifndef NAME_MAX
#define NAME_MAX 255
#endif
/* ******************************** */
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE 1
#endif
/* ******************************** */
#define NO_VLAN (u_int16_t)-1
#define MAX_VLAN 4096
#define NO_INTERFACE (u_int16_t)-1
#define MAX_INTERFACE (u_int16_t)-1
/* ******************************** */
#ifndef HAVE_GETOPT_H
#define no_argument 0
#define required_argument 1
#define optional_argument 2
#endif /* HAVE_GETOPT_H */
/*
* Inappropriate message buffer length
* (In Linux this is in <asm/errno.h> which is ultimately included from <errno.h>)
*/
#ifndef EMSGSIZE
#define EMSGSIZE 97
#endif
/*
Courtesy of http://ettercap.sourceforge.net/
*/
#define TCPOPT_EOL 0
#define TCPOPT_NOP 1
#define TCPOPT_MAXSEG 2
#define TCPOPT_WSCALE 3
#define TCPOPT_SACKOK 4
#define TCPOPT_TIMESTAMP 8
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Derived constants and values */
/* these encapsulate complex definitions for simplicity */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Other, OS specific stuff */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef WIN32
#ifndef HAVE_SQRTF
#define sqrtf(x) ((float)(sqrt((double)x)))
#endif
#endif
/*
* On FreeBSD gethostbyaddr() sometimes loops and uses all the available memory.
* Hence this patch is needed.
*
* BSD seems to have fixed the problem, at least for 4.6 and 4.7 ...
*/
#ifdef FREEBSD
/* #define PARM_USE_HOST */
#endif
#ifdef WIN32
#ifndef s6_addr
//
// Duplicate these definitions here so that this file can be included by
// kernel-mode components which cannot include ws2tcpip.h, as well as
// by user-mode components which do.
//
typedef struct in6_addr {
union {
UCHAR Byte[16];
USHORT Word[8];
} u;
} IN6_ADDR;
#define in_addr6 in6_addr
#endif
struct ip6_hdr
{
union
{
struct ip6_hdrctl
{
u_int32_t ip6_un1_flow; /* 4 bits version, 8 bits TC,
20 bits flow-ID */
u_int16_t ip6_un1_plen; /* payload length */
u_int8_t ip6_un1_nxt; /* next header */
u_int8_t ip6_un1_hlim; /* hop limit */
} ip6_un1;
u_int8_t ip6_un2_vfc; /* 4 bits version, top 4 bits tclass */
} ip6_ctlun;
struct in6_addr ip6_src; /* source address */
struct in6_addr ip6_dst; /* destination address */
};
#define ip6_vfc ip6_ctlun.ip6_un2_vfc
#define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow
#define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen
#define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt
#define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim
#define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim
#endif
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Code below taken from ethercap */
#define SAP_NULL 0x00
#define SAP_LLC_SLMGMT 0x02
#define SAP_SNA_PATHCTRL 0x04
#define SAP_IP 0x06
#define SAP_SNA1 0x08
#define SAP_SNA2 0x0C
#define SAP_PROWAY_NM_INIT 0x0E
#define SAP_TI 0x18
#define SAP_SNA3 0x40
#define SAP_BPDU 0x42
#define SAP_RS511 0x4E
#define SAP_X25 0x7E
#define SAP_XNS 0x80
#define SAP_BACNET 0x82
#define SAP_NESTAR 0x86
#define SAP_PROWAY_ASLM 0x8E
#define SAP_ARP 0x98
#define SAP_SNAP 0xAA
#define SAP_ARP 0x98
#define SAP_VINES1 0xBA
#define SAP_VINES2 0xBC
#define SAP_NETWARE 0xE0
#define SAP_NETBIOS 0xF0
#define SAP_IBMNM 0xF4
#define SAP_HPEXT 0xF8
#define SAP_UB 0xFA
#define SAP_RPL 0xFC
#define SAP_OSINL 0xFE
#define SAP_GLOBAL 0xFF
/* TCP/UDP Port Numbers; generic TCP/UDP Ports are defined as IP_L4_* */
#define IP_L4_PORT_ECHO 7
#define IP_L4_PORT_DISCARD 9
#define IP_L4_PORT_DAYTIME 13
#define IP_L4_PORT_CHARGEN 19
#define IP_TCP_PORT_FTP 21
#define IP_TCP_PORT_SSH 22
#define IP_TCP_PORT_SMTP 25
#define IP_TCP_PORT_HTTP 80
#define IP_TCP_PORT_POP2 109
#define IP_TCP_PORT_POP3 110
#define IP_TCP_PORT_POPS 995
#define IP_TCP_PORT_IMAP 143
#define IP_TCP_PORT_IMAPS 993
#define IP_TCP_PORT_HTTPS 443
#define IP_TCP_PORT_PRINTER 515
#define IP_TCP_PORT_KAZAA 1214
#define IP_TCP_PORT_MSMSGR 1863
#define IP_TCP_PORT_SCCP 2000
#define IP_TCP_PORT_NTOP 3000
#define IP_TCP_PORT_SQUID 3128
#define IP_UDP_PORT_SIP 5060
#define IP_UDP_PORT_IAX2 4569 /* Asterisk */
#define IP_TCP_PORT_GNUTELLA1 6346
#define IP_TCP_PORT_GNUTELLA2 6347
#define IP_TCP_PORT_GNUTELLA3 6348
#define IP_TCP_PORT_WINMX 6699
#define IP_TCP_PORT_JETDIRECT 9100
#define IP_TCP_PORT_SKYPE 54045
/* GeoIP - http://www.maxmind.com */
#define GEO_IP_FILE "GeoLiteCity.dat"
#define GEO_IP_ASN_FILE "GeoIPASNum.dat"
#define NULL_VALUE "(null)"
/* NTOP preference names */
#define NTOP_PREF_DEVICES "ntop.devices"
#define NTOP_PREF_FILTER "ntop.currentFilterExpression"
#define NTOP_PREF_SAMPLING "ntop.sampleRate"
#define NTOP_PREF_WEBPORT "ntop.webPort"
#define NTOP_PREF_SSLPORT "ntop.sslPort"
#define NTOP_PREF_EN_SESSION "ntop.enableSessionHandling"
#define NTOP_PREF_EN_PROTO_DECODE "ntop.enablePacketDecoding"
#define NTOP_PREF_FLOWSPECS "ntop.flowSpecs"
#define NTOP_PREF_LOCALADDR "ntop.localAddresses"
#define NTOP_PREF_KNOWNSUBNETS "ntop.knownSubnetworks"
#define NTOP_PREF_SPOOLPATH "ntop.spoolPath"
#define NTOP_PREF_STICKY_HOSTS "ntop.stickyHosts"
#define NTOP_PREF_TRACK_LOCAL "ntop.trackOnlyLocalHosts"
#define NTOP_PREF_NO_PROMISC "ntop.disablePromiscuousMode"
#define NTOP_PREF_DAEMON "ntop.daemonMode"
#define NTOP_PREF_REFRESH_RATE "ntop.refreshRate"
#define NTOP_PREF_MAXLINES "ntop.maxNumLines"
#define NTOP_PREF_W3C "ntop.w3c"
#define NTOP_PREF_IPV4 "ntop.ipv4"
#define NTOP_PREF_IPV6 "ntop.ipv6"
#define NTOP_PREF_IPV4V6 "ntop.ipv4orv6"
#define NTOP_PREF_DOMAINNAME "ntop.domainName"
#define NTOP_PREF_NUMERIC_IP "ntop.numericFlag"
#define NTOP_PREF_PROTOSPECS "ntop.protoSpecs"
#define NTOP_PREF_P3PCP "ntop.P3Pcp"
#define NTOP_PREF_P3PURI "ntop.P3Puri"
#define NTOP_PREF_MAXHASH "ntop.maxNumHashEntries"
#define NTOP_PREF_MAXSESSIONS "ntop.maxNumSessions"
#define NTOP_PREF_MERGEIF "ntop.mergeInterfaces"
#define NTOP_PREF_ENABLE_L7PROTO "ntop.enableL7Proto"
#define NTOP_PREF_PCAP_LOGBASE "ntop.pcapLogBasePath"
#define NTOP_PREF_DBG_MODE "ntop.debugMode"
#define NTOP_PREF_TRACE_LVL "ntop.traceLevel"
#define NTOP_PREF_DUMP_SUSP "ntop.enableSuspiciousPacketDump"
#define NTOP_PREF_ACCESS_LOG "ntop.accessLogFile"
#define NTOP_PREF_USE_SYSLOG "ntop.useSyslog"
#define NTOP_PREF_PCAP_LOG "ntop.pcapLog"
#define NTOP_PREF_NO_MUTEX_EXTRA "ntop.disableMutexExtraInfo"
/* Values for the preferences */
#define NTOP_PREF_VALUE_PRINT_IPONLY 1
#define NTOP_PREF_VALUE_PRINT_FCONLY 2
#define NTOP_PREF_VALUE_PRINT_BOTH 3
#define NTOP_PREF_VALUE_AF_INET AF_INET
#define NTOP_PREF_VALUE_AF_INET6 AF_INET6
#define NTOP_PREF_VALUE_AF_BOTH AF_UNSPEC
#define COMMUNITY_PREFIX "community."
#define UNKNOWN_SUBNET_ID ((int8_t)-1)
#define ALL_SUBNET_IDS ((int8_t)-2)
/* *************************** */
#define DEFAULT_NTOP_PLUGINS_INSTALL "/usr/local/lib/ntop/plugins"
#define DEFAULT_NTOP_HTML_INSTALL "/usr/local/share/ntop"
#define DEFAULT_NTOP_CFG_CONFIGFILE_DIR "/usr/local/etc/ntop"
#define DOMAIN_VIEW 0
#define NETWORK_VIEW 1
#define AS_VIEW 2
#define AS_GRAPH_VIEW 3
#define EVENTS_MASK "events.mask"
#define EVENTS_LOG "events.log"
/* *************************** */
#define MAX_NUM_INTERFACE_NETWORKS 128
/* ******************************** */
#define quickLock(_b_) accessMutex(&myGlobals.device[_b_].counterMutex, "quickLock");
#define quickUnlock(_b_) releaseMutex(&myGlobals.device[_b_].counterMutex);
#define incrementHostTrafficCounter(_a_, _b_, _c_) { \
quickLock(actualDeviceId); \
incrementTrafficCounter(&_a_->_b_, _c_); \
quickUnlock(actualDeviceId); \
}
#define allocHostTrafficCounterMemory(_a_, _b_, _c_) { \
quickLock(actualDeviceId); \
if(_a_->_b_ == NULL) \
_a_->_b_ = calloc((size_t)_c_, (size_t)1); \
quickUnlock(actualDeviceId); \
}
/* *************************** */
|