Treat 13 as if it came from OpenBSD except on BSD/OS, so that if there
[obnox/wireshark/wip.git] / wiretap / pcap-common.c
1 /* pcap-common.c
2  * Code common to libpcap and pcap-NG file formats
3  *
4  * $Id$
5  *
6  * Wiretap Library
7  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
8  *
9  * File format support for pcap-ng file format
10  * Copyright (c) 2007 by Ulf Lamping <ulf.lamping@web.de>
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <stdlib.h>
32 #include <string.h>
33 #include <errno.h>
34 #include "wtap-int.h"
35 #include "file_wrappers.h"
36 #include "erf.h"
37 #include "pcap-common.h"
38
39 /*
40  * Map link-layer types (LINKTYPE_ values) to Wiretap encapsulations.
41  */
42 /*
43  * Either LBL NRG wasn't an adequate central registry (e.g., because of
44  * the slow rate of releases from them), or nobody bothered using them
45  * as a central registry, as many different groups have patched libpcap
46  * (and BPF, on the BSDs) to add new encapsulation types, and have ended
47  * up using the same DLT_ values for different encapsulation types.
48  *
49  * For those numerical encapsulation type values that everybody uses for
50  * the same encapsulation type (which inclues those that some platforms
51  * specify different DLT_ names for but don't appear to use), we map
52  * those values to the appropriate Wiretap values.
53  *
54  * For those numerical encapsulation type values that different libpcap
55  * variants use for different encapsulation types, we check what
56  * <pcap.h> defined to determine how to interpret them, so that we
57  * interpret them the way the libpcap with which we're building
58  * Wireshark/Wiretap interprets them (which, if it doesn't support
59  * them at all, means we don't support them either - any capture files
60  * using them are foreign, and we don't hazard a guess as to which
61  * platform they came from; we could, I guess, choose the most likely
62  * platform).
63  *
64  * Note: if you need a new encapsulation type for libpcap files, do
65  * *N*O*T* use *ANY* of the values listed here!  I.e., do *NOT*
66  * add a new encapsulation type by changing an existing entry;
67  * leave the existing entries alone.
68  *
69  * Instead, send mail to tcpdump-workers@lists.tcpdump.org, asking for
70  * a new DLT_ value, and specifying the purpose of the new value.  When
71  * you get the new DLT_ value, use that numerical value in the "dlt_value"
72  * field of "pcap_to_wtap_map[]".
73  */
74
75 static const struct {
76         int     dlt_value;
77         int     wtap_encap_value;
78 } pcap_to_wtap_map[] = {
79         /*
80          * These are the values that are almost certainly the same
81          * in all libpcaps (I've yet to find one where the values
82          * in question are used for some purpose other than the
83          * one below, but...), and that Wiretap and Wireshark
84          * currently support.
85          */
86         { 0,            WTAP_ENCAP_NULL },      /* null encapsulation */
87         { 1,            WTAP_ENCAP_ETHERNET },
88         { 6,            WTAP_ENCAP_TOKEN_RING },        /* IEEE 802 Networks - assume token ring */
89         { 7,            WTAP_ENCAP_ARCNET },
90         { 8,            WTAP_ENCAP_SLIP },
91         { 9,            WTAP_ENCAP_PPP },
92 #ifdef BIT_SWAPPED_MAC_ADDRS
93         { 10,           WTAP_ENCAP_FDDI_BITSWAPPED },
94 #else
95         { 10,           WTAP_ENCAP_FDDI },
96 #endif
97
98         { 32,           WTAP_ENCAP_REDBACK },
99
100         /*
101          * 50 is DLT_PPP_SERIAL in NetBSD; it appears that DLT_PPP
102          * on BSD (at least according to standard tcpdump) has, as
103          * the first octet, an indication of whether the packet was
104          * transmitted or received (rather than having the standard
105          * PPP address value of 0xff), but that DLT_PPP_SERIAL puts
106          * a real live PPP header there, or perhaps a Cisco PPP header
107          * as per section 4.3.1 of RFC 1547 (implementations of this
108          * exist in various BSDs in "sys/net/if_spppsubr.c", and
109          * I think also exist either in standard Linux or in
110          * various Linux patches; the implementations show how to handle
111          * Cisco keepalive packets).
112          *
113          * However, I don't see any obvious place in FreeBSD "if_ppp.c"
114          * where anything other than the standard PPP header would be
115          * passed up.  I see some stuff that sets the first octet
116          * to 0 for incoming and 1 for outgoing packets before applying
117          * a BPF filter to see whether to drop packets whose protocol
118          * field has the 0x8000 bit set, i.e. network control protocols -
119          * those are handed up to userland - but that code puts the
120          * address field back before passing the packet up.
121          *
122          * I also don't see anything immediately obvious that munges
123          * the address field for sync PPP, either.
124          *
125          * Wireshark currently assumes that if the first octet of a
126          * PPP frame is 0xFF, it's the address field and is followed
127          * by a control field and a 2-byte protocol, otherwise the
128          * address and control fields are absent and the frame begins
129          * with a protocol field.  If we ever see a BSD/OS PPP
130          * capture, we'll have to handle it differently, and we may
131          * have to handle standard BSD captures differently if, in fact,
132          * they don't have 0xff 0x03 as the first two bytes - but, as per
133          * the two paragraphs preceding this, it's not clear that
134          * the address field *is* munged into an incoming/outgoing
135          * field when the packet is handed to the BPF device.
136          *
137          * For now, we just map DLT_PPP_SERIAL to WTAP_ENCAP_PPP, as
138          * we treat WTAP_ENCAP_PPP packets as if those beginning with
139          * 0xff have the standard RFC 1662 "PPP in HDLC-like Framing"
140          * 0xff 0x03 address/control header, and DLT_PPP_SERIAL frames
141          * appear to contain that unless they're Cisco frames (if we
142          * ever see a capture with them, we'd need to implement the
143          * RFC 1547 stuff, and the keepalive protocol stuff).
144          *
145          * We may have to distinguish between "PPP where if it doesn't
146          * begin with 0xff there's no HDLC encapsulation and the frame
147          * begins with the protocol field" (which is how we handle
148          * WTAP_ENCAP_PPP now) and "PPP where there's either HDLC
149          * encapsulation or Cisco PPP" (which is what DLT_PPP_SERIAL
150          * is) at some point.
151          *
152          * XXX - NetBSD has DLT_HDLC, which appears to be used for
153          * Cisco HDLC.  Ideally, they should use DLT_PPP_SERIAL
154          * only for real live HDLC-encapsulated PPP, not for Cisco
155          * HDLC.
156          */
157         { 50,           WTAP_ENCAP_PPP },
158
159         /*
160          * Apparently used by the Axent Raptor firewall (now Symantec
161          * Enterprise Firewall).
162          * Thanks, Axent, for not reserving that type with tcpdump.org
163          * and not telling anybody about it.
164          */
165         { 99,           WTAP_ENCAP_SYMANTEC },
166
167         /*
168          * These are the values that libpcap 0.5 and later use in
169          * capture file headers, in an attempt to work around the
170          * confusion decried above, and that Wiretap and Wireshark
171          * currently support.
172          */
173         { 100,          WTAP_ENCAP_ATM_RFC1483 },
174         { 101,          WTAP_ENCAP_RAW_IP },
175 #if 0
176         /*
177          * More values used by libpcap 0.5 as DLT_ values and used by the
178          * current CVS version of libpcap in capture file headers.
179          * They are not yet handled in Wireshark.
180          * If we get a capture that contains them, we'll implement them.
181          */
182         { 102,          WTAP_ENCAP_SLIP_BSDOS },
183         { 103,          WTAP_ENCAP_PPP_BSDOS },
184 #endif
185
186         /*
187          * These ones are handled in Wireshark, though.
188          */
189         { 104,          WTAP_ENCAP_CHDLC },     /* Cisco HDLC */
190         { 105,          WTAP_ENCAP_IEEE_802_11 }, /* IEEE 802.11 */
191         { 106,          WTAP_ENCAP_LINUX_ATM_CLIP },
192         { 107,          WTAP_ENCAP_FRELAY },    /* Frame Relay */
193         { 108,          WTAP_ENCAP_NULL },      /* OpenBSD loopback */
194         { 109,          WTAP_ENCAP_ENC },       /* OpenBSD IPSEC enc */
195 #if 0
196         { 110,          WTAP_ENCAP_LANE_802_3 },/* ATM LANE 802.3 */
197         { 111,          WTAP_ENCAP_HIPPI },     /* NetBSD HIPPI */
198 #endif
199         { 112,          WTAP_ENCAP_CHDLC },     /* NetBSD HDLC framing */
200
201         /*
202          * Linux "cooked mode" captures, used by the current CVS version
203          * of libpcap
204          * OR
205          * it could be a packet in Cisco's ERSPAN encapsulation which uses
206          * this number as well (why can't people stick to protocols when it
207          * comes to allocating/using DLT types).
208          */
209         { 113,          WTAP_ENCAP_SLL },       /* Linux cooked capture */
210
211         { 114,          WTAP_ENCAP_LOCALTALK }, /* Localtalk */
212
213         /*
214          * The tcpdump.org version of libpcap uses 117, rather than 17,
215          * for OpenBSD packet filter logging, so as to avoid conflicting
216          * with DLT_LANE8023 in SuSE 6.3 libpcap.
217          */
218         { 117,          WTAP_ENCAP_PFLOG },
219
220         { 118,          WTAP_ENCAP_CISCO_IOS },
221         { 119,          WTAP_ENCAP_PRISM_HEADER }, /* Prism monitor mode hdr */
222         { 121,          WTAP_ENCAP_HHDLC },     /* HiPath HDLC */
223         { 122,          WTAP_ENCAP_IP_OVER_FC },   /* RFC 2625 IP-over-FC */
224         { 123,          WTAP_ENCAP_ATM_PDUS },  /* SunATM */
225         { 127,          WTAP_ENCAP_IEEE_802_11_WLAN_RADIOTAP },  /* 802.11 plus radiotap WLAN header */
226         { 128,          WTAP_ENCAP_TZSP },      /* Tazmen Sniffer Protocol */
227         { 129,          WTAP_ENCAP_ARCNET_LINUX },
228         { 130,          WTAP_ENCAP_JUNIPER_MLPPP }, /* Juniper MLPPP on ML-, LS-, AS- PICs */
229         { 131,          WTAP_ENCAP_JUNIPER_MLFR }, /* Juniper MLFR (FRF.15) on ML-, LS-, AS- PICs */
230         { 133,          WTAP_ENCAP_JUNIPER_GGSN},
231         /*
232          * Values 132-134, 136 not listed here are reserved for use
233          * in Juniper hardware.
234          */
235         { 135,          WTAP_ENCAP_JUNIPER_ATM2 }, /* various encapsulations captured on the ATM2 PIC */
236         { 137,          WTAP_ENCAP_JUNIPER_ATM1 }, /* various encapsulations captured on the ATM1 PIC */
237
238         { 138,          WTAP_ENCAP_APPLE_IP_OVER_IEEE1394 },
239                                                 /* Apple IP-over-IEEE 1394 */
240
241         { 139,          WTAP_ENCAP_MTP2_WITH_PHDR },
242         { 140,          WTAP_ENCAP_MTP2 },
243         { 141,          WTAP_ENCAP_MTP3 },
244         { 142,          WTAP_ENCAP_SCCP },
245         { 143,          WTAP_ENCAP_DOCSIS },
246         { 144,          WTAP_ENCAP_IRDA },      /* IrDA capture */
247
248         /* Reserved for private use. */
249         { 147,          WTAP_ENCAP_USER0 },
250         { 148,          WTAP_ENCAP_USER1 },
251         { 149,          WTAP_ENCAP_USER2 },
252         { 150,          WTAP_ENCAP_USER3 },
253         { 151,          WTAP_ENCAP_USER4 },
254         { 152,          WTAP_ENCAP_USER5 },
255         { 153,          WTAP_ENCAP_USER6 },
256         { 154,          WTAP_ENCAP_USER7 },
257         { 155,          WTAP_ENCAP_USER8 },
258         { 156,          WTAP_ENCAP_USER9 },
259         { 157,          WTAP_ENCAP_USER10 },
260         { 158,          WTAP_ENCAP_USER11 },
261         { 159,          WTAP_ENCAP_USER12 },
262         { 160,          WTAP_ENCAP_USER13 },
263         { 161,          WTAP_ENCAP_USER14 },
264         { 162,          WTAP_ENCAP_USER15 },
265
266         { 163,          WTAP_ENCAP_IEEE_802_11_WLAN_AVS },  /* 802.11 plus AVS WLAN header */
267
268         /*
269          * 164 is reserved for Juniper-private chassis-internal
270          * meta-information such as QoS profiles, etc..
271          */
272
273         { 165,          WTAP_ENCAP_BACNET_MS_TP },
274
275         /*
276          * 166 is reserved for a PPP variant in which the first byte
277          * of the 0xff03 header, the 0xff, is replaced by a direction
278          * byte.  I don't know whether any captures look like that,
279          * but it is used for some Linux IP filtering (ipfilter?).
280          */
281
282         /* Ethernet PPPoE frames captured on a service PIC */
283         { 167,          WTAP_ENCAP_JUNIPER_PPPOE },
284
285         /*
286          * 168 is reserved for more Juniper private-chassis-
287          * internal meta-information.
288          */
289
290         { 169,          WTAP_ENCAP_GPRS_LLC },
291
292         /*
293          * 170 and 171 are reserved for ITU-T G.7041/Y.1303 Generic
294          * Framing Procedure.
295          */
296
297         /* Registered by Gcom, Inc. */
298         { 172,          WTAP_GCOM_TIE1 },
299         { 173,          WTAP_GCOM_SERIAL },
300
301         { 177,          WTAP_ENCAP_LINUX_LAPD },
302
303         /* Ethernet frames prepended with meta-information */
304         { 178,          WTAP_ENCAP_JUNIPER_ETHER },
305         /* PPP frames prepended with meta-information */
306         { 179,          WTAP_ENCAP_JUNIPER_PPP },
307         /* Frame-Relay frames prepended with meta-information */
308         { 180,          WTAP_ENCAP_JUNIPER_FRELAY },
309         /* C-HDLC frames prepended with meta-information */
310         { 181,          WTAP_ENCAP_JUNIPER_CHDLC },
311         /* VOIP Frames prepended with meta-information */
312         { 183,          WTAP_ENCAP_JUNIPER_VP },
313         /* raw USB packets */
314         { 186,          WTAP_ENCAP_USB },
315         /* Bluetooth HCI UART transport (part H:4) frames, like hcidump */
316         { 187,          WTAP_ENCAP_BLUETOOTH_H4 },
317         /* IEEE 802.16 MAC Common Part Sublayer */
318         { 188,          WTAP_ENCAP_IEEE802_16_MAC_CPS },
319         /* USB packets with Linux-specified header */
320         { 189,          WTAP_ENCAP_USB_LINUX },
321         /* CAN 2.0b frame */
322         { 190,          WTAP_ENCAP_CAN20B },
323         /* Per-Packet Information header */
324         { 192,          WTAP_ENCAP_PPI },
325         /* IEEE 802.15.4 Wireless PAN */
326         { 195,          WTAP_ENCAP_IEEE802_15_4 },
327         /* SITA File Encapsulation */
328         { 196,          WTAP_ENCAP_SITA },
329         /* Endace Record File Encapsulation */
330         { 197,          WTAP_ENCAP_ERF },
331         /* IPMB */
332         { 199,          WTAP_ENCAP_IPMB },
333         /* Bluetooth HCI UART transport (part H:4) frames, like hcidump */
334         { 201,          WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR },
335         { 204,          WTAP_ENCAP_PPP_WITH_PHDR },
336         /* IPMB/I2C */
337         { 209,          WTAP_ENCAP_I2C },
338         /* FlexRay frame */
339         { 210,          WTAP_ENCAP_FLEXRAY },
340         /* MOST frame */
341         { 211,          WTAP_ENCAP_MOST },
342         /* LIN frame */
343         { 212,          WTAP_ENCAP_LIN },
344         /* X2E Xoraya serial frame */
345         { 213,          WTAP_ENCAP_X2E_SERIAL },
346         /* X2E Xoraya frame */
347         { 214,          WTAP_ENCAP_X2E_XORAYA },
348         /* IEEE 802.15.4 Wireless PAN non-ASK PHY */
349         { 215,          WTAP_ENCAP_IEEE802_15_4_NONASK_PHY },
350         /* USB packets with padded Linux-specified header */
351         { 220,          WTAP_ENCAP_USB_LINUX_MMAPPED },
352         /* Fibre Channel FC-2 frame */
353         { 224,          WTAP_ENCAP_FIBRE_CHANNEL_FC2 },
354         /* Fibre Channel FC-2 frame with Delimiter */
355         { 225,          WTAP_ENCAP_FIBRE_CHANNEL_FC2_WITH_FRAME_DELIMS },
356
357         /*
358          * To repeat:
359          *
360          * If you need a new encapsulation type for libpcap files, do
361          * *N*O*T* use *ANY* of the values listed here!  I.e., do *NOT*
362          * add a new encapsulation type by changing an existing entry;
363          * leave the existing entries alone.
364          *
365          * Instead, send mail to tcpdump-workers@lists.tcpdump.org, asking
366          * for a new DLT_ value, and specifying the purpose of the new value.
367          * When you get the new DLT_ value, use that numerical value in
368          * the "dlt_value" field of "pcap_to_wtap_map[]".
369          */
370
371         /*
372          * The following are entries for libpcap type values that have
373          * different meanings on different OSes.
374          *
375          * We put these *after* the entries for the platform-independent
376          * libpcap type values for those Wiretap encapsulation types, so
377          * that Wireshark chooses the platform-independent libpcap type
378          * value for those encapsulatioin types, not the platform-dependent
379          * one.
380          */
381
382         /*
383          * 11 is DLT_ATM_RFC1483 on most platforms; the only libpcaps I've
384          * seen that define anything other than DLT_ATM_RFC1483 as 11 are
385          * the BSD/OS one, which defines DLT_FR as 11, and libpcap 0.5,
386          * which define it as 100, mapping the kernel's value to 100, in
387          * an attempt to hide the different values used on different
388          * platforms.
389          *
390          * If this is a platform where DLT_FR is defined as 11, we
391          * don't handle 11 at all; otherwise, we handle it as
392          * DLT_ATM_RFC1483 (this means we'd misinterpret Frame Relay
393          * captures from BSD/OS if running on platforms other than BSD/OS,
394          * but
395          *
396          *      1) we don't yet support DLT_FR
397          *
398          * and
399          *
400          *      2) nothing short of a heuristic would let us interpret
401          *         them correctly).
402          */
403 #if defined(DLT_FR) && (DLT_FR == 11)
404         { 11,           WTAP_ENCAP_FRELAY },
405 #else
406         { 11,           WTAP_ENCAP_ATM_RFC1483 },
407 #endif
408
409         /*
410          * 12 is DLT_RAW on most platforms, but it's DLT_C_HDLC on
411          * BSD/OS, and DLT_LOOP on OpenBSD.
412          *
413          * We don't yet handle DLT_C_HDLC, but we can handle DLT_LOOP
414          * (it's just like DLT_NULL, only with the AF_ value in network
415          * rather than host byte order - Wireshark figures out the
416          * byte order from the data, so we don't care what byte order
417          * it's in), so if DLT_LOOP is defined as 12, interpret 12
418          * as WTAP_ENCAP_NULL, otherwise, unless DLT_C_HDLC is defined
419          * as 12, interpret it as WTAP_ENCAP_RAW_IP.
420          */
421 #if defined(DLT_LOOP) && (DLT_LOOP == 12)
422         { 12,           WTAP_ENCAP_NULL },
423 #elif defined(DLT_C_HDLC) && (DLT_C_HDLC == 12)
424         /*
425          * Put entry for Cisco HDLC here.
426          * XXX - is this just WTAP_ENCAP_CHDLC, i.e. does the frame
427          * start with a 4-byte Cisco HDLC header?
428          */
429 #else
430         { 12,           WTAP_ENCAP_RAW_IP },
431 #endif
432
433         /*
434          * 13 is DLT_SLIP_BSDOS on FreeBSD and NetBSD, but those OSes
435          * don't actually generate it.  I infer that BSD/OS translates
436          * DLT_SLIP from the kernel BPF code to DLT_SLIP_BSDOS in
437          * libpcap, as the BSD/OS link-layer header is different;
438          * however, in BSD/OS, DLT_SLIP_BSDOS is 15.
439          *
440          * From this, I infer that there's no point in handling 13
441          * as DLT_SLIP_BSDOS.
442          *
443          * 13 is DLT_ATM_RFC1483 on BSD/OS.
444          *
445          * 13 is DLT_ENC in OpenBSD, which is, I suspect, some kind
446          * of decrypted IPsec traffic.
447          *
448          * We treat 13 as WTAP_ENCAP_ENC on all systems except those
449          * that define DLT_ATM_RFC1483 as 13 - presumably only
450          * BSD/OS does so - so that, on BSD/OS systems, we still
451          * treate 13 as WTAP_ENCAP_ATM_RFC1483, but, on all other
452          * systems, we can read OpenBSD DLT_ENC captures.
453          */
454 #if defined(DLT_ATM_RFC1483) && (DLT_ATM_RFC1483 == 13)
455         { 13,           WTAP_ENCAP_ATM_RFC1483 },
456 #else
457         { 13,           WTAP_ENCAP_ENC },
458 #endif
459
460         /*
461          * 14 is DLT_PPP_BSDOS on FreeBSD and NetBSD, but those OSes
462          * don't actually generate it.  I infer that BSD/OS translates
463          * DLT_PPP from the kernel BPF code to DLT_PPP_BSDOS in
464          * libpcap, as the BSD/OS link-layer header is different;
465          * however, in BSD/OS, DLT_PPP_BSDOS is 16.
466          *
467          * From this, I infer that there's no point in handling 14
468          * as DLT_PPP_BSDOS.
469          *
470          * 14 is DLT_RAW on BSD/OS and OpenBSD.
471          */
472         { 14,           WTAP_ENCAP_RAW_IP },
473
474         /*
475          * 15 is:
476          *
477          *      DLT_SLIP_BSDOS on BSD/OS;
478          *
479          *      DLT_HIPPI on NetBSD;
480          *
481          *      DLT_LANE8023 with Alexey Kuznetzov's patches for
482          *      Linux libpcap;
483          *
484          *      DLT_I4L_RAWIP with the ISDN4Linux patches for libpcap
485          *      (and on SuSE 6.3);
486          *
487          * but we don't currently handle any of those.
488          */
489
490         /*
491          * 16 is:
492          *
493          *      DLT_PPP_BSDOS on BSD/OS;
494          *
495          *      DLT_HDLC on NetBSD (Cisco HDLC);
496          *
497          *      DLT_CIP with Alexey Kuznetzov's patches for
498          *      Linux libpcap - this is WTAP_ENCAP_LINUX_ATM_CLIP;
499          *
500          *      DLT_I4L_IP with the ISDN4Linux patches for libpcap
501          *      (and on SuSE 6.3).
502          */
503 #if defined(DLT_CIP) && (DLT_CIP == 16)
504         { 16,           WTAP_ENCAP_LINUX_ATM_CLIP },
505 #endif
506 #if defined(DLT_HDLC) && (DLT_HDLC == 16)
507         { 16,           WTAP_ENCAP_CHDLC },
508 #endif
509
510         /*
511          * 17 is DLT_LANE8023 in SuSE 6.3 libpcap; we don't currently
512          * handle it.
513          * It is also used as the PF (Packet Filter) logging format beginning
514          * with OpenBSD 3.0; we use 17 for PF logs unless DLT_LANE8023 is
515          * defined with the value 17.
516          */
517 #if !defined(DLT_LANE8023) || (DLT_LANE8023 != 17)
518         { 17,           WTAP_ENCAP_OLD_PFLOG },
519 #endif
520
521         /*
522          * 18 is DLT_CIP in SuSE 6.3 libpcap; if it's the same as the
523          * DLT_CIP of 16 that the Alexey Kuznetzov patches for
524          * libpcap/tcpdump define, it's WTAP_ENCAP_LINUX_ATM_CLIP.
525          * I've not found any libpcap that uses it for any other purpose -
526          * hopefully nobody will do so in the future.
527          */
528         { 18,           WTAP_ENCAP_LINUX_ATM_CLIP },
529
530         /*
531          * 19 is DLT_ATM_CLIP in the libpcap/tcpdump patches in the
532          * recent versions I've seen of the Linux ATM distribution;
533          * I've not yet found any libpcap that uses it for any other
534          * purpose - hopefully nobody will do so in the future.
535          */
536         { 19,           WTAP_ENCAP_LINUX_ATM_CLIP },
537
538         /*
539          * To repeat:
540          *
541          * If you need a new encapsulation type for libpcap files, do
542          * *N*O*T* use *ANY* of the values listed here!  I.e., do *NOT*
543          * add a new encapsulation type by changing an existing entry;
544          * leave the existing entries alone.
545          *
546          * Instead, send mail to tcpdump-workers@lists.tcpdump.org, asking
547          * for a new DLT_ value, and specifying the purpose of the new value.
548          * When you get the new DLT_ value, use that numerical value in
549          * the "dlt_value" field of "pcap_to_wtap_map[]".
550          */
551 };
552 #define NUM_PCAP_ENCAPS (sizeof pcap_to_wtap_map / sizeof pcap_to_wtap_map[0])
553
554 int
555 wtap_pcap_encap_to_wtap_encap(int encap)
556 {
557         unsigned int i;
558
559         for (i = 0; i < NUM_PCAP_ENCAPS; i++) {
560                 if (pcap_to_wtap_map[i].dlt_value == encap)
561                         return pcap_to_wtap_map[i].wtap_encap_value;
562         }
563         return WTAP_ENCAP_UNKNOWN;
564 }
565
566 int
567 wtap_wtap_encap_to_pcap_encap(int encap)
568 {
569         unsigned int i;
570
571         switch (encap) {
572
573         case WTAP_ENCAP_FDDI:
574         case WTAP_ENCAP_FDDI_BITSWAPPED:
575         case WTAP_ENCAP_NETTL_FDDI:
576                 /*
577                  * Special-case WTAP_ENCAP_FDDI and
578                  * WTAP_ENCAP_FDDI_BITSWAPPED; both of them get mapped
579                  * to DLT_FDDI (even though that may mean that the bit
580                  * order in the FDDI MAC addresses is wrong; so it goes
581                  * - libpcap format doesn't record the byte order,
582                  * so that's not fixable).
583                  */
584                 return 10;      /* that's DLT_FDDI */
585
586         case WTAP_ENCAP_FRELAY_WITH_PHDR:
587                 /*
588                  * Do the same with Frame Relay.
589                  */
590                 return 107;
591
592         case WTAP_ENCAP_IEEE_802_11_WITH_RADIO:
593                 /*
594                  * Map this to DLT_IEEE802_11, for now, even though
595                  * that means the radio information will be lost.
596                  * Once tcpdump support for the BSD radiotap header
597                  * is sufficiently widespread, we should probably
598                  * use that, instead - although we should probably
599                  * ultimately just have WTAP_ENCAP_IEEE_802_11
600                  * as the only Wiretap encapsulation for 802.11,
601                  * and have the pseudo-header include a radiotap-style
602                  * list of attributes.  If we do that, though, we
603                  * should probably bypass the regular Wiretap code
604                  * when writing out packets during a capture, and just
605                  * do the equivalent of a libpcap write (unfortunately,
606                  * libpcap doesn't have an "open dump by file descriptor"
607                  * function, so we can't just use "pcap_dump()"), so
608                  * that we don't spend cycles mapping from libpcap to
609                  * Wiretap and then back to libpcap.  (There are other
610                  * reasons to do that, e.g. to handle AIX libpcap better.)
611                  */
612                 return 105;
613         }
614
615         for (i = 0; i < NUM_PCAP_ENCAPS; i++) {
616                 if (pcap_to_wtap_map[i].wtap_encap_value == encap)
617                         return pcap_to_wtap_map[i].dlt_value;
618         }
619         return -1;
620 }
621
622 /*
623  * Various pseudo-headers that appear at the beginning of packet data.
624  *
625  * We represent them as sets of offsets, as they might not be aligned on
626  * an appropriate structure boundary in the buffer, and as that makes them
627  * independent of the way the compiler might align fields.
628  */
629
630 /*
631  * The link-layer header on SunATM packets.
632  */
633 #define SUNATM_FLAGS    0       /* destination and traffic type - 1 byte */
634 #define SUNATM_VPI      1       /* VPI - 1 byte */
635 #define SUNATM_VCI      2       /* VCI - 2 bytes */
636 #define SUNATM_LEN      4       /* length of the header */
637
638 /*
639  * The link-layer header on Nokia IPSO ATM packets.
640  */
641 #define NOKIAATM_FLAGS  0       /* destination - 1 byte */
642 #define NOKIAATM_VPI    1       /* VPI - 1 byte */
643 #define NOKIAATM_VCI    2       /* VCI - 2 bytes */
644 #define NOKIAATM_LEN    4       /* length of the header */
645
646 /*
647  * The fake link-layer header of IrDA packets as introduced by Jean Tourrilhes
648  * to libpcap.
649  */
650 #define IRDA_SLL_PKTTYPE_OFFSET         0       /* packet type - 2 bytes */
651 /* 12 unused bytes */
652 #define IRDA_SLL_PROTOCOL_OFFSET        14      /* protocol, should be ETH_P_LAPD - 2 bytes */
653 #define IRDA_SLL_LEN                    16      /* length of the header */
654
655 /*
656  * A header containing additional MTP information.
657  */
658 #define MTP2_SENT_OFFSET                0       /* 1 byte */
659 #define MTP2_ANNEX_A_USED_OFFSET        1       /* 1 byte */
660 #define MTP2_LINK_NUMBER_OFFSET         2       /* 2 bytes */
661 #define MTP2_HDR_LEN                    4       /* length of the header */
662
663 /*
664  * A header containing additional SITA WAN information.
665  */
666 #define SITA_FLAGS_OFFSET               0       /* 1 byte */
667 #define SITA_SIGNALS_OFFSET             1       /* 1 byte */
668 #define SITA_ERRORS1_OFFSET             2       /* 1 byte */
669 #define SITA_ERRORS2_OFFSET             3       /* 1 byte */
670 #define SITA_PROTO_OFFSET               4       /* 1 byte */
671 #define SITA_HDR_LEN                    5       /* length of the header */
672
673 /*
674  * The fake link-layer header of LAPD packets.
675  */
676 #ifndef ETH_P_LAPD
677 #define ETH_P_LAPD 0x0030
678 #endif
679
680 #define LAPD_SLL_PKTTYPE_OFFSET         0       /* packet type - 2 bytes */
681 #define LAPD_SLL_HATYPE_OFFSET          2       /* hardware address type - 2 bytes */
682 #define LAPD_SLL_HALEN_OFFSET           4       /* hardware address length - 2 bytes */
683 #define LAPD_SLL_ADDR_OFFSET            6       /* address - 8 bytes */
684 #define LAPD_SLL_PROTOCOL_OFFSET        14      /* protocol, should be ETH_P_LAPD - 2 bytes */
685 #define LAPD_SLL_LEN                    16      /* length of the header */
686
687 /*
688  * I2C link-layer on-disk format
689  */
690 struct i2c_file_hdr {
691     guint8 bus;
692     guint8 flags[4];
693 };
694
695 static gboolean
696 pcap_read_sunatm_pseudoheader(FILE_T fh,
697     union wtap_pseudo_header *pseudo_header, int *err)
698 {
699         guint8  atm_phdr[SUNATM_LEN];
700         int     bytes_read;
701         guint8  vpi;
702         guint16 vci;
703
704         errno = WTAP_ERR_CANT_READ;
705         bytes_read = file_read(atm_phdr, 1, SUNATM_LEN, fh);
706         if (bytes_read != SUNATM_LEN) {
707                 *err = file_error(fh);
708                 if (*err == 0)
709                         *err = WTAP_ERR_SHORT_READ;
710                 return FALSE;
711         }
712
713         vpi = atm_phdr[SUNATM_VPI];
714         vci = pntohs(&atm_phdr[SUNATM_VCI]);
715
716         switch (atm_phdr[SUNATM_FLAGS] & 0x0F) {
717
718         case 0x01:      /* LANE */
719                 pseudo_header->atm.aal = AAL_5;
720                 pseudo_header->atm.type = TRAF_LANE;
721                 break;
722
723         case 0x02:      /* RFC 1483 LLC multiplexed traffic */
724                 pseudo_header->atm.aal = AAL_5;
725                 pseudo_header->atm.type = TRAF_LLCMX;
726                 break;
727
728         case 0x05:      /* ILMI */
729                 pseudo_header->atm.aal = AAL_5;
730                 pseudo_header->atm.type = TRAF_ILMI;
731                 break;
732
733         case 0x06:      /* Q.2931 */
734                 pseudo_header->atm.aal = AAL_SIGNALLING;
735                 pseudo_header->atm.type = TRAF_UNKNOWN;
736                 break;
737
738         case 0x03:      /* MARS (RFC 2022) */
739                 pseudo_header->atm.aal = AAL_5;
740                 pseudo_header->atm.type = TRAF_UNKNOWN;
741                 break;
742
743         case 0x04:      /* IFMP (Ipsilon Flow Management Protocol; see RFC 1954) */
744                 pseudo_header->atm.aal = AAL_5;
745                 pseudo_header->atm.type = TRAF_UNKNOWN; /* XXX - TRAF_IPSILON? */
746                 break;
747
748         default:
749                 /*
750                  * Assume it's AAL5, unless it's VPI 0 and VCI 5, in which
751                  * case assume it's AAL_SIGNALLING; we know nothing more
752                  * about it.
753                  *
754                  * XXX - is this necessary?  Or are we guaranteed that
755                  * all signalling traffic has a type of 0x06?
756                  *
757                  * XXX - is this guaranteed to be AAL5?  Or, if the type is
758                  * 0x00 ("raw"), might it be non-AAL5 traffic?
759                  */
760                 if (vpi == 0 && vci == 5)
761                         pseudo_header->atm.aal = AAL_SIGNALLING;
762                 else
763                         pseudo_header->atm.aal = AAL_5;
764                 pseudo_header->atm.type = TRAF_UNKNOWN;
765                 break;
766         }
767         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
768
769         pseudo_header->atm.vpi = vpi;
770         pseudo_header->atm.vci = vci;
771         pseudo_header->atm.channel = (atm_phdr[SUNATM_FLAGS] & 0x80) ? 0 : 1;
772
773         /* We don't have this information */
774         pseudo_header->atm.flags = 0;
775         pseudo_header->atm.cells = 0;
776         pseudo_header->atm.aal5t_u2u = 0;
777         pseudo_header->atm.aal5t_len = 0;
778         pseudo_header->atm.aal5t_chksum = 0;
779
780         return TRUE;
781 }
782
783 static gboolean
784 pcap_read_nokiaatm_pseudoheader(FILE_T fh,
785     union wtap_pseudo_header *pseudo_header, int *err)
786 {
787         guint8  atm_phdr[NOKIAATM_LEN];
788         int     bytes_read;
789         guint8  vpi;
790         guint16 vci;
791
792         errno = WTAP_ERR_CANT_READ;
793         bytes_read = file_read(atm_phdr, 1, NOKIAATM_LEN, fh);
794         if (bytes_read != NOKIAATM_LEN) {
795                 *err = file_error(fh);
796                 if (*err == 0)
797                         *err = WTAP_ERR_SHORT_READ;
798                 return FALSE;
799         }
800
801         vpi = atm_phdr[NOKIAATM_VPI];
802         vci = pntohs(&atm_phdr[NOKIAATM_VCI]);
803
804         pseudo_header->atm.vpi = vpi;
805         pseudo_header->atm.vci = vci;
806         pseudo_header->atm.channel = (atm_phdr[NOKIAATM_FLAGS] & 0x80) ? 0 : 1;
807
808         /* We don't have this information */
809         pseudo_header->atm.flags = 0;
810         pseudo_header->atm.cells = 0;
811         pseudo_header->atm.aal5t_u2u = 0;
812         pseudo_header->atm.aal5t_len = 0;
813         pseudo_header->atm.aal5t_chksum = 0;
814
815         return TRUE;
816 }
817
818 static gboolean
819 pcap_read_irda_pseudoheader(FILE_T fh, union wtap_pseudo_header *pseudo_header,
820     int *err, gchar **err_info)
821 {
822         guint8  irda_phdr[IRDA_SLL_LEN];
823         int     bytes_read;
824
825         errno = WTAP_ERR_CANT_READ;
826         bytes_read = file_read(irda_phdr, 1, IRDA_SLL_LEN, fh);
827         if (bytes_read != IRDA_SLL_LEN) {
828                 *err = file_error(fh);
829                 if (*err == 0)
830                         *err = WTAP_ERR_SHORT_READ;
831                 return FALSE;
832         }
833
834         if (pntohs(&irda_phdr[IRDA_SLL_PROTOCOL_OFFSET]) != 0x0017) {
835                 *err = WTAP_ERR_BAD_RECORD;
836                 if (err_info != NULL)
837                         *err_info = g_strdup("libpcap: IrDA capture has a packet with an invalid sll_protocol field");
838                 return FALSE;
839         }
840
841         pseudo_header->irda.pkttype = pntohs(&irda_phdr[IRDA_SLL_PKTTYPE_OFFSET]);
842
843         return TRUE;
844 }
845
846 static gboolean
847 pcap_read_mtp2_pseudoheader(FILE_T fh, union wtap_pseudo_header *pseudo_header, int *err, gchar **err_info _U_)
848 {
849         guint8 mtp2_hdr[MTP2_HDR_LEN];
850         int    bytes_read;
851
852         errno = WTAP_ERR_CANT_READ;
853         bytes_read = file_read(mtp2_hdr, 1, MTP2_HDR_LEN, fh);
854         if (bytes_read != MTP2_HDR_LEN) {
855                 *err = file_error(fh);
856                 if (*err == 0)
857                         *err = WTAP_ERR_SHORT_READ;
858                 return FALSE;
859         }
860
861         pseudo_header->mtp2.sent         = mtp2_hdr[MTP2_SENT_OFFSET];
862         pseudo_header->mtp2.annex_a_used = mtp2_hdr[MTP2_ANNEX_A_USED_OFFSET];
863         pseudo_header->mtp2.link_number  = pntohs(&mtp2_hdr[MTP2_LINK_NUMBER_OFFSET]);
864
865         return TRUE;
866 }
867
868 static gboolean
869 pcap_read_lapd_pseudoheader(FILE_T fh, union wtap_pseudo_header *pseudo_header,
870     int *err, gchar **err_info)
871 {
872         guint8  lapd_phdr[LAPD_SLL_LEN];
873         int     bytes_read;
874
875         errno = WTAP_ERR_CANT_READ;
876         bytes_read = file_read(lapd_phdr, 1, LAPD_SLL_LEN, fh);
877         if (bytes_read != LAPD_SLL_LEN) {
878                 *err = file_error(fh);
879                 if (*err == 0)
880                         *err = WTAP_ERR_SHORT_READ;
881                 return FALSE;
882         }
883
884         if (pntohs(&lapd_phdr[LAPD_SLL_PROTOCOL_OFFSET]) != ETH_P_LAPD) {
885                 *err = WTAP_ERR_BAD_RECORD;
886                 if (err_info != NULL)
887                         *err_info = g_strdup("libpcap: LAPD capture has a packet with an invalid sll_protocol field");
888                 return FALSE;
889         }
890
891         pseudo_header->lapd.pkttype = pntohs(&lapd_phdr[LAPD_SLL_PKTTYPE_OFFSET]);
892         pseudo_header->lapd.we_network = !!lapd_phdr[LAPD_SLL_ADDR_OFFSET+0];
893
894         return TRUE;
895 }
896
897 static gboolean
898 pcap_read_sita_pseudoheader(FILE_T fh, union wtap_pseudo_header *pseudo_header, int *err, gchar **err_info _U_)
899 {
900         guint8  sita_phdr[SITA_HDR_LEN];
901         int     bytes_read;
902
903         errno = WTAP_ERR_CANT_READ;
904         bytes_read = file_read(sita_phdr, 1, SITA_HDR_LEN, fh);
905         if (bytes_read != SITA_HDR_LEN) {
906                 *err = file_error(fh);
907                 if (*err == 0)
908                         *err = WTAP_ERR_SHORT_READ;
909                 return FALSE;
910         }
911
912         pseudo_header->sita.flags   = sita_phdr[SITA_FLAGS_OFFSET];
913         pseudo_header->sita.signals = sita_phdr[SITA_SIGNALS_OFFSET];
914         pseudo_header->sita.errors1 = sita_phdr[SITA_ERRORS1_OFFSET];
915         pseudo_header->sita.errors2 = sita_phdr[SITA_ERRORS2_OFFSET];
916         pseudo_header->sita.proto   = sita_phdr[SITA_PROTO_OFFSET];
917
918         return TRUE;
919 }
920
921 static gboolean
922 pcap_read_linux_usb_pseudoheader(FILE_T fh,
923     union wtap_pseudo_header *pseudo_header, gboolean byte_swapped, int *err)
924 {
925         int     bytes_read;
926
927         errno = WTAP_ERR_CANT_READ;
928         bytes_read = file_read(&pseudo_header->linux_usb, 1,
929             sizeof (struct linux_usb_phdr), fh);
930         if (bytes_read != sizeof (struct linux_usb_phdr)) {
931                 *err = file_error(fh);
932                 if (*err == 0)
933                         *err = WTAP_ERR_SHORT_READ;
934                 return FALSE;
935         }
936
937         if (byte_swapped) {
938                 pseudo_header->linux_usb.id = GUINT64_SWAP_LE_BE(pseudo_header->linux_usb.id);
939                 pseudo_header->linux_usb.bus_id = GUINT16_SWAP_LE_BE(pseudo_header->linux_usb.bus_id);
940                 pseudo_header->linux_usb.ts_sec = GUINT64_SWAP_LE_BE(pseudo_header->linux_usb.ts_sec);
941                 pseudo_header->linux_usb.ts_usec = GUINT32_SWAP_LE_BE(pseudo_header->linux_usb.ts_usec);
942                 pseudo_header->linux_usb.status = GUINT32_SWAP_LE_BE(pseudo_header->linux_usb.status);
943                 pseudo_header->linux_usb.urb_len = GUINT32_SWAP_LE_BE(pseudo_header->linux_usb.urb_len);
944                 pseudo_header->linux_usb.data_len = GUINT32_SWAP_LE_BE(pseudo_header->linux_usb.data_len);
945         }
946
947         return TRUE;
948 }
949
950 static gboolean
951 pcap_read_bt_pseudoheader(FILE_T fh,
952     union wtap_pseudo_header *pseudo_header, int *err)
953 {
954         int     bytes_read;
955         struct libpcap_bt_phdr phdr;
956
957         errno = WTAP_ERR_CANT_READ;
958         bytes_read = file_read(&phdr, 1,
959             sizeof (struct libpcap_bt_phdr), fh);
960         if (bytes_read != sizeof (struct libpcap_bt_phdr)) {
961                 *err = file_error(fh);
962                 if (*err == 0)
963                         *err = WTAP_ERR_SHORT_READ;
964                 return FALSE;
965         }
966         pseudo_header->p2p.sent = ((g_ntohl(phdr.direction) & LIBPCAP_BT_PHDR_RECV) == 0)? TRUE: FALSE;
967         return TRUE;
968 }
969
970 static gboolean
971 pcap_read_ppp_pseudoheader(FILE_T fh,
972     union wtap_pseudo_header *pseudo_header, int *err)
973 {
974         int     bytes_read;
975         struct libpcap_ppp_phdr phdr;
976
977         errno = WTAP_ERR_CANT_READ;
978         bytes_read = file_read(&phdr, 1,
979             sizeof (struct libpcap_ppp_phdr), fh);
980         if (bytes_read != sizeof (struct libpcap_ppp_phdr)) {
981                 *err = file_error(fh);
982                 if (*err == 0)
983                         *err = WTAP_ERR_SHORT_READ;
984                 return FALSE;
985         }
986         pseudo_header->p2p.sent = (phdr.direction == LIBPCAP_PPP_PHDR_SENT) ? TRUE: FALSE;
987         return TRUE;
988 }
989
990 static gboolean
991 pcap_read_erf_pseudoheader(FILE_T fh, struct wtap_pkthdr *whdr,
992                               union wtap_pseudo_header *pseudo_header, int *err, gchar **err_info _U_)
993 {
994   guint8 erf_hdr[sizeof(struct erf_phdr)];
995   int    bytes_read;
996
997   errno = WTAP_ERR_CANT_READ;
998   bytes_read = file_read(erf_hdr, 1, sizeof(struct erf_phdr), fh);
999   if (bytes_read != sizeof(struct erf_phdr)) {
1000     *err = file_error(fh);
1001     if (*err == 0)
1002       *err = WTAP_ERR_SHORT_READ;
1003     return FALSE;
1004   }
1005   pseudo_header->erf.phdr.ts = pletohll(&erf_hdr[0]); /* timestamp */
1006   pseudo_header->erf.phdr.type =  erf_hdr[8];
1007   pseudo_header->erf.phdr.flags = erf_hdr[9];
1008   pseudo_header->erf.phdr.rlen = pntohs(&erf_hdr[10]);
1009   pseudo_header->erf.phdr.lctr = pntohs(&erf_hdr[12]);
1010   pseudo_header->erf.phdr.wlen = pntohs(&erf_hdr[14]);
1011
1012   /* The high 32 bits of the timestamp contain the integer number of seconds
1013    * while the lower 32 bits contain the binary fraction of the second.
1014    * This allows an ultimate resolution of 1/(2^32) seconds, or approximately 233 picoseconds */
1015   if (whdr) {
1016     guint64 ts = pseudo_header->erf.phdr.ts;
1017     whdr->ts.secs = (guint32) (ts >> 32);
1018     ts = ((ts & 0xffffffff) * 1000 * 1000 * 1000);
1019     ts += (ts & 0x80000000) << 1; /* rounding */
1020     whdr->ts.nsecs = ((guint32) (ts >> 32));
1021     if ( whdr->ts.nsecs >= 1000000000) {
1022       whdr->ts.nsecs -= 1000000000;
1023       whdr->ts.secs += 1;
1024     }
1025   }
1026   return TRUE;
1027 }
1028
1029 /*
1030  * If the type of record given in the pseudo header indicate the presence of an extension
1031  * header then, read all the extension headers
1032  */
1033 static gboolean
1034 pcap_read_erf_exheader(FILE_T fh, union wtap_pseudo_header *pseudo_header,
1035                            int *err, gchar **err_info _U_, guint * psize)
1036 {
1037   int bytes_read = 0;
1038   guint8 erf_exhdr[8];
1039   guint64 erf_exhdr_sw;
1040   int i = 0, max = sizeof(pseudo_header->erf.ehdr_list)/sizeof(struct erf_ehdr);
1041   guint8 type = pseudo_header->erf.phdr.type;
1042   *psize = 0;
1043   if (pseudo_header->erf.phdr.type & 0x80){
1044     do{
1045       errno = WTAP_ERR_CANT_READ;
1046       bytes_read = file_read(erf_exhdr, 1, 8, fh);
1047       if (bytes_read != 8 ) {
1048         *err = file_error(fh);
1049         if (*err == 0)
1050           *err = WTAP_ERR_SHORT_READ;
1051         return FALSE;
1052       }
1053       type = erf_exhdr[0];
1054       erf_exhdr_sw = pntohll((guint64*) &(erf_exhdr[0]));
1055       if (i < max)
1056         memcpy(&pseudo_header->erf.ehdr_list[i].ehdr, &erf_exhdr_sw, sizeof(erf_exhdr_sw));
1057       *psize += 8;
1058       i++;
1059     } while (type & 0x80);
1060   }
1061   return TRUE;
1062 }
1063
1064 /*
1065  * If the type of record given in the pseudo header indicate the precense of a subheader
1066  * then, read this optional subheader
1067  */
1068 static gboolean
1069 pcap_read_erf_subheader(FILE_T fh, union wtap_pseudo_header *pseudo_header,
1070                            int *err, gchar **err_info _U_, guint * psize)
1071 {
1072   guint8 erf_subhdr[sizeof(union erf_subhdr)];
1073   int    bytes_read;
1074
1075   *psize=0;
1076   switch(pseudo_header->erf.phdr.type & 0x7F) {
1077   case ERF_TYPE_MC_HDLC:
1078   case ERF_TYPE_MC_RAW:
1079   case ERF_TYPE_MC_ATM:
1080   case ERF_TYPE_MC_RAW_CHANNEL:
1081   case ERF_TYPE_MC_AAL5:
1082   case ERF_TYPE_MC_AAL2:
1083   case ERF_TYPE_COLOR_MC_HDLC_POS:
1084     /* Extract the Multi Channel header to include it in the pseudo header part */
1085     errno = WTAP_ERR_CANT_READ;
1086     bytes_read = file_read(erf_subhdr, 1, sizeof(erf_mc_header_t), fh);
1087     if (bytes_read != sizeof(erf_mc_header_t) ) {
1088       *err = file_error(fh);
1089       if (*err == 0)
1090         *err = WTAP_ERR_SHORT_READ;
1091       return FALSE;
1092     }
1093     pseudo_header->erf.subhdr.mc_hdr = pntohl(&erf_subhdr[0]);
1094     *psize = sizeof(erf_mc_header_t);
1095     break;
1096   case ERF_TYPE_ETH:
1097   case ERF_TYPE_COLOR_ETH:
1098   case ERF_TYPE_DSM_COLOR_ETH:
1099     /* Extract the Ethernet additional header to include it in the pseudo header part */
1100     errno = WTAP_ERR_CANT_READ;
1101     bytes_read = file_read(erf_subhdr, 1, sizeof(erf_eth_header_t), fh);
1102     if (bytes_read != sizeof(erf_eth_header_t) ) {
1103       *err = file_error(fh);
1104       if (*err == 0)
1105         *err = WTAP_ERR_SHORT_READ;
1106       return FALSE;
1107     }
1108     pseudo_header->erf.subhdr.eth_hdr = pntohs(&erf_subhdr[0]);
1109     *psize = sizeof(erf_eth_header_t);
1110     break;
1111   default:
1112     /* No optional pseudo header for this ERF type */
1113     break;
1114   }
1115   return TRUE;
1116 }
1117
1118 static gboolean
1119 pcap_read_i2c_pseudoheader(FILE_T fh, union wtap_pseudo_header *pseudo_header, int *err, gchar **err_info _U_)
1120 {
1121         struct i2c_file_hdr i2c_hdr;
1122         int    bytes_read;
1123
1124         errno = WTAP_ERR_CANT_READ;
1125         bytes_read = file_read(&i2c_hdr, 1, sizeof (i2c_hdr), fh);
1126         if (bytes_read != sizeof (i2c_hdr)) {
1127                 *err = file_error(fh);
1128                 if (*err == 0)
1129                         *err = WTAP_ERR_SHORT_READ;
1130                 return FALSE;
1131         }
1132
1133         pseudo_header->i2c.is_event = i2c_hdr.bus & 0x80 ? 1 : 0;
1134         pseudo_header->i2c.bus = i2c_hdr.bus & 0x7f;
1135         pseudo_header->i2c.flags = pntohl(&i2c_hdr.flags);
1136
1137         return TRUE;
1138 }
1139
1140 int
1141 pcap_process_pseudo_header(FILE_T fh, int file_type, int wtap_encap, gboolean bytes_swapped, guint packet_size,
1142     gboolean check_packet_size, struct wtap_pkthdr *phdr,
1143     union wtap_pseudo_header *pseudo_header, int *err, gchar **err_info)
1144 {
1145         int phdr_len = 0;
1146         guint size;
1147
1148         switch (wtap_encap) {
1149
1150         case WTAP_ENCAP_ATM_PDUS:
1151                 if (file_type == WTAP_FILE_PCAP_NOKIA) {
1152                         /*
1153                          * Nokia IPSO ATM.
1154                          */
1155                         if (check_packet_size && packet_size < NOKIAATM_LEN) {
1156                                 /*
1157                                  * Uh-oh, the packet isn't big enough to even
1158                                  * have a pseudo-header.
1159                                  */
1160                                 *err = WTAP_ERR_BAD_RECORD;
1161                                 *err_info = g_strdup_printf("pcap: Nokia IPSO ATM file has a %u-byte packet, too small to have even an ATM pseudo-header",
1162                                     packet_size);
1163                                 return -1;
1164                         }
1165                         if (!pcap_read_nokiaatm_pseudoheader(fh,
1166                             pseudo_header, err))
1167                                 return -1;      /* Read error */
1168
1169                         phdr_len = NOKIAATM_LEN;
1170                 } else {
1171                         /*
1172                          * SunATM.
1173                          */
1174                         if (check_packet_size && packet_size < SUNATM_LEN) {
1175                                 /*
1176                                  * Uh-oh, the packet isn't big enough to even
1177                                  * have a pseudo-header.
1178                                  */
1179                                 *err = WTAP_ERR_BAD_RECORD;
1180                                 *err_info = g_strdup_printf("pcap: SunATM file has a %u-byte packet, too small to have even an ATM pseudo-header",
1181                                     packet_size);
1182                                 return -1;
1183                         }
1184                         if (!pcap_read_sunatm_pseudoheader(fh,
1185                             pseudo_header, err))
1186                                 return -1;      /* Read error */
1187
1188                         phdr_len = SUNATM_LEN;
1189                 }
1190                 break;
1191
1192         case WTAP_ENCAP_ETHERNET:
1193                 /*
1194                  * We don't know whether there's an FCS in this frame or not.
1195                  */
1196                 pseudo_header->eth.fcs_len = -1;
1197                 break;
1198
1199         case WTAP_ENCAP_IEEE_802_11:
1200         case WTAP_ENCAP_PRISM_HEADER:
1201         case WTAP_ENCAP_IEEE_802_11_WLAN_RADIOTAP:
1202         case WTAP_ENCAP_IEEE_802_11_WLAN_AVS:
1203                 /*
1204                  * We don't know whether there's an FCS in this frame or not.
1205                  * XXX - are there any OSes where the capture mechanism
1206                  * supplies an FCS?
1207                  */
1208                 pseudo_header->ieee_802_11.fcs_len = -1;
1209                 pseudo_header->ieee_802_11.channel = 0;
1210                 pseudo_header->ieee_802_11.data_rate = 0;
1211                 pseudo_header->ieee_802_11.signal_level = 0;
1212                 break;
1213
1214         case WTAP_ENCAP_IRDA:
1215                 if (check_packet_size && packet_size < IRDA_SLL_LEN) {
1216                         /*
1217                          * Uh-oh, the packet isn't big enough to even
1218                          * have a pseudo-header.
1219                          */
1220                         *err = WTAP_ERR_BAD_RECORD;
1221                         *err_info = g_strdup_printf("pcap: IrDA file has a %u-byte packet, too small to have even an IrDA pseudo-header",
1222                             packet_size);
1223                         return -1;
1224                 }
1225                 if (!pcap_read_irda_pseudoheader(fh, pseudo_header,
1226                     err, err_info))
1227                         return -1;      /* Read error */
1228
1229                 phdr_len = IRDA_SLL_LEN;
1230                 break;
1231
1232         case WTAP_ENCAP_MTP2_WITH_PHDR:
1233                 if (check_packet_size && packet_size < MTP2_HDR_LEN) {
1234                         /*
1235                          * Uh-oh, the packet isn't big enough to even
1236                          * have a pseudo-header.
1237                          */
1238                         *err = WTAP_ERR_BAD_RECORD;
1239                         *err_info = g_strdup_printf("pcap: MTP2 file has a %u-byte packet, too small to have even an MTP2 pseudo-header",
1240                             packet_size);
1241                         return -1;
1242                 }
1243                 if (!pcap_read_mtp2_pseudoheader(fh, pseudo_header,
1244                     err, err_info))
1245                         return -1;      /* Read error */
1246
1247                 phdr_len = MTP2_HDR_LEN;
1248                 break;
1249
1250         case WTAP_ENCAP_LINUX_LAPD:
1251                 if (check_packet_size && packet_size < LAPD_SLL_LEN) {
1252                         /*
1253                          * Uh-oh, the packet isn't big enough to even
1254                          * have a pseudo-header.
1255                          */
1256                         *err = WTAP_ERR_BAD_RECORD;
1257                         *err_info = g_strdup_printf("pcap: LAPD file has a %u-byte packet, too small to have even a LAPD pseudo-header",
1258                             packet_size);
1259                         return -1;
1260                 }
1261                 if (!pcap_read_lapd_pseudoheader(fh, pseudo_header,
1262                     err, err_info))
1263                         return -1;      /* Read error */
1264
1265                 phdr_len = LAPD_SLL_LEN;
1266                 break;
1267
1268         case WTAP_ENCAP_SITA:
1269                 if (check_packet_size && packet_size < SITA_HDR_LEN) {
1270                         /*
1271                          * Uh-oh, the packet isn't big enough to even
1272                          * have a pseudo-header.
1273                          */
1274                         *err = WTAP_ERR_BAD_RECORD;
1275                         *err_info = g_strdup_printf("pcap: SITA file has a %u-byte packet, too small to have even a SITA pseudo-header",
1276                             packet_size);
1277                         return -1;
1278                 }
1279                 if (!pcap_read_sita_pseudoheader(fh, pseudo_header,
1280                     err, err_info))
1281                         return -1;      /* Read error */
1282
1283                 phdr_len = SITA_HDR_LEN;
1284                 break;
1285
1286         case WTAP_ENCAP_USB_LINUX:
1287         case WTAP_ENCAP_USB_LINUX_MMAPPED:
1288                 if (check_packet_size &&
1289                     packet_size < sizeof (struct linux_usb_phdr)) {
1290                         /*
1291                          * Uh-oh, the packet isn't big enough to even
1292                          * have a pseudo-header.
1293                          */
1294                         *err = WTAP_ERR_BAD_RECORD;
1295                         *err_info = g_strdup_printf("pcap: Linux USB file has a %u-byte packet, too small to have even a Linux USB pseudo-header",
1296                             packet_size);
1297                         return -1;
1298                 }
1299                 if (!pcap_read_linux_usb_pseudoheader(fh,
1300                     pseudo_header, bytes_swapped, err))
1301                         return -1;      /* Read error */
1302
1303                 phdr_len = (int)sizeof (struct linux_usb_phdr);
1304                 break;
1305
1306         case WTAP_ENCAP_BLUETOOTH_H4:
1307                 /* We don't have pseudoheader, so just pretend we received everything. */
1308                 pseudo_header->p2p.sent = FALSE;
1309                 break;
1310
1311         case WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR:
1312                 if (check_packet_size &&
1313                     packet_size < sizeof (struct libpcap_bt_phdr)) {
1314                         /*
1315                          * Uh-oh, the packet isn't big enough to even
1316                          * have a pseudo-header.
1317                          */
1318                         *err = WTAP_ERR_BAD_RECORD;
1319                         *err_info = g_strdup_printf("pcap: lipcap bluetooth file has a %u-byte packet, too small to have even a pseudo-header",
1320                             packet_size);
1321                         return -1;
1322                 }
1323                 if (!pcap_read_bt_pseudoheader(fh,
1324                     pseudo_header, err))
1325                         return -1;      /* Read error */
1326
1327                 phdr_len = (int)sizeof (struct libpcap_bt_phdr);
1328                 break;
1329
1330         case WTAP_ENCAP_PPP_WITH_PHDR:
1331                 if (check_packet_size &&
1332                     packet_size < sizeof (struct libpcap_ppp_phdr)) {
1333                         /*
1334                          * Uh-oh, the packet isn't big enough to even
1335                          * have a pseudo-header.
1336                          */
1337                         *err = WTAP_ERR_BAD_RECORD;
1338                         *err_info = g_strdup_printf("pcap: lipcap ppp file has a %u-byte packet, too small to have even a pseudo-header",
1339                             packet_size);
1340                         return -1;
1341                 }
1342                 if (!pcap_read_ppp_pseudoheader(fh,
1343                     pseudo_header, err))
1344                         return -1;      /* Read error */
1345
1346                 phdr_len = (int)sizeof (struct libpcap_ppp_phdr);
1347                 break;
1348
1349         case WTAP_ENCAP_ERF:
1350                 if (check_packet_size &&
1351                     packet_size < sizeof(struct erf_phdr) ) {
1352                         /*
1353                          * Uh-oh, the packet isn't big enough to even
1354                          * have a pseudo-header.
1355                          */
1356                         *err = WTAP_ERR_BAD_RECORD;
1357                         *err_info = g_strdup_printf("pcap: ERF file has a %u-byte packet, too small to have even an ERF pseudo-header",
1358                             packet_size);
1359                         return -1;
1360                 }
1361
1362                 if (!pcap_read_erf_pseudoheader(fh, phdr, pseudo_header,
1363                     err, err_info))
1364                         return -1;      /* Read error */
1365
1366                 phdr_len = (int)sizeof(struct erf_phdr);
1367
1368                 /* check the optional Extension header */
1369                 if (!pcap_read_erf_exheader(fh, pseudo_header, err, err_info,
1370                     &size))
1371                         return -1;      /* Read error */
1372
1373                 phdr_len += size;
1374
1375                 /* check the optional Multi Channel header */
1376                 if (!pcap_read_erf_subheader(fh, pseudo_header, err, err_info,
1377                     &size))
1378                         return -1;      /* Read error */
1379
1380                 phdr_len += size;
1381                 break;
1382
1383         case WTAP_ENCAP_I2C:
1384                 if (check_packet_size &&
1385                     packet_size < sizeof (struct i2c_file_hdr)) {
1386                         /*
1387                          * Uh-oh, the packet isn't big enough to even
1388                          * have a pseudo-header.
1389                          */
1390                         *err = WTAP_ERR_BAD_RECORD;
1391                         *err_info = g_strdup_printf("pcap: I2C file has a %u-byte packet, too small to have even a I2C pseudo-header",
1392                             packet_size);
1393                         return -1;
1394                 }
1395                 if (!pcap_read_i2c_pseudoheader(fh, pseudo_header,
1396                     err, err_info))
1397                         return -1;      /* Read error */
1398
1399                 /*
1400                  * Don't count the pseudo-header as part of the packet.
1401                  */
1402                 phdr_len = (int)sizeof (struct i2c_file_hdr);
1403                 break;
1404         }
1405
1406         return phdr_len;
1407 }
1408
1409 int
1410 pcap_get_phdr_size(int encap, const union wtap_pseudo_header *pseudo_header)
1411 {
1412         int hdrsize;
1413
1414         switch (encap) {
1415
1416         case WTAP_ENCAP_ATM_PDUS:
1417                 hdrsize = SUNATM_LEN;
1418                 break;
1419
1420         case WTAP_ENCAP_IRDA:
1421                 hdrsize = IRDA_SLL_LEN;
1422                 break;
1423
1424         case WTAP_ENCAP_MTP2_WITH_PHDR:
1425                 hdrsize = MTP2_HDR_LEN;
1426                 break;
1427
1428         case WTAP_ENCAP_LINUX_LAPD:
1429                 hdrsize = LAPD_SLL_LEN;
1430                 break;
1431
1432         case WTAP_ENCAP_SITA:
1433                 hdrsize = SITA_HDR_LEN;
1434                 break;
1435
1436         case WTAP_ENCAP_USB_LINUX:
1437         case WTAP_ENCAP_USB_LINUX_MMAPPED:
1438                 hdrsize = (int)sizeof (struct linux_usb_phdr);
1439                 break;
1440
1441         case WTAP_ENCAP_ERF:
1442                 hdrsize = (int)sizeof (struct erf_phdr);
1443                 if (pseudo_header->erf.phdr.type & 0x80)
1444                         hdrsize += 8;
1445                 switch (pseudo_header->erf.phdr.type & 0x7F) {
1446
1447                 case ERF_TYPE_MC_HDLC:
1448                 case ERF_TYPE_MC_RAW:
1449                 case ERF_TYPE_MC_ATM:
1450                 case ERF_TYPE_MC_RAW_CHANNEL:
1451                 case ERF_TYPE_MC_AAL5:
1452                 case ERF_TYPE_MC_AAL2:
1453                 case ERF_TYPE_COLOR_MC_HDLC_POS:
1454                         hdrsize += (int)sizeof(struct erf_mc_hdr);
1455                         break;
1456
1457                 case ERF_TYPE_ETH:
1458                 case ERF_TYPE_COLOR_ETH:
1459                 case ERF_TYPE_DSM_COLOR_ETH:
1460                         hdrsize += (int)sizeof(struct erf_eth_hdr);
1461                         break;
1462
1463                 default:
1464                         break;
1465                 }
1466                 break;
1467
1468         case WTAP_ENCAP_I2C:
1469                 hdrsize = (int)sizeof (struct i2c_file_hdr);
1470                 break;
1471
1472         case WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR:
1473                 hdrsize = (int)sizeof (struct libpcap_bt_phdr);
1474                 break;
1475
1476         case WTAP_ENCAP_PPP_WITH_PHDR:
1477                 hdrsize = (int)sizeof (struct libpcap_ppp_phdr);
1478                 break;
1479
1480         default:
1481                 hdrsize = 0;
1482                 break;
1483         }
1484
1485         return hdrsize;
1486 }
1487
1488 gboolean
1489 pcap_write_phdr(wtap_dumper *wdh, int encap, const union wtap_pseudo_header *pseudo_header,
1490     int *err)
1491 {
1492         guint8 atm_hdr[SUNATM_LEN];
1493         guint8 irda_hdr[IRDA_SLL_LEN];
1494         guint8 lapd_hdr[LAPD_SLL_LEN];
1495         guint8 mtp2_hdr[MTP2_HDR_LEN];
1496         guint8 sita_hdr[SITA_HDR_LEN];
1497         guint8 erf_hdr[ sizeof(struct erf_mc_phdr)];
1498         struct i2c_file_hdr i2c_hdr;
1499         struct libpcap_bt_phdr bt_hdr;
1500         struct libpcap_ppp_phdr ppp_hdr;
1501         size_t nwritten;
1502         size_t size;
1503
1504         switch (encap) {
1505
1506         case WTAP_ENCAP_ATM_PDUS:
1507                 /*
1508                  * Write the ATM header.
1509                  */
1510                 atm_hdr[SUNATM_FLAGS] =
1511                     (pseudo_header->atm.channel == 0) ? 0x80 : 0x00;
1512                 switch (pseudo_header->atm.aal) {
1513
1514                 case AAL_SIGNALLING:
1515                         /* Q.2931 */
1516                         atm_hdr[SUNATM_FLAGS] |= 0x06;
1517                         break;
1518
1519                 case AAL_5:
1520                         switch (pseudo_header->atm.type) {
1521
1522                         case TRAF_LANE:
1523                                 /* LANE */
1524                                 atm_hdr[SUNATM_FLAGS] |= 0x01;
1525                                 break;
1526
1527                         case TRAF_LLCMX:
1528                                 /* RFC 1483 LLC multiplexed traffic */
1529                                 atm_hdr[SUNATM_FLAGS] |= 0x02;
1530                                 break;
1531
1532                         case TRAF_ILMI:
1533                                 /* ILMI */
1534                                 atm_hdr[SUNATM_FLAGS] |= 0x05;
1535                                 break;
1536                         }
1537                         break;
1538                 }
1539                 atm_hdr[SUNATM_VPI] = (guint8)pseudo_header->atm.vpi;
1540                 phtons(&atm_hdr[SUNATM_VCI], pseudo_header->atm.vci);
1541                 nwritten = wtap_dump_file_write(wdh, atm_hdr, sizeof(atm_hdr));
1542                 if (nwritten != sizeof(atm_hdr)) {
1543                         if (nwritten == 0 && wtap_dump_file_ferror(wdh))
1544                                 *err = wtap_dump_file_ferror(wdh);
1545                         else
1546                                 *err = WTAP_ERR_SHORT_WRITE;
1547                         return FALSE;
1548                 }
1549                 wdh->bytes_dumped += sizeof(atm_hdr);
1550                 break;
1551
1552         case WTAP_ENCAP_IRDA:
1553                 /*
1554                  * Write the IrDA header.
1555                  */
1556                 memset(irda_hdr, 0, sizeof(irda_hdr));
1557                 phtons(&irda_hdr[IRDA_SLL_PKTTYPE_OFFSET],
1558                     pseudo_header->irda.pkttype);
1559                 phtons(&irda_hdr[IRDA_SLL_PROTOCOL_OFFSET], 0x0017);
1560                 nwritten = wtap_dump_file_write(wdh, irda_hdr, sizeof(irda_hdr));
1561                 if (nwritten != sizeof(irda_hdr)) {
1562                         if (nwritten == 0 && wtap_dump_file_ferror(wdh))
1563                                 *err = wtap_dump_file_ferror(wdh);
1564                         else
1565                                 *err = WTAP_ERR_SHORT_WRITE;
1566                         return FALSE;
1567                 }
1568                 wdh->bytes_dumped += sizeof(irda_hdr);
1569                 break;
1570
1571         case WTAP_ENCAP_MTP2_WITH_PHDR:
1572                 /*
1573                  * Write the MTP2 header.
1574                  */
1575                 memset(&mtp2_hdr, 0, sizeof(mtp2_hdr));
1576                 mtp2_hdr[MTP2_SENT_OFFSET] = pseudo_header->mtp2.sent;
1577                 mtp2_hdr[MTP2_ANNEX_A_USED_OFFSET] = pseudo_header->mtp2.annex_a_used;
1578                 phtons(&mtp2_hdr[MTP2_LINK_NUMBER_OFFSET],
1579                     pseudo_header->mtp2.link_number);
1580                 nwritten = wtap_dump_file_write(wdh, mtp2_hdr, sizeof(mtp2_hdr));
1581                 if (nwritten != sizeof(mtp2_hdr)) {
1582                         if (nwritten == 0 && wtap_dump_file_ferror(wdh))
1583                                 *err = wtap_dump_file_ferror(wdh);
1584                         else
1585                                 *err = WTAP_ERR_SHORT_WRITE;
1586                         return FALSE;
1587                 }
1588                 wdh->bytes_dumped += sizeof(mtp2_hdr);
1589                 break;
1590
1591         case WTAP_ENCAP_LINUX_LAPD:
1592                 /*
1593                  * Write the LAPD header.
1594                  */
1595                 memset(&lapd_hdr, 0, sizeof(lapd_hdr));
1596                 phtons(&lapd_hdr[LAPD_SLL_PKTTYPE_OFFSET],
1597                     pseudo_header->lapd.pkttype);
1598                 phtons(&lapd_hdr[LAPD_SLL_PROTOCOL_OFFSET], ETH_P_LAPD);
1599                 lapd_hdr[LAPD_SLL_ADDR_OFFSET + 0] =
1600                     pseudo_header->lapd.we_network?0x01:0x00;
1601                 nwritten = fwrite(&lapd_hdr, 1, sizeof(lapd_hdr), wdh->fh);
1602                 if (nwritten != sizeof(lapd_hdr)) {
1603                         if (nwritten == 0 && ferror(wdh->fh))
1604                                 *err = errno;
1605                         else
1606                                 *err = WTAP_ERR_SHORT_WRITE;
1607                         return FALSE;
1608                 }
1609                 wdh->bytes_dumped += sizeof(lapd_hdr);
1610                 break;
1611
1612         case WTAP_ENCAP_SITA:
1613                 /*
1614                  * Write the SITA header.
1615                  */
1616                 memset(&sita_hdr, 0, sizeof(sita_hdr));
1617                 sita_hdr[SITA_FLAGS_OFFSET]   = pseudo_header->sita.flags;
1618                 sita_hdr[SITA_SIGNALS_OFFSET] = pseudo_header->sita.signals;
1619                 sita_hdr[SITA_ERRORS1_OFFSET] = pseudo_header->sita.errors1;
1620                 sita_hdr[SITA_ERRORS2_OFFSET] = pseudo_header->sita.errors2;
1621                 sita_hdr[SITA_PROTO_OFFSET]   = pseudo_header->sita.proto;
1622                 nwritten = fwrite(&sita_hdr, 1, sizeof(sita_hdr), wdh->fh);
1623                 if (nwritten != sizeof(sita_hdr)) {
1624                         if (nwritten == 0 && ferror(wdh->fh))
1625                                 *err = errno;
1626                         else
1627                                 *err = WTAP_ERR_SHORT_WRITE;
1628                         return FALSE;
1629                 }
1630                 wdh->bytes_dumped += sizeof(sita_hdr);
1631                 break;
1632
1633         case WTAP_ENCAP_USB_LINUX:
1634         case WTAP_ENCAP_USB_LINUX_MMAPPED:
1635                 /*
1636                  * Write out the pseudo-header; it has the same format
1637                  * as the Linux USB header, and that header is supposed
1638                  * to be written in the host byte order of the machine
1639                  * writing the file.
1640                  */
1641                 nwritten = fwrite(&pseudo_header->linux_usb, 1,
1642                     sizeof(pseudo_header->linux_usb), wdh->fh);
1643                 if (nwritten != sizeof(pseudo_header->linux_usb)) {
1644                         if (nwritten == 0 && ferror(wdh->fh))
1645                                 *err = errno;
1646                         else
1647                                 *err = WTAP_ERR_SHORT_WRITE;
1648                         return FALSE;
1649                 }
1650                 wdh->bytes_dumped += sizeof(lapd_hdr);
1651                 break;
1652
1653         case WTAP_ENCAP_ERF:
1654                  /*
1655                  * Write the ERF header.
1656                  */
1657                 memset(&erf_hdr, 0, sizeof(erf_hdr));
1658                 pletonll(&erf_hdr[0], pseudo_header->erf.phdr.ts);
1659                 erf_hdr[8] = pseudo_header->erf.phdr.type;
1660                 erf_hdr[9] = pseudo_header->erf.phdr.flags;
1661                 phtons(&erf_hdr[10], pseudo_header->erf.phdr.rlen);
1662                 phtons(&erf_hdr[12], pseudo_header->erf.phdr.lctr);
1663                 phtons(&erf_hdr[14], pseudo_header->erf.phdr.wlen);
1664                 size = sizeof(struct erf_phdr);
1665
1666                 switch(pseudo_header->erf.phdr.type & 0x7F) {
1667                 case ERF_TYPE_MC_HDLC:
1668                 case ERF_TYPE_MC_RAW:
1669                 case ERF_TYPE_MC_ATM:
1670                 case ERF_TYPE_MC_RAW_CHANNEL:
1671                 case ERF_TYPE_MC_AAL5:
1672                 case ERF_TYPE_MC_AAL2:
1673                 case ERF_TYPE_COLOR_MC_HDLC_POS:
1674                   phtonl(&erf_hdr[16], pseudo_header->erf.subhdr.mc_hdr);
1675                   size += (int)sizeof(struct erf_mc_hdr);
1676                   break;
1677                 case ERF_TYPE_ETH:
1678                 case ERF_TYPE_COLOR_ETH:
1679                 case ERF_TYPE_DSM_COLOR_ETH:
1680                   phtons(&erf_hdr[16], pseudo_header->erf.subhdr.eth_hdr);
1681                   size += (int)sizeof(struct erf_eth_hdr);
1682                   break;
1683                 default:
1684                   break;
1685                 }
1686                 nwritten = wtap_dump_file_write(wdh, erf_hdr, size);
1687                 if (nwritten != (guint) size) {
1688                         if (nwritten == 0 && wtap_dump_file_ferror(wdh))
1689                                 *err = wtap_dump_file_ferror(wdh);
1690                         else
1691                                 *err = WTAP_ERR_SHORT_WRITE;
1692                         return FALSE;
1693                 }
1694                 wdh->bytes_dumped += size;
1695                 break;
1696
1697         case WTAP_ENCAP_I2C:
1698                 /*
1699                  * Write the I2C header.
1700                  */
1701                 memset(&i2c_hdr, 0, sizeof(i2c_hdr));
1702                 i2c_hdr.bus = pseudo_header->i2c.bus |
1703                         (pseudo_header->i2c.is_event ? 0x80 : 0x00);
1704                 phtonl((guint8 *)&i2c_hdr.flags, pseudo_header->i2c.flags);
1705                 nwritten = fwrite(&i2c_hdr, 1, sizeof(i2c_hdr), wdh->fh);
1706                 if (nwritten != sizeof(i2c_hdr)) {
1707                         if (nwritten == 0 && ferror(wdh->fh))
1708                                 *err = errno;
1709                         else
1710                                 *err = WTAP_ERR_SHORT_WRITE;
1711                         return FALSE;
1712                 }
1713                 wdh->bytes_dumped += sizeof(i2c_hdr);
1714                 break;
1715
1716         case WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR:
1717                 bt_hdr.direction = GUINT32_TO_BE(pseudo_header->p2p.sent ? LIBPCAP_BT_PHDR_SENT : LIBPCAP_BT_PHDR_RECV);
1718                 nwritten = wtap_dump_file_write(wdh, &bt_hdr, sizeof bt_hdr);
1719                 if (nwritten != sizeof bt_hdr) {
1720                         if (nwritten == 0 && wtap_dump_file_ferror(wdh))
1721                                 *err = wtap_dump_file_ferror(wdh);
1722                         else
1723                                 *err = WTAP_ERR_SHORT_WRITE;
1724                         return FALSE;
1725                 }
1726                 wdh->bytes_dumped += sizeof bt_hdr;
1727                 break;
1728
1729         case WTAP_ENCAP_PPP_WITH_PHDR:
1730                 ppp_hdr.direction = (pseudo_header->p2p.sent ? LIBPCAP_PPP_PHDR_SENT : LIBPCAP_PPP_PHDR_RECV);
1731                 nwritten = wtap_dump_file_write(wdh, &ppp_hdr, sizeof ppp_hdr);
1732                 if (nwritten != sizeof ppp_hdr) {
1733                         if (nwritten == 0 && wtap_dump_file_ferror(wdh))
1734                                 *err = wtap_dump_file_ferror(wdh);
1735                         else
1736                                 *err = WTAP_ERR_SHORT_WRITE;
1737                         return FALSE;
1738                 }
1739                 wdh->bytes_dumped += sizeof ppp_hdr;
1740                 break;
1741         }
1742         return TRUE;
1743 }