1f0a23baac1ee6d49078b1f4191bf6f6c8536c2f
[obnox/wireshark/wip.git] / wiretap / wtap.h
1 /* wtap.h
2  *
3  * $Id$
4  *
5  * Wiretap Library
6  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21  */
22
23 #ifndef __WTAP_H__
24 #define __WTAP_H__
25
26 #ifdef HAVE_SYS_TIME_H
27 #include <sys/time.h>
28 #endif
29
30 #include <glib.h>
31 #include <time.h>
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif /* __cplusplus */
36
37 /* Encapsulation types. Choose names that truly reflect
38  * what is contained in the packet trace file.
39  *
40  * WTAP_ENCAP_PER_PACKET is a value passed to "wtap_dump_open()" or
41  * "wtap_dump_fd_open()" to indicate that there is no single encapsulation
42  * type for all packets in the file; this may cause those routines to
43  * fail if the capture file format being written can't support that.
44  * It's also returned by "wtap_file_encap()" for capture files that
45  * don't have a single encapsulation type for all packets in the file.
46  *
47  * WTAP_ENCAP_UNKNOWN is returned by "wtap_pcap_encap_to_wtap_encap()"
48  * if it's handed an unknown encapsulation.
49  *
50  * WTAP_ENCAP_FDDI_BITSWAPPED is for FDDI captures on systems where the
51  * MAC addresses you get from the hardware are bit-swapped.  Ideally,
52  * the driver would tell us that, but I know of none that do, so, for
53  * now, we base it on the machine on which we're *reading* the
54  * capture, rather than on the machine on which the capture was taken
55  * (they're probably likely to be the same).  We assume that they're
56  * bit-swapped on everything except for systems running Ultrix, Alpha
57  * systems, and BSD/OS systems (that's what "tcpdump" does; I guess
58  * Digital decided to bit-swap addresses in the hardware or in the
59  * driver, and I guess BSDI bit-swapped them in the driver, given that
60  * BSD/OS generally runs on Boring Old PC's).  If we create a wiretap
61  * save file format, we'd use the WTAP_ENCAP values to flag the
62  * encapsulation of a packet, so there we'd at least be able to base
63  * it on the machine on which the capture was taken.
64  *
65  * WTAP_ENCAP_LINUX_ATM_CLIP is the encapsulation you get with the
66  * ATM on Linux code from <http://linux-atm.sourceforge.net/>;
67  * that code adds a DLT_ATM_CLIP DLT_ code of 19, and that
68  * encapsulation isn't the same as the DLT_ATM_RFC1483 encapsulation
69  * presumably used on some BSD systems, which we turn into
70  * WTAP_ENCAP_ATM_RFC1483.
71  *
72  * WTAP_ENCAP_NULL corresponds to DLT_NULL from "libpcap".  This
73  * corresponds to
74  *
75  *      1) PPP-over-HDLC encapsulation, at least with some versions
76  *         of ISDN4BSD (but not the current ones, it appears, unless
77  *         I've missed something);
78  *
79  *      2) a 4-byte header containing the AF_ address family, in
80  *         the byte order of the machine that saved the capture,
81  *         for the packet, as used on many BSD systems for the
82  *         loopback device and some other devices, or a 4-byte header
83  *         containing the AF_ address family in network byte order,
84  *         as used on recent OpenBSD systems for the loopback device;
85  *
86  *      3) a 4-byte header containing 2 octets of 0 and an Ethernet
87  *         type in the byte order from an Ethernet header, that being
88  *         what older versions of "libpcap" on Linux turn the Ethernet
89  *         header for loopback interfaces into (0.6.0 and later versions
90  *         leave the Ethernet header alone and make it DLT_EN10MB). */
91 #define WTAP_ENCAP_PER_PACKET                   -1
92 #define WTAP_ENCAP_UNKNOWN                      0
93 #define WTAP_ENCAP_ETHERNET                     1
94 #define WTAP_ENCAP_TOKEN_RING                   2
95 #define WTAP_ENCAP_SLIP                         3
96 #define WTAP_ENCAP_PPP                          4
97 #define WTAP_ENCAP_FDDI                         5
98 #define WTAP_ENCAP_FDDI_BITSWAPPED              6
99 #define WTAP_ENCAP_RAW_IP                       7
100 #define WTAP_ENCAP_ARCNET                       8
101 #define WTAP_ENCAP_ARCNET_LINUX                 9
102 #define WTAP_ENCAP_ATM_RFC1483                  10
103 #define WTAP_ENCAP_LINUX_ATM_CLIP               11
104 #define WTAP_ENCAP_LAPB                         12
105 #define WTAP_ENCAP_ATM_PDUS                     13
106 #define WTAP_ENCAP_ATM_PDUS_UNTRUNCATED         14
107 #define WTAP_ENCAP_NULL                         15
108 #define WTAP_ENCAP_ASCEND                       16
109 #define WTAP_ENCAP_ISDN                         17
110 #define WTAP_ENCAP_IP_OVER_FC                   18
111 #define WTAP_ENCAP_PPP_WITH_PHDR                19
112 #define WTAP_ENCAP_IEEE_802_11                  20
113 #define WTAP_ENCAP_PRISM_HEADER                 21
114 #define WTAP_ENCAP_IEEE_802_11_WITH_RADIO       22
115 #define WTAP_ENCAP_IEEE_802_11_WLAN_RADIOTAP    23
116 #define WTAP_ENCAP_IEEE_802_11_WLAN_AVS         24
117 #define WTAP_ENCAP_SLL                          25
118 #define WTAP_ENCAP_FRELAY                       26
119 #define WTAP_ENCAP_FRELAY_WITH_PHDR             27
120 #define WTAP_ENCAP_CHDLC                        28
121 #define WTAP_ENCAP_CISCO_IOS                    29
122 #define WTAP_ENCAP_LOCALTALK                    30
123 #define WTAP_ENCAP_OLD_PFLOG                    31
124 #define WTAP_ENCAP_HHDLC                        32
125 #define WTAP_ENCAP_DOCSIS                       33
126 #define WTAP_ENCAP_COSINE                       34
127 #define WTAP_ENCAP_WFLEET_HDLC                  35
128 #define WTAP_ENCAP_SDLC                         36
129 #define WTAP_ENCAP_TZSP                         37
130 #define WTAP_ENCAP_ENC                          38
131 #define WTAP_ENCAP_PFLOG                        39
132 #define WTAP_ENCAP_CHDLC_WITH_PHDR              40
133 #define WTAP_ENCAP_BLUETOOTH_H4                 41
134 #define WTAP_ENCAP_MTP2                         42
135 #define WTAP_ENCAP_MTP3                         43
136 #define WTAP_ENCAP_IRDA                         44
137 #define WTAP_ENCAP_USER0                        45
138 #define WTAP_ENCAP_USER1                        46
139 #define WTAP_ENCAP_USER2                        47
140 #define WTAP_ENCAP_USER3                        48
141 #define WTAP_ENCAP_USER4                        49
142 #define WTAP_ENCAP_USER5                        50
143 #define WTAP_ENCAP_USER6                        51
144 #define WTAP_ENCAP_USER7                        52
145 #define WTAP_ENCAP_USER8                        53
146 #define WTAP_ENCAP_USER9                        54
147 #define WTAP_ENCAP_USER10                       55
148 #define WTAP_ENCAP_USER11                       56
149 #define WTAP_ENCAP_USER12                       57
150 #define WTAP_ENCAP_USER13                       58
151 #define WTAP_ENCAP_USER14                       59
152 #define WTAP_ENCAP_USER15                       60
153 #define WTAP_ENCAP_SYMANTEC                     61
154 #define WTAP_ENCAP_APPLE_IP_OVER_IEEE1394       62
155 #define WTAP_ENCAP_BACNET_MS_TP                 63
156 #define WTAP_ENCAP_NETTL_RAW_ICMP               64
157 #define WTAP_ENCAP_NETTL_RAW_ICMPV6             65
158 #define WTAP_ENCAP_GPRS_LLC                     66
159 #define WTAP_ENCAP_JUNIPER_ATM1                 67
160 #define WTAP_ENCAP_JUNIPER_ATM2                 68
161 #define WTAP_ENCAP_REDBACK                      69
162 #define WTAP_ENCAP_NETTL_RAW_IP                 70
163 #define WTAP_ENCAP_NETTL_ETHERNET               71
164 #define WTAP_ENCAP_NETTL_TOKEN_RING             72
165 #define WTAP_ENCAP_NETTL_FDDI                   73
166 #define WTAP_ENCAP_NETTL_UNKNOWN                74
167 #define WTAP_ENCAP_MTP2_WITH_PHDR               75
168 #define WTAP_ENCAP_JUNIPER_PPPOE                76
169 #define WTAP_ENCAP_GCOM_TIE1                    77
170 #define WTAP_ENCAP_GCOM_SERIAL                  78
171 #define WTAP_ENCAP_NETTL_X25                    79
172 #define WTAP_ENCAP_K12                          80
173 #define WTAP_ENCAP_JUNIPER_MLPPP                81
174 #define WTAP_ENCAP_JUNIPER_MLFR                 82
175 #define WTAP_ENCAP_JUNIPER_ETHER                83
176 #define WTAP_ENCAP_JUNIPER_PPP                  84
177 #define WTAP_ENCAP_JUNIPER_FRELAY               85
178 #define WTAP_ENCAP_JUNIPER_CHDLC                86
179 #define WTAP_ENCAP_JUNIPER_GGSN                 87
180 #define WTAP_ENCAP_LINUX_LAPD                   88
181 #define WTAP_ENCAP_CATAPULT_DCT2000             89
182 #define WTAP_ENCAP_BER                          90
183 #define WTAP_ENCAP_JUNIPER_VP                   91
184 #define WTAP_ENCAP_USB                          92
185 #define WTAP_ENCAP_IEEE802_16_MAC_CPS           93
186 #define WTAP_ENCAP_NETTL_RAW_TELNET             94
187 #define WTAP_ENCAP_USB_LINUX                    95
188 #define WTAP_ENCAP_MPEG                         96
189 #define WTAP_ENCAP_PPI                          97
190 #define WTAP_ENCAP_ERF                          98
191 #define WTAP_ENCAP_BLUETOOTH_H4_WITH_PHDR       99
192 #define WTAP_ENCAP_SITA                         100
193 #define WTAP_ENCAP_SCCP                         101
194 #define WTAP_ENCAP_BLUETOOTH_HCI                102 /*raw packets without a transport layer header e.g. H4*/
195 #define WTAP_ENCAP_IPMB                         103
196 #define WTAP_ENCAP_IEEE802_15_4                 104
197 #define WTAP_ENCAP_X2E_XORAYA                   105
198 #define WTAP_ENCAP_FLEXRAY                      106
199 #define WTAP_ENCAP_LIN                          107
200 #define WTAP_ENCAP_MOST                         108
201 #define WTAP_ENCAP_CAN20B                       109
202 #define WTAP_ENCAP_LAYER1_EVENT                 110
203 #define WTAP_ENCAP_X2E_SERIAL                   111
204 #define WTAP_ENCAP_I2C                          112
205 #define WTAP_ENCAP_IEEE802_15_4_NONASK_PHY      113
206 #define WTAP_ENCAP_TNEF                         114
207 #define WTAP_ENCAP_USB_LINUX_MMAPPED            115
208 #define WTAP_ENCAP_GSM_UM                       116
209 #define WTAP_ENCAP_DPNSS                        117
210 #define WTAP_ENCAP_PACKETLOGGER                 118
211 #define WTAP_ENCAP_NSTRACE_1_0                  119
212 #define WTAP_ENCAP_NSTRACE_2_0                  120
213 #define WTAP_ENCAP_FIBRE_CHANNEL_FC2            121
214 #define WTAP_ENCAP_FIBRE_CHANNEL_FC2_WITH_FRAME_DELIMS 122
215 #define WTAP_ENCAP_JPEG_JFIF                    123     /* obsoleted by WTAP_ENCAP_MIME*/
216 #define WTAP_ENCAP_IPNET                        124
217 #define WTAP_ENCAP_SOCKETCAN                    125
218 #define WTAP_ENCAP_IEEE802_11_NETMON_RADIO      126
219 #define WTAP_ENCAP_IEEE802_15_4_NOFCS           127
220 #define WTAP_ENCAP_RAW_IPFIX                    128
221 #define WTAP_ENCAP_RAW_IP4                      129
222 #define WTAP_ENCAP_RAW_IP6                      130
223 #define WTAP_ENCAP_LAPD                         131
224 #define WTAP_ENCAP_DVBCI                        132
225 #define WTAP_ENCAP_MUX27010                     133
226 #define WTAP_ENCAP_MIME                         134
227 #define WTAP_ENCAP_NETANALYZER                  135
228 #define WTAP_ENCAP_NETANALYZER_TRANSPARENT      136
229 #define WTAP_ENCAP_IP_OVER_IB                   137
230 #define WTAP_ENCAP_MPEG_2_TS                    138
231
232 #define WTAP_NUM_ENCAP_TYPES                    wtap_get_num_encap_types()
233
234 /* File types that can be read by wiretap.
235    We support writing some many of these file types, too, so we
236    distinguish between different versions of them. */
237 #define WTAP_FILE_UNKNOWN                       0
238 #define WTAP_FILE_PCAP                          1
239 #define WTAP_FILE_PCAPNG                        2
240 #define WTAP_FILE_PCAP_NSEC                     3
241 #define WTAP_FILE_PCAP_AIX                      4
242 #define WTAP_FILE_PCAP_SS991029                 5
243 #define WTAP_FILE_PCAP_NOKIA                    6
244 #define WTAP_FILE_PCAP_SS990417                 7
245 #define WTAP_FILE_PCAP_SS990915                 8
246 #define WTAP_FILE_5VIEWS                        9
247 #define WTAP_FILE_IPTRACE_1_0                   10
248 #define WTAP_FILE_IPTRACE_2_0                   11
249 #define WTAP_FILE_BER                           12
250 #define WTAP_FILE_HCIDUMP                       13
251 #define WTAP_FILE_CATAPULT_DCT2000              14
252 #define WTAP_FILE_NETXRAY_OLD                   15
253 #define WTAP_FILE_NETXRAY_1_0                   16
254 #define WTAP_FILE_COSINE                        17
255 #define WTAP_FILE_CSIDS                         18
256 #define WTAP_FILE_DBS_ETHERWATCH                19
257 #define WTAP_FILE_ERF                           20
258 #define WTAP_FILE_EYESDN                        21
259 #define WTAP_FILE_NETTL                         22
260 #define WTAP_FILE_ISERIES                       23
261 #define WTAP_FILE_ISERIES_UNICODE               24
262 #define WTAP_FILE_I4BTRACE                      25
263 #define WTAP_FILE_ASCEND                        26
264 #define WTAP_FILE_NETMON_1_x                    27
265 #define WTAP_FILE_NETMON_2_x                    28
266 #define WTAP_FILE_NGSNIFFER_UNCOMPRESSED        29
267 #define WTAP_FILE_NGSNIFFER_COMPRESSED          30
268 #define WTAP_FILE_NETXRAY_1_1                   31
269 #define WTAP_FILE_NETXRAY_2_00x                 32
270 #define WTAP_FILE_NETWORK_INSTRUMENTS           33
271 #define WTAP_FILE_LANALYZER                     34
272 #define WTAP_FILE_PPPDUMP                       35
273 #define WTAP_FILE_RADCOM                        36
274 #define WTAP_FILE_SNOOP                         37
275 #define WTAP_FILE_SHOMITI                       38
276 #define WTAP_FILE_VMS                           39
277 #define WTAP_FILE_K12                           40
278 #define WTAP_FILE_TOSHIBA                       41
279 #define WTAP_FILE_VISUAL_NETWORKS               42
280 #define WTAP_FILE_ETHERPEEK_V56                 43
281 #define WTAP_FILE_ETHERPEEK_V7                  44
282 #define WTAP_FILE_AIROPEEK_V9                   45
283 #define WTAP_FILE_MPEG                          46
284 #define WTAP_FILE_K12TEXT                       47
285 #define WTAP_FILE_NETSCREEN                     48
286 #define WTAP_FILE_COMMVIEW                      49
287 #define WTAP_FILE_BTSNOOP                       50
288 #define WTAP_FILE_TNEF                          51
289 #define WTAP_FILE_DCT3TRACE                     52
290 #define WTAP_FILE_PACKETLOGGER                  53
291 #define WTAP_FILE_DAINTREE_SNA                  54
292 #define WTAP_FILE_NETSCALER_1_0                 55
293 #define WTAP_FILE_NETSCALER_2_0                 56
294 #define WTAP_FILE_JPEG_JFIF                     57 /* obsoleted by WTAP_FILE_MIME */
295 #define WTAP_FILE_IPFIX                         58
296 #define WTAP_FILE_MIME                          59
297 #define WTAP_FILE_AETHRA                        60
298
299 #define WTAP_NUM_FILE_TYPES                     wtap_get_num_file_types()
300
301 /* timestamp precision (currently only these values are supported) */
302 #define WTAP_FILE_TSPREC_SEC            0
303 #define WTAP_FILE_TSPREC_DSEC           1
304 #define WTAP_FILE_TSPREC_CSEC           2
305 #define WTAP_FILE_TSPREC_MSEC           3
306 #define WTAP_FILE_TSPREC_USEC           6
307 #define WTAP_FILE_TSPREC_NSEC           9
308
309 /*
310  * Maximum packet size we'll support.
311  * 65535 is the largest snapshot length that libpcap supports, so we
312  * use that.
313  */
314 #define WTAP_MAX_PACKET_SIZE                    65535
315
316 /*
317  * "Pseudo-headers" are used to supply to the clients of wiretap
318  * per-packet information that's not part of the packet payload
319  * proper.
320  *
321  * NOTE: do not use pseudo-header structures to hold information
322  * used by the code to read a particular capture file type; to
323  * keep that sort of state information, add a new structure for
324  * that private information to "wtap-int.h", add a pointer to that
325  * type of structure to the "capture" member of the "struct wtap"
326  * structure, and allocate one of those structures and set that member
327  * in the "open" routine for that capture file type if the open
328  * succeeds.  See various other capture file type handlers for examples
329  * of that.
330  */
331
332
333 struct nstr_phdr {
334         gint64 rec_offset;
335         gint32 rec_len;
336         guint8 nicno_offset;
337         guint8 nicno_len;
338         guint8 dir_offset;
339         guint8 dir_len;
340         guint8 eth_offset;
341         guint8 pcb_offset;
342         guint8 l_pcb_offset;
343         guint8 rec_type;
344         guint8 vlantag_offset;
345         guint8 coreid_offset;
346 };
347
348 /* Packet "pseudo-header" information for Ethernet capture files. */
349 struct eth_phdr {
350         gint    fcs_len;        /* Number of bytes of FCS - -1 means "unknown" */
351 };
352
353 /* Packet "pseudo-header" information for X.25 capture files. */
354 #define FROM_DCE                        0x80
355 struct x25_phdr {
356         guint8  flags; /* ENCAP_LAPB, ENCAP_V120 : 1st bit means From DCE */
357 };
358
359 /* Packet "pseudo-header" information for ISDN capture files. */
360
361 /* Direction */
362 struct isdn_phdr {
363         gboolean uton;
364         guint8  channel;                /* 0 = D-channel; n = B-channel n */
365 };
366
367 /* Packet "pseudo-header" for ATM capture files.
368    Not all of this information is supplied by all capture types. */
369
370 /*
371  * Status bits.
372  */
373 #define ATM_RAW_CELL    0x01    /* TRUE if the packet is a single cell */
374 #define ATM_NO_HEC      0x02    /* TRUE if the cell has HEC stripped out */
375 #define ATM_AAL2_NOPHDR 0x04    /* TRUE if the AAL2 PDU has no pseudo-header */
376
377 /*
378  * AAL types.
379  */
380 #define AAL_UNKNOWN     0       /* AAL unknown */
381 #define AAL_1           1       /* AAL1 */
382 #define AAL_2           2       /* AAL2 */
383 #define AAL_3_4         3       /* AAL3/4 */
384 #define AAL_5           4       /* AAL5 */
385 #define AAL_USER        5       /* User AAL */
386 #define AAL_SIGNALLING  6       /* Signaling AAL */
387 #define AAL_OAMCELL     7       /* OAM cell */
388
389 /*
390  * Traffic types.
391  */
392 #define TRAF_UNKNOWN    0       /* Unknown */
393 #define TRAF_LLCMX      1       /* LLC multiplexed (RFC 1483) */
394 #define TRAF_VCMX       2       /* VC multiplexed (RFC 1483) */
395 #define TRAF_LANE       3       /* LAN Emulation */
396 #define TRAF_ILMI       4       /* ILMI */
397 #define TRAF_FR         5       /* Frame Relay */
398 #define TRAF_SPANS      6       /* FORE SPANS */
399 #define TRAF_IPSILON    7       /* Ipsilon */
400 #define TRAF_UMTS_FP    8       /* UMTS Frame Protocol */
401 #define TRAF_GPRS_NS    9 /* GPRS Network Services */
402 #define TRAF_SSCOP              10      /* SSCOP */
403
404 /*
405  * Traffic subtypes.
406  */
407 #define TRAF_ST_UNKNOWN         0       /* Unknown */
408
409 /*
410  * For TRAF_VCMX:
411  */
412 #define TRAF_ST_VCMX_802_3_FCS  1       /* 802.3 with an FCS */
413 #define TRAF_ST_VCMX_802_4_FCS  2       /* 802.4 with an FCS */
414 #define TRAF_ST_VCMX_802_5_FCS  3       /* 802.5 with an FCS */
415 #define TRAF_ST_VCMX_FDDI_FCS   4       /* FDDI with an FCS */
416 #define TRAF_ST_VCMX_802_6_FCS  5       /* 802.6 with an FCS */
417 #define TRAF_ST_VCMX_802_3      7       /* 802.3 without an FCS */
418 #define TRAF_ST_VCMX_802_4      8       /* 802.4 without an FCS */
419 #define TRAF_ST_VCMX_802_5      9       /* 802.5 without an FCS */
420 #define TRAF_ST_VCMX_FDDI       10      /* FDDI without an FCS */
421 #define TRAF_ST_VCMX_802_6      11      /* 802.6 without an FCS */
422 #define TRAF_ST_VCMX_FRAGMENTS  12      /* Fragments */
423 #define TRAF_ST_VCMX_BPDU       13      /* BPDU */
424
425 /*
426  * For TRAF_LANE:
427  */
428 #define TRAF_ST_LANE_LE_CTRL    1       /* LANE: LE Ctrl */
429 #define TRAF_ST_LANE_802_3      2       /* LANE: 802.3 */
430 #define TRAF_ST_LANE_802_5      3       /* LANE: 802.5 */
431 #define TRAF_ST_LANE_802_3_MC   4       /* LANE: 802.3 multicast */
432 #define TRAF_ST_LANE_802_5_MC   5       /* LANE: 802.5 multicast */
433
434 /*
435  * For TRAF_IPSILON:
436  */
437 #define TRAF_ST_IPSILON_FT0     1       /* Ipsilon: Flow Type 0 */
438 #define TRAF_ST_IPSILON_FT1     2       /* Ipsilon: Flow Type 1 */
439 #define TRAF_ST_IPSILON_FT2     3       /* Ipsilon: Flow Type 2 */
440
441 struct atm_phdr {
442         guint32 flags;          /* status flags */
443         guint8  aal;            /* AAL of the traffic */
444         guint8  type;           /* traffic type */
445         guint8  subtype;        /* traffic subtype */
446         guint16 vpi;            /* virtual path identifier */
447         guint16 vci;            /* virtual circuit identifier */
448         guint8  aal2_cid;       /* channel id */
449         guint16 channel;        /* link: 0 for DTE->DCE, 1 for DCE->DTE */
450         guint16 cells;          /* number of cells */
451         guint16 aal5t_u2u;      /* user-to-user indicator */
452         guint16 aal5t_len;      /* length of the packet */
453         guint32 aal5t_chksum;   /* checksum for AAL5 packet */
454 };
455
456 /* Packet "pseudo-header" for the output from "wandsession", "wannext",
457    "wandisplay", and similar commands on Lucent/Ascend access equipment. */
458
459 #define ASCEND_MAX_STR_LEN 64
460
461 #define ASCEND_PFX_WDS_X 1
462 #define ASCEND_PFX_WDS_R 2
463 #define ASCEND_PFX_WDD   3
464 #define ASCEND_PFX_ISDN_X 4
465 #define ASCEND_PFX_ISDN_R 5
466 #define ASCEND_PFX_ETHER 6
467
468 struct ascend_phdr {
469         guint16 type;                   /* ASCEND_PFX_*, as defined above */
470         char    user[ASCEND_MAX_STR_LEN];   /* Username, from wandsession header */
471         guint32 sess;                   /* Session number, from wandsession header */
472         char    call_num[ASCEND_MAX_STR_LEN];   /* Called number, from WDD header */
473         guint32 chunk;                  /* Chunk number, from WDD header */
474         guint32 task;                   /* Task number */
475 };
476
477 /* Also defined in epan/packet_info.h */
478 #define P2P_DIR_UNKNOWN -1
479 #define P2P_DIR_SENT    0
480 #define P2P_DIR_RECV    1
481
482 /* Packet "pseudo-header" for point-to-point links with direction flags. */
483 struct p2p_phdr {
484         int     sent; /* TRUE=sent, FALSE=received, -1=unknown*/
485 };
486
487 /*
488  * Packet "pseudo-header" information for 802.11.
489  * Radio information is only present for WTAP_ENCAP_IEEE_802_11_WITH_RADIO.
490  *
491  * Signal strength, etc. information:
492  *
493  * Raw signal strength can be measured in milliwatts.
494  * It can also be represented as dBm, which is 10 times the log base 10
495  * of the signal strength in mW.
496  *
497  * The Receive Signal Strength Indicator is an integer in the range 0 to 255.
498  * The actual RSSI value for a given signal strength is dependent on the
499  * vendor (and perhaps on the adapter).  The maximum possible RSSI value
500  * is also dependent on the vendor and perhaps the adapter.
501  *
502  * The signal strength can be represented as a percentage, which is 100
503  * times the ratio of the RSSI and the maximum RSSI.
504  */
505 struct ieee_802_11_phdr {
506         gint    fcs_len;        /* Number of bytes of FCS - -1 means "unknown" */
507         guint8  channel;        /* Channel number */
508         guint8  data_rate;      /* in .5 Mb/s units */
509         guint8  signal_level;   /* percentage */
510 };
511
512 /* Packet "pseudo-header" for the output from CoSine L2 debug output. */
513
514 #define COSINE_MAX_IF_NAME_LEN  128
515
516 #define COSINE_ENCAP_TEST       1
517 #define COSINE_ENCAP_PPoATM     2
518 #define COSINE_ENCAP_PPoFR      3
519 #define COSINE_ENCAP_ATM        4
520 #define COSINE_ENCAP_FR         5
521 #define COSINE_ENCAP_HDLC       6
522 #define COSINE_ENCAP_PPP        7
523 #define COSINE_ENCAP_ETH        8
524 #define COSINE_ENCAP_UNKNOWN    99
525
526 #define COSINE_DIR_TX 1
527 #define COSINE_DIR_RX 2
528
529 struct cosine_phdr {
530         guint8 encap;           /* COSINE_ENCAP_* as defined above */
531         guint8 direction;       /* COSINE_DIR_*, as defined above */
532         char if_name[COSINE_MAX_IF_NAME_LEN];  /* Encap & Logical I/F name */
533         guint16 pro;            /* Protocol */
534         guint16 off;            /* Offset */
535         guint16 pri;            /* Priority */
536         guint16 rm;             /* Rate Marking */
537         guint16 err;            /* Error Code */
538 };
539
540 /* Packet "pseudo-header" for IrDA capture files. */
541
542 /*
543  * Direction of the packet
544  */
545 #define IRDA_INCOMING       0x0000
546 #define IRDA_OUTGOING       0x0004
547
548 /*
549  * "Inline" log messages produced by IrCOMM2k on Windows
550  */
551 #define IRDA_LOG_MESSAGE    0x0100  /* log message */
552 #define IRDA_MISSED_MSG     0x0101  /* missed log entry or frame */
553
554 /*
555  * Differentiate between frames and log messages
556  */
557 #define IRDA_CLASS_FRAME    0x0000
558 #define IRDA_CLASS_LOG      0x0100
559 #define IRDA_CLASS_MASK     0xFF00
560
561 struct irda_phdr {
562         guint16 pkttype;    /* packet type */
563 };
564
565 /* Packet "pseudo-header" for nettl (HP-UX) capture files. */
566
567 struct nettl_phdr {
568         guint16 subsys;
569         guint32 devid;
570         guint32 kind;
571         gint32  pid;
572         guint16 uid;
573 };
574
575 /* Packet "pseudo-header" for MTP2 files. */
576
577 #define MTP2_ANNEX_A_NOT_USED      0
578 #define MTP2_ANNEX_A_USED          1
579 #define MTP2_ANNEX_A_USED_UNKNOWN  2
580
581 struct mtp2_phdr {
582         guint8  sent;
583         guint8  annex_a_used;
584         guint16 link_number;
585 };
586
587 /* Packet "pseudo-header" for K12 files. */
588
589 typedef union {
590         struct {
591                 guint16 vp;
592                 guint16 vc;
593                 guint16 cid;
594         } atm;
595
596         guint32 ds0mask;
597 } k12_input_info_t;
598
599 struct k12_phdr {
600         guint32 input;
601         const gchar* input_name;
602         const gchar* stack_file;
603         guint32 input_type;
604         k12_input_info_t input_info;
605         guint8* extra_info;
606         guint32 extra_length;
607         void* stuff;
608 };
609
610 #define K12_PORT_DS0S      0x00010008
611 #define K12_PORT_DS1       0x00100008
612 #define K12_PORT_ATMPVC    0x01020000
613
614 struct lapd_phdr {
615         guint16 pkttype;    /* packet type */
616         guint8 we_network;
617 };
618
619 struct wtap;
620 struct catapult_dct2000_phdr
621 {
622         union
623         {
624                 struct isdn_phdr  isdn;
625                 struct atm_phdr   atm;
626                 struct p2p_phdr   p2p;
627         } inner_pseudo_header;
628         gint64 seek_off;
629         struct wtap *wth;
630 };
631
632 #define LIBPCAP_BT_PHDR_SENT    0
633 #define LIBPCAP_BT_PHDR_RECV    1
634
635 /*
636  * Header prepended by libpcap to each bluetooth hci h:4 frame.
637  * Values in network byte order
638  */
639 struct libpcap_bt_phdr {
640     guint32 direction;     /* Bit 0 hold the frame direction. */
641 };
642
643 #define LIBPCAP_PPP_PHDR_RECV    0
644 #define LIBPCAP_PPP_PHDR_SENT    1
645
646 /*
647  * Header prepended by libpcap to each ppp frame.
648  */
649 struct libpcap_ppp_phdr {
650     guint8 direction;
651 };
652
653 /*
654  * Endace Record Format pseudo header
655  */
656 struct erf_phdr {
657   guint64 ts;             /* Time stamp */
658   guint8 type;
659   guint8 flags;
660   guint16 rlen;
661   guint16 lctr;
662   guint16 wlen;
663 };
664
665 struct erf_ehdr {
666   guint64 ehdr;
667 };
668
669 /*
670  * ERF pseudo header with optional subheader
671  * (Multichannel or Ethernet)
672  */
673
674 #define MAX_ERF_EHDR 8
675
676 struct erf_mc_phdr {
677   struct erf_phdr phdr;
678   struct erf_ehdr ehdr_list[MAX_ERF_EHDR];
679   union
680   {
681     guint16 eth_hdr;
682     guint32 mc_hdr;
683   } subhdr;
684 };
685
686 #define SITA_FRAME_DIR_TXED             (0x00)          /* values of sita_phdr.flags */
687 #define SITA_FRAME_DIR_RXED             (0x01)
688 #define SITA_FRAME_DIR                  (0x01)          /* mask */
689 #define SITA_ERROR_NO_BUFFER            (0x80)
690
691 #define SITA_SIG_DSR                    (0x01)          /* values of sita_phdr.signals */
692 #define SITA_SIG_DTR                    (0x02)
693 #define SITA_SIG_CTS                    (0x04)
694 #define SITA_SIG_RTS                    (0x08)
695 #define SITA_SIG_DCD                    (0x10)
696 #define SITA_SIG_UNDEF1                 (0x20)
697 #define SITA_SIG_UNDEF2                 (0x40)
698 #define SITA_SIG_UNDEF3                 (0x80)
699
700 #define SITA_ERROR_TX_UNDERRUN          (0x01)          /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_TXED) */
701 #define SITA_ERROR_TX_CTS_LOST          (0x02)
702 #define SITA_ERROR_TX_UART_ERROR        (0x04)
703 #define SITA_ERROR_TX_RETX_LIMIT        (0x08)
704 #define SITA_ERROR_TX_UNDEF1            (0x10)
705 #define SITA_ERROR_TX_UNDEF2            (0x20)
706 #define SITA_ERROR_TX_UNDEF3            (0x40)
707 #define SITA_ERROR_TX_UNDEF4            (0x80)
708
709 #define SITA_ERROR_RX_FRAMING           (0x01)          /* values of sita_phdr.errors1 (if SITA_FRAME_DIR_RXED) */
710 #define SITA_ERROR_RX_PARITY            (0x02)
711 #define SITA_ERROR_RX_COLLISION         (0x04)
712 #define SITA_ERROR_RX_FRAME_LONG        (0x08)
713 #define SITA_ERROR_RX_FRAME_SHORT       (0x10)
714 #define SITA_ERROR_RX_UNDEF1            (0x20)
715 #define SITA_ERROR_RX_UNDEF2            (0x40)
716 #define SITA_ERROR_RX_UNDEF3            (0x80)
717
718 #define SITA_ERROR_RX_NONOCTET_ALIGNED  (0x01)  /* values of sita_phdr.errors2 (if SITA_FRAME_DIR_RXED) */
719 #define SITA_ERROR_RX_ABORT             (0x02)
720 #define SITA_ERROR_RX_CD_LOST           (0x04)
721 #define SITA_ERROR_RX_DPLL              (0x08)
722 #define SITA_ERROR_RX_OVERRUN           (0x10)
723 #define SITA_ERROR_RX_FRAME_LEN_VIOL    (0x20)
724 #define SITA_ERROR_RX_CRC               (0x40)
725 #define SITA_ERROR_RX_BREAK             (0x80)
726
727 #define SITA_PROTO_UNUSED               (0x00)          /* values of sita_phdr.proto */
728 #define SITA_PROTO_BOP_LAPB             (0x01)
729 #define SITA_PROTO_ETHERNET             (0x02)
730 #define SITA_PROTO_ASYNC_INTIO          (0x03)
731 #define SITA_PROTO_ASYNC_BLKIO          (0x04)
732 #define SITA_PROTO_ALC                  (0x05)
733 #define SITA_PROTO_UTS                  (0x06)
734 #define SITA_PROTO_PPP_HDLC             (0x07)
735 #define SITA_PROTO_SDLC                 (0x08)
736 #define SITA_PROTO_TOKENRING            (0x09)
737 #define SITA_PROTO_I2C                  (0x10)
738 #define SITA_PROTO_DPM_LINK             (0x11)
739 #define SITA_PROTO_BOP_FRL              (0x12)
740
741 struct sita_phdr {
742    guint8  sita_flags;
743    guint8  sita_signals;
744    guint8  sita_errors1;
745    guint8  sita_errors2;
746    guint8  sita_proto;
747 };
748
749 /*pseudo header for Bluetooth HCI*/
750 struct bthci_phdr {
751         gboolean sent;
752         guint8 channel;
753 };
754
755 #define BTHCI_CHANNEL_COMMAND 1
756 #define BTHCI_CHANNEL_ACL     2
757 #define BTHCI_CHANNEL_SCO     3
758 #define BTHCI_CHANNEL_EVENT   4
759
760 /* pseudo header for WTAP_ENCAP_LAYER1_EVENT */
761 struct l1event_phdr {
762         gboolean uton;
763 };
764
765 /* * I2C pseudo header */
766 struct i2c_phdr {
767         guint8 is_event;
768         guint8 bus;
769         guint32 flags;
770 };
771
772 /* pseudo header for WTAP_ENCAP_GSM_UM */
773 struct gsm_um_phdr {
774         gboolean uplink;
775         guint8 channel;
776         /* The following are only populated for downlink */
777         guint8 bsic;
778         guint16 arfcn;
779         guint32 tdma_frame;
780         guint8 error;
781         guint16 timeshift;
782 };
783
784 #define GSM_UM_CHANNEL_UNKNOWN  0
785 #define GSM_UM_CHANNEL_BCCH     1
786 #define GSM_UM_CHANNEL_SDCCH    2
787 #define GSM_UM_CHANNEL_SACCH    3
788 #define GSM_UM_CHANNEL_FACCH    4
789 #define GSM_UM_CHANNEL_CCCH     5
790 #define GSM_UM_CHANNEL_RACH     6
791 #define GSM_UM_CHANNEL_AGCH     7
792 #define GSM_UM_CHANNEL_PCH      8
793
794 union wtap_pseudo_header {
795         struct eth_phdr         eth;
796         struct x25_phdr         x25;
797         struct isdn_phdr        isdn;
798         struct atm_phdr         atm;
799         struct ascend_phdr      ascend;
800         struct p2p_phdr         p2p;
801         struct ieee_802_11_phdr ieee_802_11;
802         struct cosine_phdr      cosine;
803         struct irda_phdr        irda;
804         struct nettl_phdr       nettl;
805         struct mtp2_phdr        mtp2;
806         struct k12_phdr         k12;
807         struct lapd_phdr        lapd;
808         struct catapult_dct2000_phdr dct2000;
809         struct erf_mc_phdr      erf;
810         struct sita_phdr        sita;
811         struct bthci_phdr       bthci;
812         struct l1event_phdr     l1event;
813         struct i2c_phdr         i2c;
814         struct gsm_um_phdr      gsm_um;
815         struct nstr_phdr        nstr;
816 };
817
818 struct wtap_nstime {
819         time_t  secs;
820         int     nsecs;
821 };
822
823 struct wtap_pkthdr {
824         guint32                 presence_flags; /* what stuff do we have? */
825         struct wtap_nstime      ts;
826         guint32                 caplen;         /* data length in the file */
827         guint32                 len;            /* data length on the wire */
828         int                     pkt_encap;
829         /* pcapng variables */
830         guint32                 interface_id;   /* identifier of the interface. */
831         /* options */
832         gchar                   *opt_comment;   /* NULL if not available */
833         guint64                 drop_count;     /* number of packets lost (by the interface and the operating system) between this packet and the preceding one. */
834         guint32                 pack_flags;     /* XXX - 0 for now (any value for "we don't have it"?) */
835 };
836
837 /*
838  * Bits in presence_flags, indicating which of the fields we have.
839  *
840  * For the time stamp, we may need some more flags to indicate
841  * whether the time stamp is an absolute date-and-time stamp, an
842  * absolute time-only stamp (which can make relative time
843  * calculations tricky, as you could in theory have two time
844  * stamps separated by an unknown number of days), or a time stamp
845  * relative to some unspecified time in the past (see mpeg.c).
846  *
847  * There is no presence flag for len - there has to be *some* length
848  * value for the packet.  (The "captured length" can be missing if
849  * the file format doesn't report a captured length distinct from
850  * the on-the-network length because the application(s) producing those
851  * files don't support slicing packets.)
852  *
853  * There could be a presence flag for the packet encapsulation - if it's
854  * absent, use the file encapsulation - but it's not clear that's useful;
855  * we currently do that in the module for the file format.
856  */
857 #define WTAP_HAS_TS             0x00000001      /* time stamp */
858 #define WTAP_HAS_CAP_LEN        0x00000002      /* captured length separate from on-the-network length */
859 #define WTAP_HAS_INTERFACE_ID   0x00000004      /* interface ID */
860 #define WTAP_HAS_COMMENTS       0x00000008      /* comments */
861 #define WTAP_HAS_DROP_COUNT     0x00000010      /* drop count */
862 #define WTAP_HAS_PACK_FLAGS     0x00000020      /* packet flags */
863
864 /**
865  * Holds the option strings from pcapng:s Section Header block(SHB).
866  */
867 typedef struct wtapng_section_s {
868         /* mandatory */
869         guint64                         section_length;
870         /* options */
871         gchar                           *opt_comment;   /* NULL if not available */
872         gchar                           *shb_hardware;  /* NULL if not available, UTF-8 string containing the description of the hardware used to create this section. */
873         gchar                           *shb_os;                /* NULL if not available, UTF-8 string containing the name of the operating system used to create this section. */
874         gchar                           *shb_user_appl; /* NULL if not available, UTF-8 string containing the name of the application used to create this section. */
875 } wtapng_section_t;
876
877
878 /** struct holding the information to build IDB:s
879  *  the interface_data array holds an array of wtapng_if_descr_t
880  *  one per interface.
881  */
882 typedef struct wtapng_iface_descriptions_s {
883         guint number_of_interfaces;
884         GArray *interface_data;
885 } wtapng_iface_descriptions_t;
886
887 /* Interface Description 
888  *
889  * Options:
890  * if_name        2  A UTF-8 string containing the name of the device used to capture data. "eth0" / "\Device\NPF_{AD1CE675-96D0-47C5-ADD0-2504B9126B68}" / ... 
891  * if_description 3  A UTF-8 string containing the description of the device used to capture data. "Broadcom NetXtreme" / "First Ethernet Interface" / ... 
892  * if_IPv4addr    4  Interface network address and netmask. This option can be repeated multiple times within the same Interface Description Block when multiple IPv4 addresses are assigned to the interface. 192 168 1 1 255 255 255 0 
893  * if_IPv6addr    5  Interface network address and prefix length (stored in the last byte). This option can be repeated multiple times within the same Interface Description Block when multiple IPv6 addresses are assigned to the interface. 2001:0db8:85a3:08d3:1319:8a2e:0370:7344/64 is written (in hex) as "20 01 0d b8 85 a3 08 d3 13 19 8a 2e 03 70 73 44 40" 
894  * if_MACaddr     6  Interface Hardware MAC address (48 bits). 00 01 02 03 04 05 
895  * if_EUIaddr     7  Interface Hardware EUI address (64 bits), if available. TODO: give a good example 
896  * if_speed       8  Interface speed (in bps). 100000000 for 100Mbps 
897  * if_tsresol     9  Resolution of timestamps. If the Most Significant Bit is equal to zero, the remaining bits indicates the resolution of the timestamp as as a negative power of 10 (e.g. 6 means microsecond resolution, timestamps are the number of microseconds since 1/1/1970). If the Most Significant Bit is equal to one, the remaining bits indicates the resolution as as negative power of 2 (e.g. 10 means 1/1024 of second). If this option is not present, a resolution of 10^-6 is assumed (i.e. timestamps have the same resolution of the standard 'libpcap' timestamps). 6 
898  * if_tzone      10  Time zone for GMT support (TODO: specify better). TODO: give a good example 
899  * if_filter     11  The filter (e.g. "capture only TCP traffic") used to capture traffic. The first byte of the Option Data keeps a code of the filter used (e.g. if this is a libpcap string, or BPF bytecode, and more). More details about this format will be presented in Appendix XXX (TODO). (TODO: better use different options for different fields? e.g. if_filter_pcap, if_filter_bpf, ...) 00 "tcp port 23 and host 10.0.0.5" 
900  * if_os         12  A UTF-8 string containing the name of the operating system of the machine in which this interface is installed. This can be different from the same information that can be contained by the Section Header Block (Section 3.1 (Section Header Block (mandatory))) because the capture can have been done on a remote machine. "Windows XP SP2" / "openSUSE 10.2" / ... 
901  * if_fcslen     13  An integer value that specified the length of the Frame Check Sequence (in bits) for this interface. For link layers whose FCS length can change during time, the Packet Block Flags Word can be used (see Appendix A (Packet Block Flags Word)). 4 
902  * if_tsoffset   14  A 64 bits integer value that specifies an offset (in seconds) that must be added to the timestamp of each packet to obtain the absolute timestamp of a packet. If the option is missing, the timestamps stored in the packet must be considered absolute timestamps. The time zone of the offset can be specified with the option if_tzone. TODO: won't a if_tsoffset_low for fractional second offsets be useful for highly syncronized capture systems? 1234 
903  */
904 /**
905  * Interface description data
906  */
907 typedef struct wtapng_if_descr_s {
908         int                                     wtap_encap;    /**< link_type translated to wtap_encap */
909         guint64                         time_units_per_second;
910         /* mandatory */
911         guint16                         link_type;
912         guint32                         snap_len;
913         /* options */
914         gchar                           *opt_comment;   /**< NULL if not available */
915         gchar                           *if_name;               /**< NULL if not available, opt 2 A UTF-8 string containing the name of the device used to capture data. */
916         gchar                           *if_description;/**< NULL if not available, opt 3 A UTF-8 string containing the description of the device used to capture data. */
917         /* XXX: if_IPv4addr opt 4  Interface network address and netmask.*/
918         /* XXX: if_IPv6addr opt 5  Interface network address and prefix length (stored in the last byte).*/
919         /* XXX: if_MACaddr  opt 6  Interface Hardware MAC address (48 bits).*/
920         /* XXX: if_EUIaddr  opt 7  Interface Hardware EUI address (64 bits)*/
921         guint64                         if_speed;       /**< 0xFFFFFFFF if unknown, opt 8  Interface speed (in bps). 100000000 for 100Mbps */
922         guint8                          if_tsresol;     /**< default is 6 for microsecond resolution, opt 9  Resolution of timestamps. 
923                                                                          * If the Most Significant Bit is equal to zero, the remaining bits indicates the resolution of the timestamp as as a negative power of 10
924                                                                          */
925         /* XXX: if_tzone      10  Time zone for GMT support (TODO: specify better). */
926         gchar                           *if_filter;     /**< NULL if not available, opt 11  The filter (e.g. "capture only TCP traffic") used to capture traffic.
927                                                                          * The first byte of the Option Data keeps a code of the filter used (e.g. if this is a libpcap string, or BPF bytecode, and more).
928                                                                          */
929         gchar                           *if_os;         /**< NULL if not available, 12  A UTF-8 string containing the name of the operating system of the machine in which this interface is installed. */
930         gint8                           if_fcslen;      /**< -1 if unknown or changes between packets, opt 13  An integer value that specified the length of the Frame Check Sequence (in bits) for this interface. */
931         /* XXX: guint64 if_tsoffset; opt 14  A 64 bits integer value that specifies an offset (in seconds)...*/
932 } wtapng_if_descr_t;
933
934 struct Buffer;
935 struct wtap_dumper;
936
937 typedef struct wtap wtap;
938 typedef struct wtap_dumper wtap_dumper;
939
940 typedef struct wtap_reader *FILE_T;
941
942 struct file_type_info {
943     /* the file type name */
944     /* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
945     const char *name;
946
947     /* the file type short name, used as a shortcut for the command line tools */
948     /* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
949     const char *short_name;
950
951     /* the default file extension, used to save this type */
952     /* should be NULL if no default extension is known */
953     const char *default_file_extension;
954
955     /* a semicolon-separated list of additional file extensions */
956     /* used for this type */
957     /* should be NULL if no extensions, or no extensions other */
958     /* than the default extension, are known */
959     const char *additional_file_extensions;
960
961     /* when writing this file format, is seeking required? */
962     gboolean writing_must_seek;
963
964     /* does this type support name resolution records? */
965     /* should be FALSE is this file type doesn't support name resolution records */
966     gboolean has_name_resolution;
967
968     /* can this type write this encapsulation format? */
969     /* should be NULL is this file type doesn't have write support */
970     int (*can_write_encap)(int);
971
972     /* the function to open the capture file for writing */
973     /* should be NULL is this file type don't have write support */
974     int (*dump_open)(wtap_dumper *, int *);
975 };
976
977
978 typedef int (*wtap_open_routine_t)(struct wtap*, int *, char **);
979
980
981 /** On failure, "wtap_open_offline()" returns NULL, and puts into the
982  * "int" pointed to by its second argument:
983  *
984  * @param filename Name of the file to open
985  * @param err a positive "errno" value if the capture file can't be opened;
986  * a negative number, indicating the type of error, on other failures.
987  * @param err_info for some errors, a string giving more details of
988  * the error
989  * @param do_random TRUE if random access to the file will be done,
990  * FALSE if not
991  */
992 struct wtap* wtap_open_offline(const char *filename, int *err,
993     gchar **err_info, gboolean do_random);
994
995 /*
996  * If we were compiled with zlib and we're at EOF, unset EOF so that
997  * wtap_read/gzread has a chance to succeed. This is necessary if
998  * we're tailing a file.
999  */
1000 void wtap_cleareof(wtap *wth);
1001
1002 /*
1003  * Set callback functions to add new hostnames. Currently pcapng-only.
1004  * MUST match add_ipv4_name and add_ipv6_name in addr_resolv.c.
1005  */
1006 typedef void (*wtap_new_ipv4_callback_t) (const guint addr, const gchar *name);
1007 void wtap_set_cb_new_ipv4(wtap *wth, wtap_new_ipv4_callback_t add_new_ipv4);
1008
1009 typedef void (*wtap_new_ipv6_callback_t) (const void *addrp, const gchar *name);
1010 void wtap_set_cb_new_ipv6(wtap *wth, wtap_new_ipv6_callback_t add_new_ipv6);
1011
1012 /* Returns TRUE if read was successful. FALSE if failure. data_offset is
1013  * set to the offset in the file where the data for the read packet is
1014  * located. */
1015 gboolean wtap_read(wtap *wth, int *err, gchar **err_info,
1016     gint64 *data_offset);
1017
1018 gboolean wtap_seek_read (wtap *wth, gint64 seek_off,
1019         union wtap_pseudo_header *pseudo_header, guint8 *pd, int len,
1020         int *err, gchar **err_info);
1021
1022 /*** get various information snippets about the current packet ***/
1023 struct wtap_pkthdr *wtap_phdr(wtap *wth);
1024 union wtap_pseudo_header *wtap_pseudoheader(wtap *wth);
1025 guint8 *wtap_buf_ptr(wtap *wth);
1026
1027 /*** get various information snippets about the current file ***/
1028
1029 /** Return an approximation of the amount of data we've read sequentially
1030  * from the file so far. */
1031 gint64 wtap_read_so_far(wtap *wth);
1032 gint64 wtap_file_size(wtap *wth, int *err);
1033 guint wtap_snapshot_length(wtap *wth); /* per file */
1034 int wtap_file_type(wtap *wth);
1035 int wtap_file_encap(wtap *wth);
1036 int wtap_file_tsprecision(wtap *wth);
1037 wtapng_section_t* wtap_file_get_shb_info(wtap *wth);
1038 wtapng_iface_descriptions_t *wtap_file_get_idb_info(wtap *wth);
1039
1040 /*** close the current file ***/
1041 void wtap_sequential_close(wtap *wth);
1042 void wtap_close(wtap *wth);
1043
1044 /*** dump packets into a capture file ***/
1045 gboolean wtap_dump_can_open(int filetype);
1046 gboolean wtap_dump_can_write_encap(int filetype, int encap);
1047 gboolean wtap_dump_can_compress(int filetype);
1048 gboolean wtap_dump_has_name_resolution(int filetype);
1049
1050 wtap_dumper* wtap_dump_open(const char *filename, int filetype, int encap,
1051         int snaplen, gboolean compressed, int *err);
1052
1053 wtap_dumper* wtap_dump_open_ng(const char *filename, int filetype, int encap,
1054         int snaplen, gboolean compressed, wtapng_section_t *shb_hdr, wtapng_iface_descriptions_t *idb_inf, int *err);
1055
1056 wtap_dumper* wtap_dump_fdopen(int fd, int filetype, int encap, int snaplen,
1057         gboolean compressed, int *err);
1058
1059 gboolean wtap_dump(wtap_dumper *, const struct wtap_pkthdr *,
1060         const union wtap_pseudo_header *pseudo_header, const guint8 *, int *err);
1061 void wtap_dump_flush(wtap_dumper *);
1062 gint64 wtap_get_bytes_dumped(wtap_dumper *);
1063 void wtap_set_bytes_dumped(wtap_dumper *wdh, gint64 bytes_dumped);
1064 struct addrinfo;
1065 gboolean wtap_dump_set_addrinfo_list(wtap_dumper *wdh, struct addrinfo *addrinfo_list);
1066 gboolean wtap_dump_close(wtap_dumper *, int *);
1067
1068 /*
1069  * Get a GArray of WTAP_FILE_ values for file types that can be used
1070  * to save a file of a given type with a given WTAP_ENCAP_ type.
1071  */
1072 GArray *wtap_get_savable_file_types(int file_type, int file_encap);
1073
1074 /*** various string converter functions ***/
1075 const char *wtap_file_type_string(int filetype);
1076 const char *wtap_file_type_short_string(int filetype);
1077 int wtap_short_string_to_file_type(const char *short_name);
1078
1079 /*** various file extension functions ***/
1080 const char *wtap_default_file_extension(int filetype);
1081 GSList *wtap_get_file_extensions_list(int filetype);
1082 void wtap_free_file_extensions_list(GSList *extensions);
1083
1084 const char *wtap_encap_string(int encap);
1085 const char *wtap_encap_short_string(int encap);
1086 int wtap_short_string_to_encap(const char *short_name);
1087
1088 const char *wtap_strerror(int err);
1089
1090 /*** get available number of file types and encapsulations ***/
1091 int wtap_get_num_encap_types(void);
1092 int wtap_get_num_file_types(void);
1093
1094 /*** dynamically register new file types and encapsulations ***/
1095 void wtap_register_open_routine(wtap_open_routine_t, gboolean has_magic);
1096 int wtap_register_file_type(const struct file_type_info* fi);
1097 int wtap_register_encap_type(char* name, char* short_name);
1098
1099
1100 /*
1101  * Wiretap error codes.
1102  */
1103 #define WTAP_ERR_NOT_REGULAR_FILE               -1
1104         /* The file being opened for reading isn't a plain file (or pipe) */
1105 #define WTAP_ERR_RANDOM_OPEN_PIPE               -2
1106         /* The file is being opened for random access and it's a pipe */
1107 #define WTAP_ERR_FILE_UNKNOWN_FORMAT            -3
1108         /* The file being opened is not a capture file in a known format */
1109 #define WTAP_ERR_UNSUPPORTED                    -4
1110         /* Supported file type, but there's something in the file we
1111            can't support */
1112 #define WTAP_ERR_CANT_WRITE_TO_PIPE             -5
1113         /* Wiretap can't save to a pipe in the specified format */
1114 #define WTAP_ERR_CANT_OPEN                      -6
1115         /* The file couldn't be opened, reason unknown */
1116 #define WTAP_ERR_UNSUPPORTED_FILE_TYPE          -7
1117         /* Wiretap can't save files in the specified format */
1118 #define WTAP_ERR_UNSUPPORTED_ENCAP              -8
1119         /* Wiretap can't read or save files in the specified format with the
1120            specified encapsulation */
1121 #define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED   -9
1122         /* The specified format doesn't support per-packet encapsulations */
1123 #define WTAP_ERR_CANT_CLOSE                     -10
1124         /* The file couldn't be closed, reason unknown */
1125 #define WTAP_ERR_CANT_READ                      -11
1126         /* An attempt to read failed, reason unknown */
1127 #define WTAP_ERR_SHORT_READ                     -12
1128         /* An attempt to read read less data than it should have */
1129 #define WTAP_ERR_BAD_FILE                       -13
1130         /* The file appears to be damaged or corrupted or otherwise bogus */
1131 #define WTAP_ERR_SHORT_WRITE                    -14
1132         /* An attempt to write wrote less data than it should have */
1133 #define WTAP_ERR_UNC_TRUNCATED                  -15
1134         /* Sniffer compressed data was oddly truncated */
1135 #define WTAP_ERR_UNC_OVERFLOW                   -16
1136         /* Uncompressing Sniffer data would overflow buffer */
1137 #define WTAP_ERR_UNC_BAD_OFFSET                 -17
1138         /* LZ77 compressed data has bad offset to string */
1139 #define WTAP_ERR_RANDOM_OPEN_STDIN              -18
1140         /* We're trying to open the standard input for random access */
1141 #define WTAP_ERR_COMPRESSION_NOT_SUPPORTED      -19
1142         /* The filetype doesn't support output compression */
1143 #define WTAP_ERR_CANT_SEEK                      -20
1144         /* An attempt to seek failed, reason unknown */
1145 #define WTAP_ERR_DECOMPRESS                     -21
1146         /* Error decompressing */
1147 #define WTAP_ERR_INTERNAL                       -22
1148         /* "Shouldn't happen" internal errors */
1149
1150 #ifdef __cplusplus
1151 }
1152 #endif /* __cplusplus */
1153
1154 #endif /* __WTAP_H__ */