1.99.8 → 1.99.9.
[metze/wireshark/wip.git] / wiretap / wtap.h
1 /* wtap.h
2  *
3  * Wiretap Library
4  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20
21 #ifndef __WTAP_H__
22 #define __WTAP_H__
23
24 #include <glib.h>
25 #include <time.h>
26 #include <wsutil/buffer.h>
27 #include <wsutil/nstime.h>
28 #include "ws_symbol_export.h"
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif /* __cplusplus */
33
34 /* Encapsulation types. Choose names that truly reflect
35  * what is contained in the packet trace file.
36  *
37  * WTAP_ENCAP_PER_PACKET is a value passed to "wtap_dump_open()" or
38  * "wtap_dump_fd_open()" to indicate that there is no single encapsulation
39  * type for all packets in the file; this may cause those routines to
40  * fail if the capture file format being written can't support that.
41  * It's also returned by "wtap_file_encap()" for capture files that
42  * don't have a single encapsulation type for all packets in the file.
43  *
44  * WTAP_ENCAP_UNKNOWN is returned by "wtap_pcap_encap_to_wtap_encap()"
45  * if it's handed an unknown encapsulation.
46  *
47  * WTAP_ENCAP_FDDI_BITSWAPPED is for FDDI captures on systems where the
48  * MAC addresses you get from the hardware are bit-swapped.  Ideally,
49  * the driver would tell us that, but I know of none that do, so, for
50  * now, we base it on the machine on which we're *reading* the
51  * capture, rather than on the machine on which the capture was taken
52  * (they're probably likely to be the same).  We assume that they're
53  * bit-swapped on everything except for systems running Ultrix, Alpha
54  * systems, and BSD/OS systems (that's what "tcpdump" does; I guess
55  * Digital decided to bit-swap addresses in the hardware or in the
56  * driver, and I guess BSDI bit-swapped them in the driver, given that
57  * BSD/OS generally runs on Boring Old PC's).  If we create a wiretap
58  * save file format, we'd use the WTAP_ENCAP values to flag the
59  * encapsulation of a packet, so there we'd at least be able to base
60  * it on the machine on which the capture was taken.
61  *
62  * WTAP_ENCAP_LINUX_ATM_CLIP is the encapsulation you get with the
63  * ATM on Linux code from <http://linux-atm.sourceforge.net/>;
64  * that code adds a DLT_ATM_CLIP DLT_ code of 19, and that
65  * encapsulation isn't the same as the DLT_ATM_RFC1483 encapsulation
66  * presumably used on some BSD systems, which we turn into
67  * WTAP_ENCAP_ATM_RFC1483.
68  *
69  * WTAP_ENCAP_NULL corresponds to DLT_NULL from "libpcap".  This
70  * corresponds to
71  *
72  *  1) PPP-over-HDLC encapsulation, at least with some versions
73  *     of ISDN4BSD (but not the current ones, it appears, unless
74  *     I've missed something);
75  *
76  *  2) a 4-byte header containing the AF_ address family, in
77  *     the byte order of the machine that saved the capture,
78  *     for the packet, as used on many BSD systems for the
79  *     loopback device and some other devices, or a 4-byte header
80  *     containing the AF_ address family in network byte order,
81  *     as used on recent OpenBSD systems for the loopback device;
82  *
83  *  3) a 4-byte header containing 2 octets of 0 and an Ethernet
84  *     type in the byte order from an Ethernet header, that being
85  *     what older versions of "libpcap" on Linux turn the Ethernet
86  *     header for loopback interfaces into (0.6.0 and later versions
87  *     leave the Ethernet header alone and make it DLT_EN10MB). */
88 #define WTAP_ENCAP_PER_PACKET                   -1
89 #define WTAP_ENCAP_UNKNOWN                        0
90 #define WTAP_ENCAP_ETHERNET                       1
91 #define WTAP_ENCAP_TOKEN_RING                     2
92 #define WTAP_ENCAP_SLIP                           3
93 #define WTAP_ENCAP_PPP                            4
94 #define WTAP_ENCAP_FDDI                           5
95 #define WTAP_ENCAP_FDDI_BITSWAPPED                6
96 #define WTAP_ENCAP_RAW_IP                         7
97 #define WTAP_ENCAP_ARCNET                         8
98 #define WTAP_ENCAP_ARCNET_LINUX                   9
99 #define WTAP_ENCAP_ATM_RFC1483                   10
100 #define WTAP_ENCAP_LINUX_ATM_CLIP                11
101 #define WTAP_ENCAP_LAPB                          12
102 #define WTAP_ENCAP_ATM_PDUS                      13
103 #define WTAP_ENCAP_ATM_PDUS_UNTRUNCATED          14
104 #define WTAP_ENCAP_NULL                          15
105 #define WTAP_ENCAP_ASCEND                        16
106 #define WTAP_ENCAP_ISDN                          17
107 #define WTAP_ENCAP_IP_OVER_FC                    18
108 #define WTAP_ENCAP_PPP_WITH_PHDR                 19
109 #define WTAP_ENCAP_IEEE_802_11                   20
110 #define WTAP_ENCAP_IEEE_802_11_PRISM             21
111 #define WTAP_ENCAP_IEEE_802_11_WITH_RADIO        22
112 #define WTAP_ENCAP_IEEE_802_11_RADIOTAP          23
113 #define WTAP_ENCAP_IEEE_802_11_AVS               24
114 #define WTAP_ENCAP_SLL                           25
115 #define WTAP_ENCAP_FRELAY                        26
116 #define WTAP_ENCAP_FRELAY_WITH_PHDR              27
117 #define WTAP_ENCAP_CHDLC                         28
118 #define WTAP_ENCAP_CISCO_IOS                     29
119 #define WTAP_ENCAP_LOCALTALK                     30
120 #define WTAP_ENCAP_OLD_PFLOG                     31
121 #define WTAP_ENCAP_HHDLC                         32
122 #define WTAP_ENCAP_DOCSIS                        33
123 #define WTAP_ENCAP_COSINE                        34
124 #define WTAP_ENCAP_WFLEET_HDLC                   35
125 #define WTAP_ENCAP_SDLC                          36
126 #define WTAP_ENCAP_TZSP                          37
127 #define WTAP_ENCAP_ENC                           38
128 #define WTAP_ENCAP_PFLOG                         39
129 #define WTAP_ENCAP_CHDLC_WITH_PHDR               40
130 #define WTAP_ENCAP_BLUETOOTH_H4                  41
131 #define WTAP_ENCAP_MTP2                          42
132 #define WTAP_ENCAP_MTP3                          43
133 #define WTAP_ENCAP_IRDA                          44
134 #define WTAP_ENCAP_USER0                         45
135 #define WTAP_ENCAP_USER1                         46
136 #define WTAP_ENCAP_USER2                         47
137 #define WTAP_ENCAP_USER3                         48
138 #define WTAP_ENCAP_USER4                         49
139 #define WTAP_ENCAP_USER5                         50
140 #define WTAP_ENCAP_USER6                         51
141 #define WTAP_ENCAP_USER7                         52
142 #define WTAP_ENCAP_USER8                         53
143 #define WTAP_ENCAP_USER9                         54
144 #define WTAP_ENCAP_USER10                        55
145 #define WTAP_ENCAP_USER11                        56
146 #define WTAP_ENCAP_USER12                        57
147 #define WTAP_ENCAP_USER13                        58
148 #define WTAP_ENCAP_USER14                        59
149 #define WTAP_ENCAP_USER15                        60
150 #define WTAP_ENCAP_SYMANTEC                      61
151 #define WTAP_ENCAP_APPLE_IP_OVER_IEEE1394        62
152 #define WTAP_ENCAP_BACNET_MS_TP                  63
153 #define WTAP_ENCAP_NETTL_RAW_ICMP                64
154 #define WTAP_ENCAP_NETTL_RAW_ICMPV6              65
155 #define WTAP_ENCAP_GPRS_LLC                      66
156 #define WTAP_ENCAP_JUNIPER_ATM1                  67
157 #define WTAP_ENCAP_JUNIPER_ATM2                  68
158 #define WTAP_ENCAP_REDBACK                       69
159 #define WTAP_ENCAP_NETTL_RAW_IP                  70
160 #define WTAP_ENCAP_NETTL_ETHERNET                71
161 #define WTAP_ENCAP_NETTL_TOKEN_RING              72
162 #define WTAP_ENCAP_NETTL_FDDI                    73
163 #define WTAP_ENCAP_NETTL_UNKNOWN                 74
164 #define WTAP_ENCAP_MTP2_WITH_PHDR                75
165 #define WTAP_ENCAP_JUNIPER_PPPOE                 76
166 #define WTAP_ENCAP_GCOM_TIE1                     77
167 #define WTAP_ENCAP_GCOM_SERIAL                   78
168 #define WTAP_ENCAP_NETTL_X25                     79
169 #define WTAP_ENCAP_K12                           80
170 #define WTAP_ENCAP_JUNIPER_MLPPP                 81
171 #define WTAP_ENCAP_JUNIPER_MLFR                  82
172 #define WTAP_ENCAP_JUNIPER_ETHER                 83
173 #define WTAP_ENCAP_JUNIPER_PPP                   84
174 #define WTAP_ENCAP_JUNIPER_FRELAY                85
175 #define WTAP_ENCAP_JUNIPER_CHDLC                 86
176 #define WTAP_ENCAP_JUNIPER_GGSN                  87
177 #define WTAP_ENCAP_LINUX_LAPD                    88
178 #define WTAP_ENCAP_CATAPULT_DCT2000              89
179 #define WTAP_ENCAP_BER                           90
180 #define WTAP_ENCAP_JUNIPER_VP                    91
181 #define WTAP_ENCAP_USB                           92
182 #define WTAP_ENCAP_IEEE802_16_MAC_CPS            93
183 #define WTAP_ENCAP_NETTL_RAW_TELNET              94
184 #define WTAP_ENCAP_USB_LINUX                     95
185 #define WTAP_ENCAP_MPEG                          96
186 #define WTAP_ENCAP_PPI                           97
187 #define WTAP_ENCAP_ERF                           98
188 #define WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR        99
189 #define WTAP_ENCAP_SITA                         100
190 #define WTAP_ENCAP_SCCP                         101
191 #define WTAP_ENCAP_BLUETOOTH_HCI                102 /*raw packets without a transport layer header e.g. H4*/
192 #define WTAP_ENCAP_IPMB                         103
193 #define WTAP_ENCAP_IEEE802_15_4                 104
194 #define WTAP_ENCAP_X2E_XORAYA                   105
195 #define WTAP_ENCAP_FLEXRAY                      106
196 #define WTAP_ENCAP_LIN                          107
197 #define WTAP_ENCAP_MOST                         108
198 #define WTAP_ENCAP_CAN20B                       109
199 #define WTAP_ENCAP_LAYER1_EVENT                 110
200 #define WTAP_ENCAP_X2E_SERIAL                   111
201 #define WTAP_ENCAP_I2C                          112
202 #define WTAP_ENCAP_IEEE802_15_4_NONASK_PHY      113
203 #define WTAP_ENCAP_TNEF                         114
204 #define WTAP_ENCAP_USB_LINUX_MMAPPED            115
205 #define WTAP_ENCAP_GSM_UM                       116
206 #define WTAP_ENCAP_DPNSS                        117
207 #define WTAP_ENCAP_PACKETLOGGER                 118
208 #define WTAP_ENCAP_NSTRACE_1_0                  119
209 #define WTAP_ENCAP_NSTRACE_2_0                  120
210 #define WTAP_ENCAP_FIBRE_CHANNEL_FC2            121
211 #define WTAP_ENCAP_FIBRE_CHANNEL_FC2_WITH_FRAME_DELIMS 122
212 #define WTAP_ENCAP_JPEG_JFIF                    123 /* obsoleted by WTAP_ENCAP_MIME*/
213 #define WTAP_ENCAP_IPNET                        124
214 #define WTAP_ENCAP_SOCKETCAN                    125
215 #define WTAP_ENCAP_IEEE_802_11_NETMON           126
216 #define WTAP_ENCAP_IEEE802_15_4_NOFCS           127
217 #define WTAP_ENCAP_RAW_IPFIX                    128
218 #define WTAP_ENCAP_RAW_IP4                      129
219 #define WTAP_ENCAP_RAW_IP6                      130
220 #define WTAP_ENCAP_LAPD                         131
221 #define WTAP_ENCAP_DVBCI                        132
222 #define WTAP_ENCAP_MUX27010                     133
223 #define WTAP_ENCAP_MIME                         134
224 #define WTAP_ENCAP_NETANALYZER                  135
225 #define WTAP_ENCAP_NETANALYZER_TRANSPARENT      136
226 #define WTAP_ENCAP_IP_OVER_IB                   137
227 #define WTAP_ENCAP_MPEG_2_TS                    138
228 #define WTAP_ENCAP_PPP_ETHER                    139
229 #define WTAP_ENCAP_NFC_LLCP                     140
230 #define WTAP_ENCAP_NFLOG                        141
231 #define WTAP_ENCAP_V5_EF                        142
232 #define WTAP_ENCAP_BACNET_MS_TP_WITH_PHDR       143
233 #define WTAP_ENCAP_IXVERIWAVE                   144
234 #define WTAP_ENCAP_IEEE_802_11_AIROPEEK         145
235 #define WTAP_ENCAP_SDH                          146
236 #define WTAP_ENCAP_DBUS                         147
237 #define WTAP_ENCAP_AX25_KISS                    148
238 #define WTAP_ENCAP_AX25                         149
239 #define WTAP_ENCAP_SCTP                         150
240 #define WTAP_ENCAP_INFINIBAND                   151
241 #define WTAP_ENCAP_JUNIPER_SVCS                 152
242 #define WTAP_ENCAP_USBPCAP                      153
243 #define WTAP_ENCAP_RTAC_SERIAL                  154
244 #define WTAP_ENCAP_BLUETOOTH_LE_LL              155
245 #define WTAP_ENCAP_WIRESHARK_UPPER_PDU          156
246 #define WTAP_ENCAP_STANAG_4607                  157
247 #define WTAP_ENCAP_STANAG_5066_D_PDU            158
248 #define WTAP_ENCAP_NETLINK                      159
249 #define WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR      160
250 #define WTAP_ENCAP_BLUETOOTH_BREDR_BB           161
251 #define WTAP_ENCAP_BLUETOOTH_LE_LL_WITH_PHDR    162
252 #define WTAP_ENCAP_NSTRACE_3_0                  163
253 #define WTAP_ENCAP_LOGCAT                       164
254 #define WTAP_ENCAP_LOGCAT_BRIEF                 165
255 #define WTAP_ENCAP_LOGCAT_PROCESS               166
256 #define WTAP_ENCAP_LOGCAT_TAG                   167
257 #define WTAP_ENCAP_LOGCAT_THREAD                168
258 #define WTAP_ENCAP_LOGCAT_TIME                  169
259 #define WTAP_ENCAP_LOGCAT_THREADTIME            170
260 #define WTAP_ENCAP_LOGCAT_LONG                  171
261 #define WTAP_ENCAP_PKTAP                        172
262 #define WTAP_ENCAP_EPON                         173
263 #define WTAP_ENCAP_IPMI_TRACE                   174
264 #define WTAP_ENCAP_LOOP                         175
265 #define WTAP_ENCAP_JSON                         176
266 #define WTAP_ENCAP_NSTRACE_3_5                  177
267 /* After adding new item here, please also add new item to encap_table_base array */
268
269 #define WTAP_NUM_ENCAP_TYPES                    wtap_get_num_encap_types()
270
271 /* File types/subtypes that can be read by wiretap.
272    We support writing many of these file types, too, so we
273    distinguish between different subtypes of them, as
274    different subtypes need to be written in a different
275    fashion. */
276 #define WTAP_FILE_TYPE_SUBTYPE_UNKNOWN                        0
277 #define WTAP_FILE_TYPE_SUBTYPE_PCAP                           1
278 #define WTAP_FILE_TYPE_SUBTYPE_PCAPNG                         2
279 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_NSEC                      3
280 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_AIX                       4
281 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_SS991029                  5
282 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_NOKIA                     6
283 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_SS990417                  7
284 #define WTAP_FILE_TYPE_SUBTYPE_PCAP_SS990915                  8
285 #define WTAP_FILE_TYPE_SUBTYPE_5VIEWS                         9
286 #define WTAP_FILE_TYPE_SUBTYPE_IPTRACE_1_0                   10
287 #define WTAP_FILE_TYPE_SUBTYPE_IPTRACE_2_0                   11
288 #define WTAP_FILE_TYPE_SUBTYPE_BER                           12
289 #define WTAP_FILE_TYPE_SUBTYPE_HCIDUMP                       13
290 #define WTAP_FILE_TYPE_SUBTYPE_CATAPULT_DCT2000              14
291 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_OLD                   15
292 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_1_0                   16
293 #define WTAP_FILE_TYPE_SUBTYPE_COSINE                        17
294 #define WTAP_FILE_TYPE_SUBTYPE_CSIDS                         18
295 #define WTAP_FILE_TYPE_SUBTYPE_DBS_ETHERWATCH                19
296 #define WTAP_FILE_TYPE_SUBTYPE_ERF                           20
297 #define WTAP_FILE_TYPE_SUBTYPE_EYESDN                        21
298 #define WTAP_FILE_TYPE_SUBTYPE_NETTL                         22
299 #define WTAP_FILE_TYPE_SUBTYPE_ISERIES                       23
300 #define WTAP_FILE_TYPE_SUBTYPE_ISERIES_UNICODE               24
301 #define WTAP_FILE_TYPE_SUBTYPE_I4BTRACE                      25
302 #define WTAP_FILE_TYPE_SUBTYPE_ASCEND                        26
303 #define WTAP_FILE_TYPE_SUBTYPE_NETMON_1_x                    27
304 #define WTAP_FILE_TYPE_SUBTYPE_NETMON_2_x                    28
305 #define WTAP_FILE_TYPE_SUBTYPE_NGSNIFFER_UNCOMPRESSED        29
306 #define WTAP_FILE_TYPE_SUBTYPE_NGSNIFFER_COMPRESSED          30
307 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_1_1                   31
308 #define WTAP_FILE_TYPE_SUBTYPE_NETXRAY_2_00x                 32
309 #define WTAP_FILE_TYPE_SUBTYPE_NETWORK_INSTRUMENTS           33
310 #define WTAP_FILE_TYPE_SUBTYPE_LANALYZER                     34
311 #define WTAP_FILE_TYPE_SUBTYPE_PPPDUMP                       35
312 #define WTAP_FILE_TYPE_SUBTYPE_RADCOM                        36
313 #define WTAP_FILE_TYPE_SUBTYPE_SNOOP                         37
314 #define WTAP_FILE_TYPE_SUBTYPE_SHOMITI                       38
315 #define WTAP_FILE_TYPE_SUBTYPE_VMS                           39
316 #define WTAP_FILE_TYPE_SUBTYPE_K12                           40
317 #define WTAP_FILE_TYPE_SUBTYPE_TOSHIBA                       41
318 #define WTAP_FILE_TYPE_SUBTYPE_VISUAL_NETWORKS               42
319 #define WTAP_FILE_TYPE_SUBTYPE_PEEKCLASSIC_V56               43
320 #define WTAP_FILE_TYPE_SUBTYPE_PEEKCLASSIC_V7                44
321 #define WTAP_FILE_TYPE_SUBTYPE_PEEKTAGGED                    45
322 #define WTAP_FILE_TYPE_SUBTYPE_MPEG                          46
323 #define WTAP_FILE_TYPE_SUBTYPE_K12TEXT                       47
324 #define WTAP_FILE_TYPE_SUBTYPE_NETSCREEN                     48
325 #define WTAP_FILE_TYPE_SUBTYPE_COMMVIEW                      49
326 #define WTAP_FILE_TYPE_SUBTYPE_BTSNOOP                       50
327 #define WTAP_FILE_TYPE_SUBTYPE_TNEF                          51
328 #define WTAP_FILE_TYPE_SUBTYPE_DCT3TRACE                     52
329 #define WTAP_FILE_TYPE_SUBTYPE_PACKETLOGGER                  53
330 #define WTAP_FILE_TYPE_SUBTYPE_DAINTREE_SNA                  54
331 #define WTAP_FILE_TYPE_SUBTYPE_NETSCALER_1_0                 55
332 #define WTAP_FILE_TYPE_SUBTYPE_NETSCALER_2_0                 56
333 #define WTAP_FILE_TYPE_SUBTYPE_JPEG_JFIF                     57 /* obsoleted by WTAP_FILE_TYPE_SUBTYPE_MIME */
334 #define WTAP_FILE_TYPE_SUBTYPE_IPFIX                         58
335 #define WTAP_FILE_TYPE_SUBTYPE_MIME                          59
336 #define WTAP_FILE_TYPE_SUBTYPE_AETHRA                        60
337 #define WTAP_FILE_TYPE_SUBTYPE_MPEG_2_TS                     61
338 #define WTAP_FILE_TYPE_SUBTYPE_VWR_80211                     62
339 #define WTAP_FILE_TYPE_SUBTYPE_VWR_ETH                       63
340 #define WTAP_FILE_TYPE_SUBTYPE_CAMINS                        64
341 #define WTAP_FILE_TYPE_SUBTYPE_STANAG_4607                   65
342 #define WTAP_FILE_TYPE_SUBTYPE_NETSCALER_3_0                 66
343 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT                        67
344 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_BRIEF                  68
345 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_PROCESS                69
346 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_TAG                    70
347 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_THREAD                 71
348 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_TIME                   72
349 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_THREADTIME             73
350 #define WTAP_FILE_TYPE_SUBTYPE_LOGCAT_LONG                   74
351 #define WTAP_FILE_TYPE_SUBTYPE_COLASOFT_CAPSA                75
352 #define WTAP_FILE_TYPE_SUBTYPE_COLASOFT_PACKET_BUILDER       76
353 #define WTAP_FILE_TYPE_SUBTYPE_JSON                          77
354 #define WTAP_FILE_TYPE_SUBTYPE_NETSCALER_3_5                 78
355 #define WTAP_FILE_TYPE_SUBTYPE_NETTRACE_3GPP_32_423          79
356
357 #define WTAP_NUM_FILE_TYPES_SUBTYPES  wtap_get_num_file_types_subtypes()
358
359 /* timestamp precision (currently only these values are supported) */
360 #define WTAP_TSPREC_UNKNOWN    -2
361 #define WTAP_TSPREC_PER_PACKET -1  /* as a per-file value, means per-packet */
362 #define WTAP_TSPREC_SEC         0
363 #define WTAP_TSPREC_DSEC        1
364 #define WTAP_TSPREC_CSEC        2
365 #define WTAP_TSPREC_MSEC        3
366 #define WTAP_TSPREC_USEC        6
367 #define WTAP_TSPREC_NSEC        9
368
369 /*
370  * Maximum packet size we'll support.
371  * 262144 is the largest snapshot length that libpcap supports, so we
372  * use that.
373  */
374 #define WTAP_MAX_PACKET_SIZE    262144
375
376 /*
377  * "Pseudo-headers" are used to supply to the clients of wiretap
378  * per-packet information that's not part of the packet payload
379  * proper.
380  *
381  * NOTE: do not use pseudo-header structures to hold information
382  * used by the code to read a particular capture file type; to
383  * keep that sort of state information, add a new structure for
384  * that private information to "wtap-int.h", add a pointer to that
385  * type of structure to the "capture" member of the "struct wtap"
386  * structure, and allocate one of those structures and set that member
387  * in the "open" routine for that capture file type if the open
388  * succeeds.  See various other capture file type handlers for examples
389  * of that.
390  */
391
392
393 /* Packet "pseudo-header" information for Ethernet capture files. */
394 struct eth_phdr {
395     gint   fcs_len;  /* Number of bytes of FCS - -1 means "unknown" */
396 };
397
398 /* Packet "pseudo-header" information for X.25 capture files. */
399 #define FROM_DCE 0x80
400 struct x25_phdr {
401     guint8  flags;   /* ENCAP_LAPB, ENCAP_V120 : 1st bit means From DCE */
402 };
403
404 /* Packet "pseudo-header" information for ISDN capture files. */
405
406 /* Direction */
407 struct isdn_phdr {
408     gboolean uton;
409     guint8   channel;   /* 0 = D-channel; n = B-channel n */
410 };
411
412 /* Packet "pseudo-header" for ATM capture files.
413    Not all of this information is supplied by all capture types.
414    These originally came from the Network General (DOS-based)
415    ATM Sniffer file format, but we've added some additional
416    items. */
417
418 /*
419  * Status bits.
420  */
421 #define ATM_RAW_CELL         0x01 /* TRUE if the packet is a single cell */
422 #define ATM_NO_HEC           0x02 /* TRUE if the cell has HEC stripped out */
423 #define ATM_AAL2_NOPHDR      0x04 /* TRUE if the AAL2 PDU has no pseudo-header */
424 #define ATM_REASSEMBLY_ERROR 0x08 /* TRUE if this is an incompletely-reassembled PDU */
425
426 /*
427  * AAL types.
428  */
429 #define AAL_UNKNOWN     0  /* AAL unknown */
430 #define AAL_1           1  /* AAL1 */
431 #define AAL_2           2  /* AAL2 */
432 #define AAL_3_4         3  /* AAL3/4 */
433 #define AAL_5           4  /* AAL5 */
434 #define AAL_USER        5  /* User AAL */
435 #define AAL_SIGNALLING  6  /* Signaling AAL */
436 #define AAL_OAMCELL     7  /* OAM cell */
437
438 /*
439  * Traffic types.
440  */
441 #define TRAF_UNKNOWN    0  /* Unknown */
442 #define TRAF_LLCMX      1  /* LLC multiplexed (RFC 1483) */
443 #define TRAF_VCMX       2  /* VC multiplexed (RFC 1483) */
444 #define TRAF_LANE       3  /* LAN Emulation */
445 #define TRAF_ILMI       4  /* ILMI */
446 #define TRAF_FR         5  /* Frame Relay */
447 #define TRAF_SPANS      6  /* FORE SPANS */
448 #define TRAF_IPSILON    7  /* Ipsilon */
449 #define TRAF_UMTS_FP    8  /* UMTS Frame Protocol */
450 #define TRAF_GPRS_NS    9  /* GPRS Network Services */
451 #define TRAF_SSCOP     10  /* SSCOP */
452
453 /*
454  * Traffic subtypes.
455  */
456 #define TRAF_ST_UNKNOWN     0   /* Unknown */
457
458 /*
459  * For TRAF_VCMX:
460  */
461 #define TRAF_ST_VCMX_802_3_FCS   1  /* 802.3 with an FCS */
462 #define TRAF_ST_VCMX_802_4_FCS   2  /* 802.4 with an FCS */
463 #define TRAF_ST_VCMX_802_5_FCS   3  /* 802.5 with an FCS */
464 #define TRAF_ST_VCMX_FDDI_FCS    4  /* FDDI with an FCS */
465 #define TRAF_ST_VCMX_802_6_FCS   5  /* 802.6 with an FCS */
466 #define TRAF_ST_VCMX_802_3       7  /* 802.3 without an FCS */
467 #define TRAF_ST_VCMX_802_4       8  /* 802.4 without an FCS */
468 #define TRAF_ST_VCMX_802_5       9  /* 802.5 without an FCS */
469 #define TRAF_ST_VCMX_FDDI       10  /* FDDI without an FCS */
470 #define TRAF_ST_VCMX_802_6      11  /* 802.6 without an FCS */
471 #define TRAF_ST_VCMX_FRAGMENTS  12  /* Fragments */
472 #define TRAF_ST_VCMX_BPDU       13  /* BPDU */
473
474 /*
475  * For TRAF_LANE:
476  */
477 #define TRAF_ST_LANE_LE_CTRL     1  /* LANE: LE Ctrl */
478 #define TRAF_ST_LANE_802_3       2  /* LANE: 802.3 */
479 #define TRAF_ST_LANE_802_5       3  /* LANE: 802.5 */
480 #define TRAF_ST_LANE_802_3_MC    4  /* LANE: 802.3 multicast */
481 #define TRAF_ST_LANE_802_5_MC    5  /* LANE: 802.5 multicast */
482
483 /*
484  * For TRAF_IPSILON:
485  */
486 #define TRAF_ST_IPSILON_FT0      1  /* Ipsilon: Flow Type 0 */
487 #define TRAF_ST_IPSILON_FT1      2  /* Ipsilon: Flow Type 1 */
488 #define TRAF_ST_IPSILON_FT2      3  /* Ipsilon: Flow Type 2 */
489
490 struct atm_phdr {
491     guint32 flags;      /* status flags */
492     guint8  aal;        /* AAL of the traffic */
493     guint8  type;       /* traffic type */
494     guint8  subtype;    /* traffic subtype */
495     guint16 vpi;        /* virtual path identifier */
496     guint16 vci;        /* virtual circuit identifier */
497     guint8  aal2_cid;   /* channel id */
498     guint16 channel;    /* link: 0 for DTE->DCE, 1 for DCE->DTE */
499     guint16 cells;      /* number of cells */
500     guint16 aal5t_u2u;  /* user-to-user indicator */
501     guint16 aal5t_len;  /* length of the packet */
502     guint32 aal5t_chksum;   /* checksum for AAL5 packet */
503 };
504
505 /* Packet "pseudo-header" for the output from "wandsession", "wannext",
506    "wandisplay", and similar commands on Lucent/Ascend access equipment. */
507
508 #define ASCEND_MAX_STR_LEN 64
509
510 #define ASCEND_PFX_WDS_X    1
511 #define ASCEND_PFX_WDS_R    2
512 #define ASCEND_PFX_WDD      3
513 #define ASCEND_PFX_ISDN_X   4
514 #define ASCEND_PFX_ISDN_R   5
515 #define ASCEND_PFX_ETHER    6
516
517 struct ascend_phdr {
518     guint16 type;                         /* ASCEND_PFX_*, as defined above */
519     char    user[ASCEND_MAX_STR_LEN];     /* Username, from wandsession header */
520     guint32 sess;                         /* Session number, from wandsession header */
521     char    call_num[ASCEND_MAX_STR_LEN]; /* Called number, from WDD header */
522     guint32 chunk;                        /* Chunk number, from WDD header */
523     guint32 task;                         /* Task number */
524 };
525
526 /* Also defined in epan/packet_info.h */
527 #define P2P_DIR_UNKNOWN -1
528 #define P2P_DIR_SENT     0
529 #define P2P_DIR_RECV     1
530
531 /* Packet "pseudo-header" for point-to-point links with direction flags. */
532 struct p2p_phdr {
533     int sent; /* TRUE=sent, FALSE=received, -1=unknown*/
534 };
535
536 /*
537  * Packet "pseudo-header" information for 802.11.
538  * Radio information is only present in this form for
539  * WTAP_ENCAP_IEEE_802_11_WITH_RADIO.  This is used for file formats in
540  * which the radio information isn't provided as a pseudo-header in the
541  * packet data.  It is also used by the dissectors for the pseudo-headers
542  * in the packet data to supply radio information, in a form independent
543  * of the file format and pseudo-header format, to the "802.11 radio"
544  * dissector.
545  *
546  * Signal strength, etc. information:
547  *
548  * Raw signal strength can be measured in milliwatts.
549  * It can also be represented as dBm, which is 10 times the log base 10
550  * of the signal strength in mW.
551  *
552  * The Receive Signal Strength Indicator is an integer in the range 0 to 255.
553  * The actual RSSI value for a given signal strength is dependent on the
554  * vendor (and perhaps on the adapter).  The maximum possible RSSI value
555  * is also dependent on the vendor and perhaps the adapter.
556  *
557  * The signal strength can be represented as a percentage, which is 100
558  * times the ratio of the RSSI and the maximum RSSI.
559  */
560
561 /*
562  * PHY types.
563  */
564 #define PHDR_802_11_PHY_UNKNOWN        0 /* PHY not known */
565 #define PHDR_802_11_PHY_11_FHSS        1 /* 802.11 FHSS */
566 #define PHDR_802_11_PHY_11_IR          2 /* 802.11 IR */
567 #define PHDR_802_11_PHY_11_DSSS        3 /* 802.11 DSSS */
568 #define PHDR_802_11_PHY_11B            4 /* 802.11b */
569 #define PHDR_802_11_PHY_11A            5 /* 802.11a */
570 #define PHDR_802_11_PHY_11G            6 /* 802.11g */
571 #define PHDR_802_11_PHY_11N            7 /* 802.11n */
572 #define PHDR_802_11_PHY_11AC           8 /* 802.11ac */
573
574 /*
575  * PHY-specific information.
576  */
577
578 /*
579  * 802.11 legacy FHSS.
580  */
581 struct ieee_802_11_fhss {
582     guint32  presence_flags; /* Which of this information is present? */
583     guint8   hop_set;        /* Hop set */
584     guint8   hop_pattern;    /* Hop pattern */
585     guint8   hop_index;      /* Hop index */
586 };
587
588 /*
589  * Presence flags.
590  */
591 #define PHDR_802_11_FHSS_HAS_HOP_SET      0x0000001
592 #define PHDR_802_11_FHSS_HAS_HOP_PATTERN  0x0000002
593 #define PHDR_802_11_FHSS_HAS_HOP_INDEX    0x0000004
594
595 /*
596  * 802.11b.
597  */
598 struct ieee_802_11b {
599     guint32  presence_flags; /* Which of this information is present? */
600     gboolean short_preamble; /* Short preamble */
601 };
602
603 /*
604  * Presence flags.
605  */
606 #define PHDR_802_11B_HAS_SHORT_PREAMBLE  0x0000001  /* Short preamble */
607
608 /*
609  * 802.11a.
610  */
611 struct ieee_802_11a {
612     guint32  presence_flags; /* Which of this information is present? */
613     guint    channel_type:2;
614     guint    turbo_type:2;
615 };
616
617 /*
618  * Presence flags.
619  */
620 #define PHDR_802_11A_HAS_CHANNEL_TYPE  0x0000001  /* Normal, half-clocked, quarter-clocked */
621 #define PHDR_802_11A_HAS_TURBO_TYPE    0x0000002  /* Normal, turbo, "static turbo" */
622
623 /*
624  * Channel type values.
625  */
626 #define PHDR_802_11A_CHANNEL_TYPE_NORMAL           0
627 #define PHDR_802_11A_CHANNEL_TYPE_HALF_CLOCKED     1
628 #define PHDR_802_11A_CHANNEL_TYPE_QUARTER_CLOCKED  2
629
630 /*
631  * "Turbo" is an Atheros proprietary extension with 40 MHz-wide channels.
632  * It can be dynamic or static.
633  *
634  * See
635  *
636  *    http://wifi-insider.com/atheros/turbo.htm
637  */
638 #define PHDR_802_11A_TURBO_TYPE_NORMAL           0
639 #define PHDR_802_11A_TURBO_TYPE_TURBO            1  /* If we don't know wehther it's static or dynamic */
640 #define PHDR_802_11A_TURBO_TYPE_DYNAMIC_TURBO    2
641 #define PHDR_802_11A_TURBO_TYPE_STATIC_TURBO     3
642
643 /*
644  * 802.11g.
645  */
646 struct ieee_802_11g {
647     guint32  presence_flags; /* Which of this information is present? */
648     gboolean short_preamble; /* Short preamble */
649     guint32  mode;           /* Various proprietary extensions */
650 };
651
652 /*
653  * Presence flags.
654  */
655 #define PHDR_802_11G_HAS_SHORT_PREAMBLE  0x0000001  /* Short preamble */
656 #define PHDR_802_11G_HAS_MODE            0x0000002  /* Proprietary extensions */
657
658 /*
659  * Mode values.
660  */
661 #define PHDR_802_11G_MODE_NORMAL    0
662 #define PHDR_802_11G_MODE_SUPER_G   1  /* Atheros Super G */
663
664 /*
665  * 802.11n.
666  */
667 struct ieee_802_11n {
668     guint32  presence_flags; /* Which of this information is present? */
669     guint16  mcs_index;      /* MCS index */
670     guint    bandwidth;      /* Bandwidth = 20 MHz, 40 MHz, etc. */
671     guint    short_gi:1;     /* True for short guard interval */
672     guint    greenfield:1;   /* True for greenfield, short for mixed */
673     guint    fec:1;          /* FEC: 0 = BCC, 1 = LDPC */
674     guint    stbc_streams:2; /* Number of STBC streams */
675     guint    ness;           /* Number of extension spatial streams */
676 };
677
678 /*
679  * Presence flags.
680  */
681 #define PHDR_802_11N_HAS_MCS_INDEX      0x00000001 /* mcs */
682 #define PHDR_802_11N_HAS_BANDWIDTH      0x00000002 /* bandwidth */
683 #define PHDR_802_11N_HAS_SHORT_GI       0x00000004 /* short_gi */
684 #define PHDR_802_11N_HAS_GREENFIELD     0x00000008 /* greenfield */
685 #define PHDR_802_11N_HAS_FEC            0x00000010 /* fec */
686 #define PHDR_802_11N_HAS_STBC_STREAMS   0x00000020 /* stbc_streams */
687 #define PHDR_802_11N_HAS_NESS           0x00000040 /* ness */
688
689 /*
690  * Bandwidth values; used for both 11n and 11ac.
691  */
692 #define PHDR_802_11_BANDWIDTH_20_MHZ   0  /* 20 MHz */
693 #define PHDR_802_11_BANDWIDTH_40_MHZ   1  /* 40 MHz */
694 #define PHDR_802_11_BANDWIDTH_20_20L   2  /* 20 + 20L, 40 MHz */
695 #define PHDR_802_11_BANDWIDTH_20_20U   3  /* 20 + 20U, 40 MHz */
696 #define PHDR_802_11_BANDWIDTH_80_MHZ   4  /* 80 MHz */
697 #define PHDR_802_11_BANDWIDTH_40_40L   5  /* 40 + 40L MHz, 80 MHz */
698 #define PHDR_802_11_BANDWIDTH_40_40U   6  /* 40 + 40U MHz, 80 MHz */
699 #define PHDR_802_11_BANDWIDTH_20LL     7  /* ???, 80 MHz */
700 #define PHDR_802_11_BANDWIDTH_20LU     8  /* ???, 80 MHz */
701 #define PHDR_802_11_BANDWIDTH_20UL     9  /* ???, 80 MHz */
702 #define PHDR_802_11_BANDWIDTH_20UU     10 /* ???, 80 MHz */
703 #define PHDR_802_11_BANDWIDTH_160_MHZ  11 /* 160 MHz */
704 #define PHDR_802_11_BANDWIDTH_80_80L   12 /* 80 + 80L, 160 MHz */
705 #define PHDR_802_11_BANDWIDTH_80_80U   13 /* 80 + 80U, 160 MHz */
706 #define PHDR_802_11_BANDWIDTH_40LL     14 /* ???, 160 MHz */
707 #define PHDR_802_11_BANDWIDTH_40LU     15 /* ???, 160 MHz */
708 #define PHDR_802_11_BANDWIDTH_40UL     16 /* ???, 160 MHz */
709 #define PHDR_802_11_BANDWIDTH_40UU     17 /* ???, 160 MHz */
710 #define PHDR_802_11_BANDWIDTH_20LLL    18 /* ???, 160 MHz */
711 #define PHDR_802_11_BANDWIDTH_20LLU    19 /* ???, 160 MHz */
712 #define PHDR_802_11_BANDWIDTH_20LUL    20 /* ???, 160 MHz */
713 #define PHDR_802_11_BANDWIDTH_20LUU    21 /* ???, 160 MHz */
714 #define PHDR_802_11_BANDWIDTH_20ULL    22 /* ???, 160 MHz */
715 #define PHDR_802_11_BANDWIDTH_20ULU    23 /* ???, 160 MHz */
716 #define PHDR_802_11_BANDWIDTH_20UUL    24 /* ???, 160 MHz */
717 #define PHDR_802_11_BANDWIDTH_20UUU    25 /* ???, 160 MHz */
718
719 /*
720  * 802.11ac.
721  */
722 struct ieee_802_11ac {
723     guint32  presence_flags; /* Which of this information is present? */
724     guint    stbc:1;         /* 1 if all spatial streams have STBC */
725     guint    txop_ps_not_allowed:1;
726     guint    short_gi:1;     /* True for short guard interval */
727     guint    short_gi_nsym_disambig:1;
728     guint    ldpc_extra_ofdm_symbol:1;
729     guint    beamformed:1;
730     guint8   bandwidth;      /* Bandwidth = 20 MHz, 40 MHz, etc. */
731     guint8   mcs[4];         /* MCS index per user */
732     guint8   nss[4];         /* NSS per user */
733     guint8   fec;            /* Bit array of FEC per user: 0 = BCC, 1 = LDPC */
734     guint8   group_id;
735     guint16  partial_aid;
736 };
737
738 /*
739  * Presence flags.
740  */
741 #define PHDR_802_11AC_HAS_STBC                    0x00000001 /* stbc */
742 #define PHDR_802_11AC_HAS_TXOP_PS_NOT_ALLOWED     0x00000002 /* txop_ps_not_allowed */
743 #define PHDR_802_11AC_HAS_SHORT_GI                0x00000004 /* short_gi */
744 #define PHDR_802_11AC_HAS_SHORT_GI_NSYM_DISAMBIG  0x00000008 /* short_gi_nsym_disambig */
745 #define PHDR_802_11AC_HAS_LDPC_EXTRA_OFDM_SYMBOL  0x00000010 /* ldpc_extra_ofdm_symbol */
746 #define PHDR_802_11AC_HAS_BEAMFORMED              0x00000020 /* beamformed */
747 #define PHDR_802_11AC_HAS_BANDWIDTH               0x00000040 /* bandwidth */
748 #define PHDR_802_11AC_HAS_FEC                     0x00000080 /* fec */
749 #define PHDR_802_11AC_HAS_GROUP_ID                0x00000100 /* group_id */
750 #define PHDR_802_11AC_HAS_PARTIAL_AID             0x00000200 /* partial_aid */
751
752 struct ieee_802_11_phdr {
753     gint     fcs_len;        /* Number of bytes of FCS - -1 means "unknown" */
754     gboolean decrypted;      /* TRUE if frame is decrypted even if "protected" bit is set */
755     gboolean datapad;        /* TRUE if frame has padding between 802.11 header and payload */
756     guint    phy;            /* PHY type */
757     union {
758         struct ieee_802_11_fhss info_11_fhss;
759         struct ieee_802_11b info_11b;
760         struct ieee_802_11a info_11a;
761         struct ieee_802_11g info_11g;
762         struct ieee_802_11n info_11n;
763         struct ieee_802_11ac info_11ac;
764     } phy_info;
765     guint32  presence_flags; /* Flags indicating presence of fields below */
766     guint16  channel;        /* Channel number */
767     guint32  frequency;      /* Channel center frequency */
768     guint16  data_rate;      /* Data rate, in .5 Mb/s units */
769     guint8   signal_percent; /* Signal level, as a percentage */
770     guint8   noise_percent;  /* Noise level, as a percentage */
771     gint8    signal_dbm;     /* Signal level, in dBm */
772     gint8    noise_dbm;      /* Noise level, in dBm */
773     guint64  tsf_timestamp;
774 };
775
776 /*
777  * Presence bits for non-PHY-specific data.
778  */
779 #define PHDR_802_11_HAS_CHANNEL         0x00000001 /* channel */
780 #define PHDR_802_11_HAS_FREQUENCY       0x00000002 /* frequency */
781 #define PHDR_802_11_HAS_DATA_RATE       0x00000004 /* data_rate */
782 #define PHDR_802_11_HAS_SIGNAL_PERCENT  0x00000008 /* signal_percent */
783 #define PHDR_802_11_HAS_NOISE_PERCENT   0x00000010 /* noise_percent */
784 #define PHDR_802_11_HAS_SIGNAL_DBM      0x00000020 /* signal_dbm */
785 #define PHDR_802_11_HAS_NOISE_DBM       0x00000040 /* noise_dbm */
786 #define PHDR_802_11_HAS_TSF_TIMESTAMP   0x00000080 /* tsf_timestamp */
787
788 /* Packet "pseudo-header" for the output from CoSine L2 debug output. */
789
790 #define COSINE_MAX_IF_NAME_LEN  128
791
792 #define COSINE_ENCAP_TEST      1
793 #define COSINE_ENCAP_PPoATM    2
794 #define COSINE_ENCAP_PPoFR     3
795 #define COSINE_ENCAP_ATM       4
796 #define COSINE_ENCAP_FR        5
797 #define COSINE_ENCAP_HDLC      6
798 #define COSINE_ENCAP_PPP       7
799 #define COSINE_ENCAP_ETH       8
800 #define COSINE_ENCAP_UNKNOWN  99
801
802 #define COSINE_DIR_TX 1
803 #define COSINE_DIR_RX 2
804
805 struct cosine_phdr {
806     guint8  encap;      /* COSINE_ENCAP_* as defined above */
807     guint8  direction;  /* COSINE_DIR_*, as defined above */
808     char    if_name[COSINE_MAX_IF_NAME_LEN];  /* Encap & Logical I/F name */
809     guint16 pro;        /* Protocol */
810     guint16 off;        /* Offset */
811     guint16 pri;        /* Priority */
812     guint16 rm;         /* Rate Marking */
813     guint16 err;        /* Error Code */
814 };
815
816 /* Packet "pseudo-header" for IrDA capture files. */
817
818 /*
819  * Direction of the packet
820  */
821 #define IRDA_INCOMING       0x0000
822 #define IRDA_OUTGOING       0x0004
823
824 /*
825  * "Inline" log messages produced by IrCOMM2k on Windows
826  */
827 #define IRDA_LOG_MESSAGE    0x0100  /* log message */
828 #define IRDA_MISSED_MSG     0x0101  /* missed log entry or frame */
829
830 /*
831  * Differentiate between frames and log messages
832  */
833 #define IRDA_CLASS_FRAME    0x0000
834 #define IRDA_CLASS_LOG      0x0100
835 #define IRDA_CLASS_MASK     0xFF00
836
837 struct irda_phdr {
838     guint16 pkttype;    /* packet type */
839 };
840
841 /* Packet "pseudo-header" for nettl (HP-UX) capture files. */
842
843 struct nettl_phdr {
844     guint16 subsys;
845     guint32 devid;
846     guint32 kind;
847     gint32  pid;
848     guint16 uid;
849 };
850
851 /* Packet "pseudo-header" for MTP2 files. */
852
853 #define MTP2_ANNEX_A_NOT_USED      0
854 #define MTP2_ANNEX_A_USED          1
855 #define MTP2_ANNEX_A_USED_UNKNOWN  2
856
857 struct mtp2_phdr {
858     guint8  sent;
859     guint8  annex_a_used;
860     guint16 link_number;
861 };
862
863 /* Packet "pseudo-header" for K12 files. */
864
865 typedef union {
866     struct {
867         guint16 vp;
868         guint16 vc;
869         guint16 cid;
870     } atm;
871
872     guint32 ds0mask;
873 } k12_input_info_t;
874
875 struct k12_phdr {
876     guint32           input;
877     const gchar      *input_name;
878     const gchar      *stack_file;
879     guint32           input_type;
880     k12_input_info_t  input_info;
881     guint8           *extra_info;
882     guint32           extra_length;
883     void*             stuff;
884 };
885
886 #define K12_PORT_DS0S      0x00010008
887 #define K12_PORT_DS1       0x00100008
888 #define K12_PORT_ATMPVC    0x01020000
889
890 struct lapd_phdr {
891     guint16 pkttype;    /* packet type */
892     guint8 we_network;
893 };
894
895 struct wtap;
896 struct catapult_dct2000_phdr
897 {
898     union
899     {
900         struct isdn_phdr isdn;
901         struct atm_phdr  atm;
902         struct p2p_phdr  p2p;
903     } inner_pseudo_header;
904     gint64       seek_off;
905     struct wtap *wth;
906 };
907
908 /*
909  * Endace Record Format pseudo header
910  */
911 struct erf_phdr {
912     guint64 ts;     /* Time stamp */
913     guint8  type;
914     guint8  flags;
915     guint16 rlen;
916     guint16 lctr;
917     guint16 wlen;
918 };
919
920 struct erf_ehdr {
921   guint64 ehdr;
922 };
923
924 /*
925  * ERF pseudo header with optional subheader
926  * (Multichannel or Ethernet)
927  */
928
929 #define MAX_ERF_EHDR 8
930
931 struct erf_mc_phdr {
932     struct erf_phdr phdr;
933     struct erf_ehdr ehdr_list[MAX_ERF_EHDR];
934     union
935     {
936         guint16 eth_hdr;
937         guint32 mc_hdr;
938     } subhdr;
939 };
940
941 #define SITA_FRAME_DIR_TXED            (0x00)  /* values of sita_phdr.flags */
942 #define SITA_FRAME_DIR_RXED            (0x01)
943 #define SITA_FRAME_DIR                 (0x01)  /* mask */
944 #define SITA_ERROR_NO_BUFFER           (0x80)
945
946 #define SITA_SIG_DSR                   (0x01)  /* values of sita_phdr.signals */
947 #define SITA_SIG_DTR                   (0x02)
948 #define SITA_SIG_CTS                   (0x04)
949 #define SITA_SIG_RTS                   (0x08)
950 #define SITA_SIG_DCD                   (0x10)
951 #define SITA_SIG_UNDEF1                (0x20)
952 #define SITA_SIG_UNDEF2                (0x40)
953 #define SITA_SIG_UNDEF3                (0x80)
954
955 #define SITA_ERROR_TX_UNDERRUN         (0x01)  /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_TXED) */
956 #define SITA_ERROR_TX_CTS_LOST         (0x02)
957 #define SITA_ERROR_TX_UART_ERROR       (0x04)
958 #define SITA_ERROR_TX_RETX_LIMIT       (0x08)
959 #define SITA_ERROR_TX_UNDEF1           (0x10)
960 #define SITA_ERROR_TX_UNDEF2           (0x20)
961 #define SITA_ERROR_TX_UNDEF3           (0x40)
962 #define SITA_ERROR_TX_UNDEF4           (0x80)
963
964 #define SITA_ERROR_RX_FRAMING          (0x01)  /* values of sita_phdr.errors1 (if SITA_FRAME_DIR_RXED) */
965 #define SITA_ERROR_RX_PARITY           (0x02)
966 #define SITA_ERROR_RX_COLLISION        (0x04)
967 #define SITA_ERROR_RX_FRAME_LONG       (0x08)
968 #define SITA_ERROR_RX_FRAME_SHORT      (0x10)
969 #define SITA_ERROR_RX_UNDEF1           (0x20)
970 #define SITA_ERROR_RX_UNDEF2           (0x40)
971 #define SITA_ERROR_RX_UNDEF3           (0x80)
972
973 #define SITA_ERROR_RX_NONOCTET_ALIGNED (0x01)  /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_RXED) */
974 #define SITA_ERROR_RX_ABORT            (0x02)
975 #define SITA_ERROR_RX_CD_LOST          (0x04)
976 #define SITA_ERROR_RX_DPLL             (0x08)
977 #define SITA_ERROR_RX_OVERRUN          (0x10)
978 #define SITA_ERROR_RX_FRAME_LEN_VIOL   (0x20)
979 #define SITA_ERROR_RX_CRC              (0x40)
980 #define SITA_ERROR_RX_BREAK            (0x80)
981
982 #define SITA_PROTO_UNUSED              (0x00)  /* values of sita_phdr.proto */
983 #define SITA_PROTO_BOP_LAPB            (0x01)
984 #define SITA_PROTO_ETHERNET            (0x02)
985 #define SITA_PROTO_ASYNC_INTIO         (0x03)
986 #define SITA_PROTO_ASYNC_BLKIO         (0x04)
987 #define SITA_PROTO_ALC                 (0x05)
988 #define SITA_PROTO_UTS                 (0x06)
989 #define SITA_PROTO_PPP_HDLC            (0x07)
990 #define SITA_PROTO_SDLC                (0x08)
991 #define SITA_PROTO_TOKENRING           (0x09)
992 #define SITA_PROTO_I2C                 (0x10)
993 #define SITA_PROTO_DPM_LINK            (0x11)
994 #define SITA_PROTO_BOP_FRL             (0x12)
995
996 struct sita_phdr {
997     guint8  sita_flags;
998     guint8  sita_signals;
999     guint8  sita_errors1;
1000     guint8  sita_errors2;
1001     guint8  sita_proto;
1002 };
1003
1004 /*pseudo header for Bluetooth HCI*/
1005 struct bthci_phdr {
1006     gboolean  sent;
1007     guint32   channel;
1008 };
1009
1010 #define BTHCI_CHANNEL_COMMAND  1
1011 #define BTHCI_CHANNEL_ACL      2
1012 #define BTHCI_CHANNEL_SCO      3
1013 #define BTHCI_CHANNEL_EVENT    4
1014
1015 /* pseudo header for WTAP_ENCAP_BLUETOOTH_LINUX_MONITOR */
1016 struct btmon_phdr {
1017     guint16   adapter_id;
1018     guint16   opcode;
1019 };
1020
1021 /* pseudo header for WTAP_ENCAP_LAYER1_EVENT */
1022 struct l1event_phdr {
1023     gboolean uton;
1024 };
1025
1026 /* * I2C pseudo header */
1027 struct i2c_phdr {
1028     guint8  is_event;
1029     guint8  bus;
1030     guint32 flags;
1031 };
1032
1033 /* pseudo header for WTAP_ENCAP_GSM_UM */
1034 struct gsm_um_phdr {
1035     gboolean uplink;
1036     guint8   channel;
1037     /* The following are only populated for downlink */
1038     guint8   bsic;
1039     guint16  arfcn;
1040     guint32  tdma_frame;
1041     guint8   error;
1042     guint16  timeshift;
1043 };
1044
1045 #define GSM_UM_CHANNEL_UNKNOWN  0
1046 #define GSM_UM_CHANNEL_BCCH     1
1047 #define GSM_UM_CHANNEL_SDCCH    2
1048 #define GSM_UM_CHANNEL_SACCH    3
1049 #define GSM_UM_CHANNEL_FACCH    4
1050 #define GSM_UM_CHANNEL_CCCH     5
1051 #define GSM_UM_CHANNEL_RACH     6
1052 #define GSM_UM_CHANNEL_AGCH     7
1053 #define GSM_UM_CHANNEL_PCH      8
1054
1055 /* Pseudo-header for nstrace packets */
1056 struct nstr_phdr {
1057     gint64 rec_offset;
1058     gint32 rec_len;
1059     guint8 nicno_offset;
1060     guint8 nicno_len;
1061     guint8 dir_offset;
1062     guint8 dir_len;
1063     guint8 eth_offset;
1064     guint8 pcb_offset;
1065     guint8 l_pcb_offset;
1066     guint8 rec_type;
1067     guint8 vlantag_offset;
1068     guint8 coreid_offset;
1069     guint8 srcnodeid_offset;
1070     guint8 destnodeid_offset;
1071     guint8 clflags_offset;
1072     guint8 src_vmname_len_offset;
1073     guint8 dst_vmname_len_offset;
1074     guint8 ns_activity_offset;
1075     guint8 data_offset;
1076 };
1077
1078 /* Packet "pseudo-header" for Nokia output */
1079 struct nokia_phdr {
1080     struct eth_phdr eth;
1081     guint8 stuff[4];    /* mysterious stuff */
1082 };
1083
1084 #define LLCP_PHDR_FLAG_SENT 0
1085 struct llcp_phdr {
1086     guint8 adapter;
1087     guint8 flags;
1088 };
1089
1090 /* pseudo header for WTAP_ENCAP_LOGCAT */
1091 struct logcat_phdr {
1092     gint version;
1093 };
1094
1095 /* Pseudo-header for file-type-specific records */
1096 struct ft_specific_record_phdr {
1097     guint record_type;    /* the type of record this is */
1098 };
1099
1100 union wtap_pseudo_header {
1101     struct eth_phdr     eth;
1102     struct x25_phdr     x25;
1103     struct isdn_phdr    isdn;
1104     struct atm_phdr     atm;
1105     struct ascend_phdr  ascend;
1106     struct p2p_phdr     p2p;
1107     struct ieee_802_11_phdr ieee_802_11;
1108     struct cosine_phdr  cosine;
1109     struct irda_phdr    irda;
1110     struct nettl_phdr   nettl;
1111     struct mtp2_phdr    mtp2;
1112     struct k12_phdr     k12;
1113     struct lapd_phdr    lapd;
1114     struct catapult_dct2000_phdr dct2000;
1115     struct erf_mc_phdr  erf;
1116     struct sita_phdr    sita;
1117     struct bthci_phdr   bthci;
1118     struct btmon_phdr   btmon;
1119     struct l1event_phdr l1event;
1120     struct i2c_phdr     i2c;
1121     struct gsm_um_phdr  gsm_um;
1122     struct nstr_phdr    nstr;
1123     struct nokia_phdr   nokia;
1124     struct llcp_phdr    llcp;
1125     struct logcat_phdr  logcat;
1126     struct ft_specific_record_phdr ftsrec;
1127 };
1128
1129 /*
1130  * Record type values.
1131  *
1132  * This list will expand over time, so don't assume everything will
1133  * forever be one of the types listed below.
1134  *
1135  * For file-type-specific records, the "ftsrec" field of the pseudo-header
1136  * contains a file-type-specific subtype value, such as a block type for
1137  * a pcap-ng file.
1138  *
1139  * An "event" is an indication that something happened during the capture
1140  * process, such as a status transition of some sort on the network.
1141  * These should, ideally, have a time stamp and, if they're relevant to
1142  * a particular interface on a multi-interface capture, should also have
1143  * an interface ID.  The data for the event is file-type-specific and
1144  * subtype-specific.  These should be dissected and displayed just as
1145  * packets are.
1146  *
1147  * A "report" supplies information not corresponding to an event;
1148  * for example, a pcap-ng Interface Statistics Block would be a report,
1149  * as it doesn't correspond to something happening on the network.
1150  * They may have a time stamp, and should be dissected and displayed
1151  * just as packets are.
1152  *
1153  * We distingiush between "events" and "reports" so that, for example,
1154  * the packet display can show the delta between a packet and an event
1155  * but not show the delta between a packet and a report, as the time
1156  * stamp of a report may not correspond to anything interesting on
1157  * the network but the time stamp of an event would.
1158  *
1159  * XXX - are there any file-type-specific records that *shouldn't* be
1160  * dissected and displayed?  If so, they should be parsed and the
1161  * information in them stored somewhere, and used somewhere, whether
1162  * it's just used when saving the file in its native format or also
1163  * used to parse *other* file-type-specific records.
1164  */
1165 #define REC_TYPE_PACKET               0    /**< packet */
1166 #define REC_TYPE_FT_SPECIFIC_EVENT    1    /**< file-type-specific event */
1167 #define REC_TYPE_FT_SPECIFIC_REPORT   2    /**< file-type-specific report */
1168
1169 struct wtap_pkthdr {
1170     guint     rec_type;         /* what type of record is this? */
1171     guint32   presence_flags;   /* what stuff do we have? */
1172     nstime_t  ts;               /* time stamp */
1173     guint32   caplen;           /* data length in the file */
1174     guint32   len;              /* data length on the wire */
1175     int       pkt_encap;        /* WTAP_ENCAP_ value for this packet */
1176     int       pkt_tsprec;       /* WTAP_TSPREC_ value for this packet */
1177                                 /* pcapng variables */
1178     guint32   interface_id;     /* identifier of the interface. */
1179                                 /* options */
1180     gchar     *opt_comment;     /* NULL if not available */
1181     guint64   drop_count;       /* number of packets lost (by the interface and the
1182                                    operating system) between this packet and the preceding one. */
1183     guint32   pack_flags;       /* XXX - 0 for now (any value for "we don't have it"?) */
1184     Buffer    ft_specific_data; /* file-type specific data */
1185
1186     union wtap_pseudo_header  pseudo_header;
1187 };
1188
1189 /*
1190  * Bits in presence_flags, indicating which of the fields we have.
1191  *
1192  * For the time stamp, we may need some more flags to indicate
1193  * whether the time stamp is an absolute date-and-time stamp, an
1194  * absolute time-only stamp (which can make relative time
1195  * calculations tricky, as you could in theory have two time
1196  * stamps separated by an unknown number of days), or a time stamp
1197  * relative to some unspecified time in the past (see mpeg.c).
1198  *
1199  * There is no presence flag for len - there has to be *some* length
1200  * value for the packet.  (The "captured length" can be missing if
1201  * the file format doesn't report a captured length distinct from
1202  * the on-the-network length because the application(s) producing those
1203  * files don't support slicing packets.)
1204  *
1205  * There could be a presence flag for the packet encapsulation - if it's
1206  * absent, use the file encapsulation - but it's not clear that's useful;
1207  * we currently do that in the module for the file format.
1208  */
1209 #define WTAP_HAS_TS            0x00000001  /**< time stamp */
1210 #define WTAP_HAS_CAP_LEN       0x00000002  /**< captured length separate from on-the-network length */
1211 #define WTAP_HAS_INTERFACE_ID  0x00000004  /**< interface ID */
1212 #define WTAP_HAS_COMMENTS      0x00000008  /**< comments */
1213 #define WTAP_HAS_DROP_COUNT    0x00000010  /**< drop count */
1214 #define WTAP_HAS_PACK_FLAGS    0x00000020  /**< packet flags */
1215
1216 /**
1217  * Holds the option strings from pcapng:s Section Header block(SHB).
1218  */
1219 typedef struct wtapng_section_s {
1220     /* mandatory */
1221     guint64             section_length; /**< 64-bit value specifying the length in bytes of the
1222                                          *     following section.
1223                                          *     Section Length equal -1 (0xFFFFFFFFFFFFFFFF) means
1224                                          *     that the size of the section is not specified
1225                                          */
1226     /* options */
1227     gchar               *opt_comment;   /**< NULL if not available */
1228     gchar               *shb_hardware;  /**< NULL if not available
1229                                          *     UTF-8 string containing the description of the
1230                                          *     hardware used to create this section.
1231                                          */
1232     gchar               *shb_os;        /**< NULL if not available, UTF-8 string containing the
1233                                          *     name of the operating system used to create this section.
1234                                          */
1235     gchar         *shb_user_appl;       /**< NULL if not available, UTF-8 string containing the
1236                                          *     name of the application used to create this section.
1237                                          */
1238 } wtapng_section_t;
1239
1240
1241 /** struct holding the information to build IDB:s
1242  *  the interface_data array holds an array of wtapng_if_descr_t
1243  *  one per interface.
1244  */
1245 typedef struct wtapng_iface_descriptions_s {
1246     GArray *interface_data;
1247 } wtapng_iface_descriptions_t;
1248
1249 /* Interface Description
1250  *
1251  * Options:
1252  *
1253  * if_name        2  A UTF-8 string containing the name of the device used to capture data.
1254  *                     "eth0" / "\Device\NPF_{AD1CE675-96D0-47C5-ADD0-2504B9126B68}" / ...
1255  *
1256  * if_description 3  A UTF-8 string containing the description of the device used
1257  *                     to capture data. "Broadcom NetXtreme" / "First Ethernet Interface" / ...
1258  *
1259  * if_IPv4addr    4  Interface network address and netmask. This option can be
1260  *                     repeated multiple times within the same Interface Description Block
1261  *                     when multiple IPv4 addresses are assigned to the interface. 192 168 1 1 255 255 255 0
1262  *
1263  * if_IPv6addr    5  Interface network address and prefix length (stored in the last byte).
1264  *                     This option can be repeated multiple times within the same Interface
1265  *                     Description Block when multiple IPv6 addresses are assigned to the interface.
1266  *                     2001:0db8:85a3:08d3:1319:8a2e:0370:7344/64 is written (in hex) as
1267  *                     "20 01 0d b8 85 a3 08 d3 13 19 8a 2e 03 70 73 44 40"
1268  *
1269  * if_MACaddr     6  Interface Hardware MAC address (48 bits). 00 01 02 03 04 05
1270  *
1271  * if_EUIaddr     7  Interface Hardware EUI address (64 bits), if available. TODO: give a good example
1272  *
1273  * if_speed       8  Interface speed (in bps). 100000000 for 100Mbps
1274  *
1275  * if_tsresol     9  Resolution of timestamps. If the Most Significant Bit is equal to zero,
1276  *                     the remaining bits indicates the resolution of the timestamp as as a
1277  *                     negative power of 10 (e.g. 6 means microsecond resolution, timestamps
1278  *                     are the number of microseconds since 1/1/1970). If the Most Significant Bit
1279  *                     is equal to one, the remaining bits indicates the resolution has a
1280  *                     negative power of 2 (e.g. 10 means 1/1024 of second).
1281  *                     If this option is not present, a resolution of 10^-6 is assumed
1282  *                     (i.e. timestamps have the same resolution of the standard 'libpcap' timestamps). 6
1283  *
1284  * if_tzone      10  Time zone for GMT support (TODO: specify better). TODO: give a good example
1285  *
1286  * if_filter     11  The filter (e.g. "capture only TCP traffic") used to capture traffic.
1287  *                     The first byte of the Option Data keeps a code of the filter used
1288  *                     (e.g. if this is a libpcap string, or BPF bytecode, and more).
1289  *                     More details about this format will be presented in Appendix XXX (TODO).
1290  *                     (TODO: better use different options for different fields?
1291  *                     e.g. if_filter_pcap, if_filter_bpf, ...) 00 "tcp port 23 and host 10.0.0.5"
1292  *
1293  * if_os         12  A UTF-8 string containing the name of the operating system of the
1294  *                     machine in which this interface is installed.
1295  *                     This can be different from the same information that can be
1296  *                     contained by the Section Header Block
1297  *                     (Section 3.1 (Section Header Block (mandatory))) because
1298  *                     the capture can have been done on a remote machine.
1299  *                     "Windows XP SP2" / "openSUSE 10.2" / ...
1300  *
1301  * if_fcslen     13  An integer value that specified the length of the
1302  *                     Frame Check Sequence (in bits) for this interface.
1303  *                     For link layers whose FCS length can change during time,
1304  *                     the Packet Block Flags Word can be used (see Appendix A (Packet Block Flags Word)). 4
1305  *
1306  * if_tsoffset   14  A 64 bits integer value that specifies an offset (in seconds)
1307  *                     that must be added to the timestamp of each packet to obtain
1308  *                     the absolute timestamp of a packet. If the option is missing,
1309  *                     the timestamps stored in the packet must be considered absolute
1310  *                     timestamps. The time zone of the offset can be specified with the
1311  *                     option if_tzone. TODO: won't a if_tsoffset_low for fractional
1312  *                     second offsets be useful for highly syncronized capture systems? 1234
1313  */
1314 /**
1315  * Interface description data
1316  */
1317 typedef struct wtapng_if_descr_s {
1318     int                    wtap_encap;            /**< link_type translated to wtap_encap */
1319     guint64                time_units_per_second;
1320     int                    tsprecision;           /**< WTAP_TSPREC_ value for this interface */
1321
1322     /* mandatory */
1323     guint16                link_type;
1324     guint32                snap_len;
1325
1326     /* options */
1327     gchar                 *opt_comment;           /**< NULL if not available */
1328     gchar                 *if_name;               /**< NULL if not available
1329                                                    *  opt 2
1330                                                    *     A UTF-8 string containing the name of the
1331                                                    *     device used to capture data.
1332                                                    */
1333     gchar                 *if_description;        /**< NULL if not available
1334                                                    *  opt 3
1335                                                    *     A UTF-8 string containing the description
1336                                                    *     of the device used to capture data.
1337                                                    */
1338
1339     /* XXX: if_IPv4addr opt 4  Interface network address and netmask.                                */
1340     /* XXX: if_IPv6addr opt 5  Interface network address and prefix length (stored in the last byte).*/
1341     /* XXX: if_MACaddr  opt 6  Interface Hardware MAC address (48 bits).                             */
1342     /* XXX: if_EUIaddr  opt 7  Interface Hardware EUI address (64 bits)                              */
1343
1344     guint64                if_speed;              /**< 0xFFFFFFFF if unknown
1345                                                    *  opt 8
1346                                                    *     Interface speed (in bps). 100000000 for 100Mbps
1347                                                    */
1348     guint8                 if_tsresol;            /**< default is 6 for microsecond resolution
1349                                                    *  opt 9
1350                                                    *     Resolution of timestamps.
1351                                                    *     If the Most Significant Bit is equal to zero,
1352                                                    *     the remaining bits indicates the resolution of the
1353                                                    *     timestamp as as a negative power of 10
1354                                                    */
1355
1356     /* XXX: if_tzone      10  Time zone for GMT support (TODO: specify better). */
1357
1358     gchar                 *if_filter_str;         /**< NULL if not available
1359                                                    *  opt 11  libpcap string.
1360                                                    */
1361     guint16                bpf_filter_len;        /** Opt 11 variant II BPF filter len 0 if not used*/
1362     gchar                 *if_filter_bpf_bytes;   /** Opt 11 BPF filter or NULL */
1363     gchar                 *if_os;                 /**< NULL if not available
1364                                                    *     12  A UTF-8 string containing the name of the
1365                                                    *     operating system of the machine in which this
1366                                                    *     interface is installed.
1367                                                    */
1368     gint8                  if_fcslen;             /**< -1 if unknown or changes between packets,
1369                                                    *  opt 13
1370                                                    *     An integer value that specified the length of
1371                                                    *     the Frame Check Sequence (in bits) for this interface. */
1372     /* XXX: guint64    if_tsoffset; opt 14  A 64 bits integer value that specifies an offset (in seconds)...*/
1373     guint8                 num_stat_entries;
1374     GArray                *interface_statistics;  /**< An array holding the interface statistics from
1375                                                    *     pcapng ISB:s or equivalent(?)*/
1376 } wtapng_if_descr_t;
1377
1378
1379 /**
1380  * Interface Statistics. pcap-ng Interface Statistics Block (ISB).
1381  */
1382 typedef struct wtapng_if_stats_s {
1383     /* mandatory */
1384     guint32  interface_id;
1385     guint32  ts_high;
1386     guint32  ts_low;
1387     /* options */
1388     gchar   *opt_comment;       /**< NULL if not available */
1389     guint64  isb_starttime;
1390     guint64  isb_endtime;
1391     guint64  isb_ifrecv;
1392     guint64  isb_ifdrop;
1393     guint64  isb_filteraccept;
1394     guint64  isb_osdrop;
1395     guint64  isb_usrdeliv;
1396 } wtapng_if_stats_t;
1397
1398
1399 /** A struct with lists of resolved addresses.
1400  *  Used when writing name resoultion blocks (NRB)
1401  */
1402 typedef struct addrinfo_lists {
1403     GList      *ipv4_addr_list; /**< A list of resolved hashipv4_t*/
1404     GList      *ipv6_addr_list; /**< A list of resolved hashipv6_t*/
1405 } addrinfo_lists_t;
1406
1407 struct wtap_dumper;
1408
1409 typedef struct wtap wtap;
1410 typedef struct wtap_dumper wtap_dumper;
1411
1412 typedef struct wtap_reader *FILE_T;
1413
1414 /* Similar to the wtap_open_routine_info for open routines, the following
1415  * wtap_wslua_file_info struct is used by wslua code for Lua-based file writers.
1416  *
1417  * This concept is necessary because when wslua goes to invoke the
1418  * registered dump/write_open routine callback in Lua, it needs the ref number representing
1419  * the hooked function inside Lua.  This will be stored in the thing pointed to
1420  * by the void* data here.  This 'data' pointer will be copied into the
1421  * wtap_dumper struct's 'void* data' member when calling the dump_open function,
1422  * which is how wslua finally retrieves it.  Unlike wtap_dumper's 'priv' member, its
1423  * 'data' member is not free'd in wtap_dump_close().
1424  */
1425 typedef struct wtap_wslua_file_info {
1426     int (*wslua_can_write_encap)(int, void*);   /* a can_write_encap func for wslua uses */
1427     void* wslua_data;                           /* holds the wslua data */
1428 } wtap_wslua_file_info_t;
1429
1430 /*
1431  * For registering extensions used for capture file formats.
1432  *
1433  * These items are used in dialogs for opening files, so that
1434  * the user can ask to see all capture files (as identified
1435  * by file extension) or particular types of capture files.
1436  *
1437  * Each file type has a description and a list of extensions the file
1438  * might have.  Some file types aren't real file types, they're
1439  * just generic types, such as "text file" or "XML file", that can
1440  * be used for, among other things, captures we can read, or for
1441  * extensions such as ".cap" that were unimaginatively chosen by
1442  * several different sniffers for their file formats.
1443  */
1444 struct file_extension_info {
1445     /* the file type name */
1446     const char *name;
1447
1448     /* a semicolon-separated list of file extensions used for this type */
1449     const char *extensions;
1450 };
1451
1452 /*
1453  * For registering file types that we can open.
1454  *
1455  * Each file type has an open routine and an optional list of extensions
1456  * the file might have.
1457  *
1458  * The open routine should return:
1459  *
1460  *      WTAP_OPEN_ERROR on an I/O error;
1461  *
1462  *      WTAP_OPEN_MINE if the file it's reading is one of the types
1463  *      it handles;
1464  *
1465  *      WTAP_OPEN_NOT_MINE if the file it's reading isn't one of the
1466  *      types it handles.
1467  *
1468  * If the routine handles this type of file, it should set the "file_type"
1469  * field in the "struct wtap" to the type of the file.
1470  *
1471  * Note that the routine does not have to free the private data pointer on
1472  * error. The caller takes care of that by calling wtap_close on error.
1473  * (See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8518)
1474  *
1475  * However, the caller does have to free the private data pointer when
1476  * returning WTAP_OPEN_NOT_MINE, since the next file type will be called
1477  * and will likely just overwrite the pointer.
1478  */
1479 typedef enum {
1480     WTAP_OPEN_NOT_MINE = 0,
1481     WTAP_OPEN_MINE = 1,
1482     WTAP_OPEN_ERROR = -1
1483 } wtap_open_return_val;
1484
1485 typedef wtap_open_return_val (*wtap_open_routine_t)(struct wtap*, int *,
1486     char **);
1487
1488 /*
1489  * Some file formats have defined magic numbers at fixed offsets from
1490  * the beginning of the file; those routines should return 1 if and
1491  * only if the file has the magic number at that offset.  (pcap-ng
1492  * is a bit of a special case, as it has both the Section Header Block
1493  * type field and its byte-order magic field; it checks for both.)
1494  * Those file formats do not require a file name extension in order
1495  * to recognize them or to avoid recognizing other file types as that
1496  * type, and have no extensions specified for them.
1497  *
1498  * Other file formats don't have defined magic numbers at fixed offsets,
1499  * so a heuristic is required.  If that file format has any file name
1500  * extensions used for it, a list of those extensions should be
1501  * specified, so that, if the name of the file being opened has an
1502  * extension, the file formats that use that extension are tried before
1503  * the ones that don't, to handle the case where a file of one type
1504  * might be recognized by the heuristics for a different file type.
1505  */
1506
1507 typedef enum {
1508     OPEN_INFO_MAGIC = 0,
1509     OPEN_INFO_HEURISTIC = 1
1510 } wtap_open_type;
1511
1512 WS_DLL_PUBLIC void init_open_routines(void);
1513
1514 struct open_info {
1515     const char *name;
1516     wtap_open_type type;
1517     wtap_open_routine_t open_routine;
1518     const char *extensions;
1519     gchar **extensions_set; /* populated using extensions member during initialization */
1520     void* wslua_data; /* should be NULL for C-code file readers */
1521 };
1522 WS_DLL_PUBLIC struct open_info *open_routines;
1523
1524 /*
1525  * Types of comments.
1526  */
1527 #define WTAP_COMMENT_PER_SECTION        0x00000001      /* per-file/per-file-section */
1528 #define WTAP_COMMENT_PER_INTERFACE      0x00000002      /* per-interface */
1529 #define WTAP_COMMENT_PER_PACKET         0x00000004      /* per-packet */
1530
1531 struct file_type_subtype_info {
1532     /* the file type name */
1533     /* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
1534     const char *name;
1535
1536     /* the file type short name, used as a shortcut for the command line tools */
1537     /* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
1538     const char *short_name;
1539
1540     /* the default file extension, used to save this type */
1541     /* should be NULL if no default extension is known */
1542     const char *default_file_extension;
1543
1544     /* a semicolon-separated list of additional file extensions */
1545     /* used for this type */
1546     /* should be NULL if no extensions, or no extensions other */
1547     /* than the default extension, are known */
1548     const char *additional_file_extensions;
1549
1550     /* when writing this file format, is seeking required? */
1551     gboolean writing_must_seek;
1552
1553     /* does this type support name resolution records? */
1554     /* should be FALSE is this file type doesn't support name resolution records */
1555     gboolean has_name_resolution;
1556
1557     /* what types of comment does this file support? */
1558     guint32 supported_comment_types;
1559
1560     /* can this type write this encapsulation format? */
1561     /* should be NULL is this file type doesn't have write support */
1562     int (*can_write_encap)(int);
1563
1564     /* the function to open the capture file for writing */
1565     /* should be NULL is this file type don't have write support */
1566     int (*dump_open)(wtap_dumper *, int *);
1567
1568     /* if can_write_encap returned WTAP_ERR_CHECK_WSLUA, then this is used instead */
1569     /* this should be NULL for everyone except Lua-based file writers */
1570     wtap_wslua_file_info_t *wslua_info;
1571 };
1572
1573 #define WTAP_TYPE_AUTO 0
1574
1575 /** On failure, "wtap_open_offline()" returns NULL, and puts into the
1576  * "int" pointed to by its second argument:
1577  *
1578  * @param filename Name of the file to open
1579  * @param type WTAP_TYPE_AUTO for automatic recognize file format or explicit choose format type
1580  * @param err a positive "errno" value if the capture file can't be opened;
1581  * a negative number, indicating the type of error, on other failures.
1582  * @param err_info for some errors, a string giving more details of
1583  * the error
1584  * @param do_random TRUE if random access to the file will be done,
1585  * FALSE if not
1586  */
1587 WS_DLL_PUBLIC
1588 struct wtap* wtap_open_offline(const char *filename, unsigned int type, int *err,
1589     gchar **err_info, gboolean do_random);
1590
1591 /**
1592  * If we were compiled with zlib and we're at EOF, unset EOF so that
1593  * wtap_read/gzread has a chance to succeed. This is necessary if
1594  * we're tailing a file.
1595  */
1596 WS_DLL_PUBLIC
1597 void wtap_cleareof(wtap *wth);
1598
1599 /**
1600  * Set callback functions to add new hostnames. Currently pcapng-only.
1601  * MUST match add_ipv4_name and add_ipv6_name in addr_resolv.c.
1602  */
1603 typedef void (*wtap_new_ipv4_callback_t) (const guint addr, const gchar *name);
1604 WS_DLL_PUBLIC
1605 void wtap_set_cb_new_ipv4(wtap *wth, wtap_new_ipv4_callback_t add_new_ipv4);
1606
1607 typedef void (*wtap_new_ipv6_callback_t) (const void *addrp, const gchar *name);
1608 WS_DLL_PUBLIC
1609 void wtap_set_cb_new_ipv6(wtap *wth, wtap_new_ipv6_callback_t add_new_ipv6);
1610
1611 /** Returns TRUE if read was successful. FALSE if failure. data_offset is
1612  * set to the offset in the file where the data for the read packet is
1613  * located. */
1614 WS_DLL_PUBLIC
1615 gboolean wtap_read(wtap *wth, int *err, gchar **err_info,
1616     gint64 *data_offset);
1617
1618 WS_DLL_PUBLIC
1619 gboolean wtap_seek_read (wtap *wth, gint64 seek_off,
1620         struct wtap_pkthdr *phdr, Buffer *buf, int *err, gchar **err_info);
1621
1622 /*** get various information snippets about the current packet ***/
1623 WS_DLL_PUBLIC
1624 struct wtap_pkthdr *wtap_phdr(wtap *wth);
1625 WS_DLL_PUBLIC
1626 guint8 *wtap_buf_ptr(wtap *wth);
1627
1628 /*** initialize a wtap_pkthdr structure ***/
1629 WS_DLL_PUBLIC
1630 void wtap_phdr_init(struct wtap_pkthdr *phdr);
1631
1632 /*** clean up a wtap_pkthdr structure, freeing what wtap_phdr_init() allocated */
1633 WS_DLL_PUBLIC
1634 void wtap_phdr_cleanup(struct wtap_pkthdr *phdr);
1635
1636 /*** get various information snippets about the current file ***/
1637
1638 /** Return an approximation of the amount of data we've read sequentially
1639  * from the file so far. */
1640 WS_DLL_PUBLIC
1641 gint64 wtap_read_so_far(wtap *wth);
1642 WS_DLL_PUBLIC
1643 gint64 wtap_file_size(wtap *wth, int *err);
1644 WS_DLL_PUBLIC
1645 gboolean wtap_iscompressed(wtap *wth);
1646 WS_DLL_PUBLIC
1647 guint wtap_snapshot_length(wtap *wth); /* per file */
1648 WS_DLL_PUBLIC
1649 int wtap_file_type_subtype(wtap *wth);
1650 WS_DLL_PUBLIC
1651 int wtap_file_encap(wtap *wth);
1652 WS_DLL_PUBLIC
1653 int wtap_file_tsprec(wtap *wth);
1654 WS_DLL_PUBLIC
1655 wtapng_section_t* wtap_file_get_shb_info(wtap *wth);
1656 WS_DLL_PUBLIC
1657 wtapng_iface_descriptions_t *wtap_file_get_idb_info(wtap *wth);
1658 WS_DLL_PUBLIC
1659 void wtap_write_shb_comment(wtap *wth, gchar *comment);
1660
1661 /*** close the file descriptors for the current file ***/
1662 WS_DLL_PUBLIC
1663 void wtap_fdclose(wtap *wth);
1664
1665 /*** reopen the random file descriptor for the current file ***/
1666 WS_DLL_PUBLIC
1667 gboolean wtap_fdreopen(wtap *wth, const char *filename, int *err);
1668
1669 /*** close the current file ***/
1670 WS_DLL_PUBLIC
1671 void wtap_sequential_close(wtap *wth);
1672 WS_DLL_PUBLIC
1673 void wtap_close(wtap *wth);
1674
1675 /*** dump packets into a capture file ***/
1676 WS_DLL_PUBLIC
1677 gboolean wtap_dump_can_open(int filetype);
1678
1679 /**
1680  * Given a GArray of WTAP_ENCAP_ types, return the per-file encapsulation
1681  * type that would be needed to write out a file with those types.
1682  */
1683 WS_DLL_PUBLIC
1684 int wtap_dump_file_encap_type(const GArray *file_encaps);
1685
1686 /**
1687  * Return TRUE if we can write this capture file format out in
1688  * compressed form, FALSE if not.
1689  */
1690 WS_DLL_PUBLIC
1691 gboolean wtap_dump_can_compress(int filetype);
1692
1693 /**
1694  * Return TRUE if this capture file format supports storing name
1695  * resolution information in it, FALSE if not.
1696  */
1697 WS_DLL_PUBLIC
1698 gboolean wtap_dump_has_name_resolution(int filetype);
1699
1700 /**
1701  * Return TRUE if this capture file format supports all the comment
1702  * types specified, FALSE if not.
1703  */
1704 WS_DLL_PUBLIC
1705 gboolean wtap_dump_supports_comment_types(int filetype, guint32 comment_types);
1706
1707 WS_DLL_PUBLIC
1708 wtap_dumper* wtap_dump_open(const char *filename, int filetype, int encap,
1709     int snaplen, gboolean compressed, int *err);
1710
1711 WS_DLL_PUBLIC
1712 wtap_dumper* wtap_dump_open_ng(const char *filename, int filetype, int encap,
1713     int snaplen, gboolean compressed, wtapng_section_t *shb_hdr, wtapng_iface_descriptions_t *idb_inf, int *err);
1714
1715 WS_DLL_PUBLIC
1716 wtap_dumper* wtap_dump_fdopen(int fd, int filetype, int encap, int snaplen,
1717     gboolean compressed, int *err);
1718
1719 WS_DLL_PUBLIC
1720 wtap_dumper* wtap_dump_fdopen_ng(int fd, int filetype, int encap, int snaplen,
1721                 gboolean compressed, wtapng_section_t *shb_hdr, wtapng_iface_descriptions_t *idb_inf, int *err);
1722
1723
1724 WS_DLL_PUBLIC
1725 gboolean wtap_dump(wtap_dumper *, const struct wtap_pkthdr *, const guint8 *,
1726      int *err, gchar **err_info);
1727 WS_DLL_PUBLIC
1728 void wtap_dump_flush(wtap_dumper *);
1729 WS_DLL_PUBLIC
1730 gint64 wtap_get_bytes_dumped(wtap_dumper *);
1731 WS_DLL_PUBLIC
1732 void wtap_set_bytes_dumped(wtap_dumper *wdh, gint64 bytes_dumped);
1733 struct addrinfo;
1734 WS_DLL_PUBLIC
1735 gboolean wtap_dump_set_addrinfo_list(wtap_dumper *wdh, addrinfo_lists_t *addrinfo_lists);
1736 WS_DLL_PUBLIC
1737 gboolean wtap_dump_close(wtap_dumper *, int *);
1738
1739 /**
1740  * Return TRUE if we can write a file out with the given GArray of file
1741  * encapsulations and the given bitmask of comment types.
1742  */
1743 WS_DLL_PUBLIC
1744 gboolean wtap_dump_can_write(const GArray *file_encaps, guint32 required_comment_types);
1745
1746 /**
1747  * Get a GArray of WTAP_FILE_TYPE_SUBTYPE_ values for file types/subtypes
1748  * that can be used to save a file of a given type with a given GArray of
1749  * WTAP_ENCAP_ types and the given bitmask of comment types.
1750  */
1751 WS_DLL_PUBLIC
1752 GArray *wtap_get_savable_file_types_subtypes(int file_type,
1753     const GArray *file_encaps, guint32 required_comment_types);
1754
1755 /*** various string converter functions ***/
1756 WS_DLL_PUBLIC
1757 const char *wtap_file_type_subtype_string(int file_type_subtype);
1758 WS_DLL_PUBLIC
1759 const char *wtap_file_type_subtype_short_string(int file_type_subtype);
1760 WS_DLL_PUBLIC
1761 int wtap_short_string_to_file_type_subtype(const char *short_name);
1762
1763 /*** various file extension functions ***/
1764 WS_DLL_PUBLIC
1765 GSList *wtap_get_all_file_extensions_list(void);
1766 WS_DLL_PUBLIC
1767 const char *wtap_default_file_extension(int filetype);
1768 WS_DLL_PUBLIC
1769 GSList *wtap_get_file_extensions_list(int filetype, gboolean include_compressed);
1770 WS_DLL_PUBLIC
1771 void wtap_free_extensions_list(GSList *extensions);
1772
1773 WS_DLL_PUBLIC
1774 const char *wtap_encap_string(int encap);
1775 WS_DLL_PUBLIC
1776 const char *wtap_encap_short_string(int encap);
1777 WS_DLL_PUBLIC
1778 int wtap_short_string_to_encap(const char *short_name);
1779
1780 WS_DLL_PUBLIC
1781 const char *wtap_strerror(int err);
1782
1783 /*** get available number of file types and encapsulations ***/
1784 WS_DLL_PUBLIC
1785 int wtap_get_num_file_type_extensions(void);
1786 WS_DLL_PUBLIC
1787 int wtap_get_num_encap_types(void);
1788 WS_DLL_PUBLIC
1789 int wtap_get_num_file_types_subtypes(void);
1790
1791 /*** get information for file type extension ***/
1792 WS_DLL_PUBLIC
1793 const char *wtap_get_file_extension_type_name(int extension_type);
1794 WS_DLL_PUBLIC
1795 GSList *wtap_get_file_extension_type_extensions(guint extension_type);
1796
1797 /*** dynamically register new file types and encapsulations ***/
1798 WS_DLL_PUBLIC
1799 void wtap_register_plugin_types(void);
1800 WS_DLL_PUBLIC
1801 void register_all_wiretap_modules(void);
1802 WS_DLL_PUBLIC
1803 void wtap_register_file_type_extension(const struct file_extension_info *ei);
1804
1805 WS_DLL_PUBLIC
1806 void wtap_register_open_info(struct open_info *oi, const gboolean first_routine);
1807 WS_DLL_PUBLIC
1808 gboolean wtap_has_open_info(const gchar *name);
1809 WS_DLL_PUBLIC
1810 void wtap_deregister_open_info(const gchar *name);
1811
1812 WS_DLL_PUBLIC
1813 unsigned int open_info_name_to_type(const char *name);
1814 WS_DLL_PUBLIC
1815 int wtap_register_file_type_subtypes(const struct file_type_subtype_info* fi, const int subtype);
1816 WS_DLL_PUBLIC
1817 void wtap_deregister_file_type_subtype(const int file_type_subtype);
1818
1819 WS_DLL_PUBLIC
1820 int wtap_register_encap_type(const char* name, const char* short_name);
1821
1822
1823 /**
1824  * Wiretap error codes.
1825  */
1826 #define WTAP_ERR_NOT_REGULAR_FILE              -1
1827     /** The file being opened for reading isn't a plain file (or pipe) */
1828
1829 #define WTAP_ERR_RANDOM_OPEN_PIPE              -2
1830     /** The file is being opened for random access and it's a pipe */
1831
1832 #define WTAP_ERR_FILE_UNKNOWN_FORMAT           -3
1833     /** The file being opened is not a capture file in a known format */
1834
1835 #define WTAP_ERR_UNSUPPORTED                   -4
1836     /** Supported file type, but there's something in the file we
1837        can't support */
1838
1839 #define WTAP_ERR_CANT_WRITE_TO_PIPE            -5
1840     /** Wiretap can't save to a pipe in the specified format */
1841
1842 #define WTAP_ERR_CANT_OPEN                     -6
1843     /** The file couldn't be opened, reason unknown */
1844
1845 #define WTAP_ERR_UNWRITABLE_FILE_TYPE          -7
1846     /** Wiretap can't save files in the specified format */
1847
1848 #define WTAP_ERR_UNWRITABLE_ENCAP              -8
1849     /** Wiretap can't read or save files in the specified format with the
1850        specified encapsulation */
1851
1852 #define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED  -9
1853     /** The specified format doesn't support per-packet encapsulations */
1854
1855 #define WTAP_ERR_CANT_WRITE                   -10
1856     /** An attempt to read failed, reason unknown */
1857
1858 #define WTAP_ERR_CANT_CLOSE                   -11
1859     /** The file couldn't be closed, reason unknown */
1860
1861 #define WTAP_ERR_SHORT_READ                   -12
1862     /** An attempt to read read less data than it should have */
1863
1864 #define WTAP_ERR_BAD_FILE                     -13
1865     /** The file appears to be damaged or corrupted or otherwise bogus */
1866
1867 #define WTAP_ERR_SHORT_WRITE                  -14
1868     /** An attempt to write wrote less data than it should have */
1869
1870 #define WTAP_ERR_UNC_OVERFLOW                 -15
1871     /** Uncompressing Sniffer data would overflow buffer */
1872
1873 #define WTAP_ERR_RANDOM_OPEN_STDIN            -16
1874     /** We're trying to open the standard input for random access */
1875
1876 #define WTAP_ERR_COMPRESSION_NOT_SUPPORTED    -17
1877     /* The filetype doesn't support output compression */
1878
1879 #define WTAP_ERR_CANT_SEEK                    -18
1880     /** An attempt to seek failed, reason unknown */
1881
1882 #define WTAP_ERR_CANT_SEEK_COMPRESSED         -19
1883     /** An attempt to seek on a compressed stream */
1884
1885 #define WTAP_ERR_DECOMPRESS                   -20
1886     /** Error decompressing */
1887
1888 #define WTAP_ERR_INTERNAL                     -21
1889     /** "Shouldn't happen" internal errors */
1890
1891 #define WTAP_ERR_PACKET_TOO_LARGE             -22
1892     /** Packet being written is larger than we support; do not use when
1893         reading, use WTAP_ERR_BAD_FILE instead */
1894
1895 #define WTAP_ERR_CHECK_WSLUA                  -23
1896     /** Not really an error: the file type being checked is from a Lua
1897         plugin, so that the code will call wslua_can_write_encap() instead if it gets this */
1898
1899 #define WTAP_ERR_UNWRITABLE_REC_TYPE          -24
1900     /** Specified record type can't be written to that file type */
1901
1902 #define WTAP_ERR_UNWRITABLE_REC_DATA          -25
1903     /** Something in the record data can't be written to that file type */
1904
1905 #ifdef __cplusplus
1906 }
1907 #endif /* __cplusplus */
1908
1909 #endif /* __WTAP_H__ */
1910
1911 /*
1912  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
1913  *
1914  * Local variables:
1915  * c-basic-offset: 4
1916  * tab-width: 8
1917  * indent-tabs-mode: nil
1918  * End:
1919  *
1920  * vi: set shiftwidth=4 tabstop=8 expandtab:
1921  * :indentSize=4:tabSize=8:noTabs=true:
1922  */