Use longs as file offsets, so that on platforms with 64-bit "long" we
[obnox/wireshark/wip.git] / wiretap / wtap.h
1 /* wtap.h
2  *
3  * $Id: wtap.h,v 1.89 2001/10/04 08:30:36 guy Exp $
4  *
5  * Wiretap Library
6  * Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org>
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21  *
22  */
23
24 #ifndef __WTAP_H__
25 #define __WTAP_H__
26
27 /* Encapsulation types. Choose names that truly reflect
28  * what is contained in the packet trace file.
29  *
30  * WTAP_ENCAP_PER_PACKET is a value passed to "wtap_dump_open()" or
31  * "wtap_dump_fd_open()" to indicate that there is no single encapsulation
32  * type for all packets in the file; this may cause those routines to
33  * fail if the capture file format being written can't support that.
34  * It's also returned by "wtap_file_encap()" for capture files that
35  * don't have a single encapsulation type for all packets in the file.
36  *
37  * WTAP_ENCAP_UNKNOWN is returned by "wtap_pcap_encap_to_wtap_encap()"
38  * if it's handed an unknown encapsulation.
39  *
40  * WTAP_ENCAP_FDDI_BITSWAPPED is for FDDI captures on systems where the
41  * MAC addresses you get from the hardware are bit-swapped.  Ideally,
42  * the driver would tell us that, but I know of none that do, so, for
43  * now, we base it on the machine on which we're *reading* the
44  * capture, rather than on the machine on which the capture was taken
45  * (they're probably likely to be the same).  We assume that they're
46  * bit-swapped on everything except for systems running Ultrix, Alpha
47  * systems, and BSD/OS systems (that's what "tcpdump" does; I guess
48  * Digital decided to bit-swap addresses in the hardware or in the
49  * driver, and I guess BSDI bit-swapped them in the driver, given that
50  * BSD/OS generally runs on Boring Old PC's).  If we create a wiretap
51  * save file format, we'd use the WTAP_ENCAP values to flag the
52  * encapsulation of a packet, so there we'd at least be able to base
53  * it on the machine on which the capture was taken.
54  *
55  * WTAP_ENCAP_LINUX_ATM_CLIP is the encapsulation you get with the
56  * ATM on Linux code from <http://linux-atm.sourceforge.net/>;
57  * that code adds a DLT_ATM_CLIP DLT_ code of 19, and that
58  * encapsulation isn't the same as the DLT_ATM_RFC1483 encapsulation
59  * presumably used on some BSD systems, which we turn into
60  * WTAP_ENCAP_ATM_RFC1483.
61  *
62  * WTAP_ENCAP_NULL corresponds to DLT_NULL from "libpcap".  This
63  * corresponds to
64  *
65  *      1) PPP-over-HDLC encapsulation, at least with some versions
66  *         of ISDN4BSD (but not the current ones, it appears, unless
67  *         I've missed something);
68  *
69  *      2) a 4-byte header containing the AF_ address family, in
70  *         the byte order of the machine that saved the capture,
71  *         for the packet, as used on many BSD systems for the
72  *         loopback device and some other devices;
73  *
74  *      3) a 4-byte header containing 2 octets of 0 and an Ethernet
75  *         type in the byte order from an Ethernet header, that being
76  *         what "libpcap" on Linux turns the Ethernet header for
77  *         loopback interfaces into. */
78 #define WTAP_ENCAP_PER_PACKET                   -1
79 #define WTAP_ENCAP_UNKNOWN                      0
80 #define WTAP_ENCAP_ETHERNET                     1
81 #define WTAP_ENCAP_TOKEN_RING                   2
82 #define WTAP_ENCAP_SLIP                         3
83 #define WTAP_ENCAP_PPP                          4
84 #define WTAP_ENCAP_FDDI                         5
85 #define WTAP_ENCAP_FDDI_BITSWAPPED              6
86 #define WTAP_ENCAP_RAW_IP                       7
87 #define WTAP_ENCAP_ARCNET                       8
88 #define WTAP_ENCAP_ATM_RFC1483                  9
89 #define WTAP_ENCAP_LINUX_ATM_CLIP               10
90 #define WTAP_ENCAP_LAPB                         11
91 #define WTAP_ENCAP_ATM_SNIFFER                  12
92 #define WTAP_ENCAP_NULL                         13
93 #define WTAP_ENCAP_ASCEND                       14
94 #define WTAP_ENCAP_LAPD                         15
95 #define WTAP_ENCAP_V120                         16
96 #define WTAP_ENCAP_PPP_WITH_PHDR                17
97 #define WTAP_ENCAP_IEEE_802_11                  18
98 #define WTAP_ENCAP_SLL                          19
99 #define WTAP_ENCAP_FRELAY                       20
100 #define WTAP_ENCAP_CHDLC                        21
101
102 /* last WTAP_ENCAP_ value + 1 */
103 #define WTAP_NUM_ENCAP_TYPES                    22
104
105 /* File types that can be read by wiretap.
106    We support writing some many of these file types, too, so we
107    distinguish between different versions of them. */
108 #define WTAP_FILE_UNKNOWN                       0
109 #define WTAP_FILE_WTAP                          1
110 #define WTAP_FILE_PCAP                          2
111 #define WTAP_FILE_PCAP_SS990417                 3
112 #define WTAP_FILE_PCAP_SS990915                 4
113 #define WTAP_FILE_PCAP_SS991029                 5
114 #define WTAP_FILE_PCAP_NOKIA                    6
115 #define WTAP_FILE_LANALYZER                     7
116 #define WTAP_FILE_NGSNIFFER_UNCOMPRESSED        8
117 #define WTAP_FILE_NGSNIFFER_COMPRESSED          9
118 #define WTAP_FILE_SNOOP                         10
119 #define WTAP_FILE_IPTRACE_1_0                   11
120 #define WTAP_FILE_IPTRACE_2_0                   12
121 #define WTAP_FILE_NETMON_1_x                    13
122 #define WTAP_FILE_NETMON_2_x                    14
123 #define WTAP_FILE_NETXRAY_1_0                   15
124 #define WTAP_FILE_NETXRAY_1_1                   16
125 #define WTAP_FILE_NETXRAY_2_00x                 17
126 #define WTAP_FILE_RADCOM                        18
127 #define WTAP_FILE_ASCEND                        19
128 #define WTAP_FILE_NETTL                         20
129 #define WTAP_FILE_TOSHIBA                       21
130 #define WTAP_FILE_I4BTRACE                      22
131 #define WTAP_FILE_CSIDS                         23
132 #define WTAP_FILE_PPPDUMP                       24
133 #define WTAP_FILE_ETHERPEEK_MAC_V56             25
134 #define WTAP_FILE_ETHERPEEK_MAC_V7              26
135
136 /* last WTAP_FILE_ value + 1 */
137 #define WTAP_NUM_FILE_TYPES                     27
138
139 /*
140  * Maximum packet size we'll support.
141  */
142 #define WTAP_MAX_PACKET_SIZE                    65535
143
144 #ifdef HAVE_SYS_TYPES_H
145 #include <sys/types.h>
146 #endif
147
148 #ifdef HAVE_SYS_TIME_H
149 #include <sys/time.h>
150 #endif
151
152 #ifdef HAVE_WINSOCK_H
153 #include <winsock.h>
154 #endif
155
156 #include <glib.h>
157 #include <stdio.h>
158
159 /* Packet "pseudo-header" information for X.25 capture files. */
160 struct x25_phdr {
161         guint8  flags; /* ENCAP_LAPB : 1st bit means From DCE */
162 };
163
164 /* Packet "pseudo-header" for ATM Sniffer capture files. */
165 struct ngsniffer_atm_phdr {
166         guint8  AppTrafType;    /* traffic type */
167         guint8  AppHLType;      /* protocol type */
168         guint16 Vpi;            /* virtual path identifier */
169         guint16 Vci;            /* virtual circuit identifier */
170         guint16 channel;        /* link: 0 for DCE, 1 for DTE */
171         guint16 cells;          /* number of cells */
172         guint16 aal5t_u2u;      /* user-to-user indicator */
173         guint16 aal5t_len;      /* length of the packet */
174         guint32 aal5t_chksum;   /* checksum for AAL5 packet */
175 };
176
177 /* Packet "pseudo-header" for the output from "wandsession", "wannext",
178    "wandisplay", and similar commands on Lucent/Ascend access equipment. */
179
180 #define ASCEND_MAX_STR_LEN 64
181
182 #define ASCEND_PFX_WDS_X 1
183 #define ASCEND_PFX_WDS_R 2
184 #define ASCEND_PFX_WDD   3
185
186 struct ascend_phdr {
187         guint16 type;                   /* ASCEND_PFX_*, as defined above */
188         char    user[ASCEND_MAX_STR_LEN];   /* Username, from wandsession header */
189         guint32 sess;                   /* Session number, from wandsession header */
190         char    call_num[ASCEND_MAX_STR_LEN];   /* Called number, from WDD header */
191         guint32 chunk;                  /* Chunk number, from WDD header */
192         guint32 task;                   /* Task number */
193 };
194
195 /* Packet "pseudo_header" for etherpeek capture files. */
196 struct etherpeek_phdr {
197         struct timeval reference_time;
198 };
199
200 struct p2p_phdr {
201         gboolean        sent; /* TRUE=sent, FALSE=received */
202 };
203
204
205 /*
206  * Bits in AppTrafType.
207  *
208  * For AAL types other than AAL5, the packet data is presumably for a
209  * single cell, not a reassembled frame, as the ATM Sniffer manual says
210  * it dosn't reassemble cells other than AAL5 cells.
211  */
212 #define ATT_AALTYPE             0x0F    /* AAL type: */
213 #define ATT_AAL_UNKNOWN         0x00    /* Unknown AAL */
214 #define ATT_AAL1                0x01    /* AAL1 */
215 #define ATT_AAL3_4              0x02    /* AAL3/4 */
216 #define ATT_AAL5                0x03    /* AAL5 */
217 #define ATT_AAL_USER            0x04    /* User AAL */
218 #define ATT_AAL_SIGNALLING      0x05    /* Signaling AAL */
219 #define ATT_OAMCELL             0x06    /* OAM cell */
220
221 #define ATT_HLTYPE              0xF0    /* Higher-layer type: */
222 #define ATT_HL_UNKNOWN          0x00    /* unknown */
223 #define ATT_HL_LLCMX            0x10    /* LLC multiplexed (probably RFC 1483) */
224 #define ATT_HL_VCMX             0x20    /* VC multiplexed (probably RFC 1483) */
225 #define ATT_HL_LANE             0x30    /* LAN Emulation */
226 #define ATT_HL_ILMI             0x40    /* ILMI */
227 #define ATT_HL_FRMR             0x50    /* Frame Relay */
228 #define ATT_HL_SPANS            0x60    /* FORE SPANS */
229 #define ATT_HL_IPSILON          0x70    /* Ipsilon */
230
231 /*
232  * Values for AppHLType; the interpretation depends on the ATT_HLTYPE
233  * bits in AppTrafType.
234  */
235 #define AHLT_UNKNOWN            0x0
236 #define AHLT_VCMX_802_3_FCS     0x1     /* VCMX: 802.3 FCS */
237 #define AHLT_LANE_LE_CTRL       0x1     /* LANE: LE Ctrl */
238 #define AHLT_IPSILON_FT0        0x1     /* Ipsilon: Flow Type 0 */
239 #define AHLT_VCMX_802_4_FCS     0x2     /* VCMX: 802.4 FCS */
240 #define AHLT_LANE_802_3         0x2     /* LANE: 802.3 */
241 #define AHLT_IPSILON_FT1        0x2     /* Ipsilon: Flow Type 1 */
242 #define AHLT_VCMX_802_5_FCS     0x3     /* VCMX: 802.5 FCS */
243 #define AHLT_LANE_802_5         0x3     /* LANE: 802.5 */
244 #define AHLT_IPSILON_FT2        0x3     /* Ipsilon: Flow Type 2 */
245 #define AHLT_VCMX_FDDI_FCS      0x4     /* VCMX: FDDI FCS */
246 #define AHLT_LANE_802_3_MC      0x4     /* LANE: 802.3 multicast */
247 #define AHLT_VCMX_802_6_FCS     0x5     /* VCMX: 802.6 FCS */
248 #define AHLT_LANE_802_5_MC      0x5     /* LANE: 802.5 multicast */
249 #define AHLT_VCMX_802_3         0x7     /* VCMX: 802.3 */
250 #define AHLT_VCMX_802_4         0x8     /* VCMX: 802.4 */
251 #define AHLT_VCMX_802_5         0x9     /* VCMX: 802.5 */
252 #define AHLT_VCMX_FDDI          0xa     /* VCMX: FDDI */
253 #define AHLT_VCMX_802_6         0xb     /* VCMX: 802.6 */
254 #define AHLT_VCMX_FRAGMENTS     0xc     /* VCMX: Fragments */
255 #define AHLT_VCMX_BPDU          0xe     /* VCMX: BPDU */
256
257 union wtap_pseudo_header {
258         struct x25_phdr                 x25;
259         struct ngsniffer_atm_phdr       ngsniffer_atm;
260         struct ascend_phdr              ascend;
261         struct etherpeek_phdr           etherpeek;
262         struct p2p_phdr                 p2p;
263 };
264
265 struct wtap_pkthdr {
266         struct timeval ts;
267         guint32 caplen;
268         guint32 len;
269         int pkt_encap;
270 };
271
272 typedef void (*wtap_handler)(u_char*, const struct wtap_pkthdr*,
273                 long, union wtap_pseudo_header *pseudo_header, const u_char *);
274
275 struct wtap;
276 struct Buffer;
277 struct wtap_dumper;
278
279 typedef struct wtap wtap;
280 typedef struct wtap_dumper wtap_dumper;
281
282 /*
283  * On failure, "wtap_open_offline()" returns NULL, and puts into the
284  * "int" pointed to by its second argument:
285  *
286  * a positive "errno" value if the capture file can't be opened;
287  *
288  * a negative number, indicating the type of error, on other failures.
289  */
290 struct wtap* wtap_open_offline(const char *filename, int *err, gboolean do_random);
291
292 /* Returns TRUE if entire loop-reading was successful. If read failure
293  * happened, FALSE is returned and err is set. */
294 gboolean wtap_loop(wtap *wth, int, wtap_handler, u_char*, int *err);
295
296 /* Returns TRUE if read was successful. FALSE if failure. data_offset is
297  * set the the offset in the file where the data for the read packet is
298  * located. */
299 gboolean wtap_read(wtap *wth, int *err, long *data_offset);
300
301 struct wtap_pkthdr *wtap_phdr(wtap *wth);
302 union wtap_pseudo_header *wtap_pseudoheader(wtap *wth);
303 guint8 *wtap_buf_ptr(wtap *wth);
304
305 int wtap_fd(wtap *wth);
306 int wtap_snapshot_length(wtap *wth); /* per file */
307 int wtap_file_type(wtap *wth);
308 int wtap_file_encap(wtap *wth);
309
310 const char *wtap_file_type_string(int filetype);
311 const char *wtap_file_type_short_string(int filetype);
312 int wtap_short_string_to_file_type(const char *short_name);
313
314 const char *wtap_encap_string(int encap);
315 const char *wtap_encap_short_string(int encap);
316 int wtap_short_string_to_encap(const char *short_name);
317
318 const char *wtap_strerror(int err);
319 void wtap_sequential_close(wtap *wth);
320 void wtap_close(wtap *wth);
321 int wtap_seek_read (wtap *wth, long seek_off,
322         union wtap_pseudo_header *pseudo_header, guint8 *pd, int len);
323 int wtap_def_seek_read (wtap *wth, long seek_off,
324         union wtap_pseudo_header *pseudo_header, guint8 *pd, int len);
325
326 gboolean wtap_dump_can_open(int filetype);
327 gboolean wtap_dump_can_write_encap(int filetype, int encap);
328 wtap_dumper* wtap_dump_open(const char *filename, int filetype, int encap,
329         int snaplen, int *err);
330 wtap_dumper* wtap_dump_fdopen(int fd, int filetype, int encap, int snaplen,
331         int *err);
332 gboolean wtap_dump(wtap_dumper *, const struct wtap_pkthdr *,
333         const union wtap_pseudo_header *pseudo_header, const u_char *, int *err);
334 FILE* wtap_dump_file(wtap_dumper *);
335 gboolean wtap_dump_close(wtap_dumper *, int *);
336
337 /* XXX - needed until "wiretap" can do live packet captures */
338 int wtap_pcap_encap_to_wtap_encap(int encap);
339
340 /*
341  * Wiretap error codes.
342  */
343 #define WTAP_ERR_NOT_REGULAR_FILE               -1
344         /* The file being opened for reading isn't a plain file */
345 #define WTAP_ERR_FILE_UNKNOWN_FORMAT            -2
346         /* The file being opened is not a capture file in a known format */
347 #define WTAP_ERR_UNSUPPORTED                    -3
348         /* Supported file type, but there's something in the file we
349            can't support */
350 #define WTAP_ERR_CANT_OPEN                      -4
351         /* The file couldn't be opened, reason unknown */
352 #define WTAP_ERR_UNSUPPORTED_FILE_TYPE          -5
353         /* Wiretap can't save files in the specified format */
354 #define WTAP_ERR_UNSUPPORTED_ENCAP              -6
355         /* Wiretap can't read or save files in the specified format with the
356            specified encapsulation */
357 #define WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED   -7
358         /* The specified format doesn't support per-packet encapsulations */
359 #define WTAP_ERR_CANT_CLOSE                     -8
360         /* The file couldn't be closed, reason unknown */
361 #define WTAP_ERR_CANT_READ                      -9
362         /* An attempt to read failed, reason unknown */
363 #define WTAP_ERR_SHORT_READ                     -10
364         /* An attempt to read read less data than it should have */
365 #define WTAP_ERR_BAD_RECORD                     -11
366         /* We read an invalid record */
367 #define WTAP_ERR_SHORT_WRITE                    -12
368         /* An attempt to write wrote less data than it should have */
369 #define WTAP_ERR_UNC_TRUNCATED                  -13
370         /* Sniffer compressed data was oddly truncated */
371 #define WTAP_ERR_UNC_OVERFLOW                   -14
372         /* Uncompressing Sniffer data would overflow buffer */
373 #define WTAP_ERR_UNC_BAD_OFFSET                 -15
374         /* LZ77 compressed data has bad offset to string */
375
376 /* Errors from zlib; zlib error Z_xxx turns into Wiretap error
377    WTAP_ERR_ZLIB + Z_xxx.
378
379    WTAP_ERR_ZLIB_MIN and WTAP_ERR_ZLIB_MAX bound the range of zlib
380    errors; we leave room for 100 positive and 100 negative error
381    codes. */
382
383 #define WTAP_ERR_ZLIB                           -200
384 #define WTAP_ERR_ZLIB_MAX                       -100
385 #define WTAP_ERR_ZLIB_MIN                       -300
386
387
388 #endif /* __WTAP_H__ */