Home | History | Annotate | Line # | Download | only in dist
print-rip.c revision 1.1.1.3
      1      1.1  christos /*
      2      1.1  christos  * Copyright (c) 1989, 1990, 1991, 1993, 1994, 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, with or without
      6      1.1  christos  * modification, are permitted provided that: (1) source code distributions
      7      1.1  christos  * retain the above copyright notice and this paragraph in its entirety, (2)
      8      1.1  christos  * distributions including binary code include the above copyright notice and
      9      1.1  christos  * this paragraph in its entirety in the documentation or other materials
     10      1.1  christos  * provided with the distribution, and (3) all advertising materials mentioning
     11      1.1  christos  * features or use of this software display the following acknowledgement:
     12      1.1  christos  * ``This product includes software developed by the University of California,
     13      1.1  christos  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
     14      1.1  christos  * the University nor the names of its contributors may be used to endorse
     15      1.1  christos  * or promote products derived from this software without specific prior
     16      1.1  christos  * written permission.
     17      1.1  christos  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
     18      1.1  christos  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
     19      1.1  christos  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     20      1.1  christos  */
     21      1.1  christos 
     22      1.1  christos #ifndef lint
     23      1.1  christos static const char rcsid[] _U_ =
     24  1.1.1.2  christos     "@(#) Header: /tcpdump/master/tcpdump/print-rip.c,v 1.59 2006-03-23 14:58:44 hannes Exp  (LBL)";
     25      1.1  christos #endif
     26      1.1  christos 
     27      1.1  christos #ifdef HAVE_CONFIG_H
     28      1.1  christos #include "config.h"
     29      1.1  christos #endif
     30      1.1  christos 
     31      1.1  christos #include <tcpdump-stdinc.h>
     32      1.1  christos 
     33      1.1  christos #include <stdio.h>
     34      1.1  christos #include <string.h>
     35      1.1  christos 
     36      1.1  christos #include "interface.h"
     37      1.1  christos #include "addrtoname.h"
     38      1.1  christos #include "extract.h"			/* must come after interface.h */
     39      1.1  christos 
     40      1.1  christos #include "af.h"
     41      1.1  christos 
     42      1.1  christos struct rip {
     43      1.1  christos 	u_int8_t rip_cmd;		/* request/response */
     44      1.1  christos 	u_int8_t rip_vers;		/* protocol version # */
     45      1.1  christos 	u_int8_t unused[2];		/* unused */
     46      1.1  christos };
     47      1.1  christos 
     48      1.1  christos #define	RIPCMD_REQUEST		1	/* want info */
     49      1.1  christos #define	RIPCMD_RESPONSE		2	/* responding to request */
     50      1.1  christos #define	RIPCMD_TRACEON		3	/* turn tracing on */
     51      1.1  christos #define	RIPCMD_TRACEOFF		4	/* turn it off */
     52      1.1  christos #define	RIPCMD_POLL		5	/* want info from everybody */
     53      1.1  christos #define	RIPCMD_POLLENTRY	6	/* poll for entry */
     54      1.1  christos 
     55      1.1  christos static const struct tok rip_cmd_values[] = {
     56      1.1  christos     { RIPCMD_REQUEST,	        "Request" },
     57      1.1  christos     { RIPCMD_RESPONSE,	        "Response" },
     58      1.1  christos     { RIPCMD_TRACEON,	        "Trace on" },
     59      1.1  christos     { RIPCMD_TRACEOFF,	        "Trace off" },
     60      1.1  christos     { RIPCMD_POLL,	        "Poll" },
     61      1.1  christos     { RIPCMD_POLLENTRY,	        "Poll Entry" },
     62      1.1  christos     { 0, NULL}
     63      1.1  christos };
     64      1.1  christos 
     65      1.1  christos #define RIP_AUTHLEN  16
     66      1.1  christos #define RIP_ROUTELEN 20
     67      1.1  christos 
     68      1.1  christos /*
     69      1.1  christos  * rfc 1723
     70      1.1  christos  *
     71      1.1  christos  *  0                   1                   2                   3 3
     72      1.1  christos  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
     73      1.1  christos  * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
     74      1.1  christos  * | Command (1)   | Version (1)   |           unused              |
     75      1.1  christos  * +---------------+---------------+-------------------------------+
     76      1.1  christos  * | Address Family Identifier (2) |        Route Tag (2)          |
     77      1.1  christos  * +-------------------------------+-------------------------------+
     78      1.1  christos  * |                         IP Address (4)                        |
     79      1.1  christos  * +---------------------------------------------------------------+
     80      1.1  christos  * |                         Subnet Mask (4)                       |
     81      1.1  christos  * +---------------------------------------------------------------+
     82      1.1  christos  * |                         Next Hop (4)                          |
     83      1.1  christos  * +---------------------------------------------------------------+
     84      1.1  christos  * |                         Metric (4)                            |
     85      1.1  christos  * +---------------------------------------------------------------+
     86      1.1  christos  *
     87      1.1  christos  */
     88      1.1  christos 
     89      1.1  christos struct rip_netinfo {
     90      1.1  christos 	u_int16_t rip_family;
     91      1.1  christos 	u_int16_t rip_tag;
     92      1.1  christos 	u_int32_t rip_dest;
     93      1.1  christos 	u_int32_t rip_dest_mask;
     94      1.1  christos 	u_int32_t rip_router;
     95      1.1  christos 	u_int32_t rip_metric;		/* cost of route */
     96      1.1  christos };
     97      1.1  christos 
     98      1.1  christos static void
     99      1.1  christos rip_entry_print_v1(register const struct rip_netinfo *ni)
    100      1.1  christos {
    101      1.1  christos 	register u_short family;
    102      1.1  christos 
    103      1.1  christos 	/* RFC 1058 */
    104      1.1  christos 	family = EXTRACT_16BITS(&ni->rip_family);
    105  1.1.1.3  christos 	if (family != BSD_AFNUM_INET && family != 0) {
    106      1.1  christos 		printf("\n\t AFI %s, ", tok2str(bsd_af_values, "Unknown (%u)", family));
    107      1.1  christos                 print_unknown_data((u_int8_t *)&ni->rip_family,"\n\t  ",RIP_ROUTELEN);
    108      1.1  christos 		return;
    109      1.1  christos 	}
    110      1.1  christos 	if (EXTRACT_16BITS(&ni->rip_tag) ||
    111      1.1  christos 	    EXTRACT_32BITS(&ni->rip_dest_mask) ||
    112      1.1  christos 	    EXTRACT_32BITS(&ni->rip_router)) {
    113      1.1  christos 		/* MBZ fields not zero */
    114      1.1  christos                 print_unknown_data((u_int8_t *)&ni->rip_family,"\n\t  ",RIP_ROUTELEN);
    115      1.1  christos 		return;
    116  1.1.1.3  christos 	}
    117  1.1.1.3  christos 	if (family == 0) {
    118  1.1.1.3  christos 		printf("\n\t  AFI 0, %s, metric: %u",
    119  1.1.1.3  christos 			ipaddr_string(&ni->rip_dest),
    120  1.1.1.3  christos 			EXTRACT_32BITS(&ni->rip_metric));
    121  1.1.1.3  christos 		return;
    122      1.1  christos 	} /* BSD_AFNUM_INET */
    123      1.1  christos 	printf("\n\t  %s, metric: %u",
    124      1.1  christos                ipaddr_string(&ni->rip_dest),
    125      1.1  christos 	       EXTRACT_32BITS(&ni->rip_metric));
    126      1.1  christos }
    127      1.1  christos 
    128  1.1.1.3  christos static unsigned
    129  1.1.1.3  christos rip_entry_print_v2(register const struct rip_netinfo *ni, const unsigned remaining)
    130      1.1  christos {
    131      1.1  christos 	register u_short family;
    132      1.1  christos 
    133      1.1  christos 	family = EXTRACT_16BITS(&ni->rip_family);
    134  1.1.1.3  christos 	if (family == 0xFFFF) { /* variable-sized authentication structures */
    135  1.1.1.3  christos 		u_int16_t auth_type = EXTRACT_16BITS(&ni->rip_tag);
    136  1.1.1.3  christos 		if (auth_type == 2) {
    137  1.1.1.3  christos 			register u_char *p = (u_char *)&ni->rip_dest;
    138  1.1.1.3  christos 			u_int i = 0;
    139  1.1.1.3  christos 			printf("\n\t  Simple Text Authentication data: ");
    140  1.1.1.3  christos 			for (; i < RIP_AUTHLEN; p++, i++)
    141  1.1.1.3  christos 				putchar (isprint(*p) ? *p : '.');
    142  1.1.1.3  christos 		} else if (auth_type == 3) {
    143  1.1.1.3  christos 			printf("\n\t  Auth header:");
    144  1.1.1.3  christos 			printf(" Packet Len %u,", EXTRACT_16BITS((u_int8_t *)ni + 4));
    145  1.1.1.3  christos 			printf(" Key-ID %u,", *((u_int8_t *)ni + 6));
    146  1.1.1.3  christos 			printf(" Auth Data Len %u,", *((u_int8_t *)ni + 7));
    147  1.1.1.3  christos 			printf(" SeqNo %u,", EXTRACT_32BITS(&ni->rip_dest_mask));
    148  1.1.1.3  christos 			printf(" MBZ %u,", EXTRACT_32BITS(&ni->rip_router));
    149  1.1.1.3  christos 			printf(" MBZ %u", EXTRACT_32BITS(&ni->rip_metric));
    150  1.1.1.3  christos 		} else if (auth_type == 1) {
    151  1.1.1.3  christos 			printf("\n\t  Auth trailer:");
    152  1.1.1.3  christos 			print_unknown_data((u_int8_t *)&ni->rip_dest,"\n\t  ",remaining);
    153  1.1.1.3  christos 			return remaining; /* AT spans till the packet end */
    154      1.1  christos                 } else {
    155      1.1  christos 			printf("\n\t  Unknown (%u) Authentication data:",
    156      1.1  christos 			       EXTRACT_16BITS(&ni->rip_tag));
    157  1.1.1.3  christos 			print_unknown_data((u_int8_t *)&ni->rip_dest,"\n\t  ",remaining);
    158      1.1  christos 		}
    159  1.1.1.3  christos 	} else if (family != BSD_AFNUM_INET && family != 0) {
    160      1.1  christos 		printf("\n\t  AFI %s", tok2str(bsd_af_values, "Unknown (%u)", family));
    161      1.1  christos                 print_unknown_data((u_int8_t *)&ni->rip_tag,"\n\t  ",RIP_ROUTELEN-2);
    162  1.1.1.3  christos 	} else { /* BSD_AFNUM_INET or AFI 0 */
    163      1.1  christos 		printf("\n\t  AFI %s, %15s/%-2d, tag 0x%04x, metric: %u, next-hop: ",
    164  1.1.1.3  christos                        tok2str(bsd_af_values, "%u", family),
    165      1.1  christos                        ipaddr_string(&ni->rip_dest),
    166      1.1  christos 		       mask2plen(EXTRACT_32BITS(&ni->rip_dest_mask)),
    167      1.1  christos                        EXTRACT_16BITS(&ni->rip_tag),
    168      1.1  christos                        EXTRACT_32BITS(&ni->rip_metric));
    169      1.1  christos 		if (EXTRACT_32BITS(&ni->rip_router))
    170      1.1  christos 			printf("%s", ipaddr_string(&ni->rip_router));
    171      1.1  christos                 else
    172      1.1  christos                     printf("self");
    173      1.1  christos 	}
    174  1.1.1.3  christos 	return sizeof (*ni);
    175      1.1  christos }
    176      1.1  christos 
    177      1.1  christos void
    178      1.1  christos rip_print(const u_char *dat, u_int length)
    179      1.1  christos {
    180      1.1  christos 	register const struct rip *rp;
    181      1.1  christos 	register const struct rip_netinfo *ni;
    182      1.1  christos 	register u_int i, j;
    183      1.1  christos 
    184      1.1  christos 	if (snapend < dat) {
    185      1.1  christos 		printf(" [|rip]");
    186      1.1  christos 		return;
    187      1.1  christos 	}
    188      1.1  christos 	i = snapend - dat;
    189      1.1  christos 	if (i > length)
    190      1.1  christos 		i = length;
    191      1.1  christos 	if (i < sizeof(*rp)) {
    192      1.1  christos 		printf(" [|rip]");
    193      1.1  christos 		return;
    194      1.1  christos 	}
    195      1.1  christos 	i -= sizeof(*rp);
    196      1.1  christos 
    197      1.1  christos 	rp = (struct rip *)dat;
    198      1.1  christos 
    199      1.1  christos         printf("%sRIPv%u",
    200      1.1  christos                (vflag >= 1) ? "\n\t" : "",
    201      1.1  christos                rp->rip_vers);
    202      1.1  christos 
    203      1.1  christos 	switch (rp->rip_vers) {
    204      1.1  christos 	case 0:
    205      1.1  christos 		/*
    206      1.1  christos 		 * RFC 1058.
    207      1.1  christos 		 *
    208      1.1  christos 		 * XXX - RFC 1058 says
    209      1.1  christos 		 *
    210      1.1  christos 		 * 0  Datagrams whose version number is zero are to be ignored.
    211      1.1  christos 		 *    These are from a previous version of the protocol, whose
    212      1.1  christos 		 *    packet format was machine-specific.
    213      1.1  christos 		 *
    214      1.1  christos 		 * so perhaps we should just dump the packet, in hex.
    215      1.1  christos 		 */
    216      1.1  christos                 print_unknown_data((u_int8_t *)&rp->rip_cmd,"\n\t",length);
    217      1.1  christos 		break;
    218      1.1  christos 	default:
    219      1.1  christos                 /* dump version and lets see if we know the commands name*/
    220      1.1  christos                 printf(", %s, length: %u",
    221      1.1  christos                        tok2str(rip_cmd_values,
    222      1.1  christos                                "unknown command (%u)",
    223      1.1  christos                                rp->rip_cmd),
    224      1.1  christos                        length);
    225      1.1  christos 
    226      1.1  christos                 if (vflag < 1)
    227      1.1  christos                     return;
    228      1.1  christos 
    229      1.1  christos 		switch (rp->rip_cmd) {
    230  1.1.1.3  christos 		case RIPCMD_REQUEST:
    231      1.1  christos 		case RIPCMD_RESPONSE:
    232      1.1  christos 			j = length / sizeof(*ni);
    233  1.1.1.3  christos                         printf(", routes: %u%s", j, rp->rip_vers == 2 ? " or less" : "");
    234      1.1  christos 			ni = (struct rip_netinfo *)(rp + 1);
    235      1.1  christos 			for (; i >= sizeof(*ni); ++ni) {
    236      1.1  christos 				if (rp->rip_vers == 1)
    237  1.1.1.3  christos 				{
    238      1.1  christos 					rip_entry_print_v1(ni);
    239  1.1.1.3  christos 					i -= sizeof(*ni);
    240  1.1.1.3  christos 				}
    241      1.1  christos 				else if (rp->rip_vers == 2)
    242  1.1.1.3  christos 					i -= rip_entry_print_v2(ni, i);
    243      1.1  christos                                 else
    244      1.1  christos                                     break;
    245      1.1  christos 			}
    246  1.1.1.3  christos 			if (i)
    247      1.1  christos 				printf("[|rip]");
    248      1.1  christos 			break;
    249      1.1  christos 
    250      1.1  christos 		case RIPCMD_TRACEOFF:
    251      1.1  christos 		case RIPCMD_POLL:
    252      1.1  christos 		case RIPCMD_POLLENTRY:
    253      1.1  christos 			break;
    254      1.1  christos 
    255      1.1  christos 		case RIPCMD_TRACEON:
    256      1.1  christos                     /* fall through */
    257      1.1  christos 	        default:
    258      1.1  christos                     if (vflag <= 1) {
    259      1.1  christos                         if(!print_unknown_data((u_int8_t *)rp,"\n\t",length))
    260      1.1  christos                             return;
    261      1.1  christos                     }
    262      1.1  christos                     break;
    263      1.1  christos                 }
    264      1.1  christos                 /* do we want to see an additionally hexdump ? */
    265      1.1  christos                 if (vflag> 1) {
    266      1.1  christos                     if(!print_unknown_data((u_int8_t *)rp,"\n\t",length))
    267      1.1  christos                         return;
    268      1.1  christos                 }
    269      1.1  christos         }
    270      1.1  christos }
    271      1.1  christos 
    272      1.1  christos 
    273