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