2000-01-30 00:45:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
2004-03-31 09:17:26 +00:00
|
|
|
*
|
2000-01-30 00:45:58 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
2004-03-31 09:17:26 +00:00
|
|
|
*
|
2000-01-30 00:45:58 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2017-01-31 19:17:06 +00:00
|
|
|
/* \summary: IPv6 header option printer */
|
|
|
|
|
2000-01-30 00:45:58 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-01-31 19:17:06 +00:00
|
|
|
#include <netdissect-stdinc.h>
|
2000-01-30 00:45:58 +00:00
|
|
|
|
2001-04-03 07:45:48 +00:00
|
|
|
#include "ip6.h"
|
|
|
|
|
2017-01-31 19:17:06 +00:00
|
|
|
#include "netdissect.h"
|
2000-01-30 00:45:58 +00:00
|
|
|
#include "addrtoname.h"
|
2004-03-31 09:17:26 +00:00
|
|
|
#include "extract.h"
|
2000-01-30 00:45:58 +00:00
|
|
|
|
2001-04-03 07:45:48 +00:00
|
|
|
static void
|
2015-01-06 19:03:11 +00:00
|
|
|
ip6_sopt_print(netdissect_options *ndo, const u_char *bp, int len)
|
2001-04-03 07:45:48 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int optlen;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i += optlen) {
|
2002-06-21 00:43:23 +00:00
|
|
|
if (bp[i] == IP6OPT_PAD1)
|
|
|
|
optlen = 1;
|
|
|
|
else {
|
|
|
|
if (i + 1 < len)
|
|
|
|
optlen = bp[i + 1] + 2;
|
|
|
|
else
|
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (i + optlen > len)
|
|
|
|
goto trunc;
|
|
|
|
|
2001-04-03 07:45:48 +00:00
|
|
|
switch (bp[i]) {
|
|
|
|
case IP6OPT_PAD1:
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, ", pad1"));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
|
|
|
case IP6OPT_PADN:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, ", padn: trunc"));
|
2001-04-03 07:45:48 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, ", padn"));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, ", sopt_type %d: trunc)", bp[i]));
|
2001-04-03 07:45:48 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, ", sopt_type 0x%02x: len=%d", bp[i], bp[i + 1]));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "[trunc] "));
|
2001-04-03 07:45:48 +00:00
|
|
|
}
|
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
static void
|
|
|
|
ip6_opt_print(netdissect_options *ndo, const u_char *bp, int len)
|
2000-01-30 00:45:58 +00:00
|
|
|
{
|
|
|
|
int i;
|
2004-03-31 09:17:26 +00:00
|
|
|
int optlen = 0;
|
2000-01-30 00:45:58 +00:00
|
|
|
|
2012-10-04 22:40:22 +00:00
|
|
|
if (len == 0)
|
|
|
|
return;
|
2000-01-30 00:45:58 +00:00
|
|
|
for (i = 0; i < len; i += optlen) {
|
2002-06-21 00:43:23 +00:00
|
|
|
if (bp[i] == IP6OPT_PAD1)
|
|
|
|
optlen = 1;
|
|
|
|
else {
|
|
|
|
if (i + 1 < len)
|
|
|
|
optlen = bp[i + 1] + 2;
|
|
|
|
else
|
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (i + optlen > len)
|
|
|
|
goto trunc;
|
|
|
|
|
2000-01-30 00:45:58 +00:00
|
|
|
switch (bp[i]) {
|
|
|
|
case IP6OPT_PAD1:
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(pad1)"));
|
2000-01-30 00:45:58 +00:00
|
|
|
break;
|
|
|
|
case IP6OPT_PADN:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(padn: trunc)"));
|
2000-01-30 00:45:58 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(padn)"));
|
2000-01-30 00:45:58 +00:00
|
|
|
break;
|
2001-04-03 07:45:48 +00:00
|
|
|
case IP6OPT_ROUTER_ALERT:
|
2000-01-30 00:45:58 +00:00
|
|
|
if (len - i < IP6OPT_RTALERT_LEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(rtalert: trunc)"));
|
2000-01-30 00:45:58 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (bp[i + 1] != IP6OPT_RTALERT_LEN - 2) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(rtalert: invalid len %d)", bp[i + 1]));
|
2000-01-30 00:45:58 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(rtalert: 0x%04x) ", EXTRACT_16BITS(&bp[i + 2])));
|
2000-01-30 00:45:58 +00:00
|
|
|
break;
|
|
|
|
case IP6OPT_JUMBO:
|
|
|
|
if (len - i < IP6OPT_JUMBO_LEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(jumbo: trunc)"));
|
2000-01-30 00:45:58 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (bp[i + 1] != IP6OPT_JUMBO_LEN - 2) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(jumbo: invalid len %d)", bp[i + 1]));
|
2000-01-30 00:45:58 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(jumbo: %u) ", EXTRACT_32BITS(&bp[i + 2])));
|
2000-01-30 00:45:58 +00:00
|
|
|
break;
|
2001-04-03 07:45:48 +00:00
|
|
|
case IP6OPT_HOME_ADDRESS:
|
|
|
|
if (len - i < IP6OPT_HOMEADDR_MINLEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(homeaddr: trunc)"));
|
2001-04-03 07:45:48 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (bp[i + 1] < IP6OPT_HOMEADDR_MINLEN - 2) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(homeaddr: invalid len %d)", bp[i + 1]));
|
2001-04-03 07:45:48 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(homeaddr: %s", ip6addr_string(ndo, &bp[i + 2])));
|
2001-04-03 07:45:48 +00:00
|
|
|
if (bp[i + 1] > IP6OPT_HOMEADDR_MINLEN - 2) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ip6_sopt_print(ndo, &bp[i + IP6OPT_HOMEADDR_MINLEN],
|
2002-06-21 00:43:23 +00:00
|
|
|
(optlen - IP6OPT_HOMEADDR_MINLEN));
|
2001-04-03 07:45:48 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, ")"));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
2000-01-30 00:45:58 +00:00
|
|
|
default:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(type %d: trunc)", bp[i]));
|
2000-01-30 00:45:58 +00:00
|
|
|
goto trunc;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "(opt_type 0x%02x: len=%d)", bp[i], bp[i + 1]));
|
2000-01-30 00:45:58 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, " "));
|
2000-01-30 00:45:58 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "[trunc] "));
|
2000-01-30 00:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
hbhopt_print(netdissect_options *ndo, register const u_char *bp)
|
2000-01-30 00:45:58 +00:00
|
|
|
{
|
2017-01-31 19:17:06 +00:00
|
|
|
const struct ip6_hbh *dp = (const struct ip6_hbh *)bp;
|
2000-01-30 00:45:58 +00:00
|
|
|
int hbhlen = 0;
|
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_TCHECK(dp->ip6h_len);
|
2000-01-30 00:45:58 +00:00
|
|
|
hbhlen = (int)((dp->ip6h_len + 1) << 3);
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_TCHECK2(*dp, hbhlen);
|
|
|
|
ND_PRINT((ndo, "HBH "));
|
|
|
|
if (ndo->ndo_vflag)
|
|
|
|
ip6_opt_print(ndo, (const u_char *)dp + sizeof(*dp), hbhlen - sizeof(*dp));
|
2000-01-30 00:45:58 +00:00
|
|
|
|
|
|
|
return(hbhlen);
|
|
|
|
|
|
|
|
trunc:
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "[|HBH]"));
|
2004-03-31 09:17:26 +00:00
|
|
|
return(-1);
|
2000-01-30 00:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
dstopt_print(netdissect_options *ndo, register const u_char *bp)
|
2000-01-30 00:45:58 +00:00
|
|
|
{
|
2017-01-31 19:17:06 +00:00
|
|
|
const struct ip6_dest *dp = (const struct ip6_dest *)bp;
|
2000-01-30 00:45:58 +00:00
|
|
|
int dstoptlen = 0;
|
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_TCHECK(dp->ip6d_len);
|
2000-01-30 00:45:58 +00:00
|
|
|
dstoptlen = (int)((dp->ip6d_len + 1) << 3);
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_TCHECK2(*dp, dstoptlen);
|
|
|
|
ND_PRINT((ndo, "DSTOPT "));
|
|
|
|
if (ndo->ndo_vflag) {
|
|
|
|
ip6_opt_print(ndo, (const u_char *)dp + sizeof(*dp),
|
2000-01-30 00:45:58 +00:00
|
|
|
dstoptlen - sizeof(*dp));
|
|
|
|
}
|
|
|
|
|
|
|
|
return(dstoptlen);
|
|
|
|
|
|
|
|
trunc:
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "[|DSTOPT]"));
|
2004-03-31 09:17:26 +00:00
|
|
|
return(-1);
|
2000-01-30 00:45:58 +00:00
|
|
|
}
|