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