1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1991, 1993, 1994, 1995, 1996, 1997
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that: (1) source code distributions
|
|
|
|
* retain the above copyright notice and this paragraph in its entirety, (2)
|
|
|
|
* distributions including binary code include the above copyright notice and
|
|
|
|
* this paragraph in its entirety in the documentation or other materials
|
|
|
|
* provided with the distribution, and (3) all advertising materials mentioning
|
|
|
|
* features or use of this software display the following acknowledgement:
|
|
|
|
* ``This product includes software developed by the University of California,
|
|
|
|
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
|
|
|
* the University nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: BSD loopback device printer */
|
|
|
|
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2020-10-17 19:49:50 +08:00
|
|
|
#define ND_LONGJMP_FROM_TCHECK
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2018-02-12 18:34:28 +08:00
|
|
|
#include "extract.h"
|
2006-03-23 22:58:44 +08:00
|
|
|
#include "af.h"
|
2000-09-23 16:54:24 +08:00
|
|
|
|
2018-02-12 18:34:28 +08:00
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/*
|
Handle DLT_NULL correctly - the AF_ value is in host byte order, which
may not be *our* byte order if we're reading a capture file from another
machine; we currently handle that by checking whether it looks like an
integer < 65536 or not and, if it's not, byte-swap it.
This also lets us handle OpenBSD DLT_LOOP as well - it's like DLT_NULL
except that the AF_ value is in *network* byte order.
(Old-style Linux loopback captures were also DLT_NULL, but the header
had an Ethernet type in it; there have also been captures where the
header was a PPP header. For now, we just continue to assume that all
DLT_NULL packets are IP, and check the IP version field to decide
whether it's IPv4, IPv6, or something else.
We may want to consider adopting Ethereal's heuristics, which would at
least mean we wouldn't be reporting bogus packet types for old-style
Linux loopback captures and those weird PPP - ISDN4BSD? - captures,
although the version of libpcap that goes with this version of tcpdump
doesn't produce bogus DLT_NULL captures for Linux loopback devices.)
2000-12-17 06:00:50 +08:00
|
|
|
* The DLT_NULL packet header is 4 bytes long. It contains a host-byte-order
|
|
|
|
* 32-bit integer that specifies the family, e.g. AF_INET.
|
|
|
|
*
|
|
|
|
* Note here that "host" refers to the host on which the packets were
|
|
|
|
* captured; that isn't necessarily *this* host.
|
|
|
|
*
|
|
|
|
* The OpenBSD DLT_LOOP packet header is the same, except that the integer
|
|
|
|
* is in network byte order.
|
1999-10-08 07:47:09 +08:00
|
|
|
*/
|
|
|
|
#define NULL_HDRLEN 4
|
|
|
|
|
Handle DLT_NULL correctly - the AF_ value is in host byte order, which
may not be *our* byte order if we're reading a capture file from another
machine; we currently handle that by checking whether it looks like an
integer < 65536 or not and, if it's not, byte-swap it.
This also lets us handle OpenBSD DLT_LOOP as well - it's like DLT_NULL
except that the AF_ value is in *network* byte order.
(Old-style Linux loopback captures were also DLT_NULL, but the header
had an Ethernet type in it; there have also been captures where the
header was a PPP header. For now, we just continue to assume that all
DLT_NULL packets are IP, and check the IP version field to decide
whether it's IPv4, IPv6, or something else.
We may want to consider adopting Ethereal's heuristics, which would at
least mean we wouldn't be reporting bogus packet types for old-style
Linux loopback captures and those weird PPP - ISDN4BSD? - captures,
although the version of libpcap that goes with this version of tcpdump
doesn't produce bogus DLT_NULL captures for Linux loopback devices.)
2000-12-17 06:00:50 +08:00
|
|
|
/*
|
|
|
|
* Byte-swap a 32-bit number.
|
|
|
|
* ("htonl()" or "ntohl()" won't work - we want to byte-swap even on
|
|
|
|
* big-endian platforms.)
|
|
|
|
*/
|
|
|
|
#define SWAPLONG(y) \
|
|
|
|
((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff))
|
|
|
|
|
2018-01-26 22:15:58 +08:00
|
|
|
static void
|
2020-02-08 01:21:40 +08:00
|
|
|
null_hdr_print(netdissect_options *ndo, uint32_t family, u_int length)
|
2005-05-19 15:25:49 +08:00
|
|
|
{
|
2014-03-07 00:41:44 +08:00
|
|
|
if (!ndo->ndo_qflag) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("AF %s (%u)",
|
|
|
|
tok2str(bsd_af_values,"Unknown",family),family);
|
2005-05-19 15:25:49 +08:00
|
|
|
} else {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%s",
|
|
|
|
tok2str(bsd_af_values,"Unknown AF %u",family));
|
2005-05-19 15:25:49 +08:00
|
|
|
}
|
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", length %u: ", length);
|
2005-05-19 15:25:49 +08:00
|
|
|
}
|
|
|
|
|
2003-02-05 10:28:45 +08:00
|
|
|
/*
|
|
|
|
* This is the top level routine of the printer. 'p' points
|
|
|
|
* to the ether header of the packet, 'h->ts' is the timestamp,
|
2004-03-18 07:24:35 +08:00
|
|
|
* 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
2003-02-05 10:28:45 +08:00
|
|
|
* is the number of bytes actually captured.
|
|
|
|
*/
|
2020-02-08 01:21:40 +08:00
|
|
|
void
|
2014-03-07 00:41:44 +08:00
|
|
|
null_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
|
|
|
u_int length = h->len;
|
2003-02-05 10:28:45 +08:00
|
|
|
u_int caplen = h->caplen;
|
2018-02-12 18:34:28 +08:00
|
|
|
uint32_t family;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2020-02-08 01:21:40 +08:00
|
|
|
ndo->ndo_protocol = "null";
|
2020-10-17 19:49:50 +08:00
|
|
|
ND_TCHECK_LEN(p, NULL_HDRLEN);
|
2020-07-14 23:32:55 +08:00
|
|
|
ndo->ndo_ll_hdr_len += NULL_HDRLEN;
|
2003-02-05 10:28:45 +08:00
|
|
|
|
2019-04-28 22:21:07 +08:00
|
|
|
family = GET_HE_U_4(p);
|
Handle DLT_NULL correctly - the AF_ value is in host byte order, which
may not be *our* byte order if we're reading a capture file from another
machine; we currently handle that by checking whether it looks like an
integer < 65536 or not and, if it's not, byte-swap it.
This also lets us handle OpenBSD DLT_LOOP as well - it's like DLT_NULL
except that the AF_ value is in *network* byte order.
(Old-style Linux loopback captures were also DLT_NULL, but the header
had an Ethernet type in it; there have also been captures where the
header was a PPP header. For now, we just continue to assume that all
DLT_NULL packets are IP, and check the IP version field to decide
whether it's IPv4, IPv6, or something else.
We may want to consider adopting Ethereal's heuristics, which would at
least mean we wouldn't be reporting bogus packet types for old-style
Linux loopback captures and those weird PPP - ISDN4BSD? - captures,
although the version of libpcap that goes with this version of tcpdump
doesn't produce bogus DLT_NULL captures for Linux loopback devices.)
2000-12-17 06:00:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This isn't necessarily in our host byte order; if this is
|
|
|
|
* a DLT_LOOP capture, it's in network byte order, and if
|
|
|
|
* this is a DLT_NULL capture from a machine with the opposite
|
|
|
|
* byte-order, it's in the opposite byte order from ours.
|
|
|
|
*
|
|
|
|
* If the upper 16 bits aren't all zero, assume it's byte-swapped.
|
|
|
|
*/
|
|
|
|
if ((family & 0xFFFF0000) != 0)
|
|
|
|
family = SWAPLONG(family);
|
|
|
|
|
2014-03-07 00:41:44 +08:00
|
|
|
if (ndo->ndo_eflag)
|
|
|
|
null_hdr_print(ndo, family, length);
|
2005-05-19 15:25:49 +08:00
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
length -= NULL_HDRLEN;
|
2003-02-05 10:28:45 +08:00
|
|
|
caplen -= NULL_HDRLEN;
|
|
|
|
p += NULL_HDRLEN;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2003-02-05 10:28:45 +08:00
|
|
|
switch (family) {
|
|
|
|
|
2023-02-21 05:30:16 +08:00
|
|
|
case BSD_AF_INET:
|
2014-03-07 00:41:44 +08:00
|
|
|
ip_print(ndo, p, length);
|
1999-11-21 11:48:05 +08:00
|
|
|
break;
|
2003-02-05 10:28:45 +08:00
|
|
|
|
2023-02-21 05:30:16 +08:00
|
|
|
case BSD_AF_INET6_BSD:
|
|
|
|
case BSD_AF_INET6_FREEBSD:
|
|
|
|
case BSD_AF_INET6_DARWIN:
|
2014-03-07 00:41:44 +08:00
|
|
|
ip6_print(ndo, p, length);
|
1999-11-21 11:48:05 +08:00
|
|
|
break;
|
2003-02-05 10:28:45 +08:00
|
|
|
|
2023-02-21 05:30:16 +08:00
|
|
|
case BSD_AF_ISO:
|
2017-02-04 04:24:14 +08:00
|
|
|
isoclns_print(ndo, p, length);
|
2003-02-05 10:28:45 +08:00
|
|
|
break;
|
|
|
|
|
2023-02-21 05:30:16 +08:00
|
|
|
case BSD_AF_APPLETALK:
|
2014-03-28 18:43:43 +08:00
|
|
|
atalk_print(ndo, p, length);
|
1999-11-21 11:48:05 +08:00
|
|
|
break;
|
2003-02-05 10:28:45 +08:00
|
|
|
|
2023-02-21 05:30:16 +08:00
|
|
|
case BSD_AF_IPX:
|
2014-03-13 21:21:55 +08:00
|
|
|
ipx_print(ndo, p, length);
|
2003-02-05 10:28:45 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* unknown AF_ value */
|
2014-03-07 00:41:44 +08:00
|
|
|
if (!ndo->ndo_eflag)
|
|
|
|
null_hdr_print(ndo, family, length + NULL_HDRLEN);
|
|
|
|
if (!ndo->ndo_suppress_default_print)
|
2014-03-26 22:52:40 +08:00
|
|
|
ND_DEFAULTPRINT(p, caplen);
|
1999-11-21 11:48:05 +08:00
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|