1999-10-08 07:47:09 +08:00
|
|
|
/*
|
1999-10-18 06:18:00 +08:00
|
|
|
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
|
1999-10-08 07:47:09 +08:00
|
|
|
* 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: IP printer */
|
|
|
|
|
1999-11-21 17:36:43 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
1999-10-18 06:18:00 +08:00
|
|
|
#include <string.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2014-04-04 15:43:46 +08:00
|
|
|
#include "addrtoname.h"
|
2015-09-07 21:01:46 +08:00
|
|
|
#include "extract.h"
|
1999-10-18 06:18:00 +08:00
|
|
|
|
2000-09-23 16:54:24 +08:00
|
|
|
#include "ip.h"
|
2003-06-07 19:57:51 +08:00
|
|
|
#include "ipproto.h"
|
1999-10-18 06:18:00 +08:00
|
|
|
|
2013-12-26 22:08:06 +08:00
|
|
|
|
2013-09-25 00:46:24 +08:00
|
|
|
static const struct tok ip_option_values[] = {
|
2004-09-28 05:13:09 +08:00
|
|
|
{ IPOPT_EOL, "EOL" },
|
|
|
|
{ IPOPT_NOP, "NOP" },
|
|
|
|
{ IPOPT_TS, "timestamp" },
|
|
|
|
{ IPOPT_SECURITY, "security" },
|
|
|
|
{ IPOPT_RR, "RR" },
|
|
|
|
{ IPOPT_SSRR, "SSRR" },
|
|
|
|
{ IPOPT_LSRR, "LSRR" },
|
|
|
|
{ IPOPT_RA, "RA" },
|
2007-09-14 09:29:28 +08:00
|
|
|
{ IPOPT_RFC1393, "traceroute" },
|
2004-09-28 05:13:09 +08:00
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* print the recorded route in an IP RR, LSRR or SSRR option.
|
|
|
|
*/
|
2017-03-22 14:07:17 +08:00
|
|
|
static int
|
2014-03-26 19:47:29 +08:00
|
|
|
ip_printroute(netdissect_options *ndo,
|
2017-12-14 02:17:47 +08:00
|
|
|
const u_char *cp, u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
u_int ptr;
|
|
|
|
u_int len;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2004-03-24 09:26:56 +08:00
|
|
|
if (length < 3) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [bad length %u]", length);
|
2017-03-22 14:07:17 +08:00
|
|
|
return (0);
|
2004-03-24 09:26:56 +08:00
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
if ((length + 1) & 3)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [bad length %u]", length);
|
2017-12-04 01:18:58 +08:00
|
|
|
ND_TCHECK_1(cp + 2);
|
2017-12-10 00:15:55 +08:00
|
|
|
ptr = EXTRACT_U_1(cp + 2) - 1;
|
1999-10-08 07:47:09 +08:00
|
|
|
if (ptr < 3 || ((ptr + 1) & 3) || ptr > length + 1)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [bad ptr %u]", EXTRACT_U_1(cp + 2));
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
for (len = 3; len < length; len += 4) {
|
2017-11-25 05:48:55 +08:00
|
|
|
ND_TCHECK_4(cp + len);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", ipaddr_string(ndo, cp + len));
|
2014-03-26 19:47:29 +08:00
|
|
|
if (ptr > len)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(",");
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2017-03-22 14:07:17 +08:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
trunc:
|
|
|
|
return (-1);
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
|
2002-07-28 12:14:21 +08:00
|
|
|
/*
|
2004-06-25 09:20:08 +08:00
|
|
|
* If source-routing is present and valid, return the final destination.
|
2002-07-28 12:14:21 +08:00
|
|
|
* Otherwise, return IP destination.
|
|
|
|
*
|
|
|
|
* This is used for UDP and TCP pseudo-header in the checksum
|
|
|
|
* calculation.
|
|
|
|
*/
|
2014-04-23 15:20:40 +08:00
|
|
|
static uint32_t
|
2014-03-26 19:47:29 +08:00
|
|
|
ip_finddst(netdissect_options *ndo,
|
|
|
|
const struct ip *ip)
|
2002-07-28 12:14:21 +08:00
|
|
|
{
|
2018-01-12 03:52:30 +08:00
|
|
|
u_int length;
|
|
|
|
u_int len;
|
2002-07-28 12:14:21 +08:00
|
|
|
const u_char *cp;
|
|
|
|
|
|
|
|
cp = (const u_char *)(ip + 1);
|
2018-09-22 18:46:36 +08:00
|
|
|
length = IP_HL(ip) * 4;
|
2018-01-12 03:52:30 +08:00
|
|
|
if (length < sizeof(struct ip))
|
2018-03-10 03:57:55 +08:00
|
|
|
goto trunc;
|
2018-01-12 03:52:30 +08:00
|
|
|
length -= sizeof(struct ip);
|
2002-07-28 12:14:21 +08:00
|
|
|
|
2018-01-12 03:52:30 +08:00
|
|
|
for (; length != 0; cp += len, length -= len) {
|
2004-03-24 09:26:56 +08:00
|
|
|
int tt;
|
2002-07-28 12:14:21 +08:00
|
|
|
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(cp);
|
2017-12-09 16:56:29 +08:00
|
|
|
tt = EXTRACT_U_1(cp);
|
2004-06-25 09:20:08 +08:00
|
|
|
if (tt == IPOPT_EOL)
|
|
|
|
break;
|
|
|
|
else if (tt == IPOPT_NOP)
|
2002-07-28 12:14:21 +08:00
|
|
|
len = 1;
|
|
|
|
else {
|
2017-12-04 01:18:58 +08:00
|
|
|
ND_TCHECK_1(cp + 1);
|
2017-12-09 19:32:00 +08:00
|
|
|
len = EXTRACT_U_1(cp + 1);
|
2004-06-25 09:20:08 +08:00
|
|
|
if (len < 2)
|
|
|
|
break;
|
2002-07-28 12:14:21 +08:00
|
|
|
}
|
2018-01-12 03:52:30 +08:00
|
|
|
if (length < len)
|
|
|
|
goto trunc;
|
2017-12-11 19:46:51 +08:00
|
|
|
ND_TCHECK_LEN(cp, len);
|
2002-07-28 12:14:21 +08:00
|
|
|
switch (tt) {
|
|
|
|
|
|
|
|
case IPOPT_SSRR:
|
|
|
|
case IPOPT_LSRR:
|
2004-03-24 09:26:56 +08:00
|
|
|
if (len < 7)
|
2004-06-25 09:20:08 +08:00
|
|
|
break;
|
2017-12-20 17:07:48 +08:00
|
|
|
return (EXTRACT_IPV4_TO_NETWORK_ORDER(cp + len - 4));
|
2002-07-28 12:14:21 +08:00
|
|
|
}
|
|
|
|
}
|
2004-03-24 09:26:56 +08:00
|
|
|
trunc:
|
2017-12-20 17:07:48 +08:00
|
|
|
return (EXTRACT_IPV4_TO_NETWORK_ORDER(ip->ip_dst));
|
2002-07-28 12:14:21 +08:00
|
|
|
}
|
|
|
|
|
2011-06-17 16:09:16 +08:00
|
|
|
/*
|
|
|
|
* Compute a V4-style checksum by building a pseudoheader.
|
|
|
|
*/
|
|
|
|
int
|
2014-03-26 19:47:29 +08:00
|
|
|
nextproto4_cksum(netdissect_options *ndo,
|
2014-04-23 15:20:40 +08:00
|
|
|
const struct ip *ip, const uint8_t *data,
|
2014-03-26 19:47:29 +08:00
|
|
|
u_int len, u_int covlen, u_int next_proto)
|
2011-06-17 16:09:16 +08:00
|
|
|
{
|
|
|
|
struct phdr {
|
2014-04-23 15:20:40 +08:00
|
|
|
uint32_t src;
|
|
|
|
uint32_t dst;
|
2011-06-17 16:09:16 +08:00
|
|
|
u_char mbz;
|
|
|
|
u_char proto;
|
2014-04-23 15:20:40 +08:00
|
|
|
uint16_t len;
|
2011-06-17 16:09:16 +08:00
|
|
|
} ph;
|
|
|
|
struct cksum_vec vec[2];
|
|
|
|
|
|
|
|
/* pseudo-header.. */
|
2014-04-23 15:20:40 +08:00
|
|
|
ph.len = htons((uint16_t)len);
|
2011-06-17 16:09:16 +08:00
|
|
|
ph.mbz = 0;
|
|
|
|
ph.proto = next_proto;
|
2017-12-20 17:07:48 +08:00
|
|
|
ph.src = EXTRACT_IPV4_TO_NETWORK_ORDER(ip->ip_src);
|
2011-06-17 16:09:16 +08:00
|
|
|
if (IP_HL(ip) == 5)
|
2017-12-20 17:07:48 +08:00
|
|
|
ph.dst = EXTRACT_IPV4_TO_NETWORK_ORDER(ip->ip_dst);
|
2011-06-17 16:09:16 +08:00
|
|
|
else
|
2014-03-26 19:47:29 +08:00
|
|
|
ph.dst = ip_finddst(ndo, ip);
|
2011-06-17 16:09:16 +08:00
|
|
|
|
2014-04-23 15:20:40 +08:00
|
|
|
vec[0].ptr = (const uint8_t *)(void *)&ph;
|
2011-06-17 16:09:16 +08:00
|
|
|
vec[0].len = sizeof(ph);
|
|
|
|
vec[1].ptr = data;
|
2014-02-15 19:32:44 +08:00
|
|
|
vec[1].len = covlen;
|
2011-06-17 16:09:16 +08:00
|
|
|
return (in_cksum(vec, 2));
|
|
|
|
}
|
|
|
|
|
2017-03-25 09:42:09 +08:00
|
|
|
static int
|
2014-03-26 19:47:29 +08:00
|
|
|
ip_printts(netdissect_options *ndo,
|
2017-12-14 02:17:47 +08:00
|
|
|
const u_char *cp, u_int length)
|
1999-11-21 11:47:35 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
u_int ptr;
|
|
|
|
u_int len;
|
2018-01-12 03:52:30 +08:00
|
|
|
u_int hoplen;
|
Add a few more GCC warnings on GCC >= 2 for ".devel" builds.
From Neil T. Spring: fixes for many of those warnings:
addrtoname.c, configure.in: Linux needs netinet/ether.h for
ether_ntohost
print-*.c: change char *foo = "bar" to const char *foo = "bar"
to appease -Wwrite-strings; should affect no run-time behavior.
print-*.c: make some variables unsigned.
print-bgp.c: plen ('prefix len') is unsigned, no reason to
validate by comparing to zero.
print-cnfp.c, print-rx.c: use intoa, provided by addrtoname,
instead of inet_ntoa.
print-domain.c: unsigned int l; (l=foo()) < 0 is guaranteed to
be false, so check for (u_int)-1, which represents failure,
explicitly.
print-isakmp.c: complete initialization of attrmap objects.
print-lwres.c: "if(x); print foo;" seemed much more likely to be
intended to be "if(x) { print foo; }".
print-smb.c: complete initialization of some structures.
In addition, add some fixes for the signed vs. unsigned comparison
warnings:
extract.h: cast the result of the byte-extraction-and-combining,
as, at least for the 16-bit version, C's integral promotions
will turn "u_int16_t" into "int" if there are other "int"s
nearby.
print-*.c: make some more variables unsigned, or add casts to an
unsigned type of signed values known not to be negative, or add
casts to "int" of unsigned values known to fit in an "int", and
make other changes needed to handle the aforementioned variables
now being unsigned.
print-isakmp.c: clean up the handling of error/status indicators
in notify messages.
print-ppp.c: get rid of a check that an unsigned quantity is >=
0.
print-radius.c: clean up some of the bounds checking.
print-smb.c: extract the word count into a "u_int" to avoid the
aforementioned problems with C's integral promotions.
print-snmp.c: change a check that an unsigned variable is >= 0
to a check that it's != 0.
Also, fix some formats to use "%u" rather than "%d" for unsigned
quantities.
2002-09-05 08:00:07 +08:00
|
|
|
const char *type;
|
1999-11-21 11:47:35 +08:00
|
|
|
|
2004-03-24 09:26:56 +08:00
|
|
|
if (length < 4) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[bad length %u]", length);
|
2017-03-25 09:42:09 +08:00
|
|
|
return (0);
|
2004-03-24 09:26:56 +08:00
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" TS{");
|
2017-12-10 00:15:55 +08:00
|
|
|
ND_TCHECK_1(cp + 3);
|
|
|
|
hoplen = ((EXTRACT_U_1(cp + 3) & 0xF) != IPOPT_TS_TSONLY) ? 8 : 4;
|
1999-11-21 11:47:35 +08:00
|
|
|
if ((length - 4) & (hoplen-1))
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[bad length %u]", length);
|
2017-12-04 01:18:58 +08:00
|
|
|
ND_TCHECK_1(cp + 2);
|
2017-12-10 00:15:55 +08:00
|
|
|
ptr = EXTRACT_U_1(cp + 2) - 1;
|
2004-03-24 09:26:56 +08:00
|
|
|
len = 0;
|
1999-11-21 11:47:35 +08:00
|
|
|
if (ptr < 4 || ((ptr - 4) & (hoplen-1)) || ptr > length + 1)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[bad ptr %u]", EXTRACT_U_1(cp + 2));
|
2017-12-04 01:18:58 +08:00
|
|
|
ND_TCHECK_1(cp + 3);
|
2017-12-03 20:53:38 +08:00
|
|
|
switch (EXTRACT_U_1(cp + 3)&0xF) {
|
1999-11-21 11:47:35 +08:00
|
|
|
case IPOPT_TS_TSONLY:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("TSONLY");
|
1999-11-21 11:47:35 +08:00
|
|
|
break;
|
|
|
|
case IPOPT_TS_TSANDADDR:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("TS+ADDR");
|
1999-11-21 11:47:35 +08:00
|
|
|
break;
|
1999-11-22 00:26:59 +08:00
|
|
|
/*
|
|
|
|
* prespecified should really be 3, but some ones might send 2
|
|
|
|
* instead, and the IPOPT_TS_PRESPEC constant can apparently
|
|
|
|
* have both values, so we have to hard-code it here.
|
|
|
|
*/
|
|
|
|
|
1999-11-21 11:47:35 +08:00
|
|
|
case 2:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("PRESPEC2.0");
|
1999-11-21 11:47:35 +08:00
|
|
|
break;
|
1999-11-22 00:26:59 +08:00
|
|
|
case 3: /* IPOPT_TS_PRESPEC */
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("PRESPEC");
|
1999-11-21 11:47:35 +08:00
|
|
|
break;
|
2002-06-12 01:08:37 +08:00
|
|
|
default:
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("[bad ts type %u]", EXTRACT_U_1(cp + 3)&0xF);
|
1999-11-21 11:47:35 +08:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
type = " ";
|
|
|
|
for (len = 4; len < length; len += hoplen) {
|
|
|
|
if (ptr == len)
|
|
|
|
type = " ^ ";
|
2017-12-11 19:46:51 +08:00
|
|
|
ND_TCHECK_LEN(cp + len, hoplen);
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("%s%u@%s", type, EXTRACT_BE_U_4(cp + len + hoplen - 4),
|
2018-01-07 18:47:30 +08:00
|
|
|
hoplen!=8 ? "" : ipaddr_string(ndo, cp + len));
|
1999-11-21 11:47:35 +08:00
|
|
|
type = " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%s", ptr == len ? " ^ " : "");
|
1999-11-21 11:47:35 +08:00
|
|
|
|
2017-12-04 04:12:03 +08:00
|
|
|
if (EXTRACT_U_1(cp + 3) >> 4)
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" [%u hops not recorded]} ", EXTRACT_U_1(cp + 3)>>4);
|
1999-11-21 11:47:35 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("}");
|
2017-03-25 09:42:09 +08:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
trunc:
|
|
|
|
return (-1);
|
1999-11-21 11:47:35 +08:00
|
|
|
}
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* print IP options.
|
2018-06-04 23:06:45 +08:00
|
|
|
If truncated return -1, else 0.
|
1999-10-08 07:47:09 +08:00
|
|
|
*/
|
2018-06-04 23:06:45 +08:00
|
|
|
static int
|
2014-03-26 19:47:29 +08:00
|
|
|
ip_optprint(netdissect_options *ndo,
|
2017-12-14 02:17:47 +08:00
|
|
|
const u_char *cp, u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
u_int option_len;
|
2006-02-19 13:00:19 +08:00
|
|
|
const char *sep = "";
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2004-09-28 05:13:09 +08:00
|
|
|
for (; length > 0; cp += option_len, length -= option_len) {
|
|
|
|
u_int option_code;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%s", sep);
|
2006-02-19 13:00:19 +08:00
|
|
|
sep = ",";
|
|
|
|
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(cp);
|
2017-12-09 16:56:29 +08:00
|
|
|
option_code = EXTRACT_U_1(cp);
|
2004-09-28 05:13:09 +08:00
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%s",
|
|
|
|
tok2str(ip_option_values,"unknown %u",option_code));
|
2006-02-19 13:00:19 +08:00
|
|
|
|
2004-09-28 05:13:09 +08:00
|
|
|
if (option_code == IPOPT_NOP ||
|
|
|
|
option_code == IPOPT_EOL)
|
|
|
|
option_len = 1;
|
|
|
|
|
2000-05-10 13:11:27 +08:00
|
|
|
else {
|
2017-12-04 01:18:58 +08:00
|
|
|
ND_TCHECK_1(cp + 1);
|
2017-12-09 19:32:00 +08:00
|
|
|
option_len = EXTRACT_U_1(cp + 1);
|
2006-02-19 13:00:19 +08:00
|
|
|
if (option_len < 2) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [bad length %u]", option_len);
|
2018-06-04 23:06:45 +08:00
|
|
|
return 0;
|
2006-02-19 13:00:19 +08:00
|
|
|
}
|
2000-05-10 13:11:27 +08:00
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2006-02-19 13:00:19 +08:00
|
|
|
if (option_len > length) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [bad length %u]", option_len);
|
2018-06-04 23:06:45 +08:00
|
|
|
return 0;
|
2006-02-19 13:00:19 +08:00
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2017-12-11 19:46:51 +08:00
|
|
|
ND_TCHECK_LEN(cp, option_len);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2004-09-28 05:13:09 +08:00
|
|
|
switch (option_code) {
|
|
|
|
case IPOPT_EOL:
|
2018-06-04 23:06:45 +08:00
|
|
|
return 0;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2004-09-28 05:13:09 +08:00
|
|
|
case IPOPT_TS:
|
2017-03-25 09:42:09 +08:00
|
|
|
if (ip_printts(ndo, cp, option_len) == -1)
|
|
|
|
goto trunc;
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
2004-09-28 05:13:09 +08:00
|
|
|
case IPOPT_RR: /* fall through */
|
1999-10-08 07:47:09 +08:00
|
|
|
case IPOPT_SSRR:
|
|
|
|
case IPOPT_LSRR:
|
2017-03-22 14:07:17 +08:00
|
|
|
if (ip_printroute(ndo, cp, option_len) == -1)
|
|
|
|
goto trunc;
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
1999-11-21 11:47:35 +08:00
|
|
|
case IPOPT_RA:
|
2006-02-19 13:00:19 +08:00
|
|
|
if (option_len < 4) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [bad length %u]", option_len);
|
2006-02-19 13:00:19 +08:00
|
|
|
break;
|
|
|
|
}
|
2017-12-04 01:18:58 +08:00
|
|
|
ND_TCHECK_1(cp + 3);
|
2017-11-23 06:54:09 +08:00
|
|
|
if (EXTRACT_BE_U_2(cp + 2) != 0)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" value %u", EXTRACT_BE_U_2(cp + 2));
|
2001-01-28 16:18:27 +08:00
|
|
|
break;
|
1999-11-21 11:47:35 +08:00
|
|
|
|
2004-09-28 05:13:09 +08:00
|
|
|
case IPOPT_NOP: /* nothing to print - fall through */
|
|
|
|
case IPOPT_SECURITY:
|
1999-10-08 07:47:09 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-06-04 23:06:45 +08:00
|
|
|
return 0;
|
2004-03-24 09:26:56 +08:00
|
|
|
|
|
|
|
trunc:
|
2018-06-04 23:06:45 +08:00
|
|
|
return -1;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
|
2003-04-24 20:51:35 +08:00
|
|
|
#define IP_RES 0x8000
|
|
|
|
|
2013-09-25 00:46:24 +08:00
|
|
|
static const struct tok ip_frag_values[] = {
|
2003-04-24 20:51:35 +08:00
|
|
|
{ IP_MF, "+" },
|
|
|
|
{ IP_DF, "DF" },
|
|
|
|
{ IP_RES, "rsvd" }, /* The RFC3514 evil ;-) bit */
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
struct ip_print_demux_state {
|
|
|
|
const struct ip *ip;
|
|
|
|
const u_char *cp;
|
2005-04-07 08:28:17 +08:00
|
|
|
u_int len, off;
|
2005-04-07 05:32:38 +08:00
|
|
|
u_char nh;
|
|
|
|
int advance;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
ip_print_demux(netdissect_options *ndo,
|
|
|
|
struct ip_print_demux_state *ipds)
|
|
|
|
{
|
2017-08-27 21:15:17 +08:00
|
|
|
const char *p_name;
|
2005-04-07 05:32:38 +08:00
|
|
|
|
|
|
|
again:
|
|
|
|
switch (ipds->nh) {
|
|
|
|
|
|
|
|
case IPPROTO_AH:
|
2017-12-16 02:39:00 +08:00
|
|
|
if (!ND_TTEST_1(ipds->cp)) {
|
2018-09-14 03:42:20 +08:00
|
|
|
ndo->ndo_protocol = "ah";
|
|
|
|
nd_print_trunc(ndo);
|
2015-07-04 03:26:18 +08:00
|
|
|
break;
|
|
|
|
}
|
2017-12-09 16:56:29 +08:00
|
|
|
ipds->nh = EXTRACT_U_1(ipds->cp);
|
2014-03-26 19:47:29 +08:00
|
|
|
ipds->advance = ah_print(ndo, ipds->cp);
|
2005-04-07 05:32:38 +08:00
|
|
|
if (ipds->advance <= 0)
|
|
|
|
break;
|
|
|
|
ipds->cp += ipds->advance;
|
|
|
|
ipds->len -= ipds->advance;
|
|
|
|
goto again;
|
|
|
|
|
|
|
|
case IPPROTO_ESP:
|
|
|
|
{
|
2017-11-23 02:15:49 +08:00
|
|
|
u_int enh, padlen;
|
2005-04-07 05:32:38 +08:00
|
|
|
ipds->advance = esp_print(ndo, ipds->cp, ipds->len,
|
|
|
|
(const u_char *)ipds->ip,
|
|
|
|
&enh, &padlen);
|
|
|
|
if (ipds->advance <= 0)
|
|
|
|
break;
|
|
|
|
ipds->cp += ipds->advance;
|
|
|
|
ipds->len -= ipds->advance + padlen;
|
|
|
|
ipds->nh = enh & 0xff;
|
|
|
|
goto again;
|
|
|
|
}
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_IPCOMP:
|
|
|
|
{
|
2015-07-05 09:45:11 +08:00
|
|
|
ipcomp_print(ndo, ipds->cp);
|
|
|
|
/*
|
|
|
|
* Either this has decompressed the payload and
|
|
|
|
* printed it, in which case there's nothing more
|
|
|
|
* to do, or it hasn't, in which case there's
|
|
|
|
* nothing more to do.
|
|
|
|
*/
|
|
|
|
break;
|
2005-04-07 05:32:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
case IPPROTO_SCTP:
|
2014-03-26 19:47:29 +08:00
|
|
|
sctp_print(ndo, ipds->cp, (const u_char *)ipds->ip, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
2005-09-20 14:01:20 +08:00
|
|
|
|
|
|
|
case IPPROTO_DCCP:
|
2014-03-15 00:05:27 +08:00
|
|
|
dccp_print(ndo, ipds->cp, (const u_char *)ipds->ip, ipds->len);
|
2005-09-20 14:01:20 +08:00
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_TCP:
|
2005-11-13 19:51:32 +08:00
|
|
|
/* pass on the MF bit plus the offset to detect fragments */
|
2014-04-02 16:59:56 +08:00
|
|
|
tcp_print(ndo, ipds->cp, ipds->len, (const u_char *)ipds->ip,
|
2005-11-13 19:51:32 +08:00
|
|
|
ipds->off & (IP_MF|IP_OFFMASK));
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_UDP:
|
2005-11-13 19:51:32 +08:00
|
|
|
/* pass on the MF bit plus the offset to detect fragments */
|
2014-03-16 03:25:06 +08:00
|
|
|
udp_print(ndo, ipds->cp, ipds->len, (const u_char *)ipds->ip,
|
2005-11-13 19:51:32 +08:00
|
|
|
ipds->off & (IP_MF|IP_OFFMASK));
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_ICMP:
|
|
|
|
/* pass on the MF bit plus the offset to detect fragments */
|
2014-03-16 03:25:06 +08:00
|
|
|
icmp_print(ndo, ipds->cp, ipds->len, (const u_char *)ipds->ip,
|
2005-11-13 19:51:32 +08:00
|
|
|
ipds->off & (IP_MF|IP_OFFMASK));
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_PIGP:
|
|
|
|
/*
|
|
|
|
* XXX - the current IANA protocol number assignments
|
|
|
|
* page lists 9 as "any private interior gateway
|
|
|
|
* (used by Cisco for their IGRP)" and 88 as
|
|
|
|
* "EIGRP" from Cisco.
|
|
|
|
*
|
|
|
|
* Recent BSD <netinet/in.h> headers define
|
|
|
|
* IP_PROTO_PIGP as 9 and IP_PROTO_IGRP as 88.
|
|
|
|
* We define IP_PROTO_PIGP as 9 and
|
|
|
|
* IP_PROTO_EIGRP as 88; those names better
|
|
|
|
* match was the current protocol number
|
|
|
|
* assignments say.
|
|
|
|
*/
|
2014-03-04 17:55:24 +08:00
|
|
|
igrp_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_EIGRP:
|
2014-03-16 03:25:06 +08:00
|
|
|
eigrp_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_ND:
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" nd %u", ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_EGP:
|
2014-03-21 20:48:24 +08:00
|
|
|
egp_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_OSPF:
|
2014-04-02 16:59:56 +08:00
|
|
|
ospf_print(ndo, ipds->cp, ipds->len, (const u_char *)ipds->ip);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_IGMP:
|
2014-03-19 17:57:56 +08:00
|
|
|
igmp_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_IPV4:
|
|
|
|
/* DVMRP multicast tunnel (ip-in-ip encapsulation) */
|
2010-11-08 04:50:16 +08:00
|
|
|
ip_print(ndo, ipds->cp, ipds->len);
|
2014-03-26 19:47:29 +08:00
|
|
|
if (! ndo->ndo_vflag) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" (ipip-proto-4)");
|
2005-04-07 05:32:38 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
case IPPROTO_IPV6:
|
|
|
|
/* ip6-in-ip encapsulation */
|
2010-11-08 04:50:16 +08:00
|
|
|
ip6_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_RSVP:
|
2014-04-02 20:39:18 +08:00
|
|
|
rsvp_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_GRE:
|
|
|
|
/* do it */
|
2014-03-11 20:08:24 +08:00
|
|
|
gre_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_MOBILE:
|
2014-03-07 00:41:44 +08:00
|
|
|
mobile_print(ndo, ipds->cp, ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_PIM:
|
2015-05-03 01:15:42 +08:00
|
|
|
pim_print(ndo, ipds->cp, ipds->len, (const u_char *)ipds->ip);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IPPROTO_VRRP:
|
2014-03-26 19:47:29 +08:00
|
|
|
if (ndo->ndo_packettype == PT_CARP) {
|
|
|
|
if (ndo->ndo_vflag)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("carp %s > %s: ",
|
2018-01-31 16:43:45 +08:00
|
|
|
ipaddr_string(ndo, ipds->ip->ip_src),
|
|
|
|
ipaddr_string(ndo, ipds->ip->ip_dst));
|
2017-12-11 08:23:34 +08:00
|
|
|
carp_print(ndo, ipds->cp, ipds->len,
|
|
|
|
EXTRACT_U_1(ipds->ip->ip_ttl));
|
2011-11-24 03:53:13 +08:00
|
|
|
} else {
|
2014-03-26 19:47:29 +08:00
|
|
|
if (ndo->ndo_vflag)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("vrrp %s > %s: ",
|
2018-01-31 16:43:45 +08:00
|
|
|
ipaddr_string(ndo, ipds->ip->ip_src),
|
|
|
|
ipaddr_string(ndo, ipds->ip->ip_dst));
|
2014-03-23 14:28:40 +08:00
|
|
|
vrrp_print(ndo, ipds->cp, ipds->len,
|
2017-12-11 08:23:34 +08:00
|
|
|
(const u_char *)ipds->ip,
|
|
|
|
EXTRACT_U_1(ipds->ip->ip_ttl));
|
2011-11-24 03:53:13 +08:00
|
|
|
}
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
|
2005-05-21 05:02:29 +08:00
|
|
|
case IPPROTO_PGM:
|
2014-03-19 17:57:56 +08:00
|
|
|
pgm_print(ndo, ipds->cp, ipds->len, (const u_char *)ipds->ip);
|
2005-05-21 05:02:29 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
default:
|
2017-08-27 21:15:17 +08:00
|
|
|
if (ndo->ndo_nflag==0 && (p_name = netdb_protoname(ipds->nh)) != NULL)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", p_name);
|
2005-04-07 05:32:38 +08:00
|
|
|
else
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" ip-proto-%u", ipds->nh);
|
|
|
|
ND_PRINT(" %u", ipds->len);
|
2005-04-07 05:32:38 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-03-29 22:05:15 +08:00
|
|
|
|
2005-04-07 08:28:17 +08:00
|
|
|
void
|
2018-02-22 21:19:42 +08:00
|
|
|
ip_inner_print(netdissect_options *ndo,
|
2005-04-07 08:28:17 +08:00
|
|
|
const u_char *bp,
|
|
|
|
u_int length, u_int nh,
|
|
|
|
const u_char *bp2)
|
|
|
|
{
|
|
|
|
struct ip_print_demux_state ipd;
|
|
|
|
|
|
|
|
ipd.ip = (const struct ip *)bp2;
|
|
|
|
ipd.cp = bp;
|
|
|
|
ipd.len = length;
|
|
|
|
ipd.off = 0;
|
|
|
|
ipd.nh = nh;
|
|
|
|
ipd.advance = 0;
|
|
|
|
|
|
|
|
ip_print_demux(ndo, &ipd);
|
|
|
|
}
|
|
|
|
|
2005-04-07 05:32:38 +08:00
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* print an IP datagram.
|
|
|
|
*/
|
|
|
|
void
|
2005-04-07 05:32:38 +08:00
|
|
|
ip_print(netdissect_options *ndo,
|
|
|
|
const u_char *bp,
|
|
|
|
u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2005-04-07 05:32:38 +08:00
|
|
|
struct ip_print_demux_state ipd;
|
|
|
|
struct ip_print_demux_state *ipds=&ipd;
|
2003-11-19 08:17:32 +08:00
|
|
|
const u_char *ipend;
|
2005-04-07 08:28:17 +08:00
|
|
|
u_int hlen;
|
2011-06-14 05:08:51 +08:00
|
|
|
struct cksum_vec vec[1];
|
2017-12-11 08:23:34 +08:00
|
|
|
uint8_t ip_tos, ip_ttl, ip_proto;
|
2014-04-23 15:20:40 +08:00
|
|
|
uint16_t sum, ip_sum;
|
2017-08-27 21:15:17 +08:00
|
|
|
const char *p_name;
|
2018-06-04 23:06:45 +08:00
|
|
|
int truncated = 0;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "ip";
|
2005-04-07 05:32:38 +08:00
|
|
|
ipds->ip = (const struct ip *)bp;
|
2018-01-08 06:30:37 +08:00
|
|
|
ND_TCHECK_1(ipds->ip->ip_vhl);
|
2015-07-04 10:08:59 +08:00
|
|
|
if (IP_V(ipds->ip) != 4) { /* print version and fail if != 4 */
|
2005-04-07 05:32:38 +08:00
|
|
|
if (IP_V(ipds->ip) == 6)
|
2018-01-08 06:38:16 +08:00
|
|
|
ND_PRINT("IP6, wrong link-layer encapsulation");
|
2014-12-19 17:56:04 +08:00
|
|
|
else
|
2018-01-08 06:38:16 +08:00
|
|
|
ND_PRINT("IP%u", IP_V(ipds->ip));
|
2018-09-11 18:27:55 +08:00
|
|
|
nd_print_invalid(ndo);
|
2015-07-04 10:08:59 +08:00
|
|
|
return;
|
2003-05-26 00:40:48 +08:00
|
|
|
}
|
2015-07-04 10:08:59 +08:00
|
|
|
if (!ndo->ndo_eflag)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("IP ");
|
2003-05-26 00:40:48 +08:00
|
|
|
|
2018-01-04 05:23:30 +08:00
|
|
|
ND_TCHECK_SIZE(ipds->ip);
|
1999-10-08 07:47:09 +08:00
|
|
|
if (length < sizeof (struct ip)) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("truncated-ip %u", length);
|
1999-10-08 07:47:09 +08:00
|
|
|
return;
|
|
|
|
}
|
2005-04-07 08:28:17 +08:00
|
|
|
hlen = IP_HL(ipds->ip) * 4;
|
|
|
|
if (hlen < sizeof (struct ip)) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("bad-hlen %u", hlen);
|
2000-01-25 09:03:23 +08:00
|
|
|
return;
|
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-01-09 01:40:03 +08:00
|
|
|
ipds->len = EXTRACT_BE_U_2(ipds->ip->ip_len);
|
2005-04-07 05:32:38 +08:00
|
|
|
if (length < ipds->len)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("truncated-ip - %u bytes missing! ",
|
|
|
|
ipds->len - length);
|
2005-04-07 08:28:17 +08:00
|
|
|
if (ipds->len < hlen) {
|
2005-01-21 16:02:06 +08:00
|
|
|
#ifdef GUESS_TSO
|
2005-04-07 05:32:38 +08:00
|
|
|
if (ipds->len) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("bad-len %u", ipds->len);
|
2005-01-21 16:02:06 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we guess that it is a TSO send */
|
2005-04-07 05:32:38 +08:00
|
|
|
ipds->len = length;
|
2005-01-21 16:02:06 +08:00
|
|
|
}
|
|
|
|
#else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("bad-len %u", ipds->len);
|
2005-01-21 16:02:06 +08:00
|
|
|
return;
|
|
|
|
#endif /* GUESS_TSO */
|
2003-11-19 08:17:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cut off the snapshot length to the end of the IP payload.
|
|
|
|
*/
|
2005-04-07 05:32:38 +08:00
|
|
|
ipend = bp + ipds->len;
|
2010-10-08 02:36:49 +08:00
|
|
|
if (ipend < ndo->ndo_snapend)
|
|
|
|
ndo->ndo_snapend = ipend;
|
2003-11-19 08:17:32 +08:00
|
|
|
|
2005-04-07 08:28:17 +08:00
|
|
|
ipds->len -= hlen;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-01-09 01:40:03 +08:00
|
|
|
ipds->off = EXTRACT_BE_U_2(ipds->ip->ip_off);
|
2002-07-21 07:37:40 +08:00
|
|
|
|
2017-12-11 08:23:34 +08:00
|
|
|
ip_proto = EXTRACT_U_1(ipds->ip->ip_p);
|
|
|
|
|
2014-03-26 19:47:29 +08:00
|
|
|
if (ndo->ndo_vflag) {
|
2017-12-11 08:23:34 +08:00
|
|
|
ip_tos = EXTRACT_U_1(ipds->ip->ip_tos);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(tos 0x%x", ip_tos);
|
2002-07-15 03:46:51 +08:00
|
|
|
/* ECN bits */
|
2017-12-11 08:23:34 +08:00
|
|
|
switch (ip_tos & 0x03) {
|
2016-12-11 03:04:05 +08:00
|
|
|
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
2016-12-10 18:45:37 +08:00
|
|
|
case 1:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(",ECT(1)");
|
2016-12-10 18:45:37 +08:00
|
|
|
break;
|
2016-12-11 03:04:05 +08:00
|
|
|
|
2016-12-10 18:45:37 +08:00
|
|
|
case 2:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(",ECT(0)");
|
2016-12-10 18:45:37 +08:00
|
|
|
break;
|
2016-12-11 03:04:05 +08:00
|
|
|
|
2016-12-10 18:45:37 +08:00
|
|
|
case 3:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(",CE");
|
2016-12-11 03:04:05 +08:00
|
|
|
break;
|
2002-07-14 22:14:50 +08:00
|
|
|
}
|
2002-07-15 03:46:51 +08:00
|
|
|
|
2017-12-11 08:23:34 +08:00
|
|
|
ip_ttl = EXTRACT_U_1(ipds->ip->ip_ttl);
|
|
|
|
if (ip_ttl >= 1)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", ttl %u", ip_ttl);
|
2002-07-14 22:14:50 +08:00
|
|
|
|
2003-04-24 20:51:35 +08:00
|
|
|
/*
|
|
|
|
* for the firewall guys, print id, offset.
|
|
|
|
* On all but the last stick a "+" in the flags portion.
|
|
|
|
* For unfragmented datagrams, note the don't fragment flag.
|
|
|
|
*/
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", id %u, offset %u, flags [%s], proto %s (%u)",
|
2018-01-09 01:40:03 +08:00
|
|
|
EXTRACT_BE_U_2(ipds->ip->ip_id),
|
2005-04-07 05:32:38 +08:00
|
|
|
(ipds->off & 0x1fff) * 8,
|
2007-01-17 22:07:36 +08:00
|
|
|
bittok2str(ip_frag_values, "none", ipds->off&0xe000),
|
2017-12-11 08:23:34 +08:00
|
|
|
tok2str(ipproto_values, "unknown", ip_proto),
|
2018-01-07 18:47:30 +08:00
|
|
|
ip_proto);
|
2002-12-29 01:59:09 +08:00
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", length %u", EXTRACT_BE_U_2(ipds->ip->ip_len));
|
2002-12-29 01:59:09 +08:00
|
|
|
|
2005-04-07 08:28:17 +08:00
|
|
|
if ((hlen - sizeof(struct ip)) > 0) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", options (");
|
2018-06-04 23:06:45 +08:00
|
|
|
if (ip_optprint(ndo, (const u_char *)(ipds->ip + 1),
|
|
|
|
hlen - sizeof(struct ip)) == -1) {
|
|
|
|
ND_PRINT(" [truncated-option]");
|
|
|
|
truncated = 1;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(")");
|
2002-12-29 01:59:09 +08:00
|
|
|
}
|
2003-04-24 20:51:35 +08:00
|
|
|
|
2015-04-27 08:24:42 +08:00
|
|
|
if (!ndo->ndo_Kflag && (const u_char *)ipds->ip + hlen <= ndo->ndo_snapend) {
|
|
|
|
vec[0].ptr = (const uint8_t *)(const void *)ipds->ip;
|
2011-06-14 05:08:51 +08:00
|
|
|
vec[0].len = hlen;
|
|
|
|
sum = in_cksum(vec, 1);
|
2003-04-24 20:51:35 +08:00
|
|
|
if (sum != 0) {
|
2017-12-11 08:23:34 +08:00
|
|
|
ip_sum = EXTRACT_BE_U_2(ipds->ip->ip_sum);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", bad cksum %x (->%x)!", ip_sum,
|
|
|
|
in_cksum_shouldbe(ip_sum, sum));
|
2003-04-24 20:51:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(")\n ");
|
2018-06-04 23:06:45 +08:00
|
|
|
if (truncated) {
|
|
|
|
ND_PRINT("%s > %s: ",
|
|
|
|
ipaddr_string(ndo, ipds->ip->ip_src),
|
|
|
|
ipaddr_string(ndo, ipds->ip->ip_dst));
|
|
|
|
goto trunc;
|
|
|
|
}
|
2002-07-14 22:14:50 +08:00
|
|
|
}
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* If this is fragment zero, hand it to the next higher
|
|
|
|
* level protocol.
|
|
|
|
*/
|
2005-04-07 05:32:38 +08:00
|
|
|
if ((ipds->off & 0x1fff) == 0) {
|
2005-04-07 08:28:17 +08:00
|
|
|
ipds->cp = (const u_char *)ipds->ip + hlen;
|
2017-12-11 08:23:34 +08:00
|
|
|
ipds->nh = EXTRACT_U_1(ipds->ip->ip_p);
|
2005-04-07 05:32:38 +08:00
|
|
|
|
|
|
|
if (ipds->nh != IPPROTO_TCP && ipds->nh != IPPROTO_UDP &&
|
2005-09-20 14:01:20 +08:00
|
|
|
ipds->nh != IPPROTO_SCTP && ipds->nh != IPPROTO_DCCP) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%s > %s: ",
|
2018-01-31 16:43:45 +08:00
|
|
|
ipaddr_string(ndo, ipds->ip->ip_src),
|
|
|
|
ipaddr_string(ndo, ipds->ip->ip_dst));
|
1999-10-18 06:18:00 +08:00
|
|
|
}
|
2005-04-07 05:32:38 +08:00
|
|
|
ip_print_demux(ndo, ipds);
|
2003-04-24 20:51:35 +08:00
|
|
|
} else {
|
2016-12-10 11:56:32 +08:00
|
|
|
/*
|
|
|
|
* Ultra quiet now means that all this stuff should be
|
|
|
|
* suppressed.
|
|
|
|
*/
|
|
|
|
if (ndo->ndo_qflag > 1)
|
|
|
|
return;
|
2003-04-24 20:51:35 +08:00
|
|
|
|
2016-12-10 11:56:32 +08:00
|
|
|
/*
|
|
|
|
* This isn't the first frag, so we're missing the
|
|
|
|
* next level protocol header. print the ip addr
|
|
|
|
* and the protocol.
|
|
|
|
*/
|
2018-01-31 16:43:45 +08:00
|
|
|
ND_PRINT("%s > %s:", ipaddr_string(ndo, ipds->ip->ip_src),
|
|
|
|
ipaddr_string(ndo, ipds->ip->ip_dst));
|
2017-12-11 08:23:34 +08:00
|
|
|
if (!ndo->ndo_nflag && (p_name = netdb_protoname(ip_proto)) != NULL)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", p_name);
|
2016-12-10 11:56:32 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ip-proto-%u", ip_proto);
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2014-12-19 06:43:29 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
2014-12-19 06:43:29 +08:00
|
|
|
return;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2000-07-11 09:22:38 +08:00
|
|
|
|
|
|
|
void
|
2017-12-14 02:17:47 +08:00
|
|
|
ipN_print(netdissect_options *ndo, const u_char *bp, u_int length)
|
2000-07-11 09:22:38 +08:00
|
|
|
{
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "ipN";
|
2015-07-04 02:19:17 +08:00
|
|
|
if (length < 1) {
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("truncated-ip %u", length);
|
2000-07-11 09:22:38 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-07-04 02:19:17 +08:00
|
|
|
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(bp);
|
2017-12-09 17:17:18 +08:00
|
|
|
switch (EXTRACT_U_1(bp) & 0xF0) {
|
2015-07-04 02:19:17 +08:00
|
|
|
case 0x40:
|
2018-05-10 23:40:20 +08:00
|
|
|
ip_print(ndo, bp, length);
|
2015-07-04 02:19:17 +08:00
|
|
|
break;
|
|
|
|
case 0x60:
|
2018-05-10 23:40:20 +08:00
|
|
|
ip6_print(ndo, bp, length);
|
2015-07-04 02:19:17 +08:00
|
|
|
break;
|
2000-07-11 09:22:38 +08:00
|
|
|
default:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("unknown ip %u", (EXTRACT_U_1(bp) & 0xF0) >> 4);
|
2015-07-04 02:19:17 +08:00
|
|
|
break;
|
2000-07-11 09:22:38 +08:00
|
|
|
}
|
2015-07-04 02:19:17 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
2015-07-04 02:19:17 +08:00
|
|
|
return;
|
2000-07-11 09:22:38 +08:00
|
|
|
}
|