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
|
/* libpcap.c
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include "libpcap.h"
#include <stdlib.h>
#include <string.h>
#include "wtap-int.h"
#include "file_wrappers.h"
#include "required_file_handlers.h"
#include "pcap-common.h"
#include "pcap-encap.h"
#include "erf-common.h"
#include <jtckdint.h>
#include <wsutil/ws_assert.h>
/*
* The "libpcap" file format was determined by reading the "libpcap" code;
* wiretap reads the "libpcap" file format with its own code, rather than
* using the "libpcap" library's code to read it.
* See source to the "libpcap" library for information on the "libpcap"
* file format.
*/
/*
* Private per-wtap_t data needed to read a file.
*/
typedef enum {
NOT_SWAPPED,
SWAPPED,
MAYBE_SWAPPED
} swapped_type_t;
/*
* Variants of pcap, some distinguished by the magic number and some,
* alas, not.
*
* (Don't do that. Srsly.)
*/
typedef enum {
PCAP, /* OG pcap */
PCAP_NSEC, /* PCAP with nanosecond resolution */
PCAP_AIX, /* AIX pcap */
PCAP_SS990417, /* Modified, from 1999-04-17 patch */
PCAP_SS990915, /* Modified, from 1999-09-15 patch */
PCAP_SS991029, /* Modified, from 1999-10-29 patch */
PCAP_NOKIA, /* Nokia pcap */
PCAP_UNKNOWN /* Unknown as yet */
} pcap_variant_t;
typedef struct {
bool byte_swapped;
swapped_type_t lengths_swapped;
uint16_t version_major;
uint16_t version_minor;
pcap_variant_t variant;
int fcs_len;
void *encap_priv;
} libpcap_t;
/* Try to read the first few records of the capture file. */
static bool libpcap_try_variants(wtap *wth, const pcap_variant_t *variants,
size_t n_variants, int *err, char **err_info);
static int libpcap_try_variant(wtap *wth, pcap_variant_t variant,
int *err, char **err_info);
typedef enum {
TRY_REC_KEEP_READING, /* Keep reading records */
TRY_REC_EOF, /* EOF - no ore records to read */
TRY_REC_ERROR /* Error - give up */
} try_record_ret_t;
static try_record_ret_t libpcap_try_record(wtap *wth, pcap_variant_t variant,
int *figure_of_meritp, int *err, char **err_info);
static bool libpcap_read(wtap *wth, wtap_rec *rec,
int *err, char **err_info, int64_t *data_offset);
static bool libpcap_seek_read(wtap *wth, int64_t seek_off,
wtap_rec *rec, int *err, char **err_info);
static bool libpcap_read_packet(wtap *wth, FILE_T fh,
wtap_rec *rec, int *err, char **err_info);
static bool libpcap_read_header(wtap *wth, FILE_T fh, int *err, char **err_info,
struct pcaprec_ss990915_hdr *hdr);
static void libpcap_close(wtap *wth);
static bool libpcap_dump_pcap(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info);
static bool libpcap_dump_pcap_nsec(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info);
static bool libpcap_dump_pcap_ss990417(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info);
static bool libpcap_dump_pcap_ss990915(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info);
static bool libpcap_dump_pcap_ss991029(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info);
static bool libpcap_dump_pcap_nokia(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info);
/*
* Subfields of the field containing the link-layer header type.
*
* Link-layer header types are assigned for both pcap and
* pcapng, and the same value must work with both. In pcapng,
* the link-layer header type field in an Interface Description
* Block is 16 bits, so only the bottommost 16 bits of the
* link-layer header type in a pcap file can be used for the
* header type value.
*
* In libpcap, the upper 16 bits, from the top down, are divided into:
*
* A 4-bit "FCS length" field, to allow the FCS length to
* be specified, just as it can be specified in the if_fcslen
* field of the pcapng IDB. The field is in units of 16 bits,
* i.e. 1 means 16 bits of FCS, 2 means 32 bits of FCS, etc..
*
* A reserved bit, which must be zero.
*
* An "FCS length present" flag; if 0, the "FCS length" field
* should be ignored, and if 1, the "FCS length" field should
* be used.
*
* 10 reserved bits, which must be zero. They were originally
* intended to be used as a "class" field, allowing additional
* classes of link-layer types to be defined, with a class value
* of 0 indicating that the link-layer type is a LINKTYPE_ value.
* A value of 0x224 was, at one point, used by NetBSD to define
* "raw" packet types, with the lower 16 bits containing a
* NetBSD AF_ value; see
*
* https://marc.info/?l=tcpdump-workers&m=98296750229149&w=2
*
* It's unknown whether those were ever used in capture files,
* or if the intent was just to use it as a link-layer type
* for BPF programs; NetBSD's libpcap used to support them in
* the BPF code generator, but it no longer does so. If it
* was ever used in capture files, or if classes other than
* "LINKTYPE_ value" are ever useful in capture files, we could
* re-enable this, and use the reserved 16 bits following the
* link-layer type in pcapng files to hold the class information
* there. (Note, BTW, that LINKTYPE_RAW/DLT_RAW is now being
* interpreted by libpcap, tcpdump, and Wireshark as "raw IP",
* including both IPv4 and IPv6, with the version number in the
* header being checked to see which it is, not just "raw IPv4";
* there are LINKTYPE_IPV4/DLT_IPV4 and LINKTYPE_IPV6/DLT_IPV6
* values if "these are IPv{4,6} and only IPv{4,6} packets"
* types are needed.)
*
* Or we might be able to use it for other purposes.
*/
#define LT_LINKTYPE(x) ((x) & 0x0000FFFF)
#define LT_RESERVED1(x) ((x) & 0x03FF0000)
#define LT_FCS_LENGTH_PRESENT(x) ((x) & 0x04000000)
#define LT_FCS_LENGTH(x) (((x) & 0xF0000000) >> 28)
#define LT_FCS_DATALINK_EXT(x) (((x) & 0xF) << 28) | 0x04000000)
/*
* Private file type/subtype values; pcap and nanosecond-resolution
* pcap are imported from wiretap/file_access.c.
*/
static int pcap_aix_file_type_subtype = -1;
static int pcap_ss990417_file_type_subtype = -1;
static int pcap_ss990915_file_type_subtype = -1;
static int pcap_ss991029_file_type_subtype = -1;
static int pcap_nokia_file_type_subtype = -1;
/*
* pcap variants that use the standard magic number.
*/
static const pcap_variant_t variants_standard[] = {
PCAP,
PCAP_SS990417,
PCAP_NOKIA
};
#define N_VARIANTS_STANDARD G_N_ELEMENTS(variants_standard)
/*
* pcap variants that use the modified magic number.
*/
static const pcap_variant_t variants_modified[] = {
PCAP_SS991029,
PCAP_SS990915
};
#define N_VARIANTS_MODIFIED G_N_ELEMENTS(variants_modified)
wtap_open_return_val libpcap_open(wtap *wth, int *err, char **err_info)
{
uint32_t magic;
struct pcap_hdr hdr;
bool byte_swapped;
pcap_variant_t variant;
libpcap_t *libpcap;
bool skip_ixia_extra = false;
/* Read in the number that should be at the start of a "libpcap" file */
if (!wtap_read_bytes(wth->fh, &magic, sizeof magic, err, err_info)) {
if (*err != WTAP_ERR_SHORT_READ)
return WTAP_OPEN_ERROR;
return WTAP_OPEN_NOT_MINE;
}
switch (magic) {
case PCAP_MAGIC:
/* Host that wrote it has our byte order, and was running
a program using either standard or ss990417 libpcap,
or maybe it was written by AIX. That means we don't
yet know the variant. */
byte_swapped = false;
variant = PCAP_UNKNOWN;
break;
case PCAP_SWAPPED_MAGIC:
/* Host that wrote it has a byte order opposite to ours,
and was running a program using either standard or
ss990417 libpcap, or maybe it was written by AIX.
That means we don't yet know the variant. */
byte_swapped = true;
variant = PCAP_UNKNOWN;
break;
case PCAP_IXIAHW_MAGIC:
/* Ixia "lcap" hardware-capture variant, in our
byte order, in which there's an extra 4-byte
field at the end of the file header, containing
the total number of bytes of packet records in
the file, i.e. the file size minus the file header
size. It's otherwise like standard pcap, with
nanosecond time-stamp resolution.
See issue #14073. */
skip_ixia_extra = true;
byte_swapped = false;
variant = PCAP_NSEC;
break;
case PCAP_SWAPPED_IXIAHW_MAGIC:
/* Ixia "lcap" hardware-capture variant, in a byte
order opposite to ours, in which there's an extra
4-byte field at the end of the file header,
containing the total number of bytes of packet
records in the file, i.e. the file size minus
the file header size. It's otherwise like standard
pcap with nanosecond time-stamp resolution.
See issue #14073. */
skip_ixia_extra = true;
byte_swapped = true;
variant = PCAP_NSEC;
break;
case PCAP_IXIASW_MAGIC:
/* Ixia "lcap" software-capture variant, in our
byte order, in which there's an extra 4-byte
field at the end of the file header, containing
the total number of bytes of packet records in
the file, i.e. the file size minus the file header
size. It's otherwise like standard pcap, with
microsecond time-stamp resolution.
See issue #14073. */
skip_ixia_extra = true;
byte_swapped = false;
variant = PCAP;
break;
case PCAP_SWAPPED_IXIASW_MAGIC:
/* Ixia "lcap" software-capture variant, in a byte
order opposite to ours, in which there's an extra
4-byte field at the end of the file header,
containing the total number of bytes of packet
records in the file, i.e. the file size minus
the file header size. It's otherwise like standard
pcap with microsecond time-stamp resolution.
See issue #14073. */
skip_ixia_extra = true;
byte_swapped = true;
variant = PCAP;
break;
case PCAP_MODIFIED_MAGIC:
/* Host that wrote it has our byte order, and was running
a program using either ss990915 or ss991029 libpcap.
That means we don't yet know the variant; there's
no obvious default, so default to "unknown". */
byte_swapped = false;
variant = PCAP_UNKNOWN;
break;
case PCAP_SWAPPED_MODIFIED_MAGIC:
/* Host that wrote it out has a byte order opposite to
ours, and was running a program using either ss990915
or ss991029 libpcap. That means we don't yet know
the variant; there's no obvious default, so default
to "unknown". */
byte_swapped = true;
variant = PCAP_UNKNOWN;
break;
case PCAP_NSEC_MAGIC:
/* Host that wrote it has our byte order, and was writing
the file in a format similar to standard libpcap
except that the time stamps have nanosecond resolution. */
byte_swapped = false;
variant = PCAP_NSEC;
break;
case PCAP_SWAPPED_NSEC_MAGIC:
/* Host that wrote it out has a byte order opposite to
ours, and was writing the file in a format similar to
standard libpcap except that the time stamps have
nanosecond resolution. */
byte_swapped = true;
variant = PCAP_NSEC;
break;
default:
/* Not a "libpcap" type we know about. */
return WTAP_OPEN_NOT_MINE;
}
/* Read the rest of the header. */
if (!wtap_read_bytes(wth->fh, &hdr, sizeof hdr, err, err_info))
return WTAP_OPEN_ERROR;
if (skip_ixia_extra) {
/*
* Skip 4 bytes of size information in the file header.
*/
if (!wtap_read_bytes(wth->fh, NULL, 4, err, err_info))
return WTAP_OPEN_ERROR;
}
if (byte_swapped) {
/* Byte-swap the header fields about which we care. */
magic = GUINT32_SWAP_LE_BE(magic);
hdr.version_major = GUINT16_SWAP_LE_BE(hdr.version_major);
hdr.version_minor = GUINT16_SWAP_LE_BE(hdr.version_minor);
hdr.snaplen = GUINT32_SWAP_LE_BE(hdr.snaplen);
hdr.network = GUINT32_SWAP_LE_BE(hdr.network);
}
if (hdr.version_major < 2) {
/* We only support version 2.0 and later. */
*err = WTAP_ERR_UNSUPPORTED;
*err_info = ws_strdup_printf("pcap: major version %u unsupported",
hdr.version_major);
return WTAP_OPEN_ERROR;
}
/* This is a libpcap file */
wth->subtype_read = libpcap_read;
wth->subtype_seek_read = libpcap_seek_read;
wth->subtype_close = libpcap_close;
wth->snapshot_length = hdr.snaplen;
libpcap = g_new0(libpcap_t, 1);
wth->priv = (void *)libpcap;
/*
* Fill in the information we already know or can determine
* at this point, so the private data is usable by the code
* that tries reading packets as a heuristic to guess the
* variant.
*/
libpcap->byte_swapped = byte_swapped;
/* In file format version 2.3, the order of the "incl_len" and
"orig_len" fields in the per-packet header was reversed,
in order to match the BPF header layout.
Therefore, in files with versions prior to that, we must swap
those two fields.
Unfortunately, some files were, according to a comment in the
"libpcap" source, written with version 2.3 in their headers
but without the interchanged fields, so if "incl_len" is
greater than "orig_len" - which would make no sense - we
assume that we need to swap them in version 2.3 files
as well.
In addition, DG/UX's tcpdump uses version 543.0, and writes
the two fields in the pre-2.3 order.
Furthermore, files that don't have a magic number of 2.4
were not used by the variant forms of pcap that need
heuristic tests to detect. */
switch (hdr.version_major) {
case 2:
if (hdr.version_minor < 3) {
libpcap->lengths_swapped = SWAPPED;
variant = PCAP;
} else if (hdr.version_minor == 3) {
libpcap->lengths_swapped = MAYBE_SWAPPED;
variant = PCAP;
} else
libpcap->lengths_swapped = NOT_SWAPPED;
break;
case 543:
libpcap->lengths_swapped = SWAPPED;
variant = PCAP;
break;
default:
libpcap->lengths_swapped = NOT_SWAPPED;
break;
}
libpcap->version_major = hdr.version_major;
libpcap->version_minor = hdr.version_minor;
/*
* Check whether this is an AIX pcap before we convert the
* link-layer type in the header file to an encapsulation,
* because AIX pcaps use RFC 1573 ifType values in the header.
*
* AIX pcap files use the standard magic number, and have a
* major and minor version of 2.
*
* Unfortunately, that's also true of older versions of libpcap,
* so we need to do some heuristics to try to identify AIX pcap
* files.
*/
if (magic == PCAP_MAGIC && hdr.version_major == 2 &&
hdr.version_minor == 2) {
/*
* The AIX libpcap uses RFC 1573 ifType values rather
* than LINKTYPE_/DLT_ values in the header; the ifType
* values for LAN devices are:
*
* Ethernet 6
* Token Ring 9
* FDDI 15
*
* which correspond to LINKTYPE_IEEE802_5/DLT_IEEE802 (used
* for Token Ring), LINKTYPE_PPP/DLT_PPP, and
* LINKTYPE_SLIP_BSDOS/DLT_SLIP_BSDOS, respectively, and
* the ifType value for a loopback interface is 24, which
* currently isn't used by any version of libpcap I know
* about (and, as tcpdump.org are assigning LINKTYPE_/DLT_
* values above 100, and NetBSD started assigning values
* starting at 50, and the values chosen by other libpcaps
* appear to stop at 19, it's probably not going to be used
* by any libpcap in the future).
*
* So we shall assume that if the network type is 6, 9, 15,
* or 24 it's AIX libpcap.
*
* We also assume those older versions of libpcap didn't use
* LINKTYPE_IEEE802_5/DLT_IEEE802 for Token Ring, and didn't
* use LINKTYPE_SLIP_BSDOS/DLT_SLIP_BSDOS as that came later.
* It may have used LINKTYPE_PPP/DLT_PPP, however, in which
* case we're out of luck; we assume it's Token Ring in AIX
* libpcap rather than PPP in standard libpcap, as you're
* probably more likely to be handing an AIX libpcap token-
*ring capture than an old (pre-libpcap 0.4) PPP capture to
* Wireshark.
*
* AIX pcap files didn't use the upper 16 bits, so we don't
* need to ignore them here - they'll be 0.
*/
switch (hdr.network) {
case 6:
hdr.network = 1; /* LINKTYPE_EN10MB, Ethernet */
variant = PCAP_AIX;
break;
case 9:
hdr.network = 6; /* LINKTYPE_IEEE802_5, Token Ring */
variant = PCAP_AIX;
break;
case 15:
hdr.network = 10; /* LINKTYPE_FDDI, FDDI */
variant = PCAP_AIX;
break;
case 24:
hdr.network = 0; /* LINKTYPE_NULL, loopback */
variant = PCAP_AIX;
break;
}
}
/*
* Check the main reserved field.
*/
if (LT_RESERVED1(hdr.network) != 0) {
*err = WTAP_ERR_UNSUPPORTED;
*err_info = ws_strdup_printf("pcap: network type reserved field not zero (0x%08x)",
LT_RESERVED1(hdr.network));
return WTAP_OPEN_ERROR;
}
/*
* Map the link-layer type from the "network" field in
* the header to a Wiretap encapsulation.
*/
wth->file_encap = wtap_pcap_encap_to_wtap_encap(LT_LINKTYPE(hdr.network));
if (wth->file_encap == WTAP_ENCAP_UNKNOWN) {
*err = WTAP_ERR_UNSUPPORTED;
*err_info = ws_strdup_printf("pcap: network type %u unknown or unsupported",
hdr.network);
return WTAP_OPEN_ERROR;
}
/*
* Extract the FCS information, if present.
*/
libpcap->fcs_len = -1;
if (LT_FCS_LENGTH_PRESENT(hdr.network)) {
/*
* We have an FCS length, in units of 16 bits.
* Convert it to bits.
*/
libpcap->fcs_len = LT_FCS_LENGTH(hdr.network) * 16;
}
libpcap->encap_priv = NULL;
/*
* If this file has the standard magic number, it could be
* one of a number of variants, including regular pcap, the
* AIX variant, the ss990417 variant, and a Nokia variant.
* The ss990417 variant is used in, for example, Red Hat 6.1,
* so some versions of AIX, RH 6.1, and some Nokia devices
* write files that can't be read by any software that expects
* standard libpcap packet record headers if the magic number
* is the standard magic number (e.g., any program such as
* tcpdump that uses libpcap, when using the standard libpcap,
* and Wireshark if we don't do the heuristics below).
*
* If this file has the patched magic number, used by the
* ss990915 and ss991029 variants, then it could be either
* of those. The ss991029 variant uses the same packet
* record header as the ss990417 variant, but the ss990915
* variant uses a packet record header with some additional
* fields and it is used in, for example, SuSE 6.3, so SuSE
* 6.3 writes files that can't be read by any software that
* expects ss990417 packet record headers if the magic number
* is the modified magic number.
*
* So, for the standard and modified magic number:
*
* For the standard magic number, we first do some heuristic
* checks of data from the file header to see if it looks like
* an AIX libpcap file. If so, we choose PCAP_AIX as the variant,
* and we don't have to do any more guessing.
*
* Otherwise, we determine the variant by, for each variant,
* trying to read the first few packets as if that file were
* in that variant's format, and seeing whether the packet
* record headers make sense.
*
* But don't do the latter if the input is a pipe; that would mean
* the open won't complete until two packets have been written to
* the pipe, unless the pipe is closed after one packet has been
* written, so a program reading from the file won't see the
* first packet until the second packet has been written.
*/
switch (magic) {
case PCAP_MAGIC:
/*
* Original libpcap magic.
*
* If we still don't know the variant, look at the first
* few packets to see what type of per-packet header they
* have.
*
* Default to PCAP, as that's probably what this is;
* libpcap_try_variants() will just give up if we're
* reading from a pipe.
*/
if (variant == PCAP_UNKNOWN) {
if (wth->ispipe) {
/*
* We can't do the heuristics.
* Just go with standard libpcap.
*/
libpcap->variant = PCAP;
} else {
/*
* Try the variants that use the standard
* pcap magic number.
*/
if (!libpcap_try_variants(wth, variants_standard,
N_VARIANTS_STANDARD, err, err_info)) {
/*
* File read error.
*/
return WTAP_OPEN_ERROR;
}
}
} else {
/*
* Use the variant we found.
*/
libpcap->variant = variant;
}
break;
case PCAP_MODIFIED_MAGIC:
/*
* Modified libpcap magic, from Alexey's later two
* patches.
*
* This might be one of two different flavors of
* pcap file, with different modified per-packet
* headers.
*
* If we're reading from a pipe, we don't have an
* obvious choice to use as a default.
*/
if (wth->ispipe) {
/*
* We can't do the heuristics.
* There's no obvious choice to use as a
* default, so just report an error.
*/
*err = WTAP_ERR_UNSUPPORTED;
*err_info = g_strdup("pcap: that type of pcap file can't be read from a pipe");
return WTAP_OPEN_ERROR;
} else {
/*
* Try the variants that use the modified
* pcap magic number.
*/
if (!libpcap_try_variants(wth, variants_modified,
N_VARIANTS_MODIFIED, err, err_info)) {
/*
* File read error.
*/
return WTAP_OPEN_ERROR;
}
}
break;
default:
/*
* None of these require heuristics to guess the
* variant; just use the variant we found.
*/
libpcap->variant = variant;
break;
}
/*
* Set the file type and subtype, and handle some variants
* specially.
*/
switch (libpcap->variant) {
case PCAP:
wth->file_type_subtype = pcap_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_USEC;
break;
case PCAP_NSEC:
wth->file_type_subtype = pcap_nsec_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_NSEC;
break;
case PCAP_SS990417:
wth->file_type_subtype = pcap_ss990417_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_USEC;
break;
case PCAP_SS990915:
wth->file_type_subtype = pcap_ss990915_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_USEC;
break;
case PCAP_SS991029:
wth->file_type_subtype = pcap_ss991029_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_USEC;
break;
case PCAP_AIX:
wth->file_type_subtype = pcap_aix_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_NSEC;
break;
case PCAP_NOKIA:
wth->file_type_subtype = pcap_nokia_file_type_subtype;
wth->file_tsprec = WTAP_TSPREC_USEC;
/*
* We treat a DLT_ value of 13 specially - it appears
* that in Nokia libpcap format, it's some form of ATM
* with what I suspect is a pseudo-header (even though
* Nokia's IPSO is based on FreeBSD, which #defines
* DLT_SLIP_BSDOS as 13).
*
* Treat 13 as WTAP_ENCAP_ATM_PDUS, rather than as what
* we normally treat it.
*/
switch (hdr.network) {
case 13:
wth->file_encap = WTAP_ENCAP_ATM_PDUS;
break;
}
break;
default:
ws_assert_not_reached();
}
if (wth->file_encap == WTAP_ENCAP_ERF) {
/* Reset the ERF interface lookup table */
libpcap->encap_priv = erf_priv_create();
} else {
/*
* Add an IDB; we don't know how many interfaces were
* involved, so we just say one interface, about which
* we only know the link-layer type, snapshot length,
* and time stamp resolution.
*/
wtap_add_generated_idb(wth);
}
return WTAP_OPEN_MINE;
}
static bool libpcap_try_variants(wtap *wth, const pcap_variant_t *variants,
size_t n_variants, int *err, char **err_info)
{
libpcap_t *libpcap = (libpcap_t *)wth->priv;
#define MAX_FIGURES_OF_MERIT \
MAX(N_VARIANTS_MODIFIED, N_VARIANTS_STANDARD)
int figures_of_merit[MAX_FIGURES_OF_MERIT];
int best_variant;
int64_t first_packet_offset;
first_packet_offset = file_tell(wth->fh);
for (size_t i = 0; i < n_variants; i++) {
figures_of_merit[i] = libpcap_try_variant(wth, variants[i],
err, err_info);
if (figures_of_merit[i] == -1) {
/*
* Well, we couldn't even read it. Give up.
*/
return false;
}
if (figures_of_merit[i] == 0) {
/*
* This format doesn't have any issues.
* Put the seek pointer back, and finish,
* using that format as the subtype.
*/
if (file_seek(wth->fh, first_packet_offset, SEEK_SET,
err) == -1) {
return false;
}
libpcap->variant = variants[i];
return true;
}
/*
* OK, we've recorded the figure of merit for this
* one; go back to the first packet and try the
* next one.
*/
if (file_seek(wth->fh, first_packet_offset, SEEK_SET,
err) == -1) {
return false;
}
}
/*
* OK, none are perfect; let's see which one is least bad.
*/
best_variant = INT_MAX;
for (size_t i = 0; i < n_variants; i++) {
/*
* Is this subtype better than the last one we saw?
*/
if (figures_of_merit[i] < best_variant) {
/*
* Yes. Choose it until we find a better one.
*/
libpcap->variant = variants[i];
best_variant = figures_of_merit[i];
}
}
return true;
}
/*
* Maximum number of records to try to read. Must be >= 2.
*/
#define MAX_RECORDS_TO_TRY 3
/* Try to read the first MAX_RECORDS_TO_TRY records of the capture file. */
static int libpcap_try_variant(wtap *wth, pcap_variant_t variant,
int *err, char **err_info)
{
int figure_of_merit;
figure_of_merit = 0;
/*
* Attempt to read the MAX_RECORDS_TO_TRY records.
*/
for (unsigned int i = 0; i < MAX_RECORDS_TO_TRY; i++) {
/*
* Attempt to read this record.
*/
try_record_ret_t try_record_ret;
try_record_ret = libpcap_try_record(wth, variant,
&figure_of_merit, err, err_info);
if (try_record_ret == TRY_REC_ERROR) {
/*
* Error; return the error indication.
*/
return -1;
}
if (try_record_ret == TRY_REC_EOF) {
/*
* Nothing more to read from this file.
*/
break;
}
}
return figure_of_merit;
}
/* Read the header of the next packet and, if that succeeds, read the
data of the next packet.
Return -1 on an I/O error, 0 on success, or a positive number if the
header looks corrupt. The higher the positive number, the more things
are wrong with the header; this is used by the heuristics that try to
guess what type of file it is, with the type with the fewest problems
being chosen. */
static try_record_ret_t libpcap_try_record(wtap *wth, pcap_variant_t variant,
int *figure_of_meritp, int *err, char **err_info)
{
libpcap_t *libpcap = (libpcap_t *)wth->priv;
struct pcaprec_hdr hdr;
/* Fields from PCAP_SS* modified headers */
uint32_t ifindex;
uint16_t protocol;
uint8_t pkt_type;
uint32_t nokia_stuff;
bool incl_len_ok = true;
/*
* Read the header, one field at a time.
* First, do the fields that all pcap formats have - the
* time stamp, the captured length, and the original
* length.
*/
if (!wtap_read_bytes_or_eof(wth->fh, &hdr.ts_sec, 4, err, err_info)) {
if (*err == 0) {
/*
* EOF - assume the file is in this format.
* This means it doesn't have all the
* records we're trying to read.
*/
return TRY_REC_EOF;
}
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (libpcap->byte_swapped) {
/* Byte-swap the field. */
hdr.ts_sec = GUINT32_SWAP_LE_BE(hdr.ts_sec);
}
if (!wtap_read_bytes(wth->fh, &hdr.ts_usec, 4, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (libpcap->byte_swapped) {
/* Byte-swap the field. */
hdr.ts_usec = GUINT32_SWAP_LE_BE(hdr.ts_usec);
}
/*
* The only file types for which we have to do variant
* determination by looking at packets have microsecond
* resolution; treat fractions-of-a-second values >= 1 000 000
* as an indication that the header format might not be
* what we think it is.
*/
if (hdr.ts_usec >= 1000000)
*figure_of_meritp += 1;
if (!wtap_read_bytes(wth->fh, &hdr.incl_len, 4, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (libpcap->byte_swapped) {
/* Byte-swap the field. */
hdr.incl_len = GUINT32_SWAP_LE_BE(hdr.incl_len);
}
if (hdr.incl_len > wtap_max_snaplen_for_encap(wth->file_encap)) {
/*
* Probably either a corrupt capture file or a file
* of a type different from the one we're trying.
*/
incl_len_ok = false;
*figure_of_meritp += 1;
}
if (hdr.incl_len > wth->snapshot_length) {
/*
* This is not a fatal error, and packets that have one
* such packet probably have thousands. For discussion,
* see
* https://lists.wireshark.org/archives/wireshark-dev/201307/msg00076.html
* and related messages.
*
* The packet contents will be copied to a Buffer, which
* expands as necessary to hold the contents; we don't have
* to worry about fixed-length buffers allocated based on
* the original snapshot length.
*
* We just treat this as an indication that we might be
* trying the wrong file type here.
*/
*figure_of_meritp += 1;
}
if (!wtap_read_bytes(wth->fh, &hdr.orig_len, 4, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (libpcap->byte_swapped) {
/* Byte-swap the field. */
hdr.orig_len = GUINT32_SWAP_LE_BE(hdr.orig_len);
}
if (hdr.orig_len > 128*1024*1024) {
/*
* In theory I guess the on-the-wire packet size can be
* arbitrarily large, and it can certainly be larger than the
* maximum snapshot length which bounds the snapshot size,
* but any file claiming 128MB in a single packet is *probably*
* corrupt, and treating them as such makes the heuristics
* much more reliable. See, for example,
*
* https://gitlab.com/wireshark/wireshark/-/issues/9634
*
* (128MB is an arbitrary size at this point, chosen to be
* large enough for the largest D-Bus packet).
*/
*figure_of_meritp += 1;
}
if (hdr.incl_len > hdr.orig_len) {
/*
* Another hint that this might be the wrong file type.
*/
*figure_of_meritp += 1;
}
/*
* Now check any additional fields that the variant we're
* trying has.
*/
switch (variant) {
case PCAP:
case PCAP_AIX:
case PCAP_NSEC:
/* No more fields. */
break;
case PCAP_SS990417:
case PCAP_SS991029:
case PCAP_SS990915:
/* struct pcaprec_modified_hdr */
/* 32-bit interface index. */
if (!wtap_read_bytes(wth->fh, &ifindex, 4, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (libpcap->byte_swapped) {
/* Byte-swap the field. */
ifindex = GUINT32_SWAP_LE_BE(ifindex);
}
/*
* Make sure it's not too large; those files date
* from an era when a Linux box probably didn't
* have more than 10000 interfaces, so check for
* a value >= 10000.
*/
if (ifindex > 10000)
*figure_of_meritp += 1;
/*
* 16-bit "Ethernet packet type", which is either an
* Ethertype or one of the internal Linux ETH_P_
* values from linux/if_ether.h.
*/
if (!wtap_read_bytes(wth->fh, &protocol, 2, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (libpcap->byte_swapped) {
/* Byte-swap the field. */
protocol = GUINT16_SWAP_LE_BE(protocol);
}
/*
* Valid values are:
*
* anything >= 0x0600 (normal Ethertype range)
* 0x0060 (ETH_P_LOOP)
* 0x0200 (ETH_P_ECHO)
* 0x0400 (ETH_P_PUP)
* 0x0000 (see in some such captures)
* 0x0001 to 0x0017 ("Non DIX types")
*/
if (!(protocol >= 0x0600 ||
protocol == 0x0060 ||
protocol == 0x0200 ||
protocol == 0x0400 ||
protocol == 0x0000 ||
(protocol >= 0x0001 && protocol <= 0x0017)))
*figure_of_meritp += 1;
/*
* 8-bit packet type - one of the Linux PACKET_
* types from linux/if_packet.h. The ones that
* would appear in files from the era in which
* these formats existed (the patches that
* introduced them from are from 1999) are in
* the range 0 through 4; anything else is treated
* as a sign that this is unlikely to be in that
* format.
*/
if (!wtap_read_bytes(wth->fh, &pkt_type, 1, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
if (pkt_type > 4)
*figure_of_meritp += 1;
if (variant == PCAP_SS990915) {
/*
* 2 8-bit values that are filled in only
* if libpcap is built with SMP debugging,
* fllowed by 3 bytes of 8-bit padding,
* not guaranteed to be zero.
*
* Just skip them.
*/
if (!wtap_read_bytes(wth->fh, NULL, 5, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
} else {
/*
* 8-bit structure padding, not guaranteed to be
* zero.
*/
if (!wtap_read_bytes(wth->fh, NULL, 1, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
}
break;
case PCAP_NOKIA:
/*
* pcaprec_nokia_hdr.
*
* 4 bytes of unknown stuff.
*/
if (!wtap_read_bytes(wth->fh, &nokia_stuff, 4, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
/*
* Values we've seen in this field are of the form
*
* 0xXfbfYZ0W
*
* where X is either 9/1001 or b/1011, Y is either b/1011
* or d/1101, Z is either 6/0110 or 9/1001, and W is either
* 1/0001 or 2/0010.
*
* Check for those values.
*/
#define NOKIA_STUFF_CONSTANT(ns) ((ns) & 0x0FFF00F0)
#define NOKIA_STUFF_PART_1(ns) ((ns) & 0xF0000000)
#define NOKIA_STUFF_PART_2(ns) ((ns) & 0x0000F000)
#define NOKIA_STUFF_PART_3(ns) ((ns) & 0x00000F00)
#define NOKIA_STUFF_PART_4(ns) ((ns) & 0x0000000F)
if (!(NOKIA_STUFF_CONSTANT(nokia_stuff) == 0x0fbf0000 &&
(NOKIA_STUFF_PART_1(nokia_stuff) == 0x90000000 ||
NOKIA_STUFF_PART_1(nokia_stuff) == 0xb0000000) &&
(NOKIA_STUFF_PART_2(nokia_stuff) == 0x0000b000 ||
NOKIA_STUFF_PART_2(nokia_stuff) == 0x0000d000) &&
(NOKIA_STUFF_PART_3(nokia_stuff) == 0x00000600 ||
NOKIA_STUFF_PART_3(nokia_stuff) == 0x00000900) &&
(NOKIA_STUFF_PART_4(nokia_stuff) == 0x00000001 ||
NOKIA_STUFF_PART_4(nokia_stuff) == 0x00000002)))
*figure_of_meritp += 1;
break;
default:
ws_assert_not_reached();
}
if (!incl_len_ok) {
/*
* Might be the wrong file type; stop trying, and give
* this as the figure of merit for this file type.
*/
return TRY_REC_EOF;
}
/*
* Now skip over the record's data, under the assumption that
* the header is sane.
*/
if (!wtap_read_bytes(wth->fh, NULL, hdr.incl_len, err, err_info)) {
if (*err == WTAP_ERR_SHORT_READ) {
/*
* Short read; this might be a corrupt
* file in this format or might not be
* in this format. Return a figure of
* merit of 1 more than what we've
* accumulated so far, to note the
* short read in addition to any other
* issues we've found.
*/
*figure_of_meritp += 1;
return TRY_REC_EOF;
}
/* Hard error. */
return TRY_REC_ERROR;
}
return TRY_REC_KEEP_READING;
}
/* Read the next packet */
static bool libpcap_read(wtap *wth, wtap_rec *rec,
int *err, char **err_info, int64_t *data_offset)
{
*data_offset = file_tell(wth->fh);
return libpcap_read_packet(wth, wth->fh, rec, err, err_info);
}
static bool
libpcap_seek_read(wtap *wth, int64_t seek_off, wtap_rec *rec,
int *err, char **err_info)
{
if (file_seek(wth->random_fh, seek_off, SEEK_SET, err) == -1)
return false;
if (!libpcap_read_packet(wth, wth->random_fh, rec, err, err_info)) {
if (*err == 0)
*err = WTAP_ERR_SHORT_READ;
return false;
}
return true;
}
static bool
libpcap_read_packet(wtap *wth, FILE_T fh, wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_ss990915_hdr hdr;
unsigned packet_size;
unsigned orig_size;
int phdr_len;
libpcap_t *libpcap = (libpcap_t *)wth->priv;
bool is_nokia;
if (!libpcap_read_header(wth, fh, err, err_info, &hdr))
return false;
if (hdr.hdr.incl_len > wtap_max_snaplen_for_encap(wth->file_encap)) {
/*
* Probably a corrupt capture file; return an error,
* so that our caller doesn't blow up trying to allocate
* space for an immensely-large packet.
*/
*err = WTAP_ERR_BAD_FILE;
if (err_info != NULL) {
*err_info = ws_strdup_printf("pcap: File has %u-byte packet, bigger than maximum of %u",
hdr.hdr.incl_len,
wtap_max_snaplen_for_encap(wth->file_encap));
}
return false;
}
packet_size = hdr.hdr.incl_len;
orig_size = hdr.hdr.orig_len;
/*
* AIX appears to put 3 bytes of padding in front of FDDI
* frames; strip that crap off.
*/
if (libpcap->variant == PCAP_AIX &&
(wth->file_encap == WTAP_ENCAP_FDDI ||
wth->file_encap == WTAP_ENCAP_FDDI_BITSWAPPED)) {
/*
* The packet size is really a record size and includes
* the padding.
*/
if (ckd_sub(&packet_size, packet_size, 3) ||
ckd_sub(&orig_size, orig_size, 3)) {
*err = WTAP_ERR_BAD_FILE;
if (err_info != NULL) {
*err_info = ws_strdup("pcap: AIX FDDI padding is absent");
}
return false;
}
/*
* Skip the padding.
*/
if (!wtap_read_bytes(fh, NULL, 3, err, err_info))
return false;
}
is_nokia = (libpcap->variant == PCAP_NOKIA);
phdr_len = pcap_process_pseudo_header(fh, is_nokia,
wth->file_encap, packet_size, rec, err, err_info);
if (phdr_len < 0)
return false; /* error */
/*
* Don't count any pseudo-header as part of the packet.
*/
orig_size -= phdr_len;
packet_size -= phdr_len;
wtap_setup_packet_rec(rec, wth->file_encap);
rec->block = wtap_block_create(WTAP_BLOCK_PACKET);
rec->presence_flags = WTAP_HAS_TS|WTAP_HAS_CAP_LEN;
/* Update the timestamp, if not already done */
if (wth->file_encap != WTAP_ENCAP_ERF) {
rec->ts.secs = hdr.hdr.ts_sec;
if (libpcap->variant == PCAP_NSEC ||
libpcap->variant == PCAP_AIX)
rec->ts.nsecs = hdr.hdr.ts_usec;
else
rec->ts.nsecs = hdr.hdr.ts_usec * 1000;
} else {
int interface_id;
/* Set interface ID for ERF format */
rec->presence_flags |= WTAP_HAS_INTERFACE_ID;
if ((interface_id = erf_populate_interface_from_header((erf_t*) libpcap->encap_priv, wth, &rec->rec_header.packet_header.pseudo_header, err, err_info)) < 0)
return false;
rec->rec_header.packet_header.interface_id = (unsigned) interface_id;
}
rec->rec_header.packet_header.caplen = packet_size;
rec->rec_header.packet_header.len = orig_size;
/*
* Read the packet data.
*/
if (!wtap_read_bytes_buffer(fh, &rec->data, packet_size, err, err_info))
return false; /* failed */
pcap_read_post_process(is_nokia, wth->file_encap, rec,
libpcap->byte_swapped, libpcap->fcs_len);
return true;
}
/* Read the header of the next packet.
Return false on an error, true on success. */
static bool
libpcap_read_header(wtap *wth, FILE_T fh, int *err, char **err_info,
struct pcaprec_ss990915_hdr *hdr)
{
int bytes_to_read;
uint32_t temp;
libpcap_t *libpcap = (libpcap_t *)wth->priv;
switch (libpcap->variant) {
case PCAP:
case PCAP_AIX:
case PCAP_NSEC:
bytes_to_read = sizeof (struct pcaprec_hdr);
break;
case PCAP_SS990417:
case PCAP_SS991029:
bytes_to_read = sizeof (struct pcaprec_modified_hdr);
break;
case PCAP_SS990915:
bytes_to_read = sizeof (struct pcaprec_ss990915_hdr);
break;
case PCAP_NOKIA:
bytes_to_read = sizeof (struct pcaprec_nokia_hdr);
break;
default:
bytes_to_read = 0;
ws_assert_not_reached();
}
if (!wtap_read_bytes_or_eof(fh, hdr, bytes_to_read, err, err_info))
return false;
if (libpcap->byte_swapped) {
/* Byte-swap the record header fields. */
hdr->hdr.ts_sec = GUINT32_SWAP_LE_BE(hdr->hdr.ts_sec);
hdr->hdr.ts_usec = GUINT32_SWAP_LE_BE(hdr->hdr.ts_usec);
hdr->hdr.incl_len = GUINT32_SWAP_LE_BE(hdr->hdr.incl_len);
hdr->hdr.orig_len = GUINT32_SWAP_LE_BE(hdr->hdr.orig_len);
}
/* Swap the "incl_len" and "orig_len" fields, if necessary. */
switch (libpcap->lengths_swapped) {
case NOT_SWAPPED:
break;
case MAYBE_SWAPPED:
if (hdr->hdr.incl_len <= hdr->hdr.orig_len) {
/*
* The captured length is <= the actual length,
* so presumably they weren't swapped.
*/
break;
}
/* FALLTHROUGH */
case SWAPPED:
temp = hdr->hdr.orig_len;
hdr->hdr.orig_len = hdr->hdr.incl_len;
hdr->hdr.incl_len = temp;
break;
}
return true;
}
/* Returns 0 if we could write the specified encapsulation type,
an error indication otherwise. */
static int libpcap_dump_can_write_encap(int encap)
{
/* Per-packet encapsulations aren't supported. */
if (encap == WTAP_ENCAP_PER_PACKET)
return WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED;
if (wtap_wtap_encap_to_pcap_encap(encap) == -1)
return WTAP_ERR_UNWRITABLE_ENCAP;
return 0;
}
static bool libpcap_dump_write_file_header(wtap_dumper *wdh, uint32_t magic,
int *err)
{
struct pcap_hdr file_hdr;
if (!wtap_dump_file_write(wdh, &magic, sizeof magic, err))
return false;
/* current "libpcap" format is 2.4 */
file_hdr.version_major = 2;
file_hdr.version_minor = 4;
file_hdr.thiszone = 0; /* XXX - current offset? */
file_hdr.sigfigs = 0; /* unknown, but also apparently unused */
/*
* Tcpdump cannot handle capture files with a snapshot length of 0,
* as BPF filters return either 0 if they fail or the snapshot length
* if they succeed, and a snapshot length of 0 means success is
* indistinguishable from failure and the filter expression would
* reject all packets.
*
* A snapshot length of 0, inside Wiretap, means "snapshot length
* unknown"; if the snapshot length supplied to us is 0, we make
* the snapshot length in the header file the maximum for the
* link-layer type we'll be writing.
*/
file_hdr.snaplen = (wdh->snaplen != 0) ? (unsigned)wdh->snaplen :
wtap_max_snaplen_for_encap(wdh->file_encap);
file_hdr.network = wtap_wtap_encap_to_pcap_encap(wdh->file_encap);
if (!wtap_dump_file_write(wdh, &file_hdr, sizeof file_hdr, err))
return false;
return true;
}
/* Good old fashioned pcap.
Returns true on success, false on failure; sets "*err" to an error code on
failure */
static bool
libpcap_dump_open_pcap(wtap_dumper *wdh, int *err, char **err_info _U_)
{
/* This is a libpcap file */
wdh->subtype_write = libpcap_dump_pcap;
/* Write the file header. */
return libpcap_dump_write_file_header(wdh, PCAP_MAGIC, err);
}
/* Like classic pcap, but with nanosecond resolution.
Returns true on success, false on failure; sets "*err" to an error code on
failure */
static bool
libpcap_dump_open_pcap_nsec(wtap_dumper *wdh, int *err, char **err_info _U_)
{
/* This is a nanosecond-resolution libpcap file */
wdh->subtype_write = libpcap_dump_pcap_nsec;
/* Write the file header. */
return libpcap_dump_write_file_header(wdh, PCAP_NSEC_MAGIC, err);
}
/* Modified, but with the old magic, sigh.
Returns true on success, false on failure; sets "*err" to an error code on
failure */
static bool
libpcap_dump_open_pcap_ss990417(wtap_dumper *wdh, int *err,
char **err_info _U_)
{
/* This is a modified-by-patch-SS990417 libpcap file */
wdh->subtype_write = libpcap_dump_pcap_ss990417;
/* Write the file header. */
return libpcap_dump_write_file_header(wdh, PCAP_MAGIC, err);
}
/* New magic, extra crap.
Returns true on success, false on failure; sets "*err" to an error code on
failure */
static bool
libpcap_dump_open_pcap_ss990915(wtap_dumper *wdh, int *err,
char **err_info _U_)
{
/* This is a modified-by-patch-SS990915 libpcap file */
wdh->subtype_write = libpcap_dump_pcap_ss990915;
/* Write the file header. */
return libpcap_dump_write_file_header(wdh, PCAP_MODIFIED_MAGIC, err);
}
/* Same magic as SS990915, *different* extra crap, sigh.
Returns true on success, false on failure; sets "*err" to an error code on
failure */
static bool
libpcap_dump_open_pcap_ss991029(wtap_dumper *wdh, int *err,
char **err_info _U_)
{
/* This is a modified-by-patch-SS991029 libpcap file */
wdh->subtype_write = libpcap_dump_pcap_ss991029;
/* Write the file header. */
return libpcap_dump_write_file_header(wdh, PCAP_MODIFIED_MAGIC, err);
}
static void libpcap_close(wtap *wth)
{
libpcap_t *libpcap = (libpcap_t *)wth->priv;
if (libpcap->encap_priv) {
switch (wth->file_encap) {
case WTAP_ENCAP_ERF:
erf_priv_free((erf_t*) libpcap->encap_priv);
break;
default:
g_free(libpcap->encap_priv);
break;
}
}
}
/* Nokia libpcap of some sort.
Returns true on success, false on failure; sets "*err" to an error code on
failure */
static bool
libpcap_dump_open_pcap_nokia(wtap_dumper *wdh, int *err, char **err_info _U_)
{
/* This is a Nokia libpcap file */
wdh->subtype_write = libpcap_dump_pcap_nokia;
/* Write the file header. */
return libpcap_dump_write_file_header(wdh, PCAP_MAGIC, err);
}
static bool
libpcap_dump_write_packet(wtap_dumper *wdh, const wtap_rec *rec,
struct pcaprec_hdr *hdr, size_t hdr_size, int *err, char **err_info)
{
const union wtap_pseudo_header *pseudo_header = &rec->rec_header.packet_header.pseudo_header;
unsigned phdrsize;
phdrsize = pcap_get_phdr_size(wdh->file_encap, pseudo_header);
/* We can only write packet records. */
if (rec->rec_type != REC_TYPE_PACKET) {
*err = WTAP_ERR_UNWRITABLE_REC_TYPE;
*err_info = wtap_unwritable_rec_type_err_string(rec);
return false;
}
/*
* Make sure this packet doesn't have a link-layer type that
* differs from the one for the file.
*/
if (wdh->file_encap != rec->rec_header.packet_header.pkt_encap) {
*err = WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED;
return false;
}
/*
* Don't write anything we're not willing to read.
* (The cast is to prevent an overflow.)
*/
if ((uint64_t)rec->rec_header.packet_header.caplen + phdrsize > wtap_max_snaplen_for_encap(wdh->file_encap)) {
*err = WTAP_ERR_PACKET_TOO_LARGE;
return false;
}
hdr->incl_len = rec->rec_header.packet_header.caplen + phdrsize;
hdr->orig_len = rec->rec_header.packet_header.len + phdrsize;
if (!wtap_dump_file_write(wdh, hdr, hdr_size, err))
return false;
if (!pcap_write_phdr(wdh, wdh->file_encap, pseudo_header, err))
return false;
if (!wtap_dump_file_write(wdh, ws_buffer_start_ptr(&rec->data),
rec->rec_header.packet_header.caplen, err))
return false;
return true;
}
/* Good old fashioned pcap.
Write a record for a packet to a dump file.
Returns true on success, false on failure. */
static bool
libpcap_dump_pcap(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_hdr rec_hdr;
/*
* Some code that reads libpcap files may handle time
* stamps as unsigned, but most of it probably handles
* them as signed.
*/
if (rec->ts.secs < 0 || rec->ts.secs > INT32_MAX) {
*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
return false;
}
rec_hdr.ts_sec = (uint32_t) rec->ts.secs;
rec_hdr.ts_usec = rec->ts.nsecs / 1000;
return libpcap_dump_write_packet(wdh, rec, &rec_hdr, sizeof rec_hdr,
err, err_info);
}
/* Like classic pcap, but with nanosecond resolution.
Write a record for a packet to a dump file.
Returns true on success, false on failure. */
static bool
libpcap_dump_pcap_nsec(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_hdr rec_hdr;
/*
* Some code that reads libpcap files may handle time
* stamps as unsigned, but most of it probably handles
* them as signed.
*/
if (rec->ts.secs < 0 || rec->ts.secs > INT32_MAX) {
*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
return false;
}
rec_hdr.ts_sec = (uint32_t) rec->ts.secs;
rec_hdr.ts_usec = rec->ts.nsecs;
return libpcap_dump_write_packet(wdh, rec, &rec_hdr, sizeof rec_hdr,
err, err_info);
}
/* Modified, but with the old magic, sigh.
Write a record for a packet to a dump file.
Returns true on success, false on failure. */
static bool
libpcap_dump_pcap_ss990417(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_modified_hdr rec_hdr;
/*
* Some code that reads libpcap files may handle time
* stamps as unsigned, but most of it probably handles
* them as signed.
*/
if (rec->ts.secs < 0 || rec->ts.secs > INT32_MAX) {
*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
return false;
}
rec_hdr.hdr.ts_sec = (uint32_t) rec->ts.secs;
rec_hdr.hdr.ts_usec = rec->ts.nsecs / 1000;
/* XXX - what should we supply here?
Alexey's "libpcap" looks up the interface in the system's
interface list if "ifindex" is non-zero, and prints
the interface name. It ignores "protocol", and uses
"pkt_type" to tag the packet as "host", "broadcast",
"multicast", "other host", "outgoing", or "none of the
above", but that's it.
If the capture we're writing isn't a modified or
RH 6.1 capture, we'd have to do some work to
generate the packet type and interface index - and
we can't generate the interface index unless we
just did the capture ourselves in any case.
I'm inclined to continue to punt; systems other than
those with the older patch can read standard "libpcap"
files, and systems with the older patch, e.g. RH 6.1,
will just have to live with this. */
rec_hdr.ifindex = 0;
rec_hdr.protocol = 0;
rec_hdr.pkt_type = 0;
return libpcap_dump_write_packet(wdh, rec, &rec_hdr.hdr, sizeof rec_hdr,
err, err_info);
}
/* New magic, extra crap.
Write a record for a packet to a dump file.
Returns true on success, false on failure. */
static bool
libpcap_dump_pcap_ss990915(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_ss990915_hdr rec_hdr;
/*
* Some code that reads libpcap files may handle time
* stamps as unsigned, but most of it probably handles
* them as signed.
*/
if (rec->ts.secs < 0 || rec->ts.secs > INT32_MAX) {
*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
return false;
}
rec_hdr.hdr.ts_sec = (uint32_t) rec->ts.secs;
rec_hdr.hdr.ts_usec = rec->ts.nsecs / 1000;
rec_hdr.ifindex = 0;
rec_hdr.protocol = 0;
rec_hdr.pkt_type = 0;
rec_hdr.cpu1 = 0;
rec_hdr.cpu2 = 0;
return libpcap_dump_write_packet(wdh, rec, &rec_hdr.hdr, sizeof rec_hdr,
err, err_info);
}
/* Same magic as SS990915, *different* extra crap, sigh.
Write a record for a packet to a dump file.
Returns true on success, false on failure. */
static bool
libpcap_dump_pcap_ss991029(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_modified_hdr rec_hdr;
/*
* Some code that reads libpcap files may handle time
* stamps as unsigned, but most of it probably handles
* them as signed.
*/
if (rec->ts.secs < 0 || rec->ts.secs > INT32_MAX) {
*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
return false;
}
rec_hdr.hdr.ts_sec = (uint32_t) rec->ts.secs;
rec_hdr.hdr.ts_usec = rec->ts.nsecs / 1000;
/* XXX - what should we supply here?
Alexey's "libpcap" looks up the interface in the system's
interface list if "ifindex" is non-zero, and prints
the interface name. It ignores "protocol", and uses
"pkt_type" to tag the packet as "host", "broadcast",
"multicast", "other host", "outgoing", or "none of the
above", but that's it.
If the capture we're writing isn't a modified or
RH 6.1 capture, we'd have to do some work to
generate the packet type and interface index - and
we can't generate the interface index unless we
just did the capture ourselves in any case.
I'm inclined to continue to punt; systems other than
those with the older patch can read standard "libpcap"
files, and systems with the older patch, e.g. RH 6.1,
will just have to live with this. */
rec_hdr.ifindex = 0;
rec_hdr.protocol = 0;
rec_hdr.pkt_type = 0;
return libpcap_dump_write_packet(wdh, rec, &rec_hdr.hdr, sizeof rec_hdr,
err, err_info);
}
/* Nokia libpcap of some sort.
Write a record for a packet to a dump file.
Returns true on success, false on failure. */
static bool
libpcap_dump_pcap_nokia(wtap_dumper *wdh, const wtap_rec *rec,
int *err, char **err_info)
{
struct pcaprec_nokia_hdr rec_hdr;
const union wtap_pseudo_header *pseudo_header = &rec->rec_header.packet_header.pseudo_header;
/*
* Some code that reads libpcap files may handle time
* stamps as unsigned, but most of it probably handles
* them as signed.
*/
if (rec->ts.secs < 0 || rec->ts.secs > INT32_MAX) {
*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
return false;
}
rec_hdr.hdr.ts_sec = (uint32_t) rec->ts.secs;
rec_hdr.hdr.ts_usec = rec->ts.nsecs / 1000;
/* restore the "mysterious stuff" that came with the packet */
memcpy(rec_hdr.stuff, pseudo_header->nokia.stuff, 4);
return libpcap_dump_write_packet(wdh, rec, &rec_hdr.hdr, sizeof rec_hdr,
err, err_info);
}
static const struct supported_block_type pcap_blocks_supported[] = {
/*
* We support packet blocks, with no comments or other options.
*/
{ WTAP_BLOCK_PACKET, MULTIPLE_BLOCKS_SUPPORTED, NO_OPTIONS_SUPPORTED }
};
static const struct file_type_subtype_info pcap_info = {
/* Gianluca Varenni suggests that we add "deprecated" to the description. */
"Wireshark/tcpdump/... - pcap", "pcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
libpcap_dump_can_write_encap, libpcap_dump_open_pcap, NULL
};
static const struct file_type_subtype_info pcap_nsec_info = {
"Wireshark/tcpdump/... - nanosecond pcap", "nsecpcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
libpcap_dump_can_write_encap, libpcap_dump_open_pcap_nsec, NULL
};
static const struct file_type_subtype_info pcap_aix_info = {
"AIX tcpdump - pcap", "aixpcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
NULL, NULL, NULL
};
static const struct file_type_subtype_info pcap_ss990417_info = {
"RedHat 6.1 tcpdump - pcap", "rh6_1pcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
libpcap_dump_can_write_encap, libpcap_dump_open_pcap_ss990417, NULL
};
static const struct file_type_subtype_info pcap_ss990915_info = {
"SuSE 6.3 tcpdump - pcap", "suse6_3pcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
libpcap_dump_can_write_encap, libpcap_dump_open_pcap_ss990915, NULL
};
static const struct file_type_subtype_info pcap_ss991029_info = {
"Modified tcpdump - pcap", "modpcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
libpcap_dump_can_write_encap, libpcap_dump_open_pcap_ss991029, NULL
};
static const struct file_type_subtype_info pcap_nokia_info = {
"Nokia tcpdump - pcap", "nokiapcap", "pcap", "cap;dmp",
false, BLOCKS_SUPPORTED(pcap_blocks_supported),
libpcap_dump_can_write_encap, libpcap_dump_open_pcap_nokia, NULL
};
void register_pcap(void)
{
pcap_file_type_subtype = wtap_register_file_type_subtype(&pcap_info);
pcap_nsec_file_type_subtype = wtap_register_file_type_subtype(&pcap_nsec_info);
pcap_aix_file_type_subtype = wtap_register_file_type_subtype(&pcap_aix_info);
pcap_ss990417_file_type_subtype = wtap_register_file_type_subtype(&pcap_ss990417_info);
pcap_ss990915_file_type_subtype = wtap_register_file_type_subtype(&pcap_ss990915_info);
pcap_ss991029_file_type_subtype = wtap_register_file_type_subtype(&pcap_ss991029_info);
pcap_nokia_file_type_subtype = wtap_register_file_type_subtype(&pcap_nokia_info);
/*
* We now call the libpcap file format just pcap, but we allow
* the various variants of it to be specified using names
* containing "libpcap" as well as "pcap", for backwards
* compatibility.
*
* Register names for that purpose.
*/
wtap_register_compatibility_file_subtype_name("libpcap", "pcap");
wtap_register_compatibility_file_subtype_name("nseclibpcap", "nsecpcap");
wtap_register_compatibility_file_subtype_name("aixlibpcap", "aixpcap");
wtap_register_compatibility_file_subtype_name("modlibpcap", "modpcap");
wtap_register_compatibility_file_subtype_name("nokialibpcap", "nokiapcap");
wtap_register_compatibility_file_subtype_name("rh6_1libpcap", "rh6_1pcap");
wtap_register_compatibility_file_subtype_name("suse6_3libpcap", "suse6_3pcap");
/*
* Register names for backwards compatibility with the
* wtap_filetypes table in Lua.
*/
wtap_register_backwards_compatibility_lua_name("PCAP",
pcap_file_type_subtype);
wtap_register_backwards_compatibility_lua_name("PCAP_NSEC",
pcap_nsec_file_type_subtype);
wtap_register_backwards_compatibility_lua_name("PCAP_AIX",
pcap_aix_file_type_subtype);
wtap_register_backwards_compatibility_lua_name("PCAP_SS990417",
pcap_ss990417_file_type_subtype);
wtap_register_backwards_compatibility_lua_name("PCAP_SS990915",
pcap_ss990915_file_type_subtype);
wtap_register_backwards_compatibility_lua_name("PCAP_SS991029",
pcap_ss991029_file_type_subtype);
wtap_register_backwards_compatibility_lua_name("PCAP_NOKIA",
pcap_nokia_file_type_subtype);
}
/*
* Editor modelines - https://www.wireshark.org/tools/modelines.html
*
* Local variables:
* c-basic-offset: 8
* tab-width: 8
* indent-tabs-mode: t
* End:
*
* vi: set shiftwidth=8 tabstop=8 noexpandtab:
* :indentSize=8:tabSize=8:noTabs=false:
*/
|