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.
36 #include <pcap-stdinc.h>
43 #ifdef HAVE_SYS_BITYPES_H
44 #include <sys/bitypes.h>
46 #include <sys/types.h>
58 #ifdef HAVE_OS_PROTO_H
63 #include "sf-pcap-ng.h"
67 * These aren't exported on Windows, because they would only work if both
68 * WinPcap and the code using it were to use the Universal CRT; otherwise,
69 * a FILE structure in WinPcap and a FILE structure in the code using it
70 * could be different if they're using different versions of the C runtime.
72 * Instead, pcap/pcap.h defines them as macros that wrap the hopen versions,
73 * with the wrappers calling _fileno() and _get_osfhandle() themselves,
74 * so that they convert the appropriate CRT version's FILE structure to
75 * a HANDLE (which is OS-defined, not CRT-defined, and is part of the Win32
78 static pcap_t
*pcap_fopen_offline_with_tstamp_precision(FILE *, u_int
, char *);
79 static pcap_t
*pcap_fopen_offline(FILE *, char *);
83 * Setting O_BINARY on DOS/Windows is a bit tricky
86 #define SET_BINMODE(f) _setmode(_fileno(f), _O_BINARY)
88 #if defined(__HIGHC__)
89 #define SET_BINMODE(f) setmode(f, O_BINARY)
91 #define SET_BINMODE(f) setmode(fileno(f), O_BINARY)
96 sf_getnonblock(pcap_t
*p
, char *errbuf
)
99 * This is a savefile, not a live capture file, so never say
100 * it's in non-blocking mode.
106 sf_setnonblock(pcap_t
*p
, int nonblock
, char *errbuf
)
109 * This is a savefile, not a live capture file, so reject
110 * requests to put it in non-blocking mode. (If it's a
111 * pipe, it could be put in non-blocking mode, but that
112 * would significantly complicate the code to read packets,
113 * as it would have to handle reading partial packets and
114 * keeping the state of the read.)
116 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
117 "Savefiles cannot be put into non-blocking mode");
122 sf_stats(pcap_t
*p
, struct pcap_stat
*ps
)
124 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
125 "Statistics aren't available from savefiles");
130 static struct pcap_stat
*
131 sf_stats_ex(pcap_t
*p
, int *size
)
133 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
134 "Statistics aren't available from savefiles");
139 sf_setbuff(pcap_t
*p
, int dim
)
141 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
142 "The kernel buffer size cannot be set while reading from a file");
147 sf_setmode(pcap_t
*p
, int mode
)
149 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
150 "impossible to set mode while reading from a file");
155 sf_setmintocopy(pcap_t
*p
, int size
)
157 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
158 "The mintocopy parameter cannot be set while reading from a file");
163 sf_getevent(pcap_t
*pcap
)
165 (void)pcap_snprintf(pcap
->errbuf
, sizeof(pcap
->errbuf
),
166 "The read event cannot be retrieved while reading from a file");
167 return (INVALID_HANDLE_VALUE
);
171 sf_oid_get_request(pcap_t
*p
, bpf_u_int32 oid _U_
, void *data _U_
,
174 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
175 "An OID get request cannot be performed on a file");
180 sf_oid_set_request(pcap_t
*p
, bpf_u_int32 oid _U_
, const void *data _U_
,
183 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
184 "An OID set request cannot be performed on a file");
189 sf_sendqueue_transmit(pcap_t
*p
, pcap_send_queue
*queue
, int sync
)
191 strlcpy(p
->errbuf
, "Sending packets isn't supported on savefiles",
197 sf_setuserbuffer(pcap_t
*p
, int size
)
199 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
200 "The user buffer cannot be set when reading from a file");
205 sf_live_dump(pcap_t
*p
, char *filename
, int maxsize
, int maxpacks
)
207 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
208 "Live packet dumping cannot be performed when reading from a file");
213 sf_live_dump_ended(pcap_t
*p
, int sync
)
215 pcap_snprintf(p
->errbuf
, PCAP_ERRBUF_SIZE
,
216 "Live packet dumping cannot be performed on a pcap_open_dead pcap_t");
220 static PAirpcapHandle
221 sf_get_airpcap_handle(pcap_t
*pcap
)
228 sf_inject(pcap_t
*p
, const void *buf _U_
, size_t size _U_
)
230 strlcpy(p
->errbuf
, "Sending packets isn't supported on savefiles",
236 * Set direction flag: Which packets do we accept on a forwarding
237 * single device? IN, OUT or both?
240 sf_setdirection(pcap_t
*p
, pcap_direction_t d
)
242 pcap_snprintf(p
->errbuf
, sizeof(p
->errbuf
),
243 "Setting direction is not supported on savefiles");
248 sf_cleanup(pcap_t
*p
)
250 if (p
->rfile
!= stdin
)
251 (void)fclose(p
->rfile
);
252 if (p
->buffer
!= NULL
)
254 pcap_freecode(&p
->fcode
);
258 * fopen's safe version on Windows.
261 FILE *fopen_safe(const char *filename
, const char* mode
)
265 errno
= fopen_s(&fp
, filename
, mode
);
274 pcap_open_offline_with_tstamp_precision(const char *fname
, u_int precision
,
280 if (fname
[0] == '-' && fname
[1] == '\0')
283 #if defined(_WIN32) || defined(MSDOS)
285 * We're reading from the standard input, so put it in binary
286 * mode, as savefiles are binary files.
292 #if !defined(_WIN32) && !defined(MSDOS)
293 fp
= fopen(fname
, "r");
295 fp
= fopen(fname
, "rb");
298 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "%s: %s", fname
,
299 pcap_strerror(errno
));
303 p
= pcap_fopen_offline_with_tstamp_precision(fp
, precision
, errbuf
);
312 pcap_open_offline(const char *fname
, char *errbuf
)
314 return (pcap_open_offline_with_tstamp_precision(fname
,
315 PCAP_TSTAMP_PRECISION_MICRO
, errbuf
));
319 pcap_t
* pcap_hopen_offline_with_tstamp_precision(intptr_t osfd
, u_int precision
,
325 fd
= _open_osfhandle(osfd
, _O_RDONLY
);
328 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, pcap_strerror(errno
));
332 file
= _fdopen(fd
, "rb");
335 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, pcap_strerror(errno
));
339 return pcap_fopen_offline_with_tstamp_precision(file
, precision
,
343 pcap_t
* pcap_hopen_offline(intptr_t osfd
, char *errbuf
)
345 return pcap_hopen_offline_with_tstamp_precision(osfd
,
346 PCAP_TSTAMP_PRECISION_MICRO
, errbuf
);
350 static pcap_t
*(*check_headers
[])(bpf_u_int32
, FILE *, u_int
, char *, int *) = {
355 #define N_FILE_TYPES (sizeof check_headers / sizeof check_headers[0])
361 pcap_fopen_offline_with_tstamp_precision(FILE *fp
, u_int precision
,
371 * Read the first 4 bytes of the file; the network analyzer dump
372 * file formats we support (pcap and pcap-ng), and several other
373 * formats we might support in the future (such as snoop, DOS and
374 * Windows Sniffer, and Microsoft Network Monitor) all have magic
375 * numbers that are unique in their first 4 bytes.
377 amt_read
= fread((char *)&magic
, 1, sizeof(magic
), fp
);
378 if (amt_read
!= sizeof(magic
)) {
380 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
381 "error reading dump file: %s",
382 pcap_strerror(errno
));
384 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
,
385 "truncated dump file; tried to read %lu file header bytes, only got %lu",
386 (unsigned long)sizeof(magic
),
387 (unsigned long)amt_read
);
393 * Try all file types.
395 for (i
= 0; i
< N_FILE_TYPES
; i
++) {
396 p
= (*check_headers
[i
])(magic
, fp
, precision
, errbuf
, &err
);
398 /* Yup, that's it. */
403 * Error trying to read the header.
410 * Well, who knows what this mess is....
412 pcap_snprintf(errbuf
, PCAP_ERRBUF_SIZE
, "unknown file format");
418 /* Padding only needed for live capture fcode */
421 #if !defined(_WIN32) && !defined(MSDOS)
423 * You can do "select()" and "poll()" on plain files on most
424 * platforms, and should be able to do so on pipes.
426 * You can't do "select()" on anything other than sockets in
427 * Windows, so, on Win32 systems, we don't have "selectable_fd".
429 p
->selectable_fd
= fileno(fp
);
432 p
->read_op
= pcap_offline_read
;
433 p
->inject_op
= sf_inject
;
434 p
->setfilter_op
= install_bpf_program
;
435 p
->setdirection_op
= sf_setdirection
;
436 p
->set_datalink_op
= NULL
; /* we don't support munging link-layer headers */
437 p
->getnonblock_op
= sf_getnonblock
;
438 p
->setnonblock_op
= sf_setnonblock
;
439 p
->stats_op
= sf_stats
;
441 p
->stats_ex_op
= sf_stats_ex
;
442 p
->setbuff_op
= sf_setbuff
;
443 p
->setmode_op
= sf_setmode
;
444 p
->setmintocopy_op
= sf_setmintocopy
;
445 p
->getevent_op
= sf_getevent
;
446 p
->oid_get_request_op
= sf_oid_get_request
;
447 p
->oid_set_request_op
= sf_oid_set_request
;
448 p
->sendqueue_transmit_op
= sf_sendqueue_transmit
;
449 p
->setuserbuffer_op
= sf_setuserbuffer
;
450 p
->live_dump_op
= sf_live_dump
;
451 p
->live_dump_ended_op
= sf_live_dump_ended
;
452 p
->get_airpcap_handle_op
= sf_get_airpcap_handle
;
456 * For offline captures, the standard one-shot callback can
457 * be used for pcap_next()/pcap_next_ex().
459 p
->oneshot_callback
= pcap_oneshot
;
462 * Savefiles never require special BPF code generation.
464 p
->bpf_codegen_flags
= 0;
475 pcap_fopen_offline(FILE *fp
, char *errbuf
)
477 return (pcap_fopen_offline_with_tstamp_precision(fp
,
478 PCAP_TSTAMP_PRECISION_MICRO
, errbuf
));
482 * Read packets from a capture file, and call the callback for each
484 * If cnt > 0, return after 'cnt' packets, otherwise continue until eof.
487 pcap_offline_read(pcap_t
*p
, int cnt
, pcap_handler callback
, u_char
*user
)
489 struct bpf_insn
*fcode
;
494 while (status
== 0) {
495 struct pcap_pkthdr h
;
498 * Has "pcap_breakloop()" been called?
499 * If so, return immediately - if we haven't read any
500 * packets, clear the flag and return -2 to indicate
501 * that we were told to break out of the loop, otherwise
502 * leave the flag set, so that the *next* call will break
503 * out of the loop without having read any packets, and
504 * return the number of packets we've processed so far.
514 status
= p
->next_packet_op(p
, &h
, &data
);
521 if ((fcode
= p
->fcode
.bf_insns
) == NULL
||
522 bpf_filter(fcode
, data
, h
.len
, h
.caplen
)) {
523 (*callback
)(user
, &h
, data
);
524 if (++n
>= cnt
&& cnt
> 0)
528 /*XXX this breaks semantics tcpslice expects */