1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811
|
/** @file
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __WTAP_H__
#define __WTAP_H__
#include <wireshark.h>
#include <time.h>
#include <wsutil/buffer.h>
#include <wsutil/nstime.h>
#include <wsutil/inet_addr.h>
#include "wtap_opttypes.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Encapsulation types. Choose names that truly reflect
* what is contained in the packet trace file.
*
* WTAP_ENCAP_PER_PACKET is a value passed to "wtap_dump_open()" or
* "wtap_dump_fdopen()" to indicate that there is no single encapsulation
* type for all packets in the file; this may cause those routines to
* fail if the capture file format being written can't support that.
* It's also returned by "wtap_file_encap()" for capture files that
* don't have a single encapsulation type for all packets in the file.
*
* WTAP_ENCAP_UNKNOWN is returned by "wtap_pcap_encap_to_wtap_encap()"
* if it's handed an unknown encapsulation. It is also used by file
* types for encapsulations which are unsupported by libwiretap.
*
* WTAP_ENCAP_NONE is an initial value used by file types like pcapng
* that do not have a single file level encapsulation type. If and when
* something that indicate encapsulation is read, the encapsulation will
* change (possibly to WTAP_ENCAP_PER_PACKET) and appropriate IDBs will
* be generated. If a file type uses this value, it MUST provide IDBs
* (possibly fake) when the encapsulation changes; otherwise, it should
* return WTAP_ENCAP_UNKNOWN so that attempts to write an output file
* without reading the entire input file first fail gracefully.
*
* WTAP_ENCAP_FDDI_BITSWAPPED is for FDDI captures on systems where the
* MAC addresses you get from the hardware are bit-swapped. Ideally,
* the driver would tell us that, but I know of none that do, so, for
* now, we base it on the machine on which we're *reading* the
* capture, rather than on the machine on which the capture was taken
* (they're probably likely to be the same). We assume that they're
* bit-swapped on everything except for systems running Ultrix, Alpha
* systems, and BSD/OS systems (that's what "tcpdump" does; I guess
* Digital decided to bit-swap addresses in the hardware or in the
* driver, and I guess BSDI bit-swapped them in the driver, given that
* BSD/OS generally runs on Boring Old PC's). If we create a wiretap
* save file format, we'd use the WTAP_ENCAP values to flag the
* encapsulation of a packet, so there we'd at least be able to base
* it on the machine on which the capture was taken.
*
* WTAP_ENCAP_LINUX_ATM_CLIP is the encapsulation you get with the
* ATM on Linux code from <http://linux-atm.sourceforge.net/>;
* that code adds a DLT_ATM_CLIP DLT_ code of 19, and that
* encapsulation isn't the same as the DLT_ATM_RFC1483 encapsulation
* presumably used on some BSD systems, which we turn into
* WTAP_ENCAP_ATM_RFC1483.
*
* WTAP_ENCAP_NULL corresponds to DLT_NULL from "libpcap". This
* corresponds to
*
* 1) PPP-over-HDLC encapsulation, at least with some versions
* of ISDN4BSD (but not the current ones, it appears, unless
* I've missed something);
*
* 2) a 4-byte header containing the AF_ address family, in
* the byte order of the machine that saved the capture,
* for the packet, as used on many BSD systems for the
* loopback device and some other devices, or a 4-byte header
* containing the AF_ address family in network byte order,
* as used on recent OpenBSD systems for the loopback device;
*
* 3) a 4-byte header containing 2 octets of 0 and an Ethernet
* type in the byte order from an Ethernet header, that being
* what older versions of "libpcap" on Linux turn the Ethernet
* header for loopback interfaces into (0.6.0 and later versions
* leave the Ethernet header alone and make it DLT_EN10MB). */
#define WTAP_ENCAP_NONE -2
#define WTAP_ENCAP_PER_PACKET -1
#define WTAP_ENCAP_UNKNOWN 0
#define WTAP_ENCAP_ETHERNET 1
#define WTAP_ENCAP_TOKEN_RING 2
#define WTAP_ENCAP_SLIP 3
#define WTAP_ENCAP_PPP 4
#define WTAP_ENCAP_FDDI 5
#define WTAP_ENCAP_FDDI_BITSWAPPED 6
#define WTAP_ENCAP_RAW_IP 7
#define WTAP_ENCAP_ARCNET 8
#define WTAP_ENCAP_ARCNET_LINUX 9
#define WTAP_ENCAP_ATM_RFC1483 10
#define WTAP_ENCAP_LINUX_ATM_CLIP 11
#define WTAP_ENCAP_LAPB 12
#define WTAP_ENCAP_ATM_PDUS 13
#define WTAP_ENCAP_ATM_PDUS_UNTRUNCATED 14
#define WTAP_ENCAP_NULL 15
#define WTAP_ENCAP_ASCEND 16
#define WTAP_ENCAP_ISDN 17
#define WTAP_ENCAP_IP_OVER_FC 18
#define WTAP_ENCAP_PPP_WITH_PHDR 19
#define WTAP_ENCAP_IEEE_802_11 20
#define WTAP_ENCAP_IEEE_802_11_PRISM 21
#define WTAP_ENCAP_IEEE_802_11_WITH_RADIO 22
#define WTAP_ENCAP_IEEE_802_11_RADIOTAP 23
#define WTAP_ENCAP_IEEE_802_11_AVS 24
#define WTAP_ENCAP_SLL 25
#define WTAP_ENCAP_FRELAY 26
#define WTAP_ENCAP_FRELAY_WITH_PHDR 27
#define WTAP_ENCAP_CHDLC 28
#define WTAP_ENCAP_CISCO_IOS 29
#define WTAP_ENCAP_LOCALTALK 30
#define WTAP_ENCAP_OLD_PFLOG 31
#define WTAP_ENCAP_HHDLC 32
#define WTAP_ENCAP_DOCSIS 33
#define WTAP_ENCAP_COSINE 34
#define WTAP_ENCAP_WFLEET_HDLC 35
#define WTAP_ENCAP_SDLC 36
#define WTAP_ENCAP_TZSP 37
#define WTAP_ENCAP_ENC 38
#define WTAP_ENCAP_PFLOG 39
#define WTAP_ENCAP_CHDLC_WITH_PHDR 40
#define WTAP_ENCAP_BLUETOOTH_H4 41
#define WTAP_ENCAP_MTP2 42
#define WTAP_ENCAP_MTP3 43
#define WTAP_ENCAP_IRDA 44
#define WTAP_ENCAP_USER0 45
#define WTAP_ENCAP_USER1 46
#define WTAP_ENCAP_USER2 47
#define WTAP_ENCAP_USER3 48
#define WTAP_ENCAP_USER4 49
#define WTAP_ENCAP_USER5 50
#define WTAP_ENCAP_USER6 51
#define WTAP_ENCAP_USER7 52
#define WTAP_ENCAP_USER8 53
#define WTAP_ENCAP_USER9 54
#define WTAP_ENCAP_USER10 55
#define WTAP_ENCAP_USER11 56
#define WTAP_ENCAP_USER12 57
#define WTAP_ENCAP_USER13 58
#define WTAP_ENCAP_USER14 59
#define WTAP_ENCAP_USER15 60
#define WTAP_ENCAP_SYMANTEC 61
#define WTAP_ENCAP_APPLE_IP_OVER_IEEE1394 62
#define WTAP_ENCAP_BACNET_MS_TP 63
#define WTAP_ENCAP_NETTL_RAW_ICMP 64
#define WTAP_ENCAP_NETTL_RAW_ICMPV6 65
#define WTAP_ENCAP_GPRS_LLC 66
#define WTAP_ENCAP_JUNIPER_ATM1 67
#define WTAP_ENCAP_JUNIPER_ATM2 68
#define WTAP_ENCAP_REDBACK 69
#define WTAP_ENCAP_NETTL_RAW_IP 70
#define WTAP_ENCAP_NETTL_ETHERNET 71
#define WTAP_ENCAP_NETTL_TOKEN_RING 72
#define WTAP_ENCAP_NETTL_FDDI 73
#define WTAP_ENCAP_NETTL_UNKNOWN 74
#define WTAP_ENCAP_MTP2_WITH_PHDR 75
#define WTAP_ENCAP_JUNIPER_PPPOE 76
#define WTAP_ENCAP_GCOM_TIE1 77
#define WTAP_ENCAP_GCOM_SERIAL 78
#define WTAP_ENCAP_NETTL_X25 79
#define WTAP_ENCAP_K12 80
#define WTAP_ENCAP_JUNIPER_MLPPP 81
#define WTAP_ENCAP_JUNIPER_MLFR 82
#define WTAP_ENCAP_JUNIPER_ETHER 83
#define WTAP_ENCAP_JUNIPER_PPP 84
#define WTAP_ENCAP_JUNIPER_FRELAY 85
#define WTAP_ENCAP_JUNIPER_CHDLC 86
#define WTAP_ENCAP_JUNIPER_GGSN 87
#define WTAP_ENCAP_LINUX_LAPD 88
#define WTAP_ENCAP_CATAPULT_DCT2000 89
#define WTAP_ENCAP_BER 90
#define WTAP_ENCAP_JUNIPER_VP 91
#define WTAP_ENCAP_USB_FREEBSD 92
#define WTAP_ENCAP_IEEE802_16_MAC_CPS 93
#define WTAP_ENCAP_NETTL_RAW_TELNET 94
#define WTAP_ENCAP_USB_LINUX 95
#define WTAP_ENCAP_MPEG 96
#define WTAP_ENCAP_PPI 97
#define WTAP_ENCAP_ERF 98
#define WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR 99
#define WTAP_ENCAP_SITA 100
#define WTAP_ENCAP_SCCP 101
#define WTAP_ENCAP_BLUETOOTH_HCI 102 /*raw packets without a transport layer header e.g. H4*/
#define WTAP_ENCAP_IPMB_KONTRON 103
#define WTAP_ENCAP_IEEE802_15_4 104
#define WTAP_ENCAP_X2E_XORAYA 105
#define WTAP_ENCAP_FLEXRAY 106
#define WTAP_ENCAP_LIN 107
#define WTAP_ENCAP_MOST 108
#define WTAP_ENCAP_CAN20B 109
#define WTAP_ENCAP_LAYER1_EVENT 110
#define WTAP_ENCAP_X2E_SERIAL 111
#define WTAP_ENCAP_I2C_LINUX 112
#define WTAP_ENCAP_IEEE802_15_4_NONASK_PHY 113
#define WTAP_ENCAP_TNEF 114
#define WTAP_ENCAP_USB_LINUX_MMAPPED 115
#define WTAP_ENCAP_GSM_UM 116
#define WTAP_ENCAP_DPNSS 117
#define WTAP_ENCAP_PACKETLOGGER 118
#define WTAP_ENCAP_NSTRACE_1_0 119
#define WTAP_ENCAP_NSTRACE_2_0 120
#define WTAP_ENCAP_FIBRE_CHANNEL_FC2 121
#define WTAP_ENCAP_FIBRE_CHANNEL_FC2_WITH_FRAME_DELIMS 122
#define WTAP_ENCAP_JPEG_JFIF 123 /* obsoleted by WTAP_ENCAP_MIME*/
#define WTAP_ENCAP_IPNET 124
#define WTAP_ENCAP_SOCKETCAN 125
#define WTAP_ENCAP_IEEE_802_11_NETMON 126
#define WTAP_ENCAP_IEEE802_15_4_NOFCS 127
#define WTAP_ENCAP_RAW_IPFIX 128
#define WTAP_ENCAP_RAW_IP4 129
#define WTAP_ENCAP_RAW_IP6 130
#define WTAP_ENCAP_LAPD 131
#define WTAP_ENCAP_DVBCI 132
#define WTAP_ENCAP_MUX27010 133
#define WTAP_ENCAP_MIME 134
#define WTAP_ENCAP_NETANALYZER 135
#define WTAP_ENCAP_NETANALYZER_TRANSPARENT 136
#define WTAP_ENCAP_IP_OVER_IB_SNOOP 137
#define WTAP_ENCAP_MPEG_2_TS 138
#define WTAP_ENCAP_PPP_ETHER 139
#define WTAP_ENCAP_NFC_LLCP 140
#define WTAP_ENCAP_NFLOG 141
#define WTAP_ENCAP_V5_EF 142
#define WTAP_ENCAP_BACNET_MS_TP_WITH_PHDR 143
#define WTAP_ENCAP_IXVERIWAVE 144
#define WTAP_ENCAP_SDH 145
#define WTAP_ENCAP_DBUS 146
#define WTAP_ENCAP_AX25_KISS 147
#define WTAP_ENCAP_AX25 148
#define WTAP_ENCAP_SCTP 149
#define WTAP_ENCAP_INFINIBAND 150
#define WTAP_ENCAP_JUNIPER_SVCS 151
#define WTAP_ENCAP_USBPCAP 152
#define WTAP_ENCAP_RTAC_SERIAL 153
#define WTAP_ENCAP_BLUETOOTH_LE_LL 154
#define WTAP_ENCAP_WIRESHARK_UPPER_PDU 155
#define WTAP_ENCAP_STANAG_4607 156
#define WTAP_ENCAP_STANAG_5066_D_PDU 157
#define WTAP_ENCAP_NETLINK 158
#define WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR 159
#define WTAP_ENCAP_BLUETOOTH_BREDR_BB 160
#define WTAP_ENCAP_BLUETOOTH_LE_LL_WITH_PHDR 161
#define WTAP_ENCAP_NSTRACE_3_0 162
#define WTAP_ENCAP_LOGCAT 163
#define WTAP_ENCAP_LOGCAT_BRIEF 164
#define WTAP_ENCAP_LOGCAT_PROCESS 165
#define WTAP_ENCAP_LOGCAT_TAG 166
#define WTAP_ENCAP_LOGCAT_THREAD 167
#define WTAP_ENCAP_LOGCAT_TIME 168
#define WTAP_ENCAP_LOGCAT_THREADTIME 169
#define WTAP_ENCAP_LOGCAT_LONG 170
#define WTAP_ENCAP_PKTAP 171
#define WTAP_ENCAP_EPON 172
#define WTAP_ENCAP_IPMI_TRACE 173
#define WTAP_ENCAP_LOOP 174
#define WTAP_ENCAP_JSON 175
#define WTAP_ENCAP_NSTRACE_3_5 176
#define WTAP_ENCAP_ISO14443 177
#define WTAP_ENCAP_GFP_T 178
#define WTAP_ENCAP_GFP_F 179
#define WTAP_ENCAP_IP_OVER_IB_PCAP 180
#define WTAP_ENCAP_JUNIPER_VN 181
#define WTAP_ENCAP_USB_DARWIN 182
#define WTAP_ENCAP_LORATAP 183
#define WTAP_ENCAP_3MB_ETHERNET 184
#define WTAP_ENCAP_VSOCK 185
#define WTAP_ENCAP_NORDIC_BLE 186
#define WTAP_ENCAP_NETMON_NET_NETEVENT 187
#define WTAP_ENCAP_NETMON_HEADER 188
#define WTAP_ENCAP_NETMON_NET_FILTER 189
#define WTAP_ENCAP_NETMON_NETWORK_INFO_EX 190
#define WTAP_ENCAP_MA_WFP_CAPTURE_V4 191
#define WTAP_ENCAP_MA_WFP_CAPTURE_V6 192
#define WTAP_ENCAP_MA_WFP_CAPTURE_2V4 193
#define WTAP_ENCAP_MA_WFP_CAPTURE_2V6 194
#define WTAP_ENCAP_MA_WFP_CAPTURE_AUTH_V4 195
#define WTAP_ENCAP_MA_WFP_CAPTURE_AUTH_V6 196
#define WTAP_ENCAP_JUNIPER_ST 197
#define WTAP_ENCAP_ETHERNET_MPACKET 198
#define WTAP_ENCAP_DOCSIS31_XRA31 199
#define WTAP_ENCAP_DPAUXMON 200
#define WTAP_ENCAP_RUBY_MARSHAL 201
#define WTAP_ENCAP_RFC7468 202
#define WTAP_ENCAP_SYSTEMD_JOURNAL 203 /* Event, not a packet */
#define WTAP_ENCAP_EBHSCR 204
#define WTAP_ENCAP_VPP 205
#define WTAP_ENCAP_IEEE802_15_4_TAP 206
#define WTAP_ENCAP_LOG_3GPP 207
#define WTAP_ENCAP_USB_2_0 208
#define WTAP_ENCAP_MP4 209
#define WTAP_ENCAP_SLL2 210
#define WTAP_ENCAP_ZWAVE_SERIAL 211
#define WTAP_ENCAP_ETW 212
#define WTAP_ENCAP_ERI_ENB_LOG 213
#define WTAP_ENCAP_ZBNCP 214
#define WTAP_ENCAP_USB_2_0_LOW_SPEED 215
#define WTAP_ENCAP_USB_2_0_FULL_SPEED 216
#define WTAP_ENCAP_USB_2_0_HIGH_SPEED 217
#define WTAP_ENCAP_AUTOSAR_DLT 218
#define WTAP_ENCAP_AUERSWALD_LOG 219
#define WTAP_ENCAP_ATSC_ALP 220
#define WTAP_ENCAP_FIRA_UCI 221
#define WTAP_ENCAP_SILABS_DEBUG_CHANNEL 222
#define WTAP_ENCAP_MDB 223
#define WTAP_ENCAP_EMS 224
#define WTAP_ENCAP_DECT_NR 225
/* After adding new item here, please also add new item to encap_table_base array */
#define WTAP_NUM_ENCAP_TYPES wtap_get_num_encap_types()
/* Value to be used as a file type/subtype value if the type is unknown */
#define WTAP_FILE_TYPE_SUBTYPE_UNKNOWN -1
/* timestamp precision (currently only these values are supported) */
#define WTAP_TSPREC_UNKNOWN -2
#define WTAP_TSPREC_PER_PACKET -1 /* as a per-file value, means per-packet */
/*
* These values are the number of digits of precision after the integral part.
* They're the same as WS_TSPREC values; we define them here so that
* tools/make-enums.py sees them.
*/
#define WTAP_TSPREC_SEC 0
#define WTAP_TSPREC_100_MSEC 1
#define WTAP_TSPREC_DSEC 1 /* Backwards compatibility */
#define WTAP_TSPREC_10_MSEC 2
#define WTAP_TSPREC_CSEC 2 /* Backwards compatibility */
#define WTAP_TSPREC_MSEC 3
#define WTAP_TSPREC_100_USEC 4
#define WTAP_TSPREC_10_USEC 5
#define WTAP_TSPREC_USEC 6
#define WTAP_TSPREC_100_NSEC 7
#define WTAP_TSPREC_10_NSEC 8
#define WTAP_TSPREC_NSEC 9
/* if you add to the above, update wtap_tsprec_string() */
/*
* Maximum packet sizes.
*
* For most link-layer types, we use 262144, which is currently
* libpcap's MAXIMUM_SNAPLEN.
*
* For WTAP_ENCAP_DBUS, the maximum is 128MiB, as per
*
* https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-messages
*
* For WTAP_ENCAP_EBHSCR, the maximum is 8MiB, as per
*
* https://www.elektrobit.com/ebhscr
*
* For WTAP_ENCAP_USBPCAP, the maximum is 128MiB, as per
*
* https://gitlab.com/wireshark/wireshark/-/issues/15985
*
* We don't want to write out files that specify a maximum packet size
* greater than 262144 if we don't have to, as software reading those
* files might allocate a buffer much larger than necessary, wasting memory.
*/
#define WTAP_MAX_PACKET_SIZE_STANDARD 262144U
#define WTAP_MAX_PACKET_SIZE_USBPCAP (128U*1024U*1024U)
#define WTAP_MAX_PACKET_SIZE_EBHSCR (32U*1024U*1024U)
#define WTAP_MAX_PACKET_SIZE_DBUS (128U*1024U*1024U)
/*
* "Pseudo-headers" are used to supply to the clients of wiretap
* per-packet information that's not part of the packet payload
* proper.
*
* NOTE: do not use pseudo-header structures to hold information
* used by the code to read a particular capture file type; to
* keep that sort of state information, add a new structure for
* that private information to "wtap-int.h", add a pointer to that
* type of structure to the "capture" member of the "struct wtap"
* structure, and allocate one of those structures and set that member
* in the "open" routine for that capture file type if the open
* succeeds. See various other capture file type handlers for examples
* of that.
*/
/* Packet "pseudo-header" information for Ethernet capture files. */
struct eth_phdr {
int fcs_len; /* Number of bytes of FCS - -1 means "unknown" */
};
/* Packet "pseudo-header" information for capture files for traffic
between DTE and DCE. */
#define FROM_DCE 0x80
struct dte_dce_phdr {
uint8_t flags; /* ENCAP_LAPB, ENCAP_V120, ENCAP_FRELAY: 1st bit means From DCE */
};
/* Packet "pseudo-header" information for ISDN capture files. */
/* Direction */
struct isdn_phdr {
bool uton;
uint8_t channel; /* 0 = D-channel; n = B-channel n */
};
/* Packet "pseudo-header" for ATM capture files.
Not all of this information is supplied by all capture types.
These originally came from the Network General (DOS-based)
ATM Sniffer file format, but we've added some additional
items. */
/*
* Status bits.
*/
#define ATM_RAW_CELL 0x01 /* true if the packet is a single cell */
#define ATM_NO_HEC 0x02 /* true if the cell has HEC stripped out */
#define ATM_AAL2_NOPHDR 0x04 /* true if the AAL2 PDU has no pseudo-header */
#define ATM_REASSEMBLY_ERROR 0x08 /* true if this is an incompletely-reassembled PDU */
/*
* AAL types.
*/
#define AAL_UNKNOWN 0 /* AAL unknown */
#define AAL_1 1 /* AAL1 */
#define AAL_2 2 /* AAL2 */
#define AAL_3_4 3 /* AAL3/4 */
#define AAL_5 4 /* AAL5 */
#define AAL_USER 5 /* User AAL */
#define AAL_SIGNALLING 6 /* Signaling AAL */
#define AAL_OAMCELL 7 /* OAM cell */
/*
* Traffic types.
*/
#define TRAF_UNKNOWN 0 /* Unknown */
#define TRAF_LLCMX 1 /* LLC multiplexed (RFC 1483) */
#define TRAF_VCMX 2 /* VC multiplexed (RFC 1483) */
#define TRAF_LANE 3 /* LAN Emulation */
#define TRAF_ILMI 4 /* ILMI */
#define TRAF_FR 5 /* Frame Relay */
#define TRAF_SPANS 6 /* FORE SPANS */
#define TRAF_IPSILON 7 /* Ipsilon */
#define TRAF_UMTS_FP 8 /* UMTS Frame Protocol */
#define TRAF_GPRS_NS 9 /* GPRS Network Services */
#define TRAF_SSCOP 10 /* SSCOP */
/*
* Traffic subtypes.
*/
#define TRAF_ST_UNKNOWN 0 /* Unknown */
/*
* For TRAF_VCMX:
*/
#define TRAF_ST_VCMX_802_3_FCS 1 /* 802.3 with an FCS */
#define TRAF_ST_VCMX_802_4_FCS 2 /* 802.4 with an FCS */
#define TRAF_ST_VCMX_802_5_FCS 3 /* 802.5 with an FCS */
#define TRAF_ST_VCMX_FDDI_FCS 4 /* FDDI with an FCS */
#define TRAF_ST_VCMX_802_6_FCS 5 /* 802.6 with an FCS */
#define TRAF_ST_VCMX_802_3 7 /* 802.3 without an FCS */
#define TRAF_ST_VCMX_802_4 8 /* 802.4 without an FCS */
#define TRAF_ST_VCMX_802_5 9 /* 802.5 without an FCS */
#define TRAF_ST_VCMX_FDDI 10 /* FDDI without an FCS */
#define TRAF_ST_VCMX_802_6 11 /* 802.6 without an FCS */
#define TRAF_ST_VCMX_FRAGMENTS 12 /* Fragments */
#define TRAF_ST_VCMX_BPDU 13 /* BPDU */
/*
* For TRAF_LANE:
*/
#define TRAF_ST_LANE_LE_CTRL 1 /* LANE: LE Ctrl */
#define TRAF_ST_LANE_802_3 2 /* LANE: 802.3 */
#define TRAF_ST_LANE_802_5 3 /* LANE: 802.5 */
#define TRAF_ST_LANE_802_3_MC 4 /* LANE: 802.3 multicast */
#define TRAF_ST_LANE_802_5_MC 5 /* LANE: 802.5 multicast */
/*
* For TRAF_IPSILON:
*/
#define TRAF_ST_IPSILON_FT0 1 /* Ipsilon: Flow Type 0 */
#define TRAF_ST_IPSILON_FT1 2 /* Ipsilon: Flow Type 1 */
#define TRAF_ST_IPSILON_FT2 3 /* Ipsilon: Flow Type 2 */
struct atm_phdr {
uint32_t flags; /* status flags */
uint8_t aal; /* AAL of the traffic */
uint8_t type; /* traffic type */
uint8_t subtype; /* traffic subtype */
uint16_t vpi; /* virtual path identifier */
uint16_t vci; /* virtual circuit identifier */
uint8_t aal2_cid; /* channel id */
uint16_t channel; /* link: 0 for DTE->DCE, 1 for DCE->DTE */
uint16_t cells; /* number of cells */
uint16_t aal5t_u2u; /* user-to-user indicator */
uint16_t aal5t_len; /* length of the packet */
uint32_t aal5t_chksum; /* checksum for AAL5 packet */
};
/* Packet "pseudo-header" for the output from "wandsession", "wannext",
"wandisplay", and similar commands on Lucent/Ascend access equipment. */
#define ASCEND_MAX_STR_LEN 64
#define ASCEND_PFX_WDS_X 1
#define ASCEND_PFX_WDS_R 2
#define ASCEND_PFX_WDD 3
#define ASCEND_PFX_ISDN_X 4
#define ASCEND_PFX_ISDN_R 5
#define ASCEND_PFX_ETHER 6
struct ascend_phdr {
uint16_t type; /* ASCEND_PFX_*, as defined above */
char user[ASCEND_MAX_STR_LEN]; /* Username, from wandsession header */
uint32_t sess; /* Session number, from wandsession header */
char call_num[ASCEND_MAX_STR_LEN]; /* Called number, from WDD header */
uint32_t chunk; /* Chunk number, from WDD header */
uint32_t task; /* Task number */
};
/* Packet "pseudo-header" for point-to-point links with direction flags. */
struct p2p_phdr {
bool sent;
};
/*
* Packet "pseudo-header" information for 802.11.
* Radio information is only present in this form for
* WTAP_ENCAP_IEEE_802_11_WITH_RADIO. This is used for file formats in
* which the radio information isn't provided as a pseudo-header in the
* packet data. It is also used by the dissectors for the pseudo-headers
* in the packet data to supply radio information, in a form independent
* of the file format and pseudo-header format, to the "802.11 radio"
* dissector.
*
* Signal strength, etc. information:
*
* Raw signal strength can be measured in milliwatts.
* It can also be represented as dBm, which is 10 times the log base 10
* of the signal strength in mW.
*
* The Receive Signal Strength Indicator is an integer in the range 0 to 255.
* The actual RSSI value for a given signal strength is dependent on the
* vendor (and perhaps on the adapter). The maximum possible RSSI value
* is also dependent on the vendor and perhaps the adapter.
*
* The signal strength can be represented as a percentage, which is 100
* times the ratio of the RSSI and the maximum RSSI.
*/
/*
* PHY types.
*/
#define PHDR_802_11_PHY_UNKNOWN 0 /* PHY not known */
#define PHDR_802_11_PHY_11_FHSS 1 /* 802.11 FHSS */
#define PHDR_802_11_PHY_11_IR 2 /* 802.11 IR */
#define PHDR_802_11_PHY_11_DSSS 3 /* 802.11 DSSS */
#define PHDR_802_11_PHY_11B 4 /* 802.11b */
#define PHDR_802_11_PHY_11A 5 /* 802.11a */
#define PHDR_802_11_PHY_11G 6 /* 802.11g */
#define PHDR_802_11_PHY_11N 7 /* 802.11n */
#define PHDR_802_11_PHY_11AC 8 /* 802.11ac */
#define PHDR_802_11_PHY_11AD 9 /* 802.11ad */
#define PHDR_802_11_PHY_11AH 10 /* 802.11ah */
#define PHDR_802_11_PHY_11AX 11 /* 802.11ax */
#define PHDR_802_11_PHY_11BE 12 /* 802.11be - EHT */
/*
* PHY-specific information.
*/
/*
* 802.11 legacy FHSS.
*/
struct ieee_802_11_fhss {
unsigned has_hop_set:1;
unsigned has_hop_pattern:1;
unsigned has_hop_index:1;
uint8_t hop_set; /* Hop set */
uint8_t hop_pattern; /* Hop pattern */
uint8_t hop_index; /* Hop index */
};
/*
* 802.11b.
*/
struct ieee_802_11b {
/* Which of this information is present? */
unsigned has_short_preamble:1;
bool short_preamble; /* Short preamble */
};
/*
* 802.11a.
*/
struct ieee_802_11a {
/* Which of this information is present? */
unsigned has_channel_type:1;
unsigned has_turbo_type:1;
unsigned channel_type:2;
unsigned turbo_type:2;
};
/*
* Channel type values.
*/
#define PHDR_802_11A_CHANNEL_TYPE_NORMAL 0
#define PHDR_802_11A_CHANNEL_TYPE_HALF_CLOCKED 1
#define PHDR_802_11A_CHANNEL_TYPE_QUARTER_CLOCKED 2
/*
* "Turbo" is an Atheros proprietary extension with 40 MHz-wide channels.
* It can be dynamic or static.
*
* See
*
* http://wifi-insider.com/atheros/turbo.htm
*/
#define PHDR_802_11A_TURBO_TYPE_NORMAL 0
#define PHDR_802_11A_TURBO_TYPE_TURBO 1 /* If we don't know whether it's static or dynamic */
#define PHDR_802_11A_TURBO_TYPE_DYNAMIC_TURBO 2
#define PHDR_802_11A_TURBO_TYPE_STATIC_TURBO 3
/*
* 802.11g.
*
* This should only be used for packets sent using OFDM; packets
* sent on an 11g network using DSSS should have the PHY set to
* 11b.
*/
struct ieee_802_11g {
/* Which of this information is present? */
unsigned has_mode:1;
uint32_t mode; /* Various proprietary extensions */
};
/*
* Mode values.
*/
#define PHDR_802_11G_MODE_NORMAL 0
#define PHDR_802_11G_MODE_SUPER_G 1 /* Atheros Super G */
/*
* 802.11n.
*/
struct ieee_802_11n {
/* Which of this information is present? */
unsigned has_mcs_index:1;
unsigned has_bandwidth:1;
unsigned has_short_gi:1;
unsigned has_greenfield:1;
unsigned has_fec:1;
unsigned has_stbc_streams:1;
unsigned has_ness:1;
uint16_t mcs_index; /* MCS index */
unsigned bandwidth; /* Bandwidth = 20 MHz, 40 MHz, etc. */
unsigned short_gi:1; /* True for short guard interval */
unsigned greenfield:1; /* True for greenfield, short for mixed */
unsigned fec:1; /* FEC: 0 = BCC, 1 = LDPC */
unsigned stbc_streams:2; /* Number of STBC streams */
unsigned ness; /* Number of extension spatial streams */
};
/*
* Bandwidth values; used for both 11n and 11ac.
*/
#define PHDR_802_11_BANDWIDTH_20_MHZ 0 /* 20 MHz */
#define PHDR_802_11_BANDWIDTH_40_MHZ 1 /* 40 MHz */
#define PHDR_802_11_BANDWIDTH_20_20L 2 /* 20 + 20L, 40 MHz */
#define PHDR_802_11_BANDWIDTH_20_20U 3 /* 20 + 20U, 40 MHz */
#define PHDR_802_11_BANDWIDTH_80_MHZ 4 /* 80 MHz */
#define PHDR_802_11_BANDWIDTH_40_40L 5 /* 40 + 40L MHz, 80 MHz */
#define PHDR_802_11_BANDWIDTH_40_40U 6 /* 40 + 40U MHz, 80 MHz */
#define PHDR_802_11_BANDWIDTH_20LL 7 /* ???, 80 MHz */
#define PHDR_802_11_BANDWIDTH_20LU 8 /* ???, 80 MHz */
#define PHDR_802_11_BANDWIDTH_20UL 9 /* ???, 80 MHz */
#define PHDR_802_11_BANDWIDTH_20UU 10 /* ???, 80 MHz */
#define PHDR_802_11_BANDWIDTH_160_MHZ 11 /* 160 MHz */
#define PHDR_802_11_BANDWIDTH_80_80L 12 /* 80 + 80L, 160 MHz */
#define PHDR_802_11_BANDWIDTH_80_80U 13 /* 80 + 80U, 160 MHz */
#define PHDR_802_11_BANDWIDTH_40LL 14 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_40LU 15 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_40UL 16 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_40UU 17 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20LLL 18 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20LLU 19 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20LUL 20 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20LUU 21 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20ULL 22 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20ULU 23 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20UUL 24 /* ???, 160 MHz */
#define PHDR_802_11_BANDWIDTH_20UUU 25 /* ???, 160 MHz */
/*
* 802.11ac.
*/
struct ieee_802_11ac {
/* Which of this information is present? */
unsigned has_stbc:1;
unsigned has_txop_ps_not_allowed:1;
unsigned has_short_gi:1;
unsigned has_short_gi_nsym_disambig:1;
unsigned has_ldpc_extra_ofdm_symbol:1;
unsigned has_beamformed:1;
unsigned has_bandwidth:1;
unsigned has_fec:1;
unsigned has_group_id:1;
unsigned has_partial_aid:1;
unsigned stbc:1; /* 1 if all spatial streams have STBC */
unsigned txop_ps_not_allowed:1;
unsigned short_gi:1; /* True for short guard interval */
unsigned short_gi_nsym_disambig:1;
unsigned ldpc_extra_ofdm_symbol:1;
unsigned beamformed:1;
uint8_t bandwidth; /* Bandwidth = 20 MHz, 40 MHz, etc. */
uint8_t mcs[4]; /* MCS index per user */
uint8_t nss[4]; /* NSS per user */
uint8_t fec; /* Bit array of FEC per user: 0 = BCC, 1 = LDPC */
uint8_t group_id;
uint16_t partial_aid;
};
/*
* 802.11ad.
*/
/*
* Min and Max frequencies for 802.11ad and a macro for checking for 802.11ad.
*/
#define PHDR_802_11AD_MIN_FREQUENCY 57000
#define PHDR_802_11AD_MAX_FREQUENCY 71000
#define IS_80211AD(frequency) (((frequency) >= PHDR_802_11AD_MIN_FREQUENCY) &&\
((frequency) <= PHDR_802_11AD_MAX_FREQUENCY))
struct ieee_802_11ad {
/* Which of this information is present? */
unsigned has_mcs_index:1;
uint8_t mcs; /* MCS index */
};
/*
* 802.11ax (HE).
*/
struct ieee_802_11ax {
/* Which of this information is present? */
unsigned has_mcs_index:1;
unsigned has_bwru:1;
unsigned has_gi:1;
uint8_t nsts:4; /* Number of Space-time Streams */
uint8_t mcs:4; /* MCS index */
uint8_t bwru:4; /* Bandwidth/RU allocation */
uint8_t gi:2; /* Guard Interval */
};
/*
* 802.11be (EHT).
*/
struct ieee_802_11be_user_info {
unsigned sta_id_known:1;
unsigned mcs_known:1;
unsigned coding_known:1;
unsigned rsv_known:1;
unsigned nsts_known:1;
unsigned bf_known:1;
unsigned spatial_config_known:1;
unsigned data_for_this_user:1;
unsigned sta_id:11;
unsigned ldpc_coding:1;
unsigned mcs:4;
unsigned nsts:4;
unsigned rsv:1;
unsigned beamform:1;
unsigned rsv2:2;
};
#define PHDR_802_11BE_MAX_USERS 4
struct ieee_802_11be {
/* Which of this information is present? */
unsigned has_ru_mru_size:1;
unsigned has_gi:1;
unsigned has_bandwidth:1;
uint8_t bandwidth;
uint8_t ru_mru_size:4; /* RU/MRU allocation */
uint8_t gi:2; /* Guard Interval */
uint8_t num_users;
struct ieee_802_11be_user_info user[PHDR_802_11BE_MAX_USERS]; /* Adding info for only upto 4 users */
};
union ieee_802_11_phy_info {
struct ieee_802_11_fhss info_11_fhss;
struct ieee_802_11b info_11b;
struct ieee_802_11a info_11a;
struct ieee_802_11g info_11g;
struct ieee_802_11n info_11n;
struct ieee_802_11ac info_11ac;
struct ieee_802_11ad info_11ad;
struct ieee_802_11ax info_11ax;
struct ieee_802_11be info_11be;
};
struct ieee_802_11_phdr {
int fcs_len; /* Number of bytes of FCS - -1 means "unknown" */
unsigned decrypted:1; /* true if frame is decrypted even if "protected" bit is set */
unsigned datapad:1; /* true if frame has padding between 802.11 header and payload */
unsigned no_a_msdus:1; /* true if we should ignore the A-MSDU bit */
unsigned phy; /* PHY type */
union ieee_802_11_phy_info phy_info;
/* Which of this information is present? */
unsigned has_channel:1;
unsigned has_frequency:1;
unsigned has_data_rate:1;
unsigned has_signal_percent:1;
unsigned has_noise_percent:1;
unsigned has_signal_dbm:1;
unsigned has_noise_dbm:1;
unsigned has_signal_db:1;
unsigned has_noise_db:1;
unsigned has_tsf_timestamp:1;
unsigned has_aggregate_info:1; /* aggregate flags and ID */
unsigned has_zero_length_psdu_type:1; /* zero-length PSDU type */
uint16_t channel; /* Channel number */
uint32_t frequency; /* Channel center frequency */
uint16_t data_rate; /* Data rate, in .5 Mb/s units */
uint8_t signal_percent; /* Signal level, as a percentage */
uint8_t noise_percent; /* Noise level, as a percentage */
int8_t signal_dbm; /* Signal level, in dBm */
int8_t noise_dbm; /* Noise level, in dBm */
uint8_t signal_db; /* Signal level, in dB from an arbitrary point */
uint8_t noise_db; /* Noise level, in dB from an arbitrary point */
uint64_t tsf_timestamp;
uint32_t aggregate_flags; /* A-MPDU flags */
uint32_t aggregate_id; /* ID for A-MPDU reassembly */
uint8_t zero_length_psdu_type; /* type of zero-length PSDU */
};
/*
* A-MPDU flags.
*/
#define PHDR_802_11_LAST_PART_OF_A_MPDU 0x00000001 /* this is the last part of an A-MPDU */
#define PHDR_802_11_A_MPDU_DELIM_CRC_ERROR 0x00000002 /* delimiter CRC error after this part */
/*
* Zero-length PSDU types.
*/
#define PHDR_802_11_SOUNDING_PSDU 0 /* sounding PPDU */
#define PHDR_802_11_DATA_NOT_CAPTURED 1 /* data not captured, (e.g. multi-user PPDU) */
#define PHDR_802_11_0_LENGTH_PSDU_VENDOR_SPECIFIC 0xff
/* Packet "pseudo-header" for the output from CoSine L2 debug output. */
#define COSINE_MAX_IF_NAME_LEN 128
#define COSINE_ENCAP_TEST 1
#define COSINE_ENCAP_PPoATM 2
#define COSINE_ENCAP_PPoFR 3
#define COSINE_ENCAP_ATM 4
#define COSINE_ENCAP_FR 5
#define COSINE_ENCAP_HDLC 6
#define COSINE_ENCAP_PPP 7
#define COSINE_ENCAP_ETH 8
#define COSINE_ENCAP_UNKNOWN 99
#define COSINE_DIR_TX 1
#define COSINE_DIR_RX 2
struct cosine_phdr {
uint8_t encap; /* COSINE_ENCAP_* as defined above */
uint8_t direction; /* COSINE_DIR_*, as defined above */
char if_name[COSINE_MAX_IF_NAME_LEN]; /* Encap & Logical I/F name */
uint16_t pro; /* Protocol */
uint16_t off; /* Offset */
uint16_t pri; /* Priority */
uint16_t rm; /* Rate Marking */
uint16_t err; /* Error Code */
};
/* Packet "pseudo-header" for IrDA capture files. */
/*
* Direction of the packet
*/
#define IRDA_INCOMING 0x0000
#define IRDA_OUTGOING 0x0004
/*
* "Inline" log messages produced by IrCOMM2k on Windows
*/
#define IRDA_LOG_MESSAGE 0x0100 /* log message */
#define IRDA_MISSED_MSG 0x0101 /* missed log entry or frame */
/*
* Differentiate between frames and log messages
*/
#define IRDA_CLASS_FRAME 0x0000
#define IRDA_CLASS_LOG 0x0100
#define IRDA_CLASS_MASK 0xFF00
struct irda_phdr {
uint16_t pkttype; /* packet type */
};
/* Packet "pseudo-header" for nettl (HP-UX) capture files. */
struct nettl_phdr {
uint16_t subsys;
uint32_t devid;
uint32_t kind;
int32_t pid;
uint32_t uid;
};
/* Packet "pseudo-header" for MTP2 files. */
#define MTP2_ANNEX_A_NOT_USED 0
#define MTP2_ANNEX_A_USED 1
#define MTP2_ANNEX_A_USED_UNKNOWN 2
struct mtp2_phdr {
uint8_t sent;
uint8_t annex_a_used;
uint16_t link_number;
};
/* Packet "pseudo-header" for K12 files. */
typedef union {
struct {
uint16_t vp;
uint16_t vc;
uint16_t cid;
} atm;
uint32_t ds0mask;
} k12_input_info_t;
struct k12_phdr {
uint32_t input;
const char *input_name;
const char *stack_file;
uint32_t input_type;
k12_input_info_t input_info;
uint8_t *extra_info;
uint32_t extra_length;
void* stuff;
};
#define K12_PORT_DS0S 0x00010008
#define K12_PORT_DS1 0x00100008
#define K12_PORT_ATMPVC 0x01020000
struct lapd_phdr {
uint16_t pkttype; /* packet type */
uint8_t we_network;
};
struct wtap;
struct catapult_dct2000_phdr
{
union
{
struct isdn_phdr isdn;
struct atm_phdr atm;
struct p2p_phdr p2p;
} inner_pseudo_header;
int64_t seek_off;
struct wtap *wth;
};
/*
* Endace Record Format pseudo header
*/
struct erf_phdr {
uint64_t ts; /* Time stamp */
uint8_t type;
uint8_t flags;
uint16_t rlen;
uint16_t lctr;
uint16_t wlen;
};
struct erf_ehdr {
uint64_t ehdr;
};
/*
* ERF pseudo header with optional subheader
* (Multichannel or Ethernet)
*/
#define MAX_ERF_EHDR 16
struct wtap_erf_eth_hdr {
uint8_t offset;
uint8_t pad;
};
struct erf_mc_phdr {
struct erf_phdr phdr;
struct erf_ehdr ehdr_list[MAX_ERF_EHDR];
union
{
struct wtap_erf_eth_hdr eth_hdr;
uint32_t mc_hdr;
uint32_t aal2_hdr;
} subhdr;
};
#define SITA_FRAME_DIR_TXED (0x00) /* values of sita_phdr.flags */
#define SITA_FRAME_DIR_RXED (0x01)
#define SITA_FRAME_DIR (0x01) /* mask */
#define SITA_ERROR_NO_BUFFER (0x80)
#define SITA_SIG_DSR (0x01) /* values of sita_phdr.signals */
#define SITA_SIG_DTR (0x02)
#define SITA_SIG_CTS (0x04)
#define SITA_SIG_RTS (0x08)
#define SITA_SIG_DCD (0x10)
#define SITA_SIG_UNDEF1 (0x20)
#define SITA_SIG_UNDEF2 (0x40)
#define SITA_SIG_UNDEF3 (0x80)
#define SITA_ERROR_TX_UNDERRUN (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_TXED) */
#define SITA_ERROR_TX_CTS_LOST (0x02)
#define SITA_ERROR_TX_UART_ERROR (0x04)
#define SITA_ERROR_TX_RETX_LIMIT (0x08)
#define SITA_ERROR_TX_UNDEF1 (0x10)
#define SITA_ERROR_TX_UNDEF2 (0x20)
#define SITA_ERROR_TX_UNDEF3 (0x40)
#define SITA_ERROR_TX_UNDEF4 (0x80)
#define SITA_ERROR_RX_FRAMING (0x01) /* values of sita_phdr.errors1 (if SITA_FRAME_DIR_RXED) */
#define SITA_ERROR_RX_PARITY (0x02)
#define SITA_ERROR_RX_COLLISION (0x04)
#define SITA_ERROR_RX_FRAME_LONG (0x08)
#define SITA_ERROR_RX_FRAME_SHORT (0x10)
#define SITA_ERROR_RX_UNDEF1 (0x20)
#define SITA_ERROR_RX_UNDEF2 (0x40)
#define SITA_ERROR_RX_UNDEF3 (0x80)
#define SITA_ERROR_RX_NONOCTET_ALIGNED (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_RXED) */
#define SITA_ERROR_RX_ABORT (0x02)
#define SITA_ERROR_RX_CD_LOST (0x04)
#define SITA_ERROR_RX_DPLL (0x08)
#define SITA_ERROR_RX_OVERRUN (0x10)
#define SITA_ERROR_RX_FRAME_LEN_VIOL (0x20)
#define SITA_ERROR_RX_CRC (0x40)
#define SITA_ERROR_RX_BREAK (0x80)
#define SITA_PROTO_UNUSED (0x00) /* values of sita_phdr.proto */
#define SITA_PROTO_BOP_LAPB (0x01)
#define SITA_PROTO_ETHERNET (0x02)
#define SITA_PROTO_ASYNC_INTIO (0x03)
#define SITA_PROTO_ASYNC_BLKIO (0x04)
#define SITA_PROTO_ALC (0x05)
#define SITA_PROTO_UTS (0x06)
#define SITA_PROTO_PPP_HDLC (0x07)
#define SITA_PROTO_SDLC (0x08)
#define SITA_PROTO_TOKENRING (0x09)
#define SITA_PROTO_I2C (0x10)
#define SITA_PROTO_DPM_LINK (0x11)
#define SITA_PROTO_BOP_FRL (0x12)
struct sita_phdr {
uint8_t sita_flags;
uint8_t sita_signals;
uint8_t sita_errors1;
uint8_t sita_errors2;
uint8_t sita_proto;
};
/*pseudo header for Bluetooth HCI*/
struct bthci_phdr {
bool sent;
uint32_t channel;
};
#define BTHCI_CHANNEL_COMMAND 1
#define BTHCI_CHANNEL_ACL 2
#define BTHCI_CHANNEL_SCO 3
#define BTHCI_CHANNEL_EVENT 4
#define BTHCI_CHANNEL_ISO 5
/* pseudo header for WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR */
struct btmon_phdr {
uint16_t adapter_id;
uint16_t opcode;
};
/* pseudo header for WTAP_ENCAP_LAYER1_EVENT */
struct l1event_phdr {
bool uton;
};
/* * I2C pseudo header */
struct i2c_phdr {
uint8_t is_event;
uint8_t bus;
uint32_t flags;
};
/* pseudo header for WTAP_ENCAP_GSM_UM */
struct gsm_um_phdr {
bool uplink;
uint8_t channel;
/* The following are only populated for downlink */
uint8_t bsic;
uint16_t arfcn;
uint32_t tdma_frame;
uint8_t error;
uint16_t timeshift;
};
#define GSM_UM_CHANNEL_UNKNOWN 0
#define GSM_UM_CHANNEL_BCCH 1
#define GSM_UM_CHANNEL_SDCCH 2
#define GSM_UM_CHANNEL_SACCH 3
#define GSM_UM_CHANNEL_FACCH 4
#define GSM_UM_CHANNEL_CCCH 5
#define GSM_UM_CHANNEL_RACH 6
#define GSM_UM_CHANNEL_AGCH 7
#define GSM_UM_CHANNEL_PCH 8
/* Pseudo-header for nstrace packets */
struct nstr_phdr {
int64_t rec_offset;
int32_t rec_len;
uint8_t nicno_offset;
uint8_t nicno_len;
uint8_t dir_offset;
uint8_t dir_len;
uint16_t eth_offset;
uint8_t pcb_offset;
uint8_t l_pcb_offset;
uint8_t rec_type;
uint8_t vlantag_offset;
uint8_t coreid_offset;
uint8_t srcnodeid_offset;
uint8_t destnodeid_offset;
uint8_t clflags_offset;
uint8_t src_vmname_len_offset;
uint8_t dst_vmname_len_offset;
uint8_t ns_activity_offset;
uint8_t data_offset;
};
/* Packet "pseudo-header" for Nokia output */
struct nokia_phdr {
struct eth_phdr eth;
uint8_t stuff[4]; /* mysterious stuff */
};
#define LLCP_PHDR_FLAG_SENT 0
struct llcp_phdr {
uint8_t adapter;
uint8_t flags;
};
/* pseudo header for WTAP_ENCAP_LOGCAT */
struct logcat_phdr {
int version;
};
/* Packet "pseudo-header" information for header data from NetMon files. */
struct netmon_phdr {
uint8_t* title; /* Comment title, as a null-terminated UTF-8 string */
uint32_t descLength; /* Number of bytes in the comment description */
uint8_t* description; /* Comment description, in ASCII RTF */
unsigned sub_encap; /* "Real" encap value for the record that will be used once pseudo header data is display */
union sub_wtap_pseudo_header {
struct eth_phdr eth;
struct atm_phdr atm;
struct ieee_802_11_phdr ieee_802_11;
} subheader;
};
/* File "pseudo-header" for BER data files. */
struct ber_phdr {
const char *pathname; /* Path name of file. */
};
union wtap_pseudo_header {
struct eth_phdr eth;
struct dte_dce_phdr dte_dce;
struct isdn_phdr isdn;
struct atm_phdr atm;
struct ascend_phdr ascend;
struct p2p_phdr p2p;
struct ieee_802_11_phdr ieee_802_11;
struct cosine_phdr cosine;
struct irda_phdr irda;
struct nettl_phdr nettl;
struct mtp2_phdr mtp2;
struct k12_phdr k12;
struct lapd_phdr lapd;
struct catapult_dct2000_phdr dct2000;
struct erf_mc_phdr erf;
struct sita_phdr sita;
struct bthci_phdr bthci;
struct btmon_phdr btmon;
struct l1event_phdr l1event;
struct i2c_phdr i2c;
struct gsm_um_phdr gsm_um;
struct nstr_phdr nstr;
struct nokia_phdr nokia;
struct llcp_phdr llcp;
struct logcat_phdr logcat;
struct netmon_phdr netmon;
struct ber_phdr ber;
};
/*
* Record type values.
*
* This list will expand over time, so don't assume everything will
* forever be one of the types listed below.
*
* For file-type-specific records, the "ftsrec" field of the pseudo-header
* contains a file-type-specific subtype value, such as a block type for
* a pcapng file.
*
* An "event" is an indication that something happened during the capture
* process, such as a status transition of some sort on the network.
* These should, ideally, have a time stamp and, if they're relevant to
* a particular interface on a multi-interface capture, should also have
* an interface ID. The data for the event is file-type-specific and
* subtype-specific. These should be dissected and displayed just as
* packets are.
*
* A "report" supplies information not corresponding to an event;
* for example, a pcapng Interface Statistics Block would be a report,
* as it doesn't correspond to something happening on the network.
* They may have a time stamp, and should be dissected and displayed
* just as packets are.
*
* We distinguish between "events" and "reports" so that, for example,
* the packet display can show the delta between a packet and an event
* but not show the delta between a packet and a report, as the time
* stamp of a report may not correspond to anything interesting on
* the network but the time stamp of an event would.
*
* XXX - are there any file-type-specific records that *shouldn't* be
* dissected and displayed? If so, they should be parsed and the
* information in them stored somewhere, and used somewhere, whether
* it's just used when saving the file in its native format or also
* used to parse *other* file-type-specific records.
*
* These would be similar to, for example, pcapng Interface Description
* Blocks, for which the position within the file is significant only
* in that an IDB for an interface must appear before any packets from
* the interface; the fact that an IDB appears at some point doesn't
* necessarily mean something happened in the capture at that point.
* Name Resolution Blocks are another example of such a record.
*
* (XXX - if you want to have a record that says "this interface first
* showed up at this time", that needs to be a separate record type
* from the IDB. We *could* add a "New Interface Description Block",
* with a time stamp, for that purpose, but we'd *still* have to
* provide IDBs for those interfaces, for compatibility with programs
* that don't know about the NIDB. An ISB with only an isb_starttime
* option would suffice for this purpose, so nothing needs to be
* added to pcapng for this.)
*/
#define REC_TYPE_PACKET 0 /**< packet */
#define REC_TYPE_FT_SPECIFIC_EVENT 1 /**< file-type-specific event */
#define REC_TYPE_FT_SPECIFIC_REPORT 2 /**< file-type-specific report */
#define REC_TYPE_SYSCALL 3 /**< system call */
#define REC_TYPE_SYSTEMD_JOURNAL_EXPORT 4 /**< systemd journal entry */
#define REC_TYPE_CUSTOM_BLOCK 5 /**< pcapng custom block */
typedef struct {
uint32_t caplen; /* data length in the file */
uint32_t len; /* data length on the wire */
int pkt_encap; /* WTAP_ENCAP_ value for this packet */
/* pcapng variables */
uint32_t interface_id; /* identifier of the interface. */
/* options */
union wtap_pseudo_header pseudo_header;
} wtap_packet_header;
/*
* The pcapng specification says "The word is encoded as an unsigned
* 32-bit integer, using the endianness of the Section Header Block
* scope it is in. In the following table, the bits are numbered with
* 0 being the most-significant bit and 31 being the least-significant
* bit of the 32-bit unsigned integer."
*
* From that, the direction, in bits 0 and 1, is at the *top* of the word.
*
* However, several implementations, such as:
*
* the Wireshark pcapng file reading code;
*
* macOS libpcap and tcpdump;
*
* text2pcap;
*
* and probably the software that generated the capture in bug 11665;
*
* treat 0 as the *least*-significant bit and bit 31 being the *most*-
* significant bit of the flags word, and put the direction at the
* *bottom* of the word.
*
* For now, we go with the known implementations.
*/
/* Direction field of the packet flags */
#define PACK_FLAGS_DIRECTION_MASK 0x00000003 /* unshifted */
#define PACK_FLAGS_DIRECTION_SHIFT 0
#define PACK_FLAGS_DIRECTION(pack_flags) (((pack_flags) & PACK_FLAGS_DIRECTION_MASK) >> PACK_FLAGS_DIRECTION_SHIFT)
#define PACK_FLAGS_DIRECTION_UNKNOWN 0
#define PACK_FLAGS_DIRECTION_INBOUND 1
#define PACK_FLAGS_DIRECTION_OUTBOUND 2
/* Reception type field of the packet flags */
#define PACK_FLAGS_RECEPTION_TYPE_MASK 0x0000001C /* unshifted */
#define PACK_FLAGS_RECEPTION_TYPE_SHIFT 2
#define PACK_FLAGS_RECEPTION_TYPE(pack_flags) (((pack_flags) & PACK_FLAGS_RECEPTION_TYPE_MASK) >> PACK_FLAGS_RECEPTION_TYPE_SHIFT)
#define PACK_FLAGS_RECEPTION_TYPE_UNSPECIFIED 0
#define PACK_FLAGS_RECEPTION_TYPE_UNICAST 1
#define PACK_FLAGS_RECEPTION_TYPE_MULTICAST 2
#define PACK_FLAGS_RECEPTION_TYPE_BROADCAST 3
#define PACK_FLAGS_RECEPTION_TYPE_PROMISCUOUS 4
/* FCS length field of the packet flags */
#define PACK_FLAGS_FCS_LENGTH_MASK 0x000001E0 /* unshifted */
#define PACK_FLAGS_FCS_LENGTH_SHIFT 5
#define PACK_FLAGS_FCS_LENGTH(pack_flags) (((pack_flags) & PACK_FLAGS_FCS_LENGTH_MASK) >> PACK_FLAGS_FCS_LENGTH_SHIFT)
/* Reserved bits of the packet flags */
#define PACK_FLAGS_RESERVED_MASK 0x0000FE00
/* Link-layer-dependent errors of the packet flags */
/* For Ethernet and possibly some other network types */
#define PACK_FLAGS_CRC_ERROR 0x01000000
#define PACK_FLAGS_PACKET_TOO_LONG 0x02000000
#define PACK_FLAGS_PACKET_TOO_SHORT 0x04000000
#define PACK_FLAGS_WRONG_INTER_FRAME_GAP 0x08000000
#define PACK_FLAGS_UNALIGNED_FRAME 0x10000000
#define PACK_FLAGS_START_FRAME_DELIMITER_ERROR 0x20000000
#define PACK_FLAGS_PREAMBLE_ERROR 0x40000000
#define PACK_FLAGS_SYMBOL_ERROR 0x80000000
/* Construct a pack_flags value from its subfield values */
#define PACK_FLAGS_VALUE(direction, reception_type, fcs_length, ll_dependent_errors) \
(((direction) << 30) | \
((reception_type) << 27) | \
((fcs_length) << 23) | \
(ll_dependent_errors))
typedef struct {
int file_type_subtype; /* the type of file this is for */
unsigned record_type; /* the type of record this is - file type-specific value */
uint32_t record_len; /* length of the record */
} wtap_ft_specific_header;
typedef struct {
const char *pathname; /* Path name of file. */
unsigned record_type; /* XXX match ft_specific_record_phdr so that we chain off of packet-pcapng_block for now. */
int byte_order;
/* uint32_t sentinel; */
uint64_t timestamp; /* ns since epoch - XXX dup of ts */
uint64_t thread_id;
uint32_t event_len; /* length of the event (ppm event len) */
uint32_t event_data_len; /* length of the event data (ppm event len - ppm event header len) */
uint32_t nparams; /* number of parameters of the event */
uint32_t flags;
uint16_t event_type;
uint16_t cpu_id;
/* ... Event ... */
} wtap_syscall_header;
typedef struct {
uint32_t record_len; /* length of the record */
} wtap_systemd_journal_export_header;
typedef struct {
uint32_t pen; /* private enterprise number */
uint32_t length; /* length of the Custom Data plus options */
bool copy_allowed; /* CB can be written */
} wtap_custom_block_header;
/*
* The largest nstime.secs value that can be put into an unsigned
* 32-bit quantity.
*
* We assume that time_t is signed; it is signed on Windows/MSVC and
* on many UN*Xes.
*
* So, if time_t is 32-bit, we define this as INT32_MAX, as that's
* the largest value a time_t can have, and it fits in an unsigned
* 32-bit quantity. If it's 64-bit or larger, we define this as
* UINT32_MAX, as, even if it's signed, it can be as large as
* UINT32_MAX, and that's the largest value that can fit in
* a 32-bit unsigned quantity.
*
* Comparing against this, rather than against G_MAXINT2, when checking
* whether a time stamp will fit in a 32-bit unsigned integer seconds
* field in a capture file being written avoids signed vs. unsigned
* warnings if time_t is a signed 32-bit type.
*
* XXX - what if time_t is unsigned? Are there any platforms where
* it is?
*/
#define WTAP_NSTIME_32BIT_SECS_MAX ((time_t)(sizeof(time_t) > sizeof(int32_t) ? UINT32_MAX : INT32_MAX))
typedef struct wtap_rec {
unsigned rec_type; /* what type of record is this? */
uint32_t presence_flags; /* what stuff do we have? */
unsigned section_number; /* section, within file, containing this record */
nstime_t ts; /* time stamp */
int tsprec; /* WTAP_TSPREC_ value for this record */
nstime_t ts_rel_cap; /* time stamp relative from capture start */
bool ts_rel_cap_valid; /* is ts_rel_cap valid and can be used? */
const char *rec_type_name; /* name of this record type */
union {
wtap_packet_header packet_header;
wtap_ft_specific_header ft_specific_header;
wtap_syscall_header syscall_header;
wtap_systemd_journal_export_header systemd_journal_export_header;
wtap_custom_block_header custom_block_header;
} rec_header;
/*
* XXX - some if not all of the rec_header information may belong
* here, or may already be here. Eliminating rec_header in favor
* of this might simplify the process of adding new record/block
* types. For example, some of it might belong in block->mandatory_data.
*
* It also has a type field that's somewhat equivalent to rec_type.
*
* It's null for some record types.
*/
wtap_block_t block; /* block information */
bool block_was_modified; /* true if ANY aspect of the block has been modified */
/*
* We use a Buffer so that we don't have to allocate and free
* a buffer for the options for each record.
*/
Buffer options_buf; /* file-type specific data */
/* Buffer for the record data. */
Buffer data;
} wtap_rec;
/*
* Bits in presence_flags, indicating which of the fields we have.
*
* For the time stamp, we may need some more flags to indicate
* whether the time stamp is an absolute date-and-time stamp, an
* absolute time-only stamp (which can make relative time
* calculations tricky, as you could in theory have two time
* stamps separated by an unknown number of days), or a time stamp
* relative to some unspecified time in the past (see mpeg.c).
*
* There is no presence flag for len - there has to be *some* length
* value for the packet. (The "captured length" can be missing if
* the file format doesn't report a captured length distinct from
* the on-the-network length because the application(s) producing those
* files don't support slicing packets.)
*
* There could be a presence flag for the packet encapsulation - if it's
* absent, use the file encapsulation - but it's not clear that's useful;
* we currently do that in the module for the file format.
*
* Only WTAP_HAS_TS and WTAP_HAS_SECTION_NUMBER apply to all record types.
*/
#define WTAP_HAS_TS 0x00000001 /**< time stamp */
#define WTAP_HAS_CAP_LEN 0x00000002 /**< captured length separate from on-the-network length */
#define WTAP_HAS_INTERFACE_ID 0x00000004 /**< interface ID */
#define WTAP_HAS_SECTION_NUMBER 0x00000008 /**< section number */
/*
* The old max name length define, both for backwards compatibility and because
* other name types (in epan) use it. While Name Resolution Blocks (NRBs) only
* support IPv4 and IPv6 currently, they could later support other name types.
*/
#ifndef MAXNAMELEN
#define MAXNAMELEN 64 /* max name length (most names: DNS labels, services, eth) */
#endif
#ifndef MAXDNSNAMELEN
#define MAXDNSNAMELEN 256 /* max total length of a domain name in DNS */
#endif
typedef struct hashipv4 {
unsigned addr;
uint8_t flags; /* B0 dummy_entry, B1 resolve, B2 If the address is used in the trace */
char ip[WS_INET_ADDRSTRLEN];
char name[MAXDNSNAMELEN];
char cidr_addr[WS_INET_CIDRADDRSTRLEN];
} hashipv4_t;
typedef struct hashipv6 {
uint8_t addr[16];
uint8_t flags; /* B0 dummy_entry, B1 resolve, B2 If the address is used in the trace */
char ip6[WS_INET6_ADDRSTRLEN];
char name[MAXDNSNAMELEN];
} hashipv6_t;
/** A struct with lists of resolved addresses.
* Used when writing name resolutions blocks (NRB)
*/
typedef struct addrinfo_lists {
GList *ipv4_addr_list; /**< A list of resolved hashipv4_t*/
GList *ipv6_addr_list; /**< A list of resolved hashipv6_t*/
} addrinfo_lists_t;
/**
* Parameters for various wtap_dump_* functions, specifying per-file
* information. The structure itself is no longer used after returning
* from wtap_dump_*, but its pointer fields must remain valid until
* wtap_dump_close is called.
*
* @note The shb_hdr and idb_inf arguments will be used until
* wtap_dump_close() is called, but will not be free'd by the dumper. If
* you created them, you must free them yourself after wtap_dump_close().
* dsbs_initial will be unreferenced by wtap_dump_close(), so to reuse
* them for another dump file, call wtap_block_array_ref() before closing.
* dsbs_growing typically refers to another wth->dsbs.
* nrbs_growing typically refers to another wth->nrbs.
*
* @see wtap_dump_params_init, wtap_dump_params_cleanup.
*/
typedef struct wtap_dump_params {
int encap; /**< Per-file packet encapsulation, or WTAP_ENCAP_PER_PACKET */
int snaplen; /**< Per-file snapshot length (what if it's per-interface?) */
int tsprec; /**< Per-file time stamp precision */
GArray *shb_hdrs; /**< The section header block(s) information, or NULL. */
const GArray *shb_iface_to_global; /**< An array mapping the per-section interface numbers to global IDs
This array may grow after the dumper is opened if a new
section header is read. */
wtapng_iface_descriptions_t *idb_inf; /**< The interface description information, or NULL. */
const GArray *nrbs_growing; /**< NRBs that will be written while writing packets, or NULL.
This array may grow since the dumper was opened and will subsequently
be written before newer packets are written in wtap_dump. */
GArray *dsbs_initial; /**< The initial Decryption Secrets Block(s) to be written, or NULL. */
const GArray *dsbs_growing; /**< DSBs that will be written while writing packets, or NULL.
This array may grow since the dumper was opened and will subsequently
be written before newer packets are written in wtap_dump. */
const GArray *mevs_growing; /**< Meta events that will be written while writing packets, or NULL.
This array may grow since the dumper was opened and will subsequently
be written before newer packets are written in wtap_dump. */
const GArray *dpibs_growing; /**< DPIBs that will be written while writing packets, or NULL.
This array may grow since the dumper was opened and will subsequently
be written before newer packets are written in wtap_dump. */
bool dont_copy_idbs; /**< XXX - don't copy IDBs; this should eventually always be the case. */
} wtap_dump_params;
/* Zero-initializer for wtap_dump_params. */
#define WTAP_DUMP_PARAMS_INIT {.snaplen=0}
struct wtap_dumper;
typedef struct wtap wtap;
typedef struct wtap_dumper wtap_dumper;
typedef struct wtap_reader *FILE_T;
/* Similar to the wtap_open_routine_info for open routines, the following
* wtap_wslua_file_info struct is used by wslua code for Lua-based file writers.
*
* This concept is necessary because when wslua goes to invoke the
* registered dump/write_open routine callback in Lua, it needs the ref number representing
* the hooked function inside Lua. This will be stored in the thing pointed to
* by the void* data here. This 'data' pointer will be copied into the
* wtap_dumper struct's 'void* data' member when calling the dump_open function,
* which is how wslua finally retrieves it. Unlike wtap_dumper's 'priv' member, its
* 'data' member is not free'd in wtap_dump_close().
*/
typedef struct wtap_wslua_file_info {
int (*wslua_can_write_encap)(int, void*); /* a can_write_encap func for wslua uses */
void* wslua_data; /* holds the wslua data */
} wtap_wslua_file_info_t;
/*
* For registering extensions used for file formats.
*
* These items are used in dialogs for opening files, so that
* the user can ask to see all capture files (as identified
* by file extension) or particular types of capture files.
*
* Each item has a human-readable description of the file types
* (possibly more than one!) that use all of this set of extensions,
* a flag indicating whether it's a capture file or just some file
* whose contents we can dissect, and a list of extensions files of
* that type might have.
*
* Note that entries in this table do *not* necessarily correspoond
* to single file types; for example, the entry that lists just "cap"
* is for several file formats, all of which use the extension ".cap".
*
* Also note that a given extension may appear in multiple entries;
* for example, "cap" (again!) is in an entry for some file types
* that use only ".cap" and in entries for file types that use
* ".cap" and some other extensions, and ".trc" is used both for
* DOS Sniffer Token Ring captures ("trc") and EyeSDN USB ISDN
* trace files ("tr{a}c{e}").
*
* Some entries aren't for capture file types, they're just generic types,
* such as "text file" or "XML file", that can be used for, among other
* things, captures we can read, or for file formats we can read in
* order to dissect the contents of the file (think of this as "Fileshark",
* which is a program that we really should have). Those are marked
* specially, because, in file section dialogs, the user should be able
* to select "All Capture Files" and get a set of extensions that are
* associated with capture file formats, but not with files in other
* formats that might or might not contain captured packets (such as
* .txt or .xml") or formats that aren't capture files but that we
* support as "we're being Fileshark now" (such as .jpeg). The routine
* that constructs a list of extensions for "All Capture Files" omits
* extensions for those entries.
*/
struct file_extension_info {
/* the file type description */
const char *name;
/* true if this is a capture file type */
bool is_capture_file;
/* a semicolon-separated list of file extensions used for this type */
const char *extensions;
};
/*
* For registering file types that we can open.
*
* Each file type has an open routine.
*
* The open routine should return:
*
* WTAP_OPEN_ERROR on an I/O error;
*
* WTAP_OPEN_MINE if the file it's reading is one of the types
* it handles;
*
* WTAP_OPEN_NOT_MINE if the file it's reading isn't one of the
* types it handles.
*
* If the routine handles this type of file, it should set the
* "file_type_subtype" field in the "struct wtap" to the type of the file.
*
* Note that the routine does not have to free the private data pointer on
* error. The caller takes care of that by calling wtap_close on error.
* (See https://gitlab.com/wireshark/wireshark/-/issues/8518)
*
* However, the caller does have to free the private data pointer when
* returning WTAP_OPEN_NOT_MINE, since the next file type will be called
* and will likely just overwrite the pointer.
*/
typedef enum {
WTAP_OPEN_NOT_MINE = 0,
WTAP_OPEN_MINE = 1,
WTAP_OPEN_ERROR = -1
} wtap_open_return_val;
typedef wtap_open_return_val (*wtap_open_routine_t)(struct wtap*, int *,
char **);
/*
* Some file formats have defined magic numbers at fixed offsets from
* the beginning of the file; those routines should return 1 if and
* only if the file has the magic number at that offset. (pcapng
* is a bit of a special case, as it has both the Section Header Block
* type field and its byte-order magic field; it checks for both.)
* Those file formats do not require a file name extension in order
* to recognize them or to avoid recognizing other file types as that
* type, and have no extensions specified for them.
*
* Other file formats don't have defined magic numbers at fixed offsets,
* so a heuristic is required. If that file format has any file name
* extensions used for it, a list of those extensions should be
* specified, so that, if the name of the file being opened has an
* extension, the file formats that use that extension are tried before
* the ones that don't, to handle the case where a file of one type
* might be recognized by the heuristics for a different file type.
*/
typedef enum {
OPEN_INFO_MAGIC = 0,
OPEN_INFO_HEURISTIC = 1
} wtap_open_type;
WS_DLL_PUBLIC void init_open_routines(void);
void cleanup_open_routines(void);
/*
* Information about a given file type that applies to all subtypes of
* the file type.
*
* Each file type has:
*
* a human-readable description of the file type, for use in the
* user interface;
* a wtap_open_type indication of how the open routine
* determines whether a file is of that type;
* an open routine;
* an optional list of extensions used for this file type;
* data to be passed to Lua file readers - this should be NULL for
* non-Lua (C) file readers.
*
* The list of file extensions is used as a hint when calling open routines
* to open a file; heuristic open routines whose list of extensions includes
* the file's extension are called before heuristic open routines whose
* (possibly-empty) list of extensions doesn't contain the file's extension,
* to reduce the chances that a file will be misidentified due to an heuristic
* test with a weak heuristic being done before a heuristic test for the
* file's type.
*
* The list of extensions should be NULL for magic-number open routines,
* as it will not be used for any purpose (no such hinting is done).
*/
struct open_info {
const char *name; /* Description */
wtap_open_type type; /* Open routine type */
wtap_open_routine_t open_routine; /* Open routine */
const char *extensions; /* List of extensions used for this file type */
char **extensions_set; /* Array of those extensions; populated using extensions member during initialization */
void* wslua_data; /* Data for Lua file readers */
};
WS_DLL_PUBLIC struct open_info *open_routines;
/*
* Types of comments.
*/
#define WTAP_COMMENT_PER_SECTION 0x00000001 /* per-file/per-file-section */
#define WTAP_COMMENT_PER_INTERFACE 0x00000002 /* per-interface */
#define WTAP_COMMENT_PER_PACKET 0x00000004 /* per-packet */
/*
* For a given option type in a certain block type, does a file format
* not support it, support only one such option, or support multiple
* such options?
*/
typedef enum {
OPTION_NOT_SUPPORTED,
ONE_OPTION_SUPPORTED,
MULTIPLE_OPTIONS_SUPPORTED
} option_support_t;
/*
* Entry in a table of supported option types.
*/
struct supported_option_type {
unsigned opt;
option_support_t support; /* OPTION_NOT_SUPPORTED allowed, equivalent to absence */
};
#define OPTION_TYPES_SUPPORTED(option_type_array) \
array_length(option_type_array), option_type_array
#define NO_OPTIONS_SUPPORTED \
0, NULL
/*
* For a given block type, does a file format not support it, support
* only one such block, or support multiple such blocks?
*/
typedef enum {
BLOCK_NOT_SUPPORTED,
ONE_BLOCK_SUPPORTED,
MULTIPLE_BLOCKS_SUPPORTED
} block_support_t;
/*
* Entry in a table of supported block types.
*/
struct supported_block_type {
wtap_block_type_t type;
block_support_t support; /* BLOCK_NOT_SUPPORTED allowed, equivalent to absence */
size_t num_supported_options;
const struct supported_option_type *supported_options;
};
#define BLOCKS_SUPPORTED(block_type_array) \
array_length(block_type_array), block_type_array
struct file_type_subtype_info {
/**
* The file type description.
*/
const char *description;
/**
* The file type name, used to look up file types by name, e.g.
* looking up a file type specified as a command-line argument.
*/
const char *name;
/**
* The default file extension, used to save this type.
* Should be NULL if no default extension is known.
*/
const char *default_file_extension;
/**
* A semicolon-separated list of additional file extensions
* used for this type.
* Should be NULL if no extensions, or no extensions other
* than the default extension, are known.
*/
const char *additional_file_extensions;
/**
* When writing this file format, is seeking required?
*/
bool writing_must_seek;
/**
* Number of block types supported.
*/
size_t num_supported_blocks;
/**
* Table of block types supported.
*/
const struct supported_block_type *supported_blocks;
/**
* Can this type write this encapsulation format?
* Should be NULL is this file type doesn't have write support.
*
* XXX - This returns an int because it can return err codes,
* specifically WTAP_ERR_CHECK_WSLUA (instead of having an
* int *err parameter like the other functions.)
*/
int (*can_write_encap)(int);
/**
* The function to open the capture file for writing.
* Should be NULL if this file type doesn't have write support.
*/
bool (*dump_open)(wtap_dumper *, int *, char **);
/**
* If can_write_encap returned WTAP_ERR_CHECK_WSLUA, then this is used instead.
* This should be NULL for everyone except Lua-based file writers.
*/
wtap_wslua_file_info_t *wslua_info;
};
#define WTAP_TYPE_AUTO 0
/**
* @brief Initialize the Wiretap library.
*
* @param load_wiretap_plugins Load Wiretap plugins when initializing library.
*/
WS_DLL_PUBLIC
void wtap_init(bool load_wiretap_plugins);
/** On failure, "wtap_open_offline()" returns NULL, and puts into the
* "int" pointed to by its second argument:
*
* @param filename Name of the file to open
* @param type WTAP_TYPE_AUTO for automatic recognize file format or explicit choose format type
* @param[out] err a positive "errno" value if the capture file can't be opened;
* a negative number, indicating the type of error, on other failures.
* @param[out] err_info for some errors, a string giving more details of
* the error
* @param do_random true if random access to the file will be done,
* false if not
*/
WS_DLL_PUBLIC
struct wtap* wtap_open_offline(const char *filename, unsigned int type, int *err,
char **err_info, bool do_random);
/**
* If we were compiled with zlib and we're at EOF, unset EOF so that
* wtap_read/gzread has a chance to succeed. This is necessary if
* we're tailing a file.
*/
WS_DLL_PUBLIC
void wtap_cleareof(wtap *wth);
/**
* Set callback functions to add new hostnames. Currently pcapng-only.
* MUST match add_ipv4_name and add_ipv6_name in addr_resolv.c.
*/
typedef void (*wtap_new_ipv4_callback_t) (const unsigned addr, const char *name, const bool static_entry);
WS_DLL_PUBLIC
void wtap_set_cb_new_ipv4(wtap *wth, wtap_new_ipv4_callback_t add_new_ipv4);
typedef void (*wtap_new_ipv6_callback_t) (const ws_in6_addr *addrp, const char *name, const bool static_entry);
WS_DLL_PUBLIC
void wtap_set_cb_new_ipv6(wtap *wth, wtap_new_ipv6_callback_t add_new_ipv6);
/**
* Set callback function to receive new decryption secrets for a particular
* secrets type (as defined in secrets-types.h). Currently pcapng-only.
*/
typedef void (*wtap_new_secrets_callback_t)(uint32_t secrets_type, const void *secrets, unsigned size);
WS_DLL_PUBLIC
void wtap_set_cb_new_secrets(wtap *wth, wtap_new_secrets_callback_t add_new_secrets);
/** Read the next record in the file, filling in *phdr and *buf.
*
* @wth a wtap * returned by a call that opened a file for reading.
* @rec a pointer to a wtap_rec, filled in with information about the
* record and the data from the record.
* @param err a positive "errno" value, or a negative number indicating
* the type of error, if the read failed.
* @param err_info for some errors, a string giving more details of
* the error
* @param offset a pointer to a int64_t, set to the offset in the file
* that should be used on calls to wtap_seek_read() to reread that record,
* if the read succeeded.
* @return true on success, false on failure.
*/
WS_DLL_PUBLIC
bool wtap_read(wtap *wth, wtap_rec *rec, int *err, char **err_info,
int64_t *offset);
/** Read the record at a specified offset in a capture file, filling in
* *phdr and *buf.
*
* @wth a wtap * returned by a call that opened a file for random-access
* reading.
* @seek_off a int64_t giving an offset value returned by a previous
* wtap_read() call.
* @rec a pointer to a struct wtap_rec, filled in with information
* about the record and the data from the record.
* @param err a positive "errno" value, or a negative number indicating
* the type of error, if the read failed.
* @param err_info for some errors, a string giving more details of
* the error
* @return true on success, false on failure.
*/
WS_DLL_PUBLIC
bool wtap_seek_read(wtap *wth, int64_t seek_off, wtap_rec *rec,
int *err, char **err_info);
/*** initialize a wtap_rec structure ***/
WS_DLL_PUBLIC
void wtap_rec_init(wtap_rec *rec, gsize space);
/*** Apply a snapshot value ***/
WS_DLL_PUBLIC
void wtap_rec_apply_snapshot(wtap_rec *rec, uint32_t snaplen);
/*** Re-initialize a wtap_rec structure ***/
WS_DLL_PUBLIC
void wtap_rec_reset(wtap_rec *rec);
/*** clean up a wtap_rec structure, freeing what wtap_rec_init() allocated */
WS_DLL_PUBLIC
void wtap_rec_cleanup(wtap_rec *rec);
/**
* Return an error string for WTAP_ERR_UNWRITABLE_REC_TYPE.
*/
WS_DLL_PUBLIC
char *wtap_unwritable_rec_type_err_string(const wtap_rec *rec);
/**
* Set up a wtap_rec for a packet (REC_TYPE_PACKET).
*/
WS_DLL_PUBLIC
void wtap_setup_packet_rec(wtap_rec *rec, int encap);
/**
* Set up a wtap_rec for a file-type specific event
* (REC_TYPE_FT_SPECIFIC_EVENT);
*/
WS_DLL_PUBLIC
void wtap_setup_ft_specific_event_rec(wtap_rec *rec, int file_type_subtype,
unsigned record_type);
/**
* Set up a wtap_rec for a file-type specific report
* (REC_TYPE_FT_SPECIFIC_REPORT);
*/
WS_DLL_PUBLIC
void wtap_setup_ft_specific_report_rec(wtap_rec *rec, int file_type_subtype,
unsigned record_type);
/**
* Set up a wtap_rec for a system call (REC_TYPE_SYSCALL).
*/
WS_DLL_PUBLIC
void wtap_setup_syscall_rec(wtap_rec *rec);
/**
* Set up a wtap_rec for a systemd journal export entry
* (REC_TYPE_SYSTEMD_JOURNAL_EXPORT).
*/
WS_DLL_PUBLIC
void wtap_setup_systemd_journal_export_rec(wtap_rec *rec);
/**
* Set up a wtap_rec for a custom block (REC_TYPE_CUSTOM_BLOCK).
*/
WS_DLL_PUBLIC
void wtap_setup_custom_block_rec(wtap_rec *rec, uint32_t pen,
uint32_t payload_length, bool copy_allowed);
/*
* Types of compression for a file, including "none".
*/
typedef enum {
WTAP_UNCOMPRESSED,
WTAP_GZIP_COMPRESSED,
WTAP_ZSTD_COMPRESSED,
WTAP_LZ4_COMPRESSED,
WTAP_UNKNOWN_COMPRESSION,
} wtap_compression_type;
WS_DLL_PUBLIC
wtap_compression_type wtap_get_compression_type(wtap *wth);
WS_DLL_PUBLIC
wtap_compression_type wtap_name_to_compression_type(const char *name);
WS_DLL_PUBLIC
wtap_compression_type wtap_extension_to_compression_type(const char *ext);
WS_DLL_PUBLIC
const char *wtap_compression_type_description(wtap_compression_type compression_type);
WS_DLL_PUBLIC
const char *wtap_compression_type_extension(wtap_compression_type compression_type);
WS_DLL_PUBLIC
const char *wtap_compression_type_name(wtap_compression_type compression_type);
WS_DLL_PUBLIC
GSList *wtap_get_all_compression_type_extensions_list(void);
WS_DLL_PUBLIC
GSList *wtap_get_all_output_compression_type_names_list(void);
WS_DLL_PUBLIC
bool wtap_can_write_compression_type(wtap_compression_type compression_type);
/*** get various information snippets about the current file ***/
/** Return an approximation of the amount of data we've read sequentially
* from the file so far. */
WS_DLL_PUBLIC
int64_t wtap_read_so_far(wtap *wth);
WS_DLL_PUBLIC
int64_t wtap_file_size(wtap *wth, int *err);
WS_DLL_PUBLIC
unsigned wtap_snapshot_length(wtap *wth); /* per file */
WS_DLL_PUBLIC
int wtap_file_type_subtype(wtap *wth);
WS_DLL_PUBLIC
int wtap_file_encap(wtap *wth);
WS_DLL_PUBLIC
int wtap_file_tsprec(wtap *wth);
/**
* @brief Gets number of section header blocks.
* @details Returns the number of existing SHBs.
*
* @param wth The wiretap session.
* @return The number of existing section headers.
*/
WS_DLL_PUBLIC
unsigned wtap_file_get_num_shbs(wtap *wth);
/**
* @brief Gets existing section header block, not for new file.
* @details Returns the pointer to an existing SHB, without creating a
* new one. This should only be used for accessing info, not
* for creating a new file based on existing SHB info. Use
* wtap_file_get_shb_for_new_file() for that.
*
* @param wth The wiretap session.
* @param shb_num The ordinal number (0-based) of the section header
* in the file
* @return The specified existing section header, which must NOT be g_free'd.
*/
WS_DLL_PUBLIC
wtap_block_t wtap_file_get_shb(wtap *wth, unsigned shb_num);
/**
* @brief Sets or replaces the section header comment.
* @details The passed-in comment string is set to be the comment
* for the section header block. The passed-in string's
* ownership will be owned by the block, so it should be
* duplicated before passing into this function.
*
* @param wth The wiretap session.
* @param comment The comment string.
*/
WS_DLL_PUBLIC
void wtap_write_shb_comment(wtap *wth, char *comment);
/**
* @brief Gets the unique interface id for a SHB's interface
* @details Given an existing SHB number and an interface ID within
* that section, returns the unique ordinal number (0-based)
* of that interface over the entire wiretap session.
*
* @param wth The wiretap session.
* @param shb_num The ordinal number (0-based) of a section header
* @param interface_id An interface id within the section
* @return The unique wtap session-wide interface id for that interface
*/
WS_DLL_PUBLIC
unsigned wtap_file_get_shb_global_interface_id(wtap *wth, unsigned shb_num, uint32_t interface_id);
/**
* @brief Gets existing interface descriptions.
* @details Returns a new struct containing a pointer to the existing
* description, without creating new descriptions internally.
* @note The returned pointer must be g_free'd, but its internal
* interface_data must not.
*
* @param wth The wiretap session.
* @return A new struct of the existing section descriptions, which must be g_free'd.
*/
WS_DLL_PUBLIC
wtapng_iface_descriptions_t *wtap_file_get_idb_info(wtap *wth);
WS_DLL_PUBLIC
wtapng_dpib_lookup_info_t * wtap_file_get_dpib_lookup_info(wtap *wth);
/**
* @brief Gets next interface description.
*
* @details This returns the first unfetched wtap_block_t from the set
* of interface descriptions. Returns NULL if there are no more
* unfetched interface descriptions; a subsequent call after
* wtap_read() returns, either with a new record or an EOF, may return
* another interface description.
*/
WS_DLL_PUBLIC
wtap_block_t wtap_get_next_interface_description(wtap *wth);
/**
* @brief Free's a interface description block and all of its members.
*
* @details This free's all of the interface descriptions inside the passed-in
* struct, including their members (e.g., comments); and then free's the
* passed-in struct as well.
*
* @warning Do not use this for the struct returned by
* wtap_file_get_idb_info(), as that one did not create the internal
* interface descriptions; for that case you can simply g_free() the new
* struct.
*/
WS_DLL_PUBLIC
void wtap_free_idb_info(wtapng_iface_descriptions_t *idb_info);
/**
* @brief Gets a debug string of an interface description.
* @details Returns a newly allocated string of debug information about
* the given interface descrption, useful for debugging.
* @note The returned pointer must be g_free'd.
*
* @param if_descr The interface description.
* @param indent Number of spaces to indent each line by.
* @param line_end A string to append to each line (e.g., "\n" or ", ").
* @return A newly allocated gcahr array string, which must be g_free'd.
*/
WS_DLL_PUBLIC
char *wtap_get_debug_if_descr(const wtap_block_t if_descr,
const int indent,
const char* line_end);
/**
* @brief Gets existing name resolution block, not for new file.
* @details Returns the pointer to the existing NRB, without creating a
* new one. This should only be used for accessing info, not
* for creating a new file based on existing NRB info. Use
* wtap_file_get_nrb_for_new_file() for that.
*
* @param wth The wiretap session.
* @return The existing section header, which must NOT be g_free'd.
*
* XXX - need to be updated to handle multiple NRBs.
*/
WS_DLL_PUBLIC
wtap_block_t wtap_file_get_nrb(wtap *wth);
/**
* @brief Gets number of decryption secrets blocks.
* @details Returns the number of existing DSBs.
*
* @param wth The wiretap session.
* @return The number of existing decryption secrets blocks.
*/
WS_DLL_PUBLIC
unsigned wtap_file_get_num_dsbs(wtap *wth);
/**
* @brief Gets existing decryption secrets block, not for new file.
* @details Returns the pointer to an existing DSB, without creating a
* new one. This should only be used for accessing info.
*
* @param wth The wiretap session.
* @param dsb_num The ordinal number (0-based) of the decryption secrets block
* in the file
* @return The specified existing decryption secrets block, which must NOT be g_free'd.
*/
WS_DLL_PUBLIC
wtap_block_t wtap_file_get_dsb(wtap *wth, unsigned dsb_num);
/**
* @brief Adds a Decryption Secrets Block to the open wiretap session.
* @details The passed-in DSB is added to the DSBs for the current
* session.
*
* @param wth The wiretap session.
* @param dsb The Decryption Secrets Block to add
*/
WS_DLL_PUBLIC
void wtap_file_add_decryption_secrets(wtap *wth, const wtap_block_t dsb);
/**
* Remove any decryption secret information from the per-file information;
* used if we're stripping decryption secrets while the file is open
*
* @param wth The wiretap session from which to remove the
* decryption secrets.
* @return true if any DSBs were removed
*/
WS_DLL_PUBLIC
bool wtap_file_discard_decryption_secrets(wtap *wth);
/*** close the file descriptors for the current file ***/
WS_DLL_PUBLIC
void wtap_fdclose(wtap *wth);
/*** reopen the random file descriptor for the current file ***/
WS_DLL_PUBLIC
bool wtap_fdreopen(wtap *wth, const char *filename, int *err);
/** Close only the sequential side, freeing up memory it uses. */
WS_DLL_PUBLIC
void wtap_sequential_close(wtap *wth);
/** Closes any open file handles and frees the memory associated with wth. */
WS_DLL_PUBLIC
void wtap_close(wtap *wth);
/*** dump packets into a capture file ***/
WS_DLL_PUBLIC
bool wtap_dump_can_open(int filetype);
/**
* Given a GArray of WTAP_ENCAP_ types, return the per-file encapsulation
* type that would be needed to write out a file with those types.
*/
WS_DLL_PUBLIC
int wtap_dump_required_file_encap_type(const GArray *file_encaps);
/**
* Return true if we can write this encapsulation type in this
* capture file type/subtype, false if not.
*/
WS_DLL_PUBLIC
bool wtap_dump_can_write_encap(int file_type_subtype, int encap);
/**
* Return true if we can write this capture file type/subtype out in
* compressed form, false if not.
*/
WS_DLL_PUBLIC
bool wtap_dump_can_compress(int file_type_subtype);
/**
* Initialize the per-file information based on an existing file. Its
* contents must be freed according to the requirements of wtap_dump_params.
* If wth does not remain valid for the duration of the session, dsbs_growing
* MUST be cleared after this function.
*
* @param params The parameters for wtap_dump_* to initialize.
* @param wth The wiretap session.
*/
WS_DLL_PUBLIC
void wtap_dump_params_init(wtap_dump_params *params, wtap *wth);
/**
* Initialize the per-file information based on an existing file, but
* don't copy over the interface information. Its contents must be freed
* according to the requirements of wtap_dump_params.
* If wth does not remain valid for the duration of the session, dsbs_growing
* MUST be cleared after this function.
*
* XXX - this should eventually become wtap_dump_params_init(), with all
* programs writing capture files copying IDBs over by hand, so that they
* handle IDBs in the middle of the file.
*
* @param params The parameters for wtap_dump_* to initialize.
* @param wth The wiretap session.
*/
WS_DLL_PUBLIC
void wtap_dump_params_init_no_idbs(wtap_dump_params *params, wtap *wth);
/**
* Remove any name resolution information from the per-file information;
* used if we're stripping name resolution as we write the file.
*
* @param params The parameters for wtap_dump_* from which to remove the
* name resolution..
*/
WS_DLL_PUBLIC
void wtap_dump_params_discard_name_resolution(wtap_dump_params *params);
/**
* Remove any decryption secret information from the per-file information;
* used if we're stripping decryption secrets as we write the file.
*
* @param params The parameters for wtap_dump_* from which to remove the
* decryption secrets..
*/
WS_DLL_PUBLIC
void wtap_dump_params_discard_decryption_secrets(wtap_dump_params *params);
/**
* Free memory associated with the wtap_dump_params when it is no longer in
* use by wtap_dumper.
*
* @param params The parameters as initialized by wtap_dump_params_init.
*/
WS_DLL_PUBLIC
void wtap_dump_params_cleanup(wtap_dump_params *params);
/**
* @brief Opens a new capture file for writing.
*
* @param filename The new file's name.
* @param file_type_subtype The WTAP_FILE_TYPE_SUBTYPE_XXX file type.
* @param compression_type Type of compression to use when writing, if any
* @param params The per-file information for this file.
* @param[out] err Will be set to an error code on failure.
* @param[out] err_info for some errors, a string giving more details of
* the error
* @return The newly created dumper object, or NULL on failure.
*/
WS_DLL_PUBLIC
wtap_dumper* wtap_dump_open(const char *filename, int file_type_subtype,
wtap_compression_type compression_type, const wtap_dump_params *params,
int *err, char **err_info);
/**
* @brief Creates a dumper for a temporary file.
*
* @param tmpdir Directory in which to create the temporary file.
* @param filenamep Points to a pointer that's set to point to the
* pathname of the temporary file; it's allocated with g_malloc()
* @param pfx A string to be used as the prefix for the temporary file name
* @param file_type_subtype The WTAP_FILE_TYPE_SUBTYPE_XXX file type.
* @param compression_type Type of compression to use when writing, if any
* @param params The per-file information for this file.
* @param[out] err Will be set to an error code on failure.
* @param[out] err_info for some errors, a string giving more details of
* the error
* @return The newly created dumper object, or NULL on failure.
*/
WS_DLL_PUBLIC
wtap_dumper* wtap_dump_open_tempfile(const char *tmpdir, char **filenamep,
const char *pfx,
int file_type_subtype, wtap_compression_type compression_type,
const wtap_dump_params *params, int *err, char **err_info);
/**
* @brief Creates a dumper for an existing file descriptor.
*
* @param fd The file descriptor for which the dumper should be created.
* @param file_type_subtype The WTAP_FILE_TYPE_SUBTYPE_XXX file type.
* @param compression_type Type of compression to use when writing, if any
* @param params The per-file information for this file.
* @param[out] err Will be set to an error code on failure.
* @param[out] err_info for some errors, a string giving more details of
* the error
* @return The newly created dumper object, or NULL on failure.
*/
WS_DLL_PUBLIC
wtap_dumper* wtap_dump_fdopen(int fd, int file_type_subtype,
wtap_compression_type compression_type, const wtap_dump_params *params,
int *err, char **err_info);
/**
* @brief Creates a dumper for the standard output.
*
* @param file_type_subtype The WTAP_FILE_TYPE_SUBTYPE_XXX file type.
* @param compression_type Type of compression to use when writing, if any
* @param params The per-file information for this file.
* @param[out] err Will be set to an error code on failure.
* @param[out] err_info for some errors, a string giving more details of
* the error
* @return The newly created dumper object, or NULL on failure.
*/
WS_DLL_PUBLIC
wtap_dumper* wtap_dump_open_stdout(int file_type_subtype,
wtap_compression_type compression_type, const wtap_dump_params *params,
int *err, char **err_info);
/*
* Add an IDB to the list of IDBs for a file we're writing.
* Makes a copy of the IDB, so it can be freed after this call is made.
*
* @param wdh handle for the file we're writing.
* @param idb the IDB to add
* @param[out] err Will be set to an error code on failure.
* @param[out] err_info for some errors, a string giving more details of
* the error.
* @return true on success, false on failure.
*/
WS_DLL_PUBLIC
bool wtap_dump_add_idb(wtap_dumper *wdh, wtap_block_t idb, int *err,
char **err_info);
WS_DLL_PUBLIC
bool wtap_dump(wtap_dumper *, const wtap_rec *, int *err, char **err_info);
WS_DLL_PUBLIC
bool wtap_dump_flush(wtap_dumper *, int *);
WS_DLL_PUBLIC
int wtap_dump_file_type_subtype(const wtap_dumper *wdh);
WS_DLL_PUBLIC
int64_t wtap_get_bytes_dumped(const wtap_dumper *);
WS_DLL_PUBLIC
void wtap_set_bytes_dumped(wtap_dumper *wdh, int64_t bytes_dumped);
struct addrinfo;
WS_DLL_PUBLIC
bool wtap_addrinfo_list_empty(const addrinfo_lists_t *addrinfo_lists);
WS_DLL_PUBLIC
bool wtap_dump_set_addrinfo_list(wtap_dumper *wdh, addrinfo_lists_t *addrinfo_lists);
WS_DLL_PUBLIC
void wtap_dump_discard_name_resolution(wtap_dumper *wdh);
WS_DLL_PUBLIC
void wtap_dump_discard_decryption_secrets(wtap_dumper *wdh);
/**
* Closes open file handles and frees memory associated with wdh. Note that
* shb_hdr and idb_inf are not freed by this routine.
*
* @param wdh handle for the file we're closing.
* @param[out] needs_reload if not null, points to a bool that will
* be set to true if a full reload of the file would be required if
* this was done as part of a "Save" or "Save As" operation, false
* if no full reload would be required.
* @param[out] err points to an int that will be set to an error code
* on failure.
* @param[out] err_info for some errors, points to a char * that will
* be set to a string giving more details of the error.
*
* @return true on success, false on failure.
*/
WS_DLL_PUBLIC
bool wtap_dump_close(wtap_dumper *wdh, bool *needs_reload,
int *err, char **err_info);
/**
* Return true if we can write a file out with the given GArray of file
* encapsulations and the given bitmask of comment types.
*/
WS_DLL_PUBLIC
bool wtap_dump_can_write(const GArray *file_encaps, uint32_t required_comment_types);
/**
* Generates arbitrary packet data in "exported PDU" format
* and appends it to buf.
* For filetype readers to transform non-packetized data.
* Calls ws_buffer_asssure_space() for you and handles padding
* to 4-byte boundary.
*
* @param[in,out] buf Buffer into which to write field
* @param epdu_tag tag ID of field to create
* @param data data to be written
* @param data_len length of data
*/
WS_DLL_PUBLIC
void wtap_buffer_append_epdu_tag(Buffer *buf, uint16_t epdu_tag, const uint8_t *data, uint16_t data_len);
/**
* Generates packet data for an unsigned integer in "exported PDU" format.
* For filetype readers to transform non-packetized data.
*
* @param[in,out] buf Buffer into which to write field
* @param epdu_tag tag ID of field to create
* @param val integer value to write to buf
*/
WS_DLL_PUBLIC
void wtap_buffer_append_epdu_uint(Buffer *buf, uint16_t epdu_tag, uint32_t val);
/**
* Generates packet data for a string in "exported PDU" format.
* For filetype readers to transform non-packetized data.
*
* @param[in,out] buf Buffer into which to write field
* @param epdu_tag tag ID of field to create
* @param val string value to write to buf
*/
WS_DLL_PUBLIC
void wtap_buffer_append_epdu_string(Buffer *buf, uint16_t epdu_tag, const char *val);
/**
* Close off a set of "exported PDUs" added to the buffer.
* For filetype readers to transform non-packetized data.
*
* @param[in,out] buf Buffer into which to write field
*
* @return Total length of buf populated to date
*/
WS_DLL_PUBLIC
int wtap_buffer_append_epdu_end(Buffer *buf);
/*
* Sort the file types by name or by description?
*/
typedef enum {
FT_SORT_BY_NAME,
FT_SORT_BY_DESCRIPTION
} ft_sort_order;
/**
* Get a GArray of file type/subtype values for file types/subtypes
* that can be used to save a file of a given type with a given GArray of
* WTAP_ENCAP_ types and the given bitmask of comment types.
*/
WS_DLL_PUBLIC
GArray *wtap_get_savable_file_types_subtypes_for_file(int file_type_subtype,
const GArray *file_encaps, uint32_t required_comment_types,
ft_sort_order sort_order);
/**
* Get a GArray of all writable file type/subtype values.
*/
WS_DLL_PUBLIC
GArray *wtap_get_writable_file_types_subtypes(ft_sort_order sort_order);
/*** various file type/subtype functions ***/
WS_DLL_PUBLIC
const char *wtap_file_type_subtype_description(int file_type_subtype);
WS_DLL_PUBLIC
const char *wtap_file_type_subtype_name(int file_type_subtype);
WS_DLL_PUBLIC
int wtap_name_to_file_type_subtype(const char *name);
WS_DLL_PUBLIC
int wtap_pcap_file_type_subtype(void);
WS_DLL_PUBLIC
int wtap_pcap_nsec_file_type_subtype(void);
WS_DLL_PUBLIC
int wtap_pcapng_file_type_subtype(void);
/**
* Return an indication of whether this capture file format supports
* the block in question.
*/
WS_DLL_PUBLIC
block_support_t wtap_file_type_subtype_supports_block(int file_type_subtype,
wtap_block_type_t type);
/**
* Return an indication of whether this capture file format supports
* the option in queston for the block in question.
*/
WS_DLL_PUBLIC
option_support_t wtap_file_type_subtype_supports_option(int file_type_subtype,
wtap_block_type_t type, unsigned opttype);
/* Return a list of all extensions that are used by all capture file
* types, including compressed extensions, e.g. not just "pcap" but
* also "pcap.gz" if we can read gzipped files.
*
* "Capture files" means "include file types that correspond to
* collections of network packets, but not file types that
* store data that just happens to be transported over protocols
* such as HTTP but that aren't collections of network packets",
* so that it could be used for "All Capture Files" without picking
* up JPEG files or files such as that - those aren't capture files,
* and we *do* have them listed in the long list of individual file
* types, so omitting them from "All Capture Files" is the right
* thing to do.
*
* All strings in the list are allocated with g_malloc() and must be freed
* with g_free().
*
* This is used to generate a list of extensions to look for if the user
* chooses "All Capture Files" in a file open dialog.
*/
WS_DLL_PUBLIC
GSList *wtap_get_all_capture_file_extensions_list(void);
/* Return a list of all extensions that are used by all file types that
* we can read, including compressed extensions, e.g. not just "pcap" but
* also "pcap.gz" if we can read gzipped files.
*
* "File type" means "include file types that correspond to collections
* of network packets, as well as file types that store data that just
* happens to be transported over protocols such as HTTP but that aren't
* collections of network packets, and plain text files".
*
* All strings in the list are allocated with g_malloc() and must be freed
* with g_free().
*/
WS_DLL_PUBLIC
GSList *wtap_get_all_file_extensions_list(void);
/*
* Free a list returned by wtap_get_file_extension_type_extensions(),
* wtap_get_all_capture_file_extensions_list, wtap_get_file_extensions_list(),
* or wtap_get_all_file_extensions_list().
*/
WS_DLL_PUBLIC
void wtap_free_extensions_list(GSList *extensions);
/*
* Return the default file extension to use with the specified file type
* and subtype; that's just the extension, without any ".".
*/
WS_DLL_PUBLIC
const char *wtap_default_file_extension(int file_type_subtype);
/* Return a list of file extensions that are used by the specified file type
* and subtype.
*
* If include_compressed is true, the list will include compressed
* extensions, e.g. not just "pcap" but also "pcap.gz" if we can read
* gzipped files.
*
* All strings in the list are allocated with g_malloc() and must be freed
* with g_free().
*/
WS_DLL_PUBLIC
GSList *wtap_get_file_extensions_list(int file_type_subtype, bool include_compressed);
WS_DLL_PUBLIC
const char *wtap_encap_name(int encap);
WS_DLL_PUBLIC
const char *wtap_encap_description(int encap);
WS_DLL_PUBLIC
int wtap_name_to_encap(const char *short_name);
WS_DLL_PUBLIC
const char* wtap_tsprec_string(int tsprec);
WS_DLL_PUBLIC
const char *wtap_strerror(int err);
/*** get available number of file types and encapsulations ***/
WS_DLL_PUBLIC
int wtap_get_num_file_type_extensions(void);
WS_DLL_PUBLIC
int wtap_get_num_encap_types(void);
/*** get information for file type extension ***/
WS_DLL_PUBLIC
const char *wtap_get_file_extension_type_name(int extension_type);
WS_DLL_PUBLIC
GSList *wtap_get_file_extension_type_extensions(unsigned extension_type);
/*** dynamically register new file types and encapsulations ***/
WS_DLL_PUBLIC
void wtap_register_file_type_extension(const struct file_extension_info *ei);
typedef struct {
void (*register_wtap_module)(void); /* routine to call to register a wiretap module */
} wtap_plugin;
WS_DLL_PUBLIC
void wtap_register_plugin(const wtap_plugin *plug);
/** Returns_
* 0 if plugins can be loaded for libwiretap (file type).
* 1 if plugins are not supported by the platform.
* -1 if plugins were disabled in the build configuration.
*/
WS_DLL_PUBLIC
int wtap_plugins_supported(void);
WS_DLL_PUBLIC
void wtap_register_open_info(struct open_info *oi, const bool first_routine);
WS_DLL_PUBLIC
bool wtap_has_open_info(const char *name);
WS_DLL_PUBLIC
bool wtap_uses_lua_filehandler(const wtap* wth);
WS_DLL_PUBLIC
void wtap_deregister_open_info(const char *name);
WS_DLL_PUBLIC
unsigned int open_info_name_to_type(const char *name);
WS_DLL_PUBLIC
int wtap_register_file_type_subtype(const struct file_type_subtype_info* fi);
WS_DLL_PUBLIC
void wtap_deregister_file_type_subtype(const int file_type_subtype);
WS_DLL_PUBLIC
int wtap_register_encap_type(const char *description, const char *name);
/*** Cleanup the internal library structures */
WS_DLL_PUBLIC
void wtap_cleanup(void);
/**
* Wiretap error codes.
*/
#define WTAP_ERR_NOT_REGULAR_FILE -1
/**< The file being opened for reading isn't a plain file (or pipe) */
#define WTAP_ERR_RANDOM_OPEN_PIPE -2
/**< The file is being opened for random access and it's a pipe */
#define WTAP_ERR_FILE_UNKNOWN_FORMAT -3
/**< The file being opened is not a capture file in a known format */
#define WTAP_ERR_UNSUPPORTED -4
/**< Supported file type, but there's something in the file we're
reading that we can't support */
#define WTAP_ERR_CANT_WRITE_TO_PIPE -5
/**< Wiretap can't save to a pipe in the specified format */
#define WTAP_ERR_CANT_OPEN -6
/**< The file couldn't be opened, reason unknown */
#define WTAP_ERR_UNWRITABLE_FILE_TYPE -7
/**< Wiretap can't save files in the specified format */
#define WTAP_ERR_UNWRITABLE_ENCAP -8
/**< Wiretap can't read or save files in the specified format with the
specified encapsulation */
#define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED -9
/**< The specified format doesn't support per-packet encapsulations */
#define WTAP_ERR_CANT_WRITE -10
/**< An attempt to read failed, reason unknown */
#define WTAP_ERR_CANT_CLOSE -11
/**< The file couldn't be closed, reason unknown */
#define WTAP_ERR_SHORT_READ -12
/**< An attempt to read less data than it should have */
#define WTAP_ERR_BAD_FILE -13
/**< The file appears to be damaged or corrupted or otherwise bogus */
#define WTAP_ERR_SHORT_WRITE -14
/**< An attempt to write wrote less data than it should have */
#define WTAP_ERR_UNC_OVERFLOW -15
/**< Uncompressing Sniffer data would overflow buffer */
#define WTAP_ERR_RANDOM_OPEN_STDIN -16
/**< We're trying to open the standard input for random access */
#define WTAP_ERR_COMPRESSION_NOT_SUPPORTED -17
/**< The filetype doesn't support output compression */
#define WTAP_ERR_CANT_SEEK -18
/**< An attempt to seek failed, reason unknown */
#define WTAP_ERR_CANT_SEEK_COMPRESSED -19
/**< An attempt to seek on a compressed stream */
#define WTAP_ERR_DECOMPRESS -20
/**< Error decompressing */
#define WTAP_ERR_INTERNAL -21
/**< "Shouldn't happen" internal errors */
#define WTAP_ERR_PACKET_TOO_LARGE -22
/**< Packet being written is larger than we support; do not use when
reading, use WTAP_ERR_BAD_FILE instead */
#define WTAP_ERR_CHECK_WSLUA -23
/**< Not really an error: the file type being checked is from a Lua
plugin, so that the code will call wslua_can_write_encap() instead if it gets this */
#define WTAP_ERR_UNWRITABLE_REC_TYPE -24
/**< Specified record type can't be written to that file type */
#define WTAP_ERR_UNWRITABLE_REC_DATA -25
/**< Something in the record data can't be written to that file type */
#define WTAP_ERR_DECOMPRESSION_NOT_SUPPORTED -26
/**< We don't support decompressing that type of compressed file */
#define WTAP_ERR_TIME_STAMP_NOT_SUPPORTED -27
/**< We don't support writing that record's time stamp to that
file type */
#define WTAP_ERR_REC_MALFORMED -28
/**< Packet being read is of a known type, but is malformed so it will be skipped.
This can be used instead of WTAP_ERR_BAD_FILE to not stop reading of a file */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __WTAP_H__ */
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* vi: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/
|