1999-10-30 13:11:06 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1998 WIDE Project.
|
|
|
|
* All rights reserved.
|
2002-06-12 01:08:37 +08:00
|
|
|
*
|
1999-10-30 13:11:06 +08: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.
|
2002-06-12 01:08:37 +08:00
|
|
|
*
|
1999-10-30 13:11:06 +08: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.
|
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: IPv6 header option 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-11-21 17:36:43 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-10-30 13:11:06 +08:00
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
1999-10-30 13:11:06 +08:00
|
|
|
#include "addrtoname.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
1999-10-30 13:11:06 +08:00
|
|
|
|
2017-03-12 18:00:52 +08:00
|
|
|
#include "ip6.h"
|
|
|
|
|
2000-12-13 15:57:04 +08:00
|
|
|
static void
|
2014-03-13 21:21:55 +08:00
|
|
|
ip6_sopt_print(netdissect_options *ndo, const u_char *bp, int len)
|
2000-12-13 15:57:04 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int optlen;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i += optlen) {
|
2017-12-04 04:12:03 +08:00
|
|
|
if (EXTRACT_U_1(bp + i) == IP6OPT_PAD1)
|
2001-05-09 10:47:26 +08:00
|
|
|
optlen = 1;
|
|
|
|
else {
|
|
|
|
if (i + 1 < len)
|
2017-12-10 00:15:55 +08:00
|
|
|
optlen = EXTRACT_U_1(bp + i + 1) + 2;
|
2001-05-09 10:47:26 +08:00
|
|
|
else
|
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (i + optlen > len)
|
|
|
|
goto trunc;
|
|
|
|
|
2017-12-02 07:04:55 +08:00
|
|
|
switch (EXTRACT_U_1(bp + i)) {
|
2000-12-13 15:57:04 +08:00
|
|
|
case IP6OPT_PAD1:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", pad1");
|
2000-12-13 15:57:04 +08:00
|
|
|
break;
|
|
|
|
case IP6OPT_PADN:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", padn: trunc");
|
2000-12-13 15:57:04 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(", padn");
|
2000-12-13 15:57:04 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(", sopt_type %u: trunc)", EXTRACT_U_1(bp + i));
|
2000-12-13 15:57:04 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(", sopt_type 0x%02x: len=%u", EXTRACT_U_1(bp + i), EXTRACT_U_1(bp + i + 1));
|
2000-12-13 15:57:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[trunc] ");
|
2000-12-13 15:57:04 +08:00
|
|
|
}
|
|
|
|
|
2014-03-13 21:21:55 +08:00
|
|
|
static void
|
|
|
|
ip6_opt_print(netdissect_options *ndo, const u_char *bp, int len)
|
1999-10-30 13:11:06 +08:00
|
|
|
{
|
|
|
|
int i;
|
2003-01-10 16:11:00 +08:00
|
|
|
int optlen = 0;
|
1999-10-30 13:11:06 +08:00
|
|
|
|
2012-02-29 07:45:48 +08:00
|
|
|
if (len == 0)
|
|
|
|
return;
|
1999-10-30 13:11:06 +08:00
|
|
|
for (i = 0; i < len; i += optlen) {
|
2017-12-04 04:12:03 +08:00
|
|
|
if (EXTRACT_U_1(bp + i) == IP6OPT_PAD1)
|
2001-05-09 10:47:26 +08:00
|
|
|
optlen = 1;
|
|
|
|
else {
|
|
|
|
if (i + 1 < len)
|
2017-12-10 00:15:55 +08:00
|
|
|
optlen = EXTRACT_U_1(bp + i + 1) + 2;
|
2001-05-09 10:47:26 +08:00
|
|
|
else
|
|
|
|
goto trunc;
|
|
|
|
}
|
|
|
|
if (i + optlen > len)
|
|
|
|
goto trunc;
|
|
|
|
|
2017-12-02 07:04:55 +08:00
|
|
|
switch (EXTRACT_U_1(bp + i)) {
|
1999-10-30 13:11:06 +08:00
|
|
|
case IP6OPT_PAD1:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(pad1)");
|
1999-10-30 13:11:06 +08:00
|
|
|
break;
|
|
|
|
case IP6OPT_PADN:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(padn: trunc)");
|
1999-10-30 13:11:06 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(padn)");
|
1999-10-30 13:11:06 +08:00
|
|
|
break;
|
2000-12-13 15:57:04 +08:00
|
|
|
case IP6OPT_ROUTER_ALERT:
|
1999-10-30 13:11:06 +08:00
|
|
|
if (len - i < IP6OPT_RTALERT_LEN) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(rtalert: trunc)");
|
1999-10-30 13:11:06 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2017-12-02 21:19:13 +08:00
|
|
|
if (EXTRACT_U_1(bp + i + 1) != IP6OPT_RTALERT_LEN - 2) {
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("(rtalert: invalid len %u)", EXTRACT_U_1(bp + i + 1));
|
1999-10-30 13:11:06 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(rtalert: 0x%04x) ", EXTRACT_BE_U_2(bp + i + 2));
|
1999-10-30 13:11:06 +08:00
|
|
|
break;
|
|
|
|
case IP6OPT_JUMBO:
|
|
|
|
if (len - i < IP6OPT_JUMBO_LEN) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(jumbo: trunc)");
|
1999-10-30 13:11:06 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2017-12-02 21:19:13 +08:00
|
|
|
if (EXTRACT_U_1(bp + i + 1) != IP6OPT_JUMBO_LEN - 2) {
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("(jumbo: invalid len %u)", EXTRACT_U_1(bp + i + 1));
|
1999-10-30 13:11:06 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(jumbo: %u) ", EXTRACT_BE_U_4(bp + i + 2));
|
1999-10-30 13:11:06 +08:00
|
|
|
break;
|
2000-12-13 15:57:04 +08:00
|
|
|
case IP6OPT_HOME_ADDRESS:
|
|
|
|
if (len - i < IP6OPT_HOMEADDR_MINLEN) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(homeaddr: trunc)");
|
2000-12-13 15:57:04 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2017-12-02 21:19:13 +08:00
|
|
|
if (EXTRACT_U_1(bp + i + 1) < IP6OPT_HOMEADDR_MINLEN - 2) {
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("(homeaddr: invalid len %u)", EXTRACT_U_1(bp + i + 1));
|
2000-12-13 15:57:04 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(homeaddr: %s", ip6addr_string(ndo, bp + i + 2));
|
2017-12-02 21:19:13 +08:00
|
|
|
if (EXTRACT_U_1(bp + i + 1) > IP6OPT_HOMEADDR_MINLEN - 2) {
|
2017-12-02 21:56:12 +08:00
|
|
|
ip6_sopt_print(ndo, bp + i + IP6OPT_HOMEADDR_MINLEN,
|
|
|
|
(optlen - IP6OPT_HOMEADDR_MINLEN));
|
2000-12-13 15:57:04 +08:00
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(")");
|
2000-12-13 15:57:04 +08:00
|
|
|
break;
|
1999-10-30 13:11:06 +08:00
|
|
|
default:
|
|
|
|
if (len - i < IP6OPT_MINLEN) {
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("(type %u: trunc)", EXTRACT_U_1(bp + i));
|
1999-10-30 13:11:06 +08:00
|
|
|
goto trunc;
|
|
|
|
}
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("(opt_type 0x%02x: len=%u)", EXTRACT_U_1(bp + i), EXTRACT_U_1(bp + i + 1));
|
1999-10-30 13:11:06 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ");
|
1999-10-30 13:11:06 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[trunc] ");
|
1999-10-30 13:11:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2017-12-14 02:17:47 +08:00
|
|
|
hbhopt_print(netdissect_options *ndo, const u_char *bp)
|
1999-10-30 13:11:06 +08:00
|
|
|
{
|
2015-04-27 08:24:42 +08:00
|
|
|
const struct ip6_hbh *dp = (const struct ip6_hbh *)bp;
|
2017-11-23 02:15:49 +08:00
|
|
|
u_int hbhlen = 0;
|
1999-10-30 13:11:06 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "hbhopt";
|
2018-01-08 06:46:14 +08:00
|
|
|
ND_TCHECK_1(dp->ip6h_len);
|
2017-12-12 11:38:35 +08:00
|
|
|
hbhlen = (EXTRACT_U_1(dp->ip6h_len) + 1) << 3;
|
2017-12-11 19:46:51 +08:00
|
|
|
ND_TCHECK_LEN(dp, hbhlen);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("HBH ");
|
2014-03-13 21:21:55 +08:00
|
|
|
if (ndo->ndo_vflag)
|
|
|
|
ip6_opt_print(ndo, (const u_char *)dp + sizeof(*dp), hbhlen - sizeof(*dp));
|
1999-10-30 13:11:06 +08:00
|
|
|
|
|
|
|
return(hbhlen);
|
|
|
|
|
|
|
|
trunc:
|
2018-05-06 16:33:07 +08:00
|
|
|
nd_print_trunc(ndo);
|
2003-11-19 08:36:06 +08:00
|
|
|
return(-1);
|
1999-10-30 13:11:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2017-12-14 02:17:47 +08:00
|
|
|
dstopt_print(netdissect_options *ndo, const u_char *bp)
|
1999-10-30 13:11:06 +08:00
|
|
|
{
|
2015-04-27 08:24:42 +08:00
|
|
|
const struct ip6_dest *dp = (const struct ip6_dest *)bp;
|
2017-11-23 02:15:49 +08:00
|
|
|
u_int dstoptlen = 0;
|
1999-10-30 13:11:06 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "dstopt";
|
2018-01-08 06:46:14 +08:00
|
|
|
ND_TCHECK_1(dp->ip6d_len);
|
2017-12-12 11:38:35 +08:00
|
|
|
dstoptlen = (EXTRACT_U_1(dp->ip6d_len) + 1) << 3;
|
2017-12-11 19:46:51 +08:00
|
|
|
ND_TCHECK_LEN(dp, dstoptlen);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("DSTOPT ");
|
2014-03-13 21:21:55 +08:00
|
|
|
if (ndo->ndo_vflag) {
|
|
|
|
ip6_opt_print(ndo, (const u_char *)dp + sizeof(*dp),
|
1999-10-30 13:11:06 +08:00
|
|
|
dstoptlen - sizeof(*dp));
|
|
|
|
}
|
|
|
|
|
|
|
|
return(dstoptlen);
|
|
|
|
|
|
|
|
trunc:
|
2018-05-06 16:33:07 +08:00
|
|
|
nd_print_trunc(ndo);
|
2003-11-19 08:36:06 +08:00
|
|
|
return(-1);
|
1999-10-30 13:11:06 +08:00
|
|
|
}
|