1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1990, 1992, 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.
|
|
|
|
*/
|
|
|
|
|
2020-01-20 11:55:38 +08:00
|
|
|
#include "extract.h"
|
|
|
|
|
2021-08-02 07:32:46 +08:00
|
|
|
#ifdef HAVE_CASPER
|
|
|
|
#include <libcasper.h>
|
|
|
|
extern cap_channel_t *capdns;
|
|
|
|
#endif
|
|
|
|
|
2015-09-18 05:56:44 +08:00
|
|
|
/*
|
2020-01-20 11:55:38 +08:00
|
|
|
* Definition to let us compile most of the IPv6 code even on systems
|
2015-09-18 05:56:44 +08:00
|
|
|
* without IPv6 support.
|
|
|
|
*/
|
|
|
|
#ifndef INET6_ADDRSTRLEN
|
|
|
|
#define INET6_ADDRSTRLEN 46
|
|
|
|
#endif
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/* Name to address translation routines. */
|
|
|
|
|
2006-02-12 06:11:40 +08:00
|
|
|
enum {
|
2023-07-14 15:27:39 +08:00
|
|
|
LINKADDR_MAC48,
|
2006-02-12 06:11:40 +08:00
|
|
|
LINKADDR_FRELAY,
|
2023-07-14 15:02:06 +08:00
|
|
|
LINKADDR_EUI64,
|
2017-03-22 10:30:48 +08:00
|
|
|
LINKADDR_ATM,
|
|
|
|
LINKADDR_OTHER
|
2006-02-12 06:11:40 +08:00
|
|
|
};
|
|
|
|
|
2007-08-08 22:06:34 +08:00
|
|
|
#define BUFSIZE 128
|
|
|
|
|
2018-05-14 16:52:54 +08:00
|
|
|
extern const char *linkaddr_string(netdissect_options *, const uint8_t *, const unsigned int, const unsigned int);
|
2023-07-14 15:35:08 +08:00
|
|
|
extern const char *mac48_string(netdissect_options *, const uint8_t *);
|
2023-07-14 15:02:06 +08:00
|
|
|
extern const char *eui64_string(netdissect_options *, const uint8_t *);
|
|
|
|
extern const char *eui64le_string(netdissect_options *, const uint8_t *);
|
2015-09-06 04:28:04 +08:00
|
|
|
extern const char *tcpport_string(netdissect_options *, u_short);
|
|
|
|
extern const char *udpport_string(netdissect_options *, u_short);
|
2018-05-14 16:52:54 +08:00
|
|
|
extern const char *isonsap_string(netdissect_options *, const uint8_t *, u_int);
|
2014-04-04 15:43:46 +08:00
|
|
|
extern const char *dnaddr_string(netdissect_options *, u_short);
|
2015-09-06 04:28:04 +08:00
|
|
|
extern const char *ipxsap_string(netdissect_options *, u_short);
|
2018-01-31 16:43:45 +08:00
|
|
|
extern const char *ipaddr_string(netdissect_options *, const u_char *);
|
|
|
|
extern const char *ip6addr_string(netdissect_options *, const u_char *);
|
2014-04-23 15:45:13 +08:00
|
|
|
extern const char *intoa(uint32_t);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2014-04-23 15:45:13 +08:00
|
|
|
extern void init_addrtoname(netdissect_options *, uint32_t, uint32_t);
|
2015-09-06 04:28:04 +08:00
|
|
|
extern struct hnamemem *newhnamemem(netdissect_options *);
|
|
|
|
extern struct h6namemem *newh6namemem(netdissect_options *);
|
2015-01-30 03:48:25 +08:00
|
|
|
extern const char * ieee8021q_tci_string(const uint16_t);
|
2019-06-30 03:25:08 +08:00
|
|
|
|
|
|
|
/* macro(s) and inline function(s) with setjmp/longjmp logic to call
|
|
|
|
* the X_string() function(s) after bounds checking.
|
|
|
|
* The macro(s) must be used on a packet buffer pointer.
|
|
|
|
*/
|
|
|
|
|
2019-08-12 22:25:40 +08:00
|
|
|
static inline const char *
|
2020-01-20 11:55:38 +08:00
|
|
|
get_linkaddr_string(netdissect_options *ndo, const uint8_t *p,
|
|
|
|
const unsigned int type, const unsigned int len)
|
2019-08-12 22:25:40 +08:00
|
|
|
{
|
2020-01-20 11:55:38 +08:00
|
|
|
if (!ND_TTEST_LEN(p, len))
|
2020-09-28 04:48:16 +08:00
|
|
|
nd_trunc_longjmp(ndo);
|
2020-01-20 11:55:38 +08:00
|
|
|
return linkaddr_string(ndo, p, type, len);
|
2019-08-12 22:25:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline const char *
|
2023-07-14 15:35:08 +08:00
|
|
|
get_mac48_string(netdissect_options *ndo, const uint8_t *p)
|
2019-08-12 22:25:40 +08:00
|
|
|
{
|
2023-07-14 15:27:39 +08:00
|
|
|
if (!ND_TTEST_LEN(p, MAC48_LEN))
|
2020-09-28 04:48:16 +08:00
|
|
|
nd_trunc_longjmp(ndo);
|
2023-07-14 15:35:08 +08:00
|
|
|
return mac48_string(ndo, p);
|
2019-08-12 22:25:40 +08:00
|
|
|
}
|
|
|
|
|
2019-06-30 03:25:08 +08:00
|
|
|
static inline const char *
|
2023-07-14 15:02:06 +08:00
|
|
|
get_eui64_string(netdissect_options *ndo, const uint8_t *p)
|
2019-06-30 03:25:08 +08:00
|
|
|
{
|
2023-07-14 15:02:06 +08:00
|
|
|
if (!ND_TTEST_LEN(p, EUI64_LEN))
|
2020-09-28 04:48:16 +08:00
|
|
|
nd_trunc_longjmp(ndo);
|
2023-07-14 15:02:06 +08:00
|
|
|
return eui64_string(ndo, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
get_eui64le_string(netdissect_options *ndo, const uint8_t *p)
|
|
|
|
{
|
|
|
|
if (!ND_TTEST_LEN(p, EUI64_LEN))
|
|
|
|
nd_trunc_longjmp(ndo);
|
|
|
|
return eui64le_string(ndo, p);
|
2019-06-30 03:25:08 +08:00
|
|
|
}
|
|
|
|
|
2020-01-20 11:55:38 +08:00
|
|
|
static inline const char *
|
|
|
|
get_isonsap_string(netdissect_options *ndo, const uint8_t *nsap,
|
|
|
|
u_int nsap_length)
|
|
|
|
{
|
|
|
|
if (!ND_TTEST_LEN(nsap, nsap_length))
|
2020-09-28 04:48:16 +08:00
|
|
|
nd_trunc_longjmp(ndo);
|
2020-01-20 11:55:38 +08:00
|
|
|
return isonsap_string(ndo, nsap, nsap_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
get_ipaddr_string(netdissect_options *ndo, const u_char *p)
|
|
|
|
{
|
|
|
|
if (!ND_TTEST_4(p))
|
2020-09-28 04:48:16 +08:00
|
|
|
nd_trunc_longjmp(ndo);
|
2020-01-20 11:55:38 +08:00
|
|
|
return ipaddr_string(ndo, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const char *
|
|
|
|
get_ip6addr_string(netdissect_options *ndo, const u_char *p)
|
|
|
|
{
|
|
|
|
if (!ND_TTEST_16(p))
|
2020-09-28 04:48:16 +08:00
|
|
|
nd_trunc_longjmp(ndo);
|
2020-01-20 11:55:38 +08:00
|
|
|
return ip6addr_string(ndo, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GET_LINKADDR_STRING(p, type, len) get_linkaddr_string(ndo, (const u_char *)(p), type, len)
|
2023-07-14 15:35:08 +08:00
|
|
|
#define GET_MAC48_STRING(p) get_mac48_string(ndo, (const u_char *)(p))
|
2023-07-14 15:02:06 +08:00
|
|
|
#define GET_EUI64_STRING(p) get_eui64_string(ndo, (const u_char *)(p))
|
|
|
|
#define GET_EUI64LE_STRING(p) get_eui64le_string(ndo, (const u_char *)(p))
|
2020-01-20 11:55:38 +08:00
|
|
|
#define GET_ISONSAP_STRING(nsap, nsap_length) get_isonsap_string(ndo, (const u_char *)(nsap), nsap_length)
|
2019-08-12 22:25:40 +08:00
|
|
|
#define GET_IPADDR_STRING(p) get_ipaddr_string(ndo, (const u_char *)(p))
|
|
|
|
#define GET_IP6ADDR_STRING(p) get_ip6addr_string(ndo, (const u_char *)(p))
|