Clean up white space.
[obnox/wireshark/wip.git] / wiretap / ngsniffer.c
1 /* ngsniffer.c
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21  */
22
23 /* The code in ngsniffer.c that decodes the time fields for each packet in the
24  * Sniffer trace originally came from code from TCPVIEW:
25  *
26  * TCPVIEW
27  *
28  * Author:      Martin Hunt
29  *              Networks and Distributed Computing
30  *              Computing & Communications
31  *              University of Washington
32  *              Administration Building, AG-44
33  *              Seattle, WA  98195
34  *              Internet: martinh@cac.washington.edu
35  *
36  *
37  * Copyright 1992 by the University of Washington
38  *
39  * Permission to use, copy, modify, and distribute this software and its
40  * documentation for any purpose and without fee is hereby granted, provided
41  * that the above copyright notice appears in all copies and that both the
42  * above copyright notice and this permission notice appear in supporting
43  * documentation, and that the name of the University of Washington not be
44  * used in advertising or publicity pertaining to distribution of the software
45  * without specific, written prior permission.  This software is made
46  * available "as is", and
47  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
48  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
49  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
50  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
51  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
52  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
53  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
54  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
55  *
56  */
57 #ifdef HAVE_CONFIG_H
58 #include "config.h"
59 #endif
60
61 #include <errno.h>
62 #include <string.h>
63 #include "wtap-int.h"
64 #include "file_wrappers.h"
65 #include "buffer.h"
66 #include "atm.h"
67 #include "ngsniffer.h"
68
69 /* Magic number in Sniffer files. */
70 static const char ngsniffer_magic[] = {
71         'T', 'R', 'S', 'N', 'I', 'F', 'F', ' ', 'd', 'a', 't', 'a',
72         ' ', ' ', ' ', ' ', 0x1a
73 };
74
75 /*
76  * Sniffer record types.
77  */
78 #define REC_VERS        1       /* Version record (f_vers) */
79 #define REC_FRAME2      4       /* Frame data (f_frame2) */
80 #define REC_FRAME4      8       /* Frame data (f_frame4) */
81 #define REC_FRAME6      12      /* Frame data (f_frame6) (see below) */
82 #define REC_EOF         3       /* End-of-file record (no data follows) */
83 /*
84  * and now for some unknown header types
85  */
86 #define REC_HEADER1     6       /* Header containing serial numbers? */
87 #define REC_HEADER2     7       /* Header containing ??? */
88 #define REC_V2DESC      8       /* In version 2 sniffer traces contains
89                                  * infos about this capturing session.
90                                  * Collides with REC_FRAME4 */
91 #define REC_HEADER3     13      /* Retransmission counts? */
92 #define REC_HEADER4     14      /* ? */
93 #define REC_HEADER5     15      /* ? */
94 #define REC_HEADER6     16      /* More broadcast/retransmission counts? */
95 #define REC_HEADER7     17      /* ? */
96
97
98 /*
99  * Sniffer version record format.
100  */
101 struct vers_rec {
102         gint16  maj_vers;       /* major version number */
103         gint16  min_vers;       /* minor version number */
104         gint16  time;           /* DOS-format time */
105         gint16  date;           /* DOS-format date */
106         gint8   type;           /* what type of records follow */
107         guint8  network;        /* network type */
108         gint8   format;         /* format version */
109         guint8  timeunit;       /* timestamp units */
110         gint8   cmprs_vers;     /* compression version */
111         gint8   cmprs_level;    /* compression level */
112         gint16  rsvd[2];        /* reserved */
113 };
114
115 /*
116  * Network types.
117  */
118 #define NETWORK_TRING           0       /* Token ring */
119 #define NETWORK_ENET            1       /* Ethernet */
120 #define NETWORK_ARCNET          2       /* ARCNET */
121 #define NETWORK_STARLAN         3       /* StarLAN */
122 #define NETWORK_PCNW            4       /* PC Network broadband (Sytek?) */
123 #define NETWORK_LOCALTALK       5       /* LocalTalk */
124 #define NETWORK_SYNCHRO         7       /* Internetwork analyzer (synchronous) */
125 #define NETWORK_ASYNC           8       /* Internetwork analyzer (asynchronous) */
126 #define NETWORK_FDDI            9       /* FDDI */
127 #define NETWORK_ATM             10      /* ATM */
128
129 /*
130  * Sniffer type 2 data record format - followed by frame data.
131  *
132  * The Expert Sniffer Network Analyzer Operations manual, Release 5.50,
133  * documents some of the values used in "fs" and "flags".  "flags" don't
134  * look as if they'd be of much interest to us, as those are internal
135  * flags for state used by the Sniffer, but "fs" gives various status
136  * bits including error indications *and*:
137  *
138  *      ISDN channel information for ISDN;
139  *
140  *      PPP vs. SLIP information for Async.
141  *
142  * In that section it also refers to "FDDI analyzers using the NPI PCI
143  * FDDI adapter" and "FDDI analyzers using the NPI ISA FDDI adapter",
144  * referring to the first as "F1SNIFF" and the second as "FDSNIFF";
145  * those sound as if they *could* be replacements for "TRSNIFF" in
146  * the file header, but that manual says, earlier, that the header
147  * starts with "TRSNIFF data, no matter where the frames were
148  * collected".
149  *
150  * It also says that a type 2 record has an 8-bit "time_high"
151  * and an 8-bit "time_day" field; the code here used to have a
152  * 16-bit "time_high" value, but that gave wrong time stamps on at
153  * least some captures.  Did some older manual have it as a 16-bit
154  * "tstamp_high", so that perhaps it depends on the version number
155  * in the file, or is it "tstamp_high" plus "tstamp_day" in all
156  * versions?  (I forget whether this came purely from tcpview, or if
157  * I saw any of it in an NAI document.)
158  *
159  * We interpret them as unsigned, as interpreting them as signed
160  * would appear to allow time stamps that precede the start of the
161  * capture.  The description of the record format shows them as
162  * "char", but the section "How the Analyzer Stores Time" shows a
163  * time stamp structure with those fields being "unsigned char".
164  *
165  * In addition, the description of the record format has the comment
166  * for the "time_day" field saying it's the time in days since the
167  * start of the capture, but the "How the Analyzer Stores Time"
168  * section says it's increased by 1 if the capture continues past
169  * midnight - and also says that the time stamp structure has a time
170  * relative to midnight when the capture started, not since the
171  * actual capture start, so that might be a difference between
172  * the internal time stamp in the Sniffer software and the time
173  * stamp in capture files (i.e., the latter might be relative to
174  * the time when the capture starts).
175  */
176 struct frame2_rec {
177         guint16 time_low;       /* low part of time stamp */
178         guint16 time_med;       /* middle part of time stamp */
179         guint8  time_high;      /* high part of the time stamp */
180         guint8  time_day;       /* time in days since start of capture */
181         gint16  size;           /* number of bytes of data */
182         guint8  fs;             /* frame error status bits */
183         guint8  flags;          /* buffer flags */
184         gint16  true_size;      /* size of original frame, in bytes */
185         gint16  rsvd;           /* reserved */
186 };
187
188 /*
189  * Bits in "fs".
190  *
191  * The bits differ for different link-layer types.
192  */
193
194 /*
195  * Ethernet.
196  */
197 #define FS_ETH_CRC              0x80    /* CRC error */
198 #define FS_ETH_ALIGN            0x40    /* bad alignment */
199 #define FS_ETH_RU               0x20    /* "RU out of resources" */
200 #define FS_ETH_OVERRUN          0x10    /* DMA overrun */
201 #define FS_ETH_RUNT             0x08    /* frame too small */
202 #define FS_ETH_COLLISION        0x02    /* collision fragment */
203
204 /*
205  * FDDI.
206  */
207 #define FS_FDDI_INVALID         0x10    /* frame indicators are invalid */
208 #define FS_FDDI_ERROR           0x20    /* "frame error bit 1" */
209 #define FS_FDDI_PCI_VDL         0x01    /* VDL error on frame on PCI adapter */
210 #define FS_FDDI_PCI_CRC         0x02    /* CRC error on frame on PCI adapter */
211 #define FS_FDDI_ISA_CRC         0x20    /* CRC error on frame on ISA adapter */
212
213 /*
214  * Internetwork analyzer (synchronous and asynchronous).
215  */
216 #define FS_WAN_DTE              0x80    /* DTE->DCE frame */
217
218 /*
219  * Internetwork analyzer (synchronous).
220  */
221 #define FS_SYNC_LOST            0x01    /* some frames were lost */
222 #define FS_SYNC_CRC             0x02    /* CRC error */
223 #define FS_SYNC_ABORT           0x04    /* aborted frame */
224 #define FS_ISDN_CHAN_MASK       0x18    /* ISDN channel */
225 #define FS_ISDN_CHAN_D          0x18    /* ISDN channel D */
226 #define FS_ISDN_CHAN_B1         0x08    /* ISDN channel B1 */
227 #define FS_ISDN_CHAN_B2         0x10    /* ISDN channel B2 */
228
229 /*
230  * Internetwork analyzer (asynchronous).
231  * XXX - are some of these synchronous flags?  They're listed with the
232  * asynchronous flags in the Sniffer 5.50 Network Analyzer Operations
233  * manual.  Is one of the "overrun" errors a synchronous overrun error?
234  */
235 #define FS_ASYNC_LOST           0x01    /* some frames were lost */
236 #define FS_ASYNC_OVERRUN        0x02    /* UART overrun, lost bytes */
237 #define FS_ASYNC_FRAMING        0x04    /* bad character (framing error?) */
238 #define FS_ASYNC_PPP            0x08    /* PPP frame */
239 #define FS_ASYNC_SLIP           0x10    /* SLIP frame */
240 #define FS_ASYNC_ALIGN          0x20    /* alignment or DLPP(?) error */
241 #define FS_ASYNC_OVERRUN2       0x40    /* overrun or bad frame length */
242
243 /*
244  * Sniffer type 4 data record format - followed by frame data.
245  *
246  * The ATM Sniffer manual says that the "flags" field holds "buffer flags;
247  * BF_xxxx", but doesn't say what the BF_xxxx flags are.  They may
248  * be the same as they are in a type 2 record, in which case they're
249  * probably not of much interest to us.
250  *
251  * XXX - the manual also says there's an 8-byte "ATMTimeStamp" driver
252  * time stamp at the end of "ATMSaveInfo", but, from an ATM Sniffer capture
253  * file I've looked at, that appears not to be the case.
254  */
255
256 /*
257  * Fields from the AAL5 trailer for the frame, if it's an AAL5 frame
258  * rather than a cell.
259  */
260 typedef struct _ATM_AAL5Trailer {
261         guint16 aal5t_u2u;      /* user-to-user indicator */
262         guint16 aal5t_len;      /* length of the packet */
263         guint32 aal5t_chksum;   /* checksum for AAL5 packet */
264 } ATM_AAL5Trailer;
265
266 typedef struct _ATMTimeStamp {
267         guint32 msw;    /* most significant word */
268         guint32 lsw;    /* least significant word */
269 } ATMTimeStamp;
270
271 typedef struct _ATMSaveInfo {
272         guint32 StatusWord;     /* status word from driver */
273         ATM_AAL5Trailer Trailer; /* AAL5 trailer */
274         guint8  AppTrafType;    /* traffic type */
275         guint8  AppHLType;      /* protocol type */
276         guint16 AppReserved;    /* reserved */
277         guint16 Vpi;            /* virtual path identifier */
278         guint16 Vci;            /* virtual circuit identifier */
279         guint16 channel;        /* link: 0 for DCE, 1 for DTE */
280         guint16 cells;          /* number of cells */
281         guint32 AppVal1;        /* type-dependent */
282         guint32 AppVal2;        /* type-dependent */
283 } ATMSaveInfo;
284
285 /*
286  * Bits in StatusWord.
287  */
288 #define SW_ERRMASK              0x0F    /* Error mask: */
289 #define SW_RX_FIFO_UNDERRUN     0x01    /* Receive FIFO underrun */
290 #define SW_RX_FIFO_OVERRUN      0x02    /* Receive FIFO overrun */
291 #define SW_RX_PKT_TOO_LONG      0x03    /* Received packet > max size */
292 #define SW_CRC_ERROR            0x04    /* CRC error */
293 #define SW_USER_ABORTED_RX      0x05    /* User aborted receive */
294 #define SW_BUF_LEN_TOO_LONG     0x06    /* buffer len > max buf */
295 #define SW_INTERNAL_T1_ERROR    0x07    /* Internal T1 error */
296 #define SW_RX_CHANNEL_DEACTIV8  0x08    /* Rx channel deactivate */
297
298 #define SW_ERROR                0x80    /* Error indicator */
299 #define SW_CONGESTION           0x40    /* Congestion indicator */
300 #define SW_CLP                  0x20    /* Cell loss priority indicator */
301 #define SW_RAW_CELL             0x100   /* RAW cell indicator */
302 #define SW_OAM_CELL             0x200   /* OAM cell indicator */
303
304 /*
305  * Bits in AppTrafType.
306  *
307  * For AAL types other than AAL5, the packet data is presumably for a
308  * single cell, not a reassembled frame, as the ATM Sniffer manual says
309  * it dosn't reassemble cells other than AAL5 cells.
310  */
311 #define ATT_AALTYPE             0x0F    /* AAL type: */
312 #define ATT_AAL_UNKNOWN         0x00    /* Unknown AAL */
313 #define ATT_AAL1                0x01    /* AAL1 */
314 #define ATT_AAL3_4              0x02    /* AAL3/4 */
315 #define ATT_AAL5                0x03    /* AAL5 */
316 #define ATT_AAL_USER            0x04    /* User AAL */
317 #define ATT_AAL_SIGNALLING      0x05    /* Signaling AAL */
318 #define ATT_OAMCELL             0x06    /* OAM cell */
319
320 #define ATT_HLTYPE              0xF0    /* Higher-layer type: */
321 #define ATT_HL_UNKNOWN          0x00    /* unknown */
322 #define ATT_HL_LLCMX            0x10    /* LLC multiplexed (probably RFC 1483) */
323 #define ATT_HL_VCMX             0x20    /* VC multiplexed (probably RFC 1483) */
324 #define ATT_HL_LANE             0x30    /* LAN Emulation */
325 #define ATT_HL_ILMI             0x40    /* ILMI */
326 #define ATT_HL_FRMR             0x50    /* Frame Relay */
327 #define ATT_HL_SPANS            0x60    /* FORE SPANS */
328 #define ATT_HL_IPSILON          0x70    /* Ipsilon */
329
330 /*
331  * Values for AppHLType; the interpretation depends on the ATT_HLTYPE
332  * bits in AppTrafType.
333  */
334 #define AHLT_UNKNOWN            0x0
335 #define AHLT_VCMX_802_3_FCS     0x1     /* VCMX: 802.3 FCS */
336 #define AHLT_LANE_LE_CTRL       0x1     /* LANE: LE Ctrl */
337 #define AHLT_IPSILON_FT0        0x1     /* Ipsilon: Flow Type 0 */
338 #define AHLT_VCMX_802_4_FCS     0x2     /* VCMX: 802.4 FCS */
339 #define AHLT_LANE_802_3         0x2     /* LANE: 802.3 */
340 #define AHLT_IPSILON_FT1        0x2     /* Ipsilon: Flow Type 1 */
341 #define AHLT_VCMX_802_5_FCS     0x3     /* VCMX: 802.5 FCS */
342 #define AHLT_LANE_802_5         0x3     /* LANE: 802.5 */
343 #define AHLT_IPSILON_FT2        0x3     /* Ipsilon: Flow Type 2 */
344 #define AHLT_VCMX_FDDI_FCS      0x4     /* VCMX: FDDI FCS */
345 #define AHLT_LANE_802_3_MC      0x4     /* LANE: 802.3 multicast */
346 #define AHLT_VCMX_802_6_FCS     0x5     /* VCMX: 802.6 FCS */
347 #define AHLT_LANE_802_5_MC      0x5     /* LANE: 802.5 multicast */
348 #define AHLT_VCMX_802_3         0x7     /* VCMX: 802.3 */
349 #define AHLT_VCMX_802_4         0x8     /* VCMX: 802.4 */
350 #define AHLT_VCMX_802_5         0x9     /* VCMX: 802.5 */
351 #define AHLT_VCMX_FDDI          0xa     /* VCMX: FDDI */
352 #define AHLT_VCMX_802_6         0xb     /* VCMX: 802.6 */
353 #define AHLT_VCMX_FRAGMENTS     0xc     /* VCMX: Fragments */
354 #define AHLT_VCMX_BPDU          0xe     /* VCMX: BPDU */
355
356 struct frame4_rec {
357         guint16 time_low;       /* low part of time stamp */
358         guint16 time_med;       /* middle part of time stamp */
359         guint8  time_high;      /* high part of time stamp */
360         guint8  time_day;       /* time in days since start of capture */
361         gint16  size;           /* number of bytes of data */
362         gint8   fs;             /* frame error status bits */
363         gint8   flags;          /* buffer flags */
364         gint16  true_size;      /* size of original frame, in bytes */
365         gint16  rsvd3;          /* reserved */
366         gint16  atm_pad;        /* pad to 4-byte boundary */
367         ATMSaveInfo atm_info;   /* ATM-specific stuff */
368 };
369
370 /*
371  * XXX - I have a version 5.50 file with a bunch of token ring
372  * records listed as type "12".  The record format below was
373  * derived from frame4_rec and a bit of experimentation.
374  * - Gerald
375  */
376 struct frame6_rec {
377         guint16 time_low;       /* low part of time stamp */
378         guint16 time_med;       /* middle part of time stamp */
379         guint8  time_high;      /* high part of time stamp */
380         guint8  time_day;       /* time in days since start of capture */
381         gint16  size;           /* number of bytes of data */
382         guint8  fs;             /* frame error status bits */
383         guint8  flags;          /* buffer flags */
384         gint16  true_size;      /* size of original frame, in bytes */
385         guint8  chemical_x[22]; /* ? */
386 };
387
388 /*
389  * Network type values in some type 7 records.
390  *
391  * Captures with a major version number of 2 appear to have type 7
392  * records with text in them (at least one I have does).
393  *
394  * Captures with a major version of 4, and at least some captures with
395  * a major version of 5, have type 7 records with those values in the
396  * 5th byte.
397  *
398  * However, some captures with a major version number of 5 appear not to
399  * have type 7 records at all (at least one I have doesn't), but do appear
400  * to put non-zero values in the "rsvd" field of the version header (at
401  * least one I have does) - at least some other captures with smaller version
402  * numbers appear to put 0 there, so *maybe* that's where the network
403  * (sub)type is hidden in those captures.  The version 5 captures I've seen
404  * that *do* have type 7 records put 0 there, so it's not as if *all* V5
405  * captures have something in the "rsvd" field, however.
406  *
407  * The semantics of these network types is inferred from the Sniffer
408  * documentation, as they correspond to types described in the UI;
409  * in particular, see
410  *
411  *      http://www.mcafee.com/common/media/sniffer/support/sdos/operation.pdf
412  *
413  * starting at page 3-10 (56 of 496).
414  *
415  * XXX - I've seen X.25 captures with NET_ROUTER, and I've seen bridge/
416  * router captures with NET_HDLC.  Sigh....  Are those just captures for
417  * which the user set the wrong network type when capturing?
418  */
419 #define NET_SDLC        0       /* Probably "SDLC then SNA" */
420 #define NET_HDLC        1       /* Used for X.25; is it used for other
421                                    things as well, or is it "HDLC then
422                                    X.25", as referred to by the document
423                                    cited above, and only used for X.25? */
424 #define NET_FRAME_RELAY 2
425 #define NET_ROUTER      3       /* Probably "Router/Bridge", for various
426                                    point-to-point protocols for use between
427                                    bridges and routers, including PPP as well
428                                    as various proprietary protocols; also
429                                    used for ISDN, for reasons not obvious
430                                    to me, given that a Sniffer knows
431                                    whether it's using a WAN or an ISDN pod */
432 #define NET_PPP         4       /* "Asynchronous", which includes SLIP too */
433 #define NET_SMDS        5       /* Not mentioned in the document, but
434                                    that's a document for version 5.50 of
435                                    the Sniffer, and that version might use
436                                    version 5 in the file format and thus
437                                    might not be using type 7 records */
438
439 /*
440  * Values for V.timeunit, in picoseconds, so that they can be represented
441  * as integers.  These values must be < 2^(64-40); see below.
442  *
443  * XXX - at least some captures with a V.timeunit value of 2 show
444  * packets with time stamps in 2011 if the time stamp is interpreted
445  * to be in units of 15 microseconds.  The capture predates 2008,
446  * so that interpretation is probably wrong.  Perhaps the interpretation
447  * of V.timeunit depends on the version number of the file?
448  */
449 static const guint32 Psec[] = {
450         15000000,               /* 15.0 usecs = 15000000 psecs */
451           838096,               /* .838096 usecs = 838096 psecs */
452         15000000,               /* 15.0 usecs = 15000000 psecs */
453           500000,               /* 0.5 usecs = 500000 psecs */
454          2000000,               /* 2.0 usecs = 2000000 psecs */
455          1000000,               /* 1.0 usecs = 1000000 psecs */
456                                 /* XXX - Sniffer doc says 0.08 usecs = 80000 psecs */
457           100000                /* 0.1 usecs = 100000 psecs */
458 };
459 #define NUM_NGSNIFF_TIMEUNITS (sizeof Psec / sizeof Psec[0])
460
461 /* Information for a compressed Sniffer data stream. */
462 typedef struct {
463         unsigned char *buf;     /* buffer into which we uncompress data */
464         unsigned int nbytes;    /* number of bytes of data in that buffer */
465         int     nextout;        /* offset in that buffer of stream's current position */
466         gint64  comp_offset;    /* current offset in compressed data stream */
467         gint64  uncomp_offset;  /* current offset in uncompressed data stream */
468 } ngsniffer_comp_stream_t;
469
470 typedef struct {
471         guint   maj_vers;
472         guint   min_vers;
473         guint32 timeunit;
474         time_t  start;
475         guint   network;                /* network type */
476         ngsniffer_comp_stream_t seq;    /* sequential access */
477         ngsniffer_comp_stream_t rand;   /* random access */
478         GList   *first_blob;            /* list element for first blob */
479         GList   *last_blob;             /* list element for last blob */
480         GList   *current_blob;          /* list element for current blob */
481 } ngsniffer_t;
482
483 static int process_header_records(wtap *wth, int *err, gchar **err_info,
484     gint16 maj_vers, guint8 network);
485 static int process_rec_header2_v2(wtap *wth, unsigned char *buffer,
486     guint16 length, int *err, gchar **err_info);
487 static int process_rec_header2_v145(wtap *wth, unsigned char *buffer,
488     guint16 length, gint16 maj_vers, int *err, gchar **err_info);
489 static gboolean ngsniffer_read(wtap *wth, int *err, gchar **err_info,
490     gint64 *data_offset);
491 static gboolean ngsniffer_seek_read(wtap *wth, gint64 seek_off,
492     union wtap_pseudo_header *pseudo_header, guint8 *pd, int packet_size,
493     int *err, gchar **err_info);
494 static int ngsniffer_read_rec_header(wtap *wth, gboolean is_random,
495     guint16 *typep, guint16 *lengthp, int *err, gchar **err_info);
496 static gboolean ngsniffer_read_frame2(wtap *wth, gboolean is_random,
497     struct frame2_rec *frame2, int *err, gchar **err_info);
498 static void set_pseudo_header_frame2(wtap *wth,
499     union wtap_pseudo_header *pseudo_header, struct frame2_rec *frame2);
500 static gboolean ngsniffer_read_frame4(wtap *wth, gboolean is_random,
501     struct frame4_rec *frame4, int *err, gchar **err_info);
502 static void set_pseudo_header_frame4(union wtap_pseudo_header *pseudo_header,
503     struct frame4_rec *frame4);
504 static gboolean ngsniffer_read_frame6(wtap *wth, gboolean is_random,
505     struct frame6_rec *frame6, int *err, gchar **err_info);
506 static void set_pseudo_header_frame6(wtap *wth,
507     union wtap_pseudo_header *pseudo_header, struct frame6_rec *frame6);
508 static gboolean ngsniffer_read_rec_data(wtap *wth, gboolean is_random,
509     guint8 *pd, unsigned int length, int *err, gchar **err_info);
510 static int infer_pkt_encap(const guint8 *pd, int len);
511 static int fix_pseudo_header(int encap, const guint8 *pd, int len,
512     union wtap_pseudo_header *pseudo_header);
513 static void ngsniffer_sequential_close(wtap *wth);
514 static void ngsniffer_close(wtap *wth);
515 static gboolean ngsniffer_dump(wtap_dumper *wdh, const struct wtap_pkthdr *phdr,
516     const union wtap_pseudo_header *pseudo_header, const guint8 *pd, int *err);
517 static gboolean ngsniffer_dump_close(wtap_dumper *wdh, int *err);
518 static int SnifferDecompress( unsigned char * inbuf, size_t inlen,
519     unsigned char * outbuf, size_t outlen, int *err );
520 static gint64 ng_file_read(void *buffer, unsigned int nbytes, wtap *wth,
521     gboolean is_random, int *err, gchar **err_info);
522 static int read_blob(FILE_T infile, ngsniffer_comp_stream_t *comp_stream,
523     int *err, gchar **err_info);
524 static gint64 ng_file_seek_seq(wtap *wth, gint64 offset, int whence, int *err,
525     gchar **err_info);
526 static gint64 ng_file_seek_rand(wtap *wth, gint64 offset, int whence, int *err,
527     gchar **err_info);
528
529 int
530 ngsniffer_open(wtap *wth, int *err, gchar **err_info)
531 {
532         int bytes_read;
533         char magic[sizeof ngsniffer_magic];
534         char record_type[2];
535         char record_length[4]; /* only the first 2 bytes are length,
536                                   the last 2 are "reserved" and are thrown away */
537         guint16 type;
538         struct vers_rec version;
539         guint16 maj_vers;
540         guint16 start_date;
541 #if 0
542         guint16 start_time;
543 #endif
544         static const int sniffer_encap[] = {
545                 WTAP_ENCAP_TOKEN_RING,
546                 WTAP_ENCAP_ETHERNET,
547                 WTAP_ENCAP_ARCNET,
548                 WTAP_ENCAP_UNKNOWN,     /* StarLAN */
549                 WTAP_ENCAP_UNKNOWN,     /* PC Network broadband */
550                 WTAP_ENCAP_UNKNOWN,     /* LocalTalk */
551                 WTAP_ENCAP_UNKNOWN,     /* Znet */
552                 WTAP_ENCAP_PER_PACKET,  /* Internetwork analyzer (synchronous) */
553                 WTAP_ENCAP_PER_PACKET,  /* Internetwork analyzer (asynchronous) */
554                 WTAP_ENCAP_FDDI_BITSWAPPED,
555                 WTAP_ENCAP_ATM_PDUS
556         };
557         #define NUM_NGSNIFF_ENCAPS (sizeof sniffer_encap / sizeof sniffer_encap[0])
558         struct tm tm;
559         ngsniffer_t *ngsniffer;
560
561         /* Read in the string that should be at the start of a Sniffer file */
562         errno = WTAP_ERR_CANT_READ;
563         bytes_read = file_read(magic, sizeof magic, wth->fh);
564         if (bytes_read != sizeof magic) {
565                 *err = file_error(wth->fh, err_info);
566                 if (*err != 0)
567                         return -1;
568                 return 0;
569         }
570         wth->data_offset += sizeof magic;
571
572         if (memcmp(magic, ngsniffer_magic, sizeof ngsniffer_magic)) {
573                 return 0;
574         }
575
576         /*
577          * Read the first record, which the manual says is a version
578          * record.
579          */
580         errno = WTAP_ERR_CANT_READ;
581         bytes_read = file_read(record_type, 2, wth->fh);
582         if (bytes_read != 2) {
583                 *err = file_error(wth->fh, err_info);
584                 if (*err != 0)
585                         return -1;
586                 return 0;
587         }
588         wth->data_offset += 2;
589         bytes_read = file_read(record_length, 4, wth->fh);
590         if (bytes_read != 4) {
591                 *err = file_error(wth->fh, err_info);
592                 if (*err != 0)
593                         return -1;
594                 return 0;
595         }
596         wth->data_offset += 4;
597
598         type = pletohs(record_type);
599
600         if (type != REC_VERS) {
601                 *err = WTAP_ERR_BAD_RECORD;
602                 *err_info = g_strdup_printf("ngsniffer: Sniffer file doesn't start with a version record");
603                 return -1;
604         }
605
606         errno = WTAP_ERR_CANT_READ;
607         bytes_read = file_read(&version, sizeof version, wth->fh);
608         if (bytes_read != sizeof version) {
609                 *err = file_error(wth->fh, err_info);
610                 if (*err != 0)
611                         return -1;
612                 return 0;
613         }
614         wth->data_offset += sizeof version;
615
616         /* Check the data link type. */
617         if (version.network >= NUM_NGSNIFF_ENCAPS
618             || sniffer_encap[version.network] == WTAP_ENCAP_UNKNOWN) {
619                 *err = WTAP_ERR_UNSUPPORTED_ENCAP;
620                 *err_info = g_strdup_printf("ngsniffer: network type %u unknown or unsupported",
621                     version.network);
622                 return -1;
623         }
624
625         /* Check the time unit */
626         if (version.timeunit >= NUM_NGSNIFF_TIMEUNITS) {
627                 *err = WTAP_ERR_UNSUPPORTED;
628                 *err_info = g_strdup_printf("ngsniffer: Unknown timeunit %u", version.timeunit);
629                 return -1;
630         }
631
632         /* compressed or uncompressed Sniffer file? */
633         if (version.format != 1) {
634                 wth->file_type = WTAP_FILE_NGSNIFFER_COMPRESSED;
635
636         } else {
637                 wth->file_type = WTAP_FILE_NGSNIFFER_UNCOMPRESSED;
638         }
639
640         /* Set encap type before reading header records because the
641          * header record may change encap type.
642          */
643         wth->file_encap = sniffer_encap[version.network];
644
645         /*
646          * We don't know how to handle the remaining header record types,
647          * so we just skip them - except for REC_HEADER2 records, which
648          * we look at, for "Internetwork analyzer" captures, to attempt to
649          * determine what the link-layer encapsulation is.
650          *
651          * XXX - in some version 1.16 internetwork analyzer files
652          * generated by the Windows Sniffer when saving Windows
653          * Sniffer files as DOS Sniffer files, there's no REC_HEADER2
654          * record, but the first "rsvd" word is 1 for PRI ISDN files, 2
655          * for BRI ISDN files, and 0 for non-ISDN files; is that something
656          * the DOS Sniffer understands?
657          */
658         maj_vers = pletohs(&version.maj_vers);
659         if (process_header_records(wth, err, err_info, maj_vers,
660             version.network) < 0)
661                 return -1;
662         if ((version.network == NETWORK_SYNCHRO ||
663             version.network == NETWORK_ASYNC) &&
664             wth->file_encap == WTAP_ENCAP_PER_PACKET) {
665                 /*
666                  * Well, we haven't determined the internetwork analyzer
667                  * subtype yet...
668                  */
669                 switch (maj_vers) {
670
671                 case 1:
672                         /*
673                          * ... and this is a version 1 capture; look
674                          * at the first "rsvd" word.
675                          */
676                         switch (pletohs(&version.rsvd[0])) {
677
678                         case 1:
679                         case 2:
680                                 wth->file_encap = WTAP_ENCAP_ISDN;
681                                 break;
682                         }
683                         break;
684
685                 case 3:
686                         /*
687                          * ...and this is a version 3 capture; we've
688                          * seen nothing in those that obviously
689                          * indicates the capture type, but the only
690                          * one we've seen is a Frame Relay capture,
691                          * so mark it as Frame Relay for now.
692                          */
693                         wth->file_encap = WTAP_ENCAP_FRELAY_WITH_PHDR;
694                         break;
695                 }
696         }
697
698         /*
699          * Now, if we have a random stream open, position it to the same
700          * location, which should be the beginning of the real data, and
701          * should be the beginning of the compressed data.
702          *
703          * XXX - will we see any records other than REC_FRAME2, REC_FRAME4,
704          * or REC_EOF after this?  If not, we can get rid of the loop in
705          * "ngsniffer_read()".
706          */
707         if (wth->random_fh != NULL) {
708                 if (file_seek(wth->random_fh, wth->data_offset, SEEK_SET, err) == -1)
709                         return -1;
710         }
711
712         /* This is a ngsniffer file */
713         ngsniffer = (ngsniffer_t *)g_malloc(sizeof(ngsniffer_t));
714         wth->priv = (void *)ngsniffer;
715         ngsniffer->maj_vers = maj_vers;
716         ngsniffer->min_vers = pletohs(&version.min_vers);
717
718         /* We haven't allocated any uncompression buffers yet. */
719         ngsniffer->seq.buf = NULL;
720         ngsniffer->rand.buf = NULL;
721
722         /* Set the current file offset; the offset in the compressed file
723            and in the uncompressed data stream currently the same. */
724         ngsniffer->seq.uncomp_offset = wth->data_offset;
725         ngsniffer->seq.comp_offset = wth->data_offset;
726         ngsniffer->rand.uncomp_offset = wth->data_offset;
727         ngsniffer->rand.comp_offset = wth->data_offset;
728
729         /* We don't yet have any list of compressed blobs. */
730         ngsniffer->first_blob = NULL;
731         ngsniffer->last_blob = NULL;
732         ngsniffer->current_blob = NULL;
733
734         wth->subtype_read = ngsniffer_read;
735         wth->subtype_seek_read = ngsniffer_seek_read;
736         wth->subtype_sequential_close = ngsniffer_sequential_close;
737         wth->subtype_close = ngsniffer_close;
738         wth->snapshot_length = 0;       /* not available in header, only in frame */
739         ngsniffer->timeunit = Psec[version.timeunit];
740         ngsniffer->network = version.network;
741
742         /* Get capture start time */
743         start_date = pletohs(&version.date);
744         tm.tm_year = ((start_date&0xfe00)>>9) + 1980 - 1900;
745         tm.tm_mon = ((start_date&0x1e0)>>5) - 1;
746         tm.tm_mday = (start_date&0x1f);
747 #if 0
748         /* The time does not appear to act as an offset; only the date */
749         start_time = pletohs(&version.time);
750         tm.tm_hour = (start_time&0xf800)>>11;
751         tm.tm_min = (start_time&0x7e0)>>5;
752         tm.tm_sec = (start_time&0x1f)<<1;
753 #endif
754         tm.tm_hour = 0;
755         tm.tm_min = 0;
756         tm.tm_sec = 0;
757         tm.tm_isdst = -1;
758         ngsniffer->start = mktime(&tm);
759         /*
760          * XXX - what if "secs" is -1?  Unlikely,
761          * but if the capture was done in a time
762          * zone that switches between standard and
763          * summer time sometime other than when we
764          * do, and thus the time was one that doesn't
765          * exist here because a switch from standard
766          * to summer time zips over it, it could
767          * happen.
768          *
769          * On the other hand, if the capture was done
770          * in a different time zone, this won't work
771          * right anyway; unfortunately, the time zone
772          * isn't stored in the capture file.
773          */
774
775         wth->tsprecision = WTAP_FILE_TSPREC_NSEC;       /* XXX */
776
777         return 1;
778 }
779
780 static int
781 process_header_records(wtap *wth, int *err, gchar **err_info, gint16 maj_vers,
782     guint8 network)
783 {
784         int bytes_read;
785         char record_type[2];
786         char record_length[4]; /* only the first 2 bytes are length,
787                                   the last 2 are "reserved" and are thrown away */
788         guint16 type, length;
789         int bytes_to_read;
790         unsigned char buffer[256];
791
792         for (;;) {
793                 errno = WTAP_ERR_CANT_READ;
794                 bytes_read = file_read(record_type, 2, wth->fh);
795                 if (bytes_read != 2) {
796                         *err = file_error(wth->fh, err_info);
797                         if (*err != 0)
798                                 return -1;
799                         if (bytes_read != 0) {
800                                 *err = WTAP_ERR_SHORT_READ;
801                                 return -1;
802                         }
803                         return 0;       /* EOF */
804                 }
805
806                 type = pletohs(record_type);
807                 if ((type != REC_HEADER1) && (type != REC_HEADER2)
808                         && (type != REC_HEADER3) && (type != REC_HEADER4)
809                         && (type != REC_HEADER5) && (type != REC_HEADER6)
810                         && (type != REC_HEADER7)
811                         && ((type != REC_V2DESC) || (maj_vers > 2)) ) {
812                         /*
813                          * Well, this is either some unknown header type
814                          * (we ignore this case), an uncompressed data
815                          * frame or the length of a compressed blob
816                          * which implies data. Seek backwards over the
817                          * two bytes we read, and return.
818                          */
819                         if (file_seek(wth->fh, -2, SEEK_CUR, err) == -1)
820                                 return -1;
821                         return 0;
822                 }
823
824                 errno = WTAP_ERR_CANT_READ;
825                 bytes_read = file_read(record_length, 4, wth->fh);
826                 if (bytes_read != 4) {
827                         *err = file_error(wth->fh, err_info);
828                         if (*err == 0)
829                                 *err = WTAP_ERR_SHORT_READ;
830                         return -1;
831                 }
832                 wth->data_offset += 6;
833
834                 length = pletohs(record_length);
835
836                 /*
837                  * Is this is an "Internetwork analyzer" capture, and
838                  * is this a REC_HEADER2 record?
839                  *
840                  * If so, it appears to specify the particular type
841                  * of network we're on.
842                  *
843                  * XXX - handle sync and async differently?  (E.g.,
844                  * does this apply only to sync?)
845                  */
846                 if ((network == NETWORK_SYNCHRO || network == NETWORK_ASYNC) &&
847                     type == REC_HEADER2) {
848                         /*
849                          * Yes, get the first up-to-256 bytes of the
850                          * record data.
851                          */
852                         bytes_to_read = MIN(length, (int)sizeof buffer);
853                         bytes_read = file_read(buffer, bytes_to_read,
854                                 wth->fh);
855                         if (bytes_read != bytes_to_read) {
856                                 *err = file_error(wth->fh, err_info);
857                                 if (*err == 0) {
858                                         *err = WTAP_ERR_SHORT_READ;
859                                         return -1;
860                                 }
861                         }
862
863                         switch (maj_vers) {
864
865                         case 2:
866                                 if (process_rec_header2_v2(wth, buffer,
867                                     length, err, err_info) < 0)
868                                         return -1;
869                                 break;
870
871                         case 1:
872                         case 4:
873                         case 5:
874                                 if (process_rec_header2_v145(wth, buffer,
875                                     length, maj_vers, err, err_info) < 0)
876                                         return -1;
877                                 break;
878                         }
879
880                         /*
881                          * Skip the rest of the record.
882                          */
883                         if (length > sizeof buffer) {
884                                 if (file_seek(wth->fh, length - sizeof buffer,
885                                     SEEK_CUR, err) == -1)
886                                         return -1;
887                         }
888                 } else {
889                         /* Nope, just skip over the data. */
890                         if (file_seek(wth->fh, length, SEEK_CUR, err) == -1)
891                                 return -1;
892                 }
893                 wth->data_offset += length;
894         }
895 }
896
897 static int
898 process_rec_header2_v2(wtap *wth, unsigned char *buffer, guint16 length,
899     int *err, gchar **err_info)
900 {
901         static const char x_25_str[] = "HDLC\nX.25\n";
902
903         /*
904          * There appears to be a string in a REC_HEADER2 record, with
905          * a list of protocols.  In one X.25 capture I've seen, the
906          * string was "HDLC\nX.25\nCLNP\nISO_TP\nSESS\nPRES\nVTP\nACSE".
907          * Presumably CLNP and everything else is per-packet, but
908          * we assume "HDLC\nX.25\n" indicates that it's an X.25 capture.
909          */
910         if (length < sizeof x_25_str - 1) {
911                 /*
912                  * There's not enough data to compare.
913                  */
914                 *err = WTAP_ERR_UNSUPPORTED_ENCAP;
915                 *err_info = g_strdup_printf("ngsniffer: WAN capture has too-short protocol list");
916                 return -1;
917         }
918
919         if (strncmp((char *)buffer, x_25_str, sizeof x_25_str - 1) == 0) {
920                 /*
921                  * X.25.
922                  */
923                 wth->file_encap = WTAP_ENCAP_LAPB;
924         } else {
925                 *err = WTAP_ERR_UNSUPPORTED_ENCAP;
926                 *err_info = g_strdup_printf("ngsniffer: WAN capture protocol string %.*s unknown",
927                     length, buffer);
928                 return -1;
929         }
930         return 0;
931 }
932
933 static int
934 process_rec_header2_v145(wtap *wth, unsigned char *buffer, guint16 length,
935     gint16 maj_vers, int *err, gchar **err_info)
936 {
937         /*
938          * The 5th byte of the REC_HEADER2 record appears to be a
939          * network type.
940          */
941         if (length < 5) {
942                 /*
943                  * There is no 5th byte; give up.
944                  */
945                 *err = WTAP_ERR_UNSUPPORTED_ENCAP;
946                 *err_info = g_strdup("ngsniffer: WAN capture has no network subtype");
947                 return -1;
948         }
949
950         /*
951          * The X.25 captures I've seen have a type of NET_HDLC, and the
952          * Sniffer documentation seems to imply that it's used for
953          * X.25, although it could be used for other purposes as well.
954          *
955          * NET_ROUTER is used for all sorts of point-to-point protocols,
956          * including ISDN.  It appears, from the documentation, that the
957          * Sniffer attempts to infer the particular protocol by looking
958          * at the traffic; it's not clear whether it stores in the file
959          * an indication of the protocol it inferred was being used.
960          *
961          * Unfortunately, it also appears that NET_HDLC is used for
962          * stuff other than X.25 as well, so we can't just interpret
963          * it unconditionally as X.25.
964          *
965          * For now, we interpret both NET_HDLC and NET_ROUTER as "per-packet
966          * encapsulation".  We remember that we saw NET_ROUTER, though,
967          * as it appears that we can infer whether a packet is PPP or
968          * ISDN based on the channel number subfield of the frame error
969          * status bits - if it's 0, it's PPP, otherwise it's ISDN and
970          * the channel number indicates which channel it is.  We assume
971          * NET_HDLC isn't used for ISDN.
972          */
973         switch (buffer[4]) {
974
975         case NET_SDLC:
976                 wth->file_encap = WTAP_ENCAP_SDLC;
977                 break;
978
979         case NET_HDLC:
980                 wth->file_encap = WTAP_ENCAP_PER_PACKET;
981                 break;
982
983         case NET_FRAME_RELAY:
984                 wth->file_encap = WTAP_ENCAP_FRELAY_WITH_PHDR;
985                 break;
986
987         case NET_ROUTER:
988                 /*
989                  * For most of the version 4 capture files I've seen,
990                  * 0xfa in buffer[1] means the file is an ISDN capture,
991                  * but there's one PPP file with 0xfa there; does that
992                  * mean that the 0xfa has nothing to do with ISDN,
993                  * or is that just an ISDN file with no D channel
994                  * packets?  (The channel number is not 0 in any
995                  * of the packets, so perhaps it is.)
996                  *
997                  * For one version 5 ISDN capture I've seen, there's
998                  * a 0x01 in buffer[6]; none of the non-ISDN version
999                  * 5 captures have it.
1000                  */
1001                 wth->file_encap = WTAP_ENCAP_PER_PACKET;
1002                 switch (maj_vers) {
1003
1004                 case 4:
1005                         if (buffer[1] == 0xfa)
1006                                 wth->file_encap = WTAP_ENCAP_ISDN;
1007                         break;
1008
1009                 case 5:
1010                         if (length < 7) {
1011                                 /*
1012                                  * There is no 5th byte; give up.
1013                                  */
1014                                 *err = WTAP_ERR_UNSUPPORTED_ENCAP;
1015                                 *err_info = g_strdup("ngsniffer: WAN bridge/router capture has no ISDN flag");
1016                                 return -1;
1017                         }
1018                         if (buffer[6] == 0x01)
1019                                 wth->file_encap = WTAP_ENCAP_ISDN;
1020                         break;
1021                 }
1022                 break;
1023
1024         case NET_PPP:
1025                 wth->file_encap = WTAP_ENCAP_PPP_WITH_PHDR;
1026                 break;
1027
1028         default:
1029                 /*
1030                  * Reject these until we can figure them out.
1031                  */
1032                 *err = WTAP_ERR_UNSUPPORTED_ENCAP;
1033                 *err_info = g_strdup_printf("ngsniffer: WAN network subtype %u unknown or unsupported",
1034                     buffer[4]);
1035                 return -1;
1036         }
1037         return 0;
1038 }
1039
1040 /* Read the next packet */
1041 static gboolean
1042 ngsniffer_read(wtap *wth, int *err, gchar **err_info, gint64 *data_offset)
1043 {
1044         ngsniffer_t *ngsniffer;
1045         int     ret;
1046         guint16 type, length;
1047         struct frame2_rec frame2;
1048         struct frame4_rec frame4;
1049         struct frame6_rec frame6;
1050         guint16 time_low, time_med, true_size, size;
1051         guint8  time_high, time_day;
1052         guint64 t, tsecs, tpsecs;
1053         guint8  *pd;
1054
1055         ngsniffer = (ngsniffer_t *)wth->priv;
1056         for (;;) {
1057                 /*
1058                  * Read the record header.
1059                  */
1060                 *data_offset = wth->data_offset;
1061                 ret = ngsniffer_read_rec_header(wth, FALSE, &type, &length,
1062                     err, err_info);
1063                 if (ret <= 0) {
1064                         /* Read error or EOF */
1065                         return FALSE;
1066                 }
1067                 wth->data_offset += 6;
1068
1069                 switch (type) {
1070
1071                 case REC_FRAME2:
1072                         if (ngsniffer->network == NETWORK_ATM) {
1073                                 /*
1074                                  * We shouldn't get a frame2 record in
1075                                  * an ATM capture.
1076                                  */
1077                                 *err = WTAP_ERR_BAD_RECORD;
1078                                 *err_info = g_strdup("ngsniffer: REC_FRAME2 record in an ATM Sniffer file");
1079                                 return FALSE;
1080                         }
1081
1082                         /* Read the f_frame2_struct */
1083                         if (!ngsniffer_read_frame2(wth, FALSE, &frame2, err,
1084                             err_info)) {
1085                                 /* Read error */
1086                                 return FALSE;
1087                         }
1088                         wth->data_offset += sizeof frame2;
1089                         time_low = pletohs(&frame2.time_low);
1090                         time_med = pletohs(&frame2.time_med);
1091                         time_high = frame2.time_high;
1092                         time_day = frame2.time_day;
1093                         size = pletohs(&frame2.size);
1094                         true_size = pletohs(&frame2.true_size);
1095
1096                         length -= sizeof frame2;        /* we already read that much */
1097
1098                         set_pseudo_header_frame2(wth, &wth->pseudo_header,
1099                             &frame2);
1100                         goto found;
1101
1102                 case REC_FRAME4:
1103                         if (ngsniffer->network != NETWORK_ATM) {
1104                                 /*
1105                                  * We shouldn't get a frame2 record in
1106                                  * a non-ATM capture.
1107                                  */
1108                                 *err = WTAP_ERR_BAD_RECORD;
1109                                 *err_info = g_strdup("ngsniffer: REC_FRAME4 record in a non-ATM Sniffer file");
1110                                 return FALSE;
1111                         }
1112
1113                         /* Read the f_frame4_struct */
1114                         if (!ngsniffer_read_frame4(wth, FALSE, &frame4, err,
1115                             err_info)) {
1116                                 /* Read error */
1117                                 return FALSE;
1118                         }
1119                         wth->data_offset += sizeof frame4;
1120                         time_low = pletohs(&frame4.time_low);
1121                         time_med = pletohs(&frame4.time_med);
1122                         time_high = frame4.time_high;
1123                         time_day = frame4.time_day;
1124                         size = pletohs(&frame4.size);
1125                         true_size = pletohs(&frame4.true_size);
1126
1127                         /*
1128                          * XXX - it looks as if some version 4 captures have
1129                          * a bogus record length, based on the assumption
1130                          * that the record is a frame2 record.
1131                          */
1132                         if (ngsniffer->maj_vers >= 5)
1133                                 length -= sizeof frame4;        /* we already read that much */
1134                         else {
1135                                 if (ngsniffer->min_vers >= 95)
1136                                         length -= sizeof frame2;
1137                                 else
1138                                         length -= sizeof frame4;
1139                         }
1140
1141                         set_pseudo_header_frame4(&wth->pseudo_header, &frame4);
1142                         goto found;
1143
1144                 case REC_FRAME6:
1145                         /* Read the f_frame6_struct */
1146                         if (!ngsniffer_read_frame6(wth, FALSE, &frame6, err,
1147                             err_info)) {
1148                                 /* Read error */
1149                                 return FALSE;
1150                         }
1151                         wth->data_offset += sizeof frame6;
1152                         time_low = pletohs(&frame6.time_low);
1153                         time_med = pletohs(&frame6.time_med);
1154                         time_high = frame6.time_high;
1155                         time_day = frame6.time_day;
1156                         size = pletohs(&frame6.size);
1157                         true_size = pletohs(&frame6.true_size);
1158
1159                         length -= sizeof frame6;        /* we already read that much */
1160
1161                         set_pseudo_header_frame6(wth, &wth->pseudo_header,
1162                             &frame6);
1163                         goto found;
1164
1165                 case REC_EOF:
1166                         /*
1167                          * End of file.  Return an EOF indication.
1168                          */
1169                         *err = 0;       /* EOF, not error */
1170                         return FALSE;
1171
1172                 default:
1173                         break;  /* unknown type, skip it */
1174                 }
1175
1176                 /*
1177                  * Well, we don't know what it is, or we know what
1178                  * it is but can't handle it.  Skip past the data
1179                  * portion, and keep looping.
1180                  */
1181                 if (ng_file_seek_seq(wth, length, SEEK_CUR, err, err_info)
1182                     == -1)
1183                         return FALSE;
1184                 wth->data_offset += length;
1185         }
1186
1187 found:
1188         /*
1189          * OK, is the frame data size greater than than what's left of the
1190          * record?
1191          */
1192         if (size > length) {
1193                 /*
1194                  * Yes - treat this as an error.
1195                  */
1196                 *err = WTAP_ERR_BAD_RECORD;
1197                 *err_info = g_strdup("ngsniffer: Record length is less than packet size");
1198                 return FALSE;
1199         }
1200
1201         wth->phdr.len = true_size ? true_size : size;
1202         wth->phdr.caplen = size;
1203
1204         /*
1205          * Read the packet data.
1206          */
1207         buffer_assure_space(wth->frame_buffer, length);
1208         pd = buffer_start_ptr(wth->frame_buffer);
1209         if (!ngsniffer_read_rec_data(wth, FALSE, pd, length, err, err_info))
1210                 return FALSE;   /* Read error */
1211         wth->data_offset += length;
1212
1213         wth->phdr.pkt_encap = fix_pseudo_header(wth->file_encap, pd, length,
1214             &wth->pseudo_header);
1215
1216         /*
1217          * 40-bit time stamp, in units of timeunit picoseconds.
1218          */
1219         t = (((guint64)time_high)<<32) | (((guint64)time_med) << 16) | time_low;
1220
1221         /*
1222          * timeunit is always < 2^(64-40), so t * timeunit fits in 64
1223          * bits.  That gives a 64-bit time stamp, in units of
1224          * picoseconds.
1225          */
1226         t *= ngsniffer->timeunit;
1227
1228         /*
1229          * Convert to seconds and picoseconds.
1230          */
1231         tsecs = t/G_GINT64_CONSTANT(1000000000000U);
1232         tpsecs = t - tsecs*G_GINT64_CONSTANT(1000000000000U);
1233
1234         /*
1235          * Add in the time_day value (86400 seconds/day).
1236          */
1237         tsecs += time_day*86400;
1238
1239         /*
1240          * Add in the capture start time.
1241          */
1242         tsecs += ngsniffer->start;
1243
1244         wth->phdr.ts.secs = (time_t)tsecs;
1245         wth->phdr.ts.nsecs = (int)(tpsecs/1000);        /* psecs to nsecs */
1246         return TRUE;
1247 }
1248
1249 static gboolean
1250 ngsniffer_seek_read(wtap *wth, gint64 seek_off,
1251     union wtap_pseudo_header *pseudo_header, guint8 *pd, int packet_size,
1252     int *err, gchar **err_info)
1253 {
1254         int     ret;
1255         guint16 type, length;
1256         struct frame2_rec frame2;
1257         struct frame4_rec frame4;
1258         struct frame6_rec frame6;
1259
1260         if (ng_file_seek_rand(wth, seek_off, SEEK_SET, err, err_info) == -1)
1261                 return FALSE;
1262
1263         ret = ngsniffer_read_rec_header(wth, TRUE, &type, &length, err,
1264             err_info);
1265         if (ret <= 0) {
1266                 /* Read error or EOF */
1267                 if (ret == 0) {
1268                         /* EOF means "short read" in random-access mode */
1269                         *err = WTAP_ERR_SHORT_READ;
1270                 }
1271                 return FALSE;
1272         }
1273
1274         switch (type) {
1275
1276         case REC_FRAME2:
1277                 /* Read the f_frame2_struct */
1278                 if (!ngsniffer_read_frame2(wth, TRUE, &frame2, err, err_info)) {
1279                         /* Read error */
1280                         return FALSE;
1281                 }
1282
1283                 length -= sizeof frame2;        /* we already read that much */
1284
1285                 set_pseudo_header_frame2(wth, pseudo_header, &frame2);
1286                 break;
1287
1288         case REC_FRAME4:
1289                 /* Read the f_frame4_struct */
1290                 if (!ngsniffer_read_frame4(wth, TRUE, &frame4, err, err_info)) {
1291                         /* Read error */
1292                         return FALSE;
1293                 }
1294
1295                 length -= sizeof frame4;        /* we already read that much */
1296
1297                 set_pseudo_header_frame4(pseudo_header, &frame4);
1298                 break;
1299
1300         case REC_FRAME6:
1301                 /* Read the f_frame6_struct */
1302                 if (!ngsniffer_read_frame6(wth, TRUE, &frame6, err, err_info)) {
1303                         /* Read error */
1304                         return FALSE;
1305                 }
1306
1307                 length -= sizeof frame6;        /* we already read that much */
1308
1309                 set_pseudo_header_frame6(wth, pseudo_header, &frame6);
1310                 break;
1311
1312         default:
1313                 /*
1314                  * "Can't happen".
1315                  */
1316                 g_assert_not_reached();
1317                 return FALSE;
1318         }
1319
1320         /*
1321          * Got the pseudo-header (if any), now get the data.
1322          */
1323         if (!ngsniffer_read_rec_data(wth, TRUE, pd, packet_size, err, err_info))
1324                 return FALSE;
1325
1326         fix_pseudo_header(wth->file_encap, pd, packet_size, pseudo_header);
1327
1328         return TRUE;
1329 }
1330
1331 static int
1332 ngsniffer_read_rec_header(wtap *wth, gboolean is_random, guint16 *typep,
1333     guint16 *lengthp, int *err, gchar **err_info)
1334 {
1335         gint64  bytes_read;
1336         char    record_type[2];
1337         char    record_length[4]; /* only 1st 2 bytes are length */
1338
1339         /*
1340          * Read the record header.
1341          */
1342         bytes_read = ng_file_read(record_type, 2, wth, is_random, err,
1343             err_info);
1344         if (bytes_read != 2) {
1345                 if (*err != 0)
1346                         return -1;
1347                 if (bytes_read != 0) {
1348                         *err = WTAP_ERR_SHORT_READ;
1349                         return -1;
1350                 }
1351                 return 0;
1352         }
1353         bytes_read = ng_file_read(record_length, 4, wth, is_random, err,
1354             err_info);
1355         if (bytes_read != 4) {
1356                 if (*err == 0)
1357                         *err = WTAP_ERR_SHORT_READ;
1358                 return -1;
1359         }
1360
1361         *typep = pletohs(record_type);
1362         *lengthp = pletohs(record_length);
1363         return 1;       /* success */
1364 }
1365
1366 static gboolean
1367 ngsniffer_read_frame2(wtap *wth, gboolean is_random, struct frame2_rec *frame2,
1368     int *err, gchar **err_info)
1369 {
1370         gint64 bytes_read;
1371
1372         /* Read the f_frame2_struct */
1373         bytes_read = ng_file_read(frame2, (unsigned int)sizeof *frame2, wth,
1374             is_random, err, err_info);
1375         if (bytes_read != sizeof *frame2) {
1376                 if (*err == 0)
1377                         *err = WTAP_ERR_SHORT_READ;
1378                 return FALSE;
1379         }
1380         return TRUE;
1381 }
1382
1383 static void
1384 set_pseudo_header_frame2(wtap *wth, union wtap_pseudo_header *pseudo_header,
1385     struct frame2_rec *frame2)
1386 {
1387         /*
1388          * In one PPP "Internetwork analyzer" capture:
1389          *
1390          *      The only bit seen in "frame2.fs" is the 0x80 bit, which
1391          *      probably indicates the packet's direction; all other
1392          *      bits were zero.  The Expert Sniffer Network Analyzer
1393          *      5.50 Operations manual says that bit is the FS_DTE bit
1394          *      for async/PPP data.  The other bits are error bits
1395          *      plus bits indicating whether the frame is PPP or SLIP,
1396          *      but the PPP bit isn't set.
1397          *
1398          *      All bits in "frame2.flags" were zero.
1399          *
1400          * In one X.25 "Internetwork analyzer" capture:
1401          *
1402          *      The only bit seen in "frame2.fs" is the 0x80 bit, which
1403          *      probably indicates the packet's direction; all other
1404          *      bits were zero.
1405          *
1406          *      "frame2.flags" was always 0x18; however, the Sniffer
1407          *      manual says that just means that a display filter was
1408          *      calculated for the frame, and it should be displayed,
1409          *      so perhaps that's just a quirk of that particular capture.
1410          *
1411          * In one Ethernet capture:
1412          *
1413          *      "frame2.fs" was always 0; the Sniffer manual says they're
1414          *      error bits of various sorts.
1415          *
1416          *      "frame2.flags" was either 0 or 0x18, with no obvious
1417          *      correlation with anything.  See previous comment
1418          *      about display filters.
1419          *
1420          * In one Token Ring capture:
1421          *
1422          *      "frame2.fs" was either 0 or 0xcc; the Sniffer manual says
1423          *      nothing about those bits for Token Ring captures.
1424          *
1425          *      "frame2.flags" was either 0 or 0x18, with no obvious
1426          *      correlation with anything.  See previous comment
1427          *      about display filters.
1428          */
1429         switch (wth->file_encap) {
1430
1431         case WTAP_ENCAP_ETHERNET:
1432                 /*
1433                  * XXX - do we ever have an FCS?  If not, why do we often
1434                  * have 4 extra bytes of stuff at the end?  Do some
1435                  * PC Ethernet interfaces report the length including the
1436                  * FCS but not store the FCS in the packet, or do some
1437                  * Ethernet drivers work that way?
1438                  */
1439                 pseudo_header->eth.fcs_len = 0;
1440                 break;
1441
1442         case WTAP_ENCAP_PPP_WITH_PHDR:
1443         case WTAP_ENCAP_SDLC:
1444                 pseudo_header->p2p.sent = (frame2->fs & FS_WAN_DTE) ? TRUE : FALSE;
1445                 break;
1446
1447         case WTAP_ENCAP_LAPB:
1448         case WTAP_ENCAP_FRELAY_WITH_PHDR:
1449         case WTAP_ENCAP_PER_PACKET:
1450                 pseudo_header->x25.flags = (frame2->fs & FS_WAN_DTE) ? 0x00 : FROM_DCE;
1451                 break;
1452
1453         case WTAP_ENCAP_ISDN:
1454                 pseudo_header->isdn.uton = (frame2->fs & FS_WAN_DTE) ? FALSE : TRUE;
1455                 switch (frame2->fs & FS_ISDN_CHAN_MASK) {
1456
1457                 case FS_ISDN_CHAN_D:
1458                         pseudo_header->isdn.channel = 0;        /* D-channel */
1459                         break;
1460
1461                 case FS_ISDN_CHAN_B1:
1462                         pseudo_header->isdn.channel = 1;        /* B1-channel */
1463                         break;
1464
1465                 case FS_ISDN_CHAN_B2:
1466                         pseudo_header->isdn.channel = 2;        /* B2-channel */
1467                         break;
1468
1469                 default:
1470                         pseudo_header->isdn.channel = 30;       /* XXX */
1471                         break;
1472                 }
1473         }
1474 }
1475
1476 static gboolean
1477 ngsniffer_read_frame4(wtap *wth, gboolean is_random, struct frame4_rec *frame4,
1478     int *err, gchar **err_info)
1479 {
1480         gint64 bytes_read;
1481
1482         /* Read the f_frame4_struct */
1483         bytes_read = ng_file_read(frame4, (unsigned int)sizeof *frame4, wth,
1484             is_random, err, err_info);
1485         if (bytes_read != sizeof *frame4) {
1486                 if (*err == 0)
1487                         *err = WTAP_ERR_SHORT_READ;
1488                 return FALSE;
1489         }
1490         return TRUE;
1491 }
1492
1493 static void
1494 set_pseudo_header_frame4(union wtap_pseudo_header *pseudo_header,
1495     struct frame4_rec *frame4)
1496 {
1497         guint32 StatusWord;
1498         guint8 aal_type, hl_type;
1499         guint16 vpi, vci;
1500
1501         /*
1502          * Map flags from frame4.atm_info.StatusWord.
1503          */
1504         pseudo_header->atm.flags = 0;
1505         StatusWord = pletohl(&frame4->atm_info.StatusWord);
1506         if (StatusWord & SW_RAW_CELL)
1507                 pseudo_header->atm.flags |= ATM_RAW_CELL;
1508
1509         aal_type = frame4->atm_info.AppTrafType & ATT_AALTYPE;
1510         hl_type = frame4->atm_info.AppTrafType & ATT_HLTYPE;
1511         vpi = pletohs(&frame4->atm_info.Vpi);
1512         vci = pletohs(&frame4->atm_info.Vci);
1513
1514         switch (aal_type) {
1515
1516         case ATT_AAL_UNKNOWN:
1517                 /*
1518                  * Map ATT_AAL_UNKNOWN on VPI 0, VCI 5 to ATT_AAL_SIGNALLING,
1519                  * as that's the VPCI used for signalling.
1520                  *
1521                  * XXX - is this necessary, or will frames to 0/5 always
1522                  * have ATT_AAL_SIGNALLING?
1523                  */
1524                 if (vpi == 0 && vci == 5)
1525                         pseudo_header->atm.aal = AAL_SIGNALLING;
1526                 else
1527                         pseudo_header->atm.aal = AAL_UNKNOWN;
1528                 pseudo_header->atm.type = TRAF_UNKNOWN;
1529                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1530                 break;
1531
1532         case ATT_AAL1:
1533                 pseudo_header->atm.aal = AAL_1;
1534                 pseudo_header->atm.type = TRAF_UNKNOWN;
1535                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1536                 break;
1537
1538         case ATT_AAL3_4:
1539                 pseudo_header->atm.aal = AAL_3_4;
1540                 pseudo_header->atm.type = TRAF_UNKNOWN;
1541                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1542                 break;
1543
1544         case ATT_AAL5:
1545                 pseudo_header->atm.aal = AAL_5;
1546                 switch (hl_type) {
1547
1548                 case ATT_HL_UNKNOWN:
1549                         pseudo_header->atm.type = TRAF_UNKNOWN;
1550                         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1551                         break;
1552
1553                 case ATT_HL_LLCMX:
1554                         pseudo_header->atm.type = TRAF_LLCMX;
1555                         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1556                         break;
1557
1558                 case ATT_HL_VCMX:
1559                         pseudo_header->atm.type = TRAF_VCMX;
1560                         switch (frame4->atm_info.AppHLType) {
1561
1562                         case AHLT_UNKNOWN:
1563                                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1564                                 break;
1565
1566                         case AHLT_VCMX_802_3_FCS:
1567                                 pseudo_header->atm.subtype =
1568                                     TRAF_ST_VCMX_802_3_FCS;
1569                                 break;
1570
1571                         case AHLT_VCMX_802_4_FCS:
1572                                 pseudo_header->atm.subtype =
1573                                     TRAF_ST_VCMX_802_4_FCS;
1574                                 break;
1575
1576                         case AHLT_VCMX_802_5_FCS:
1577                                 pseudo_header->atm.subtype =
1578                                     TRAF_ST_VCMX_802_5_FCS;
1579                                 break;
1580
1581                         case AHLT_VCMX_FDDI_FCS:
1582                                 pseudo_header->atm.subtype =
1583                                     TRAF_ST_VCMX_FDDI_FCS;
1584                                 break;
1585
1586                         case AHLT_VCMX_802_6_FCS:
1587                                 pseudo_header->atm.subtype =
1588                                     TRAF_ST_VCMX_802_6_FCS;
1589                                 break;
1590
1591                         case AHLT_VCMX_802_3:
1592                                 pseudo_header->atm.subtype = TRAF_ST_VCMX_802_3;
1593                                 break;
1594
1595                         case AHLT_VCMX_802_4:
1596                                 pseudo_header->atm.subtype = TRAF_ST_VCMX_802_4;
1597                                 break;
1598
1599                         case AHLT_VCMX_802_5:
1600                                 pseudo_header->atm.subtype = TRAF_ST_VCMX_802_5;
1601                                 break;
1602
1603                         case AHLT_VCMX_FDDI:
1604                                 pseudo_header->atm.subtype = TRAF_ST_VCMX_FDDI;
1605                                 break;
1606
1607                         case AHLT_VCMX_802_6:
1608                                 pseudo_header->atm.subtype = TRAF_ST_VCMX_802_6;
1609                                 break;
1610
1611                         case AHLT_VCMX_FRAGMENTS:
1612                                 pseudo_header->atm.subtype =
1613                                     TRAF_ST_VCMX_FRAGMENTS;
1614                                 break;
1615
1616                         case AHLT_VCMX_BPDU:
1617                                 pseudo_header->atm.subtype = TRAF_ST_VCMX_BPDU;
1618                                 break;
1619
1620                         default:
1621                                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1622                                 break;
1623                         }
1624                         break;
1625
1626                 case ATT_HL_LANE:
1627                         pseudo_header->atm.type = TRAF_LANE;
1628                         switch (frame4->atm_info.AppHLType) {
1629
1630                         case AHLT_UNKNOWN:
1631                                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1632                                 break;
1633
1634                         case AHLT_LANE_LE_CTRL:
1635                                 pseudo_header->atm.subtype =
1636                                     TRAF_ST_LANE_LE_CTRL;
1637                                 break;
1638
1639                         case AHLT_LANE_802_3:
1640                                 pseudo_header->atm.subtype = TRAF_ST_LANE_802_3;
1641                                 break;
1642
1643                         case AHLT_LANE_802_5:
1644                                 pseudo_header->atm.subtype = TRAF_ST_LANE_802_5;
1645                                 break;
1646
1647                         case AHLT_LANE_802_3_MC:
1648                                 pseudo_header->atm.subtype =
1649                                     TRAF_ST_LANE_802_3_MC;
1650                                 break;
1651
1652                         case AHLT_LANE_802_5_MC:
1653                                 pseudo_header->atm.subtype =
1654                                     TRAF_ST_LANE_802_5_MC;
1655                                 break;
1656
1657                         default:
1658                                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1659                                 break;
1660                         }
1661                         break;
1662
1663                 case ATT_HL_ILMI:
1664                         pseudo_header->atm.type = TRAF_ILMI;
1665                         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1666                         break;
1667
1668                 case ATT_HL_FRMR:
1669                         pseudo_header->atm.type = TRAF_FR;
1670                         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1671                         break;
1672
1673                 case ATT_HL_SPANS:
1674                         pseudo_header->atm.type = TRAF_SPANS;
1675                         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1676                         break;
1677
1678                 case ATT_HL_IPSILON:
1679                         pseudo_header->atm.type = TRAF_IPSILON;
1680                         switch (frame4->atm_info.AppHLType) {
1681
1682                         case AHLT_UNKNOWN:
1683                                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1684                                 break;
1685
1686                         case AHLT_IPSILON_FT0:
1687                                 pseudo_header->atm.subtype =
1688                                     TRAF_ST_IPSILON_FT0;
1689                                 break;
1690
1691                         case AHLT_IPSILON_FT1:
1692                                 pseudo_header->atm.subtype =
1693                                     TRAF_ST_IPSILON_FT1;
1694                                 break;
1695
1696                         case AHLT_IPSILON_FT2:
1697                                 pseudo_header->atm.subtype =
1698                                     TRAF_ST_IPSILON_FT2;
1699                                 break;
1700
1701                         default:
1702                                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1703                                 break;
1704                         }
1705                         break;
1706
1707                 default:
1708                         pseudo_header->atm.type = TRAF_UNKNOWN;
1709                         pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1710                         break;
1711                 }
1712                 break;
1713
1714         case ATT_AAL_USER:
1715                 pseudo_header->atm.aal = AAL_USER;
1716                 pseudo_header->atm.type = TRAF_UNKNOWN;
1717                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1718                 break;
1719
1720         case ATT_AAL_SIGNALLING:
1721                 pseudo_header->atm.aal = AAL_SIGNALLING;
1722                 pseudo_header->atm.type = TRAF_UNKNOWN;
1723                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1724                 break;
1725
1726         case ATT_OAMCELL:
1727                 pseudo_header->atm.aal = AAL_OAMCELL;
1728                 pseudo_header->atm.type = TRAF_UNKNOWN;
1729                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1730                 break;
1731
1732         default:
1733                 pseudo_header->atm.aal = AAL_UNKNOWN;
1734                 pseudo_header->atm.type = TRAF_UNKNOWN;
1735                 pseudo_header->atm.subtype = TRAF_ST_UNKNOWN;
1736                 break;
1737         }
1738         pseudo_header->atm.vpi = vpi;
1739         pseudo_header->atm.vci = vci;
1740         pseudo_header->atm.channel = pletohs(&frame4->atm_info.channel);
1741         pseudo_header->atm.cells = pletohs(&frame4->atm_info.cells);
1742         pseudo_header->atm.aal5t_u2u = pletohs(&frame4->atm_info.Trailer.aal5t_u2u);
1743         pseudo_header->atm.aal5t_len = pletohs(&frame4->atm_info.Trailer.aal5t_len);
1744         pseudo_header->atm.aal5t_chksum = pntohl(&frame4->atm_info.Trailer.aal5t_chksum);
1745 }
1746
1747 static gboolean
1748 ngsniffer_read_frame6(wtap *wth, gboolean is_random, struct frame6_rec *frame6,
1749     int *err, gchar **err_info)
1750 {
1751         gint64 bytes_read;
1752
1753         /* Read the f_frame6_struct */
1754         bytes_read = ng_file_read(frame6, (unsigned int)sizeof *frame6, wth,
1755             is_random, err, err_info);
1756         if (bytes_read != sizeof *frame6) {
1757                 if (*err == 0)
1758                         *err = WTAP_ERR_SHORT_READ;
1759                 return FALSE;
1760         }
1761         return TRUE;
1762 }
1763
1764 static void
1765 set_pseudo_header_frame6(wtap *wth, union wtap_pseudo_header *pseudo_header,
1766     struct frame6_rec *frame6 _U_)
1767 {
1768         /* XXX - Once the frame format is divined, something will most likely go here */
1769
1770         switch (wth->file_encap) {
1771
1772         case WTAP_ENCAP_ETHERNET:
1773                 /* XXX - is there an FCS? */
1774                 pseudo_header->eth.fcs_len = -1;
1775                 break;
1776         }
1777 }
1778
1779 static gboolean
1780 ngsniffer_read_rec_data(wtap *wth, gboolean is_random, guint8 *pd,
1781     unsigned int length, int *err, gchar **err_info)
1782 {
1783         gint64  bytes_read;
1784
1785         bytes_read = ng_file_read(pd, length, wth, is_random, err, err_info);
1786
1787         if (bytes_read != (gint64) length) {
1788                 if (*err == 0)
1789                         *err = WTAP_ERR_SHORT_READ;
1790                 return FALSE;
1791         }
1792         return TRUE;
1793 }
1794
1795 /*
1796  * OK, this capture is from an "Internetwork analyzer", and we either
1797  * didn't see a type 7 record or it had a network type such as NET_HDLC
1798  * that doesn't tell us which *particular* HDLC derivative this is;
1799  * let's look at the first few bytes of the packet, a pointer to which
1800  * was passed to us as an argument, and see whether it looks like PPP,
1801  * Frame Relay, Wellfleet HDLC, Cisco HDLC, or LAPB - or, if it's none
1802  * of those, assume it's LAPD.
1803  *
1804  * (XXX - are there any "Internetwork analyzer" captures that don't
1805  * have type 7 records?  If so, is there some other field that will
1806  * tell us what type of capture it is?)
1807  */
1808 static int
1809 infer_pkt_encap(const guint8 *pd, int len)
1810 {
1811         int i;
1812
1813         if (len <= 0) {
1814                 /*
1815                  * Nothing to infer, but it doesn't matter how you
1816                  * dissect an empty packet.  Let's just say PPP.
1817                  */
1818                 return WTAP_ENCAP_PPP_WITH_PHDR;
1819         }
1820
1821         if (pd[0] == 0xFF) {
1822                 /*
1823                  * PPP.  (XXX - check for 0xFF 0x03?)
1824                  */
1825                 return WTAP_ENCAP_PPP_WITH_PHDR;
1826         }
1827
1828         if (len >= 2) {
1829                 if (pd[0] == 0x07 && pd[1] == 0x03) {
1830                         /*
1831                          * Wellfleet HDLC.
1832                          */
1833                         return WTAP_ENCAP_WFLEET_HDLC;
1834                 } else if ((pd[0] == 0x0F && pd[1] == 0x00) ||
1835                            (pd[0] == 0x8F && pd[1] == 0x00)) {
1836                         /*
1837                          * Cisco HDLC.
1838                          */
1839                         return WTAP_ENCAP_CHDLC_WITH_PHDR;
1840                 }
1841
1842                 /*
1843                  * Check for Frame Relay.  Look for packets with at least
1844                  * 3 bytes of header - 2 bytes of DLCI followed by 1 byte
1845                  * of control, which, for now, we require to be 0x03 (UI),
1846                  * although there might be other frame types as well.
1847                  * Scan forward until we see the last DLCI byte, with
1848                  * the low-order bit being 1, and then check the next
1849                  * byte to see if it's a control byte.
1850                  *
1851                  * XXX - in version 4 and 5 captures, wouldn't this just
1852                  * have a capture subtype of NET_FRAME_RELAY?  Or is this
1853                  * here only to handle other versions of the capture
1854                  * file, where we might just not yet have found where
1855                  * the subtype is specified in the capture?
1856                  *
1857                  * Bay^H^H^HNortel Networks has a mechanism in the Optivity
1858                  * software for some of their routers to save captures
1859                  * in Sniffer format; they use a version number of 4.9, but
1860                  * don't put out any header records before the first FRAME2
1861                  * record.  That means we have to use heuristics to guess
1862                  * what type of packet we have.
1863                  */
1864                 for (i = 0; i < len && (pd[i] & 0x01) == 0; i++)
1865                         ;
1866                 i++;    /* advance to the byte after the last DLCI byte */
1867                 if (i == len) {
1868                         /*
1869                          * No control byte.
1870                          */
1871                         return WTAP_ENCAP_LAPB;
1872                 }
1873                 if (pd[i] == 0x03)
1874                         return WTAP_ENCAP_FRELAY_WITH_PHDR;
1875         }
1876
1877         /*
1878          * Assume LAPB, for now.  If we support other HDLC encapsulations,
1879          * we can check whether the low-order bit of the first byte is
1880          * set (as it should be for LAPB) if no other checks pass.
1881          *
1882          * Or, if it's truly impossible to distinguish ISDN from non-ISDN
1883          * captures, we could assume it's ISDN if it's not anything
1884          * else.
1885          */
1886         return WTAP_ENCAP_LAPB;
1887 }
1888
1889 static int
1890 fix_pseudo_header(int encap, const guint8 *pd, int len,
1891     union wtap_pseudo_header *pseudo_header)
1892 {
1893         switch (encap) {
1894
1895         case WTAP_ENCAP_PER_PACKET:
1896                 /*
1897                  * Infer the packet type from the first two bytes.
1898                  */
1899                 encap = infer_pkt_encap(pd, len);
1900
1901                 /*
1902                  * Fix up the pseudo-header to match the new
1903                  * encapsulation type.
1904                  */
1905                 switch (encap) {
1906
1907                 case WTAP_ENCAP_WFLEET_HDLC:
1908                 case WTAP_ENCAP_CHDLC_WITH_PHDR:
1909                 case WTAP_ENCAP_PPP_WITH_PHDR:
1910                         if (pseudo_header->x25.flags == 0)
1911                                 pseudo_header->p2p.sent = TRUE;
1912                         else
1913                                 pseudo_header->p2p.sent = FALSE;
1914                         break;
1915
1916                 case WTAP_ENCAP_ISDN:
1917                         if (pseudo_header->x25.flags == 0x00)
1918                                 pseudo_header->isdn.uton = FALSE;
1919                         else
1920                                 pseudo_header->isdn.uton = TRUE;
1921
1922                         /*
1923                          * XXX - this is currently a per-packet
1924                          * encapsulation type, and we can't determine
1925                          * whether a capture is an ISDN capture before
1926                          * seeing any packets, and B-channel PPP packets
1927                          * look like PPP packets and are given
1928                          * WTAP_ENCAP_PPP_WITH_PHDR, not WTAP_ENCAP_ISDN,
1929                          * so we assume this is a D-channel packet and
1930                          * thus give it a channel number of 0.
1931                          */
1932                         pseudo_header->isdn.channel = 0;
1933                         break;
1934                 }
1935                 break;
1936
1937         case WTAP_ENCAP_ATM_PDUS:
1938                 /*
1939                  * If the Windows Sniffer writes out one of its ATM
1940                  * capture files in DOS Sniffer format, it doesn't
1941                  * distinguish between LE Control and LANE encapsulated
1942                  * LAN frames, it just marks them as LAN frames,
1943                  * so we fix that up here.
1944                  *
1945                  * I've also seen DOS Sniffer captures claiming that
1946                  * LANE packets that *don't* start with FF 00 are
1947                  * marked as LE Control frames, so we fix that up
1948                  * as well.
1949                  */
1950                 if (pseudo_header->atm.type == TRAF_LANE && len >= 2) {
1951                         if (pd[0] == 0xff && pd[1] == 0x00) {
1952                                 /*
1953                                  * This must be LE Control.
1954                                  */
1955                                 pseudo_header->atm.subtype =
1956                                     TRAF_ST_LANE_LE_CTRL;
1957                         } else {
1958                                 /*
1959                                  * This can't be LE Control.
1960                                  */
1961                                 if (pseudo_header->atm.subtype ==
1962                                     TRAF_ST_LANE_LE_CTRL) {
1963                                         /*
1964                                          * XXX - Ethernet or Token Ring?
1965                                          */
1966                                         pseudo_header->atm.subtype =
1967                                             TRAF_ST_LANE_802_3;
1968                                 }
1969                         }
1970                 }
1971                 break;
1972         }
1973         return encap;
1974 }
1975
1976 /* Throw away the buffers used by the sequential I/O stream, but not
1977    those used by the random I/O stream. */
1978 static void
1979 ngsniffer_sequential_close(wtap *wth)
1980 {
1981         ngsniffer_t *ngsniffer;
1982
1983         ngsniffer = (ngsniffer_t *)wth->priv;
1984         if (ngsniffer->seq.buf != NULL) {
1985                 g_free(ngsniffer->seq.buf);
1986                 ngsniffer->seq.buf = NULL;
1987         }
1988 }
1989
1990 static void
1991 free_blob(gpointer data, gpointer user_data _U_)
1992 {
1993         g_free(data);
1994 }
1995
1996 /* Close stuff used by the random I/O stream, if any, and free up any
1997    private data structures.  (If there's a "sequential_close" routine
1998    for a capture file type, it'll be called before the "close" routine
1999    is called, so we don't have to free the sequential buffer here.) */
2000 static void
2001 ngsniffer_close(wtap *wth)
2002 {
2003         ngsniffer_t *ngsniffer;
2004
2005         ngsniffer = (ngsniffer_t *)wth->priv;
2006         if (ngsniffer->rand.buf != NULL)
2007                 g_free(ngsniffer->rand.buf);
2008         if (ngsniffer->first_blob != NULL) {
2009                 g_list_foreach(ngsniffer->first_blob, free_blob, NULL);
2010                 g_list_free(ngsniffer->first_blob);
2011         }
2012 }
2013
2014 typedef struct {
2015         gboolean first_frame;
2016         time_t start;
2017 } ngsniffer_dump_t;
2018
2019 static const int wtap_encap[] = {
2020         -1,             /* WTAP_ENCAP_UNKNOWN -> unsupported */
2021         1,              /* WTAP_ENCAP_ETHERNET */
2022         0,              /* WTAP_ENCAP_TOKEN_RING */
2023         -1,             /* WTAP_ENCAP_SLIP -> unsupported */
2024         7,              /* WTAP_ENCAP_PPP -> Internetwork analyzer (synchronous) FIXME ! */
2025         9,              /* WTAP_ENCAP_FDDI */
2026         9,              /* WTAP_ENCAP_FDDI_BITSWAPPED */
2027         -1,             /* WTAP_ENCAP_RAW_IP -> unsupported */
2028         2,              /* WTAP_ENCAP_ARCNET */
2029         -1,             /* WTAP_ENCAP_ATM_RFC1483 */
2030         -1,             /* WTAP_ENCAP_LINUX_ATM_CLIP */
2031         7,              /* WTAP_ENCAP_LAPB -> Internetwork analyzer (synchronous) */
2032         -1,             /* WTAP_ENCAP_ATM_PDUS */
2033         -1,             /* WTAP_ENCAP_NULL -> unsupported */
2034         -1,             /* WTAP_ENCAP_ASCEND -> unsupported */
2035         -1,             /* WTAP_ENCAP_ISDN -> unsupported */
2036         -1,             /* WTAP_ENCAP_IP_OVER_FC -> unsupported */
2037         7,              /* WTAP_ENCAP_PPP_WITH_PHDR -> Internetwork analyzer (synchronous) FIXME ! */
2038 };
2039 #define NUM_WTAP_ENCAPS (sizeof wtap_encap / sizeof wtap_encap[0])
2040
2041 /* Returns 0 if we could write the specified encapsulation type,
2042    an error indication otherwise. */
2043 int
2044 ngsniffer_dump_can_write_encap(int encap)
2045 {
2046         /* Per-packet encapsulations aren't supported. */
2047         if (encap == WTAP_ENCAP_PER_PACKET)
2048                 return WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED;
2049
2050         if (encap < 0 || (unsigned)encap >= NUM_WTAP_ENCAPS || wtap_encap[encap] == -1)
2051                 return WTAP_ERR_UNSUPPORTED_ENCAP;
2052
2053         return 0;
2054 }
2055
2056 /* Returns TRUE on success, FALSE on failure; sets "*err" to an error code on
2057    failure */
2058 gboolean
2059 ngsniffer_dump_open(wtap_dumper *wdh, int *err)
2060 {
2061         ngsniffer_dump_t *ngsniffer;
2062         char buf[6] = {REC_VERS, 0x00, 0x12, 0x00, 0x00, 0x00}; /* version record */
2063
2064         /* This is a sniffer file */
2065         wdh->subtype_write = ngsniffer_dump;
2066         wdh->subtype_close = ngsniffer_dump_close;
2067
2068         ngsniffer = (ngsniffer_dump_t *)g_malloc(sizeof(ngsniffer_dump_t));
2069         wdh->priv = (void *)ngsniffer;
2070         ngsniffer->first_frame = TRUE;
2071         ngsniffer->start = 0;
2072
2073         /* Write the file header. */
2074         if (!wtap_dump_file_write(wdh, ngsniffer_magic, sizeof ngsniffer_magic,
2075                                   err))
2076                 return FALSE;
2077         if (!wtap_dump_file_write(wdh, buf, 6, err))
2078                 return FALSE;
2079
2080         return TRUE;
2081 }
2082
2083 /* Write a record for a packet to a dump file.
2084    Returns TRUE on success, FALSE on failure. */
2085 static gboolean
2086 ngsniffer_dump(wtap_dumper *wdh, const struct wtap_pkthdr *phdr,
2087                const union wtap_pseudo_header *pseudo_header, const guint8 *pd, int *err)
2088 {
2089         ngsniffer_dump_t *ngsniffer = (ngsniffer_dump_t *)wdh->priv;
2090         struct frame2_rec rec_hdr;
2091         char buf[6];
2092         time_t tsecs;
2093         guint64 t;
2094         guint16 t_low, t_med;
2095         guint8 t_high;
2096         struct vers_rec version;
2097         gint16 maj_vers, min_vers;
2098         guint16 start_date;
2099         struct tm *tm;
2100
2101         /* Sniffer files have a capture start date in the file header, and
2102            have times relative to the beginning of that day in the packet
2103            headers; pick the date of the first packet as the capture start
2104            date. */
2105         if (ngsniffer->first_frame) {
2106                 ngsniffer->first_frame=FALSE;
2107                 tm = localtime(&phdr->ts.secs);
2108                 if (tm != NULL) {
2109                         start_date = (tm->tm_year - (1980 - 1900)) << 9;
2110                         start_date |= (tm->tm_mon + 1) << 5;
2111                         start_date |= tm->tm_mday;
2112                         /* record the start date, not the start time */
2113                         ngsniffer->start = phdr->ts.secs - (3600*tm->tm_hour + 60*tm->tm_min + tm->tm_sec);
2114                 } else {
2115                         start_date = 0;
2116                         ngsniffer->start = 0;
2117                 }
2118
2119                 /* "sniffer" version ? */
2120                 maj_vers = 4;
2121                 min_vers = 0;
2122                 version.maj_vers = htoles(maj_vers);
2123                 version.min_vers = htoles(min_vers);
2124                 version.time = 0;
2125                 version.date = htoles(start_date);
2126                 version.type = 4;
2127                 version.network = wtap_encap[wdh->encap];
2128                 version.format = 1;
2129                 version.timeunit = 1; /* 0.838096 */
2130                 version.cmprs_vers = 0;
2131                 version.cmprs_level = 0;
2132                 version.rsvd[0] = 0;
2133                 version.rsvd[1] = 0;
2134                 if (!wtap_dump_file_write(wdh, &version, sizeof version, err))
2135                         return FALSE;
2136         }
2137
2138         buf[0] = REC_FRAME2;
2139         buf[1] = 0x00;
2140         buf[2] = (char)((phdr->caplen + sizeof(struct frame2_rec))%256);
2141         buf[3] = (char)((phdr->caplen + sizeof(struct frame2_rec))/256);
2142         buf[4] = 0x00;
2143         buf[5] = 0x00;
2144         if (!wtap_dump_file_write(wdh, buf, 6, err))
2145                 return FALSE;
2146         /* Seconds since the start of the capture */
2147         tsecs = phdr->ts.secs - ngsniffer->start;
2148         /* Extract the number of days since the start of the capture */
2149         rec_hdr.time_day = (guint8)(tsecs / 86400);     /* # days of capture - 86400 secs/day */
2150         tsecs -= rec_hdr.time_day * 86400;      /* time within day */
2151         /* Convert to picoseconds */
2152         t = tsecs*G_GINT64_CONSTANT(1000000000000U) +
2153                 phdr->ts.nsecs*G_GINT64_CONSTANT(1000U);
2154         /* Convert to units of timeunit = 1 */
2155         t /= Psec[1];
2156         t_low = (guint16)((t >> 0) & 0xFFFF);
2157         t_med = (guint16)((t >> 16) & 0xFFFF);
2158         t_high = (guint8)((t >> 32) & 0xFF);
2159         rec_hdr.time_low = htoles(t_low);
2160         rec_hdr.time_med = htoles(t_med);
2161         rec_hdr.time_high = t_high;
2162         rec_hdr.size = htoles(phdr->caplen);
2163         switch (wdh->encap) {
2164
2165         case WTAP_ENCAP_LAPB:
2166         case WTAP_ENCAP_FRELAY_WITH_PHDR:
2167                 rec_hdr.fs = (pseudo_header->x25.flags & FROM_DCE) ? 0x00 : FS_WAN_DTE;
2168                 break;
2169
2170         case WTAP_ENCAP_PPP_WITH_PHDR:
2171         case WTAP_ENCAP_SDLC:
2172                 rec_hdr.fs = pseudo_header->p2p.sent ? 0x00 : FS_WAN_DTE;
2173                 break;
2174
2175         case WTAP_ENCAP_ISDN:
2176                 rec_hdr.fs = pseudo_header->isdn.uton ? FS_WAN_DTE : 0x00;
2177                 switch (pseudo_header->isdn.channel) {
2178
2179                 case 0:         /* D-channel */
2180                         rec_hdr.fs |= FS_ISDN_CHAN_D;
2181                         break;
2182
2183                 case 1:         /* B1-channel */
2184                         rec_hdr.fs |= FS_ISDN_CHAN_B1;
2185                         break;
2186
2187                 case 2:         /* B2-channel */
2188                         rec_hdr.fs |= FS_ISDN_CHAN_B2;
2189                         break;
2190                 }
2191                 break;
2192
2193         default:
2194                 rec_hdr.fs = 0;
2195                 break;
2196         }
2197         rec_hdr.flags = 0;
2198         rec_hdr.true_size = phdr->len != phdr->caplen ? htoles(phdr->len) : 0;
2199         rec_hdr.rsvd = 0;
2200         if (!wtap_dump_file_write(wdh, &rec_hdr, sizeof rec_hdr, err))
2201                 return FALSE;
2202         if (!wtap_dump_file_write(wdh, pd, phdr->caplen, err))
2203                 return FALSE;
2204         return TRUE;
2205 }
2206
2207 /* Finish writing to a dump file.
2208    Returns TRUE on success, FALSE on failure. */
2209 static gboolean
2210 ngsniffer_dump_close(wtap_dumper *wdh, int *err)
2211 {
2212         /* EOF record */
2213         char buf[6] = {REC_EOF, 0x00, 0x00, 0x00, 0x00, 0x00};
2214
2215         if (!wtap_dump_file_write(wdh, buf, 6, err))
2216                 return FALSE;
2217         return TRUE;
2218 }
2219
2220 /*
2221    SnifferDecompress() decompresses a blob of compressed data from a
2222    Sniffer(R) capture file.
2223
2224    This function is Copyright (c) 1999-2999 Tim Farley
2225
2226    Parameters
2227       inbuf - buffer of compressed bytes from file, not including
2228               the preceding length word
2229       inlen - length of inbuf in bytes (max 64k)
2230       outbuf - decompressed contents, could contain a partial Sniffer
2231               record at the end.
2232       outlen - length of outbuf.
2233
2234    Return value is the number of bytes in outbuf on return.
2235 */
2236 static int
2237 SnifferDecompress(unsigned char *inbuf, size_t inlen, unsigned char *outbuf,
2238                   size_t outlen, int *err)
2239 {
2240         unsigned char * pin  = inbuf;
2241         unsigned char * pout = outbuf;
2242         unsigned char * pin_end  = pin + inlen;
2243         unsigned char * pout_end = pout + outlen;
2244         unsigned int bit_mask;      /* one bit is set in this, to mask with bit_value */
2245         unsigned int bit_value = 0; /* cache the last 16 coding bits we retrieved */
2246         unsigned int code_type;     /* encoding type, from high 4 bits of byte */
2247         unsigned int code_low;      /* other 4 bits from encoding byte */
2248         int length;                 /* length of RLE sequence or repeated string */
2249         int offset;                 /* offset of string to repeat */
2250
2251         if (inlen > G_MAXUINT16) {
2252                 return ( -1 );
2253         }
2254
2255         bit_mask  = 0;  /* don't have any bits yet */
2256         while (1)
2257         {
2258                 /* Shift down the bit mask we use to see whats encoded */
2259                 bit_mask = bit_mask >> 1;
2260
2261                 /* If there are no bits left, time to get another 16 bits */
2262                 if ( 0 == bit_mask )
2263                 {
2264                         bit_mask  = 0x8000;  /* start with the high bit */
2265                         bit_value = pletohs(pin);   /* get the next 16 bits */
2266                         pin += 2;          /* skip over what we just grabbed */
2267                         if ( pin >= pin_end )
2268                         {
2269                                 *err = WTAP_ERR_UNC_TRUNCATED;   /* data was oddly truncated */
2270                                 return ( -1 );
2271                         }
2272                 }
2273
2274                 /* Use the bits in bit_value to see what's encoded and what is raw data */
2275                 if ( !(bit_mask & bit_value) )
2276                 {
2277                         /* bit not set - raw byte we just copy */
2278                         *(pout++) = *(pin++);
2279                 }
2280                 else
2281                 {
2282                         /* bit set - next item is encoded.  Peel off high nybble
2283                            of next byte to see the encoding type.  Set aside low
2284                            nybble while we are at it */
2285                         code_type = (unsigned int) ((*pin) >> 4 ) & 0xF;
2286                         code_low  = (unsigned int) ((*pin) & 0xF );
2287                         pin++;   /* increment over the code byte we just retrieved */
2288                         if ( pin >= pin_end )
2289                         {
2290                                 *err = WTAP_ERR_UNC_TRUNCATED;   /* data was oddly truncated */
2291                                 return ( -1 );
2292                         }
2293
2294                         /* Based on the code type, decode the compressed string */
2295                         switch ( code_type )
2296                         {
2297                         case 0  :   /* RLE short runs */
2298                                 /*
2299                                   Run length is the low nybble of the first code byte.
2300                                   Byte to repeat immediately follows.
2301                                   Total code size: 2 bytes.
2302                                 */
2303                                 length = code_low + 3;
2304                                 /* If length would put us past end of output, avoid overflow */
2305                                 if ( pout + length > pout_end )
2306                                 {
2307                                         *err = WTAP_ERR_UNC_OVERFLOW;
2308                                         return ( -1 );
2309                                 }
2310
2311                                 /* generate the repeated series of bytes */
2312                                 memset( pout, *pin++, length );
2313                                 pout += length;
2314                                 break;
2315                         case 1  :   /* RLE long runs */
2316                                 /*
2317                                   Low 4 bits of run length is the low nybble of the
2318                                   first code byte, upper 8 bits of run length is in
2319                                   the next byte.
2320                                   Byte to repeat immediately follows.
2321                                   Total code size: 3 bytes.
2322                                 */
2323                                 length = code_low + ((unsigned int)(*pin++) << 4) + 19;
2324                                 /* If we are already at end of input, there is no byte
2325                                    to repeat */
2326                                 if ( pin >= pin_end )
2327                                 {
2328                                         *err = WTAP_ERR_UNC_TRUNCATED;   /* data was oddly truncated */
2329                                         return ( -1 );
2330                                 }
2331                                 /* If length would put us past end of output, avoid overflow */
2332                                 if ( pout + length > pout_end )
2333                                 {
2334                                         *err = WTAP_ERR_UNC_OVERFLOW;
2335                                         return ( -1 );
2336                                 }
2337
2338                                 /* generate the repeated series of bytes */
2339                                 memset( pout, *pin++, length );
2340                                 pout += length;
2341                                 break;
2342                         case 2  :   /* LZ77 long strings */
2343                                 /*
2344                                   Low 4 bits of offset to string is the low nybble of the
2345                                   first code byte, upper 8 bits of offset is in
2346                                   the next byte.
2347                                   Length of string immediately follows.
2348                                   Total code size: 3 bytes.
2349                                 */
2350                                 offset = code_low + ((unsigned int)(*pin++) << 4) + 3;
2351                                 /* If we are already at end of input, there is no byte
2352                                    to repeat */
2353                                 if ( pin >= pin_end )
2354                                 {
2355                                         *err = WTAP_ERR_UNC_TRUNCATED;   /* data was oddly truncated */
2356                                         return ( -1 );
2357                                 }
2358                                 /* Check if offset would put us back past begin of buffer */
2359                                 if ( pout - offset < outbuf )
2360                                 {
2361                                         *err = WTAP_ERR_UNC_BAD_OFFSET;
2362                                         return ( -1 );
2363                                 }
2364
2365                                 /* get length from next byte, make sure it won't overrun buf */
2366                                 length = (unsigned int)(*pin++) + 16;
2367                                 if ( pout + length > pout_end )
2368                                 {
2369                                         *err = WTAP_ERR_UNC_OVERFLOW;
2370                                         return ( -1 );
2371                                 }
2372
2373                                 /* Copy the string from previous text to output position,
2374                                    advance output pointer */
2375                                 memcpy( pout, pout - offset, length );
2376                                 pout += length;
2377                                 break;
2378                         default :   /* (3 to 15): LZ77 short strings */
2379                                 /*
2380                                   Low 4 bits of offset to string is the low nybble of the
2381                                   first code byte, upper 8 bits of offset is in
2382                                   the next byte.
2383                                   Length of string to repeat is overloaded into code_type.
2384                                   Total code size: 2 bytes.
2385                                 */
2386                                 offset = code_low + ((unsigned int)(*pin++) << 4) + 3;
2387                                 /* Check if offset would put us back past begin of buffer */
2388                                 if ( pout - offset < outbuf )
2389                                 {
2390                                         *err = WTAP_ERR_UNC_BAD_OFFSET;
2391                                         return ( -1 );
2392                                 }
2393
2394                                 /* get length from code_type, make sure it won't overrun buf */
2395                                 length = code_type;
2396                                 if ( pout + length > pout_end )
2397                                 {
2398                                         *err = WTAP_ERR_UNC_OVERFLOW;
2399                                         return ( -1 );
2400                                 }
2401
2402                                 /* Copy the string from previous text to output position,
2403                                    advance output pointer */
2404                                 memcpy( pout, pout - offset, length );
2405                                 pout += length;
2406                                 break;
2407                         }
2408                 }
2409
2410                 /* If we've consumed all the input, we are done */
2411                 if ( pin >= pin_end )
2412                         break;
2413         }
2414
2415         return (int) ( pout - outbuf );  /* return length of expanded text */
2416 }
2417
2418 /*
2419  * XXX - is there any guarantee that this is big enough to hold the
2420  * uncompressed data from any blob?
2421  */
2422 #define OUTBUF_SIZE     65536
2423 #define INBUF_SIZE      65536
2424
2425 /* Information about a compressed blob; we save the offset in the
2426    underlying compressed file, and the offset in the uncompressed data
2427    stream, of the blob. */
2428 typedef struct {
2429         gint64  blob_comp_offset;
2430         gint64  blob_uncomp_offset;
2431 } blob_info_t;
2432
2433 static gint64
2434 ng_file_read(void *buffer, unsigned int nbytes, wtap *wth, gboolean is_random,
2435              int *err, gchar **err_info)
2436 {
2437         ngsniffer_t *ngsniffer;
2438         FILE_T infile;
2439         ngsniffer_comp_stream_t *comp_stream;
2440         unsigned int copybytes = nbytes; /* bytes left to be copied */
2441         gint64 copied_bytes = 0; /* bytes already copied */
2442         unsigned char *outbuffer = buffer; /* where to write next decompressed data */
2443         blob_info_t *blob;
2444         unsigned int bytes_to_copy;
2445         unsigned int bytes_left;
2446
2447         ngsniffer = (ngsniffer_t *)wth->priv;
2448         if (is_random) {
2449                 infile = wth->random_fh;
2450                 comp_stream = &ngsniffer->rand;
2451         } else {
2452                 infile = wth->fh;
2453                 comp_stream = &ngsniffer->seq;
2454         }
2455
2456         if (wth->file_type == WTAP_FILE_NGSNIFFER_UNCOMPRESSED) {
2457                 errno = WTAP_ERR_CANT_READ;
2458                 copied_bytes = file_read(buffer, copybytes, infile);
2459                 if ((unsigned int) copied_bytes != copybytes)
2460                         *err = file_error(infile, err_info);
2461                 return copied_bytes;
2462         }
2463
2464         /* Allocate the stream buffer if it hasn't already been allocated. */
2465         if (comp_stream->buf == NULL) {
2466                 comp_stream->buf = g_malloc(OUTBUF_SIZE);
2467
2468                 if (is_random) {
2469                         /* This is the first read of the random file, so we're at
2470                            the beginning of the sequence of blobs in the file
2471                            (as we've not done any random reads yet to move the
2472                            current position in the random stream); set the
2473                            current blob to be the first blob. */
2474                         ngsniffer->current_blob = ngsniffer->first_blob;
2475                 } else {
2476                         /* This is the first sequential read; if we also have a
2477                            random stream open, allocate the first element for the
2478                            list of blobs, and make it the last element as well. */
2479                         if (wth->random_fh != NULL) {
2480                                 g_assert(ngsniffer->first_blob == NULL);
2481                                 blob = g_malloc(sizeof (blob_info_t));
2482                                 blob->blob_comp_offset = comp_stream->comp_offset;
2483                                 blob->blob_uncomp_offset = comp_stream->uncomp_offset;
2484                                 ngsniffer->first_blob = g_list_append(ngsniffer->first_blob,
2485                                                                       blob);
2486                                 ngsniffer->last_blob = ngsniffer->first_blob;
2487                         }
2488                 }
2489
2490                 /* Now read the first blob into the buffer. */
2491                 if (read_blob(infile, comp_stream, err, err_info) < 0)
2492                         return -1;
2493         }
2494         while (copybytes > 0) {
2495                 bytes_left = comp_stream->nbytes - comp_stream->nextout;
2496                 if (bytes_left == 0) {
2497                         /* There's no decompressed stuff left to copy from the current
2498                            blob; get the next blob. */
2499
2500                         if (is_random) {
2501                                 /* Move to the next blob in the list. */
2502                                 ngsniffer->current_blob = g_list_next(ngsniffer->current_blob);
2503                                 if (!ngsniffer->current_blob) {
2504                                         /*
2505                                          * XXX - this "can't happen"; we should have a
2506                                          * blob for every byte in the file.
2507                                          */
2508                                         *err = WTAP_ERR_CANT_SEEK;
2509                                         return -1;
2510                                 }
2511                                 blob = ngsniffer->current_blob->data;
2512                         } else {
2513                                 /* If we also have a random stream open, add a new element,
2514                                    for this blob, to the list of blobs; we know the list is
2515                                    non-empty, as we initialized it on the first sequential
2516                                    read, so we just add the new element at the end, and
2517                                    adjust the pointer to the last element to refer to it. */
2518                                 if (wth->random_fh != NULL) {
2519                                         blob = g_malloc(sizeof (blob_info_t));
2520                                         blob->blob_comp_offset = comp_stream->comp_offset;
2521                                         blob->blob_uncomp_offset = comp_stream->uncomp_offset;
2522                                         ngsniffer->last_blob = g_list_append(ngsniffer->last_blob,
2523                                                                              blob);
2524                                 }
2525                         }
2526
2527                         if (read_blob(infile, comp_stream, err, err_info) < 0)
2528                                 return -1;
2529                         bytes_left = comp_stream->nbytes - comp_stream->nextout;
2530                 }
2531
2532                 bytes_to_copy = copybytes;
2533                 if (bytes_to_copy > bytes_left)
2534                         bytes_to_copy = bytes_left;
2535                 memcpy(outbuffer, &comp_stream->buf[comp_stream->nextout],
2536                        bytes_to_copy);
2537                 copybytes -= bytes_to_copy;
2538                 copied_bytes += bytes_to_copy;
2539                 outbuffer += bytes_to_copy;
2540                 comp_stream->nextout += bytes_to_copy;
2541                 comp_stream->uncomp_offset += bytes_to_copy;
2542         }
2543         return copied_bytes;
2544 }
2545
2546 /* Read a blob from a compressed stream.
2547    Return -1 and set "*err" and "*err_info" on error, otherwise return 0. */
2548 static int
2549 read_blob(FILE_T infile, ngsniffer_comp_stream_t *comp_stream, int *err,
2550           gchar **err_info)
2551 {
2552         int in_len;
2553         size_t read_len;
2554         unsigned short blob_len;
2555         gint16 blob_len_host;
2556         gboolean uncompressed;
2557         unsigned char *file_inbuf;
2558         int out_len;
2559
2560         /* Read one 16-bit word which is length of next compressed blob */
2561         errno = WTAP_ERR_CANT_READ;
2562         read_len = file_read(&blob_len, 2, infile);
2563         if (2 != read_len) {
2564                 *err = file_error(infile, err_info);
2565                 return -1;
2566         }
2567         comp_stream->comp_offset += 2;
2568         blob_len_host = pletohs(&blob_len);
2569
2570         /* Compressed or uncompressed? */
2571         if (blob_len_host < 0) {
2572                 /* Uncompressed blob; blob length is absolute value of the number. */
2573                 in_len = -blob_len_host;
2574                 uncompressed = TRUE;
2575         } else {
2576                 in_len = blob_len_host;
2577                 uncompressed = FALSE;
2578         }
2579
2580         file_inbuf = g_malloc(INBUF_SIZE);
2581
2582         /* Read the blob */
2583         errno = WTAP_ERR_CANT_READ;
2584         read_len = file_read(file_inbuf, in_len, infile);
2585         if ((size_t) in_len != read_len) {
2586                 *err = file_error(infile, err_info);
2587                 g_free(file_inbuf);
2588                 return -1;
2589         }
2590         comp_stream->comp_offset += in_len;
2591
2592         if (uncompressed) {
2593                 memcpy(comp_stream->buf, file_inbuf, in_len);
2594                 out_len = in_len;
2595         } else {
2596                 /* Decompress the blob */
2597                 out_len = SnifferDecompress(file_inbuf, in_len,
2598                                             comp_stream->buf, OUTBUF_SIZE, err);
2599                 if (out_len < 0) {
2600                         g_free(file_inbuf);
2601                         return -1;
2602                 }
2603         }
2604
2605         g_free(file_inbuf);
2606         comp_stream->nextout = 0;
2607         comp_stream->nbytes = out_len;
2608         return 0;
2609 }
2610
2611 /* Seek in the sequential data stream; we can only seek forward, and we
2612    do it on compressed files by skipping forward. */
2613 static gint64
2614 ng_file_seek_seq(wtap *wth, gint64 offset, int whence, int *err,
2615                  gchar **err_info)
2616 {
2617         gint64 delta;
2618         char *buf;
2619         unsigned int amount_to_read;
2620         ngsniffer_t *ngsniffer;
2621
2622         if (wth->file_type == WTAP_FILE_NGSNIFFER_UNCOMPRESSED)
2623                 return file_seek(wth->fh, offset, whence, err);
2624
2625         ngsniffer = (ngsniffer_t *)wth->priv;
2626         switch (whence) {
2627
2628         case SEEK_SET:
2629                 break;          /* "offset" is the target offset */
2630
2631         case SEEK_CUR:
2632                 offset += ngsniffer->seq.uncomp_offset;
2633                 break;          /* "offset" is relative to the current offset */
2634
2635         case SEEK_END:
2636                 g_assert_not_reached(); /* "offset" is relative to the end of the file... */
2637                 break;          /* ...but we don't know where that is. */
2638         }
2639
2640         delta = offset - ngsniffer->seq.uncomp_offset;
2641         g_assert(delta >= 0);
2642
2643         /* Ok, now read and discard "delta" bytes. */
2644         buf = g_malloc(INBUF_SIZE);
2645         while (delta != 0) {
2646                 if (delta > INBUF_SIZE)
2647                         amount_to_read = INBUF_SIZE;
2648                 else
2649                         amount_to_read = (unsigned int) delta;
2650
2651                 if (ng_file_read(buf, amount_to_read, wth, FALSE, err, err_info) < 0) {
2652                         g_free(buf);
2653                         return -1;      /* error */
2654                 }
2655
2656                 delta -= amount_to_read;
2657         }
2658
2659         g_free(buf);
2660         return offset;
2661 }
2662
2663 /* Seek in the random data stream.
2664
2665    On compressed files, we see whether we're seeking to a position within
2666    the blob we currently have in memory and, if not, we find in the list
2667    of blobs the last blob that starts at or before the position to which
2668    we're seeking, and read that blob in.  We can then move to the appropriate
2669    position within the blob we have in memory (whether it's the blob we
2670    already had in memory or, if necessary, the one we read in). */
2671 static gint64
2672 ng_file_seek_rand(wtap *wth, gint64 offset, int whence, int *err,
2673                   gchar **err_info)
2674 {
2675         ngsniffer_t *ngsniffer;
2676         gint64 delta;
2677         GList *new, *next;
2678         blob_info_t *next_blob, *new_blob;
2679
2680         if (wth->file_type == WTAP_FILE_NGSNIFFER_UNCOMPRESSED)
2681                 return file_seek(wth->random_fh, offset, whence, err);
2682
2683         ngsniffer = (ngsniffer_t *)wth->priv;
2684
2685         switch (whence) {
2686
2687         case SEEK_SET:
2688                 break;          /* "offset" is the target offset */
2689
2690         case SEEK_CUR:
2691                 offset += ngsniffer->rand.uncomp_offset;
2692                 break;          /* "offset" is relative to the current offset */
2693
2694         case SEEK_END:
2695                 g_assert_not_reached(); /* "offset" is relative to the end of the file... */
2696                 break;          /* ...but we don't know where that is. */
2697         }
2698
2699         delta = offset - ngsniffer->rand.uncomp_offset;
2700
2701         /* Is the place to which we're seeking within the current buffer, or
2702            will we have to read a different blob into the buffer? */
2703         new = NULL;
2704         if (delta > 0) {
2705                 /* We're going forwards.
2706                    Is the place to which we're seeking within the current buffer? */
2707                 if ((size_t)(ngsniffer->rand.nextout + delta) >= ngsniffer->rand.nbytes) {
2708                         /* No.  Search for a blob that contains the target offset in
2709                            the uncompressed byte stream, starting with the blob
2710                            following the current blob. */
2711                         new = g_list_next(ngsniffer->current_blob);
2712                         while (new) {
2713                                 next = g_list_next(new);
2714                                 if (next == NULL) {
2715                                         /* No more blobs; the current one is it. */
2716                                         break;
2717                                 }
2718
2719                                 next_blob = next->data;
2720                                 /* Does the next blob start after the target offset?
2721                                    If so, the current blob is the one we want. */
2722                                 if (next_blob->blob_uncomp_offset > offset)
2723                                         break;
2724
2725                                 new = next;
2726                         }
2727                 }
2728         } else if (delta < 0) {
2729                 /* We're going backwards.
2730                    Is the place to which we're seeking within the current buffer? */
2731                 if (ngsniffer->rand.nextout + delta < 0) {
2732                         /* No.  Search for a blob that contains the target offset in
2733                            the uncompressed byte stream, starting with the blob
2734                            preceding the current blob. */
2735                         new = g_list_previous(ngsniffer->current_blob);
2736                         while (new) {
2737                                 /* Does this blob start at or before the target offset?
2738                                    If so, the current blob is the one we want. */
2739                                 new_blob = new->data;
2740                                 if (new_blob->blob_uncomp_offset <= offset)
2741                                         break;
2742
2743                                 /* It doesn't - skip to the previous blob. */
2744                                 new = g_list_previous(new);
2745                         }
2746                 }
2747         }
2748
2749         if (new != NULL) {
2750                 /* The place to which we're seeking isn't in the current buffer;
2751                    move to a new blob. */
2752                 new_blob = new->data;
2753
2754                 /* Seek in the compressed file to the offset in the compressed file
2755                    of the beginning of that blob. */
2756                 if (file_seek(wth->random_fh, new_blob->blob_comp_offset, SEEK_SET, err) == -1)
2757                         return -1;
2758
2759                 /* Make the blob we found the current one. */
2760                 ngsniffer->current_blob = new;
2761
2762                 /* Now set the current offsets to the offsets of the beginning
2763                    of the blob. */
2764                 ngsniffer->rand.uncomp_offset = new_blob->blob_uncomp_offset;
2765                 ngsniffer->rand.comp_offset = new_blob->blob_comp_offset;
2766
2767                 /* Now fill the buffer. */
2768                 if (read_blob(wth->random_fh, &ngsniffer->rand, err, err_info) < 0)
2769                         return -1;
2770
2771                 /* Set "delta" to the amount to move within this blob; it had
2772                    better be >= 0, and < the amount of uncompressed data in
2773                    the blob, as otherwise it'd mean we need to seek before
2774                    the beginning or after the end of this blob. */
2775                 delta = offset - ngsniffer->rand.uncomp_offset;
2776                 g_assert(delta >= 0 && (unsigned long)delta < ngsniffer->rand.nbytes);
2777         }
2778
2779         /* OK, the place to which we're seeking is in the buffer; adjust
2780            "ngsniffer->rand.nextout" to point to the place to which
2781            we're seeking, and adjust "ngsniffer->rand.uncomp_offset" to be
2782            the destination offset. */
2783         ngsniffer->rand.nextout += (int) delta;
2784         ngsniffer->rand.uncomp_offset += delta;
2785
2786         return offset;
2787 }