]> The Tcpdump Group git mirrors - tcpdump/blob - tcpdump.c
pflog: support PF_MATCH on FreeBSD as well.
[tcpdump] / tcpdump.c
1 /*
2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
3 * The Regents of the University of California. All rights reserved.
4 *
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
16 * written permission.
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.
20 *
21 * Support for splitting captures into multiple files with a maximum
22 * file size:
23 *
24 * Copyright (c) 2001
25 * Seth Webster <swebster@sst.ll.mit.edu>
26 */
27
28 /*
29 * tcpdump - dump traffic on a network
30 *
31 * First written in 1987 by Van Jacobson, Lawrence Berkeley Laboratory.
32 * Mercilessly hacked and occasionally improved since then via the
33 * combined efforts of Van, Steve McCanne and Craig Leres of LBL.
34 */
35
36 #include <config.h>
37
38 /*
39 * Some older versions of Mac OS X ship pcap.h from libpcap 0.6 with a
40 * libpcap based on 0.8. That means it has pcap_findalldevs() but the
41 * header doesn't define pcap_if_t, meaning that we can't actually *use*
42 * pcap_findalldevs().
43 */
44 #ifdef HAVE_PCAP_FINDALLDEVS
45 #ifndef HAVE_PCAP_IF_T
46 #undef HAVE_PCAP_FINDALLDEVS
47 #endif
48 #endif
49
50 #include "netdissect-stdinc.h"
51
52 /*
53 * This must appear after including netdissect-stdinc.h, so that _U_ is
54 * defined.
55 */
56 #ifndef lint
57 static const char copyright[] _U_ =
58 "@(#) Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000\n\
59 The Regents of the University of California. All rights reserved.\n";
60 #endif
61
62 #include <sys/stat.h>
63
64 #include <fcntl.h>
65
66 #ifdef HAVE_LIBCRYPTO
67 #include <openssl/crypto.h>
68 #endif
69
70 #ifdef HAVE_GETOPT_LONG
71 #include <getopt.h>
72 #else
73 #include "missing/getopt_long.h"
74 #endif
75 /* Capsicum-specific code requires macros from <net/bpf.h>, which will fail
76 * to compile if <pcap.h> has already been included; including the headers
77 * in the opposite order works fine. For the most part anyway, because in
78 * FreeBSD <pcap/pcap.h> declares bpf_dump() instead of <net/bpf.h>. Thus
79 * interface.h takes care of it later to avoid a compiler warning.
80 */
81 #ifdef HAVE_CAPSICUM
82 #include <sys/capsicum.h>
83 #include <sys/ioccom.h>
84 #include <net/bpf.h>
85 #include <libgen.h>
86 #ifdef HAVE_CASPER
87 #include <libcasper.h>
88 #include <casper/cap_dns.h>
89 #include <sys/nv.h>
90 #endif /* HAVE_CASPER */
91 #endif /* HAVE_CAPSICUM */
92 #ifdef HAVE_PCAP_OPEN
93 /*
94 * We found pcap_open() in the capture library, so we'll be using
95 * the remote capture APIs; define PCAP_REMOTE before we include pcap.h,
96 * so we get those APIs declared, and the types and #defines that they
97 * use defined.
98 *
99 * WinPcap's headers require that PCAP_REMOTE be defined in order to get
100 * remote-capture APIs declared and types and #defines that they use
101 * defined.
102 *
103 * (Versions of libpcap with those APIs, and thus Npcap, which is based on
104 * those versions of libpcap, don't require it.)
105 */
106 #define HAVE_REMOTE
107 #endif
108 #include <pcap.h>
109 #include <signal.h>
110 #include <stdio.h>
111 #include <stdarg.h>
112 #include <stdlib.h>
113 #include <string.h>
114 #include <limits.h>
115 #ifdef _WIN32
116 #include <windows.h>
117 #else
118 #include <sys/time.h>
119 #include <sys/wait.h>
120 #include <sys/resource.h>
121 #include <pwd.h>
122 #include <grp.h>
123 #endif /* _WIN32 */
124
125 /*
126 * Pathname separator.
127 * Use this in pathnames, but do *not* use it in URLs.
128 */
129 #ifdef _WIN32
130 #define PATH_SEPARATOR '\\'
131 #else
132 #define PATH_SEPARATOR '/'
133 #endif
134
135 /* capabilities convenience library */
136 /* If a code depends on HAVE_LIBCAP_NG, it depends also on HAVE_CAP_NG_H.
137 * If HAVE_CAP_NG_H is not defined, undefine HAVE_LIBCAP_NG.
138 * Thus, the later tests are done only on HAVE_LIBCAP_NG.
139 */
140 #ifdef HAVE_LIBCAP_NG
141 #ifdef HAVE_CAP_NG_H
142 #include <cap-ng.h>
143 #else
144 #undef HAVE_LIBCAP_NG
145 #endif /* HAVE_CAP_NG_H */
146 #endif /* HAVE_LIBCAP_NG */
147
148 #ifdef __FreeBSD__
149 #include <sys/sysctl.h>
150 #endif /* __FreeBSD__ */
151
152 #include "netdissect-stdinc.h"
153 #include "netdissect.h"
154 #include "interface.h"
155 #include "addrtoname.h"
156 #include "machdep.h"
157 #include "pcap-missing.h"
158 #include "ascii_strcasecmp.h"
159
160 #include "print.h"
161
162 #include "diag-control.h"
163
164 #include "fptype.h"
165
166 #ifndef PATH_MAX
167 #define PATH_MAX 1024
168 #endif
169
170 #if defined(SIGINFO)
171 #define SIGNAL_REQ_INFO SIGINFO
172 #elif defined(SIGUSR1)
173 #define SIGNAL_REQ_INFO SIGUSR1
174 #endif
175
176 #if defined(HAVE_PCAP_DUMP_FLUSH) && defined(SIGUSR2)
177 #define SIGNAL_FLUSH_PCAP SIGUSR2
178 #endif
179
180 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
181 static int Bflag; /* buffer size */
182 #endif
183 #ifdef HAVE_PCAP_DUMP_FTELL64
184 static int64_t Cflag; /* rotate dump files after this many bytes */
185 #else
186 static long Cflag; /* rotate dump files after this many bytes */
187 #endif
188 static int Cflag_count; /* Keep track of which file number we're writing */
189 #ifdef HAVE_PCAP_FINDALLDEVS
190 static int Dflag; /* list available devices and exit */
191 #endif
192 #ifdef HAVE_PCAP_FINDALLDEVS_EX
193 static char *remote_interfaces_source; /* list available devices from this source and exit */
194 #endif
195
196 /*
197 * This is exported because, in some versions of libpcap, if libpcap
198 * is built with optimizer debugging code (which is *NOT* the default
199 * configuration!), the library *imports*(!) a variable named dflag,
200 * under the expectation that tcpdump is exporting it, to govern
201 * how much debugging information to print when optimizing
202 * the generated BPF code.
203 *
204 * This is a horrible hack; newer versions of libpcap don't import
205 * dflag but, instead, *if* built with optimizer debugging code,
206 * *export* a routine to set that flag.
207 */
208 extern int dflag;
209 int dflag; /* print filter code */
210 static int Gflag; /* rotate dump files after this many seconds */
211 static int Gflag_count; /* number of files created with Gflag rotation */
212 static time_t Gflag_time; /* The last time_t the dump file was rotated. */
213 static int Lflag; /* list available data link types and exit */
214 static int Iflag; /* rfmon (monitor) mode */
215 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
216 static int Jflag; /* list available time stamp types */
217 static int jflag = -1; /* packet time stamp source */
218 #endif
219 static int lflag; /* line-buffered output */
220 static int pflag; /* don't go promiscuous */
221 #ifdef HAVE_PCAP_SETDIRECTION
222 static int Qflag = -1; /* restrict captured packet by send/receive direction */
223 #endif
224 #ifdef HAVE_PCAP_DUMP_FLUSH
225 static int Uflag; /* "unbuffered" output of dump files */
226 #endif
227 static int Wflag; /* recycle output files after this number of files */
228 static int WflagChars;
229 static char *zflag = NULL; /* compress each savefile using a specified command (like gzip or bzip2) */
230 static int timeout = 1000; /* default timeout = 1000 ms = 1 s */
231 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
232 static int immediate_mode;
233 #endif
234 static int count_mode;
235
236 static int infodelay;
237 static int infoprint;
238
239 char *program_name;
240
241 /* Forwards */
242 static NORETURN void error(FORMAT_STRING(const char *), ...) PRINTFLIKE(1, 2);
243 static void warning(FORMAT_STRING(const char *), ...) PRINTFLIKE(1, 2);
244 static NORETURN void exit_tcpdump(int);
245 static void (*setsignal (int sig, void (*func)(int)))(int);
246 static void cleanup(int);
247 static void child_cleanup(int);
248 static void print_version(FILE *);
249 static void print_usage(FILE *);
250 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
251 static NORETURN void show_tstamp_types_and_exit(pcap_t *, const char *device);
252 #endif
253 static NORETURN void show_dlts_and_exit(pcap_t *, const char *device);
254 #ifdef HAVE_PCAP_FINDALLDEVS
255 static NORETURN void show_devices_and_exit(void);
256 #endif
257 #ifdef HAVE_PCAP_FINDALLDEVS_EX
258 static NORETURN void show_remote_devices_and_exit(void);
259 #endif
260
261 static void print_packet(u_char *, const struct pcap_pkthdr *, const u_char *);
262 static void dump_packet_and_trunc(u_char *, const struct pcap_pkthdr *, const u_char *);
263 static void dump_packet(u_char *, const struct pcap_pkthdr *, const u_char *);
264 static void droproot(const char *, const char *);
265
266 #ifdef SIGNAL_REQ_INFO
267 static void requestinfo(int);
268 #endif
269
270 #ifdef SIGNAL_FLUSH_PCAP
271 static void flushpcap(int);
272 #endif
273
274 #ifdef _WIN32
275 static HANDLE timer_handle = INVALID_HANDLE_VALUE;
276 static void CALLBACK verbose_stats_dump(PVOID param, BOOLEAN timer_fired);
277 #else /* _WIN32 */
278 static void verbose_stats_dump(int sig);
279 #endif /* _WIN32 */
280
281 static void info(int);
282 static u_int packets_captured;
283
284 #ifdef HAVE_PCAP_FINDALLDEVS
285 static const struct tok status_flags[] = {
286 #ifdef PCAP_IF_UP
287 { PCAP_IF_UP, "Up" },
288 #endif
289 #ifdef PCAP_IF_RUNNING
290 { PCAP_IF_RUNNING, "Running" },
291 #endif
292 { PCAP_IF_LOOPBACK, "Loopback" },
293 #ifdef PCAP_IF_WIRELESS
294 { PCAP_IF_WIRELESS, "Wireless" },
295 #endif
296 { 0, NULL }
297 };
298 #endif
299
300 static pcap_t *pd;
301 static pcap_dumper_t *pdd = NULL;
302
303 static int supports_monitor_mode;
304
305 extern int optind;
306 extern int opterr;
307 extern char *optarg;
308
309 struct dump_info {
310 char *WFileName;
311 char *CurrentFileName;
312 pcap_t *pd;
313 pcap_dumper_t *pdd;
314 netdissect_options *ndo;
315 #ifdef HAVE_CAPSICUM
316 int dirfd;
317 #endif
318 };
319
320 #if defined(HAVE_PCAP_SET_PARSER_DEBUG)
321 /*
322 * We have pcap_set_parser_debug() in libpcap; declare it (it's not declared
323 * by any libpcap header, because it's a special hack, only available if
324 * libpcap was configured to include it, and only intended for use by
325 * libpcap developers trying to debug the parser for filter expressions).
326 */
327 #ifdef _WIN32
328 __declspec(dllimport)
329 #else /* _WIN32 */
330 extern
331 #endif /* _WIN32 */
332 void pcap_set_parser_debug(int);
333 #elif defined(HAVE_PCAP_DEBUG) || defined(HAVE_YYDEBUG)
334 /*
335 * We don't have pcap_set_parser_debug() in libpcap, but we do have
336 * pcap_debug or yydebug. Make a local version of pcap_set_parser_debug()
337 * to set the flag, and define HAVE_PCAP_SET_PARSER_DEBUG.
338 */
339 static void
340 pcap_set_parser_debug(int value)
341 {
342 #ifdef HAVE_PCAP_DEBUG
343 extern int pcap_debug;
344
345 pcap_debug = value;
346 #else /* HAVE_PCAP_DEBUG */
347 extern int yydebug;
348
349 yydebug = value;
350 #endif /* HAVE_PCAP_DEBUG */
351 }
352
353 #define HAVE_PCAP_SET_PARSER_DEBUG
354 #endif
355
356 #if defined(HAVE_PCAP_SET_OPTIMIZER_DEBUG)
357 /*
358 * We have pcap_set_optimizer_debug() in libpcap; declare it (it's not declared
359 * by any libpcap header, because it's a special hack, only available if
360 * libpcap was configured to include it, and only intended for use by
361 * libpcap developers trying to debug the optimizer for filter expressions).
362 */
363 #ifdef _WIN32
364 __declspec(dllimport)
365 #else /* _WIN32 */
366 extern
367 #endif /* _WIN32 */
368 void pcap_set_optimizer_debug(int);
369 #endif
370
371 /* VARARGS */
372 static void
373 error(const char *fmt, ...)
374 {
375 va_list ap;
376
377 (void)fprintf(stderr, "%s: ", program_name);
378 va_start(ap, fmt);
379 (void)vfprintf(stderr, fmt, ap);
380 va_end(ap);
381 if (*fmt) {
382 fmt += strlen(fmt);
383 if (fmt[-1] != '\n')
384 (void)fputc('\n', stderr);
385 }
386 exit_tcpdump(S_ERR_HOST_PROGRAM);
387 /* NOTREACHED */
388 }
389
390 /* VARARGS */
391 static void
392 warning(const char *fmt, ...)
393 {
394 va_list ap;
395
396 (void)fprintf(stderr, "%s: WARNING: ", program_name);
397 va_start(ap, fmt);
398 (void)vfprintf(stderr, fmt, ap);
399 va_end(ap);
400 if (*fmt) {
401 fmt += strlen(fmt);
402 if (fmt[-1] != '\n')
403 (void)fputc('\n', stderr);
404 }
405 }
406
407 static void
408 exit_tcpdump(int status)
409 {
410 nd_cleanup();
411 exit(status);
412 }
413
414 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
415 static void
416 show_tstamp_types_and_exit(pcap_t *pc, const char *device)
417 {
418 int n_tstamp_types;
419 int *tstamp_types = 0;
420 const char *tstamp_type_name;
421 int i;
422
423 n_tstamp_types = pcap_list_tstamp_types(pc, &tstamp_types);
424 if (n_tstamp_types < 0)
425 error("%s", pcap_geterr(pc));
426
427 if (n_tstamp_types == 0) {
428 fprintf(stderr, "Time stamp type cannot be set for %s\n",
429 device);
430 exit_tcpdump(S_SUCCESS);
431 }
432 fprintf(stdout, "Time stamp types for %s (use option -j to set):\n",
433 device);
434 for (i = 0; i < n_tstamp_types; i++) {
435 tstamp_type_name = pcap_tstamp_type_val_to_name(tstamp_types[i]);
436 if (tstamp_type_name != NULL) {
437 (void) fprintf(stdout, " %s (%s)\n", tstamp_type_name,
438 pcap_tstamp_type_val_to_description(tstamp_types[i]));
439 } else {
440 (void) fprintf(stdout, " %d\n", tstamp_types[i]);
441 }
442 }
443 pcap_free_tstamp_types(tstamp_types);
444 exit_tcpdump(S_SUCCESS);
445 }
446 #endif
447
448 static void
449 show_dlts_and_exit(pcap_t *pc, const char *device)
450 {
451 int n_dlts, i;
452 int *dlts = 0;
453 const char *dlt_name;
454
455 n_dlts = pcap_list_datalinks(pc, &dlts);
456 if (n_dlts < 0)
457 error("%s", pcap_geterr(pc));
458 else if (n_dlts == 0 || !dlts)
459 error("No data link types.");
460
461 /*
462 * If the interface is known to support monitor mode, indicate
463 * whether these are the data link types available when not in
464 * monitor mode, if -I wasn't specified, or when in monitor mode,
465 * when -I was specified (the link-layer types available in
466 * monitor mode might be different from the ones available when
467 * not in monitor mode).
468 */
469 (void) fprintf(stdout, "Data link types for ");
470 if (supports_monitor_mode)
471 (void) fprintf(stdout, "%s %s",
472 device,
473 Iflag ? "when in monitor mode" : "when not in monitor mode");
474 else
475 (void) fprintf(stdout, "%s",
476 device);
477 (void) fprintf(stdout, " (use option -y to set):\n");
478
479 for (i = 0; i < n_dlts; i++) {
480 dlt_name = pcap_datalink_val_to_name(dlts[i]);
481 if (dlt_name != NULL) {
482 (void) fprintf(stdout, " %s (%s)", dlt_name,
483 pcap_datalink_val_to_description(dlts[i]));
484
485 /*
486 * OK, does tcpdump handle that type?
487 */
488 if (!has_printer(dlts[i]))
489 (void) fprintf(stdout, " (printing not supported)");
490 fprintf(stdout, "\n");
491 } else {
492 (void) fprintf(stdout, " DLT %d (printing not supported)\n",
493 dlts[i]);
494 }
495 }
496 #ifdef HAVE_PCAP_FREE_DATALINKS
497 pcap_free_datalinks(dlts);
498 #endif
499 exit_tcpdump(S_SUCCESS);
500 }
501
502 #ifdef HAVE_PCAP_FINDALLDEVS
503 static void
504 show_devices_and_exit(void)
505 {
506 pcap_if_t *dev, *devlist;
507 char ebuf[PCAP_ERRBUF_SIZE];
508 int i;
509
510 if (pcap_findalldevs(&devlist, ebuf) < 0)
511 error("%s", ebuf);
512 for (i = 0, dev = devlist; dev != NULL; i++, dev = dev->next) {
513 printf("%d.%s", i+1, dev->name);
514 if (dev->description != NULL)
515 printf(" (%s)", dev->description);
516 if (dev->flags != 0) {
517 printf(" [");
518 printf("%s", bittok2str(status_flags, "none", dev->flags));
519 #ifdef PCAP_IF_WIRELESS
520 if (dev->flags & PCAP_IF_WIRELESS) {
521 switch (dev->flags & PCAP_IF_CONNECTION_STATUS) {
522
523 case PCAP_IF_CONNECTION_STATUS_UNKNOWN:
524 printf(", Association status unknown");
525 break;
526
527 case PCAP_IF_CONNECTION_STATUS_CONNECTED:
528 printf(", Associated");
529 break;
530
531 case PCAP_IF_CONNECTION_STATUS_DISCONNECTED:
532 printf(", Not associated");
533 break;
534
535 case PCAP_IF_CONNECTION_STATUS_NOT_APPLICABLE:
536 break;
537 }
538 } else {
539 switch (dev->flags & PCAP_IF_CONNECTION_STATUS) {
540
541 case PCAP_IF_CONNECTION_STATUS_UNKNOWN:
542 printf(", Connection status unknown");
543 break;
544
545 case PCAP_IF_CONNECTION_STATUS_CONNECTED:
546 printf(", Connected");
547 break;
548
549 case PCAP_IF_CONNECTION_STATUS_DISCONNECTED:
550 printf(", Disconnected");
551 break;
552
553 case PCAP_IF_CONNECTION_STATUS_NOT_APPLICABLE:
554 break;
555 }
556 }
557 #endif
558 printf("]");
559 }
560 printf("\n");
561 }
562 pcap_freealldevs(devlist);
563 exit_tcpdump(S_SUCCESS);
564 }
565 #endif /* HAVE_PCAP_FINDALLDEVS */
566
567 #ifdef HAVE_PCAP_FINDALLDEVS_EX
568 static void
569 show_remote_devices_and_exit(void)
570 {
571 pcap_if_t *dev, *devlist;
572 char ebuf[PCAP_ERRBUF_SIZE];
573 int i;
574
575 if (pcap_findalldevs_ex(remote_interfaces_source, NULL, &devlist,
576 ebuf) < 0)
577 error("%s", ebuf);
578 for (i = 0, dev = devlist; dev != NULL; i++, dev = dev->next) {
579 printf("%d.%s", i+1, dev->name);
580 if (dev->description != NULL)
581 printf(" (%s)", dev->description);
582 if (dev->flags != 0)
583 printf(" [%s]", bittok2str(status_flags, "none", dev->flags));
584 printf("\n");
585 }
586 pcap_freealldevs(devlist);
587 exit_tcpdump(S_SUCCESS);
588 }
589 #endif /* HAVE_PCAP_FINDALLDEVS */
590
591 /*
592 * Short options.
593 *
594 * Note that there we use all letters for short options except for g, k,
595 * o, and P, and those are used by other versions of tcpdump, and we should
596 * only use them for the same purposes that the other versions of tcpdump
597 * use them:
598 *
599 * macOS tcpdump uses -g to force non--v output for IP to be on one
600 * line, making it more "g"repable;
601 *
602 * macOS tcpdump uses -k to specify that packet comments in pcapng files
603 * should be printed;
604 *
605 * OpenBSD tcpdump uses -o to indicate that OS fingerprinting should be done
606 * for hosts sending TCP SYN packets;
607 *
608 * macOS tcpdump uses -P to indicate that -w should write pcapng rather
609 * than pcap files.
610 *
611 * macOS tcpdump also uses -Q to specify expressions that match packet
612 * metadata, including but not limited to the packet direction.
613 * The expression syntax is different from a simple "in|out|inout",
614 * and those expressions aren't accepted by macOS tcpdump, but the
615 * equivalents would be "in" = "dir=in", "out" = "dir=out", and
616 * "inout" = "dir=in or dir=out", and the parser could conceivably
617 * special-case "in", "out", and "inout" as expressions for backwards
618 * compatibility, so all is not (yet) lost.
619 */
620
621 /*
622 * Set up flags that might or might not be supported depending on the
623 * version of libpcap we're using.
624 */
625 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
626 #define B_FLAG "B:"
627 #define B_FLAG_USAGE " [ -B size ]"
628 #else /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */
629 #define B_FLAG
630 #define B_FLAG_USAGE
631 #endif /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */
632
633 #ifdef HAVE_PCAP_FINDALLDEVS
634 #define D_FLAG "D"
635 #else
636 #define D_FLAG
637 #endif
638
639 #ifdef HAVE_PCAP_CREATE
640 #define I_FLAG "I"
641 #else /* HAVE_PCAP_CREATE */
642 #define I_FLAG
643 #endif /* HAVE_PCAP_CREATE */
644
645 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
646 #define j_FLAG "j:"
647 #define j_FLAG_USAGE " [ -j tstamptype ]"
648 #define J_FLAG "J"
649 #else /* PCAP_ERROR_TSTAMP_TYPE_NOTSUP */
650 #define j_FLAG
651 #define j_FLAG_USAGE
652 #define J_FLAG
653 #endif /* PCAP_ERROR_TSTAMP_TYPE_NOTSUP */
654
655 #ifdef USE_LIBSMI
656 #define m_FLAG_USAGE "[ -m module ] ..."
657 #endif
658
659 #ifdef HAVE_PCAP_SETDIRECTION
660 #define Q_FLAG "Q:"
661 #define Q_FLAG_USAGE " [ -Q in|out|inout ]"
662 #else
663 #define Q_FLAG
664 #define Q_FLAG_USAGE
665 #endif
666
667 #ifdef HAVE_PCAP_DUMP_FLUSH
668 #define U_FLAG "U"
669 #else
670 #define U_FLAG
671 #endif
672
673 #define SHORTOPTS "aAb" B_FLAG "c:C:d" D_FLAG "eE:fF:G:hHi:" I_FLAG j_FLAG J_FLAG "KlLm:M:nNOpq" Q_FLAG "r:s:StT:u" U_FLAG "vV:w:W:xXy:Yz:Z:#"
674
675 /*
676 * Long options.
677 *
678 * We do not currently have long options corresponding to all short
679 * options; we should probably pick appropriate option names for them.
680 *
681 * However, the short options where the number of times the option is
682 * specified matters, such as -v and -d and -t, should probably not
683 * just map to a long option, as saying
684 *
685 * tcpdump --verbose --verbose
686 *
687 * doesn't make sense; it should be --verbosity={N} or something such
688 * as that.
689 *
690 * For long options with no corresponding short options, we define values
691 * outside the range of ASCII graphic characters, make that the last
692 * component of the entry for the long option, and have a case for that
693 * option in the switch statement.
694 */
695 #define OPTION_VERSION 128
696 #define OPTION_TSTAMP_PRECISION 129
697 #define OPTION_IMMEDIATE_MODE 130
698 #define OPTION_PRINT 131
699 #define OPTION_LIST_REMOTE_INTERFACES 132
700 #define OPTION_TSTAMP_MICRO 133
701 #define OPTION_TSTAMP_NANO 134
702 #define OPTION_FP_TYPE 135
703 #define OPTION_COUNT 136
704
705 static const struct option longopts[] = {
706 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
707 { "buffer-size", required_argument, NULL, 'B' },
708 #endif
709 { "list-interfaces", no_argument, NULL, 'D' },
710 #ifdef HAVE_PCAP_FINDALLDEVS_EX
711 { "list-remote-interfaces", required_argument, NULL, OPTION_LIST_REMOTE_INTERFACES },
712 #endif
713 { "help", no_argument, NULL, 'h' },
714 { "interface", required_argument, NULL, 'i' },
715 #ifdef HAVE_PCAP_CREATE
716 { "monitor-mode", no_argument, NULL, 'I' },
717 #endif
718 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
719 { "time-stamp-type", required_argument, NULL, 'j' },
720 { "list-time-stamp-types", no_argument, NULL, 'J' },
721 #endif
722 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
723 { "micro", no_argument, NULL, OPTION_TSTAMP_MICRO},
724 { "nano", no_argument, NULL, OPTION_TSTAMP_NANO},
725 { "time-stamp-precision", required_argument, NULL, OPTION_TSTAMP_PRECISION},
726 #endif
727 { "dont-verify-checksums", no_argument, NULL, 'K' },
728 { "list-data-link-types", no_argument, NULL, 'L' },
729 { "no-optimize", no_argument, NULL, 'O' },
730 { "no-promiscuous-mode", no_argument, NULL, 'p' },
731 #ifdef HAVE_PCAP_SETDIRECTION
732 { "direction", required_argument, NULL, 'Q' },
733 #endif
734 { "snapshot-length", required_argument, NULL, 's' },
735 { "absolute-tcp-sequence-numbers", no_argument, NULL, 'S' },
736 #ifdef HAVE_PCAP_DUMP_FLUSH
737 { "packet-buffered", no_argument, NULL, 'U' },
738 #endif
739 { "linktype", required_argument, NULL, 'y' },
740 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
741 { "immediate-mode", no_argument, NULL, OPTION_IMMEDIATE_MODE },
742 #endif
743 #ifdef HAVE_PCAP_SET_PARSER_DEBUG
744 { "debug-filter-parser", no_argument, NULL, 'Y' },
745 #endif
746 { "relinquish-privileges", required_argument, NULL, 'Z' },
747 { "count", no_argument, NULL, OPTION_COUNT },
748 { "fp-type", no_argument, NULL, OPTION_FP_TYPE },
749 { "number", no_argument, NULL, '#' },
750 { "print", no_argument, NULL, OPTION_PRINT },
751 { "version", no_argument, NULL, OPTION_VERSION },
752 { NULL, 0, NULL, 0 }
753 };
754
755 #ifdef HAVE_PCAP_FINDALLDEVS_EX
756 #define LIST_REMOTE_INTERFACES_USAGE "[ --list-remote-interfaces remote-source ]"
757 #else
758 #define LIST_REMOTE_INTERFACES_USAGE
759 #endif
760
761 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
762 #define IMMEDIATE_MODE_USAGE " [ --immediate-mode ]"
763 #else
764 #define IMMEDIATE_MODE_USAGE ""
765 #endif
766
767 #ifndef _WIN32
768 /* Drop root privileges and chroot if necessary */
769 static void
770 droproot(const char *username, const char *chroot_dir)
771 {
772 struct passwd *pw = NULL;
773
774 if (chroot_dir && !username)
775 error("Chroot without dropping root is insecure");
776
777 pw = getpwnam(username);
778 if (pw) {
779 if (chroot_dir) {
780 if (chroot(chroot_dir) != 0 || chdir ("/") != 0)
781 error("Couldn't chroot/chdir to '%.64s': %s",
782 chroot_dir, pcap_strerror(errno));
783 }
784 #ifdef HAVE_LIBCAP_NG
785 {
786 int ret = capng_change_id(pw->pw_uid, pw->pw_gid, CAPNG_NO_FLAG);
787 if (ret < 0)
788 error("capng_change_id(): return %d\n", ret);
789 else
790 fprintf(stderr, "dropped privs to %s\n", username);
791 }
792 #else
793 if (initgroups(pw->pw_name, pw->pw_gid) != 0 ||
794 setgid(pw->pw_gid) != 0 || setuid(pw->pw_uid) != 0)
795 error("Couldn't change to '%.32s' uid=%lu gid=%lu: %s",
796 username,
797 (unsigned long)pw->pw_uid,
798 (unsigned long)pw->pw_gid,
799 pcap_strerror(errno));
800 else {
801 fprintf(stderr, "dropped privs to %s\n", username);
802 }
803 #endif /* HAVE_LIBCAP_NG */
804 } else
805 error("Couldn't find user '%.32s'", username);
806 #ifdef HAVE_LIBCAP_NG
807 /* We don't need CAP_SETUID, CAP_SETGID and CAP_SYS_CHROOT anymore. */
808 DIAG_OFF_ASSIGN_ENUM
809 capng_updatev(
810 CAPNG_DROP,
811 CAPNG_EFFECTIVE | CAPNG_PERMITTED,
812 CAP_SETUID,
813 CAP_SETGID,
814 CAP_SYS_CHROOT,
815 -1);
816 DIAG_ON_ASSIGN_ENUM
817 capng_apply(CAPNG_SELECT_BOTH);
818 #endif /* HAVE_LIBCAP_NG */
819
820 }
821 #endif /* _WIN32 */
822
823 static int
824 getWflagChars(int x)
825 {
826 int c = 0;
827
828 x -= 1;
829 while (x > 0) {
830 c += 1;
831 x /= 10;
832 }
833
834 return c;
835 }
836
837
838 static void
839 MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars)
840 {
841 char *filename = malloc(PATH_MAX + 1);
842 if (filename == NULL)
843 error("%s: malloc", __func__);
844 if (strlen(orig_name) == 0)
845 error("an empty string is not a valid file name");
846
847 /* Process with strftime if Gflag is set. */
848 if (Gflag != 0) {
849 struct tm *local_tm;
850
851 /* Convert Gflag_time to a usable format */
852 if ((local_tm = localtime(&Gflag_time)) == NULL) {
853 error("%s: localtime", __func__);
854 }
855
856 /* There's no good way to detect an error in strftime since a return
857 * value of 0 isn't necessarily failure; if orig_name is an empty
858 * string, the formatted string will be empty.
859 *
860 * However, the C90 standard says that, if there *is* a
861 * buffer overflow, the content of the buffer is undefined,
862 * so we must check for a buffer overflow.
863 *
864 * So we check above for an empty orig_name, and only call
865 * strftime() if it's non-empty, in which case the return
866 * value will only be 0 if the formatted date doesn't fit
867 * in the buffer.
868 *
869 * (We check above because, even if we don't use -G, we
870 * want a better error message than "tcpdump: : No such
871 * file or directory" for this case.)
872 */
873 if (strftime(filename, PATH_MAX, orig_name, local_tm) == 0) {
874 error("%s: strftime", __func__);
875 }
876 } else {
877 strncpy(filename, orig_name, PATH_MAX);
878 }
879
880 if (cnt == 0 && max_chars == 0)
881 strncpy(buffer, filename, PATH_MAX + 1);
882 else
883 if (snprintf(buffer, PATH_MAX + 1, "%s%0*d", filename, max_chars, cnt) > PATH_MAX)
884 /* Report an error if the filename is too large */
885 error("too many output files or filename is too long (> %d)", PATH_MAX);
886 free(filename);
887 }
888
889 static char *
890 get_next_file(FILE *VFile, char *ptr)
891 {
892 char *ret;
893 size_t len;
894
895 ret = fgets(ptr, PATH_MAX, VFile);
896 if (!ret)
897 return NULL;
898
899 len = strlen (ptr);
900 if (len > 0 && ptr[len - 1] == '\n')
901 ptr[len - 1] = '\0';
902
903 return ret;
904 }
905
906 #ifdef HAVE_CASPER
907 static cap_channel_t *
908 capdns_setup(void)
909 {
910 cap_channel_t *capcas, *capdnsloc;
911 const char *types[1];
912 int families[2];
913
914 capcas = cap_init();
915 if (capcas == NULL)
916 error("unable to create casper process");
917 capdnsloc = cap_service_open(capcas, "system.dns");
918 /* Casper capability no longer needed. */
919 cap_close(capcas);
920 if (capdnsloc == NULL)
921 error("unable to open system.dns service");
922 /* Limit system.dns to reverse DNS lookups. */
923 types[0] = "ADDR";
924 if (cap_dns_type_limit(capdnsloc, types, 1) < 0)
925 error("unable to limit access to system.dns service");
926 families[0] = AF_INET;
927 families[1] = AF_INET6;
928 if (cap_dns_family_limit(capdnsloc, families, 2) < 0)
929 error("unable to limit access to system.dns service");
930
931 return (capdnsloc);
932 }
933 #endif /* HAVE_CASPER */
934
935 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
936 static int
937 tstamp_precision_from_string(const char *precision)
938 {
939 if (strncmp(precision, "nano", strlen("nano")) == 0)
940 return PCAP_TSTAMP_PRECISION_NANO;
941
942 if (strncmp(precision, "micro", strlen("micro")) == 0)
943 return PCAP_TSTAMP_PRECISION_MICRO;
944
945 return -EINVAL;
946 }
947
948 static const char *
949 tstamp_precision_to_string(int precision)
950 {
951 switch (precision) {
952
953 case PCAP_TSTAMP_PRECISION_MICRO:
954 return "micro";
955
956 case PCAP_TSTAMP_PRECISION_NANO:
957 return "nano";
958
959 default:
960 return "unknown";
961 }
962 }
963 #endif
964
965 #ifdef HAVE_CAPSICUM
966 /*
967 * Ensure that, on a dump file's descriptor, we have all the rights
968 * necessary to make the standard I/O library work with an fdopen()ed
969 * FILE * from that descriptor.
970 *
971 * A long time ago in a galaxy far, far away, AT&T decided that, instead
972 * of providing separate APIs for getting and setting the FD_ flags on a
973 * descriptor, getting and setting the O_ flags on a descriptor, and
974 * locking files, they'd throw them all into a kitchen-sink fcntl() call
975 * along the lines of ioctl(), the fact that ioctl() operations are
976 * largely specific to particular character devices but fcntl() operations
977 * are either generic to all descriptors or generic to all descriptors for
978 * regular files notwithstanding.
979 *
980 * The Capsicum people decided that fine-grained control of descriptor
981 * operations was required, so that you need to grant permission for
982 * reading, writing, seeking, and fcntl-ing. The latter, courtesy of
983 * AT&T's decision, means that "fcntl-ing" isn't a thing, but a motley
984 * collection of things, so there are *individual* fcntls for which
985 * permission needs to be granted.
986 *
987 * The FreeBSD standard I/O people implemented some optimizations that
988 * requires that the standard I/O routines be able to determine whether
989 * the descriptor for the FILE * is open append-only or not; as that
990 * descriptor could have come from an open() rather than an fopen(),
991 * that requires that it be able to do an F_GETFL fcntl() to read
992 * the O_ flags.
993 *
994 * Tcpdump uses ftell() to determine how much data has been written
995 * to a file in order to, when used with -C, determine when it's time
996 * to rotate capture files. ftell() therefore needs to do an lseek()
997 * to find out the file offset and must, thanks to the aforementioned
998 * optimization, also know whether the descriptor is open append-only
999 * or not.
1000 *
1001 * The net result of all the above is that we need to grant CAP_SEEK,
1002 * CAP_WRITE, and CAP_FCNTL with the CAP_FCNTL_GETFL subcapability.
1003 *
1004 * Perhaps this is the universe's way of saying that either
1005 *
1006 * 1) there needs to be an fopenat() call and a pcap_dump_openat() call
1007 * using it, so that Capsicum-capable tcpdump wouldn't need to do
1008 * an fdopen()
1009 *
1010 * or
1011 *
1012 * 2) there needs to be a cap_fdopen() call in the FreeBSD standard
1013 * I/O library that knows what rights are needed by the standard
1014 * I/O library, based on the open mode, and assigns them, perhaps
1015 * with an additional argument indicating, for example, whether
1016 * seeking should be allowed, so that tcpdump doesn't need to know
1017 * what the standard I/O library happens to require this week.
1018 */
1019 static void
1020 set_dumper_capsicum_rights(pcap_dumper_t *p)
1021 {
1022 int fd = fileno(pcap_dump_file(p));
1023 cap_rights_t rights;
1024
1025 cap_rights_init(&rights, CAP_SEEK, CAP_WRITE, CAP_FCNTL);
1026 if (cap_rights_limit(fd, &rights) < 0 && errno != ENOSYS) {
1027 error("unable to limit dump descriptor");
1028 }
1029 if (cap_fcntls_limit(fd, CAP_FCNTL_GETFL) < 0 && errno != ENOSYS) {
1030 error("unable to limit dump descriptor fcntls");
1031 }
1032 }
1033 #endif
1034
1035 /*
1036 * Copy arg vector into a new buffer, concatenating arguments with spaces.
1037 */
1038 static char *
1039 copy_argv(char **argv)
1040 {
1041 char **p;
1042 size_t len = 0;
1043 char *buf;
1044 char *src, *dst;
1045
1046 p = argv;
1047 if (*p == NULL)
1048 return 0;
1049
1050 while (*p)
1051 len += strlen(*p++) + 1;
1052
1053 buf = (char *)malloc(len);
1054 if (buf == NULL)
1055 error("%s: malloc", __func__);
1056
1057 p = argv;
1058 dst = buf;
1059 while ((src = *p++) != NULL) {
1060 while ((*dst++ = *src++) != '\0')
1061 ;
1062 dst[-1] = ' ';
1063 }
1064 dst[-1] = '\0';
1065
1066 return buf;
1067 }
1068
1069 /*
1070 * On Windows, we need to open the file in binary mode, so that
1071 * we get all the bytes specified by the size we get from "fstat()".
1072 * On UNIX, that's not necessary. O_BINARY is defined on Windows;
1073 * we define it as 0 if it's not defined, so it does nothing.
1074 */
1075 #ifndef O_BINARY
1076 #define O_BINARY 0
1077 #endif
1078
1079 static char *
1080 read_infile(char *fname)
1081 {
1082 int i, fd;
1083 ssize_t cc;
1084 char *cp;
1085 our_statb buf;
1086
1087 fd = open(fname, O_RDONLY|O_BINARY);
1088 if (fd < 0)
1089 error("can't open %s: %s", fname, pcap_strerror(errno));
1090
1091 if (our_fstat(fd, &buf) < 0)
1092 error("can't stat %s: %s", fname, pcap_strerror(errno));
1093
1094 /*
1095 * Reject files whose size doesn't fit into an int; a filter
1096 * *that* large will probably be too big.
1097 */
1098 if (buf.st_size > INT_MAX)
1099 error("%s is too large", fname);
1100
1101 cp = malloc((u_int)buf.st_size + 1);
1102 if (cp == NULL)
1103 error("malloc(%d) for %s: %s", (u_int)buf.st_size + 1,
1104 fname, pcap_strerror(errno));
1105 cc = read(fd, cp, (u_int)buf.st_size);
1106 if (cc < 0)
1107 error("read %s: %s", fname, pcap_strerror(errno));
1108 if (cc != buf.st_size)
1109 error("short read %s (%d != %d)", fname, (int) cc,
1110 (int)buf.st_size);
1111
1112 close(fd);
1113 /* replace "# comment" with spaces */
1114 for (i = 0; i < cc; i++) {
1115 if (cp[i] == '#')
1116 while (i < cc && cp[i] != '\n')
1117 cp[i++] = ' ';
1118 }
1119 cp[cc] = '\0';
1120 return (cp);
1121 }
1122
1123 #ifdef HAVE_PCAP_FINDALLDEVS
1124 static long
1125 parse_interface_number(const char *device)
1126 {
1127 const char *p;
1128 long devnum;
1129 char *end;
1130
1131 /*
1132 * Search for a colon, terminating any scheme at the beginning
1133 * of the device.
1134 */
1135 p = strchr(device, ':');
1136 if (p != NULL) {
1137 /*
1138 * We found it. Is it followed by "//"?
1139 */
1140 p++; /* skip the : */
1141 if (strncmp(p, "//", 2) == 0) {
1142 /*
1143 * Yes. Search for the next /, at the end of the
1144 * authority part of the URL.
1145 */
1146 p += 2; /* skip the // */
1147 p = strchr(p, '/');
1148 if (p != NULL) {
1149 /*
1150 * OK, past the / is the path.
1151 */
1152 device = p + 1;
1153 }
1154 }
1155 }
1156 devnum = strtol(device, &end, 10);
1157 if (device != end && *end == '\0') {
1158 /*
1159 * It's all-numeric, but is it a valid number?
1160 */
1161 if (devnum <= 0) {
1162 /*
1163 * No, it's not an ordinal.
1164 */
1165 error("Invalid adapter index %s", device);
1166 }
1167 return (devnum);
1168 } else {
1169 /*
1170 * It's not all-numeric; return -1, so our caller
1171 * knows that.
1172 */
1173 return (-1);
1174 }
1175 }
1176
1177 static char *
1178 find_interface_by_number(const char *url
1179 #ifndef HAVE_PCAP_FINDALLDEVS_EX
1180 _U_
1181 #endif
1182 , long devnum)
1183 {
1184 pcap_if_t *dev, *devlist;
1185 long i;
1186 char ebuf[PCAP_ERRBUF_SIZE];
1187 char *device;
1188 #ifdef HAVE_PCAP_FINDALLDEVS_EX
1189 const char *endp;
1190 char *host_url;
1191 #endif
1192 int status;
1193
1194 #ifdef HAVE_PCAP_FINDALLDEVS_EX
1195 /*
1196 * Search for a colon, terminating any scheme at the beginning
1197 * of the URL.
1198 */
1199 endp = strchr(url, ':');
1200 if (endp != NULL) {
1201 /*
1202 * We found it. Is it followed by "//"?
1203 */
1204 endp++; /* skip the : */
1205 if (strncmp(endp, "//", 2) == 0) {
1206 /*
1207 * Yes. Search for the next /, at the end of the
1208 * authority part of the URL.
1209 */
1210 endp += 2; /* skip the // */
1211 endp = strchr(endp, '/');
1212 } else
1213 endp = NULL;
1214 }
1215 if (endp != NULL) {
1216 /*
1217 * OK, everything from device to endp is a URL to hand
1218 * to pcap_findalldevs_ex().
1219 */
1220 endp++; /* Include the trailing / in the URL; pcap_findalldevs_ex() requires it */
1221 host_url = malloc(endp - url + 1);
1222 if (host_url == NULL && (endp - url + 1) > 0)
1223 error("Invalid allocation for host");
1224
1225 memcpy(host_url, url, endp - url);
1226 host_url[endp - url] = '\0';
1227 status = pcap_findalldevs_ex(host_url, NULL, &devlist, ebuf);
1228 free(host_url);
1229 } else
1230 #endif
1231 status = pcap_findalldevs(&devlist, ebuf);
1232 if (status < 0)
1233 error("%s", ebuf);
1234 /*
1235 * Look for the devnum-th entry in the list of devices (1-based).
1236 */
1237 for (i = 0, dev = devlist; i < devnum-1 && dev != NULL;
1238 i++, dev = dev->next)
1239 ;
1240 if (dev == NULL) {
1241 pcap_freealldevs(devlist);
1242 error("Invalid adapter index %ld: only %ld interfaces found",
1243 devnum, i);
1244 }
1245 device = strdup(dev->name);
1246 pcap_freealldevs(devlist);
1247 return (device);
1248 }
1249 #endif
1250
1251 #ifdef HAVE_PCAP_OPEN
1252 /*
1253 * Prefixes for rpcap URLs.
1254 */
1255 static char rpcap_prefix[] = "rpcap://";
1256 static char rpcap_ssl_prefix[] = "rpcaps://";
1257 #endif
1258
1259 static pcap_t *
1260 open_interface(const char *device, netdissect_options *ndo, char *ebuf)
1261 {
1262 pcap_t *pc;
1263 #ifdef HAVE_PCAP_CREATE
1264 int status;
1265 char *cp;
1266 #endif
1267
1268 #ifdef HAVE_PCAP_OPEN
1269 /*
1270 * Is this an rpcap URL?
1271 */
1272 if (strncmp(device, rpcap_prefix, sizeof(rpcap_prefix) - 1) == 0 ||
1273 strncmp(device, rpcap_ssl_prefix, sizeof(rpcap_ssl_prefix) - 1) == 0) {
1274 /*
1275 * Yes. Open it with pcap_open().
1276 */
1277 *ebuf = '\0';
1278 pc = pcap_open(device, ndo->ndo_snaplen,
1279 pflag ? 0 : PCAP_OPENFLAG_PROMISCUOUS, timeout, NULL,
1280 ebuf);
1281 if (pc == NULL) {
1282 /*
1283 * If this failed with "No such device" or "The system
1284 * cannot find the device specified", that means
1285 * the interface doesn't exist; return NULL, so that
1286 * the caller can see whether the device name is
1287 * actually an interface index.
1288 */
1289 if (strstr(ebuf, "No such device") != NULL ||
1290 strstr(ebuf, "The system cannot find the device specified") != NULL)
1291 return (NULL);
1292 error("%s", ebuf);
1293 }
1294 if (*ebuf)
1295 warning("%s", ebuf);
1296 return (pc);
1297 }
1298 #endif /* HAVE_PCAP_OPEN */
1299
1300 #ifdef HAVE_PCAP_CREATE
1301 pc = pcap_create(device, ebuf);
1302 if (pc == NULL) {
1303 /*
1304 * If this failed with "No such device", that means
1305 * the interface doesn't exist; return NULL, so that
1306 * the caller can see whether the device name is
1307 * actually an interface index.
1308 */
1309 if (strstr(ebuf, "No such device") != NULL)
1310 return (NULL);
1311 error("%s", ebuf);
1312 }
1313 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
1314 if (Jflag)
1315 show_tstamp_types_and_exit(pc, device);
1316 #endif
1317 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
1318 status = pcap_set_tstamp_precision(pc, ndo->ndo_tstamp_precision);
1319 if (status != 0)
1320 error("%s: Can't set %ssecond time stamp precision: %s",
1321 device,
1322 tstamp_precision_to_string(ndo->ndo_tstamp_precision),
1323 pcap_statustostr(status));
1324 #endif
1325
1326 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
1327 if (immediate_mode) {
1328 status = pcap_set_immediate_mode(pc, 1);
1329 if (status != 0)
1330 error("%s: Can't set immediate mode: %s",
1331 device, pcap_statustostr(status));
1332 }
1333 #endif
1334 /*
1335 * Is this an interface that supports monitor mode?
1336 */
1337 if (pcap_can_set_rfmon(pc) == 1)
1338 supports_monitor_mode = 1;
1339 else
1340 supports_monitor_mode = 0;
1341 if (ndo->ndo_snaplen != 0) {
1342 /*
1343 * A snapshot length was explicitly specified;
1344 * use it.
1345 */
1346 status = pcap_set_snaplen(pc, ndo->ndo_snaplen);
1347 if (status != 0)
1348 error("%s: Can't set snapshot length: %s",
1349 device, pcap_statustostr(status));
1350 }
1351 status = pcap_set_promisc(pc, !pflag);
1352 if (status != 0)
1353 error("%s: Can't set promiscuous mode: %s",
1354 device, pcap_statustostr(status));
1355 if (Iflag) {
1356 status = pcap_set_rfmon(pc, 1);
1357 if (status != 0)
1358 error("%s: Can't set monitor mode: %s",
1359 device, pcap_statustostr(status));
1360 }
1361 status = pcap_set_timeout(pc, timeout);
1362 if (status != 0)
1363 error("%s: pcap_set_timeout failed: %s",
1364 device, pcap_statustostr(status));
1365 if (Bflag != 0) {
1366 status = pcap_set_buffer_size(pc, Bflag);
1367 if (status != 0)
1368 error("%s: Can't set buffer size: %s",
1369 device, pcap_statustostr(status));
1370 }
1371 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
1372 if (jflag != -1) {
1373 status = pcap_set_tstamp_type(pc, jflag);
1374 if (status < 0)
1375 error("%s: Can't set time stamp type: %s",
1376 device, pcap_statustostr(status));
1377 else if (status > 0)
1378 warning("When trying to set timestamp type '%s' on %s: %s",
1379 pcap_tstamp_type_val_to_name(jflag), device,
1380 pcap_statustostr(status));
1381 }
1382 #endif
1383 status = pcap_activate(pc);
1384 if (status < 0) {
1385 /*
1386 * pcap_activate() failed.
1387 */
1388 cp = pcap_geterr(pc);
1389 if (status == PCAP_ERROR)
1390 error("%s", cp);
1391 else if (status == PCAP_ERROR_NO_SUCH_DEVICE) {
1392 /*
1393 * Return an error for our caller to handle.
1394 */
1395 snprintf(ebuf, PCAP_ERRBUF_SIZE, "%s: %s\n(%s)",
1396 device, pcap_statustostr(status), cp);
1397 } else if (status == PCAP_ERROR_PERM_DENIED && *cp != '\0')
1398 error("%s: %s\n(%s)", device,
1399 pcap_statustostr(status), cp);
1400 #ifdef __FreeBSD__
1401 else if (status == PCAP_ERROR_RFMON_NOTSUP &&
1402 strncmp(device, "wlan", 4) == 0) {
1403 char parent[8], newdev[8];
1404 char sysctl[32];
1405 size_t s = sizeof(parent);
1406
1407 snprintf(sysctl, sizeof(sysctl),
1408 "net.wlan.%d.%%parent", atoi(device + 4));
1409 sysctlbyname(sysctl, parent, &s, NULL, 0);
1410 strlcpy(newdev, device, sizeof(newdev));
1411 /* Suggest a new wlan device. */
1412 /* FIXME: incrementing the index this way is not going to work well
1413 * when the index is 9 or greater but the only consequence in this
1414 * specific case would be an error message that looks a bit odd.
1415 */
1416 newdev[strlen(newdev)-1]++;
1417 error("%s is not a monitor mode VAP\n"
1418 "To create a new monitor mode VAP use:\n"
1419 " ifconfig %s create wlandev %s wlanmode monitor\n"
1420 "and use %s as the tcpdump interface",
1421 device, newdev, parent, newdev);
1422 }
1423 #endif
1424 else
1425 error("%s: %s", device,
1426 pcap_statustostr(status));
1427 pcap_close(pc);
1428 return (NULL);
1429 } else if (status > 0) {
1430 /*
1431 * pcap_activate() succeeded, but it's warning us
1432 * of a problem it had.
1433 */
1434 cp = pcap_geterr(pc);
1435 if (status == PCAP_WARNING)
1436 warning("%s", cp);
1437 else if (status == PCAP_WARNING_PROMISC_NOTSUP &&
1438 *cp != '\0')
1439 warning("%s: %s\n(%s)", device,
1440 pcap_statustostr(status), cp);
1441 else
1442 warning("%s: %s", device,
1443 pcap_statustostr(status));
1444 }
1445 #ifdef HAVE_PCAP_SETDIRECTION
1446 if (Qflag != -1) {
1447 status = pcap_setdirection(pc, Qflag);
1448 if (status != 0)
1449 error("%s: pcap_setdirection() failed: %s",
1450 device, pcap_geterr(pc));
1451 }
1452 #endif /* HAVE_PCAP_SETDIRECTION */
1453 #else /* HAVE_PCAP_CREATE */
1454 *ebuf = '\0';
1455 /*
1456 * If no snapshot length was specified, or a length of 0 was
1457 * specified, default to 256KB.
1458 */
1459 if (ndo->ndo_snaplen == 0)
1460 ndo->ndo_snaplen = MAXIMUM_SNAPLEN;
1461 pc = pcap_open_live(device, ndo->ndo_snaplen, !pflag, timeout, ebuf);
1462 if (pc == NULL) {
1463 /*
1464 * If this failed with "No such device", that means
1465 * the interface doesn't exist; return NULL, so that
1466 * the caller can see whether the device name is
1467 * actually an interface index.
1468 */
1469 if (strstr(ebuf, "No such device") != NULL)
1470 return (NULL);
1471 error("%s", ebuf);
1472 }
1473 if (*ebuf)
1474 warning("%s", ebuf);
1475 #endif /* HAVE_PCAP_CREATE */
1476
1477 return (pc);
1478 }
1479
1480 int
1481 main(int argc, char **argv)
1482 {
1483 int cnt, op, i;
1484 bpf_u_int32 localnet = 0, netmask = 0;
1485 char *cp, *infile, *cmdbuf, *device, *RFileName, *VFileName, *WFileName;
1486 char *endp;
1487 pcap_handler callback;
1488 int dlt;
1489 const char *dlt_name;
1490 struct bpf_program fcode;
1491 #ifndef _WIN32
1492 void (*oldhandler)(int);
1493 #endif
1494 struct dump_info dumpinfo;
1495 u_char *pcap_userdata;
1496 char ebuf[PCAP_ERRBUF_SIZE];
1497 char VFileLine[PATH_MAX + 1];
1498 const char *username = NULL;
1499 #ifndef _WIN32
1500 const char *chroot_dir = NULL;
1501 #endif
1502 char *ret = NULL;
1503 char *end;
1504 #ifdef HAVE_PCAP_FINDALLDEVS
1505 pcap_if_t *devlist;
1506 long devnum;
1507 #endif
1508 int status;
1509 FILE *VFile;
1510 #ifdef HAVE_CAPSICUM
1511 cap_rights_t rights;
1512 int cansandbox;
1513 #endif /* HAVE_CAPSICUM */
1514 int Oflag = 1; /* run filter code optimizer */
1515 int yflag_dlt = -1;
1516 const char *yflag_dlt_name = NULL;
1517 int print = 0;
1518
1519 netdissect_options Ndo;
1520 netdissect_options *ndo = &Ndo;
1521
1522 /*
1523 * Initialize the netdissect code.
1524 */
1525 if (nd_init(ebuf, sizeof(ebuf)) == -1)
1526 error("%s", ebuf);
1527
1528 memset(ndo, 0, sizeof(*ndo));
1529 ndo_set_function_pointers(ndo);
1530
1531 cnt = -1;
1532 device = NULL;
1533 infile = NULL;
1534 RFileName = NULL;
1535 VFileName = NULL;
1536 VFile = NULL;
1537 WFileName = NULL;
1538 dlt = -1;
1539 if ((cp = strrchr(argv[0], PATH_SEPARATOR)) != NULL)
1540 ndo->program_name = program_name = cp + 1;
1541 else
1542 ndo->program_name = program_name = argv[0];
1543
1544 #if defined(HAVE_PCAP_WSOCKINIT)
1545 if (pcap_wsockinit() != 0)
1546 error("Attempting to initialize Winsock failed");
1547 #elif defined(HAVE_WSOCKINIT)
1548 if (wsockinit() != 0)
1549 error("Attempting to initialize Winsock failed");
1550 #endif
1551
1552 /*
1553 * On platforms where the CPU doesn't support unaligned loads,
1554 * force unaligned accesses to abort with SIGBUS, rather than
1555 * being fixed up (slowly) by the OS kernel; on those platforms,
1556 * misaligned accesses are bugs, and we want tcpdump to crash so
1557 * that the bugs are reported.
1558 */
1559 if (abort_on_misalignment(ebuf, sizeof(ebuf)) < 0)
1560 error("%s", ebuf);
1561
1562 /*
1563 * An explicit tzset() call is usually not needed as it happens
1564 * implicitly the first time we call localtime() or mktime(),
1565 * but in some cases (sandboxing, chroot) this may be too late.
1566 */
1567 tzset();
1568
1569 while (
1570 (op = getopt_long(argc, argv, SHORTOPTS, longopts, NULL)) != -1)
1571 switch (op) {
1572
1573 case 'a':
1574 /* compatibility for old -a */
1575 break;
1576
1577 case 'A':
1578 ++ndo->ndo_Aflag;
1579 break;
1580
1581 case 'b':
1582 ++ndo->ndo_bflag;
1583 break;
1584
1585 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
1586 case 'B':
1587 Bflag = atoi(optarg)*1024;
1588 if (Bflag <= 0)
1589 error("invalid packet buffer size %s", optarg);
1590 break;
1591 #endif /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */
1592
1593 case 'c':
1594 cnt = atoi(optarg);
1595 if (cnt <= 0)
1596 error("invalid packet count %s", optarg);
1597 break;
1598
1599 case 'C':
1600 errno = 0;
1601 #ifdef HAVE_PCAP_DUMP_FTELL64
1602 Cflag = strtoint64_t(optarg, &endp, 10);
1603 #else
1604 Cflag = strtol(optarg, &endp, 10);
1605 #endif
1606 if (endp == optarg || *endp != '\0' || errno != 0
1607 || Cflag <= 0)
1608 error("invalid file size %s", optarg);
1609 /*
1610 * Will multiplying it by 1000000 overflow?
1611 */
1612 #ifdef HAVE_PCAP_DUMP_FTELL64
1613 if (Cflag > INT64_T_CONSTANT(0x7fffffffffffffff) / 1000000)
1614 #else
1615 if (Cflag > LONG_MAX / 1000000)
1616 #endif
1617 error("file size %s is too large", optarg);
1618 Cflag *= 1000000;
1619 break;
1620
1621 case 'd':
1622 ++dflag;
1623 break;
1624
1625 #ifdef HAVE_PCAP_FINDALLDEVS
1626 case 'D':
1627 Dflag++;
1628 break;
1629 #endif
1630
1631 #ifdef HAVE_PCAP_FINDALLDEVS_EX
1632 case OPTION_LIST_REMOTE_INTERFACES:
1633 remote_interfaces_source = optarg;
1634 break;
1635 #endif
1636
1637 case 'L':
1638 Lflag++;
1639 break;
1640
1641 case 'e':
1642 ++ndo->ndo_eflag;
1643 break;
1644
1645 case 'E':
1646 #ifndef HAVE_LIBCRYPTO
1647 warning("crypto code not compiled in");
1648 #endif
1649 ndo->ndo_espsecret = optarg;
1650 break;
1651
1652 case 'f':
1653 ++ndo->ndo_fflag;
1654 break;
1655
1656 case 'F':
1657 infile = optarg;
1658 break;
1659
1660 case 'G':
1661 Gflag = atoi(optarg);
1662 if (Gflag < 0)
1663 error("invalid number of seconds %s", optarg);
1664
1665 /* We will create one file initially. */
1666 Gflag_count = 0;
1667
1668 /* Grab the current time for rotation use. */
1669 if ((Gflag_time = time(NULL)) == (time_t)-1) {
1670 error("%s: can't get current time: %s",
1671 __func__, pcap_strerror(errno));
1672 }
1673 break;
1674
1675 case 'h':
1676 print_usage(stdout);
1677 exit_tcpdump(S_SUCCESS);
1678 break;
1679
1680 case 'H':
1681 ++ndo->ndo_Hflag;
1682 break;
1683
1684 case 'i':
1685 device = optarg;
1686 break;
1687
1688 #ifdef HAVE_PCAP_CREATE
1689 case 'I':
1690 ++Iflag;
1691 break;
1692 #endif /* HAVE_PCAP_CREATE */
1693
1694 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
1695 case 'j':
1696 jflag = pcap_tstamp_type_name_to_val(optarg);
1697 if (jflag < 0)
1698 error("invalid time stamp type %s", optarg);
1699 break;
1700
1701 case 'J':
1702 Jflag++;
1703 break;
1704 #endif
1705
1706 case 'l':
1707 #ifdef _WIN32
1708 /*
1709 * _IOLBF is the same as _IOFBF in Microsoft's C
1710 * libraries; the only alternative they offer
1711 * is _IONBF.
1712 *
1713 * XXX - this should really be checking for MSVC++,
1714 * not _WIN32, if, for example, MinGW has its own
1715 * C library that is more UNIX-compatible.
1716 */
1717 setvbuf(stdout, NULL, _IONBF, 0);
1718 #else /* _WIN32 */
1719 #ifdef HAVE_SETLINEBUF
1720 setlinebuf(stdout);
1721 #else
1722 setvbuf(stdout, NULL, _IOLBF, 0);
1723 #endif
1724 #endif /* _WIN32 */
1725 lflag = 1;
1726 break;
1727
1728 case 'K':
1729 ++ndo->ndo_Kflag;
1730 break;
1731
1732 case 'm':
1733 if (nd_have_smi_support()) {
1734 if (nd_load_smi_module(optarg, ebuf, sizeof(ebuf)) == -1)
1735 error("%s", ebuf);
1736 } else {
1737 (void)fprintf(stderr, "%s: ignoring option '-m %s' ",
1738 program_name, optarg);
1739 (void)fprintf(stderr, "(no libsmi support)\n");
1740 }
1741 break;
1742
1743 case 'M':
1744 /* TCP-MD5 shared secret */
1745 #ifndef HAVE_LIBCRYPTO
1746 warning("crypto code not compiled in");
1747 #endif
1748 ndo->ndo_sigsecret = optarg;
1749 break;
1750
1751 case 'n':
1752 ++ndo->ndo_nflag;
1753 break;
1754
1755 case 'N':
1756 ++ndo->ndo_Nflag;
1757 break;
1758
1759 case 'O':
1760 Oflag = 0;
1761 break;
1762
1763 case 'p':
1764 ++pflag;
1765 break;
1766
1767 case 'q':
1768 ++ndo->ndo_qflag;
1769 ++ndo->ndo_suppress_default_print;
1770 break;
1771
1772 #ifdef HAVE_PCAP_SETDIRECTION
1773 case 'Q':
1774 if (ascii_strcasecmp(optarg, "in") == 0)
1775 Qflag = PCAP_D_IN;
1776 else if (ascii_strcasecmp(optarg, "out") == 0)
1777 Qflag = PCAP_D_OUT;
1778 else if (ascii_strcasecmp(optarg, "inout") == 0)
1779 Qflag = PCAP_D_INOUT;
1780 else
1781 error("unknown capture direction '%s'", optarg);
1782 break;
1783 #endif /* HAVE_PCAP_SETDIRECTION */
1784
1785 case 'r':
1786 RFileName = optarg;
1787 break;
1788
1789 case 's':
1790 ndo->ndo_snaplen = (int)strtol(optarg, &end, 0);
1791 if (optarg == end || *end != '\0'
1792 || ndo->ndo_snaplen < 0 || ndo->ndo_snaplen > MAXIMUM_SNAPLEN)
1793 error("invalid snaplen %s (must be >= 0 and <= %d)",
1794 optarg, MAXIMUM_SNAPLEN);
1795 break;
1796
1797 case 'S':
1798 ++ndo->ndo_Sflag;
1799 break;
1800
1801 case 't':
1802 ++ndo->ndo_tflag;
1803 break;
1804
1805 case 'T':
1806 if (ascii_strcasecmp(optarg, "vat") == 0)
1807 ndo->ndo_packettype = PT_VAT;
1808 else if (ascii_strcasecmp(optarg, "wb") == 0)
1809 ndo->ndo_packettype = PT_WB;
1810 else if (ascii_strcasecmp(optarg, "rpc") == 0)
1811 ndo->ndo_packettype = PT_RPC;
1812 else if (ascii_strcasecmp(optarg, "rtp") == 0)
1813 ndo->ndo_packettype = PT_RTP;
1814 else if (ascii_strcasecmp(optarg, "rtcp") == 0)
1815 ndo->ndo_packettype = PT_RTCP;
1816 else if (ascii_strcasecmp(optarg, "snmp") == 0)
1817 ndo->ndo_packettype = PT_SNMP;
1818 else if (ascii_strcasecmp(optarg, "cnfp") == 0)
1819 ndo->ndo_packettype = PT_CNFP;
1820 else if (ascii_strcasecmp(optarg, "tftp") == 0)
1821 ndo->ndo_packettype = PT_TFTP;
1822 else if (ascii_strcasecmp(optarg, "aodv") == 0)
1823 ndo->ndo_packettype = PT_AODV;
1824 else if (ascii_strcasecmp(optarg, "carp") == 0)
1825 ndo->ndo_packettype = PT_CARP;
1826 else if (ascii_strcasecmp(optarg, "radius") == 0)
1827 ndo->ndo_packettype = PT_RADIUS;
1828 else if (ascii_strcasecmp(optarg, "zmtp1") == 0)
1829 ndo->ndo_packettype = PT_ZMTP1;
1830 else if (ascii_strcasecmp(optarg, "vxlan") == 0)
1831 ndo->ndo_packettype = PT_VXLAN;
1832 else if (ascii_strcasecmp(optarg, "pgm") == 0)
1833 ndo->ndo_packettype = PT_PGM;
1834 else if (ascii_strcasecmp(optarg, "pgm_zmtp1") == 0)
1835 ndo->ndo_packettype = PT_PGM_ZMTP1;
1836 else if (ascii_strcasecmp(optarg, "lmp") == 0)
1837 ndo->ndo_packettype = PT_LMP;
1838 else if (ascii_strcasecmp(optarg, "resp") == 0)
1839 ndo->ndo_packettype = PT_RESP;
1840 else if (ascii_strcasecmp(optarg, "ptp") == 0)
1841 ndo->ndo_packettype = PT_PTP;
1842 else if (ascii_strcasecmp(optarg, "someip") == 0)
1843 ndo->ndo_packettype = PT_SOMEIP;
1844 else if (ascii_strcasecmp(optarg, "domain") == 0)
1845 ndo->ndo_packettype = PT_DOMAIN;
1846 else
1847 error("unknown packet type '%s'", optarg);
1848 break;
1849
1850 case 'u':
1851 ++ndo->ndo_uflag;
1852 break;
1853
1854 #ifdef HAVE_PCAP_DUMP_FLUSH
1855 case 'U':
1856 ++Uflag;
1857 break;
1858 #endif
1859
1860 case 'v':
1861 ++ndo->ndo_vflag;
1862 break;
1863
1864 case 'V':
1865 VFileName = optarg;
1866 break;
1867
1868 case 'w':
1869 WFileName = optarg;
1870 break;
1871
1872 case 'W':
1873 Wflag = atoi(optarg);
1874 if (Wflag <= 0)
1875 error("invalid number of output files %s", optarg);
1876 WflagChars = getWflagChars(Wflag);
1877 break;
1878
1879 case 'x':
1880 ++ndo->ndo_xflag;
1881 ++ndo->ndo_suppress_default_print;
1882 break;
1883
1884 case 'X':
1885 ++ndo->ndo_Xflag;
1886 ++ndo->ndo_suppress_default_print;
1887 break;
1888
1889 case 'y':
1890 yflag_dlt_name = optarg;
1891 yflag_dlt =
1892 pcap_datalink_name_to_val(yflag_dlt_name);
1893 if (yflag_dlt < 0)
1894 error("invalid data link type %s", yflag_dlt_name);
1895 break;
1896
1897 #ifdef HAVE_PCAP_SET_PARSER_DEBUG
1898 case 'Y':
1899 {
1900 /* Undocumented flag */
1901 pcap_set_parser_debug(1);
1902 }
1903 break;
1904 #endif
1905 case 'z':
1906 zflag = optarg;
1907 break;
1908
1909 case 'Z':
1910 username = optarg;
1911 break;
1912
1913 case '#':
1914 ndo->ndo_packet_number = 1;
1915 break;
1916
1917 case OPTION_VERSION:
1918 print_version(stdout);
1919 exit_tcpdump(S_SUCCESS);
1920 break;
1921
1922 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
1923 case OPTION_TSTAMP_PRECISION:
1924 ndo->ndo_tstamp_precision = tstamp_precision_from_string(optarg);
1925 if (ndo->ndo_tstamp_precision < 0)
1926 error("unsupported time stamp precision");
1927 break;
1928 #endif
1929
1930 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
1931 case OPTION_IMMEDIATE_MODE:
1932 immediate_mode = 1;
1933 break;
1934 #endif
1935
1936 case OPTION_PRINT:
1937 print = 1;
1938 break;
1939
1940 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
1941 case OPTION_TSTAMP_MICRO:
1942 ndo->ndo_tstamp_precision = PCAP_TSTAMP_PRECISION_MICRO;
1943 break;
1944
1945 case OPTION_TSTAMP_NANO:
1946 ndo->ndo_tstamp_precision = PCAP_TSTAMP_PRECISION_NANO;
1947 break;
1948 #endif
1949
1950 case OPTION_FP_TYPE:
1951 /*
1952 * Print out the type of floating-point arithmetic
1953 * we're doing; it's probably IEEE, unless somebody
1954 * tries to run this on a VAX, but the precision
1955 * may differ (e.g., it might be 32-bit, 64-bit,
1956 * or 80-bit).
1957 */
1958 float_type_check(0x4e93312d);
1959 return 0;
1960
1961 case OPTION_COUNT:
1962 count_mode = 1;
1963 break;
1964
1965 default:
1966 print_usage(stderr);
1967 exit_tcpdump(S_ERR_HOST_PROGRAM);
1968 /* NOTREACHED */
1969 }
1970
1971 #ifdef HAVE_PCAP_FINDALLDEVS
1972 if (Dflag)
1973 show_devices_and_exit();
1974 #endif
1975 #ifdef HAVE_PCAP_FINDALLDEVS_EX
1976 if (remote_interfaces_source != NULL)
1977 show_remote_devices_and_exit();
1978 #endif
1979
1980 switch (ndo->ndo_tflag) {
1981
1982 case 0: /* Default */
1983 case 1: /* No time stamp */
1984 case 2: /* Unix timeval style */
1985 case 3: /* Microseconds/nanoseconds since previous packet */
1986 case 4: /* Date + Default */
1987 case 5: /* Microseconds/nanoseconds since first packet */
1988 break;
1989
1990 default: /* Not supported */
1991 error("only -t, -tt, -ttt, -tttt and -ttttt are supported");
1992 break;
1993 }
1994
1995 if (ndo->ndo_fflag != 0 && (VFileName != NULL || RFileName != NULL))
1996 error("-f can not be used with -V or -r");
1997
1998 if (VFileName != NULL && RFileName != NULL)
1999 error("-V and -r are mutually exclusive.");
2000
2001 /*
2002 * If we're printing dissected packets to the standard output,
2003 * and either the standard output is a terminal or we're doing
2004 * "line" buffering, set the capture timeout to .1 second rather
2005 * than 1 second, as the user's probably expecting to see packets
2006 * pop up immediately shortly after they arrive.
2007 *
2008 * XXX - would there be some value appropriate for all cases,
2009 * based on, say, the buffer size and packet input rate?
2010 */
2011 if ((WFileName == NULL || print) && (isatty(1) || lflag))
2012 timeout = 100;
2013
2014 #ifdef WITH_CHROOT
2015 /* if run as root, prepare for chrooting */
2016 if (getuid() == 0 || geteuid() == 0) {
2017 /* future extensibility for cmd-line arguments */
2018 if (!chroot_dir)
2019 chroot_dir = WITH_CHROOT;
2020 }
2021 #endif
2022
2023 #ifdef WITH_USER
2024 /* if run as root, prepare for dropping root privileges */
2025 if (getuid() == 0 || geteuid() == 0) {
2026 /* Run with '-Z root' to restore old behaviour */
2027 if (!username)
2028 username = WITH_USER;
2029 else if (strcmp(username, "root") == 0)
2030 username = NULL;
2031 }
2032 #endif
2033
2034 if (RFileName != NULL || VFileName != NULL) {
2035 /*
2036 * If RFileName is non-null, it's the pathname of a
2037 * savefile to read. If VFileName is non-null, it's
2038 * the pathname of a file containing a list of pathnames
2039 * (one per line) of savefiles to read.
2040 *
2041 * In either case, we're reading a savefile, not doing
2042 * a live capture.
2043 */
2044 #ifndef _WIN32
2045 /*
2046 * We don't need network access, so relinquish any set-UID
2047 * or set-GID privileges we have (if any).
2048 *
2049 * We do *not* want set-UID privileges when opening a
2050 * trace file, as that might let the user read other
2051 * people's trace files (especially if we're set-UID
2052 * root).
2053 */
2054 if (setgid(getgid()) != 0 || setuid(getuid()) != 0 )
2055 fprintf(stderr, "Warning: setgid/setuid failed !\n");
2056 #endif /* _WIN32 */
2057 if (VFileName != NULL) {
2058 if (VFileName[0] == '-' && VFileName[1] == '\0')
2059 VFile = stdin;
2060 else
2061 VFile = fopen(VFileName, "r");
2062
2063 if (VFile == NULL)
2064 error("Unable to open file: %s\n", pcap_strerror(errno));
2065
2066 ret = get_next_file(VFile, VFileLine);
2067 if (!ret)
2068 error("Nothing in %s\n", VFileName);
2069 RFileName = VFileLine;
2070 }
2071
2072 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
2073 pd = pcap_open_offline_with_tstamp_precision(RFileName,
2074 ndo->ndo_tstamp_precision, ebuf);
2075 #else
2076 pd = pcap_open_offline(RFileName, ebuf);
2077 #endif
2078
2079 if (pd == NULL)
2080 error("%s", ebuf);
2081 #ifdef HAVE_CAPSICUM
2082 cap_rights_init(&rights, CAP_READ);
2083 if (cap_rights_limit(fileno(pcap_file(pd)), &rights) < 0 &&
2084 errno != ENOSYS) {
2085 error("unable to limit pcap descriptor");
2086 }
2087 #endif
2088 dlt = pcap_datalink(pd);
2089 dlt_name = pcap_datalink_val_to_name(dlt);
2090 fprintf(stderr, "reading from file %s", RFileName);
2091 if (dlt_name == NULL) {
2092 fprintf(stderr, ", link-type %u", dlt);
2093 } else {
2094 fprintf(stderr, ", link-type %s (%s)", dlt_name,
2095 pcap_datalink_val_to_description(dlt));
2096 }
2097 fprintf(stderr, ", snapshot length %d\n", pcap_snapshot(pd));
2098 #ifdef DLT_LINUX_SLL2
2099 if (dlt == DLT_LINUX_SLL2)
2100 fprintf(stderr, "Warning: interface names might be incorrect\n");
2101 #endif
2102 } else if (dflag && !device) {
2103 int dump_dlt = DLT_EN10MB;
2104 /*
2105 * We're dumping the compiled code without an explicit
2106 * device specification. (If a device is specified, we
2107 * definitely want to open it to use the DLT of that device.)
2108 * Either default to DLT_EN10MB with a warning, or use
2109 * the user-specified value if supplied.
2110 */
2111 /*
2112 * If no snapshot length was specified, or a length of 0 was
2113 * specified, default to 256KB.
2114 */
2115 if (ndo->ndo_snaplen == 0)
2116 ndo->ndo_snaplen = MAXIMUM_SNAPLEN;
2117 /*
2118 * If a DLT was specified with the -y flag, use that instead.
2119 */
2120 if (yflag_dlt != -1)
2121 dump_dlt = yflag_dlt;
2122 else
2123 fprintf(stderr, "Warning: assuming Ethernet\n");
2124 pd = pcap_open_dead(dump_dlt, ndo->ndo_snaplen);
2125 } else {
2126 /*
2127 * We're doing a live capture.
2128 */
2129 if (device == NULL) {
2130 /*
2131 * No interface was specified. Pick one.
2132 */
2133 #ifdef HAVE_PCAP_FINDALLDEVS
2134 /*
2135 * Find the list of interfaces, and pick
2136 * the first interface.
2137 */
2138 if (pcap_findalldevs(&devlist, ebuf) == -1)
2139 error("%s", ebuf);
2140 if (devlist == NULL)
2141 error("no interfaces available for capture");
2142 device = strdup(devlist->name);
2143 pcap_freealldevs(devlist);
2144 #else /* HAVE_PCAP_FINDALLDEVS */
2145 /*
2146 * Use whatever interface pcap_lookupdev()
2147 * chooses.
2148 */
2149 device = pcap_lookupdev(ebuf);
2150 if (device == NULL)
2151 error("%s", ebuf);
2152 #endif
2153 }
2154
2155 /*
2156 * Try to open the interface with the specified name.
2157 */
2158 pd = open_interface(device, ndo, ebuf);
2159 if (pd == NULL) {
2160 /*
2161 * That failed. If we can get a list of
2162 * interfaces, and the interface name
2163 * is purely numeric, try to use it as
2164 * a 1-based index in the list of
2165 * interfaces.
2166 */
2167 #ifdef HAVE_PCAP_FINDALLDEVS
2168 devnum = parse_interface_number(device);
2169 if (devnum == -1) {
2170 /*
2171 * It's not a number; just report
2172 * the open error and fail.
2173 */
2174 error("%s", ebuf);
2175 }
2176
2177 /*
2178 * OK, it's a number; try to find the
2179 * interface with that index, and try
2180 * to open it.
2181 *
2182 * find_interface_by_number() exits if it
2183 * couldn't be found.
2184 */
2185 device = find_interface_by_number(device, devnum);
2186 pd = open_interface(device, ndo, ebuf);
2187 if (pd == NULL)
2188 error("%s", ebuf);
2189 #else /* HAVE_PCAP_FINDALLDEVS */
2190 /*
2191 * We can't get a list of interfaces; just
2192 * fail.
2193 */
2194 error("%s", ebuf);
2195 #endif /* HAVE_PCAP_FINDALLDEVS */
2196 }
2197
2198 /*
2199 * Let user own process after capture device has
2200 * been opened.
2201 */
2202 #ifndef _WIN32
2203 if (setgid(getgid()) != 0 || setuid(getuid()) != 0)
2204 fprintf(stderr, "Warning: setgid/setuid failed !\n");
2205 #endif /* _WIN32 */
2206 #if !defined(HAVE_PCAP_CREATE) && defined(_WIN32)
2207 if(Bflag != 0)
2208 if(pcap_setbuff(pd, Bflag)==-1){
2209 error("%s", pcap_geterr(pd));
2210 }
2211 #endif /* !defined(HAVE_PCAP_CREATE) && defined(_WIN32) */
2212 if (Lflag)
2213 show_dlts_and_exit(pd, device);
2214 if (yflag_dlt >= 0) {
2215 #ifdef HAVE_PCAP_SET_DATALINK
2216 if (pcap_set_datalink(pd, yflag_dlt) < 0)
2217 error("%s", pcap_geterr(pd));
2218 #else
2219 /*
2220 * We don't actually support changing the
2221 * data link type, so we only let them
2222 * set it to what it already is.
2223 */
2224 if (yflag_dlt != pcap_datalink(pd)) {
2225 error("%s is not one of the DLTs supported by this device\n",
2226 yflag_dlt_name);
2227 }
2228 #endif
2229 (void)fprintf(stderr, "%s: data link type %s\n",
2230 program_name,
2231 pcap_datalink_val_to_name(yflag_dlt));
2232 (void)fflush(stderr);
2233 }
2234 #if defined(DLT_LINUX_SLL2) && defined(HAVE_PCAP_SET_DATALINK)
2235 else {
2236 /*
2237 * Attempt to set default linktype to
2238 * DLT_LINUX_SLL2 when capturing on the
2239 * "any" device.
2240 *
2241 * If the attempt fails, just quietly drive
2242 * on; this may be a non-Linux "any" device
2243 * that doesn't support DLT_LINUX_SLL2.
2244 */
2245 if (strcmp(device, "any") == 0) {
2246 DIAG_OFF_WARN_UNUSED_RESULT
2247 (void) pcap_set_datalink(pd, DLT_LINUX_SLL2);
2248 DIAG_ON_WARN_UNUSED_RESULT
2249 }
2250 }
2251 #endif
2252 i = pcap_snapshot(pd);
2253 if (ndo->ndo_snaplen < i) {
2254 if (ndo->ndo_snaplen != 0)
2255 warning("snaplen raised from %d to %d", ndo->ndo_snaplen, i);
2256 ndo->ndo_snaplen = i;
2257 } else if (ndo->ndo_snaplen > i) {
2258 warning("snaplen lowered from %d to %d", ndo->ndo_snaplen, i);
2259 ndo->ndo_snaplen = i;
2260 }
2261 if(ndo->ndo_fflag != 0) {
2262 if (pcap_lookupnet(device, &localnet, &netmask, ebuf) < 0) {
2263 warning("foreign (-f) flag used but: %s", ebuf);
2264 }
2265 }
2266
2267 }
2268 if (infile)
2269 cmdbuf = read_infile(infile);
2270 else
2271 cmdbuf = copy_argv(&argv[optind]);
2272
2273 #ifdef HAVE_PCAP_SET_OPTIMIZER_DEBUG
2274 pcap_set_optimizer_debug(dflag);
2275 #endif
2276 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
2277 error("%s", pcap_geterr(pd));
2278 if (dflag) {
2279 bpf_dump(&fcode, dflag);
2280 pcap_close(pd);
2281 free(cmdbuf);
2282 pcap_freecode(&fcode);
2283 exit_tcpdump(S_SUCCESS);
2284 }
2285
2286 #ifdef HAVE_CASPER
2287 if (!ndo->ndo_nflag)
2288 capdns = capdns_setup();
2289 #endif /* HAVE_CASPER */
2290
2291 init_print(ndo, localnet, netmask);
2292
2293 #ifndef _WIN32
2294 (void)setsignal(SIGPIPE, cleanup);
2295 (void)setsignal(SIGTERM, cleanup);
2296 #endif /* _WIN32 */
2297 (void)setsignal(SIGINT, cleanup);
2298 #if defined(HAVE_FORK) || defined(HAVE_VFORK)
2299 (void)setsignal(SIGCHLD, child_cleanup);
2300 #endif
2301 /* Cooperate with nohup(1) */
2302 #ifndef _WIN32
2303 /*
2304 * In illumos /usr/include/sys/iso/signal_iso.h causes Clang to
2305 * generate a -Wstrict-prototypes warning here, see [1]. The
2306 * __illumos__ macro is available since at least GCC 11 and Clang 13,
2307 * see [2].
2308 * 1: https://www.illumos.org/issues/16344
2309 * 2: https://www.illumos.org/issues/13726
2310 */
2311 #ifdef __illumos__
2312 DIAG_OFF_STRICT_PROTOTYPES
2313 #endif /* __illumos__ */
2314 if ((oldhandler = setsignal(SIGHUP, cleanup)) != SIG_DFL)
2315 #ifdef __illumos__
2316 DIAG_ON_STRICT_PROTOTYPES
2317 #endif /* __illumos__ */
2318 (void)setsignal(SIGHUP, oldhandler);
2319 #endif /* _WIN32 */
2320
2321 #ifndef _WIN32
2322 /*
2323 * If a user name was specified with "-Z", attempt to switch to
2324 * that user's UID. This would probably be used with sudo,
2325 * to allow tcpdump to be run in a special restricted
2326 * account (if you just want to allow users to open capture
2327 * devices, and can't just give users that permission,
2328 * you'd make tcpdump set-UID or set-GID).
2329 *
2330 * Tcpdump doesn't necessarily write only to one savefile;
2331 * the general only way to allow a -Z instance to write to
2332 * savefiles as the user under whose UID it's run, rather
2333 * than as the user specified with -Z, would thus be to switch
2334 * to the original user ID before opening a capture file and
2335 * then switch back to the -Z user ID after opening the savefile.
2336 * Switching to the -Z user ID only after opening the first
2337 * savefile doesn't handle the general case.
2338 */
2339
2340 if (getuid() == 0 || geteuid() == 0) {
2341 #ifdef HAVE_LIBCAP_NG
2342 /* Initialize capng */
2343 capng_clear(CAPNG_SELECT_BOTH);
2344 if (username) {
2345 DIAG_OFF_ASSIGN_ENUM
2346 capng_updatev(
2347 CAPNG_ADD,
2348 CAPNG_PERMITTED | CAPNG_EFFECTIVE,
2349 CAP_SETUID,
2350 CAP_SETGID,
2351 -1);
2352 DIAG_ON_ASSIGN_ENUM
2353 }
2354 if (chroot_dir) {
2355 DIAG_OFF_ASSIGN_ENUM
2356 capng_update(
2357 CAPNG_ADD,
2358 CAPNG_PERMITTED | CAPNG_EFFECTIVE,
2359 CAP_SYS_CHROOT
2360 );
2361 DIAG_ON_ASSIGN_ENUM
2362 }
2363
2364 if (WFileName) {
2365 DIAG_OFF_ASSIGN_ENUM
2366 capng_update(
2367 CAPNG_ADD,
2368 CAPNG_PERMITTED | CAPNG_EFFECTIVE,
2369 CAP_DAC_OVERRIDE
2370 );
2371 DIAG_ON_ASSIGN_ENUM
2372 }
2373 capng_apply(CAPNG_SELECT_BOTH);
2374 #endif /* HAVE_LIBCAP_NG */
2375 if (username || chroot_dir)
2376 droproot(username, chroot_dir);
2377
2378 }
2379 #endif /* _WIN32 */
2380
2381 if (pcap_setfilter(pd, &fcode) < 0)
2382 error("%s", pcap_geterr(pd));
2383 #ifdef HAVE_CAPSICUM
2384 if (RFileName == NULL && VFileName == NULL && pcap_fileno(pd) != -1) {
2385 static const unsigned long cmds[] = { BIOCGSTATS, BIOCROTZBUF };
2386
2387 /*
2388 * The various libpcap devices use a combination of
2389 * read (bpf), ioctl (bpf, netmap), poll (netmap)
2390 * so we add the relevant access rights.
2391 */
2392 cap_rights_init(&rights, CAP_IOCTL, CAP_READ, CAP_EVENT);
2393 if (cap_rights_limit(pcap_fileno(pd), &rights) < 0 &&
2394 errno != ENOSYS) {
2395 error("unable to limit pcap descriptor");
2396 }
2397 if (cap_ioctls_limit(pcap_fileno(pd), cmds,
2398 sizeof(cmds) / sizeof(cmds[0])) < 0 && errno != ENOSYS) {
2399 error("unable to limit ioctls on pcap descriptor");
2400 }
2401 }
2402 #endif
2403 if (WFileName) {
2404 /* Do not exceed the default PATH_MAX for files. */
2405 dumpinfo.CurrentFileName = (char *)malloc(PATH_MAX + 1);
2406
2407 if (dumpinfo.CurrentFileName == NULL)
2408 error("malloc of dumpinfo.CurrentFileName");
2409
2410 /* We do not need numbering for dumpfiles if Cflag isn't set. */
2411 if (Cflag != 0)
2412 MakeFilename(dumpinfo.CurrentFileName, WFileName, 0, WflagChars);
2413 else
2414 MakeFilename(dumpinfo.CurrentFileName, WFileName, 0, 0);
2415
2416 pdd = pcap_dump_open(pd, dumpinfo.CurrentFileName);
2417 #ifdef HAVE_LIBCAP_NG
2418 /* Give up CAP_DAC_OVERRIDE capability.
2419 * Only allow it to be restored if the -C or -G flag have been
2420 * set since we may need to create more files later on.
2421 */
2422 capng_update(
2423 CAPNG_DROP,
2424 (Cflag || Gflag ? 0 : CAPNG_PERMITTED)
2425 | CAPNG_EFFECTIVE,
2426 CAP_DAC_OVERRIDE
2427 );
2428 capng_apply(CAPNG_SELECT_BOTH);
2429 #endif /* HAVE_LIBCAP_NG */
2430 if (pdd == NULL)
2431 error("%s", pcap_geterr(pd));
2432 #ifdef HAVE_CAPSICUM
2433 set_dumper_capsicum_rights(pdd);
2434 #endif
2435 if (Cflag != 0 || Gflag != 0) {
2436 #ifdef HAVE_CAPSICUM
2437 /*
2438 * basename() and dirname() may modify their input buffer
2439 * and they do since FreeBSD 12.0, but they didn't before.
2440 * Hence use the return value only, but always assume the
2441 * input buffer has been modified and would need to be
2442 * reset before the next use.
2443 */
2444 char *WFileName_copy;
2445
2446 if ((WFileName_copy = strdup(WFileName)) == NULL) {
2447 error("Unable to allocate memory for file %s",
2448 WFileName);
2449 }
2450 DIAG_OFF_C11_EXTENSIONS
2451 dumpinfo.WFileName = strdup(basename(WFileName_copy));
2452 DIAG_ON_C11_EXTENSIONS
2453 if (dumpinfo.WFileName == NULL) {
2454 error("Unable to allocate memory for file %s",
2455 WFileName);
2456 }
2457 free(WFileName_copy);
2458
2459 if ((WFileName_copy = strdup(WFileName)) == NULL) {
2460 error("Unable to allocate memory for file %s",
2461 WFileName);
2462 }
2463 DIAG_OFF_C11_EXTENSIONS
2464 char *WFileName_dirname = dirname(WFileName_copy);
2465 DIAG_ON_C11_EXTENSIONS
2466 dumpinfo.dirfd = open(WFileName_dirname,
2467 O_DIRECTORY | O_RDONLY);
2468 if (dumpinfo.dirfd < 0) {
2469 error("unable to open directory %s",
2470 WFileName_dirname);
2471 }
2472 free(WFileName_dirname);
2473 free(WFileName_copy);
2474
2475 cap_rights_init(&rights, CAP_CREATE, CAP_FCNTL,
2476 CAP_FTRUNCATE, CAP_LOOKUP, CAP_SEEK, CAP_WRITE);
2477 if (cap_rights_limit(dumpinfo.dirfd, &rights) < 0 &&
2478 errno != ENOSYS) {
2479 error("unable to limit directory rights");
2480 }
2481 if (cap_fcntls_limit(dumpinfo.dirfd, CAP_FCNTL_GETFL) < 0 &&
2482 errno != ENOSYS) {
2483 error("unable to limit dump descriptor fcntls");
2484 }
2485 #else /* !HAVE_CAPSICUM */
2486 dumpinfo.WFileName = WFileName;
2487 #endif
2488 callback = dump_packet_and_trunc;
2489 dumpinfo.pd = pd;
2490 dumpinfo.pdd = pdd;
2491 pcap_userdata = (u_char *)&dumpinfo;
2492 } else {
2493 callback = dump_packet;
2494 dumpinfo.WFileName = WFileName;
2495 dumpinfo.pd = pd;
2496 dumpinfo.pdd = pdd;
2497 pcap_userdata = (u_char *)&dumpinfo;
2498 }
2499 if (print) {
2500 dlt = pcap_datalink(pd);
2501 ndo->ndo_if_printer = get_if_printer(dlt);
2502 dumpinfo.ndo = ndo;
2503 } else
2504 dumpinfo.ndo = NULL;
2505
2506 #ifdef HAVE_PCAP_DUMP_FLUSH
2507 if (Uflag)
2508 pcap_dump_flush(pdd);
2509 #endif
2510 } else {
2511 dlt = pcap_datalink(pd);
2512 ndo->ndo_if_printer = get_if_printer(dlt);
2513 callback = print_packet;
2514 pcap_userdata = (u_char *)ndo;
2515 }
2516
2517 #ifdef SIGNAL_REQ_INFO
2518 /*
2519 * We can't get statistics when reading from a file rather
2520 * than capturing from a device.
2521 */
2522 if (RFileName == NULL)
2523 (void)setsignal(SIGNAL_REQ_INFO, requestinfo);
2524 #endif
2525 #ifdef SIGNAL_FLUSH_PCAP
2526 (void)setsignal(SIGNAL_FLUSH_PCAP, flushpcap);
2527 #endif
2528
2529 if (ndo->ndo_vflag > 0 && WFileName && RFileName == NULL && !print) {
2530 /*
2531 * When capturing to a file, if "--print" wasn't specified,
2532 *"-v" means tcpdump should, once per second,
2533 * "v"erbosely report the number of packets captured.
2534 * Except when reading from a file, because -r, -w and -v
2535 * together used to make a corner case, in which pcap_loop()
2536 * errored due to EINTR (see GH #155 for details).
2537 */
2538 #ifdef _WIN32
2539 /*
2540 * https://blogs.msdn.microsoft.com/oldnewthing/20151230-00/?p=92741
2541 *
2542 * suggests that this dates back to W2K.
2543 *
2544 * I don't know what a "long wait" is, but we'll assume
2545 * that printing the stats could be a "long wait".
2546 */
2547 CreateTimerQueueTimer(&timer_handle, NULL,
2548 verbose_stats_dump, NULL, 1000, 1000,
2549 WT_EXECUTEDEFAULT|WT_EXECUTELONGFUNCTION);
2550 setvbuf(stderr, NULL, _IONBF, 0);
2551 #else /* _WIN32 */
2552 /*
2553 * Assume this is UN*X, and that it has setitimer(); that
2554 * dates back to UNIX 95.
2555 */
2556 struct itimerval timer;
2557 (void)setsignal(SIGALRM, verbose_stats_dump);
2558 timer.it_interval.tv_sec = 1;
2559 timer.it_interval.tv_usec = 0;
2560 timer.it_value.tv_sec = 1;
2561 timer.it_value.tv_usec = 1;
2562 setitimer(ITIMER_REAL, &timer, NULL);
2563 #endif /* _WIN32 */
2564 }
2565
2566 if (RFileName == NULL) {
2567 /*
2568 * Live capture (if -V was specified, we set RFileName
2569 * to a file from the -V file). Print a message to
2570 * the standard error on UN*X.
2571 */
2572 if (!ndo->ndo_vflag && !WFileName) {
2573 (void)fprintf(stderr,
2574 "%s: verbose output suppressed, use -v[v]... for full protocol decode\n",
2575 program_name);
2576 } else
2577 (void)fprintf(stderr, "%s: ", program_name);
2578 dlt = pcap_datalink(pd);
2579 dlt_name = pcap_datalink_val_to_name(dlt);
2580 (void)fprintf(stderr, "listening on %s", device);
2581 if (dlt_name == NULL) {
2582 (void)fprintf(stderr, ", link-type %u", dlt);
2583 } else {
2584 (void)fprintf(stderr, ", link-type %s (%s)", dlt_name,
2585 pcap_datalink_val_to_description(dlt));
2586 }
2587 (void)fprintf(stderr, ", snapshot length %d bytes\n", ndo->ndo_snaplen);
2588 (void)fflush(stderr);
2589 }
2590
2591 #ifdef HAVE_CAPSICUM
2592 cansandbox = (VFileName == NULL && zflag == NULL);
2593 #ifdef HAVE_CASPER
2594 cansandbox = (cansandbox && (ndo->ndo_nflag || capdns != NULL));
2595 #else
2596 cansandbox = (cansandbox && ndo->ndo_nflag);
2597 #endif /* HAVE_CASPER */
2598 cansandbox = (cansandbox && (pcap_fileno(pd) != -1 ||
2599 RFileName != NULL));
2600
2601 if (cansandbox && cap_enter() < 0 && errno != ENOSYS)
2602 error("unable to enter the capability mode");
2603 #endif /* HAVE_CAPSICUM */
2604
2605 do {
2606 status = pcap_loop(pd, cnt, callback, pcap_userdata);
2607 if (WFileName == NULL) {
2608 /*
2609 * We're printing packets. Flush the printed output,
2610 * so it doesn't get intermingled with error output.
2611 */
2612 if (status == -2) {
2613 /*
2614 * We got interrupted, so perhaps we didn't
2615 * manage to finish a line we were printing.
2616 * Print an extra newline, just in case.
2617 */
2618 putchar('\n');
2619 }
2620 (void)fflush(stdout);
2621 }
2622 if (status == -2) {
2623 /*
2624 * We got interrupted. If we are reading multiple
2625 * files (via -V) set these so that we stop.
2626 */
2627 VFileName = NULL;
2628 ret = NULL;
2629 }
2630 if (status == -1) {
2631 /*
2632 * Error. Report it.
2633 */
2634 (void)fprintf(stderr, "%s: pcap_loop: %s\n",
2635 program_name, pcap_geterr(pd));
2636 }
2637 if (RFileName == NULL) {
2638 /*
2639 * We're doing a live capture. Report the capture
2640 * statistics.
2641 */
2642 info(1);
2643 }
2644 pcap_close(pd);
2645 if (VFileName != NULL) {
2646 ret = get_next_file(VFile, VFileLine);
2647 if (ret) {
2648 int new_dlt;
2649
2650 RFileName = VFileLine;
2651 pd = pcap_open_offline(RFileName, ebuf);
2652 if (pd == NULL)
2653 error("%s", ebuf);
2654 #ifdef HAVE_CAPSICUM
2655 cap_rights_init(&rights, CAP_READ);
2656 if (cap_rights_limit(fileno(pcap_file(pd)),
2657 &rights) < 0 && errno != ENOSYS) {
2658 error("unable to limit pcap descriptor");
2659 }
2660 #endif
2661 new_dlt = pcap_datalink(pd);
2662 if (new_dlt != dlt) {
2663 /*
2664 * The new file has a different
2665 * link-layer header type from the
2666 * previous one.
2667 */
2668 if (WFileName != NULL) {
2669 /*
2670 * We're writing raw packets
2671 * that match the filter to
2672 * a pcap file. pcap files
2673 * don't support multiple
2674 * different link-layer
2675 * header types, so we fail
2676 * here.
2677 */
2678 error("%s: new dlt does not match original", RFileName);
2679 }
2680
2681 /*
2682 * We're printing the decoded packets;
2683 * switch to the new DLT.
2684 *
2685 * To do that, we need to change
2686 * the printer, change the DLT name,
2687 * and recompile the filter with
2688 * the new DLT.
2689 */
2690 dlt = new_dlt;
2691 ndo->ndo_if_printer = get_if_printer(dlt);
2692 /* Free the old filter */
2693 pcap_freecode(&fcode);
2694 if (pcap_compile(pd, &fcode, cmdbuf, Oflag, netmask) < 0)
2695 error("%s", pcap_geterr(pd));
2696 }
2697
2698 /*
2699 * Set the filter on the new file.
2700 */
2701 if (pcap_setfilter(pd, &fcode) < 0)
2702 error("%s", pcap_geterr(pd));
2703
2704 /*
2705 * Report the new file.
2706 */
2707 dlt_name = pcap_datalink_val_to_name(dlt);
2708 fprintf(stderr, "reading from file %s", RFileName);
2709 if (dlt_name == NULL) {
2710 fprintf(stderr, ", link-type %u", dlt);
2711 } else {
2712 fprintf(stderr, ", link-type %s (%s)",
2713 dlt_name,
2714 pcap_datalink_val_to_description(dlt));
2715 }
2716 fprintf(stderr, ", snapshot length %d\n", pcap_snapshot(pd));
2717 }
2718 }
2719 }
2720 while (ret != NULL);
2721
2722 if (count_mode && RFileName != NULL)
2723 fprintf(stdout, "%u packet%s\n", packets_captured,
2724 PLURAL_SUFFIX(packets_captured));
2725
2726 free(cmdbuf);
2727 pcap_freecode(&fcode);
2728 exit_tcpdump(status == -1 ? S_ERR_HOST_PROGRAM : S_SUCCESS);
2729 }
2730
2731 /*
2732 * Catch a signal.
2733 */
2734 static void
2735 (*setsignal (int sig, void (*func)(int)))(int)
2736 {
2737 #ifdef _WIN32
2738 return (signal(sig, func));
2739 #else
2740 struct sigaction old, new;
2741
2742 memset(&new, 0, sizeof(new));
2743 new.sa_handler = func;
2744 if ((sig == SIGCHLD)
2745 # ifdef SIGNAL_REQ_INFO
2746 || (sig == SIGNAL_REQ_INFO)
2747 # endif
2748 # ifdef SIGNAL_FLUSH_PCAP
2749 || (sig == SIGNAL_FLUSH_PCAP)
2750 # endif
2751 )
2752 new.sa_flags = SA_RESTART;
2753 if (sigaction(sig, &new, &old) < 0)
2754 /* The same workaround as for SIG_DFL above. */
2755 #ifdef __illumos__
2756 DIAG_OFF_STRICT_PROTOTYPES
2757 #endif /* __illumos__ */
2758 return (SIG_ERR);
2759 #ifdef __illumos__
2760 DIAG_ON_STRICT_PROTOTYPES
2761 #endif /* __illumos__ */
2762 return (old.sa_handler);
2763 #endif
2764 }
2765
2766 /* make a clean exit on interrupts */
2767 static void
2768 cleanup(int signo _U_)
2769 {
2770 #ifdef _WIN32
2771 if (timer_handle != INVALID_HANDLE_VALUE) {
2772 DeleteTimerQueueTimer(NULL, timer_handle, NULL);
2773 CloseHandle(timer_handle);
2774 timer_handle = INVALID_HANDLE_VALUE;
2775 }
2776 #else /* _WIN32 */
2777 struct itimerval timer;
2778
2779 timer.it_interval.tv_sec = 0;
2780 timer.it_interval.tv_usec = 0;
2781 timer.it_value.tv_sec = 0;
2782 timer.it_value.tv_usec = 0;
2783 setitimer(ITIMER_REAL, &timer, NULL);
2784 #endif /* _WIN32 */
2785
2786 #ifdef HAVE_PCAP_BREAKLOOP
2787 /*
2788 * We have "pcap_breakloop()"; use it, so that we do as little
2789 * as possible in the signal handler (it's probably not safe
2790 * to do anything with standard I/O streams in a signal handler -
2791 * the ANSI C standard doesn't say it is).
2792 */
2793 pcap_breakloop(pd);
2794 #else
2795 /*
2796 * We don't have "pcap_breakloop()"; this isn't safe, but
2797 * it's the best we can do. Print the summary if we're
2798 * not reading from a savefile - i.e., if we're doing a
2799 * live capture - and exit.
2800 */
2801 if (pd != NULL && pcap_file(pd) == NULL) {
2802 /*
2803 * We got interrupted, so perhaps we didn't
2804 * manage to finish a line we were printing.
2805 * Print an extra newline, just in case.
2806 */
2807 putchar('\n');
2808 (void)fflush(stdout);
2809 info(1);
2810 }
2811 exit_tcpdump(S_SUCCESS);
2812 #endif
2813 }
2814
2815 /*
2816 On windows, we do not use a fork, so we do not care less about
2817 waiting a child processes to die
2818 */
2819 #if defined(HAVE_FORK) || defined(HAVE_VFORK)
2820 static void
2821 child_cleanup(int signo _U_)
2822 {
2823 while (waitpid(-1, NULL, WNOHANG) >= 0);
2824 }
2825 #endif /* HAVE_FORK && HAVE_VFORK */
2826
2827 static void
2828 info(int verbose)
2829 {
2830 struct pcap_stat stats;
2831
2832 /*
2833 * Older versions of libpcap didn't set ps_ifdrop on some
2834 * platforms; initialize it to 0 to handle that.
2835 */
2836 stats.ps_ifdrop = 0;
2837 if (pcap_stats(pd, &stats) < 0) {
2838 (void)fprintf(stderr, "pcap_stats: %s\n", pcap_geterr(pd));
2839 infoprint = 0;
2840 return;
2841 }
2842
2843 if (!verbose)
2844 fprintf(stderr, "%s: ", program_name);
2845
2846 (void)fprintf(stderr, "%u packet%s captured", packets_captured,
2847 PLURAL_SUFFIX(packets_captured));
2848 if (!verbose)
2849 fputs(", ", stderr);
2850 else
2851 putc('\n', stderr);
2852 (void)fprintf(stderr, "%u packet%s received by filter", stats.ps_recv,
2853 PLURAL_SUFFIX(stats.ps_recv));
2854 if (!verbose)
2855 fputs(", ", stderr);
2856 else
2857 putc('\n', stderr);
2858 (void)fprintf(stderr, "%u packet%s dropped by kernel", stats.ps_drop,
2859 PLURAL_SUFFIX(stats.ps_drop));
2860 if (stats.ps_ifdrop != 0) {
2861 if (!verbose)
2862 fputs(", ", stderr);
2863 else
2864 putc('\n', stderr);
2865 (void)fprintf(stderr, "%u packet%s dropped by interface\n",
2866 stats.ps_ifdrop, PLURAL_SUFFIX(stats.ps_ifdrop));
2867 } else
2868 putc('\n', stderr);
2869 infoprint = 0;
2870 }
2871
2872 #if defined(HAVE_FORK) || defined(HAVE_VFORK)
2873 #ifdef HAVE_FORK
2874 #define fork_subprocess() fork()
2875 #else
2876 #define fork_subprocess() vfork()
2877 #endif
2878 static void
2879 compress_savefile(const char *filename)
2880 {
2881 pid_t child;
2882
2883 child = fork_subprocess();
2884 if (child == -1) {
2885 fprintf(stderr,
2886 "compress_savefile: fork failed: %s\n",
2887 pcap_strerror(errno));
2888 return;
2889 }
2890 if (child != 0) {
2891 /* Parent process. */
2892 return;
2893 }
2894
2895 /*
2896 * Child process.
2897 * Set to lowest priority so that this doesn't disturb the capture.
2898 */
2899 #ifdef NZERO
2900 setpriority(PRIO_PROCESS, 0, NZERO - 1);
2901 #else
2902 setpriority(PRIO_PROCESS, 0, 19);
2903 #endif
2904 if (execlp(zflag, zflag, filename, (char *)NULL) == -1)
2905 fprintf(stderr,
2906 "compress_savefile: execlp(%s, %s) failed: %s\n",
2907 zflag,
2908 filename,
2909 pcap_strerror(errno));
2910 #ifdef HAVE_FORK
2911 exit(S_ERR_HOST_PROGRAM);
2912 #else
2913 _exit(S_ERR_HOST_PROGRAM);
2914 #endif
2915 }
2916 #else /* HAVE_FORK && HAVE_VFORK */
2917 static void
2918 compress_savefile(const char *filename)
2919 {
2920 fprintf(stderr,
2921 "compress_savefile failed. Functionality not implemented under your system\n");
2922 }
2923 #endif /* HAVE_FORK && HAVE_VFORK */
2924
2925 static void
2926 dump_packet_and_trunc(u_char *user, const struct pcap_pkthdr *h, const u_char *sp)
2927 {
2928 struct dump_info *dump_info;
2929
2930 ++packets_captured;
2931
2932 ++infodelay;
2933
2934 dump_info = (struct dump_info *)user;
2935
2936 /*
2937 * XXX - this won't force the file to rotate on the specified time
2938 * boundary, but it will rotate on the first packet received after the
2939 * specified Gflag number of seconds. Note: if a Gflag time boundary
2940 * and a Cflag size boundary coincide, the time rotation will occur
2941 * first thereby cancelling the Cflag boundary (since the file should
2942 * be 0).
2943 */
2944 if (Gflag != 0) {
2945 /* Check if it is time to rotate */
2946 time_t t;
2947
2948 /* Get the current time */
2949 if ((t = time(NULL)) == (time_t)-1) {
2950 error("%s: can't get current_time: %s",
2951 __func__, pcap_strerror(errno));
2952 }
2953
2954
2955 /* If the time is greater than the specified window, rotate */
2956 if (t - Gflag_time >= Gflag) {
2957 #ifdef HAVE_CAPSICUM
2958 FILE *fp;
2959 int fd;
2960 #endif
2961
2962 /* Update the Gflag_time */
2963 Gflag_time = t;
2964 /* Update Gflag_count */
2965 Gflag_count++;
2966 /*
2967 * Close the current file and open a new one.
2968 */
2969 pcap_dump_close(dump_info->pdd);
2970
2971 /*
2972 * Compress the file we just closed, if the user asked for it
2973 */
2974 if (zflag != NULL)
2975 compress_savefile(dump_info->CurrentFileName);
2976
2977 /*
2978 * Check to see if we've exceeded the Wflag (when
2979 * not using Cflag).
2980 */
2981 if (Cflag == 0 && Wflag > 0 && Gflag_count >= Wflag) {
2982 (void)fprintf(stderr, "Maximum file limit reached: %d\n",
2983 Wflag);
2984 info(1);
2985 exit_tcpdump(S_SUCCESS);
2986 /* NOTREACHED */
2987 }
2988 if (dump_info->CurrentFileName != NULL)
2989 free(dump_info->CurrentFileName);
2990 /* Allocate space for max filename + \0. */
2991 dump_info->CurrentFileName = (char *)malloc(PATH_MAX + 1);
2992 if (dump_info->CurrentFileName == NULL)
2993 error("dump_packet_and_trunc: malloc");
2994 /*
2995 * Gflag was set otherwise we wouldn't be here. Reset the count
2996 * so multiple files would end with 1,2,3 in the filename.
2997 * The counting is handled with the -C flow after this.
2998 */
2999 Cflag_count = 0;
3000
3001 /*
3002 * This is always the first file in the Cflag
3003 * rotation: e.g. 0
3004 * We also don't need numbering if Cflag is not set.
3005 */
3006 if (Cflag != 0)
3007 MakeFilename(dump_info->CurrentFileName, dump_info->WFileName, 0,
3008 WflagChars);
3009 else
3010 MakeFilename(dump_info->CurrentFileName, dump_info->WFileName, 0, 0);
3011
3012 #ifdef HAVE_LIBCAP_NG
3013 capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE);
3014 capng_apply(CAPNG_SELECT_BOTH);
3015 #endif /* HAVE_LIBCAP_NG */
3016 #ifdef HAVE_CAPSICUM
3017 fd = openat(dump_info->dirfd,
3018 dump_info->CurrentFileName,
3019 O_CREAT | O_WRONLY | O_TRUNC, 0644);
3020 if (fd < 0) {
3021 error("unable to open file %s",
3022 dump_info->CurrentFileName);
3023 }
3024 fp = fdopen(fd, "w");
3025 if (fp == NULL) {
3026 error("unable to fdopen file %s",
3027 dump_info->CurrentFileName);
3028 }
3029 dump_info->pdd = pcap_dump_fopen(dump_info->pd, fp);
3030 #else /* !HAVE_CAPSICUM */
3031 dump_info->pdd = pcap_dump_open(dump_info->pd, dump_info->CurrentFileName);
3032 #endif
3033 #ifdef HAVE_LIBCAP_NG
3034 capng_update(CAPNG_DROP, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE);
3035 capng_apply(CAPNG_SELECT_BOTH);
3036 #endif /* HAVE_LIBCAP_NG */
3037 if (dump_info->pdd == NULL)
3038 error("%s", pcap_geterr(pd));
3039 #ifdef HAVE_CAPSICUM
3040 set_dumper_capsicum_rights(dump_info->pdd);
3041 #endif
3042 }
3043 }
3044
3045 /*
3046 * XXX - this won't prevent capture files from getting
3047 * larger than Cflag - the last packet written to the
3048 * file could put it over Cflag.
3049 */
3050 if (Cflag != 0) {
3051 #ifdef HAVE_PCAP_DUMP_FTELL64
3052 int64_t size = pcap_dump_ftell64(dump_info->pdd);
3053 #else
3054 /*
3055 * XXX - this only handles a Cflag value > 2^31-1 on
3056 * LP64 platforms; to handle ILP32 (32-bit UN*X and
3057 * Windows) or LLP64 (64-bit Windows) would require
3058 * a version of libpcap with pcap_dump_ftell64().
3059 */
3060 long size = pcap_dump_ftell(dump_info->pdd);
3061 #endif
3062
3063 if (size == -1)
3064 error("ftell fails on output file");
3065 if (size > Cflag) {
3066 #ifdef HAVE_CAPSICUM
3067 FILE *fp;
3068 int fd;
3069 #endif
3070
3071 /*
3072 * Close the current file and open a new one.
3073 */
3074 pcap_dump_close(dump_info->pdd);
3075
3076 /*
3077 * Compress the file we just closed, if the user
3078 * asked for it.
3079 */
3080 if (zflag != NULL)
3081 compress_savefile(dump_info->CurrentFileName);
3082
3083 Cflag_count++;
3084 if (Wflag > 0) {
3085 if (Cflag_count >= Wflag)
3086 Cflag_count = 0;
3087 }
3088 if (dump_info->CurrentFileName != NULL)
3089 free(dump_info->CurrentFileName);
3090 dump_info->CurrentFileName = (char *)malloc(PATH_MAX + 1);
3091 if (dump_info->CurrentFileName == NULL)
3092 error("%s: malloc", __func__);
3093 MakeFilename(dump_info->CurrentFileName, dump_info->WFileName, Cflag_count, WflagChars);
3094 #ifdef HAVE_LIBCAP_NG
3095 capng_update(CAPNG_ADD, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE);
3096 capng_apply(CAPNG_SELECT_BOTH);
3097 #endif /* HAVE_LIBCAP_NG */
3098 #ifdef HAVE_CAPSICUM
3099 fd = openat(dump_info->dirfd, dump_info->CurrentFileName,
3100 O_CREAT | O_WRONLY | O_TRUNC, 0644);
3101 if (fd < 0) {
3102 error("unable to open file %s",
3103 dump_info->CurrentFileName);
3104 }
3105 fp = fdopen(fd, "w");
3106 if (fp == NULL) {
3107 error("unable to fdopen file %s",
3108 dump_info->CurrentFileName);
3109 }
3110 dump_info->pdd = pcap_dump_fopen(dump_info->pd, fp);
3111 #else /* !HAVE_CAPSICUM */
3112 dump_info->pdd = pcap_dump_open(dump_info->pd, dump_info->CurrentFileName);
3113 #endif
3114 #ifdef HAVE_LIBCAP_NG
3115 capng_update(CAPNG_DROP, CAPNG_EFFECTIVE, CAP_DAC_OVERRIDE);
3116 capng_apply(CAPNG_SELECT_BOTH);
3117 #endif /* HAVE_LIBCAP_NG */
3118 if (dump_info->pdd == NULL)
3119 error("%s", pcap_geterr(pd));
3120 #ifdef HAVE_CAPSICUM
3121 set_dumper_capsicum_rights(dump_info->pdd);
3122 #endif
3123 }
3124 }
3125
3126 pcap_dump((u_char *)dump_info->pdd, h, sp);
3127 #ifdef HAVE_PCAP_DUMP_FLUSH
3128 if (Uflag)
3129 pcap_dump_flush(dump_info->pdd);
3130 #endif
3131
3132 if (dump_info->ndo != NULL)
3133 pretty_print_packet(dump_info->ndo, h, sp, packets_captured);
3134
3135 --infodelay;
3136 if (infoprint)
3137 info(0);
3138 }
3139
3140 static void
3141 dump_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *sp)
3142 {
3143 struct dump_info *dump_info;
3144
3145 ++packets_captured;
3146
3147 ++infodelay;
3148
3149 dump_info = (struct dump_info *)user;
3150
3151 pcap_dump((u_char *)dump_info->pdd, h, sp);
3152 #ifdef HAVE_PCAP_DUMP_FLUSH
3153 if (Uflag)
3154 pcap_dump_flush(dump_info->pdd);
3155 #endif
3156
3157 if (dump_info->ndo != NULL)
3158 pretty_print_packet(dump_info->ndo, h, sp, packets_captured);
3159
3160 --infodelay;
3161 if (infoprint)
3162 info(0);
3163 }
3164
3165 static void
3166 print_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *sp)
3167 {
3168 ++packets_captured;
3169
3170 ++infodelay;
3171
3172 if (!count_mode)
3173 pretty_print_packet((netdissect_options *)user, h, sp, packets_captured);
3174
3175 --infodelay;
3176 if (infoprint)
3177 info(0);
3178 }
3179
3180 #ifdef SIGNAL_REQ_INFO
3181 static void
3182 requestinfo(int signo _U_)
3183 {
3184 if (infodelay)
3185 ++infoprint;
3186 else
3187 info(0);
3188 }
3189 #endif
3190
3191 #ifdef SIGNAL_FLUSH_PCAP
3192 static void
3193 flushpcap(int signo _U_)
3194 {
3195 if (pdd != NULL)
3196 pcap_dump_flush(pdd);
3197 }
3198 #endif
3199
3200 static void
3201 print_packets_captured (void)
3202 {
3203 static u_int prev_packets_captured, first = 1;
3204
3205 if (infodelay == 0 && (first || packets_captured != prev_packets_captured)) {
3206 fprintf(stderr, "Got %u\r", packets_captured);
3207 first = 0;
3208 prev_packets_captured = packets_captured;
3209 }
3210 }
3211
3212 /*
3213 * Called once each second in verbose mode while dumping to file
3214 */
3215 #ifdef _WIN32
3216 static void CALLBACK verbose_stats_dump(PVOID param _U_,
3217 BOOLEAN timer_fired _U_)
3218 {
3219 print_packets_captured();
3220 }
3221 #else /* _WIN32 */
3222 static void verbose_stats_dump(int sig _U_)
3223 {
3224 print_packets_captured();
3225 }
3226 #endif /* _WIN32 */
3227
3228 DIAG_OFF_DEPRECATION
3229 static void
3230 print_version(FILE *f)
3231 {
3232 #ifndef HAVE_PCAP_LIB_VERSION
3233 #ifdef HAVE_PCAP_VERSION
3234 extern char pcap_version[];
3235 #else /* HAVE_PCAP_VERSION */
3236 static char pcap_version[] = "unknown";
3237 #endif /* HAVE_PCAP_VERSION */
3238 #endif /* HAVE_PCAP_LIB_VERSION */
3239 const char *smi_version_string;
3240
3241 (void)fprintf(f, "%s version " PACKAGE_VERSION "\n", program_name);
3242 #ifdef HAVE_PCAP_LIB_VERSION
3243 (void)fprintf(f, "%s\n", pcap_lib_version());
3244 #else /* HAVE_PCAP_LIB_VERSION */
3245 (void)fprintf(f, "libpcap version %s\n", pcap_version);
3246 #endif /* HAVE_PCAP_LIB_VERSION */
3247
3248 #if defined(HAVE_LIBCRYPTO) && defined(SSLEAY_VERSION)
3249 (void)fprintf (f, "%s\n", SSLeay_version(SSLEAY_VERSION));
3250 #endif
3251
3252 smi_version_string = nd_smi_version_string();
3253 if (smi_version_string != NULL)
3254 (void)fprintf (f, "SMI-library: %s\n", smi_version_string);
3255
3256 #if defined(__SANITIZE_ADDRESS__)
3257 (void)fprintf (f, "Compiled with AddressSanitizer/GCC.\n");
3258 #elif defined(__has_feature)
3259 # if __has_feature(address_sanitizer)
3260 (void)fprintf (f, "Compiled with AddressSanitizer/Clang.\n");
3261 # elif __has_feature(memory_sanitizer)
3262 (void)fprintf (f, "Compiled with MemorySanitizer/Clang.\n");
3263 # endif
3264 #endif /* __SANITIZE_ADDRESS__ or __has_feature */
3265 (void)fprintf (f, "%zu-bit build, %zu-bit time_t\n",
3266 sizeof(void *) * 8, sizeof(time_t) * 8);
3267 }
3268 DIAG_ON_DEPRECATION
3269
3270 static void
3271 print_usage(FILE *f)
3272 {
3273 print_version(f);
3274 (void)fprintf(f,
3275 "Usage: %s [-Abd" D_FLAG "efhH" I_FLAG J_FLAG "KlLnNOpqStu" U_FLAG "vxX#]" B_FLAG_USAGE " [ -c count ] [--count]\n", program_name);
3276 (void)fprintf(f,
3277 "\t\t[ -C file_size ] [ -E algo:secret ] [ -F file ] [ -G seconds ]\n");
3278 (void)fprintf(f,
3279 "\t\t[ -i interface ]" IMMEDIATE_MODE_USAGE j_FLAG_USAGE "\n");
3280 #ifdef HAVE_PCAP_FINDALLDEVS_EX
3281 (void)fprintf(f,
3282 "\t\t" LIST_REMOTE_INTERFACES_USAGE "\n");
3283 #endif
3284 #ifdef USE_LIBSMI
3285 (void)fprintf(f,
3286 "\t\t" m_FLAG_USAGE "\n");
3287 #endif
3288 (void)fprintf(f,
3289 "\t\t[ -M secret ] [ --number ] [ --print ]" Q_FLAG_USAGE "\n");
3290 (void)fprintf(f,
3291 "\t\t[ -r file ] [ -s snaplen ] [ -T type ] [ --version ]\n");
3292 (void)fprintf(f,
3293 "\t\t[ -V file ] [ -w file ] [ -W filecount ] [ -y datalinktype ]\n");
3294 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
3295 (void)fprintf(f,
3296 "\t\t[ --time-stamp-precision precision ] [ --micro ] [ --nano ]\n");
3297 #endif
3298 (void)fprintf(f,
3299 "\t\t[ -z postrotate-command ] [ -Z user ] [ expression ]\n");
3300 }