From 24ede2d805a7ffac09999aafe7d4f285e45a6edd Mon Sep 17 00:00:00 2001 From: fenner Date: Sun, 26 Jan 2003 01:16:33 +0000 Subject: Commit tcpdump.org's multi-DLT support to vendor branch. --- contrib/tcpdump/VERSION | 2 +- contrib/tcpdump/tcpdump.1 | 26 +++++++--- contrib/tcpdump/tcpdump.c | 130 ++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 148 insertions(+), 10 deletions(-) (limited to 'contrib/tcpdump') diff --git a/contrib/tcpdump/VERSION b/contrib/tcpdump/VERSION index a76ccff..382c402 100644 --- a/contrib/tcpdump/VERSION +++ b/contrib/tcpdump/VERSION @@ -1 +1 @@ -3.7.1 +3.7.1+multidlt diff --git a/contrib/tcpdump/tcpdump.1 b/contrib/tcpdump/tcpdump.1 index 7df9554..0b5b857 100644 --- a/contrib/tcpdump/tcpdump.1 +++ b/contrib/tcpdump/tcpdump.1 @@ -27,7 +27,7 @@ tcpdump \- dump traffic on a network .na .B tcpdump [ -.B \-adeflnNOpqRStuvxX +.B \-adeflLnNOpqRStuvxX ] [ .B \-c .I count @@ -76,6 +76,11 @@ tcpdump \- dump traffic on a network .I algo:secret ] [ +.B \-y +.I datalinktype +] +.ti +8 +[ .I expression ] .br @@ -87,7 +92,7 @@ that match the boolean \fIexpression\fP. It can also be run with the .B \-w flag, which causes it to save the packet data to a file for later analysis, and/or with the -.B \-b +.B \-r flag, which causes it to read from a saved packet file rather than to read packets from a network interface. In all cases, only packets that match @@ -236,9 +241,9 @@ you make it visible to others, via and other occasions. .TP .B \-f -Print `foreign' internet addresses numerically rather than symbolically +Print `foreign' IPv4 addresses numerically rather than symbolically (this option is intended to get around serious brain damage in -Sun's yp server \(em usually it hangs forever translating non-local +Sun's NIS server \(em usually it hangs forever translating non-local internet numbers). .TP .B \-F @@ -266,6 +271,9 @@ E.g., ``tcpdump\ \ \-l\ \ |\ \ tee dat'' or ``tcpdump\ \ \-l \ \ > dat\ \ &\ \ tail\ \ \-f\ \ dat''. .TP +.B \-L +List the known data link types for the interface and exit. +.TP .B \-m Load SMI MIB module definitions from file \fImodule\fR. This option @@ -304,7 +312,9 @@ Since there is no protocol version field in ESP/AH specification, \fItcpdump\fP cannot deduce the version of ESP/AH protocol. .TP .B \-r -Read packets from \fIfile\fR (which was created with the -w option). +Read packets from \fIfile\fR (which was created with the +.B \-w +option). Standard input is used if \fIfile\fR is ``-''. .TP .B \-S @@ -354,6 +364,7 @@ on each dump line. .TP .B \-tttt Print a timestamp in default format proceeded by date on each dump line. +.TP .B \-u Print undecoded NFS handles. .TP @@ -376,7 +387,7 @@ telnet \fBSB\fP ... \fBSE\fP options are printed in full. With .B \-X -telnet options are printed in hex as well. +Telnet options are printed in hex as well. .TP .B \-w Write the raw packets to \fIfile\fR rather than parsing and printing @@ -400,6 +411,9 @@ Even if .B \-x is not also set, some parts of some packets may be printed in hex/ascii. +.TP +.B \-y +Set the data link type to use while capturing packets to \fIdatalinktype\fP. .IP "\fI expression\fP" .RS selects which packets will be dumped. diff --git a/contrib/tcpdump/tcpdump.c b/contrib/tcpdump/tcpdump.c index 8b21c20..4f98c08 100644 --- a/contrib/tcpdump/tcpdump.c +++ b/contrib/tcpdump/tcpdump.c @@ -69,6 +69,7 @@ int aflag; /* translate network and broadcast addresses */ int dflag; /* print filter code */ int eflag; /* print ethernet header */ int fflag; /* don't translate "foreign" IP address */ +int Lflag; /* list available data link types and exit */ int nflag; /* leave addresses as numbers */ int Nflag; /* remove domains from printed host names */ int Oflag = 1; /* run filter code optimizer */ @@ -83,6 +84,9 @@ int vflag; /* verbose */ int xflag; /* print packet in hex */ int Xflag; /* print packet in ascii as well as hex */ off_t Cflag = 0; /* rotate dump files after this many bytes */ +int dlt = -1; /* if != -1, ask libpcap for the DLT it names */ + +const char *dlt_name = NULL; char *espsecret = NULL; /* ESP secret key */ @@ -98,6 +102,7 @@ int32_t thiszone; /* seconds offset from gmt to local time */ /* Forwards */ static RETSIGTYPE cleanup(int); static void usage(void) __attribute__((noreturn)); +static void show_dlts_and_exit(pcap_t *pd) __attribute__((noreturn)); static void dump_and_trunc(u_char *, const struct pcap_pkthdr *, const u_char *); @@ -186,6 +191,94 @@ struct dump_info { pcap_dumper_t *p; }; +struct dlt_choice { + const char* name; + int dlt; +}; + +#define DLT_CHOICE(code) { #code, code } +#define DLT_CHOICE_SENTINEL { NULL, 0 } + +struct dlt_choice dlt_choices[] = { + DLT_CHOICE(DLT_ARCNET), + DLT_CHOICE(DLT_EN10MB), + DLT_CHOICE(DLT_IEEE802), +#ifdef DLT_LANE8023 + DLT_CHOICE(DLT_LANE8023), +#endif +#ifdef DLT_CIP + DLT_CHOICE(DLT_CIP), +#endif +#ifdef DLT_ATM_CLIP + DLT_CHOICE(DLT_ATM_CLIP), +#endif + DLT_CHOICE(DLT_SLIP), + DLT_CHOICE(DLT_SLIP_BSDOS), + DLT_CHOICE(DLT_PPP), + DLT_CHOICE(DLT_PPP_BSDOS), + DLT_CHOICE(DLT_FDDI), + DLT_CHOICE(DLT_NULL), +#ifdef DLT_LOOP + DLT_CHOICE(DLT_LOOP), +#endif + DLT_CHOICE(DLT_RAW), + DLT_CHOICE(DLT_ATM_RFC1483), +#ifdef DLT_C_HDLC + DLT_CHOICE(DLT_C_HDLC), +#endif +#ifdef DLT_HDLC + DLT_CHOICE(DLT_HDLC), +#endif +#ifdef DLT_PPP_SERIAL + DLT_CHOICE(DLT_PPP_SERIAL), +#endif +#ifdef DLT_PPP_ETHER + DLT_CHOICE(DLT_PPP_ETHER), +#endif +#ifdef DLT_LINUX_SLL + DLT_CHOICE(DLT_LINUX_SLL), +#endif +#ifdef DLT_IEEE802_11 + DLT_CHOICE(DLT_IEEE802_11), +#endif +#ifdef DLT_LTALK + DLT_CHOICE(DLT_LTALK), +#endif +#ifdef DLT_PFLOG + DLT_CHOICE(DLT_PFLOG), +#endif + DLT_CHOICE_SENTINEL +}; + +static void +show_dlts_and_exit(pcap_t *pd) +{ + int i, n_dlts; + int *dlts = 0; + n_dlts = pcap_list_datalinks(pd, &dlts); + if (n_dlts < 0) + error("%s", pcap_geterr(pd)); + else if (n_dlts == 0 || !dlts) + error("No data link types."); + + (void) fprintf(stderr, "Data link types (use option -y):\n"); + + while (--n_dlts >= 0) { + for (i = 0; dlt_choices[i].name; i++) { + if (dlt_choices[i].dlt != dlts[n_dlts]) { + continue; + } + (void) fprintf(stderr, " %s\n", + dlt_choices[i].name + sizeof("DLT_") - 1); + break; + } + if (!dlt_choices[i].name) + fprintf(stderr, " %d (not supported)\n", dlts[n_dlts]); + } + free(dlts); + exit(0); +} + int main(int argc, char **argv) { @@ -218,7 +311,7 @@ main(int argc, char **argv) opterr = 0; while ( - (op = getopt(argc, argv, "ac:C:deE:fF:i:lm:nNOpqr:Rs:StT:uvw:xXY")) != -1) + (op = getopt(argc, argv, "ac:C:deE:fF:i:lLm:nNOpqr:Rs:StT:uvw:xXy:Y")) != -1) switch (op) { case 'a': @@ -241,6 +334,10 @@ main(int argc, char **argv) ++dflag; break; + case 'L': + Lflag++; + break; + case 'e': ++eflag; break; @@ -372,6 +469,21 @@ main(int argc, char **argv) ++Xflag; break; + case 'y': + for (i = 0; dlt_choices[i].name; i++) { + if (!strcasecmp(dlt_choices[i].name + + sizeof("DLT_") - 1, + optarg)) { + dlt = dlt_choices[i].dlt; + dlt_name = dlt_choices[i].name; + break; + } + } + if (dlt < 0) { + error("invalid data link type %s", optarg); + } + break; + #ifdef YYDEBUG case 'Y': { @@ -419,6 +531,16 @@ main(int argc, char **argv) error("%s", ebuf); else if (*ebuf) warning("%s", ebuf); + if (Lflag) { + show_dlts_and_exit(pd); + } + if (dlt >= 0) { + if (pcap_set_datalink(pd, dlt) < 0) + error("%s", pcap_geterr(pd)); + (void)fprintf(stderr, "%s: data link type %s\n", + program_name, dlt_name); + (void)fflush(stderr); + } i = pcap_snapshot(pd); if (snaplen < i) { warning("snaplen raised from %d to %d", snaplen, i); @@ -638,10 +760,12 @@ usage(void) (void)fprintf(stderr, "%s version %s\n", program_name, version); (void)fprintf(stderr, "libpcap version %s\n", pcap_version); (void)fprintf(stderr, -"Usage: %s [-adeflnNOpqRStuvxX] [ -c count ] [ -C file_size ]\n", program_name); +"Usage: %s [-adeflLnNOpqRStuvxX] [ -c count ] [ -C file_size ]\n", program_name); (void)fprintf(stderr, "\t\t[ -F file ] [ -i interface ] [ -r file ] [ -s snaplen ]\n"); (void)fprintf(stderr, -"\t\t[ -T type ] [ -w file ] [ -E algo:secret ] [ expression ]\n"); +"\t\t[ -T type ] [ -w file ] [ -E algo:secret ] [ -y datalinktype ]\n"); + (void)fprintf(stderr, +"\t\t[ expression ]\n"); exit(1); } -- cgit v1.1