6 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 #ifdef HAVE_SYS_TIME_H
32 #include <wiretap/buffer.h>
33 #include <wsutil/nstime.h>
34 #include "ws_symbol_export.h"
38 #endif /* __cplusplus */
40 /* Encapsulation types. Choose names that truly reflect
41 * what is contained in the packet trace file.
43 * WTAP_ENCAP_PER_PACKET is a value passed to "wtap_dump_open()" or
44 * "wtap_dump_fd_open()" to indicate that there is no single encapsulation
45 * type for all packets in the file; this may cause those routines to
46 * fail if the capture file format being written can't support that.
47 * It's also returned by "wtap_file_encap()" for capture files that
48 * don't have a single encapsulation type for all packets in the file.
50 * WTAP_ENCAP_UNKNOWN is returned by "wtap_pcap_encap_to_wtap_encap()"
51 * if it's handed an unknown encapsulation.
53 * WTAP_ENCAP_FDDI_BITSWAPPED is for FDDI captures on systems where the
54 * MAC addresses you get from the hardware are bit-swapped. Ideally,
55 * the driver would tell us that, but I know of none that do, so, for
56 * now, we base it on the machine on which we're *reading* the
57 * capture, rather than on the machine on which the capture was taken
58 * (they're probably likely to be the same). We assume that they're
59 * bit-swapped on everything except for systems running Ultrix, Alpha
60 * systems, and BSD/OS systems (that's what "tcpdump" does; I guess
61 * Digital decided to bit-swap addresses in the hardware or in the
62 * driver, and I guess BSDI bit-swapped them in the driver, given that
63 * BSD/OS generally runs on Boring Old PC's). If we create a wiretap
64 * save file format, we'd use the WTAP_ENCAP values to flag the
65 * encapsulation of a packet, so there we'd at least be able to base
66 * it on the machine on which the capture was taken.
68 * WTAP_ENCAP_LINUX_ATM_CLIP is the encapsulation you get with the
69 * ATM on Linux code from <http://linux-atm.sourceforge.net/>;
70 * that code adds a DLT_ATM_CLIP DLT_ code of 19, and that
71 * encapsulation isn't the same as the DLT_ATM_RFC1483 encapsulation
72 * presumably used on some BSD systems, which we turn into
73 * WTAP_ENCAP_ATM_RFC1483.
75 * WTAP_ENCAP_NULL corresponds to DLT_NULL from "libpcap". This
78 * 1) PPP-over-HDLC encapsulation, at least with some versions
79 * of ISDN4BSD (but not the current ones, it appears, unless
80 * I've missed something);
82 * 2) a 4-byte header containing the AF_ address family, in
83 * the byte order of the machine that saved the capture,
84 * for the packet, as used on many BSD systems for the
85 * loopback device and some other devices, or a 4-byte header
86 * containing the AF_ address family in network byte order,
87 * as used on recent OpenBSD systems for the loopback device;
89 * 3) a 4-byte header containing 2 octets of 0 and an Ethernet
90 * type in the byte order from an Ethernet header, that being
91 * what older versions of "libpcap" on Linux turn the Ethernet
92 * header for loopback interfaces into (0.6.0 and later versions
93 * leave the Ethernet header alone and make it DLT_EN10MB). */
94 #define WTAP_ENCAP_PER_PACKET -1
95 #define WTAP_ENCAP_UNKNOWN 0
96 #define WTAP_ENCAP_ETHERNET 1
97 #define WTAP_ENCAP_TOKEN_RING 2
98 #define WTAP_ENCAP_SLIP 3
99 #define WTAP_ENCAP_PPP 4
100 #define WTAP_ENCAP_FDDI 5
101 #define WTAP_ENCAP_FDDI_BITSWAPPED 6
102 #define WTAP_ENCAP_RAW_IP 7
103 #define WTAP_ENCAP_ARCNET 8
104 #define WTAP_ENCAP_ARCNET_LINUX 9
105 #define WTAP_ENCAP_ATM_RFC1483 10
106 #define WTAP_ENCAP_LINUX_ATM_CLIP 11
107 #define WTAP_ENCAP_LAPB 12
108 #define WTAP_ENCAP_ATM_PDUS 13
109 #define WTAP_ENCAP_ATM_PDUS_UNTRUNCATED 14
110 #define WTAP_ENCAP_NULL 15
111 #define WTAP_ENCAP_ASCEND 16
112 #define WTAP_ENCAP_ISDN 17
113 #define WTAP_ENCAP_IP_OVER_FC 18
114 #define WTAP_ENCAP_PPP_WITH_PHDR 19
115 #define WTAP_ENCAP_IEEE_802_11 20
116 #define WTAP_ENCAP_IEEE_802_11_PRISM 21
117 #define WTAP_ENCAP_IEEE_802_11_WITH_RADIO 22
118 #define WTAP_ENCAP_IEEE_802_11_RADIOTAP 23
119 #define WTAP_ENCAP_IEEE_802_11_AVS 24
120 #define WTAP_ENCAP_SLL 25
121 #define WTAP_ENCAP_FRELAY 26
122 #define WTAP_ENCAP_FRELAY_WITH_PHDR 27
123 #define WTAP_ENCAP_CHDLC 28
124 #define WTAP_ENCAP_CISCO_IOS 29
125 #define WTAP_ENCAP_LOCALTALK 30
126 #define WTAP_ENCAP_OLD_PFLOG 31
127 #define WTAP_ENCAP_HHDLC 32
128 #define WTAP_ENCAP_DOCSIS 33
129 #define WTAP_ENCAP_COSINE 34
130 #define WTAP_ENCAP_WFLEET_HDLC 35
131 #define WTAP_ENCAP_SDLC 36
132 #define WTAP_ENCAP_TZSP 37
133 #define WTAP_ENCAP_ENC 38
134 #define WTAP_ENCAP_PFLOG 39
135 #define WTAP_ENCAP_CHDLC_WITH_PHDR 40
136 #define WTAP_ENCAP_BLUETOOTH_H4 41
137 #define WTAP_ENCAP_MTP2 42
138 #define WTAP_ENCAP_MTP3 43
139 #define WTAP_ENCAP_IRDA 44
140 #define WTAP_ENCAP_USER0 45
141 #define WTAP_ENCAP_USER1 46
142 #define WTAP_ENCAP_USER2 47
143 #define WTAP_ENCAP_USER3 48
144 #define WTAP_ENCAP_USER4 49
145 #define WTAP_ENCAP_USER5 50
146 #define WTAP_ENCAP_USER6 51
147 #define WTAP_ENCAP_USER7 52
148 #define WTAP_ENCAP_USER8 53
149 #define WTAP_ENCAP_USER9 54
150 #define WTAP_ENCAP_USER10 55
151 #define WTAP_ENCAP_USER11 56
152 #define WTAP_ENCAP_USER12 57
153 #define WTAP_ENCAP_USER13 58
154 #define WTAP_ENCAP_USER14 59
155 #define WTAP_ENCAP_USER15 60
156 #define WTAP_ENCAP_SYMANTEC 61
157 #define WTAP_ENCAP_APPLE_IP_OVER_IEEE1394 62
158 #define WTAP_ENCAP_BACNET_MS_TP 63
159 #define WTAP_ENCAP_NETTL_RAW_ICMP 64
160 #define WTAP_ENCAP_NETTL_RAW_ICMPV6 65
161 #define WTAP_ENCAP_GPRS_LLC 66
162 #define WTAP_ENCAP_JUNIPER_ATM1 67
163 #define WTAP_ENCAP_JUNIPER_ATM2 68
164 #define WTAP_ENCAP_REDBACK 69
165 #define WTAP_ENCAP_NETTL_RAW_IP 70
166 #define WTAP_ENCAP_NETTL_ETHERNET 71
167 #define WTAP_ENCAP_NETTL_TOKEN_RING 72
168 #define WTAP_ENCAP_NETTL_FDDI 73
169 #define WTAP_ENCAP_NETTL_UNKNOWN 74
170 #define WTAP_ENCAP_MTP2_WITH_PHDR 75
171 #define WTAP_ENCAP_JUNIPER_PPPOE 76
172 #define WTAP_ENCAP_GCOM_TIE1 77
173 #define WTAP_ENCAP_GCOM_SERIAL 78
174 #define WTAP_ENCAP_NETTL_X25 79
175 #define WTAP_ENCAP_K12 80
176 #define WTAP_ENCAP_JUNIPER_MLPPP 81
177 #define WTAP_ENCAP_JUNIPER_MLFR 82
178 #define WTAP_ENCAP_JUNIPER_ETHER 83
179 #define WTAP_ENCAP_JUNIPER_PPP 84
180 #define WTAP_ENCAP_JUNIPER_FRELAY 85
181 #define WTAP_ENCAP_JUNIPER_CHDLC 86
182 #define WTAP_ENCAP_JUNIPER_GGSN 87
183 #define WTAP_ENCAP_LINUX_LAPD 88
184 #define WTAP_ENCAP_CATAPULT_DCT2000 89
185 #define WTAP_ENCAP_BER 90
186 #define WTAP_ENCAP_JUNIPER_VP 91
187 #define WTAP_ENCAP_USB 92
188 #define WTAP_ENCAP_IEEE802_16_MAC_CPS 93
189 #define WTAP_ENCAP_NETTL_RAW_TELNET 94
190 #define WTAP_ENCAP_USB_LINUX 95
191 #define WTAP_ENCAP_MPEG 96
192 #define WTAP_ENCAP_PPI 97
193 #define WTAP_ENCAP_ERF 98
194 #define WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR 99
195 #define WTAP_ENCAP_SITA 100
196 #define WTAP_ENCAP_SCCP 101
197 #define WTAP_ENCAP_BLUETOOTH_HCI 102 /*raw packets without a transport layer header e.g. H4*/
198 #define WTAP_ENCAP_IPMB 103
199 #define WTAP_ENCAP_IEEE802_15_4 104
200 #define WTAP_ENCAP_X2E_XORAYA 105
201 #define WTAP_ENCAP_FLEXRAY 106
202 #define WTAP_ENCAP_LIN 107
203 #define WTAP_ENCAP_MOST 108
204 #define WTAP_ENCAP_CAN20B 109
205 #define WTAP_ENCAP_LAYER1_EVENT 110
206 #define WTAP_ENCAP_X2E_SERIAL 111
207 #define WTAP_ENCAP_I2C 112
208 #define WTAP_ENCAP_IEEE802_15_4_NONASK_PHY 113
209 #define WTAP_ENCAP_TNEF 114
210 #define WTAP_ENCAP_USB_LINUX_MMAPPED 115
211 #define WTAP_ENCAP_GSM_UM 116
212 #define WTAP_ENCAP_DPNSS 117
213 #define WTAP_ENCAP_PACKETLOGGER 118
214 #define WTAP_ENCAP_NSTRACE_1_0 119
215 #define WTAP_ENCAP_NSTRACE_2_0 120
216 #define WTAP_ENCAP_FIBRE_CHANNEL_FC2 121
217 #define WTAP_ENCAP_FIBRE_CHANNEL_FC2_WITH_FRAME_DELIMS 122
218 #define WTAP_ENCAP_JPEG_JFIF 123 /* obsoleted by WTAP_ENCAP_MIME*/
219 #define WTAP_ENCAP_IPNET 124
220 #define WTAP_ENCAP_SOCKETCAN 125
221 #define WTAP_ENCAP_IEEE_802_11_NETMON 126
222 #define WTAP_ENCAP_IEEE802_15_4_NOFCS 127
223 #define WTAP_ENCAP_RAW_IPFIX 128
224 #define WTAP_ENCAP_RAW_IP4 129
225 #define WTAP_ENCAP_RAW_IP6 130
226 #define WTAP_ENCAP_LAPD 131
227 #define WTAP_ENCAP_DVBCI 132
228 #define WTAP_ENCAP_MUX27010 133
229 #define WTAP_ENCAP_MIME 134
230 #define WTAP_ENCAP_NETANALYZER 135
231 #define WTAP_ENCAP_NETANALYZER_TRANSPARENT 136
232 #define WTAP_ENCAP_IP_OVER_IB 137
233 #define WTAP_ENCAP_MPEG_2_TS 138
234 #define WTAP_ENCAP_PPP_ETHER 139
235 #define WTAP_ENCAP_NFC_LLCP 140
236 #define WTAP_ENCAP_NFLOG 141
237 #define WTAP_ENCAP_V5_EF 142
238 #define WTAP_ENCAP_BACNET_MS_TP_WITH_PHDR 143
239 #define WTAP_ENCAP_IXVERIWAVE 144
240 #define WTAP_ENCAP_IEEE_802_11_AIROPEEK 145
241 #define WTAP_ENCAP_SDH 146
242 #define WTAP_ENCAP_DBUS 147
243 #define WTAP_ENCAP_AX25_KISS 148
244 #define WTAP_ENCAP_AX25 149
245 #define WTAP_ENCAP_SCTP 150
246 #define WTAP_ENCAP_INFINIBAND 151
247 #define WTAP_ENCAP_JUNIPER_SVCS 152
248 #define WTAP_ENCAP_USBPCAP 153
249 #define WTAP_ENCAP_RTAC_SERIAL 154
250 #define WTAP_ENCAP_BLUETOOTH_LE_LL 155
251 #define WTAP_ENCAP_WIRESHARK_UPPER_PDU 156
252 #define WTAP_ENCAP_STANAG_4607 157
254 #define WTAP_NUM_ENCAP_TYPES wtap_get_num_encap_types()
256 /* File types/subtypes that can be read by wiretap.
257 We support writing many of these file types, too, so we
258 distinguish between different subtypes of them, as
259 different subtypes need to be written in a different
261 #define WTAP_FILE_TYPE_SUBTYPE_UNKNOWN 0
262 #define WTAP_FILE_TYPE_SUBTYPE_PCAP 1
263 #define WTAP_FILE_TYPE_SUBTYPE_PCAPNG 2
264 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_NSEC 3
265 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_AIX 4
266 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_SS991029 5
267 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_NOKIA 6
268 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_SS990417 7
269 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_SS990915 8
270 #define WTAP_FILE_TYPE_SUBTYPE_5VIEWS 9
271 #define WTAP_FILE_TYPE_SUBTYPE_IPTRACE_1_0 10
272 #define WTAP_FILE_TYPE_SUBTYPE_IPTRACE_2_0 11
273 #define WTAP_FILE_TYPE_SUBTYPE_BER 12
274 #define WTAP_FILE_TYPE_SUBTYPE_HCIDUMP 13
275 #define WTAP_FILE_TYPE_SUBTYPE_CATAPULT_DCT2000 14
276 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_OLD 15
277 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_1_0 16
278 #define WTAP_FILE_TYPE_SUBTYPE_COSINE 17
279 #define WTAP_FILE_TYPE_SUBTYPE_CSIDS 18
280 #define WTAP_FILE_TYPE_SUBTYPE_DBS_ETHERWATCH 19
281 #define WTAP_FILE_TYPE_SUBTYPE_ERF 20
282 #define WTAP_FILE_TYPE_SUBTYPE_EYESDN 21
283 #define WTAP_FILE_TYPE_SUBTYPE_NETTL 22
284 #define WTAP_FILE_TYPE_SUBTYPE_ISERIES 23
285 #define WTAP_FILE_TYPE_SUBTYPE_ISERIES_UNICODE 24
286 #define WTAP_FILE_TYPE_SUBTYPE_I4BTRACE 25
287 #define WTAP_FILE_TYPE_SUBTYPE_ASCEND 26
288 #define WTAP_FILE_TYPE_SUBTYPE_NETMON_1_x 27
289 #define WTAP_FILE_TYPE_SUBTYPE_NETMON_2_x 28
290 #define WTAP_FILE_TYPE_SUBTYPE_NGSNIFFER_UNCOMPRESSED 29
291 #define WTAP_FILE_TYPE_SUBTYPE_NGSNIFFER_COMPRESSED 30
292 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_1_1 31
293 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_2_00x 32
294 #define WTAP_FILE_TYPE_SUBTYPE_NETWORK_INSTRUMENTS 33
295 #define WTAP_FILE_TYPE_SUBTYPE_LANALYZER 34
296 #define WTAP_FILE_TYPE_SUBTYPE_PPPDUMP 35
297 #define WTAP_FILE_TYPE_SUBTYPE_RADCOM 36
298 #define WTAP_FILE_TYPE_SUBTYPE_SNOOP 37
299 #define WTAP_FILE_TYPE_SUBTYPE_SHOMITI 38
300 #define WTAP_FILE_TYPE_SUBTYPE_VMS 39
301 #define WTAP_FILE_TYPE_SUBTYPE_K12 40
302 #define WTAP_FILE_TYPE_SUBTYPE_TOSHIBA 41
303 #define WTAP_FILE_TYPE_SUBTYPE_VISUAL_NETWORKS 42
304 #define WTAP_FILE_TYPE_SUBTYPE_PEEKCLASSIC_V56 43
305 #define WTAP_FILE_TYPE_SUBTYPE_PEEKCLASSIC_V7 44
306 #define WTAP_FILE_TYPE_SUBTYPE_PEEKTAGGED 45
307 #define WTAP_FILE_TYPE_SUBTYPE_MPEG 46
308 #define WTAP_FILE_TYPE_SUBTYPE_K12TEXT 47
309 #define WTAP_FILE_TYPE_SUBTYPE_NETSCREEN 48
310 #define WTAP_FILE_TYPE_SUBTYPE_COMMVIEW 49
311 #define WTAP_FILE_TYPE_SUBTYPE_BTSNOOP 50
312 #define WTAP_FILE_TYPE_SUBTYPE_TNEF 51
313 #define WTAP_FILE_TYPE_SUBTYPE_DCT3TRACE 52
314 #define WTAP_FILE_TYPE_SUBTYPE_PACKETLOGGER 53
315 #define WTAP_FILE_TYPE_SUBTYPE_DAINTREE_SNA 54
316 #define WTAP_FILE_TYPE_SUBTYPE_NETSCALER_1_0 55
317 #define WTAP_FILE_TYPE_SUBTYPE_NETSCALER_2_0 56
318 #define WTAP_FILE_TYPE_SUBTYPE_JPEG_JFIF 57 /* obsoleted by WTAP_FILE_TYPE_SUBTYPE_MIME */
319 #define WTAP_FILE_TYPE_SUBTYPE_IPFIX 58
320 #define WTAP_FILE_TYPE_SUBTYPE_MIME 59
321 #define WTAP_FILE_TYPE_SUBTYPE_AETHRA 60
322 #define WTAP_FILE_TYPE_SUBTYPE_MPEG_2_TS 61
323 #define WTAP_FILE_TYPE_SUBTYPE_VWR_80211 62
324 #define WTAP_FILE_TYPE_SUBTYPE_VWR_ETH 63
325 #define WTAP_FILE_TYPE_SUBTYPE_CAMINS 64
326 #define WTAP_FILE_TYPE_SUBTYPE_STANAG_4607 65
328 #define WTAP_NUM_FILE_TYPES_SUBTYPES wtap_get_num_file_types_subtypes()
330 /* timestamp precision (currently only these values are supported) */
331 #define WTAP_FILE_TSPREC_SEC 0
332 #define WTAP_FILE_TSPREC_DSEC 1
333 #define WTAP_FILE_TSPREC_CSEC 2
334 #define WTAP_FILE_TSPREC_MSEC 3
335 #define WTAP_FILE_TSPREC_USEC 6
336 #define WTAP_FILE_TSPREC_NSEC 9
339 * Maximum packet size we'll support.
340 * 65535 is the largest snapshot length that libpcap supports, so we
343 #define WTAP_MAX_PACKET_SIZE 65535
346 * "Pseudo-headers" are used to supply to the clients of wiretap
347 * per-packet information that's not part of the packet payload
350 * NOTE: do not use pseudo-header structures to hold information
351 * used by the code to read a particular capture file type; to
352 * keep that sort of state information, add a new structure for
353 * that private information to "wtap-int.h", add a pointer to that
354 * type of structure to the "capture" member of the "struct wtap"
355 * structure, and allocate one of those structures and set that member
356 * in the "open" routine for that capture file type if the open
357 * succeeds. See various other capture file type handlers for examples
373 guint8 vlantag_offset
;
374 guint8 coreid_offset
;
375 guint8 srcnodeid_offset
;
376 guint8 destnodeid_offset
;
377 guint8 clflags_offset
;
378 guint8 src_vmname_len_offset
;
379 guint8 dst_vmname_len_offset
;
380 guint8 ns_activity_offset
;
384 /* Packet "pseudo-header" information for Ethernet capture files. */
386 gint fcs_len
; /* Number of bytes of FCS - -1 means "unknown" */
389 /* Packet "pseudo-header" information for X.25 capture files. */
390 #define FROM_DCE 0x80
392 guint8 flags
; /* ENCAP_LAPB, ENCAP_V120 : 1st bit means From DCE */
395 /* Packet "pseudo-header" information for ISDN capture files. */
400 guint8 channel
; /* 0 = D-channel; n = B-channel n */
403 /* Packet "pseudo-header" for ATM capture files.
404 Not all of this information is supplied by all capture types. */
409 #define ATM_RAW_CELL 0x01 /* TRUE if the packet is a single cell */
410 #define ATM_NO_HEC 0x02 /* TRUE if the cell has HEC stripped out */
411 #define ATM_AAL2_NOPHDR 0x04 /* TRUE if the AAL2 PDU has no pseudo-header */
416 #define AAL_UNKNOWN 0 /* AAL unknown */
417 #define AAL_1 1 /* AAL1 */
418 #define AAL_2 2 /* AAL2 */
419 #define AAL_3_4 3 /* AAL3/4 */
420 #define AAL_5 4 /* AAL5 */
421 #define AAL_USER 5 /* User AAL */
422 #define AAL_SIGNALLING 6 /* Signaling AAL */
423 #define AAL_OAMCELL 7 /* OAM cell */
428 #define TRAF_UNKNOWN 0 /* Unknown */
429 #define TRAF_LLCMX 1 /* LLC multiplexed (RFC 1483) */
430 #define TRAF_VCMX 2 /* VC multiplexed (RFC 1483) */
431 #define TRAF_LANE 3 /* LAN Emulation */
432 #define TRAF_ILMI 4 /* ILMI */
433 #define TRAF_FR 5 /* Frame Relay */
434 #define TRAF_SPANS 6 /* FORE SPANS */
435 #define TRAF_IPSILON 7 /* Ipsilon */
436 #define TRAF_UMTS_FP 8 /* UMTS Frame Protocol */
437 #define TRAF_GPRS_NS 9 /* GPRS Network Services */
438 #define TRAF_SSCOP 10 /* SSCOP */
443 #define TRAF_ST_UNKNOWN 0 /* Unknown */
448 #define TRAF_ST_VCMX_802_3_FCS 1 /* 802.3 with an FCS */
449 #define TRAF_ST_VCMX_802_4_FCS 2 /* 802.4 with an FCS */
450 #define TRAF_ST_VCMX_802_5_FCS 3 /* 802.5 with an FCS */
451 #define TRAF_ST_VCMX_FDDI_FCS 4 /* FDDI with an FCS */
452 #define TRAF_ST_VCMX_802_6_FCS 5 /* 802.6 with an FCS */
453 #define TRAF_ST_VCMX_802_3 7 /* 802.3 without an FCS */
454 #define TRAF_ST_VCMX_802_4 8 /* 802.4 without an FCS */
455 #define TRAF_ST_VCMX_802_5 9 /* 802.5 without an FCS */
456 #define TRAF_ST_VCMX_FDDI 10 /* FDDI without an FCS */
457 #define TRAF_ST_VCMX_802_6 11 /* 802.6 without an FCS */
458 #define TRAF_ST_VCMX_FRAGMENTS 12 /* Fragments */
459 #define TRAF_ST_VCMX_BPDU 13 /* BPDU */
464 #define TRAF_ST_LANE_LE_CTRL 1 /* LANE: LE Ctrl */
465 #define TRAF_ST_LANE_802_3 2 /* LANE: 802.3 */
466 #define TRAF_ST_LANE_802_5 3 /* LANE: 802.5 */
467 #define TRAF_ST_LANE_802_3_MC 4 /* LANE: 802.3 multicast */
468 #define TRAF_ST_LANE_802_5_MC 5 /* LANE: 802.5 multicast */
473 #define TRAF_ST_IPSILON_FT0 1 /* Ipsilon: Flow Type 0 */
474 #define TRAF_ST_IPSILON_FT1 2 /* Ipsilon: Flow Type 1 */
475 #define TRAF_ST_IPSILON_FT2 3 /* Ipsilon: Flow Type 2 */
478 guint32 flags
; /* status flags */
479 guint8 aal
; /* AAL of the traffic */
480 guint8 type
; /* traffic type */
481 guint8 subtype
; /* traffic subtype */
482 guint16 vpi
; /* virtual path identifier */
483 guint16 vci
; /* virtual circuit identifier */
484 guint8 aal2_cid
; /* channel id */
485 guint16 channel
; /* link: 0 for DTE->DCE, 1 for DCE->DTE */
486 guint16 cells
; /* number of cells */
487 guint16 aal5t_u2u
; /* user-to-user indicator */
488 guint16 aal5t_len
; /* length of the packet */
489 guint32 aal5t_chksum
; /* checksum for AAL5 packet */
492 /* Packet "pseudo-header" for Nokia output */
495 guint8 stuff
[4]; /* mysterious stuff */
498 /* Packet "pseudo-header" for the output from "wandsession", "wannext",
499 "wandisplay", and similar commands on Lucent/Ascend access equipment. */
501 #define ASCEND_MAX_STR_LEN 64
503 #define ASCEND_PFX_WDS_X 1
504 #define ASCEND_PFX_WDS_R 2
505 #define ASCEND_PFX_WDD 3
506 #define ASCEND_PFX_ISDN_X 4
507 #define ASCEND_PFX_ISDN_R 5
508 #define ASCEND_PFX_ETHER 6
511 guint16 type
; /* ASCEND_PFX_*, as defined above */
512 char user
[ASCEND_MAX_STR_LEN
]; /* Username, from wandsession header */
513 guint32 sess
; /* Session number, from wandsession header */
514 char call_num
[ASCEND_MAX_STR_LEN
]; /* Called number, from WDD header */
515 guint32 chunk
; /* Chunk number, from WDD header */
516 guint32 task
; /* Task number */
519 /* Also defined in epan/packet_info.h */
520 #define P2P_DIR_UNKNOWN -1
521 #define P2P_DIR_SENT 0
522 #define P2P_DIR_RECV 1
524 /* Packet "pseudo-header" for point-to-point links with direction flags. */
526 int sent
; /* TRUE=sent, FALSE=received, -1=unknown*/
530 * Packet "pseudo-header" information for 802.11.
531 * Radio information is only present for WTAP_ENCAP_IEEE_802_11_WITH_RADIO.
533 * Signal strength, etc. information:
535 * Raw signal strength can be measured in milliwatts.
536 * It can also be represented as dBm, which is 10 times the log base 10
537 * of the signal strength in mW.
539 * The Receive Signal Strength Indicator is an integer in the range 0 to 255.
540 * The actual RSSI value for a given signal strength is dependent on the
541 * vendor (and perhaps on the adapter). The maximum possible RSSI value
542 * is also dependent on the vendor and perhaps the adapter.
544 * The signal strength can be represented as a percentage, which is 100
545 * times the ratio of the RSSI and the maximum RSSI.
547 struct ieee_802_11_phdr
{
548 gint fcs_len
; /* Number of bytes of FCS - -1 means "unknown" */
549 gboolean decrypted
; /* TRUE if frame is decrypted even if "protected" bit is set */
550 guint8 channel
; /* Channel number */
551 guint16 data_rate
; /* in .5 Mb/s units */
552 guint8 signal_level
; /* percentage */
555 /* Packet "pseudo-header" for the output from CoSine L2 debug output. */
557 #define COSINE_MAX_IF_NAME_LEN 128
559 #define COSINE_ENCAP_TEST 1
560 #define COSINE_ENCAP_PPoATM 2
561 #define COSINE_ENCAP_PPoFR 3
562 #define COSINE_ENCAP_ATM 4
563 #define COSINE_ENCAP_FR 5
564 #define COSINE_ENCAP_HDLC 6
565 #define COSINE_ENCAP_PPP 7
566 #define COSINE_ENCAP_ETH 8
567 #define COSINE_ENCAP_UNKNOWN 99
569 #define COSINE_DIR_TX 1
570 #define COSINE_DIR_RX 2
573 guint8 encap
; /* COSINE_ENCAP_* as defined above */
574 guint8 direction
; /* COSINE_DIR_*, as defined above */
575 char if_name
[COSINE_MAX_IF_NAME_LEN
]; /* Encap & Logical I/F name */
576 guint16 pro
; /* Protocol */
577 guint16 off
; /* Offset */
578 guint16 pri
; /* Priority */
579 guint16 rm
; /* Rate Marking */
580 guint16 err
; /* Error Code */
583 /* Packet "pseudo-header" for IrDA capture files. */
586 * Direction of the packet
588 #define IRDA_INCOMING 0x0000
589 #define IRDA_OUTGOING 0x0004
592 * "Inline" log messages produced by IrCOMM2k on Windows
594 #define IRDA_LOG_MESSAGE 0x0100 /* log message */
595 #define IRDA_MISSED_MSG 0x0101 /* missed log entry or frame */
598 * Differentiate between frames and log messages
600 #define IRDA_CLASS_FRAME 0x0000
601 #define IRDA_CLASS_LOG 0x0100
602 #define IRDA_CLASS_MASK 0xFF00
605 guint16 pkttype
; /* packet type */
608 /* Packet "pseudo-header" for nettl (HP-UX) capture files. */
618 /* Packet "pseudo-header" for MTP2 files. */
620 #define MTP2_ANNEX_A_NOT_USED 0
621 #define MTP2_ANNEX_A_USED 1
622 #define MTP2_ANNEX_A_USED_UNKNOWN 2
630 /* Packet "pseudo-header" for K12 files. */
644 const gchar
*input_name
;
645 const gchar
*stack_file
;
647 k12_input_info_t input_info
;
649 guint32 extra_length
;
653 #define K12_PORT_DS0S 0x00010008
654 #define K12_PORT_DS1 0x00100008
655 #define K12_PORT_ATMPVC 0x01020000
658 guint16 pkttype
; /* packet type */
663 struct catapult_dct2000_phdr
667 struct isdn_phdr isdn
;
670 } inner_pseudo_header
;
675 #define LIBPCAP_BT_PHDR_SENT 0
676 #define LIBPCAP_BT_PHDR_RECV 1
679 * Header prepended by libpcap to each bluetooth hci h:4 frame.
680 * Values in network byte order
682 struct libpcap_bt_phdr
{
683 guint32 direction
; /* Bit 0 hold the frame direction. */
686 #define LIBPCAP_PPP_PHDR_RECV 0
687 #define LIBPCAP_PPP_PHDR_SENT 1
690 * Header prepended by libpcap to each ppp frame.
692 struct libpcap_ppp_phdr
{
697 * Endace Record Format pseudo header
700 guint64 ts
; /* Time stamp */
713 * ERF pseudo header with optional subheader
714 * (Multichannel or Ethernet)
717 #define MAX_ERF_EHDR 8
720 struct erf_phdr phdr
;
721 struct erf_ehdr ehdr_list
[MAX_ERF_EHDR
];
729 #define LLCP_PHDR_FLAG_SENT 0
735 #define SITA_FRAME_DIR_TXED (0x00) /* values of sita_phdr.flags */
736 #define SITA_FRAME_DIR_RXED (0x01)
737 #define SITA_FRAME_DIR (0x01) /* mask */
738 #define SITA_ERROR_NO_BUFFER (0x80)
740 #define SITA_SIG_DSR (0x01) /* values of sita_phdr.signals */
741 #define SITA_SIG_DTR (0x02)
742 #define SITA_SIG_CTS (0x04)
743 #define SITA_SIG_RTS (0x08)
744 #define SITA_SIG_DCD (0x10)
745 #define SITA_SIG_UNDEF1 (0x20)
746 #define SITA_SIG_UNDEF2 (0x40)
747 #define SITA_SIG_UNDEF3 (0x80)
749 #define SITA_ERROR_TX_UNDERRUN (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_TXED) */
750 #define SITA_ERROR_TX_CTS_LOST (0x02)
751 #define SITA_ERROR_TX_UART_ERROR (0x04)
752 #define SITA_ERROR_TX_RETX_LIMIT (0x08)
753 #define SITA_ERROR_TX_UNDEF1 (0x10)
754 #define SITA_ERROR_TX_UNDEF2 (0x20)
755 #define SITA_ERROR_TX_UNDEF3 (0x40)
756 #define SITA_ERROR_TX_UNDEF4 (0x80)
758 #define SITA_ERROR_RX_FRAMING (0x01) /* values of sita_phdr.errors1 (if SITA_FRAME_DIR_RXED) */
759 #define SITA_ERROR_RX_PARITY (0x02)
760 #define SITA_ERROR_RX_COLLISION (0x04)
761 #define SITA_ERROR_RX_FRAME_LONG (0x08)
762 #define SITA_ERROR_RX_FRAME_SHORT (0x10)
763 #define SITA_ERROR_RX_UNDEF1 (0x20)
764 #define SITA_ERROR_RX_UNDEF2 (0x40)
765 #define SITA_ERROR_RX_UNDEF3 (0x80)
767 #define SITA_ERROR_RX_NONOCTET_ALIGNED (0x01) /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_RXED) */
768 #define SITA_ERROR_RX_ABORT (0x02)
769 #define SITA_ERROR_RX_CD_LOST (0x04)
770 #define SITA_ERROR_RX_DPLL (0x08)
771 #define SITA_ERROR_RX_OVERRUN (0x10)
772 #define SITA_ERROR_RX_FRAME_LEN_VIOL (0x20)
773 #define SITA_ERROR_RX_CRC (0x40)
774 #define SITA_ERROR_RX_BREAK (0x80)
776 #define SITA_PROTO_UNUSED (0x00) /* values of sita_phdr.proto */
777 #define SITA_PROTO_BOP_LAPB (0x01)
778 #define SITA_PROTO_ETHERNET (0x02)
779 #define SITA_PROTO_ASYNC_INTIO (0x03)
780 #define SITA_PROTO_ASYNC_BLKIO (0x04)
781 #define SITA_PROTO_ALC (0x05)
782 #define SITA_PROTO_UTS (0x06)
783 #define SITA_PROTO_PPP_HDLC (0x07)
784 #define SITA_PROTO_SDLC (0x08)
785 #define SITA_PROTO_TOKENRING (0x09)
786 #define SITA_PROTO_I2C (0x10)
787 #define SITA_PROTO_DPM_LINK (0x11)
788 #define SITA_PROTO_BOP_FRL (0x12)
798 /*pseudo header for Bluetooth HCI*/
804 #define BTHCI_CHANNEL_COMMAND 1
805 #define BTHCI_CHANNEL_ACL 2
806 #define BTHCI_CHANNEL_SCO 3
807 #define BTHCI_CHANNEL_EVENT 4
809 /* pseudo header for WTAP_ENCAP_LAYER1_EVENT */
810 struct l1event_phdr
{
814 /* * I2C pseudo header */
821 /* pseudo header for WTAP_ENCAP_GSM_UM */
825 /* The following are only populated for downlink */
833 #define GSM_UM_CHANNEL_UNKNOWN 0
834 #define GSM_UM_CHANNEL_BCCH 1
835 #define GSM_UM_CHANNEL_SDCCH 2
836 #define GSM_UM_CHANNEL_SACCH 3
837 #define GSM_UM_CHANNEL_FACCH 4
838 #define GSM_UM_CHANNEL_CCCH 5
839 #define GSM_UM_CHANNEL_RACH 6
840 #define GSM_UM_CHANNEL_AGCH 7
841 #define GSM_UM_CHANNEL_PCH 8
843 union wtap_pseudo_header
{
846 struct isdn_phdr isdn
;
848 struct ascend_phdr ascend
;
850 struct ieee_802_11_phdr ieee_802_11
;
851 struct cosine_phdr cosine
;
852 struct irda_phdr irda
;
853 struct nettl_phdr nettl
;
854 struct mtp2_phdr mtp2
;
856 struct lapd_phdr lapd
;
857 struct catapult_dct2000_phdr dct2000
;
858 struct erf_mc_phdr erf
;
859 struct sita_phdr sita
;
860 struct bthci_phdr bthci
;
861 struct l1event_phdr l1event
;
863 struct gsm_um_phdr gsm_um
;
864 struct nstr_phdr nstr
;
865 struct nokia_phdr nokia
;
866 struct llcp_phdr llcp
;
870 guint32 presence_flags
; /* what stuff do we have? */
872 guint32 caplen
; /* data length in the file */
873 guint32 len
; /* data length on the wire */
875 /* pcapng variables */
876 guint32 interface_id
; /* identifier of the interface. */
878 gchar
*opt_comment
; /* NULL if not available */
879 guint64 drop_count
; /* number of packets lost (by the interface and the
880 operating system) between this packet and the preceding one. */
881 guint32 pack_flags
; /* XXX - 0 for now (any value for "we don't have it"?) */
883 union wtap_pseudo_header pseudo_header
;
887 * Bits in presence_flags, indicating which of the fields we have.
889 * For the time stamp, we may need some more flags to indicate
890 * whether the time stamp is an absolute date-and-time stamp, an
891 * absolute time-only stamp (which can make relative time
892 * calculations tricky, as you could in theory have two time
893 * stamps separated by an unknown number of days), or a time stamp
894 * relative to some unspecified time in the past (see mpeg.c).
896 * There is no presence flag for len - there has to be *some* length
897 * value for the packet. (The "captured length" can be missing if
898 * the file format doesn't report a captured length distinct from
899 * the on-the-network length because the application(s) producing those
900 * files don't support slicing packets.)
902 * There could be a presence flag for the packet encapsulation - if it's
903 * absent, use the file encapsulation - but it's not clear that's useful;
904 * we currently do that in the module for the file format.
906 #define WTAP_HAS_TS 0x00000001 /**< time stamp */
907 #define WTAP_HAS_CAP_LEN 0x00000002 /**< captured length separate from on-the-network length */
908 #define WTAP_HAS_INTERFACE_ID 0x00000004 /**< interface ID */
909 #define WTAP_HAS_COMMENTS 0x00000008 /**< comments */
910 #define WTAP_HAS_DROP_COUNT 0x00000010 /**< drop count */
911 #define WTAP_HAS_PACK_FLAGS 0x00000020 /**< packet flags */
914 * Holds the option strings from pcapng:s Section Header block(SHB).
916 typedef struct wtapng_section_s
{
918 guint64 section_length
; /**< 64-bit value specifying the length in bytes of the
920 * Section Length equal -1 (0xFFFFFFFFFFFFFFFF) means
921 * that the size of the section is not specified
924 gchar
*opt_comment
; /**< NULL if not available */
925 gchar
*shb_hardware
; /**< NULL if not available
926 * UTF-8 string containing the description of the
927 * hardware used to create this section.
929 gchar
*shb_os
; /**< NULL if not available, UTF-8 string containing the
930 * name of the operating system used to create this section.
932 const gchar
*shb_user_appl
; /**< NULL if not available, UTF-8 string containing the
933 * name of the application used to create this section.
938 /** struct holding the information to build IDB:s
939 * the interface_data array holds an array of wtapng_if_descr_t
942 typedef struct wtapng_iface_descriptions_s
{
943 guint number_of_interfaces
;
944 GArray
*interface_data
;
945 } wtapng_iface_descriptions_t
;
947 /* Interface Description
951 * if_name 2 A UTF-8 string containing the name of the device used to capture data.
952 * "eth0" / "\Device\NPF_{AD1CE675-96D0-47C5-ADD0-2504B9126B68}" / ...
954 * if_description 3 A UTF-8 string containing the description of the device used
955 * to capture data. "Broadcom NetXtreme" / "First Ethernet Interface" / ...
957 * if_IPv4addr 4 Interface network address and netmask. This option can be
958 * repeated multiple times within the same Interface Description Block
959 * when multiple IPv4 addresses are assigned to the interface. 192 168 1 1 255 255 255 0
961 * if_IPv6addr 5 Interface network address and prefix length (stored in the last byte).
962 * This option can be repeated multiple times within the same Interface
963 * Description Block when multiple IPv6 addresses are assigned to the interface.
964 * 2001:0db8:85a3:08d3:1319:8a2e:0370:7344/64 is written (in hex) as
965 * "20 01 0d b8 85 a3 08 d3 13 19 8a 2e 03 70 73 44 40"
967 * if_MACaddr 6 Interface Hardware MAC address (48 bits). 00 01 02 03 04 05
969 * if_EUIaddr 7 Interface Hardware EUI address (64 bits), if available. TODO: give a good example
971 * if_speed 8 Interface speed (in bps). 100000000 for 100Mbps
973 * if_tsresol 9 Resolution of timestamps. If the Most Significant Bit is equal to zero,
974 * the remaining bits indicates the resolution of the timestamp as as a
975 * negative power of 10 (e.g. 6 means microsecond resolution, timestamps
976 * are the number of microseconds since 1/1/1970). If the Most Significant Bit
977 * is equal to one, the remaining bits indicates the resolution has a
978 * negative power of 2 (e.g. 10 means 1/1024 of second).
979 * If this option is not present, a resolution of 10^-6 is assumed
980 * (i.e. timestamps have the same resolution of the standard 'libpcap' timestamps). 6
982 * if_tzone 10 Time zone for GMT support (TODO: specify better). TODO: give a good example
984 * if_filter 11 The filter (e.g. "capture only TCP traffic") used to capture traffic.
985 * The first byte of the Option Data keeps a code of the filter used
986 * (e.g. if this is a libpcap string, or BPF bytecode, and more).
987 * More details about this format will be presented in Appendix XXX (TODO).
988 * (TODO: better use different options for different fields?
989 * e.g. if_filter_pcap, if_filter_bpf, ...) 00 "tcp port 23 and host 10.0.0.5"
991 * if_os 12 A UTF-8 string containing the name of the operating system of the
992 * machine in which this interface is installed.
993 * This can be different from the same information that can be
994 * contained by the Section Header Block
995 * (Section 3.1 (Section Header Block (mandatory))) because
996 * the capture can have been done on a remote machine.
997 * "Windows XP SP2" / "openSUSE 10.2" / ...
999 * if_fcslen 13 An integer value that specified the length of the
1000 * Frame Check Sequence (in bits) for this interface.
1001 * For link layers whose FCS length can change during time,
1002 * the Packet Block Flags Word can be used (see Appendix A (Packet Block Flags Word)). 4
1004 * if_tsoffset 14 A 64 bits integer value that specifies an offset (in seconds)
1005 * that must be added to the timestamp of each packet to obtain
1006 * the absolute timestamp of a packet. If the option is missing,
1007 * the timestamps stored in the packet must be considered absolute
1008 * timestamps. The time zone of the offset can be specified with the
1009 * option if_tzone. TODO: won't a if_tsoffset_low for fractional
1010 * second offsets be useful for highly syncronized capture systems? 1234
1013 * Interface description data
1015 typedef struct wtapng_if_descr_s
{
1016 int wtap_encap
; /**< link_type translated to wtap_encap */
1017 guint64 time_units_per_second
;
1024 gchar
*opt_comment
; /**< NULL if not available */
1025 gchar
*if_name
; /**< NULL if not available
1027 * A UTF-8 string containing the name of the
1028 * device used to capture data.
1030 gchar
*if_description
; /**< NULL if not available
1032 * A UTF-8 string containing the description
1033 * of the device used to capture data.
1036 /* XXX: if_IPv4addr opt 4 Interface network address and netmask. */
1037 /* XXX: if_IPv6addr opt 5 Interface network address and prefix length (stored in the last byte).*/
1038 /* XXX: if_MACaddr opt 6 Interface Hardware MAC address (48 bits). */
1039 /* XXX: if_EUIaddr opt 7 Interface Hardware EUI address (64 bits) */
1041 guint64 if_speed
; /**< 0xFFFFFFFF if unknown
1043 * Interface speed (in bps). 100000000 for 100Mbps
1045 guint8 if_tsresol
; /**< default is 6 for microsecond resolution
1047 * Resolution of timestamps.
1048 * If the Most Significant Bit is equal to zero,
1049 * the remaining bits indicates the resolution of the
1050 * timestamp as as a negative power of 10
1053 /* XXX: if_tzone 10 Time zone for GMT support (TODO: specify better). */
1055 gchar
*if_filter_str
; /**< NULL if not available
1056 * opt 11 libpcap string.
1058 guint16 bpf_filter_len
; /** Opt 11 variant II BPF filter len 0 if not used*/
1059 gchar
*if_filter_bpf_bytes
; /** Opt 11 BPF filter or NULL */
1060 gchar
*if_os
; /**< NULL if not available
1061 * 12 A UTF-8 string containing the name of the
1062 * operating system of the machine in which this
1063 * interface is installed.
1065 gint8 if_fcslen
; /**< -1 if unknown or changes between packets,
1067 * An integer value that specified the length of
1068 * the Frame Check Sequence (in bits) for this interface. */
1069 /* XXX: guint64 if_tsoffset; opt 14 A 64 bits integer value that specifies an offset (in seconds)...*/
1070 guint8 num_stat_entries
;
1071 GArray
*interface_statistics
; /**< An array holding the interface statistics from
1072 * pcapng ISB:s or equivalent(?)*/
1073 } wtapng_if_descr_t
;
1077 * Interface Statistics. pcap-ng Interface Statistics Block (ISB).
1079 typedef struct wtapng_if_stats_s
{
1081 guint32 interface_id
;
1085 gchar
*opt_comment
; /**< NULL if not available */
1086 guint64 isb_starttime
;
1087 guint64 isb_endtime
;
1090 guint64 isb_filteraccept
;
1092 guint64 isb_usrdeliv
;
1093 } wtapng_if_stats_t
;
1096 /** A struct with lists of resolved addresses.
1097 * Used when writing name resoultion blocks (NRB)
1099 typedef struct addrinfo_lists
{
1100 GList
*ipv4_addr_list
; /**< A list of resolved hashipv4_t*/
1101 GList
*ipv6_addr_list
; /**< A list of resolved hashipv6_t*/
1106 typedef struct wtap wtap
;
1107 typedef struct wtap_dumper wtap_dumper
;
1109 typedef struct wtap_reader
*FILE_T
;
1112 * For registering extensions used for capture file formats.
1114 * These items are used in dialogs for opening files, so that
1115 * the user can ask to see all capture files (as identified
1116 * by file extension) or particular types of capture files.
1118 * Each file type has a description and a list of extensions the file
1119 * might have. Some file types aren't real file types, they're
1120 * just generic types, such as "text file" or "XML file", that can
1121 * be used for, among other things, captures we can read, or for
1122 * extensions such as ".cap" that were unimaginatively chosen by
1123 * several different sniffers for their file formats.
1125 struct file_extension_info
{
1126 /* the file type name */
1129 /* a semicolon-separated list of file extensions used for this type */
1130 const char *extensions
;
1133 typedef int (*wtap_open_routine_t
)(struct wtap
*, int *, char **);
1136 * Types of comments.
1138 #define WTAP_COMMENT_PER_SECTION 0x00000001 /* per-file/per-file-section */
1139 #define WTAP_COMMENT_PER_INTERFACE 0x00000002 /* per-interface */
1140 #define WTAP_COMMENT_PER_PACKET 0x00000004 /* per-packet */
1142 struct file_type_subtype_info
{
1143 /* the file type name */
1144 /* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
1147 /* the file type short name, used as a shortcut for the command line tools */
1148 /* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
1149 const char *short_name
;
1151 /* the default file extension, used to save this type */
1152 /* should be NULL if no default extension is known */
1153 const char *default_file_extension
;
1155 /* a semicolon-separated list of additional file extensions */
1156 /* used for this type */
1157 /* should be NULL if no extensions, or no extensions other */
1158 /* than the default extension, are known */
1159 const char *additional_file_extensions
;
1161 /* when writing this file format, is seeking required? */
1162 gboolean writing_must_seek
;
1164 /* does this type support name resolution records? */
1165 /* should be FALSE is this file type doesn't support name resolution records */
1166 gboolean has_name_resolution
;
1168 /* what types of comment does this file support? */
1169 guint32 supported_comment_types
;
1171 /* can this type write this encapsulation format? */
1172 /* should be NULL is this file type doesn't have write support */
1173 int (*can_write_encap
)(int);
1175 /* the function to open the capture file for writing */
1176 /* should be NULL is this file type don't have write support */
1177 int (*dump_open
)(wtap_dumper
*, int *);
1181 /** On failure, "wtap_open_offline()" returns NULL, and puts into the
1182 * "int" pointed to by its second argument:
1184 * @param filename Name of the file to open
1185 * @param err a positive "errno" value if the capture file can't be opened;
1186 * a negative number, indicating the type of error, on other failures.
1187 * @param err_info for some errors, a string giving more details of
1189 * @param do_random TRUE if random access to the file will be done,
1193 struct wtap
* wtap_open_offline(const char *filename
, int *err
,
1194 gchar
**err_info
, gboolean do_random
);
1197 * If we were compiled with zlib and we're at EOF, unset EOF so that
1198 * wtap_read/gzread has a chance to succeed. This is necessary if
1199 * we're tailing a file.
1202 void wtap_cleareof(wtap
*wth
);
1205 * Set callback functions to add new hostnames. Currently pcapng-only.
1206 * MUST match add_ipv4_name and add_ipv6_name in addr_resolv.c.
1208 typedef void (*wtap_new_ipv4_callback_t
) (const guint addr
, const gchar
*name
);
1210 void wtap_set_cb_new_ipv4(wtap
*wth
, wtap_new_ipv4_callback_t add_new_ipv4
);
1212 typedef void (*wtap_new_ipv6_callback_t
) (const void *addrp
, const gchar
*name
);
1214 void wtap_set_cb_new_ipv6(wtap
*wth
, wtap_new_ipv6_callback_t add_new_ipv6
);
1216 /** Returns TRUE if read was successful. FALSE if failure. data_offset is
1217 * set to the offset in the file where the data for the read packet is
1220 gboolean
wtap_read(wtap
*wth
, int *err
, gchar
**err_info
,
1221 gint64
*data_offset
);
1224 gboolean
wtap_seek_read (wtap
*wth
, gint64 seek_off
,
1225 struct wtap_pkthdr
*phdr
, Buffer
*buf
, int len
,
1226 int *err
, gchar
**err_info
);
1228 /*** get various information snippets about the current packet ***/
1230 struct wtap_pkthdr
*wtap_phdr(wtap
*wth
);
1232 guint8
*wtap_buf_ptr(wtap
*wth
);
1234 /*** get various information snippets about the current file ***/
1236 /** Return an approximation of the amount of data we've read sequentially
1237 * from the file so far. */
1239 gint64
wtap_read_so_far(wtap
*wth
);
1241 gint64
wtap_file_size(wtap
*wth
, int *err
);
1243 gboolean
wtap_iscompressed(wtap
*wth
);
1245 guint
wtap_snapshot_length(wtap
*wth
); /* per file */
1247 int wtap_file_type_subtype(wtap
*wth
);
1249 int wtap_file_encap(wtap
*wth
);
1251 int wtap_file_tsprecision(wtap
*wth
);
1253 wtapng_section_t
* wtap_file_get_shb_info(wtap
*wth
);
1255 wtapng_iface_descriptions_t
*wtap_file_get_idb_info(wtap
*wth
);
1257 void wtap_write_shb_comment(wtap
*wth
, gchar
*comment
);
1259 /*** close the file descriptors for the current file ***/
1261 void wtap_fdclose(wtap
*wth
);
1263 /*** reopen the random file descriptor for the current file ***/
1265 gboolean
wtap_fdreopen(wtap
*wth
, const char *filename
, int *err
);
1267 /*** close the current file ***/
1269 void wtap_sequential_close(wtap
*wth
);
1271 void wtap_close(wtap
*wth
);
1273 /*** dump packets into a capture file ***/
1275 gboolean
wtap_dump_can_open(int filetype
);
1278 * Given a GArray of WTAP_ENCAP_ types, return the per-file encapsulation
1279 * type that would be needed to write out a file with those types.
1282 int wtap_dump_file_encap_type(const GArray
*file_encaps
);
1285 * Return TRUE if we can write this capture file format out in
1286 * compressed form, FALSE if not.
1289 gboolean
wtap_dump_can_compress(int filetype
);
1292 * Return TRUE if this capture file format supports storing name
1293 * resolution information in it, FALSE if not.
1296 gboolean
wtap_dump_has_name_resolution(int filetype
);
1299 * Return TRUE if this capture file format supports all the comment
1300 * types specified, FALSE if not.
1303 gboolean
wtap_dump_supports_comment_types(int filetype
, guint32 comment_types
);
1306 wtap_dumper
* wtap_dump_open(const char *filename
, int filetype
, int encap
,
1307 int snaplen
, gboolean compressed
, int *err
);
1310 wtap_dumper
* wtap_dump_open_ng(const char *filename
, int filetype
, int encap
,
1311 int snaplen
, gboolean compressed
, wtapng_section_t
*shb_hdr
, wtapng_iface_descriptions_t
*idb_inf
, int *err
);
1314 wtap_dumper
* wtap_dump_fdopen(int fd
, int filetype
, int encap
, int snaplen
,
1315 gboolean compressed
, int *err
);
1318 wtap_dumper
* wtap_dump_fdopen_ng(int fd
, int filetype
, int encap
, int snaplen
,
1319 gboolean compressed
, wtapng_section_t
*shb_hdr
, wtapng_iface_descriptions_t
*idb_inf
, int *err
);
1323 gboolean
wtap_dump(wtap_dumper
*, const struct wtap_pkthdr
*, const guint8
*, int *err
);
1325 void wtap_dump_flush(wtap_dumper
*);
1327 gint64
wtap_get_bytes_dumped(wtap_dumper
*);
1329 void wtap_set_bytes_dumped(wtap_dumper
*wdh
, gint64 bytes_dumped
);
1332 gboolean
wtap_dump_set_addrinfo_list(wtap_dumper
*wdh
, addrinfo_lists_t
*addrinfo_lists
);
1334 gboolean
wtap_dump_close(wtap_dumper
*, int *);
1337 * Return TRUE if we can write a file out with the given GArray of file
1338 * encapsulations and the given bitmask of comment types.
1341 gboolean
wtap_dump_can_write(const GArray
*file_encaps
, guint32 required_comment_types
);
1344 * Get a GArray of WTAP_FILE_TYPE_SUBTYPE_ values for file types/subtypes
1345 * that can be used to save a file of a given type with a given GArray of
1346 * WTAP_ENCAP_ types and the given bitmask of comment types.
1349 GArray
*wtap_get_savable_file_types_subtypes(int file_type
,
1350 const GArray
*file_encaps
, guint32 required_comment_types
);
1352 /*** various string converter functions ***/
1354 const char *wtap_file_type_subtype_string(int file_type_subtype
);
1356 const char *wtap_file_type_subtype_short_string(int file_type_subtype
);
1358 int wtap_short_string_to_file_type_subtype(const char *short_name
);
1360 /*** various file extension functions ***/
1362 GSList
*wtap_get_all_file_extensions_list(void);
1364 const char *wtap_default_file_extension(int filetype
);
1366 GSList
*wtap_get_file_extensions_list(int filetype
, gboolean include_compressed
);
1368 void wtap_free_extensions_list(GSList
*extensions
);
1371 const char *wtap_encap_string(int encap
);
1373 const char *wtap_encap_short_string(int encap
);
1375 int wtap_short_string_to_encap(const char *short_name
);
1378 const char *wtap_strerror(int err
);
1380 /*** get available number of file types and encapsulations ***/
1382 int wtap_get_num_file_type_extensions(void);
1384 int wtap_get_num_encap_types(void);
1386 int wtap_get_num_file_types_subtypes(void);
1388 /*** get information for file type extension ***/
1390 const char *wtap_get_file_extension_type_name(int extension_type
);
1392 GSList
*wtap_get_file_extension_type_extensions(guint extension_type
);
1394 /*** dynamically register new file types and encapsulations ***/
1396 void wtap_register_file_type_extension(const struct file_extension_info
*ei
);
1398 void wtap_register_open_routine(wtap_open_routine_t
, gboolean has_magic
);
1400 int wtap_register_file_type_subtypes(const struct file_type_subtype_info
* fi
);
1402 int wtap_register_encap_type(const char* name
, const char* short_name
);
1406 * Wiretap error codes.
1408 #define WTAP_ERR_NOT_REGULAR_FILE -1
1409 /** The file being opened for reading isn't a plain file (or pipe) */
1411 #define WTAP_ERR_RANDOM_OPEN_PIPE -2
1412 /** The file is being opened for random access and it's a pipe */
1414 #define WTAP_ERR_FILE_UNKNOWN_FORMAT -3
1415 /** The file being opened is not a capture file in a known format */
1417 #define WTAP_ERR_UNSUPPORTED -4
1418 /** Supported file type, but there's something in the file we
1421 #define WTAP_ERR_CANT_WRITE_TO_PIPE -5
1422 /** Wiretap can't save to a pipe in the specified format */
1424 #define WTAP_ERR_CANT_OPEN -6
1425 /** The file couldn't be opened, reason unknown */
1427 #define WTAP_ERR_UNSUPPORTED_FILE_TYPE -7
1428 /** Wiretap can't save files in the specified format */
1430 #define WTAP_ERR_UNSUPPORTED_ENCAP -8
1431 /** Wiretap can't read or save files in the specified format with the
1432 specified encapsulation */
1434 #define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED -9
1435 /** The specified format doesn't support per-packet encapsulations */
1437 #define WTAP_ERR_CANT_CLOSE -10
1438 /** The file couldn't be closed, reason unknown */
1440 #define WTAP_ERR_CANT_READ -11
1441 /** An attempt to read failed, reason unknown */
1443 #define WTAP_ERR_SHORT_READ -12
1444 /** An attempt to read read less data than it should have */
1446 #define WTAP_ERR_BAD_FILE -13
1447 /** The file appears to be damaged or corrupted or otherwise bogus */
1449 #define WTAP_ERR_SHORT_WRITE -14
1450 /** An attempt to write wrote less data than it should have */
1452 #define WTAP_ERR_UNC_TRUNCATED -15
1453 /** Sniffer compressed data was oddly truncated */
1455 #define WTAP_ERR_UNC_OVERFLOW -16
1456 /** Uncompressing Sniffer data would overflow buffer */
1458 #define WTAP_ERR_UNC_BAD_OFFSET -17
1459 /** LZ77 compressed data has bad offset to string */
1461 #define WTAP_ERR_RANDOM_OPEN_STDIN -18
1462 /** We're trying to open the standard input for random access */
1464 #define WTAP_ERR_COMPRESSION_NOT_SUPPORTED -19
1465 /* The filetype doesn't support output compression */
1467 #define WTAP_ERR_CANT_SEEK -20
1468 /** An attempt to seek failed, reason unknown */
1470 #define WTAP_ERR_CANT_SEEK_COMPRESSED -21
1471 /** An attempt to seek on a compressed stream */
1473 #define WTAP_ERR_DECOMPRESS -22
1474 /** Error decompressing */
1476 #define WTAP_ERR_INTERNAL -23
1477 /** "Shouldn't happen" internal errors */
1481 #endif /* __cplusplus */
1483 #endif /* __WTAP_H__ */
1486 * Editor modelines - http://www.wireshark.org/tools/modelines.html
1491 * indent-tabs-mode: nil
1494 * vi: set shiftwidth=4 tabstop=8 expandtab:
1495 * :indentSize=4:tabSize=8:noTabs=true: