1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the University of California, Lawrence Berkeley Laboratory,
|
|
|
|
* Berkeley, CA. The name of the University may not 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.
|
|
|
|
*
|
|
|
|
* Initial contribution from Jeff Honig (jch@MITCHELL.CIT.CORNELL.EDU).
|
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: Exterior Gateway Protocol (EGP) printer */
|
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
/* specification: RFC 827 */
|
|
|
|
|
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
|
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
#include "addrtoname.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
struct egp_packet {
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint8_t egp_version;
|
1999-10-08 07:47:09 +08:00
|
|
|
#define EGP_VERSION 2
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint8_t egp_type;
|
1999-10-08 07:47:09 +08:00
|
|
|
#define EGPT_ACQUIRE 3
|
|
|
|
#define EGPT_REACH 5
|
|
|
|
#define EGPT_POLL 2
|
|
|
|
#define EGPT_UPDATE 1
|
|
|
|
#define EGPT_ERROR 8
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint8_t egp_code;
|
1999-10-08 07:47:09 +08:00
|
|
|
#define EGPC_REQUEST 0
|
|
|
|
#define EGPC_CONFIRM 1
|
|
|
|
#define EGPC_REFUSE 2
|
|
|
|
#define EGPC_CEASE 3
|
|
|
|
#define EGPC_CEASEACK 4
|
|
|
|
#define EGPC_HELLO 0
|
|
|
|
#define EGPC_HEARDU 1
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint8_t egp_status;
|
1999-10-08 07:47:09 +08:00
|
|
|
#define EGPS_UNSPEC 0
|
|
|
|
#define EGPS_ACTIVE 1
|
|
|
|
#define EGPS_PASSIVE 2
|
|
|
|
#define EGPS_NORES 3
|
|
|
|
#define EGPS_ADMIN 4
|
|
|
|
#define EGPS_GODOWN 5
|
|
|
|
#define EGPS_PARAM 6
|
|
|
|
#define EGPS_PROTO 7
|
|
|
|
#define EGPS_INDET 0
|
|
|
|
#define EGPS_UP 1
|
|
|
|
#define EGPS_DOWN 2
|
|
|
|
#define EGPS_UNSOL 0x80
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint16_t egp_checksum;
|
|
|
|
nd_uint16_t egp_as;
|
|
|
|
nd_uint16_t egp_sequence;
|
1999-10-08 07:47:09 +08:00
|
|
|
union {
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint16_t egpu_hello;
|
|
|
|
nd_uint8_t egpu_gws[2];
|
|
|
|
nd_uint16_t egpu_reason;
|
1999-10-08 07:47:09 +08:00
|
|
|
#define EGPR_UNSPEC 0
|
|
|
|
#define EGPR_BADHEAD 1
|
|
|
|
#define EGPR_BADDATA 2
|
|
|
|
#define EGPR_NOREACH 3
|
|
|
|
#define EGPR_XSPOLL 4
|
|
|
|
#define EGPR_NORESP 5
|
|
|
|
#define EGPR_UVERSION 6
|
|
|
|
} egp_handg;
|
|
|
|
#define egp_hello egp_handg.egpu_hello
|
|
|
|
#define egp_intgw egp_handg.egpu_gws[0]
|
|
|
|
#define egp_extgw egp_handg.egpu_gws[1]
|
|
|
|
#define egp_reason egp_handg.egpu_reason
|
|
|
|
union {
|
2017-12-31 06:58:31 +08:00
|
|
|
nd_uint16_t egpu_poll;
|
|
|
|
nd_ipv4 egpu_sourcenet;
|
1999-10-08 07:47:09 +08:00
|
|
|
} egp_pands;
|
|
|
|
#define egp_poll egp_pands.egpu_poll
|
|
|
|
#define egp_sourcenet egp_pands.egpu_sourcenet
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2013-12-19 18:05:59 +08:00
|
|
|
static const char *egp_acquire_codes[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
"request",
|
|
|
|
"confirm",
|
|
|
|
"refuse",
|
|
|
|
"cease",
|
|
|
|
"cease_ack"
|
|
|
|
};
|
|
|
|
|
2013-12-19 18:05:59 +08:00
|
|
|
static const char *egp_acquire_status[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
"unspecified",
|
|
|
|
"active_mode",
|
|
|
|
"passive_mode",
|
|
|
|
"insufficient_resources",
|
|
|
|
"administratively_prohibited",
|
|
|
|
"going_down",
|
|
|
|
"parameter_violation",
|
|
|
|
"protocol_violation"
|
|
|
|
};
|
|
|
|
|
2013-12-19 18:05:59 +08:00
|
|
|
static const char *egp_reach_codes[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
"hello",
|
|
|
|
"i-h-u"
|
|
|
|
};
|
|
|
|
|
2013-12-19 18:05:59 +08:00
|
|
|
static const char *egp_status_updown[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
"indeterminate",
|
|
|
|
"up",
|
|
|
|
"down"
|
|
|
|
};
|
|
|
|
|
2013-12-19 18:05:59 +08:00
|
|
|
static const char *egp_reasons[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
"unspecified",
|
|
|
|
"bad_EGP_header_format",
|
|
|
|
"bad_EGP_data_field_format",
|
|
|
|
"reachability_info_unavailable",
|
|
|
|
"excessive_polling_rate",
|
|
|
|
"no_response",
|
|
|
|
"unsupported_version"
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2018-05-23 15:32:27 +08:00
|
|
|
egpnr_print(netdissect_options *ndo,
|
2017-12-14 02:17:47 +08:00
|
|
|
const struct egp_packet *egp, u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
const uint8_t *cp;
|
2014-04-23 15:20:40 +08:00
|
|
|
uint32_t addr;
|
2017-12-14 02:17:47 +08:00
|
|
|
uint32_t net;
|
|
|
|
u_int netlen;
|
2017-11-22 15:12:30 +08:00
|
|
|
u_int gateways, distances, networks;
|
2017-12-31 06:58:31 +08:00
|
|
|
u_int intgw, extgw, t_gateways;
|
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 *comma;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
addr = EXTRACT_IPV4_TO_NETWORK_ORDER(egp->egp_sourcenet);
|
1999-10-08 07:47:09 +08:00
|
|
|
if (IN_CLASSA(addr)) {
|
|
|
|
net = addr & IN_CLASSA_NET;
|
|
|
|
netlen = 1;
|
|
|
|
} else if (IN_CLASSB(addr)) {
|
|
|
|
net = addr & IN_CLASSB_NET;
|
|
|
|
netlen = 2;
|
|
|
|
} else if (IN_CLASSC(addr)) {
|
|
|
|
net = addr & IN_CLASSC_NET;
|
|
|
|
netlen = 3;
|
|
|
|
} else {
|
|
|
|
net = 0;
|
|
|
|
netlen = 0;
|
|
|
|
}
|
2015-04-27 08:24:42 +08:00
|
|
|
cp = (const uint8_t *)(egp + 1);
|
2016-10-20 09:18:58 +08:00
|
|
|
length -= sizeof(*egp);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
intgw = EXTRACT_U_1(egp->egp_intgw);
|
|
|
|
extgw = EXTRACT_U_1(egp->egp_extgw);
|
|
|
|
t_gateways = intgw + extgw;
|
1999-10-08 07:47:09 +08:00
|
|
|
for (gateways = 0; gateways < t_gateways; ++gateways) {
|
|
|
|
/* Pickup host part of gateway address */
|
|
|
|
addr = 0;
|
2016-10-20 09:18:58 +08:00
|
|
|
if (length < 4 - netlen)
|
|
|
|
goto trunc;
|
2017-12-11 19:46:51 +08:00
|
|
|
ND_TCHECK_LEN(cp, 4 - netlen);
|
1999-10-08 07:47:09 +08:00
|
|
|
switch (netlen) {
|
|
|
|
|
|
|
|
case 1:
|
2017-11-23 06:54:09 +08:00
|
|
|
addr = EXTRACT_U_1(cp);
|
2017-11-22 05:53:05 +08:00
|
|
|
cp++;
|
1999-10-08 07:47:09 +08:00
|
|
|
/* fall through */
|
|
|
|
case 2:
|
2017-11-23 06:54:09 +08:00
|
|
|
addr = (addr << 8) | EXTRACT_U_1(cp);
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
1999-10-08 07:47:09 +08:00
|
|
|
/* fall through */
|
|
|
|
case 3:
|
2017-11-23 06:54:09 +08:00
|
|
|
addr = (addr << 8) | EXTRACT_U_1(cp);
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
|
|
|
break;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
addr |= net;
|
2016-10-20 09:18:58 +08:00
|
|
|
length -= 4 - netlen;
|
|
|
|
if (length < 1)
|
|
|
|
goto trunc;
|
2017-11-25 03:44:53 +08:00
|
|
|
ND_TCHECK_1(cp);
|
2017-11-23 06:54:09 +08:00
|
|
|
distances = EXTRACT_U_1(cp);
|
2017-11-22 05:53:05 +08:00
|
|
|
cp++;
|
2016-10-20 09:18:58 +08:00
|
|
|
length--;
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s %s ",
|
2017-12-31 06:58:31 +08:00
|
|
|
gateways < intgw ? "int" : "ext",
|
2018-01-31 16:43:45 +08:00
|
|
|
ipaddr_string(ndo, (const u_char *)&addr));
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
comma = "";
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("(");
|
2017-11-22 15:12:30 +08:00
|
|
|
while (distances != 0) {
|
2016-10-20 09:18:58 +08:00
|
|
|
if (length < 2)
|
|
|
|
goto trunc;
|
2017-11-25 03:44:53 +08:00
|
|
|
ND_TCHECK_2(cp);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%sd%u:", comma, EXTRACT_U_1(cp));
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
1999-10-08 07:47:09 +08:00
|
|
|
comma = ", ";
|
2017-11-23 06:54:09 +08:00
|
|
|
networks = EXTRACT_U_1(cp);
|
2017-11-22 05:53:05 +08:00
|
|
|
cp++;
|
2016-10-20 09:18:58 +08:00
|
|
|
length -= 2;
|
2017-11-22 15:12:30 +08:00
|
|
|
while (networks != 0) {
|
1999-10-08 07:47:09 +08:00
|
|
|
/* Pickup network number */
|
2016-10-20 09:18:58 +08:00
|
|
|
if (length < 1)
|
|
|
|
goto trunc;
|
2017-11-25 03:44:53 +08:00
|
|
|
ND_TCHECK_1(cp);
|
2017-11-23 06:54:09 +08:00
|
|
|
addr = ((uint32_t) EXTRACT_U_1(cp)) << 24;
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
2016-10-20 09:18:58 +08:00
|
|
|
length--;
|
1999-10-08 07:47:09 +08:00
|
|
|
if (IN_CLASSB(addr)) {
|
2016-10-20 09:18:58 +08:00
|
|
|
if (length < 1)
|
|
|
|
goto trunc;
|
2017-11-25 03:44:53 +08:00
|
|
|
ND_TCHECK_1(cp);
|
2017-11-23 06:54:09 +08:00
|
|
|
addr |= ((uint32_t) EXTRACT_U_1(cp)) << 16;
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
2016-10-20 09:18:58 +08:00
|
|
|
length--;
|
1999-10-08 07:47:09 +08:00
|
|
|
} else if (!IN_CLASSA(addr)) {
|
2016-10-20 09:18:58 +08:00
|
|
|
if (length < 2)
|
|
|
|
goto trunc;
|
2017-11-25 03:44:53 +08:00
|
|
|
ND_TCHECK_2(cp);
|
2017-11-23 06:54:09 +08:00
|
|
|
addr |= ((uint32_t) EXTRACT_U_1(cp)) << 16;
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
2017-11-23 06:54:09 +08:00
|
|
|
addr |= ((uint32_t) EXTRACT_U_1(cp)) << 8;
|
2017-11-22 15:12:30 +08:00
|
|
|
cp++;
|
2016-10-20 09:18:58 +08:00
|
|
|
length -= 2;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2018-01-31 16:43:45 +08:00
|
|
|
ND_PRINT(" %s", ipaddr_string(ndo, (const u_char *)&addr));
|
2017-11-22 15:12:30 +08:00
|
|
|
networks--;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2017-11-22 15:12:30 +08:00
|
|
|
distances--;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(")");
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
trunc:
|
2018-05-23 15:32:27 +08:00
|
|
|
nd_print_trunc(ndo);
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-03-21 20:48:24 +08:00
|
|
|
egp_print(netdissect_options *ndo,
|
2017-12-14 02:17:47 +08:00
|
|
|
const uint8_t *bp, u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
const struct egp_packet *egp;
|
2017-12-31 06:58:31 +08:00
|
|
|
u_int version;
|
|
|
|
u_int type;
|
|
|
|
u_int code;
|
|
|
|
u_int status;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "egp";
|
2015-04-27 08:24:42 +08:00
|
|
|
egp = (const struct egp_packet *)bp;
|
2018-01-04 04:32:07 +08:00
|
|
|
if (length < sizeof(*egp) || !ND_TTEST_SIZE(egp)) {
|
2018-05-11 00:05:56 +08:00
|
|
|
nd_print_trunc(ndo);
|
2002-09-06 05:25:34 +08:00
|
|
|
return;
|
|
|
|
}
|
2006-02-12 06:13:24 +08:00
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
version = EXTRACT_U_1(egp->egp_version);
|
2014-03-21 20:48:24 +08:00
|
|
|
if (!ndo->ndo_vflag) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("EGPv%u, AS %u, seq %u, length %u",
|
2017-12-31 06:58:31 +08:00
|
|
|
version,
|
|
|
|
EXTRACT_BE_U_2(egp->egp_as),
|
|
|
|
EXTRACT_BE_U_2(egp->egp_sequence),
|
2018-01-07 18:47:30 +08:00
|
|
|
length);
|
2006-02-12 06:13:24 +08:00
|
|
|
return;
|
|
|
|
} else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("EGPv%u, length %u",
|
2017-12-31 06:58:31 +08:00
|
|
|
version,
|
2018-01-07 18:47:30 +08:00
|
|
|
length);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
if (version != EGP_VERSION) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[version %u]", version);
|
1999-10-08 07:47:09 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
type = EXTRACT_U_1(egp->egp_type);
|
|
|
|
code = EXTRACT_U_1(egp->egp_code);
|
|
|
|
status = EXTRACT_U_1(egp->egp_status);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case EGPT_ACQUIRE:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" acquire");
|
1999-10-08 07:47:09 +08:00
|
|
|
switch (code) {
|
|
|
|
case EGPC_REQUEST:
|
|
|
|
case EGPC_CONFIRM:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", egp_acquire_codes[code]);
|
1999-10-08 07:47:09 +08:00
|
|
|
switch (status) {
|
|
|
|
case EGPS_UNSPEC:
|
|
|
|
case EGPS_ACTIVE:
|
|
|
|
case EGPS_PASSIVE:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", egp_acquire_status[status]);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [status %u]", status);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" hello:%u poll:%u",
|
2017-12-31 06:58:31 +08:00
|
|
|
EXTRACT_BE_U_2(egp->egp_hello),
|
2018-01-07 18:47:30 +08:00
|
|
|
EXTRACT_BE_U_2(egp->egp_poll));
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EGPC_REFUSE:
|
|
|
|
case EGPC_CEASE:
|
|
|
|
case EGPC_CEASEACK:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", egp_acquire_codes[code]);
|
1999-10-08 07:47:09 +08:00
|
|
|
switch (status ) {
|
|
|
|
case EGPS_UNSPEC:
|
|
|
|
case EGPS_NORES:
|
|
|
|
case EGPS_ADMIN:
|
|
|
|
case EGPS_GODOWN:
|
|
|
|
case EGPS_PARAM:
|
|
|
|
case EGPS_PROTO:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", egp_acquire_status[status]);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[status %u]", status);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[code %u]", code);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EGPT_REACH:
|
|
|
|
switch (code) {
|
|
|
|
|
|
|
|
case EGPC_HELLO:
|
|
|
|
case EGPC_HEARDU:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", egp_reach_codes[code]);
|
1999-10-08 07:47:09 +08:00
|
|
|
if (status <= EGPS_DOWN)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" state:%s", egp_status_updown[status]);
|
1999-10-08 07:47:09 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [status %u]", status);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[reach code %u]", code);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EGPT_POLL:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" poll");
|
2017-12-31 06:58:31 +08:00
|
|
|
if (status <= EGPS_DOWN)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" state:%s", egp_status_updown[status]);
|
1999-10-08 07:47:09 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [status %u]", status);
|
2018-01-31 16:43:45 +08:00
|
|
|
ND_PRINT(" net:%s", ipaddr_string(ndo, egp->egp_sourcenet));
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EGPT_UPDATE:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" update");
|
1999-10-08 07:47:09 +08:00
|
|
|
if (status & EGPS_UNSOL) {
|
|
|
|
status &= ~EGPS_UNSOL;
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" unsolicited");
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
if (status <= EGPS_DOWN)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" state:%s", egp_status_updown[status]);
|
1999-10-08 07:47:09 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [status %u]", status);
|
|
|
|
ND_PRINT(" %s int %u ext %u",
|
2018-01-31 16:43:45 +08:00
|
|
|
ipaddr_string(ndo, egp->egp_sourcenet),
|
2017-12-31 06:58:31 +08:00
|
|
|
EXTRACT_U_1(egp->egp_intgw),
|
2018-01-07 18:47:30 +08:00
|
|
|
EXTRACT_U_1(egp->egp_extgw));
|
2014-03-21 20:48:24 +08:00
|
|
|
if (ndo->ndo_vflag)
|
2018-05-23 15:32:27 +08:00
|
|
|
egpnr_print(ndo, egp, length);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EGPT_ERROR:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" error");
|
1999-10-08 07:47:09 +08:00
|
|
|
if (status <= EGPS_DOWN)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" state:%s", egp_status_updown[status]);
|
1999-10-08 07:47:09 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [status %u]", status);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2017-12-31 06:58:31 +08:00
|
|
|
if (EXTRACT_BE_U_2(egp->egp_reason) <= EGPR_UVERSION)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %s", egp_reasons[EXTRACT_BE_U_2(egp->egp_reason)]);
|
1999-10-08 07:47:09 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [reason %u]", EXTRACT_BE_U_2(egp->egp_reason));
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("[type %u]", type);
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|