]>
The Tcpdump Group git mirrors - libpcap/blob - savefile.c
2 * Copyright (c) 1993, 1994, 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * savefile.c - supports offline use of tcpdump
22 * Extraction/creation by Jeffrey Mogul, DECWRL
23 * Modified by Steve McCanne, LBL.
25 * Used to save the received packet headers, after filtering, to
26 * a file, and then read them later.
27 * The first record in the file contains saved values for the machine
28 * dependent values so we can print the dump file on any architecture.
32 static const char rcsid
[] =
33 "@(#) $Header: /tcpdump/master/libpcap/savefile.c,v 1.39 2000-04-27 09:11:14 itojun Exp $ (LBL)";
36 #include <sys/types.h>
48 #ifdef HAVE_OS_PROTO_H
52 #define TCPDUMP_MAGIC 0xa1b2c3d4
55 * We use the "receiver-makes-right" approach to byte order,
56 * because time is at a premium when we are writing the file.
57 * In other words, the pcap_file_header and pcap_pkthdr,
58 * records are written in host byte order.
59 * Note that the packets are always written in network byte order.
61 * ntoh[ls] aren't sufficient because we might need to swap on a big-endian
62 * machine (if the file was written in little-end order).
65 ((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff))
66 #define SWAPSHORT(y) \
67 ( (((y)&0xff)<<8) | ((u_short)((y)&0xff00)>>8) )
70 #define SFERR_BADVERSION 2
72 #define SFERR_EOF 4 /* not really an error, just a status */
75 sf_write_header(FILE *fp
, int linktype
, int thiszone
, int snaplen
)
77 struct pcap_file_header hdr
;
79 hdr
.magic
= TCPDUMP_MAGIC
;
80 hdr
.version_major
= PCAP_VERSION_MAJOR
;
81 hdr
.version_minor
= PCAP_VERSION_MINOR
;
83 hdr
.thiszone
= thiszone
;
84 hdr
.snaplen
= snaplen
;
86 hdr
.linktype
= linktype
;
88 if (fwrite((char *)&hdr
, sizeof(hdr
), 1, fp
) != 1)
95 swap_hdr(struct pcap_file_header
*hp
)
97 hp
->version_major
= SWAPSHORT(hp
->version_major
);
98 hp
->version_minor
= SWAPSHORT(hp
->version_minor
);
99 hp
->thiszone
= SWAPLONG(hp
->thiszone
);
100 hp
->sigfigs
= SWAPLONG(hp
->sigfigs
);
101 hp
->snaplen
= SWAPLONG(hp
->snaplen
);
102 hp
->linktype
= SWAPLONG(hp
->linktype
);
106 pcap_open_offline(const char *fname
, char *errbuf
)
110 struct pcap_file_header hdr
;
113 p
= (pcap_t
*)malloc(sizeof(*p
));
115 strlcpy(errbuf
, "out of swap", PCAP_ERRBUF_SIZE
);
119 memset((char *)p
, 0, sizeof(*p
));
121 * Set this field so we don't close stdin in pcap_close!
125 if (fname
[0] == '-' && fname
[1] == '\0')
128 fp
= fopen(fname
, "r");
130 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s", fname
,
131 pcap_strerror(errno
));
135 if (fread((char *)&hdr
, sizeof(hdr
), 1, fp
) != 1) {
136 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "fread: %s",
137 pcap_strerror(errno
));
140 if (hdr
.magic
!= TCPDUMP_MAGIC
) {
141 if (SWAPLONG(hdr
.magic
) != TCPDUMP_MAGIC
) {
142 snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
143 "bad dump file format");
149 if (hdr
.version_major
< PCAP_VERSION_MAJOR
) {
150 snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "archaic file format");
153 p
->tzoff
= hdr
.thiszone
;
154 p
->snapshot
= hdr
.snaplen
;
155 p
->linktype
= hdr
.linktype
;
157 p
->bufsize
= hdr
.snaplen
;
159 /* Align link header as required for proper data alignment */
160 /* XXX should handle all types */
161 switch (p
->linktype
) {
168 linklen
= 13 + 8; /* fddi_header + llc */
178 p
->bufsize
= BPF_MAXBUFSIZE
;
179 p
->sf
.base
= (u_char
*)malloc(p
->bufsize
+ BPF_ALIGNMENT
);
180 if (p
->sf
.base
== NULL
) {
181 strlcpy(errbuf
, "out of swap", PCAP_ERRBUF_SIZE
);
184 p
->buffer
= p
->sf
.base
+ BPF_ALIGNMENT
- (linklen
% BPF_ALIGNMENT
);
185 p
->sf
.version_major
= hdr
.version_major
;
186 p
->sf
.version_minor
= hdr
.version_minor
;
188 /* XXX padding only needed for kernel fcode */
199 * Read sf_readfile and return the next packet. Return the header in hdr
200 * and the contents in buf. Return 0 on success, SFERR_EOF if there were
201 * no more packets, and SFERR_TRUNC if a partial packet was encountered.
204 sf_next_packet(pcap_t
*p
, struct pcap_pkthdr
*hdr
, u_char
*buf
, int buflen
)
206 struct pcap_sf_pkthdr sf_hdr
;
207 FILE *fp
= p
->sf
.rfile
;
210 if (fread(&sf_hdr
, sizeof(struct pcap_sf_pkthdr
), 1, fp
) != 1) {
211 /* probably an EOF, though could be a truncated packet */
216 /* these were written in opposite byte order */
217 hdr
->caplen
= SWAPLONG(sf_hdr
.caplen
);
218 hdr
->len
= SWAPLONG(sf_hdr
.len
);
219 hdr
->ts
.tv_sec
= SWAPLONG(sf_hdr
.ts
.tv_sec
);
220 hdr
->ts
.tv_usec
= SWAPLONG(sf_hdr
.ts
.tv_usec
);
222 hdr
->caplen
= sf_hdr
.caplen
;
223 hdr
->len
= sf_hdr
.len
;
224 hdr
->ts
.tv_sec
= sf_hdr
.ts
.tv_sec
;
225 hdr
->ts
.tv_usec
= sf_hdr
.ts
.tv_usec
;
228 * We interchanged the caplen and len fields at version 2.3,
229 * in order to match the bpf header layout. But unfortunately
230 * some files were written with version 2.3 in their headers
231 * but without the interchanged fields.
233 if (p
->sf
.version_minor
< 3 ||
234 (p
->sf
.version_minor
== 3 && hdr
->caplen
> hdr
->len
)) {
236 hdr
->caplen
= hdr
->len
;
240 if (hdr
->caplen
> buflen
) {
242 * This can happen due to Solaris 2.3 systems tripping
243 * over the BUFMOD problem and not setting the snapshot
244 * correctly in the savefile header. If the caplen isn't
245 * grossly wrong, try to salvage.
247 static u_char
*tp
= NULL
;
248 static int tsize
= 0;
250 if (hdr
->caplen
> 65535) {
251 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
252 "bogus savefile header");
256 if (tsize
< hdr
->caplen
) {
257 tsize
= ((hdr
->caplen
+ 1023) / 1024) * 1024;
260 tp
= (u_char
*)malloc(tsize
);
263 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
264 "BUFMOD hack malloc");
268 if (fread((char *)tp
, hdr
->caplen
, 1, fp
) != 1) {
269 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
270 "truncated dump file");
274 * We can only keep up to buflen bytes. Since caplen > buflen
275 * is exactly how we got here, we know we can only keep the
276 * first buflen bytes and must drop the remainder. Adjust
277 * caplen accordingly, so we don't get confused later as
278 * to how many bytes we have to play with.
280 hdr
->caplen
= buflen
;
281 memcpy((char *)buf
, (char *)tp
, buflen
);
284 /* read the packet itself */
286 if (fread((char *)buf
, hdr
->caplen
, 1, fp
) != 1) {
287 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
288 "truncated dump file");
296 * Print out packets stored in the file initialized by sf_read_init().
297 * If cnt > 0, return after 'cnt' packets, otherwise continue until eof.
300 pcap_offline_read(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
302 struct bpf_insn
*fcode
= p
->fcode
.bf_insns
;
306 while (status
== 0) {
307 struct pcap_pkthdr h
;
309 status
= sf_next_packet(p
, &h
, p
->buffer
, p
->bufsize
);
317 bpf_filter(fcode
, p
->buffer
, h
.len
, h
.caplen
)) {
318 (*callback
)(user
, &h
, p
->buffer
);
319 if (++n
>= cnt
&& cnt
> 0)
323 /*XXX this breaks semantics tcpslice expects */
328 * Output a packet to the initialized dump file.
331 pcap_dump(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*sp
)
334 struct pcap_sf_pkthdr sf_hdr
;
337 sf_hdr
.ts
.tv_sec
= h
->ts
.tv_sec
;
338 sf_hdr
.ts
.tv_usec
= h
->ts
.tv_usec
;
339 sf_hdr
.caplen
= h
->caplen
;
341 /* XXX we should check the return status */
342 (void)fwrite(&sf_hdr
, sizeof(sf_hdr
), 1, f
);
343 (void)fwrite((char *)sp
, h
->caplen
, 1, f
);
347 * Initialize so that sf_write() will output to the file named 'fname'.
350 pcap_dump_open(pcap_t
*p
, const char *fname
)
353 if (fname
[0] == '-' && fname
[1] == '\0')
356 f
= fopen(fname
, "w");
358 snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s",
359 fname
, pcap_strerror(errno
));
363 (void)sf_write_header(f
, p
->linktype
, p
->tzoff
, p
->snapshot
);
364 return ((pcap_dumper_t
*)f
);
368 pcap_dump_close(pcap_dumper_t
*p
)
372 if (ferror((FILE *)p
))
374 /* XXX should check return from fclose() too */
376 (void)fclose((FILE *)p
);