Home | History | Annotate | Line # | Download | only in dist
print-egp.c revision 1.1.1.6
      1      1.1  christos /*
      2      1.1  christos  * Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996
      3      1.1  christos  *	The Regents of the University of California.  All rights reserved.
      4      1.1  christos  *
      5      1.1  christos  * Redistribution and use in source and binary forms are permitted
      6      1.1  christos  * provided that the above copyright notice and this paragraph are
      7      1.1  christos  * duplicated in all such forms and that any documentation,
      8      1.1  christos  * advertising materials, and other materials related to such
      9      1.1  christos  * distribution and use acknowledge that the software was developed
     10      1.1  christos  * by the University of California, Lawrence Berkeley Laboratory,
     11      1.1  christos  * Berkeley, CA.  The name of the University may not be used to
     12      1.1  christos  * endorse or promote products derived from this software without
     13      1.1  christos  * specific prior written permission.
     14      1.1  christos  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
     15      1.1  christos  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
     16      1.1  christos  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     17      1.1  christos  *
     18      1.1  christos  * Initial contribution from Jeff Honig (jch (at) MITCHELL.CIT.CORNELL.EDU).
     19      1.1  christos  */
     20      1.1  christos 
     21  1.1.1.5       spz /* \summary: Exterior Gateway Protocol (EGP) printer */
     22  1.1.1.5       spz 
     23  1.1.1.6  christos /* specification: RFC 827 */
     24  1.1.1.6  christos 
     25      1.1  christos #ifdef HAVE_CONFIG_H
     26  1.1.1.6  christos #include <config.h>
     27      1.1  christos #endif
     28      1.1  christos 
     29  1.1.1.6  christos #include "netdissect-stdinc.h"
     30      1.1  christos 
     31  1.1.1.4  christos #include "netdissect.h"
     32      1.1  christos #include "addrtoname.h"
     33      1.1  christos #include "extract.h"
     34      1.1  christos 
     35      1.1  christos struct egp_packet {
     36  1.1.1.6  christos 	nd_uint8_t  egp_version;
     37      1.1  christos #define	EGP_VERSION	2
     38  1.1.1.6  christos 	nd_uint8_t  egp_type;
     39      1.1  christos #define  EGPT_ACQUIRE	3
     40      1.1  christos #define  EGPT_REACH	5
     41      1.1  christos #define  EGPT_POLL	2
     42      1.1  christos #define  EGPT_UPDATE	1
     43      1.1  christos #define  EGPT_ERROR	8
     44  1.1.1.6  christos 	nd_uint8_t  egp_code;
     45      1.1  christos #define  EGPC_REQUEST	0
     46      1.1  christos #define  EGPC_CONFIRM	1
     47      1.1  christos #define  EGPC_REFUSE	2
     48      1.1  christos #define  EGPC_CEASE	3
     49      1.1  christos #define  EGPC_CEASEACK	4
     50      1.1  christos #define  EGPC_HELLO	0
     51      1.1  christos #define  EGPC_HEARDU	1
     52  1.1.1.6  christos 	nd_uint8_t  egp_status;
     53      1.1  christos #define  EGPS_UNSPEC	0
     54      1.1  christos #define  EGPS_ACTIVE	1
     55      1.1  christos #define  EGPS_PASSIVE	2
     56      1.1  christos #define  EGPS_NORES	3
     57      1.1  christos #define  EGPS_ADMIN	4
     58      1.1  christos #define  EGPS_GODOWN	5
     59      1.1  christos #define  EGPS_PARAM	6
     60      1.1  christos #define  EGPS_PROTO	7
     61      1.1  christos #define  EGPS_INDET	0
     62      1.1  christos #define  EGPS_UP	1
     63      1.1  christos #define  EGPS_DOWN	2
     64      1.1  christos #define  EGPS_UNSOL	0x80
     65  1.1.1.6  christos 	nd_uint16_t  egp_checksum;
     66  1.1.1.6  christos 	nd_uint16_t  egp_as;
     67  1.1.1.6  christos 	nd_uint16_t  egp_sequence;
     68      1.1  christos 	union {
     69  1.1.1.6  christos 		nd_uint16_t egpu_hello;
     70  1.1.1.6  christos 		nd_uint8_t  egpu_gws[2];
     71  1.1.1.6  christos 		nd_uint16_t egpu_reason;
     72      1.1  christos #define  EGPR_UNSPEC	0
     73      1.1  christos #define  EGPR_BADHEAD	1
     74      1.1  christos #define  EGPR_BADDATA	2
     75      1.1  christos #define  EGPR_NOREACH	3
     76      1.1  christos #define  EGPR_XSPOLL	4
     77      1.1  christos #define  EGPR_NORESP	5
     78      1.1  christos #define  EGPR_UVERSION	6
     79      1.1  christos 	} egp_handg;
     80      1.1  christos #define  egp_hello  egp_handg.egpu_hello
     81      1.1  christos #define  egp_intgw  egp_handg.egpu_gws[0]
     82      1.1  christos #define  egp_extgw  egp_handg.egpu_gws[1]
     83      1.1  christos #define  egp_reason  egp_handg.egpu_reason
     84      1.1  christos 	union {
     85  1.1.1.6  christos 		nd_uint16_t egpu_poll;
     86  1.1.1.6  christos 		nd_ipv4 egpu_sourcenet;
     87      1.1  christos 	} egp_pands;
     88      1.1  christos #define  egp_poll  egp_pands.egpu_poll
     89      1.1  christos #define  egp_sourcenet  egp_pands.egpu_sourcenet
     90      1.1  christos };
     91      1.1  christos 
     92  1.1.1.3  christos static const char *egp_acquire_codes[] = {
     93      1.1  christos 	"request",
     94      1.1  christos 	"confirm",
     95      1.1  christos 	"refuse",
     96      1.1  christos 	"cease",
     97      1.1  christos 	"cease_ack"
     98      1.1  christos };
     99      1.1  christos 
    100  1.1.1.3  christos static const char *egp_acquire_status[] = {
    101      1.1  christos 	"unspecified",
    102      1.1  christos 	"active_mode",
    103      1.1  christos 	"passive_mode",
    104      1.1  christos 	"insufficient_resources",
    105      1.1  christos 	"administratively_prohibited",
    106      1.1  christos 	"going_down",
    107      1.1  christos 	"parameter_violation",
    108      1.1  christos 	"protocol_violation"
    109      1.1  christos };
    110      1.1  christos 
    111  1.1.1.3  christos static const char *egp_reach_codes[] = {
    112      1.1  christos 	"hello",
    113      1.1  christos 	"i-h-u"
    114      1.1  christos };
    115      1.1  christos 
    116  1.1.1.3  christos static const char *egp_status_updown[] = {
    117      1.1  christos 	"indeterminate",
    118      1.1  christos 	"up",
    119      1.1  christos 	"down"
    120      1.1  christos };
    121      1.1  christos 
    122  1.1.1.3  christos static const char *egp_reasons[] = {
    123      1.1  christos 	"unspecified",
    124      1.1  christos 	"bad_EGP_header_format",
    125      1.1  christos 	"bad_EGP_data_field_format",
    126      1.1  christos 	"reachability_info_unavailable",
    127      1.1  christos 	"excessive_polling_rate",
    128      1.1  christos 	"no_response",
    129      1.1  christos 	"unsupported_version"
    130      1.1  christos };
    131      1.1  christos 
    132      1.1  christos static void
    133  1.1.1.6  christos egpnr_print(netdissect_options *ndo,
    134  1.1.1.6  christos            const struct egp_packet *egp, u_int length)
    135      1.1  christos {
    136  1.1.1.6  christos 	const uint8_t *cp;
    137  1.1.1.3  christos 	uint32_t addr;
    138  1.1.1.6  christos 	uint32_t net;
    139  1.1.1.6  christos 	u_int netlen;
    140  1.1.1.6  christos 	u_int gateways, distances, networks;
    141  1.1.1.6  christos 	u_int intgw, extgw, t_gateways;
    142      1.1  christos 	const char *comma;
    143      1.1  christos 
    144  1.1.1.6  christos 	addr = GET_IPV4_TO_NETWORK_ORDER(egp->egp_sourcenet);
    145      1.1  christos 	if (IN_CLASSA(addr)) {
    146      1.1  christos 		net = addr & IN_CLASSA_NET;
    147      1.1  christos 		netlen = 1;
    148      1.1  christos 	} else if (IN_CLASSB(addr)) {
    149      1.1  christos 		net = addr & IN_CLASSB_NET;
    150      1.1  christos 		netlen = 2;
    151      1.1  christos 	} else if (IN_CLASSC(addr)) {
    152      1.1  christos 		net = addr & IN_CLASSC_NET;
    153      1.1  christos 		netlen = 3;
    154      1.1  christos 	} else {
    155      1.1  christos 		net = 0;
    156      1.1  christos 		netlen = 0;
    157      1.1  christos 	}
    158  1.1.1.4  christos 	cp = (const uint8_t *)(egp + 1);
    159  1.1.1.5       spz 	length -= sizeof(*egp);
    160      1.1  christos 
    161  1.1.1.6  christos 	intgw = GET_U_1(egp->egp_intgw);
    162  1.1.1.6  christos 	extgw = GET_U_1(egp->egp_extgw);
    163  1.1.1.6  christos 	t_gateways = intgw + extgw;
    164      1.1  christos 	for (gateways = 0; gateways < t_gateways; ++gateways) {
    165      1.1  christos 		/* Pickup host part of gateway address */
    166      1.1  christos 		addr = 0;
    167  1.1.1.5       spz 		if (length < 4 - netlen)
    168  1.1.1.5       spz 			goto trunc;
    169  1.1.1.6  christos 		ND_TCHECK_LEN(cp, 4 - netlen);
    170      1.1  christos 		switch (netlen) {
    171      1.1  christos 
    172      1.1  christos 		case 1:
    173  1.1.1.6  christos 			addr = GET_U_1(cp);
    174  1.1.1.6  christos 			cp++;
    175      1.1  christos 			/* fall through */
    176      1.1  christos 		case 2:
    177  1.1.1.6  christos 			addr = (addr << 8) | GET_U_1(cp);
    178  1.1.1.6  christos 			cp++;
    179      1.1  christos 			/* fall through */
    180      1.1  christos 		case 3:
    181  1.1.1.6  christos 			addr = (addr << 8) | GET_U_1(cp);
    182  1.1.1.6  christos 			cp++;
    183  1.1.1.6  christos 			break;
    184      1.1  christos 		}
    185      1.1  christos 		addr |= net;
    186  1.1.1.5       spz 		length -= 4 - netlen;
    187  1.1.1.5       spz 		if (length < 1)
    188  1.1.1.5       spz 			goto trunc;
    189  1.1.1.6  christos 		distances = GET_U_1(cp);
    190  1.1.1.6  christos 		cp++;
    191  1.1.1.5       spz 		length--;
    192  1.1.1.6  christos 		ND_PRINT(" %s %s ",
    193  1.1.1.6  christos 		       gateways < intgw ? "int" : "ext",
    194  1.1.1.6  christos 		       ipaddr_string(ndo, (const u_char *)&addr)); /* local buffer, not packet data; don't use GET_IPADDR_STRING() */
    195      1.1  christos 
    196      1.1  christos 		comma = "";
    197  1.1.1.6  christos 		ND_PRINT("(");
    198  1.1.1.6  christos 		while (distances != 0) {
    199  1.1.1.5       spz 			if (length < 2)
    200  1.1.1.5       spz 				goto trunc;
    201  1.1.1.6  christos 			ND_PRINT("%sd%u:", comma, GET_U_1(cp));
    202  1.1.1.6  christos 			cp++;
    203      1.1  christos 			comma = ", ";
    204  1.1.1.6  christos 			networks = GET_U_1(cp);
    205  1.1.1.6  christos 			cp++;
    206  1.1.1.5       spz 			length -= 2;
    207  1.1.1.6  christos 			while (networks != 0) {
    208      1.1  christos 				/* Pickup network number */
    209  1.1.1.5       spz 				if (length < 1)
    210  1.1.1.5       spz 					goto trunc;
    211  1.1.1.6  christos 				addr = ((uint32_t) GET_U_1(cp)) << 24;
    212  1.1.1.6  christos 				cp++;
    213  1.1.1.5       spz 				length--;
    214      1.1  christos 				if (IN_CLASSB(addr)) {
    215  1.1.1.5       spz 					if (length < 1)
    216  1.1.1.5       spz 						goto trunc;
    217  1.1.1.6  christos 					addr |= ((uint32_t) GET_U_1(cp)) << 16;
    218  1.1.1.6  christos 					cp++;
    219  1.1.1.5       spz 					length--;
    220      1.1  christos 				} else if (!IN_CLASSA(addr)) {
    221  1.1.1.5       spz 					if (length < 2)
    222  1.1.1.5       spz 						goto trunc;
    223  1.1.1.6  christos 					addr |= ((uint32_t) GET_U_1(cp)) << 16;
    224  1.1.1.6  christos 					cp++;
    225  1.1.1.6  christos 					addr |= ((uint32_t) GET_U_1(cp)) << 8;
    226  1.1.1.6  christos 					cp++;
    227  1.1.1.5       spz 					length -= 2;
    228      1.1  christos 				}
    229  1.1.1.6  christos 				ND_PRINT(" %s", ipaddr_string(ndo, (const u_char *)&addr)); /* local buffer, not packet data; don't use GET_IPADDR_STRING() */
    230  1.1.1.6  christos 				networks--;
    231      1.1  christos 			}
    232  1.1.1.6  christos 			distances--;
    233      1.1  christos 		}
    234  1.1.1.6  christos 		ND_PRINT(")");
    235      1.1  christos 	}
    236      1.1  christos 	return;
    237      1.1  christos trunc:
    238  1.1.1.6  christos 	nd_print_trunc(ndo);
    239      1.1  christos }
    240      1.1  christos 
    241      1.1  christos void
    242  1.1.1.3  christos egp_print(netdissect_options *ndo,
    243  1.1.1.6  christos           const uint8_t *bp, u_int length)
    244      1.1  christos {
    245  1.1.1.6  christos 	const struct egp_packet *egp;
    246  1.1.1.6  christos 	u_int version;
    247  1.1.1.6  christos 	u_int type;
    248  1.1.1.6  christos 	u_int code;
    249  1.1.1.6  christos 	u_int status;
    250      1.1  christos 
    251  1.1.1.6  christos 	ndo->ndo_protocol = "egp";
    252  1.1.1.4  christos 	egp = (const struct egp_packet *)bp;
    253  1.1.1.6  christos 	if (length < sizeof(*egp) || !ND_TTEST_SIZE(egp)) {
    254  1.1.1.6  christos 		nd_print_trunc(ndo);
    255      1.1  christos 		return;
    256      1.1  christos 	}
    257      1.1  christos 
    258  1.1.1.6  christos 	version = GET_U_1(egp->egp_version);
    259  1.1.1.3  christos         if (!ndo->ndo_vflag) {
    260  1.1.1.6  christos             ND_PRINT("EGPv%u, AS %u, seq %u, length %u",
    261  1.1.1.6  christos                    version,
    262  1.1.1.6  christos                    GET_BE_U_2(egp->egp_as),
    263  1.1.1.6  christos                    GET_BE_U_2(egp->egp_sequence),
    264  1.1.1.6  christos                    length);
    265      1.1  christos             return;
    266      1.1  christos         } else
    267  1.1.1.6  christos             ND_PRINT("EGPv%u, length %u",
    268  1.1.1.6  christos                    version,
    269  1.1.1.6  christos                    length);
    270      1.1  christos 
    271  1.1.1.6  christos 	if (version != EGP_VERSION) {
    272  1.1.1.6  christos 		ND_PRINT("[version %u]", version);
    273      1.1  christos 		return;
    274      1.1  christos 	}
    275      1.1  christos 
    276  1.1.1.6  christos 	type = GET_U_1(egp->egp_type);
    277  1.1.1.6  christos 	code = GET_U_1(egp->egp_code);
    278  1.1.1.6  christos 	status = GET_U_1(egp->egp_status);
    279      1.1  christos 
    280      1.1  christos 	switch (type) {
    281      1.1  christos 	case EGPT_ACQUIRE:
    282  1.1.1.6  christos 		ND_PRINT(" acquire");
    283      1.1  christos 		switch (code) {
    284      1.1  christos 		case EGPC_REQUEST:
    285      1.1  christos 		case EGPC_CONFIRM:
    286  1.1.1.6  christos 			ND_PRINT(" %s", egp_acquire_codes[code]);
    287      1.1  christos 			switch (status) {
    288      1.1  christos 			case EGPS_UNSPEC:
    289      1.1  christos 			case EGPS_ACTIVE:
    290      1.1  christos 			case EGPS_PASSIVE:
    291  1.1.1.6  christos 				ND_PRINT(" %s", egp_acquire_status[status]);
    292      1.1  christos 				break;
    293      1.1  christos 
    294      1.1  christos 			default:
    295  1.1.1.6  christos 				ND_PRINT(" [status %u]", status);
    296      1.1  christos 				break;
    297      1.1  christos 			}
    298  1.1.1.6  christos 			ND_PRINT(" hello:%u poll:%u",
    299  1.1.1.6  christos 			       GET_BE_U_2(egp->egp_hello),
    300  1.1.1.6  christos 			       GET_BE_U_2(egp->egp_poll));
    301      1.1  christos 			break;
    302      1.1  christos 
    303      1.1  christos 		case EGPC_REFUSE:
    304      1.1  christos 		case EGPC_CEASE:
    305      1.1  christos 		case EGPC_CEASEACK:
    306  1.1.1.6  christos 			ND_PRINT(" %s", egp_acquire_codes[code]);
    307      1.1  christos 			switch (status ) {
    308      1.1  christos 			case EGPS_UNSPEC:
    309      1.1  christos 			case EGPS_NORES:
    310      1.1  christos 			case EGPS_ADMIN:
    311      1.1  christos 			case EGPS_GODOWN:
    312      1.1  christos 			case EGPS_PARAM:
    313      1.1  christos 			case EGPS_PROTO:
    314  1.1.1.6  christos 				ND_PRINT(" %s", egp_acquire_status[status]);
    315      1.1  christos 				break;
    316      1.1  christos 
    317      1.1  christos 			default:
    318  1.1.1.6  christos 				ND_PRINT("[status %u]", status);
    319      1.1  christos 				break;
    320      1.1  christos 			}
    321      1.1  christos 			break;
    322      1.1  christos 
    323      1.1  christos 		default:
    324  1.1.1.6  christos 			ND_PRINT("[code %u]", code);
    325      1.1  christos 			break;
    326      1.1  christos 		}
    327      1.1  christos 		break;
    328      1.1  christos 
    329      1.1  christos 	case EGPT_REACH:
    330      1.1  christos 		switch (code) {
    331      1.1  christos 
    332      1.1  christos 		case EGPC_HELLO:
    333      1.1  christos 		case EGPC_HEARDU:
    334  1.1.1.6  christos 			ND_PRINT(" %s", egp_reach_codes[code]);
    335      1.1  christos 			if (status <= EGPS_DOWN)
    336  1.1.1.6  christos 				ND_PRINT(" state:%s", egp_status_updown[status]);
    337      1.1  christos 			else
    338  1.1.1.6  christos 				ND_PRINT(" [status %u]", status);
    339      1.1  christos 			break;
    340      1.1  christos 
    341      1.1  christos 		default:
    342  1.1.1.6  christos 			ND_PRINT("[reach code %u]", code);
    343      1.1  christos 			break;
    344      1.1  christos 		}
    345      1.1  christos 		break;
    346      1.1  christos 
    347      1.1  christos 	case EGPT_POLL:
    348  1.1.1.6  christos 		ND_PRINT(" poll");
    349  1.1.1.6  christos 		if (status <= EGPS_DOWN)
    350  1.1.1.6  christos 			ND_PRINT(" state:%s", egp_status_updown[status]);
    351      1.1  christos 		else
    352  1.1.1.6  christos 			ND_PRINT(" [status %u]", status);
    353  1.1.1.6  christos 		ND_PRINT(" net:%s", GET_IPADDR_STRING(egp->egp_sourcenet));
    354      1.1  christos 		break;
    355      1.1  christos 
    356      1.1  christos 	case EGPT_UPDATE:
    357  1.1.1.6  christos 		ND_PRINT(" update");
    358      1.1  christos 		if (status & EGPS_UNSOL) {
    359      1.1  christos 			status &= ~EGPS_UNSOL;
    360  1.1.1.6  christos 			ND_PRINT(" unsolicited");
    361      1.1  christos 		}
    362      1.1  christos 		if (status <= EGPS_DOWN)
    363  1.1.1.6  christos 			ND_PRINT(" state:%s", egp_status_updown[status]);
    364      1.1  christos 		else
    365  1.1.1.6  christos 			ND_PRINT(" [status %u]", status);
    366  1.1.1.6  christos 		ND_PRINT(" %s int %u ext %u",
    367  1.1.1.6  christos 		       GET_IPADDR_STRING(egp->egp_sourcenet),
    368  1.1.1.6  christos 		       GET_U_1(egp->egp_intgw),
    369  1.1.1.6  christos 		       GET_U_1(egp->egp_extgw));
    370  1.1.1.3  christos 		if (ndo->ndo_vflag)
    371  1.1.1.6  christos 			egpnr_print(ndo, egp, length);
    372      1.1  christos 		break;
    373      1.1  christos 
    374      1.1  christos 	case EGPT_ERROR:
    375  1.1.1.6  christos 		ND_PRINT(" error");
    376      1.1  christos 		if (status <= EGPS_DOWN)
    377  1.1.1.6  christos 			ND_PRINT(" state:%s", egp_status_updown[status]);
    378      1.1  christos 		else
    379  1.1.1.6  christos 			ND_PRINT(" [status %u]", status);
    380      1.1  christos 
    381  1.1.1.6  christos 		if (GET_BE_U_2(egp->egp_reason) <= EGPR_UVERSION)
    382  1.1.1.6  christos 			ND_PRINT(" %s",
    383  1.1.1.6  christos 				 egp_reasons[GET_BE_U_2(egp->egp_reason)]);
    384      1.1  christos 		else
    385  1.1.1.6  christos 			ND_PRINT(" [reason %u]", GET_BE_U_2(egp->egp_reason));
    386      1.1  christos 		break;
    387      1.1  christos 
    388      1.1  christos 	default:
    389  1.1.1.6  christos 		ND_PRINT("[type %u]", type);
    390      1.1  christos 		break;
    391      1.1  christos 	}
    392      1.1  christos }
    393