aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/airopeek9.c
blob: 777628934acbc1ae3d4bf489ea30b9b4fcc3d0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/* airopeek9.c
 * Routines for opening AiroPeek V9 files
 *
 * $Id: airopeek9.c,v 1.4 2004/01/25 21:55:12 guy Exp $
 *
 * Wiretap Library
 * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include "wtap-int.h"
#include "file_wrappers.h"
#include "buffer.h"
#include "airopeek9.h"

/* CREDITS
 *
 * This file decoder could not have been writen without examining
 * http://www.varsanofiev.com/inside/airopeekv9.htm, the help from
 * Martin Regner and Guy Harris, and the etherpeek.c file.
 */

/* section header */
typedef struct airopeek_section_header {
	gint8   section_id[4];
	guint32 section_len;
	guint32 section_const;
} airopeek_section_header_t;

#define AIROPEEK_V9_LENGTH_OFFSET		2
#define AIROPEEK_V9_TIMESTAMP_LOWER_OFFSET	8
#define AIROPEEK_V9_TIMESTAMP_UPPER_OFFSET	14
#define AIROPEEK_V9_FLAGS_OFFSET		20
#define AIROPEEK_V9_STATUS_OFFSET		22
#define AIROPEEK_V9_CHANNEL_OFFSET		26
#define AIROPEEK_V9_RATE_OFFSET			32
#define AIROPEEK_V9_SIGNAL_PERC_OFFSET		38
#define AIROPEEK_V9_SIGNAL_DBM_OFFSET		44
#define AIROPEEK_V9_NOISE_PERC_OFFSET		50
#define AIROPEEK_V9_NOISE_DBM_OFFSET		56
#define AIROPEEK_V9_SLICE_LENGTH_OFFSET		62

#define AIROPEEK_V9_PKT_SIZE			66

/* 64-bit time in nano seconds from the (Mac) epoch */
typedef struct airopeek_utime {
	guint32 upper;
	guint32 lower;
} airopeek_utime;

static const unsigned int mac2unix = 2082844800u;

static gboolean airopeek_read_v9(wtap *wth, int *err, gchar **err_info,
    long *data_offset);
static gboolean airopeek_seek_read_v9(wtap *wth, long seek_off,
    union wtap_pseudo_header *pseudo_header, guchar *pd, int length,
    int *err, gchar **err_info);

static int wtap_file_read_pattern (wtap *wth, char *pattern, int *err)
{
    int c;
    char *cp;

    cp = pattern;
    while (*cp)
    {
	c = file_getc(wth->fh);
	if (c == EOF) {
	    if (file_eof(wth->fh))
		return 0;	/* EOF */
	    else {
		/* We (presumably) got an error (there's no equivalent to
		   "ferror()" in zlib, alas, so we don't have a wrapper
		   to check for an error). */
		*err = file_error(wth->fh);
		return -1;	/* error */
	    }
	}
	if (c == *cp)
	    cp++;
	else
	{
	    if (c == pattern[0])
		cp = &pattern[1];
	    else
		cp = pattern;
	}
    }
    return (*cp == '\0' ? 1 : 0);
}


static int wtap_file_read_till_separator (wtap *wth, char *buffer, int buflen,
					char *separators, int *err)
{
    int c;
    char *cp;
    int i;

    for (cp = buffer, i = 0; i < buflen; i++, cp++)
    {
	c = file_getc(wth->fh);
	if (c == EOF) {
	    if (file_eof(wth->fh))
		return 0;	/* EOF */
	    else {
		/* We (presumably) got an error (there's no equivalent to
		   "ferror()" in zlib, alas, so we don't have a wrapper
		   to check for an error). */
		*err = file_error(wth->fh);
		return -1;	/* error */
	    }
	}
	if (strchr (separators, c))
	{
	    *cp = '\0';
	    break;
	}
	else
	    *cp = c;
    }
    return i;
}


static int wtap_file_read_number (wtap *wth, guint32 *num, int *err)
{
    int ret;
    char str_num[12];
    unsigned long value;
    char *p;

    ret = wtap_file_read_till_separator (wth, str_num, sizeof (str_num)-1, "<",
					 err);
    if (ret != 1) {
	/* 0 means EOF, which means "not a valid AiroPeek V9 file";
	   -1 means error, and "err" has been set. */
	return ret;
    }
    value = strtoul (str_num, &p, 10);
    if (p == str_num || value > UINT_MAX)
	return 0;
    *num = value;
    return 1;
}


int airopeek9_open(wtap *wth, int *err, gchar **err_info)
{
    airopeek_section_header_t ap_hdr;
    int ret;
    guint32 fileVersion;
    guint32 mediaType;
    int file_encap;

    wtap_file_read_unknown_bytes(&ap_hdr, sizeof(ap_hdr), wth->fh, err);

    if (memcmp (ap_hdr.section_id, "\177ver", sizeof(ap_hdr.section_id)) != 0)
	return 0;	/* doesn't begin with a "\177ver" section */

    /*
     * XXX - we should get the length of the "\177ver" section, check
     * that it's followed by a little-endian 0x00000200, and then,
     * when reading the XML, make sure we don't go past the end of
     * that section, and skip to the end of tha section when
     * we have the file version (and possibly check to make sure all
     * tags are properly opened and closed).
     */
    ret = wtap_file_read_pattern (wth, "<FileVersion>", err);
    if (ret != 1) {
	/* 0 means EOF, which means "not a valid AiroPeek V9 file";
	   -1 means error, and "err" has been set. */
	return ret;
    }
    ret = wtap_file_read_number (wth, &fileVersion, err);
    if (ret != 1) {
	/* 0 means EOF, which means "not a valid AiroPeek V9 file";
	   -1 means error, and "err" has been set. */
	return ret;
    }

    /* If we got this far, we assume it's an AiroPeek V9 file. */
    if (fileVersion != 9) {
	/* We only support version 9 and later. */
	*err = WTAP_ERR_UNSUPPORTED;
	*err_info = g_strdup_printf("airopeekv9: version %u unsupported",
	    fileVersion);
	return -1;
    }

    /*
     * XXX - once we've skipped the "\177ver" section, we should
     * check for a "sess" section and fail if we don't see it.
     * Then we should get the length of the "sess" section, check
     * that it's followed by a little-endian 0x00000200, and then,
     * when reading the XML, make sure we don't go past the end of
     * that section, and skip to the end of tha section when
     * we have the file version (and possibly check to make sure all
     * tags are properly opened and closed).
     */
    ret = wtap_file_read_pattern (wth, "<MediaType>", err);
    if (ret == -1)
	return -1;
    if (ret == 0) {
	*err = WTAP_ERR_UNSUPPORTED;
	*err_info = g_strdup("airopeekv9: <MediaType> tag not found");
	return -1;
    }
    /* XXX - this appears to be 0, which is also the media type for
       802.11 in the older AiroPeek format; should we require it to be
       0?  And should we check the MediaSubType value as well? */
    ret = wtap_file_read_number (wth, &mediaType, err);
    if (ret == -1)
	return -1;
    if (ret == 0) {
	*err = WTAP_ERR_UNSUPPORTED;
	*err_info = g_strdup("airopeekv9: <MediaType> value not found");
	return -1;
    }

    ret = wtap_file_read_pattern (wth, "pkts", err);
    if (ret == -1)
	return -1;
    if (ret == 0) {
	*err = WTAP_ERR_SHORT_READ;
	return -1;
    }

    /* skip 8 zero bytes */
    if (file_seek (wth->fh, 8L, SEEK_CUR, err) == -1)
	return 0;

    /*
     * This is an AiroPeek V9 file.
     */

    wth->data_offset = file_tell (wth->fh);

    file_encap = WTAP_ENCAP_IEEE_802_11_WITH_RADIO;

    wth->file_type = WTAP_FILE_AIROPEEK_V9;
    wth->file_encap = file_encap;
    wth->subtype_read = airopeek_read_v9;
    wth->subtype_seek_read = airopeek_seek_read_v9;

    wth->snapshot_length   = 0; /* not available in header */

    return 1;
}

static gboolean airopeek_read_v9(wtap *wth, int *err, gchar **err_info _U_,
    long *data_offset)
{
    guchar ap_pkt[AIROPEEK_V9_PKT_SIZE];
    guint32 length;
    guint32 sliceLength;
    airopeek_utime timestamp;
    double  t;

    *data_offset = wth->data_offset;

    wtap_file_read_expected_bytes(ap_pkt, sizeof(ap_pkt), wth->fh, err);
    wth->data_offset += sizeof(ap_pkt);

    /* Extract the fields from the packet */
    length = pletohl(&ap_pkt[AIROPEEK_V9_LENGTH_OFFSET]);
    sliceLength = pletohl(&ap_pkt[AIROPEEK_V9_SLICE_LENGTH_OFFSET]);
    timestamp.upper = pletohl(&ap_pkt[AIROPEEK_V9_TIMESTAMP_UPPER_OFFSET]);
    timestamp.lower = pletohl(&ap_pkt[AIROPEEK_V9_TIMESTAMP_LOWER_OFFSET]);

    /* force sliceLength to be the actual length of the packet */
    if (sliceLength == 0) {
	sliceLength = length;
    }

    /* fill in packet header length values before slicelength may be
       adjusted */
    wth->phdr.len    = length;
    wth->phdr.caplen = sliceLength;

    /*
     * Fill the pseudo header with radio information.
     * XXX - we should supply the additional information;
     * the pseudo-header should probably be supplied in a fashion
     * similar to the new BSD radio header, so that the 802.11
     * dissector can determine which, if any, information items
     * are present.
     */
    wth->pseudo_header.ieee_802_11.channel =
	    pletohl(&ap_pkt[AIROPEEK_V9_CHANNEL_OFFSET]);
    wth->pseudo_header.ieee_802_11.data_rate =
	    pletohl(&ap_pkt[AIROPEEK_V9_RATE_OFFSET]);
    wth->pseudo_header.ieee_802_11.signal_level =
	    pletohl(&ap_pkt[AIROPEEK_V9_SIGNAL_PERC_OFFSET]);

    /* read the frame data */
    buffer_assure_space(wth->frame_buffer, sliceLength);
    wtap_file_read_expected_bytes(buffer_start_ptr(wth->frame_buffer),
				  sliceLength, wth->fh, err);
    wth->data_offset += sliceLength;

    /* recalculate and fill in packet time stamp */
    t =  (double) timestamp.lower +
	 (double) timestamp.upper * 4294967296.0;

    t = t / 1000.0;	/* nano seconds -> micro seconds */
    t -= (double) mac2unix * 1000000.0;
    wth->phdr.ts.tv_sec  = (time_t)  (t/1000000.0);
    wth->phdr.ts.tv_usec = (guint32) (t - (double) wth->phdr.ts.tv_sec *
						   1000000.0);

    /*
     * The last 4 bytes sometimes contains the FCS but on a lot of
     * interfaces these are zero. To eleminate problems we reduce
     * the length by 4.
     *
     * XXX - is there any way to find out whether it's an FCS or not?
     */
    wth->phdr.len -= 4;
    wth->phdr.caplen -= 4;

    wth->phdr.pkt_encap = wth->file_encap;
    return TRUE;
}


static gboolean
airopeek_seek_read_v9(wtap *wth, long seek_off,
    union wtap_pseudo_header *pseudo_header, guchar *pd, int length,
    int *err, gchar **err_info _U_)
{
    guchar ap_pkt[AIROPEEK_V9_PKT_SIZE];

    if (file_seek(wth->random_fh, seek_off, SEEK_SET, err) == -1)
	return FALSE;

    /* Read the packet header. */
    wtap_file_read_expected_bytes(ap_pkt, sizeof(ap_pkt), wth->random_fh, err);

    pseudo_header->ieee_802_11.channel =
	    pletohl(&ap_pkt[AIROPEEK_V9_CHANNEL_OFFSET]);
    pseudo_header->ieee_802_11.data_rate =
	    pletohl(&ap_pkt[AIROPEEK_V9_RATE_OFFSET]);
    pseudo_header->ieee_802_11.signal_level =
	    pletohl(&ap_pkt[AIROPEEK_V9_SIGNAL_PERC_OFFSET]);

    /*
     * XXX - should "errno" be set in "wtap_file_read_expected_bytes()"?
     */
    errno = WTAP_ERR_CANT_READ;
    wtap_file_read_expected_bytes(pd, length, wth->random_fh, err);
    return TRUE;
}