summaryrefslogtreecommitdiffstats
path: root/wiretap/libpcap.c
blob: f3538078142a460d374ab41c0b0adbce4959ec34 (plain)
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
/* 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 <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 "libpcap.h"
#include "erf-common.h"
#include <wsutil/ws_assert.h>

/* 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 {
	gboolean byte_swapped;
	swapped_type_t lengths_swapped;
	guint16	version_major;
	guint16	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 gboolean libpcap_try_variants(wtap *wth, const pcap_variant_t *variants,
    size_t n_variants, int *err, gchar **err_info);
static int libpcap_try(wtap *wth, int *err, gchar **err_info);
static int libpcap_try_record(wtap *wth, int *err, gchar **err_info);

static gboolean libpcap_read(wtap *wth, wtap_rec *rec, Buffer *buf,
    int *err, gchar **err_info, gint64 *data_offset);
static gboolean libpcap_seek_read(wtap *wth, gint64 seek_off,
    wtap_rec *rec, Buffer *buf, int *err, gchar **err_info);
static gboolean libpcap_read_packet(wtap *wth, FILE_T fh,
    wtap_rec *rec, Buffer *buf, int *err, gchar **err_info);
static int libpcap_read_header(wtap *wth, FILE_T fh, int *err, gchar **err_info,
    struct pcaprec_ss990915_hdr *hdr);
static void libpcap_close(wtap *wth);

static gboolean libpcap_dump_pcap(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **err_info);
static gboolean libpcap_dump_pcap_nsec(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **err_info);
static gboolean libpcap_dump_pcap_ss990417(wtap_dumper *wdh,
    const wtap_rec *rec, const guint8 *pd, int *err, gchar **err_info);
static gboolean libpcap_dump_pcap_ss990915(wtap_dumper *wdh,
    const wtap_rec *rec, const guint8 *pd, int *err, gchar **err_info);
static gboolean libpcap_dump_pcap_ss991029(wtap_dumper *wdh,
    const wtap_rec *rec, const guint8 *pd, int *err, gchar **err_info);
static gboolean libpcap_dump_pcap_nokia(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **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, gchar **err_info)
{
	guint32 magic;
	struct pcap_hdr hdr;
	gboolean byte_swapped;
	pcap_variant_t variant;
	libpcap_t *libpcap;
	int skip_size = 0;
	int sizebytes;

	/* 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:
	case PCAP_IXIASW_MAGIC:
		/* Weird Ixia variant that has extra crud, written in our
		   byte order.  It's otherwise like standard pcap. */
		skip_size = 1;
		byte_swapped = FALSE;
		variant = PCAP;
		break;

	case PCAP_SWAPPED_IXIAHW_MAGIC:
	case PCAP_SWAPPED_IXIASW_MAGIC:
		/* Weird Ixia variant that has extra crud, written in a
		   byte order opposite to ours.  It's otherwise like
		   standard pcap. */
		skip_size = 1;
		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_size==1 && !wtap_read_bytes(wth->fh, &sizebytes, sizeof sizebytes, 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. */
	switch (hdr.version_major) {

	case 2:
		if (hdr.version_minor < 3)
			libpcap->lengths_swapped = SWAPPED;
		else if (hdr.version_minor == 3)
			libpcap->lengths_swapped = MAYBE_SWAPPED;
		else
			libpcap->lengths_swapped = NOT_SWAPPED;
		break;

	case 543:
		libpcap->lengths_swapped = SWAPPED;
		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.
		 */
		if (hdr.network == 13)
			wth->file_encap = WTAP_ENCAP_ATM_PDUS;
		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 gboolean libpcap_try_variants(wtap *wth, const pcap_variant_t *variants,
    size_t n_variants, int *err, gchar **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;
	gint64 first_packet_offset;

	first_packet_offset = file_tell(wth->fh);
	for (size_t i = 0; i < n_variants; i++) {
		libpcap->variant = variants[i];
		figures_of_merit[i] = libpcap_try(wth, 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;
			}
			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(wtap *wth, int *err, gchar **err_info)
{
	int ret;
	int i;

	/*
	 * Attempt to read the first record.
	 */
	ret = libpcap_try_record(wth, err, err_info);
	if (ret != 0) {
		/*
		 * Error or mismatch; return the error indication or
		 * the figure of merit (demerit?).
		 */
		return ret;
	}

	/*
	 * Now attempt to read the next MAX_RECORDS_TO_TRY-1 records.
	 * Get the maximum figure of (de?)merit, as that represents the
	 * figure of merit for the record that had the most problems.
	 */
	for (i = 1; i < MAX_RECORDS_TO_TRY; i++) {
		/*
		 * Attempt to read this record.
		 */
		ret = libpcap_try_record(wth, err, err_info);
		if (ret != 0) {
			/*
			 * Error or mismatch; return the error indication or
			 * the figure of merit (demerit?).
			 */
			return ret;
		}
	}

	/* They all succeeded. */
	return 0;
}

/* 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 int libpcap_try_record(wtap *wth, int *err, gchar **err_info)
{
	/*
	 * pcaprec_ss990915_hdr is the largest header type.
	 */
	struct pcaprec_ss990915_hdr rec_hdr;
	int	ret;

	if (!libpcap_read_header(wth, wth->fh, err, err_info, &rec_hdr)) {
		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 0;
		}
		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.
			 */
			return 1;
		}
		/* Hard error. */
		return -1;
	}

	ret = 0;	/* start out presuming everything's OK */

	/*
	 * 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 (rec_hdr.hdr.ts_usec >= 1000000)
		ret++;

	if (rec_hdr.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.
		 */
		ret++;
	}

	if (rec_hdr.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).
		 */
		ret++;
	}

	if (rec_hdr.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://www.wireshark.org/lists/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.
	         */
		ret++;
	}

	if (rec_hdr.hdr.incl_len > rec_hdr.hdr.orig_len) {
		/*
		 * Another hint that this might be the wrong file type.
		 */
		ret++;
	}

	if (ret != 0) {
		/*
		 * Might be the wrong file type; stop trying, and give
		 * this as the figure of merit for this file type.
		 */
		return ret;
	}

	/*
	 * Now skip over the record's data, under the assumption that
	 * the header is sane.
	 */
	if (!wtap_read_bytes(wth->fh, NULL, rec_hdr.hdr.incl_len, err,
	    err_info)) {
		if (*err == WTAP_ERR_SHORT_READ) {
			/*
			 * Short read - treat that as a suggestion that
			 * the header isn't sane, and return a figure of
			 * merit value of 1.
			 */
			return 1;
		}
		/* Hard error. */
		return -1;
	}

	/* Success. */
	return 0;
}

/* Read the next packet */
static gboolean libpcap_read(wtap *wth, wtap_rec *rec, Buffer *buf,
    int *err, gchar **err_info, gint64 *data_offset)
{
	*data_offset = file_tell(wth->fh);

	return libpcap_read_packet(wth, wth->fh, rec, buf, err, err_info);
}

static gboolean
libpcap_seek_read(wtap *wth, gint64 seek_off, wtap_rec *rec,
    Buffer *buf, int *err, gchar **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, buf, err,
	    err_info)) {
		if (*err == 0)
			*err = WTAP_ERR_SHORT_READ;
		return FALSE;
	}
	return TRUE;
}

static gboolean
libpcap_read_packet(wtap *wth, FILE_T fh, wtap_rec *rec,
    Buffer *buf, int *err, gchar **err_info)
{
	struct pcaprec_ss990915_hdr hdr;
	guint packet_size;
	guint orig_size;
	int phdr_len;
	libpcap_t *libpcap = (libpcap_t *)wth->priv;
	gboolean 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.
		 */
		packet_size -= 3;
		orig_size -= 3;

		/*
		 * 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;

	rec->rec_type = REC_TYPE_PACKET;
	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 = (guint) 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_packet_bytes(fh, buf, packet_size, err, err_info))
		return FALSE;	/* failed */

	pcap_read_post_process(is_nokia, wth->file_encap, rec,
	    ws_buffer_start_ptr(buf), libpcap->byte_swapped, libpcap->fcs_len);
	return TRUE;
}

/* Read the header of the next packet.

   Return FALSE on an error, TRUE on success. */
static int libpcap_read_header(wtap *wth, FILE_T fh, int *err, gchar **err_info,
    struct pcaprec_ss990915_hdr *hdr)
{
	int bytes_to_read;
	guint32 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 gboolean libpcap_dump_write_file_header(wtap_dumper *wdh, guint32 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) ? (guint)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 gboolean
libpcap_dump_open_pcap(wtap_dumper *wdh, int *err, gchar **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 gboolean
libpcap_dump_open_pcap_nsec(wtap_dumper *wdh, int *err, gchar **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 gboolean
libpcap_dump_open_pcap_ss990417(wtap_dumper *wdh, int *err,
    gchar **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 gboolean
libpcap_dump_open_pcap_ss990915(wtap_dumper *wdh, int *err,
    gchar **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 gboolean
libpcap_dump_open_pcap_ss991029(wtap_dumper *wdh, int *err,
    gchar **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 gboolean
libpcap_dump_open_pcap_nokia(wtap_dumper *wdh, int *err, gchar **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 gboolean
libpcap_dump_write_packet(wtap_dumper *wdh, const wtap_rec *rec,
    struct pcaprec_hdr *hdr, size_t hdr_size, const guint8 *pd, int *err)
{
	const union wtap_pseudo_header *pseudo_header = &rec->rec_header.packet_header.pseudo_header;
	int 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;
		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 ((guint64)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, pd, 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 gboolean
libpcap_dump_pcap(wtap_dumper *wdh, const wtap_rec *rec, const guint8 *pd,
    int *err, gchar **err_info _U_)
{
	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 > G_MAXINT32) {
		*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
		return FALSE;
	}
	rec_hdr.ts_sec = (guint32) rec->ts.secs;
	rec_hdr.ts_usec = rec->ts.nsecs / 1000;
	return libpcap_dump_write_packet(wdh, rec, &rec_hdr, sizeof rec_hdr,
	    pd, err);
}

/* 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 gboolean
libpcap_dump_pcap_nsec(wtap_dumper *wdh, const wtap_rec *rec, const guint8 *pd,
    int *err, gchar **err_info _U_)
{
	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 > G_MAXINT32) {
		*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
		return FALSE;
	}
	rec_hdr.ts_sec = (guint32) rec->ts.secs;
	rec_hdr.ts_usec = rec->ts.nsecs;
	return libpcap_dump_write_packet(wdh, rec, &rec_hdr, sizeof rec_hdr,
	    pd, err);
}

/* 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 gboolean
libpcap_dump_pcap_ss990417(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **err_info _U_)
{
	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 > G_MAXINT32) {
		*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
		return FALSE;
	}
	rec_hdr.hdr.ts_sec = (guint32) 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,
	    pd, err);
}

/* New magic, extra crap.
   Write a record for a packet to a dump file.
   Returns TRUE on success, FALSE on failure. */
static gboolean
libpcap_dump_pcap_ss990915(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **err_info _U_)
{
	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 > G_MAXINT32) {
		*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
		return FALSE;
	}
	rec_hdr.hdr.ts_sec = (guint32) 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,
	    pd, err);
}

/* 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 gboolean
libpcap_dump_pcap_ss991029(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **err_info _U_)
{
	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 > G_MAXINT32) {
		*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
		return FALSE;
	}
	rec_hdr.hdr.ts_sec = (guint32) 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,
	    pd, err);
}

/* Nokia libpcap of some sort.
   Write a record for a packet to a dump file.
   Returns TRUE on success, FALSE on failure. */
static gboolean
libpcap_dump_pcap_nokia(wtap_dumper *wdh, const wtap_rec *rec,
    const guint8 *pd, int *err, gchar **err_info _U_)
{
	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 > G_MAXINT32) {
		*err = WTAP_ERR_TIME_STAMP_NOT_SUPPORTED;
		return FALSE;
	}
	rec_hdr.hdr.ts_sec = (guint32) 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,
	    pd, err);
}

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:
 */