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.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * Support for splitting captures into multiple files with a maximum
25 * Seth Webster <swebster@sst.ll.mit.edu>
29 static const char copyright
[] _U_
=
30 "@(#) Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000\n\
31 The Regents of the University of California. All rights reserved.\n";
35 * tcpdump - dump traffic on a network
37 * First written in 1987 by Van Jacobson, Lawrence Berkeley Laboratory.
38 * Mercilessly hacked and occasionally improved since then via the
39 * combined efforts of Van, Steve McCanne and Craig Leres of LBL.
47 * Mac OS X may ship pcap.h from libpcap 0.6 with a libpcap based on
48 * 0.8. That means it has pcap_findalldevs() but the header doesn't
49 * define pcap_if_t, meaning that we can't actually *use* pcap_findalldevs().
51 #ifdef HAVE_PCAP_FINDALLDEVS
52 #ifndef HAVE_PCAP_IF_T
53 #undef HAVE_PCAP_FINDALLDEVS
57 #include <netdissect-stdinc.h>
66 #include <openssl/crypto.h>
69 #ifdef HAVE_GETOPT_LONG
72 #include "getopt_long.h"
74 /* Capsicum-specific code requires macros from <net/bpf.h>, which will fail
75 * to compile if <pcap.h> has already been included; including the headers
76 * in the opposite order works fine.
79 #include <sys/capability.h>
80 #include <sys/ioccom.h>
83 #endif /* HAVE_CAPSICUM */
93 #include <sys/resource.h>
98 /* capabilities convenience library */
99 /* If a code depends on HAVE_LIBCAP_NG, it depends also on HAVE_CAP_NG_H.
100 * If HAVE_CAP_NG_H is not defined, undefine HAVE_LIBCAP_NG.
101 * Thus, the later tests are done only on HAVE_LIBCAP_NG.
103 #ifdef HAVE_LIBCAP_NG
107 #undef HAVE_LIBCAP_NG
108 #endif /* HAVE_CAP_NG_H */
109 #endif /* HAVE_LIBCAP_NG */
111 #include "netdissect-stdinc.h"
112 #include "netdissect.h"
113 #include "interface.h"
114 #include "addrtoname.h"
116 #include "setsignal.h"
117 #include "gmt2local.h"
118 #include "pcap-missing.h"
119 #include "ascii_strcasecmp.h"
124 #define PATH_MAX 1024
128 #define SIGNAL_REQ_INFO SIGINFO
130 #define SIGNAL_REQ_INFO SIGUSR1
133 static int Bflag
; /* buffer size */
134 static long Cflag
; /* rotate dump files after this many bytes */
135 static int Cflag_count
; /* Keep track of which file number we're writing */
136 static int Dflag
; /* list available devices and exit */
138 * This is exported because, in some versions of libpcap, if libpcap
139 * is built with optimizer debugging code (which is *NOT* the default
140 * configuration!), the library *imports*(!) a variable named dflag,
141 * under the expectation that tcpdump is exporting it, to govern
142 * how much debugging information to print when optimizing
143 * the generated BPF code.
145 * This is a horrible hack; newer versions of libpcap don't import
146 * dflag but, instead, *if* built with optimizer debugging code,
147 * *export* a routine to set that flag.
149 int dflag
; /* print filter code */
150 static int Gflag
; /* rotate dump files after this many seconds */
151 static int Gflag_count
; /* number of files created with Gflag rotation */
152 static time_t Gflag_time
; /* The last time_t the dump file was rotated. */
153 static int Lflag
; /* list available data link types and exit */
154 static int Iflag
; /* rfmon (monitor) mode */
155 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
156 static int Jflag
; /* list available time stamp types */
158 static int jflag
= -1; /* packet time stamp source */
159 static int pflag
; /* don't go promiscuous */
160 #ifdef HAVE_PCAP_SETDIRECTION
161 static int Qflag
= -1; /* restrict captured packet by send/receive direction */
163 static int Uflag
; /* "unbuffered" output of dump files */
164 static int Wflag
; /* recycle output files after this number of files */
165 static int WflagChars
;
166 static char *zflag
= NULL
; /* compress each savefile using a specified command (like gzip or bzip2) */
167 static int immediate_mode
;
169 static int infodelay
;
170 static int infoprint
;
175 static void error(FORMAT_STRING(const char *), ...) NORETURN
PRINTFLIKE(1, 2);
176 static void warning(FORMAT_STRING(const char *), ...) PRINTFLIKE(1, 2);
177 static void exit_tcpdump(int) NORETURN
;
178 static RETSIGTYPE
cleanup(int);
179 static RETSIGTYPE
child_cleanup(int);
180 static void print_version(void);
181 static void print_usage(void);
182 static void show_tstamp_types_and_exit(pcap_t
*, const char *device
) NORETURN
;
183 static void show_dlts_and_exit(pcap_t
*, const char *device
) NORETURN
;
184 #ifdef HAVE_PCAP_FINDALLDEVS
185 static void show_devices_and_exit (void) NORETURN
;
188 static void print_packet(u_char
*, const struct pcap_pkthdr
*, const u_char
*);
189 static void dump_packet_and_trunc(u_char
*, const struct pcap_pkthdr
*, const u_char
*);
190 static void dump_packet(u_char
*, const struct pcap_pkthdr
*, const u_char
*);
191 static void droproot(const char *, const char *);
193 #ifdef SIGNAL_REQ_INFO
194 RETSIGTYPE
requestinfo(int);
197 #if defined(USE_WIN32_MM_TIMER)
198 #include <MMsystem.h>
199 static UINT timer_id
;
200 static void CALLBACK
verbose_stats_dump(UINT
, UINT
, DWORD_PTR
, DWORD_PTR
, DWORD_PTR
);
201 #elif defined(HAVE_ALARM)
202 static void verbose_stats_dump(int sig
);
205 static void info(int);
206 static u_int packets_captured
;
208 #ifdef HAVE_PCAP_FINDALLDEVS
209 static const struct tok status_flags
[] = {
211 { PCAP_IF_UP
, "Up" },
213 #ifdef PCAP_IF_RUNNING
214 { PCAP_IF_RUNNING
, "Running" },
216 { PCAP_IF_LOOPBACK
, "Loopback" },
223 static int supports_monitor_mode
;
231 char *CurrentFileName
;
239 #if defined(HAVE_PCAP_SET_PARSER_DEBUG)
241 * We have pcap_set_parser_debug() in libpcap; declare it (it's not declared
242 * by any libpcap header, because it's a special hack, only available if
243 * libpcap was configured to include it, and only intended for use by
244 * libpcap developers trying to debug the parser for filter expressions).
247 __declspec(dllimport
)
251 void pcap_set_parser_debug(int);
252 #elif defined(HAVE_PCAP_DEBUG) || defined(HAVE_YYDEBUG)
254 * We don't have pcap_set_parser_debug() in libpcap, but we do have
255 * pcap_debug or yydebug. Make a local version of pcap_set_parser_debug()
256 * to set the flag, and define HAVE_PCAP_SET_PARSER_DEBUG.
259 pcap_set_parser_debug(int value
)
261 #ifdef HAVE_PCAP_DEBUG
262 extern int pcap_debug
;
265 #else /* HAVE_PCAP_DEBUG */
269 #endif /* HAVE_PCAP_DEBUG */
272 #define HAVE_PCAP_SET_PARSER_DEBUG
275 #if defined(HAVE_PCAP_SET_OPTIMIZER_DEBUG)
277 * We have pcap_set_optimizer_debug() in libpcap; declare it (it's not declared
278 * by any libpcap header, because it's a special hack, only available if
279 * libpcap was configured to include it, and only intended for use by
280 * libpcap developers trying to debug the optimizer for filter expressions).
283 __declspec(dllimport
)
287 void pcap_set_optimizer_debug(int);
292 error(const char *fmt
, ...)
296 (void)fprintf(stderr
, "%s: ", program_name
);
298 (void)vfprintf(stderr
, fmt
, ap
);
303 (void)fputc('\n', stderr
);
311 warning(const char *fmt
, ...)
315 (void)fprintf(stderr
, "%s: WARNING: ", program_name
);
317 (void)vfprintf(stderr
, fmt
, ap
);
322 (void)fputc('\n', stderr
);
327 exit_tcpdump(int status
)
333 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
335 show_tstamp_types_and_exit(pcap_t
*pc
, const char *device
)
338 int *tstamp_types
= 0;
339 const char *tstamp_type_name
;
342 n_tstamp_types
= pcap_list_tstamp_types(pc
, &tstamp_types
);
343 if (n_tstamp_types
< 0)
344 error("%s", pcap_geterr(pc
));
346 if (n_tstamp_types
== 0) {
347 fprintf(stderr
, "Time stamp type cannot be set for %s\n",
351 fprintf(stderr
, "Time stamp types for %s (use option -j to set):\n",
353 for (i
= 0; i
< n_tstamp_types
; i
++) {
354 tstamp_type_name
= pcap_tstamp_type_val_to_name(tstamp_types
[i
]);
355 if (tstamp_type_name
!= NULL
) {
356 (void) fprintf(stderr
, " %s (%s)\n", tstamp_type_name
,
357 pcap_tstamp_type_val_to_description(tstamp_types
[i
]));
359 (void) fprintf(stderr
, " %d\n", tstamp_types
[i
]);
362 pcap_free_tstamp_types(tstamp_types
);
368 show_dlts_and_exit(pcap_t
*pc
, const char *device
)
372 const char *dlt_name
;
374 n_dlts
= pcap_list_datalinks(pc
, &dlts
);
376 error("%s", pcap_geterr(pc
));
377 else if (n_dlts
== 0 || !dlts
)
378 error("No data link types.");
381 * If the interface is known to support monitor mode, indicate
382 * whether these are the data link types available when not in
383 * monitor mode, if -I wasn't specified, or when in monitor mode,
384 * when -I was specified (the link-layer types available in
385 * monitor mode might be different from the ones available when
386 * not in monitor mode).
388 if (supports_monitor_mode
)
389 (void) fprintf(stderr
, "Data link types for %s %s (use option -y to set):\n",
391 Iflag
? "when in monitor mode" : "when not in monitor mode");
393 (void) fprintf(stderr
, "Data link types for %s (use option -y to set):\n",
396 for (i
= 0; i
< n_dlts
; i
++) {
397 dlt_name
= pcap_datalink_val_to_name(dlts
[i
]);
398 if (dlt_name
!= NULL
) {
399 (void) fprintf(stderr
, " %s (%s)", dlt_name
,
400 pcap_datalink_val_to_description(dlts
[i
]));
403 * OK, does tcpdump handle that type?
405 if (!has_printer(dlts
[i
]))
406 (void) fprintf(stderr
, " (printing not supported)");
407 fprintf(stderr
, "\n");
409 (void) fprintf(stderr
, " DLT %d (printing not supported)\n",
413 #ifdef HAVE_PCAP_FREE_DATALINKS
414 pcap_free_datalinks(dlts
);
419 #ifdef HAVE_PCAP_FINDALLDEVS
421 show_devices_and_exit (void)
423 pcap_if_t
*dev
, *devlist
;
424 char ebuf
[PCAP_ERRBUF_SIZE
];
427 if (pcap_findalldevs(&devlist
, ebuf
) < 0)
429 for (i
= 0, dev
= devlist
; dev
!= NULL
; i
++, dev
= dev
->next
) {
430 printf("%d.%s", i
+1, dev
->name
);
431 if (dev
->description
!= NULL
)
432 printf(" (%s)", dev
->description
);
434 printf(" [%s]", bittok2str(status_flags
, "none", dev
->flags
));
437 pcap_freealldevs(devlist
);
440 #endif /* HAVE_PCAP_FINDALLDEVS */
445 * Note that there we use all letters for short options except for g, k,
446 * o, and P, and those are used by other versions of tcpdump, and we should
447 * only use them for the same purposes that the other versions of tcpdump
450 * OS X tcpdump uses -g to force non--v output for IP to be on one
451 * line, making it more "g"repable;
453 * OS X tcpdump uses -k to specify that packet comments in pcap-ng files
456 * OpenBSD tcpdump uses -o to indicate that OS fingerprinting should be done
457 * for hosts sending TCP SYN packets;
459 * OS X tcpdump uses -P to indicate that -w should write pcap-ng rather
462 * OS X tcpdump also uses -Q to specify expressions that match packet
463 * metadata, including but not limited to the packet direction.
464 * The expression syntax is different from a simple "in|out|inout",
465 * and those expressions aren't accepted by OS X tcpdump, but the
466 * equivalents would be "in" = "dir=in", "out" = "dir=out", and
467 * "inout" = "dir=in or dir=out", and the parser could conceivably
468 * special-case "in", "out", and "inout" as expressions for backwards
469 * compatibility, so all is not (yet) lost.
473 * Set up flags that might or might not be supported depending on the
474 * version of libpcap we're using.
476 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
478 #define B_FLAG_USAGE " [ -B size ]"
479 #else /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */
482 #endif /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */
484 #ifdef HAVE_PCAP_CREATE
486 #else /* HAVE_PCAP_CREATE */
488 #endif /* HAVE_PCAP_CREATE */
490 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
492 #define j_FLAG_USAGE " [ -j tstamptype ]"
494 #else /* PCAP_ERROR_TSTAMP_TYPE_NOTSUP */
498 #endif /* PCAP_ERROR_TSTAMP_TYPE_NOTSUP */
500 #ifdef HAVE_PCAP_FINDALLDEVS
506 #ifdef HAVE_PCAP_DUMP_FLUSH
512 #ifdef HAVE_PCAP_SETDIRECTION
518 #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:#"
523 * We do not currently have long options corresponding to all short
524 * options; we should probably pick appropriate option names for them.
526 * However, the short options where the number of times the option is
527 * specified matters, such as -v and -d and -t, should probably not
528 * just map to a long option, as saying
530 * tcpdump --verbose --verbose
532 * doesn't make sense; it should be --verbosity={N} or something such
535 * For long options with no corresponding short options, we define values
536 * outside the range of ASCII graphic characters, make that the last
537 * component of the entry for the long option, and have a case for that
538 * option in the switch statement.
540 #define OPTION_VERSION 128
541 #define OPTION_TSTAMP_PRECISION 129
542 #define OPTION_IMMEDIATE_MODE 130
544 static const struct option longopts
[] = {
545 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
546 { "buffer-size", required_argument
, NULL
, 'B' },
548 { "list-interfaces", no_argument
, NULL
, 'D' },
549 { "help", no_argument
, NULL
, 'h' },
550 { "interface", required_argument
, NULL
, 'i' },
551 #ifdef HAVE_PCAP_CREATE
552 { "monitor-mode", no_argument
, NULL
, 'I' },
554 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
555 { "time-stamp-type", required_argument
, NULL
, 'j' },
556 { "list-time-stamp-types", no_argument
, NULL
, 'J' },
558 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
559 { "time-stamp-precision", required_argument
, NULL
, OPTION_TSTAMP_PRECISION
},
561 { "dont-verify-checksums", no_argument
, NULL
, 'K' },
562 { "list-data-link-types", no_argument
, NULL
, 'L' },
563 { "no-optimize", no_argument
, NULL
, 'O' },
564 { "no-promiscuous-mode", no_argument
, NULL
, 'p' },
565 #ifdef HAVE_PCAP_SETDIRECTION
566 { "direction", required_argument
, NULL
, 'Q' },
568 { "snapshot-length", required_argument
, NULL
, 's' },
569 { "absolute-tcp-sequence-numbers", no_argument
, NULL
, 'S' },
570 #ifdef HAVE_PCAP_DUMP_FLUSH
571 { "packet-buffered", no_argument
, NULL
, 'U' },
573 { "linktype", required_argument
, NULL
, 'y' },
574 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
575 { "immediate-mode", no_argument
, NULL
, OPTION_IMMEDIATE_MODE
},
577 #ifdef HAVE_PCAP_SET_PARSER_DEBUG
578 { "debug-filter-parser", no_argument
, NULL
, 'Y' },
580 { "relinquish-privileges", required_argument
, NULL
, 'Z' },
581 { "number", no_argument
, NULL
, '#' },
582 { "version", no_argument
, NULL
, OPTION_VERSION
},
587 /* Drop root privileges and chroot if necessary */
589 droproot(const char *username
, const char *chroot_dir
)
591 struct passwd
*pw
= NULL
;
593 if (chroot_dir
&& !username
) {
594 fprintf(stderr
, "%s: Chroot without dropping root is insecure\n",
599 pw
= getpwnam(username
);
602 if (chroot(chroot_dir
) != 0 || chdir ("/") != 0) {
603 fprintf(stderr
, "%s: Couldn't chroot/chdir to '%.64s': %s\n",
604 program_name
, chroot_dir
, pcap_strerror(errno
));
608 #ifdef HAVE_LIBCAP_NG
610 int ret
= capng_change_id(pw
->pw_uid
, pw
->pw_gid
, CAPNG_NO_FLAG
);
612 error("capng_change_id(): return %d\n", ret
);
614 fprintf(stderr
, "dropped privs to %s\n", username
);
617 if (initgroups(pw
->pw_name
, pw
->pw_gid
) != 0 ||
618 setgid(pw
->pw_gid
) != 0 || setuid(pw
->pw_uid
) != 0) {
619 fprintf(stderr
, "%s: Couldn't change to '%.32s' uid=%lu gid=%lu: %s\n",
620 program_name
, username
,
621 (unsigned long)pw
->pw_uid
,
622 (unsigned long)pw
->pw_gid
,
623 pcap_strerror(errno
));
627 fprintf(stderr
, "dropped privs to %s\n", username
);
629 #endif /* HAVE_LIBCAP_NG */
632 fprintf(stderr
, "%s: Couldn't find user '%.32s'\n",
633 program_name
, username
);
636 #ifdef HAVE_LIBCAP_NG
637 /* We don't need CAP_SETUID, CAP_SETGID and CAP_SYS_CHROOT any more. */
640 CAPNG_EFFECTIVE
| CAPNG_PERMITTED
,
645 capng_apply(CAPNG_SELECT_BOTH
);
646 #endif /* HAVE_LIBCAP_NG */
667 MakeFilename(char *buffer
, char *orig_name
, int cnt
, int max_chars
)
669 char *filename
= malloc(PATH_MAX
+ 1);
670 if (filename
== NULL
)
671 error("Makefilename: malloc");
673 /* Process with strftime if Gflag is set. */
677 /* Convert Gflag_time to a usable format */
678 if ((local_tm
= localtime(&Gflag_time
)) == NULL
) {
679 error("MakeTimedFilename: localtime");
682 /* There's no good way to detect an error in strftime since a return
683 * value of 0 isn't necessarily failure.
685 strftime(filename
, PATH_MAX
, orig_name
, local_tm
);
687 strncpy(filename
, orig_name
, PATH_MAX
);
690 if (cnt
== 0 && max_chars
== 0)
691 strncpy(buffer
, filename
, PATH_MAX
+ 1);
693 if (snprintf(buffer
, PATH_MAX
+ 1, "%s%0*d", filename
, max_chars
, cnt
) > PATH_MAX
)
694 /* Report an error if the filename is too large */
695 error("too many output files or filename is too long (> %d)", PATH_MAX
);
700 get_next_file(FILE *VFile
, char *ptr
)
705 ret
= fgets(ptr
, PATH_MAX
, VFile
);
710 if (len
> 0 && ptr
[len
- 1] == '\n')
716 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
718 tstamp_precision_from_string(const char *precision
)
720 if (strncmp(precision
, "nano", strlen("nano")) == 0)
721 return PCAP_TSTAMP_PRECISION_NANO
;
723 if (strncmp(precision
, "micro", strlen("micro")) == 0)
724 return PCAP_TSTAMP_PRECISION_MICRO
;
730 tstamp_precision_to_string(int precision
)
734 case PCAP_TSTAMP_PRECISION_MICRO
:
737 case PCAP_TSTAMP_PRECISION_NANO
:
748 * Ensure that, on a dump file's descriptor, we have all the rights
749 * necessary to make the standard I/O library work with an fdopen()ed
750 * FILE * from that descriptor.
752 * A long time ago, in a galaxy far far away, AT&T decided that, instead
753 * of providing separate APIs for getting and setting the FD_ flags on a
754 * descriptor, getting and setting the O_ flags on a descriptor, and
755 * locking files, they'd throw them all into a kitchen-sink fcntl() call
756 * along the lines of ioctl(), the fact that ioctl() operations are
757 * largely specific to particular character devices but fcntl() operations
758 * are either generic to all descriptors or generic to all descriptors for
759 * regular files nonwithstanding.
761 * The Capsicum people decided that fine-grained control of descriptor
762 * operations was required, so that you need to grant permission for
763 * reading, writing, seeking, and fcntl-ing. The latter, courtesy of
764 * AT&T's decision, means that "fcntl-ing" isn't a thing, but a motley
765 * collection of things, so there are *individual* fcntls for which
766 * permission needs to be granted.
768 * The FreeBSD standard I/O people implemented some optimizations that
769 * requires that the standard I/O routines be able to determine whether
770 * the descriptor for the FILE * is open append-only or not; as that
771 * descriptor could have come from an open() rather than an fopen(),
772 * that requires that it be able to do an F_GETFL fcntl() to read
775 * Tcpdump uses ftell() to determine how much data has been written
776 * to a file in order to, when used with -C, determine when it's time
777 * to rotate capture files. ftell() therefore needs to do an lseek()
778 * to find out the file offset and must, thanks to the aforementioned
779 * optimization, also know whether the descriptor is open append-only
782 * The net result of all the above is that we need to grant CAP_SEEK,
783 * CAP_WRITE, and CAP_FCNTL with the CAP_FCNTL_GETFL subcapability.
785 * Perhaps this is the universe's way of saying that either
787 * 1) there needs to be an fopenat() call and a pcap_dump_openat() call
788 * using it, so that Capsicum-capable tcpdump wouldn't need to do
793 * 2) there needs to be a cap_fdopen() call in the FreeBSD standard
794 * I/O library that knows what rights are needed by the standard
795 * I/O library, based on the open mode, and assigns them, perhaps
796 * with an additional argument indicating, for example, whether
797 * seeking should be allowed, so that tcpdump doesn't need to know
798 * what the standard I/O library happens to require this week.
801 set_dumper_capsicum_rights(pcap_dumper_t
*p
)
803 int fd
= fileno(pcap_dump_file(p
));
806 cap_rights_init(&rights
, CAP_SEEK
, CAP_WRITE
, CAP_FCNTL
);
807 if (cap_rights_limit(fd
, &rights
) < 0 && errno
!= ENOSYS
) {
808 error("unable to limit dump descriptor");
810 if (cap_fcntls_limit(fd
, CAP_FCNTL_GETFL
) < 0 && errno
!= ENOSYS
) {
811 error("unable to limit dump descriptor fcntls");
817 * Copy arg vector into a new buffer, concatenating arguments with spaces.
820 copy_argv(register char **argv
)
823 register u_int len
= 0;
832 len
+= strlen(*p
++) + 1;
834 buf
= (char *)malloc(len
);
836 error("copy_argv: malloc");
840 while ((src
= *p
++) != NULL
) {
841 while ((*dst
++ = *src
++) != '\0')
851 * On Windows, we need to open the file in binary mode, so that
852 * we get all the bytes specified by the size we get from "fstat()".
853 * On UNIX, that's not necessary. O_BINARY is defined on Windows;
854 * we define it as 0 if it's not defined, so it does nothing.
861 read_infile(char *fname
)
863 register int i
, fd
, cc
;
867 fd
= open(fname
, O_RDONLY
|O_BINARY
);
869 error("can't open %s: %s", fname
, pcap_strerror(errno
));
871 if (our_fstat(fd
, &buf
) < 0)
872 error("can't stat %s: %s", fname
, pcap_strerror(errno
));
875 * Reject files whose size doesn't fit into an int; a filter
876 * *that* large will probably be too big.
878 if (buf
.st_size
> INT_MAX
)
879 error("%s is too large", fname
);
881 cp
= malloc((u_int
)buf
.st_size
+ 1);
883 error("malloc(%d) for %s: %s", (u_int
)buf
.st_size
+ 1,
884 fname
, pcap_strerror(errno
));
885 cc
= read(fd
, cp
, (u_int
)buf
.st_size
);
887 error("read %s: %s", fname
, pcap_strerror(errno
));
888 if (cc
!= buf
.st_size
)
889 error("short read %s (%d != %d)", fname
, (int) cc
,
893 /* replace "# comment" with spaces */
894 for (i
= 0; i
< cc
; i
++) {
896 while (i
< cc
&& cp
[i
] != '\n')
903 #ifdef HAVE_PCAP_FINDALLDEVS
905 parse_interface_number(const char *device
)
910 devnum
= strtol(device
, &end
, 10);
911 if (device
!= end
&& *end
== '\0') {
913 * It's all-numeric, but is it a valid number?
917 * No, it's not an ordinal.
919 error("Invalid adapter index");
924 * It's not all-numeric; return -1, so our caller
932 find_interface_by_number(long devnum
)
934 pcap_if_t
*dev
, *devlist
;
936 char ebuf
[PCAP_ERRBUF_SIZE
];
939 if (pcap_findalldevs(&devlist
, ebuf
) < 0)
942 * Look for the devnum-th entry in the list of devices (1-based).
944 for (i
= 0, dev
= devlist
; i
< devnum
-1 && dev
!= NULL
;
945 i
++, dev
= dev
->next
)
948 error("Invalid adapter index");
949 device
= strdup(dev
->name
);
950 pcap_freealldevs(devlist
);
956 open_interface(const char *device
, netdissect_options
*ndo
, char *ebuf
)
959 #ifdef HAVE_PCAP_CREATE
964 #ifdef HAVE_PCAP_CREATE
965 pc
= pcap_create(device
, ebuf
);
968 * If this failed with "No such device", that means
969 * the interface doesn't exist; return NULL, so that
970 * the caller can see whether the device name is
971 * actually an interface index.
973 if (strstr(ebuf
, "No such device") != NULL
)
977 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
979 show_tstamp_types_and_exit(pc
, device
);
981 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
982 status
= pcap_set_tstamp_precision(pc
, ndo
->ndo_tstamp_precision
);
984 error("%s: Can't set %ssecond time stamp precision: %s",
986 tstamp_precision_to_string(ndo
->ndo_tstamp_precision
),
987 pcap_statustostr(status
));
990 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
991 if (immediate_mode
) {
992 status
= pcap_set_immediate_mode(pc
, 1);
994 error("%s: Can't set immediate mode: %s",
996 pcap_statustostr(status
));
1000 * Is this an interface that supports monitor mode?
1002 if (pcap_can_set_rfmon(pc
) == 1)
1003 supports_monitor_mode
= 1;
1005 supports_monitor_mode
= 0;
1006 status
= pcap_set_snaplen(pc
, ndo
->ndo_snaplen
);
1008 error("%s: Can't set snapshot length: %s",
1009 device
, pcap_statustostr(status
));
1010 status
= pcap_set_promisc(pc
, !pflag
);
1012 error("%s: Can't set promiscuous mode: %s",
1013 device
, pcap_statustostr(status
));
1015 status
= pcap_set_rfmon(pc
, 1);
1017 error("%s: Can't set monitor mode: %s",
1018 device
, pcap_statustostr(status
));
1020 status
= pcap_set_timeout(pc
, 1000);
1022 error("%s: pcap_set_timeout failed: %s",
1023 device
, pcap_statustostr(status
));
1025 status
= pcap_set_buffer_size(pc
, Bflag
);
1027 error("%s: Can't set buffer size: %s",
1028 device
, pcap_statustostr(status
));
1030 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
1032 status
= pcap_set_tstamp_type(pc
, jflag
);
1034 error("%s: Can't set time stamp type: %s",
1035 device
, pcap_statustostr(status
));
1036 else if (status
> 0)
1037 warning("When trying to set timestamp type '%s' on %s: %s",
1038 pcap_tstamp_type_val_to_name(jflag
), device
,
1039 pcap_statustostr(status
));
1042 status
= pcap_activate(pc
);
1045 * pcap_activate() failed.
1047 cp
= pcap_geterr(pc
);
1048 if (status
== PCAP_ERROR
)
1050 else if (status
== PCAP_ERROR_NO_SUCH_DEVICE
) {
1052 * Return an error for our caller to handle.
1054 snprintf(ebuf
, PCAP_ERRBUF_SIZE
, "%s: %s\n(%s)",
1055 device
, pcap_statustostr(status
), cp
);
1058 } else if (status
== PCAP_ERROR_PERM_DENIED
&& *cp
!= '\0')
1059 error("%s: %s\n(%s)", device
,
1060 pcap_statustostr(status
), cp
);
1062 error("%s: %s", device
,
1063 pcap_statustostr(status
));
1064 } else if (status
> 0) {
1066 * pcap_activate() succeeded, but it's warning us
1067 * of a problem it had.
1069 cp
= pcap_geterr(pc
);
1070 if (status
== PCAP_WARNING
)
1072 else if (status
== PCAP_WARNING_PROMISC_NOTSUP
&&
1074 warning("%s: %s\n(%s)", device
,
1075 pcap_statustostr(status
), cp
);
1077 warning("%s: %s", device
,
1078 pcap_statustostr(status
));
1080 #ifdef HAVE_PCAP_SETDIRECTION
1082 status
= pcap_setdirection(pc
, Qflag
);
1084 error("%s: pcap_setdirection() failed: %s",
1085 device
, pcap_geterr(pc
));
1087 #endif /* HAVE_PCAP_SETDIRECTION */
1088 #else /* HAVE_PCAP_CREATE */
1090 pc
= pcap_open_live(device
, ndo
->ndo_snaplen
, !pflag
, 1000, ebuf
);
1093 * If this failed with "No such device", that means
1094 * the interface doesn't exist; return NULL, so that
1095 * the caller can see whether the device name is
1096 * actually an interface index.
1098 if (strstr(ebuf
, "No such device") != NULL
)
1103 warning("%s", ebuf
);
1104 #endif /* HAVE_PCAP_CREATE */
1110 main(int argc
, char **argv
)
1112 register int cnt
, op
, i
;
1113 bpf_u_int32 localnet
=0 , netmask
= 0;
1114 int timezone_offset
= 0;
1115 register char *cp
, *infile
, *cmdbuf
, *device
, *RFileName
, *VFileName
, *WFileName
;
1116 pcap_handler callback
;
1118 const char *dlt_name
;
1119 struct bpf_program fcode
;
1121 RETSIGTYPE (*oldhandler
)(int);
1123 struct dump_info dumpinfo
;
1124 u_char
*pcap_userdata
;
1125 char ebuf
[PCAP_ERRBUF_SIZE
];
1126 char VFileLine
[PATH_MAX
+ 1];
1127 char *username
= NULL
;
1128 char *chroot_dir
= NULL
;
1131 #ifdef HAVE_PCAP_FINDALLDEVS
1137 #ifdef HAVE_CAPSICUM
1138 cap_rights_t rights
;
1140 #endif /* HAVE_CAPSICUM */
1141 int Oflag
= 1; /* run filter code optimizer */
1143 const char *yflag_dlt_name
= NULL
;
1145 netdissect_options Ndo
;
1146 netdissect_options
*ndo
= &Ndo
;
1149 * Initialize the netdissect code.
1151 if (nd_init(ebuf
, sizeof ebuf
) == -1)
1154 memset(ndo
, 0, sizeof(*ndo
));
1155 ndo_set_function_pointers(ndo
);
1156 ndo
->ndo_snaplen
= DEFAULT_SNAPLEN
;
1166 if ((cp
= strrchr(argv
[0], '/')) != NULL
)
1167 ndo
->program_name
= program_name
= cp
+ 1;
1169 ndo
->program_name
= program_name
= argv
[0];
1172 if (pcap_wsockinit() != 0)
1173 error("Attempting to initialize Winsock failed");
1177 * On platforms where the CPU doesn't support unaligned loads,
1178 * force unaligned accesses to abort with SIGBUS, rather than
1179 * being fixed up (slowly) by the OS kernel; on those platforms,
1180 * misaligned accesses are bugs, and we want tcpdump to crash so
1181 * that the bugs are reported.
1183 if (abort_on_misalignment(ebuf
, sizeof(ebuf
)) < 0)
1187 (op
= getopt_long(argc
, argv
, SHORTOPTS
, longopts
, NULL
)) != -1)
1191 /* compatibility for old -a */
1202 #if defined(HAVE_PCAP_CREATE) || defined(_WIN32)
1204 Bflag
= atoi(optarg
)*1024;
1206 error("invalid packet buffer size %s", optarg
);
1208 #endif /* defined(HAVE_PCAP_CREATE) || defined(_WIN32) */
1213 error("invalid packet count %s", optarg
);
1217 Cflag
= atoi(optarg
) * 1000000;
1219 error("invalid file size %s", optarg
);
1239 #ifndef HAVE_LIBCRYPTO
1240 warning("crypto code not compiled in");
1242 ndo
->ndo_espsecret
= optarg
;
1254 Gflag
= atoi(optarg
);
1256 error("invalid number of seconds %s", optarg
);
1258 /* We will create one file initially. */
1261 /* Grab the current time for rotation use. */
1262 if ((Gflag_time
= time(NULL
)) == (time_t)-1) {
1263 error("main: can't get current time: %s",
1264 pcap_strerror(errno
));
1281 #ifdef HAVE_PCAP_CREATE
1285 #endif /* HAVE_PCAP_CREATE */
1287 #ifdef HAVE_PCAP_SET_TSTAMP_TYPE
1289 jflag
= pcap_tstamp_type_name_to_val(optarg
);
1291 error("invalid time stamp type %s", optarg
);
1302 * _IOLBF is the same as _IOFBF in Microsoft's C
1303 * libraries; the only alternative they offer
1306 * XXX - this should really be checking for MSVC++,
1307 * not _WIN32, if, for example, MinGW has its own
1308 * C library that is more UNIX-compatible.
1310 setvbuf(stdout
, NULL
, _IONBF
, 0);
1312 #ifdef HAVE_SETLINEBUF
1315 setvbuf(stdout
, NULL
, _IOLBF
, 0);
1325 if (nd_have_smi_support()) {
1326 if (nd_load_smi_module(optarg
, ebuf
, sizeof ebuf
) == -1)
1329 (void)fprintf(stderr
, "%s: ignoring option `-m %s' ",
1330 program_name
, optarg
);
1331 (void)fprintf(stderr
, "(no libsmi support)\n");
1336 /* TCP-MD5 shared secret */
1337 #ifndef HAVE_LIBCRYPTO
1338 warning("crypto code not compiled in");
1340 ndo
->ndo_sigsecret
= optarg
;
1361 ++ndo
->ndo_suppress_default_print
;
1364 #ifdef HAVE_PCAP_SETDIRECTION
1366 if (ascii_strcasecmp(optarg
, "in") == 0)
1368 else if (ascii_strcasecmp(optarg
, "out") == 0)
1370 else if (ascii_strcasecmp(optarg
, "inout") == 0)
1371 Qflag
= PCAP_D_INOUT
;
1373 error("unknown capture direction `%s'", optarg
);
1375 #endif /* HAVE_PCAP_SETDIRECTION */
1382 ndo
->ndo_snaplen
= strtol(optarg
, &end
, 0);
1383 if (optarg
== end
|| *end
!= '\0'
1384 || ndo
->ndo_snaplen
< 0 || ndo
->ndo_snaplen
> MAXIMUM_SNAPLEN
)
1385 error("invalid snaplen %s", optarg
);
1386 else if (ndo
->ndo_snaplen
== 0)
1387 ndo
->ndo_snaplen
= MAXIMUM_SNAPLEN
;
1399 if (ascii_strcasecmp(optarg
, "vat") == 0)
1400 ndo
->ndo_packettype
= PT_VAT
;
1401 else if (ascii_strcasecmp(optarg
, "wb") == 0)
1402 ndo
->ndo_packettype
= PT_WB
;
1403 else if (ascii_strcasecmp(optarg
, "rpc") == 0)
1404 ndo
->ndo_packettype
= PT_RPC
;
1405 else if (ascii_strcasecmp(optarg
, "rtp") == 0)
1406 ndo
->ndo_packettype
= PT_RTP
;
1407 else if (ascii_strcasecmp(optarg
, "rtcp") == 0)
1408 ndo
->ndo_packettype
= PT_RTCP
;
1409 else if (ascii_strcasecmp(optarg
, "snmp") == 0)
1410 ndo
->ndo_packettype
= PT_SNMP
;
1411 else if (ascii_strcasecmp(optarg
, "cnfp") == 0)
1412 ndo
->ndo_packettype
= PT_CNFP
;
1413 else if (ascii_strcasecmp(optarg
, "tftp") == 0)
1414 ndo
->ndo_packettype
= PT_TFTP
;
1415 else if (ascii_strcasecmp(optarg
, "aodv") == 0)
1416 ndo
->ndo_packettype
= PT_AODV
;
1417 else if (ascii_strcasecmp(optarg
, "carp") == 0)
1418 ndo
->ndo_packettype
= PT_CARP
;
1419 else if (ascii_strcasecmp(optarg
, "radius") == 0)
1420 ndo
->ndo_packettype
= PT_RADIUS
;
1421 else if (ascii_strcasecmp(optarg
, "zmtp1") == 0)
1422 ndo
->ndo_packettype
= PT_ZMTP1
;
1423 else if (ascii_strcasecmp(optarg
, "vxlan") == 0)
1424 ndo
->ndo_packettype
= PT_VXLAN
;
1425 else if (ascii_strcasecmp(optarg
, "pgm") == 0)
1426 ndo
->ndo_packettype
= PT_PGM
;
1427 else if (ascii_strcasecmp(optarg
, "pgm_zmtp1") == 0)
1428 ndo
->ndo_packettype
= PT_PGM_ZMTP1
;
1429 else if (ascii_strcasecmp(optarg
, "lmp") == 0)
1430 ndo
->ndo_packettype
= PT_LMP
;
1431 else if (ascii_strcasecmp(optarg
, "resp") == 0)
1432 ndo
->ndo_packettype
= PT_RESP
;
1434 error("unknown packet type `%s'", optarg
);
1441 #ifdef HAVE_PCAP_DUMP_FLUSH
1460 Wflag
= atoi(optarg
);
1462 error("invalid number of output files %s", optarg
);
1463 WflagChars
= getWflagChars(Wflag
);
1468 ++ndo
->ndo_suppress_default_print
;
1473 ++ndo
->ndo_suppress_default_print
;
1477 yflag_dlt_name
= optarg
;
1479 pcap_datalink_name_to_val(yflag_dlt_name
);
1481 error("invalid data link type %s", yflag_dlt_name
);
1484 #ifdef HAVE_PCAP_SET_PARSER_DEBUG
1487 /* Undocumented flag */
1488 pcap_set_parser_debug(1);
1501 ndo
->ndo_packet_number
= 1;
1504 case OPTION_VERSION
:
1509 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
1510 case OPTION_TSTAMP_PRECISION
:
1511 ndo
->ndo_tstamp_precision
= tstamp_precision_from_string(optarg
);
1512 if (ndo
->ndo_tstamp_precision
< 0)
1513 error("unsupported time stamp precision");
1517 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
1518 case OPTION_IMMEDIATE_MODE
:
1529 #ifdef HAVE_PCAP_FINDALLDEVS
1531 show_devices_and_exit();
1534 switch (ndo
->ndo_tflag
) {
1536 case 0: /* Default */
1537 case 4: /* Default + Date*/
1538 timezone_offset
= gmt2local(0);
1541 case 1: /* No time stamp */
1542 case 2: /* Unix timeval style */
1543 case 3: /* Microseconds since previous packet */
1544 case 5: /* Microseconds since first packet */
1547 default: /* Not supported */
1548 error("only -t, -tt, -ttt, -tttt and -ttttt are supported");
1552 if (ndo
->ndo_fflag
!= 0 && (VFileName
!= NULL
|| RFileName
!= NULL
))
1553 error("-f can not be used with -V or -r");
1555 if (VFileName
!= NULL
&& RFileName
!= NULL
)
1556 error("-V and -r are mutually exclusive.");
1558 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
1560 * If we're printing dissected packets to the standard output
1561 * rather than saving raw packets to a file, and the standard
1562 * output is a terminal, use immediate mode, as the user's
1563 * probably expecting to see packets pop up immediately.
1565 if (WFileName
== NULL
&& isatty(1))
1570 /* if run as root, prepare for chrooting */
1571 if (getuid() == 0 || geteuid() == 0) {
1572 /* future extensibility for cmd-line arguments */
1574 chroot_dir
= WITH_CHROOT
;
1579 /* if run as root, prepare for dropping root privileges */
1580 if (getuid() == 0 || geteuid() == 0) {
1581 /* Run with '-Z root' to restore old behaviour */
1583 username
= WITH_USER
;
1587 if (RFileName
!= NULL
|| VFileName
!= NULL
) {
1589 * If RFileName is non-null, it's the pathname of a
1590 * savefile to read. If VFileName is non-null, it's
1591 * the pathname of a file containing a list of pathnames
1592 * (one per line) of savefiles to read.
1594 * In either case, we're reading a savefile, not doing
1599 * We don't need network access, so relinquish any set-UID
1600 * or set-GID privileges we have (if any).
1602 * We do *not* want set-UID privileges when opening a
1603 * trace file, as that might let the user read other
1604 * people's trace files (especially if we're set-UID
1607 if (setgid(getgid()) != 0 || setuid(getuid()) != 0 )
1608 fprintf(stderr
, "Warning: setgid/setuid failed !\n");
1610 if (VFileName
!= NULL
) {
1611 if (VFileName
[0] == '-' && VFileName
[1] == '\0')
1614 VFile
= fopen(VFileName
, "r");
1617 error("Unable to open file: %s\n", pcap_strerror(errno
));
1619 ret
= get_next_file(VFile
, VFileLine
);
1621 error("Nothing in %s\n", VFileName
);
1622 RFileName
= VFileLine
;
1625 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
1626 pd
= pcap_open_offline_with_tstamp_precision(RFileName
,
1627 ndo
->ndo_tstamp_precision
, ebuf
);
1629 pd
= pcap_open_offline(RFileName
, ebuf
);
1634 #ifdef HAVE_CAPSICUM
1635 cap_rights_init(&rights
, CAP_READ
);
1636 if (cap_rights_limit(fileno(pcap_file(pd
)), &rights
) < 0 &&
1638 error("unable to limit pcap descriptor");
1641 dlt
= pcap_datalink(pd
);
1642 dlt_name
= pcap_datalink_val_to_name(dlt
);
1643 if (dlt_name
== NULL
) {
1644 fprintf(stderr
, "reading from file %s, link-type %u\n",
1648 "reading from file %s, link-type %s (%s)\n",
1649 RFileName
, dlt_name
,
1650 pcap_datalink_val_to_description(dlt
));
1654 * We're doing a live capture.
1656 if (device
== NULL
) {
1658 * No interface was specified. Pick one.
1660 #ifdef HAVE_PCAP_FINDALLDEVS
1662 * Find the list of interfaces, and pick
1663 * the first interface.
1665 if (pcap_findalldevs(&devlist
, ebuf
) >= 0 &&
1667 device
= strdup(devlist
->name
);
1668 pcap_freealldevs(devlist
);
1670 #else /* HAVE_PCAP_FINDALLDEVS */
1672 * Use whatever interface pcap_lookupdev()
1675 device
= pcap_lookupdev(ebuf
);
1682 * Try to open the interface with the specified name.
1684 pd
= open_interface(device
, ndo
, ebuf
);
1687 * That failed. If we can get a list of
1688 * interfaces, and the interface name
1689 * is purely numeric, try to use it as
1690 * a 1-based index in the list of
1693 #ifdef HAVE_PCAP_FINDALLDEVS
1694 devnum
= parse_interface_number(device
);
1697 * It's not a number; just report
1698 * the open error and fail.
1704 * OK, it's a number; try to find the
1705 * interface with that index, and try
1708 * find_interface_by_number() exits if it
1709 * couldn't be found.
1711 device
= find_interface_by_number(devnum
);
1712 pd
= open_interface(device
, ndo
, ebuf
);
1715 #else /* HAVE_PCAP_FINDALLDEVS */
1717 * We can't get a list of interfaces; just
1721 #endif /* HAVE_PCAP_FINDALLDEVS */
1725 * Let user own process after socket has been opened.
1728 if (setgid(getgid()) != 0 || setuid(getuid()) != 0)
1729 fprintf(stderr
, "Warning: setgid/setuid failed !\n");
1731 #if !defined(HAVE_PCAP_CREATE) && defined(_WIN32)
1733 if(pcap_setbuff(pd
, Bflag
)==-1){
1734 error("%s", pcap_geterr(pd
));
1736 #endif /* !defined(HAVE_PCAP_CREATE) && defined(_WIN32) */
1738 show_dlts_and_exit(pd
, device
);
1739 if (yflag_dlt
>= 0) {
1740 #ifdef HAVE_PCAP_SET_DATALINK
1741 if (pcap_set_datalink(pd
, yflag_dlt
) < 0)
1742 error("%s", pcap_geterr(pd
));
1745 * We don't actually support changing the
1746 * data link type, so we only let them
1747 * set it to what it already is.
1749 if (yflag_dlt
!= pcap_datalink(pd
)) {
1750 error("%s is not one of the DLTs supported by this device\n",
1754 (void)fprintf(stderr
, "%s: data link type %s\n",
1755 program_name
, yflag_dlt_name
);
1756 (void)fflush(stderr
);
1758 i
= pcap_snapshot(pd
);
1759 if (ndo
->ndo_snaplen
< i
) {
1760 warning("snaplen raised from %d to %d", ndo
->ndo_snaplen
, i
);
1761 ndo
->ndo_snaplen
= i
;
1763 if(ndo
->ndo_fflag
!= 0) {
1764 if (pcap_lookupnet(device
, &localnet
, &netmask
, ebuf
) < 0) {
1765 warning("foreign (-f) flag used but: %s", ebuf
);
1771 cmdbuf
= read_infile(infile
);
1773 cmdbuf
= copy_argv(&argv
[optind
]);
1775 #ifdef HAVE_PCAP_SET_OPTIMIZER_DEBUG
1776 pcap_set_optimizer_debug(dflag
);
1778 if (pcap_compile(pd
, &fcode
, cmdbuf
, Oflag
, netmask
) < 0)
1779 error("%s", pcap_geterr(pd
));
1781 bpf_dump(&fcode
, dflag
);
1784 pcap_freecode(&fcode
);
1787 init_print(ndo
, localnet
, netmask
, timezone_offset
);
1790 (void)setsignal(SIGPIPE
, cleanup
);
1791 (void)setsignal(SIGTERM
, cleanup
);
1792 (void)setsignal(SIGINT
, cleanup
);
1794 #if defined(HAVE_FORK) || defined(HAVE_VFORK)
1795 (void)setsignal(SIGCHLD
, child_cleanup
);
1797 /* Cooperate with nohup(1) */
1799 if ((oldhandler
= setsignal(SIGHUP
, cleanup
)) != SIG_DFL
)
1800 (void)setsignal(SIGHUP
, oldhandler
);
1805 * If a user name was specified with "-Z", attempt to switch to
1806 * that user's UID. This would probably be used with sudo,
1807 * to allow tcpdump to be run in a special restricted
1808 * account (if you just want to allow users to open capture
1809 * devices, and can't just give users that permission,
1810 * you'd make tcpdump set-UID or set-GID).
1812 * Tcpdump doesn't necessarily write only to one savefile;
1813 * the general only way to allow a -Z instance to write to
1814 * savefiles as the user under whose UID it's run, rather
1815 * than as the user specified with -Z, would thus be to switch
1816 * to the original user ID before opening a capture file and
1817 * then switch back to the -Z user ID after opening the savefile.
1818 * Switching to the -Z user ID only after opening the first
1819 * savefile doesn't handle the general case.
1822 if (getuid() == 0 || geteuid() == 0) {
1823 #ifdef HAVE_LIBCAP_NG
1824 /* Initialize capng */
1825 capng_clear(CAPNG_SELECT_BOTH
);
1829 CAPNG_PERMITTED
| CAPNG_EFFECTIVE
,
1837 CAPNG_PERMITTED
| CAPNG_EFFECTIVE
,
1845 CAPNG_PERMITTED
| CAPNG_EFFECTIVE
,
1849 capng_apply(CAPNG_SELECT_BOTH
);
1850 #endif /* HAVE_LIBCAP_NG */
1851 if (username
|| chroot_dir
)
1852 droproot(username
, chroot_dir
);
1857 if (pcap_setfilter(pd
, &fcode
) < 0)
1858 error("%s", pcap_geterr(pd
));
1859 #ifdef HAVE_CAPSICUM
1860 if (RFileName
== NULL
&& VFileName
== NULL
) {
1861 static const unsigned long cmds
[] = { BIOCGSTATS
, BIOCROTZBUF
};
1864 * The various libpcap devices use a combination of
1865 * read (bpf), ioctl (bpf, netmap), poll (netmap)
1866 * so we add the relevant access rights.
1868 cap_rights_init(&rights
, CAP_IOCTL
, CAP_READ
, CAP_EVENT
);
1869 if (cap_rights_limit(pcap_fileno(pd
), &rights
) < 0 &&
1871 error("unable to limit pcap descriptor");
1873 if (cap_ioctls_limit(pcap_fileno(pd
), cmds
,
1874 sizeof(cmds
) / sizeof(cmds
[0])) < 0 && errno
!= ENOSYS
) {
1875 error("unable to limit ioctls on pcap descriptor");
1881 /* Do not exceed the default PATH_MAX for files. */
1882 dumpinfo
.CurrentFileName
= (char *)malloc(PATH_MAX
+ 1);
1884 if (dumpinfo
.CurrentFileName
== NULL
)
1885 error("malloc of dumpinfo.CurrentFileName");
1887 /* We do not need numbering for dumpfiles if Cflag isn't set. */
1889 MakeFilename(dumpinfo
.CurrentFileName
, WFileName
, 0, WflagChars
);
1891 MakeFilename(dumpinfo
.CurrentFileName
, WFileName
, 0, 0);
1893 p
= pcap_dump_open(pd
, dumpinfo
.CurrentFileName
);
1894 #ifdef HAVE_LIBCAP_NG
1895 /* Give up CAP_DAC_OVERRIDE capability.
1896 * Only allow it to be restored if the -C or -G flag have been
1897 * set since we may need to create more files later on.
1901 (Cflag
|| Gflag
? 0 : CAPNG_PERMITTED
)
1905 capng_apply(CAPNG_SELECT_BOTH
);
1906 #endif /* HAVE_LIBCAP_NG */
1908 error("%s", pcap_geterr(pd
));
1909 #ifdef HAVE_CAPSICUM
1910 set_dumper_capsicum_rights(p
);
1912 if (Cflag
!= 0 || Gflag
!= 0) {
1913 #ifdef HAVE_CAPSICUM
1914 dumpinfo
.WFileName
= strdup(basename(WFileName
));
1915 if (dumpinfo
.WFileName
== NULL
) {
1916 error("Unable to allocate memory for file %s",
1919 dumpinfo
.dirfd
= open(dirname(WFileName
),
1920 O_DIRECTORY
| O_RDONLY
);
1921 if (dumpinfo
.dirfd
< 0) {
1922 error("unable to open directory %s",
1923 dirname(WFileName
));
1925 cap_rights_init(&rights
, CAP_CREATE
, CAP_FCNTL
,
1926 CAP_FTRUNCATE
, CAP_LOOKUP
, CAP_SEEK
, CAP_WRITE
);
1927 if (cap_rights_limit(dumpinfo
.dirfd
, &rights
) < 0 &&
1929 error("unable to limit directory rights");
1931 if (cap_fcntls_limit(dumpinfo
.dirfd
, CAP_FCNTL_GETFL
) < 0 &&
1933 error("unable to limit dump descriptor fcntls");
1935 #else /* !HAVE_CAPSICUM */
1936 dumpinfo
.WFileName
= WFileName
;
1938 callback
= dump_packet_and_trunc
;
1941 pcap_userdata
= (u_char
*)&dumpinfo
;
1943 callback
= dump_packet
;
1944 pcap_userdata
= (u_char
*)p
;
1946 #ifdef HAVE_PCAP_DUMP_FLUSH
1951 dlt
= pcap_datalink(pd
);
1952 ndo
->ndo_if_printer
= get_if_printer(ndo
, dlt
);
1953 callback
= print_packet
;
1954 pcap_userdata
= (u_char
*)ndo
;
1957 #ifdef SIGNAL_REQ_INFO
1959 * We can't get statistics when reading from a file rather
1960 * than capturing from a device.
1962 if (RFileName
== NULL
)
1963 (void)setsignal(SIGNAL_REQ_INFO
, requestinfo
);
1966 if (ndo
->ndo_vflag
> 0 && WFileName
) {
1968 * When capturing to a file, "-v" means tcpdump should,
1969 * every 10 seconds, "v"erbosely report the number of
1972 #ifdef USE_WIN32_MM_TIMER
1973 /* call verbose_stats_dump() each 1000 +/-100msec */
1974 timer_id
= timeSetEvent(1000, 100, verbose_stats_dump
, 0, TIME_PERIODIC
);
1975 setvbuf(stderr
, NULL
, _IONBF
, 0);
1976 #elif defined(HAVE_ALARM)
1977 (void)setsignal(SIGALRM
, verbose_stats_dump
);
1982 if (RFileName
== NULL
) {
1984 * Live capture (if -V was specified, we set RFileName
1985 * to a file from the -V file). Print a message to
1986 * the standard error on UN*X.
1988 if (!ndo
->ndo_vflag
&& !WFileName
) {
1989 (void)fprintf(stderr
,
1990 "%s: verbose output suppressed, use -v or -vv for full protocol decode\n",
1993 (void)fprintf(stderr
, "%s: ", program_name
);
1994 dlt
= pcap_datalink(pd
);
1995 dlt_name
= pcap_datalink_val_to_name(dlt
);
1996 if (dlt_name
== NULL
) {
1997 (void)fprintf(stderr
, "listening on %s, link-type %u, capture size %u bytes\n",
1998 device
, dlt
, ndo
->ndo_snaplen
);
2000 (void)fprintf(stderr
, "listening on %s, link-type %s (%s), capture size %u bytes\n",
2002 pcap_datalink_val_to_description(dlt
), ndo
->ndo_snaplen
);
2004 (void)fflush(stderr
);
2007 #ifdef HAVE_CAPSICUM
2008 cansandbox
= (ndo
->ndo_nflag
&& VFileName
== NULL
&& zflag
== NULL
);
2009 if (cansandbox
&& cap_enter() < 0 && errno
!= ENOSYS
)
2010 error("unable to enter the capability mode");
2011 #endif /* HAVE_CAPSICUM */
2014 status
= pcap_loop(pd
, cnt
, callback
, pcap_userdata
);
2015 if (WFileName
== NULL
) {
2017 * We're printing packets. Flush the printed output,
2018 * so it doesn't get intermingled with error output.
2022 * We got interrupted, so perhaps we didn't
2023 * manage to finish a line we were printing.
2024 * Print an extra newline, just in case.
2028 (void)fflush(stdout
);
2032 * We got interrupted. If we are reading multiple
2033 * files (via -V) set these so that we stop.
2042 (void)fprintf(stderr
, "%s: pcap_loop: %s\n",
2043 program_name
, pcap_geterr(pd
));
2045 if (RFileName
== NULL
) {
2047 * We're doing a live capture. Report the capture
2053 if (VFileName
!= NULL
) {
2054 ret
= get_next_file(VFile
, VFileLine
);
2058 RFileName
= VFileLine
;
2059 pd
= pcap_open_offline(RFileName
, ebuf
);
2062 #ifdef HAVE_CAPSICUM
2063 cap_rights_init(&rights
, CAP_READ
);
2064 if (cap_rights_limit(fileno(pcap_file(pd
)),
2065 &rights
) < 0 && errno
!= ENOSYS
) {
2066 error("unable to limit pcap descriptor");
2069 new_dlt
= pcap_datalink(pd
);
2070 if (new_dlt
!= dlt
) {
2072 * The new file has a different
2073 * link-layer header type from the
2076 if (WFileName
!= NULL
) {
2078 * We're writing raw packets
2079 * that match the filter to
2080 * a pcap file. pcap files
2081 * don't support multiple
2082 * different link-layer
2083 * header types, so we fail
2086 error("%s: new dlt does not match original", RFileName
);
2090 * We're printing the decoded packets;
2091 * switch to the new DLT.
2093 * To do that, we need to change
2094 * the printer, change the DLT name,
2095 * and recompile the filter with
2099 ndo
->ndo_if_printer
= get_if_printer(ndo
, dlt
);
2100 if (pcap_compile(pd
, &fcode
, cmdbuf
, Oflag
, netmask
) < 0)
2101 error("%s", pcap_geterr(pd
));
2105 * Set the filter on the new file.
2107 if (pcap_setfilter(pd
, &fcode
) < 0)
2108 error("%s", pcap_geterr(pd
));
2111 * Report the new file.
2113 dlt_name
= pcap_datalink_val_to_name(dlt
);
2114 if (dlt_name
== NULL
) {
2115 fprintf(stderr
, "reading from file %s, link-type %u\n",
2119 "reading from file %s, link-type %s (%s)\n",
2120 RFileName
, dlt_name
,
2121 pcap_datalink_val_to_description(dlt
));
2126 while (ret
!= NULL
);
2129 pcap_freecode(&fcode
);
2130 exit_tcpdump(status
== -1 ? 1 : 0);
2133 /* make a clean exit on interrupts */
2135 cleanup(int signo _U_
)
2137 #ifdef USE_WIN32_MM_TIMER
2139 timeKillEvent(timer_id
);
2141 #elif defined(HAVE_ALARM)
2145 #ifdef HAVE_PCAP_BREAKLOOP
2147 * We have "pcap_breakloop()"; use it, so that we do as little
2148 * as possible in the signal handler (it's probably not safe
2149 * to do anything with standard I/O streams in a signal handler -
2150 * the ANSI C standard doesn't say it is).
2155 * We don't have "pcap_breakloop()"; this isn't safe, but
2156 * it's the best we can do. Print the summary if we're
2157 * not reading from a savefile - i.e., if we're doing a
2158 * live capture - and exit.
2160 if (pd
!= NULL
&& pcap_file(pd
) == NULL
) {
2162 * We got interrupted, so perhaps we didn't
2163 * manage to finish a line we were printing.
2164 * Print an extra newline, just in case.
2167 (void)fflush(stdout
);
2175 On windows, we do not use a fork, so we do not care less about
2176 waiting a child processes to die
2178 #if defined(HAVE_FORK) || defined(HAVE_VFORK)
2180 child_cleanup(int signo _U_
)
2184 #endif /* HAVE_FORK && HAVE_VFORK */
2187 info(register int verbose
)
2189 struct pcap_stat stats
;
2192 * Older versions of libpcap didn't set ps_ifdrop on some
2193 * platforms; initialize it to 0 to handle that.
2195 stats
.ps_ifdrop
= 0;
2196 if (pcap_stats(pd
, &stats
) < 0) {
2197 (void)fprintf(stderr
, "pcap_stats: %s\n", pcap_geterr(pd
));
2203 fprintf(stderr
, "%s: ", program_name
);
2205 (void)fprintf(stderr
, "%u packet%s captured", packets_captured
,
2206 PLURAL_SUFFIX(packets_captured
));
2208 fputs(", ", stderr
);
2211 (void)fprintf(stderr
, "%u packet%s received by filter", stats
.ps_recv
,
2212 PLURAL_SUFFIX(stats
.ps_recv
));
2214 fputs(", ", stderr
);
2217 (void)fprintf(stderr
, "%u packet%s dropped by kernel", stats
.ps_drop
,
2218 PLURAL_SUFFIX(stats
.ps_drop
));
2219 if (stats
.ps_ifdrop
!= 0) {
2221 fputs(", ", stderr
);
2224 (void)fprintf(stderr
, "%u packet%s dropped by interface\n",
2225 stats
.ps_ifdrop
, PLURAL_SUFFIX(stats
.ps_ifdrop
));
2231 #if defined(HAVE_FORK) || defined(HAVE_VFORK)
2233 #define fork_subprocess() fork()
2235 #define fork_subprocess() vfork()
2238 compress_savefile(const char *filename
)
2242 child
= fork_subprocess();
2245 "compress_savefile: fork failed: %s\n",
2246 pcap_strerror(errno
));
2250 /* Parent process. */
2256 * Set to lowest priority so that this doesn't disturb the capture.
2259 setpriority(PRIO_PROCESS
, 0, NZERO
- 1);
2261 setpriority(PRIO_PROCESS
, 0, 19);
2263 if (execlp(zflag
, zflag
, filename
, (char *)NULL
) == -1)
2265 "compress_savefile: execlp(%s, %s) failed: %s\n",
2268 pcap_strerror(errno
));
2275 #else /* HAVE_FORK && HAVE_VFORK */
2277 compress_savefile(const char *filename
)
2280 "compress_savefile failed. Functionality not implemented under your system\n");
2282 #endif /* HAVE_FORK && HAVE_VFORK */
2285 dump_packet_and_trunc(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*sp
)
2287 struct dump_info
*dump_info
;
2293 dump_info
= (struct dump_info
*)user
;
2296 * XXX - this won't force the file to rotate on the specified time
2297 * boundary, but it will rotate on the first packet received after the
2298 * specified Gflag number of seconds. Note: if a Gflag time boundary
2299 * and a Cflag size boundary coincide, the time rotation will occur
2300 * first thereby cancelling the Cflag boundary (since the file should
2304 /* Check if it is time to rotate */
2307 /* Get the current time */
2308 if ((t
= time(NULL
)) == (time_t)-1) {
2309 error("dump_and_trunc_packet: can't get current_time: %s",
2310 pcap_strerror(errno
));
2314 /* If the time is greater than the specified window, rotate */
2315 if (t
- Gflag_time
>= Gflag
) {
2316 #ifdef HAVE_CAPSICUM
2321 /* Update the Gflag_time */
2323 /* Update Gflag_count */
2326 * Close the current file and open a new one.
2328 pcap_dump_close(dump_info
->p
);
2331 * Compress the file we just closed, if the user asked for it
2334 compress_savefile(dump_info
->CurrentFileName
);
2337 * Check to see if we've exceeded the Wflag (when
2340 if (Cflag
== 0 && Wflag
> 0 && Gflag_count
>= Wflag
) {
2341 (void)fprintf(stderr
, "Maximum file limit reached: %d\n",
2347 if (dump_info
->CurrentFileName
!= NULL
)
2348 free(dump_info
->CurrentFileName
);
2349 /* Allocate space for max filename + \0. */
2350 dump_info
->CurrentFileName
= (char *)malloc(PATH_MAX
+ 1);
2351 if (dump_info
->CurrentFileName
== NULL
)
2352 error("dump_packet_and_trunc: malloc");
2354 * Gflag was set otherwise we wouldn't be here. Reset the count
2355 * so multiple files would end with 1,2,3 in the filename.
2356 * The counting is handled with the -C flow after this.
2361 * This is always the first file in the Cflag
2363 * We also don't need numbering if Cflag is not set.
2366 MakeFilename(dump_info
->CurrentFileName
, dump_info
->WFileName
, 0,
2369 MakeFilename(dump_info
->CurrentFileName
, dump_info
->WFileName
, 0, 0);
2371 #ifdef HAVE_LIBCAP_NG
2372 capng_update(CAPNG_ADD
, CAPNG_EFFECTIVE
, CAP_DAC_OVERRIDE
);
2373 capng_apply(CAPNG_SELECT_BOTH
);
2374 #endif /* HAVE_LIBCAP_NG */
2375 #ifdef HAVE_CAPSICUM
2376 fd
= openat(dump_info
->dirfd
,
2377 dump_info
->CurrentFileName
,
2378 O_CREAT
| O_WRONLY
| O_TRUNC
, 0644);
2380 error("unable to open file %s",
2381 dump_info
->CurrentFileName
);
2383 fp
= fdopen(fd
, "w");
2385 error("unable to fdopen file %s",
2386 dump_info
->CurrentFileName
);
2388 dump_info
->p
= pcap_dump_fopen(dump_info
->pd
, fp
);
2389 #else /* !HAVE_CAPSICUM */
2390 dump_info
->p
= pcap_dump_open(dump_info
->pd
, dump_info
->CurrentFileName
);
2392 #ifdef HAVE_LIBCAP_NG
2393 capng_update(CAPNG_DROP
, CAPNG_EFFECTIVE
, CAP_DAC_OVERRIDE
);
2394 capng_apply(CAPNG_SELECT_BOTH
);
2395 #endif /* HAVE_LIBCAP_NG */
2396 if (dump_info
->p
== NULL
)
2397 error("%s", pcap_geterr(pd
));
2398 #ifdef HAVE_CAPSICUM
2399 set_dumper_capsicum_rights(dump_info
->p
);
2405 * XXX - this won't prevent capture files from getting
2406 * larger than Cflag - the last packet written to the
2407 * file could put it over Cflag.
2410 long size
= pcap_dump_ftell(dump_info
->p
);
2413 error("ftell fails on output file");
2415 #ifdef HAVE_CAPSICUM
2421 * Close the current file and open a new one.
2423 pcap_dump_close(dump_info
->p
);
2426 * Compress the file we just closed, if the user
2430 compress_savefile(dump_info
->CurrentFileName
);
2434 if (Cflag_count
>= Wflag
)
2437 if (dump_info
->CurrentFileName
!= NULL
)
2438 free(dump_info
->CurrentFileName
);
2439 dump_info
->CurrentFileName
= (char *)malloc(PATH_MAX
+ 1);
2440 if (dump_info
->CurrentFileName
== NULL
)
2441 error("dump_packet_and_trunc: malloc");
2442 MakeFilename(dump_info
->CurrentFileName
, dump_info
->WFileName
, Cflag_count
, WflagChars
);
2443 #ifdef HAVE_LIBCAP_NG
2444 capng_update(CAPNG_ADD
, CAPNG_EFFECTIVE
, CAP_DAC_OVERRIDE
);
2445 capng_apply(CAPNG_SELECT_BOTH
);
2446 #endif /* HAVE_LIBCAP_NG */
2447 #ifdef HAVE_CAPSICUM
2448 fd
= openat(dump_info
->dirfd
, dump_info
->CurrentFileName
,
2449 O_CREAT
| O_WRONLY
| O_TRUNC
, 0644);
2451 error("unable to open file %s",
2452 dump_info
->CurrentFileName
);
2454 fp
= fdopen(fd
, "w");
2456 error("unable to fdopen file %s",
2457 dump_info
->CurrentFileName
);
2459 dump_info
->p
= pcap_dump_fopen(dump_info
->pd
, fp
);
2460 #else /* !HAVE_CAPSICUM */
2461 dump_info
->p
= pcap_dump_open(dump_info
->pd
, dump_info
->CurrentFileName
);
2463 #ifdef HAVE_LIBCAP_NG
2464 capng_update(CAPNG_DROP
, CAPNG_EFFECTIVE
, CAP_DAC_OVERRIDE
);
2465 capng_apply(CAPNG_SELECT_BOTH
);
2466 #endif /* HAVE_LIBCAP_NG */
2467 if (dump_info
->p
== NULL
)
2468 error("%s", pcap_geterr(pd
));
2469 #ifdef HAVE_CAPSICUM
2470 set_dumper_capsicum_rights(dump_info
->p
);
2475 pcap_dump((u_char
*)dump_info
->p
, h
, sp
);
2476 #ifdef HAVE_PCAP_DUMP_FLUSH
2478 pcap_dump_flush(dump_info
->p
);
2487 dump_packet(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*sp
)
2493 pcap_dump(user
, h
, sp
);
2494 #ifdef HAVE_PCAP_DUMP_FLUSH
2496 pcap_dump_flush((pcap_dumper_t
*)user
);
2505 print_packet(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*sp
)
2511 pretty_print_packet((netdissect_options
*)user
, h
, sp
, packets_captured
);
2520 * XXX - there should really be libpcap calls to get the version
2521 * number as a string (the string would be generated from #defines
2522 * at run time, so that it's not generated from string constants
2523 * in the library, as, on many UNIX systems, those constants would
2524 * be statically linked into the application executable image, and
2525 * would thus reflect the version of libpcap on the system on
2526 * which the application was *linked*, not the system on which it's
2529 * That routine should be documented, unlike the "version[]"
2530 * string, so that UNIX vendors providing their own libpcaps
2531 * don't omit it (as a couple of vendors have...).
2533 * Packet.dll should perhaps also export a routine to return the
2534 * version number of the Packet.dll code, to supply the
2535 * "Wpcap_version" information on Windows.
2537 char WDversion
[]="current-git.tcpdump.org";
2538 #if !defined(HAVE_GENERATED_VERSION)
2539 char version
[]="current-git.tcpdump.org";
2541 char pcap_version
[]="current-git.tcpdump.org";
2542 char Wpcap_version
[]="3.1";
2545 #ifdef SIGNAL_REQ_INFO
2546 RETSIGTYPE
requestinfo(int signo _U_
)
2556 * Called once each second in verbose mode while dumping to file
2558 #ifdef USE_WIN32_MM_TIMER
2559 void CALLBACK
verbose_stats_dump (UINT timer_id _U_
, UINT msg _U_
, DWORD_PTR arg _U_
,
2560 DWORD_PTR dw1 _U_
, DWORD_PTR dw2 _U_
)
2563 fprintf(stderr
, "Got %u\r", packets_captured
);
2565 #elif defined(HAVE_ALARM)
2566 static void verbose_stats_dump(int sig _U_
)
2569 fprintf(stderr
, "Got %u\r", packets_captured
);
2574 USES_APPLE_DEPRECATED_API
2578 extern char version
[];
2579 #ifndef HAVE_PCAP_LIB_VERSION
2580 #if defined(_WIN32) || defined(HAVE_PCAP_VERSION)
2581 extern char pcap_version
[];
2582 #else /* defined(_WIN32) || defined(HAVE_PCAP_VERSION) */
2583 static char pcap_version
[] = "unknown";
2584 #endif /* defined(_WIN32) || defined(HAVE_PCAP_VERSION) */
2585 #endif /* HAVE_PCAP_LIB_VERSION */
2586 const char *smi_version_string
;
2588 #ifdef HAVE_PCAP_LIB_VERSION
2590 (void)fprintf(stderr
, "%s version %s, based on tcpdump version %s\n", program_name
, WDversion
, version
);
2592 (void)fprintf(stderr
, "%s version %s\n", program_name
, version
);
2594 (void)fprintf(stderr
, "%s\n",pcap_lib_version());
2595 #else /* HAVE_PCAP_LIB_VERSION */
2597 (void)fprintf(stderr
, "%s version %s, based on tcpdump version %s\n", program_name
, WDversion
, version
);
2598 (void)fprintf(stderr
, "WinPcap version %s, based on libpcap version %s\n",Wpcap_version
, pcap_version
);
2600 (void)fprintf(stderr
, "%s version %s\n", program_name
, version
);
2601 (void)fprintf(stderr
, "libpcap version %s\n", pcap_version
);
2603 #endif /* HAVE_PCAP_LIB_VERSION */
2605 #if defined(HAVE_LIBCRYPTO) && defined(SSLEAY_VERSION)
2606 (void)fprintf (stderr
, "%s\n", SSLeay_version(SSLEAY_VERSION
));
2609 smi_version_string
= nd_smi_version_string();
2610 if (smi_version_string
!= NULL
)
2611 (void)fprintf (stderr
, "SMI-library: %s\n", smi_version_string
);
2613 #if defined(__SANITIZE_ADDRESS__)
2614 (void)fprintf (stderr
, "Compiled with AddressSanitizer/GCC.\n");
2615 #elif defined(__has_feature)
2616 # if __has_feature(address_sanitizer)
2617 (void)fprintf (stderr
, "Compiled with AddressSanitizer/CLang.\n");
2619 #endif /* __SANITIZE_ADDRESS__ or __has_feature */
2627 (void)fprintf(stderr
,
2628 "Usage: %s [-aAbd" D_FLAG
"efhH" I_FLAG J_FLAG
"KlLnNOpqStu" U_FLAG
"vxX#]" B_FLAG_USAGE
" [ -c count ]\n", program_name
);
2629 (void)fprintf(stderr
,
2630 "\t\t[ -C file_size ] [ -E algo:secret ] [ -F file ] [ -G seconds ]\n");
2631 (void)fprintf(stderr
,
2632 "\t\t[ -i interface ]" j_FLAG_USAGE
" [ -M secret ] [ --number ]\n");
2633 #ifdef HAVE_PCAP_SETDIRECTION
2634 (void)fprintf(stderr
,
2635 "\t\t[ -Q in|out|inout ]\n");
2637 (void)fprintf(stderr
,
2638 "\t\t[ -r file ] [ -s snaplen ] ");
2639 #ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
2640 (void)fprintf(stderr
, "[ --time-stamp-precision precision ]\n");
2641 (void)fprintf(stderr
,
2644 #ifdef HAVE_PCAP_SET_IMMEDIATE_MODE
2645 (void)fprintf(stderr
, "[ --immediate-mode ] ");
2647 (void)fprintf(stderr
, "[ -T type ] [ --version ] [ -V file ]\n");
2648 (void)fprintf(stderr
,
2649 "\t\t[ -w file ] [ -W filecount ] [ -y datalinktype ] [ -z postrotate-command ]\n");
2650 (void)fprintf(stderr
,
2651 "\t\t[ -Z user ] [ expression ]\n");
2655 * c-style: whitesmith