blob: 61c131f48bce3beccb624ffcc1adfb9ad8d84184 [file] [log] [blame]
mcrf555c161999-10-07 23:47:09 +00001/*
2 * Copyright (c) 1989, 1990, 1991, 1993, 1994, 1996
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
16 * written permission.
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 */
21
22#ifndef lint
23static const char rcsid[] =
hannesc603bd12002-12-22 02:01:49 +000024 "@(#) $Header: /tcpdump/master/tcpdump/print-rip.c,v 1.55 2002-12-22 02:01:49 hannes Exp $ (LBL)";
fennerb9ac23c1999-11-21 09:36:43 +000025#endif
26
27#ifdef HAVE_CONFIG_H
28#include "config.h"
mcrf555c161999-10-07 23:47:09 +000029#endif
30
risso3d932492002-08-01 08:52:55 +000031#include <tcpdump-stdinc.h>
mcrf555c161999-10-07 23:47:09 +000032
33#include <stdio.h>
itojunfebfc922000-10-03 04:19:07 +000034#include <string.h>
mcrf555c161999-10-07 23:47:09 +000035
36#include "interface.h"
37#include "addrtoname.h"
38#include "extract.h" /* must come after interface.h */
39
40struct rip {
itojun10afb022002-11-09 17:19:16 +000041 u_int8_t rip_cmd; /* request/response */
42 u_int8_t rip_vers; /* protocol version # */
hannesc603bd12002-12-22 02:01:49 +000043 u_int8_t unused[2]; /* unused */
guyfcc82f42002-12-11 07:13:49 +000044};
hannesc603bd12002-12-22 02:01:49 +000045
mcrf555c161999-10-07 23:47:09 +000046#define RIPCMD_REQUEST 1 /* want info */
47#define RIPCMD_RESPONSE 2 /* responding to request */
48#define RIPCMD_TRACEON 3 /* turn tracing on */
49#define RIPCMD_TRACEOFF 4 /* turn it off */
50#define RIPCMD_POLL 5 /* want info from everybody */
51#define RIPCMD_POLLENTRY 6 /* poll for entry */
52
hannesc603bd12002-12-22 02:01:49 +000053static const struct tok rip_cmd_values[] = {
54 { RIPCMD_REQUEST, "Request" },
55 { RIPCMD_RESPONSE, "Response" },
56 { RIPCMD_TRACEON, "Trace on" },
57 { RIPCMD_TRACEOFF, "Trace off" },
58 { RIPCMD_POLL, "Poll" },
59 { RIPCMD_POLLENTRY, "Poll Entry" },
60 { 0, NULL}
61};
62
63#define RIP_AUTHLEN 16
64#define RIP_ROUTELEN 20
65
66/*
67 * rfc 1723
68 *
69 * 0 1 2 3 3
70 * 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
71 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
72 * | Command (1) | Version (1) | unused |
73 * +---------------+---------------+-------------------------------+
74 * | Address Family Identifier (2) | Route Tag (2) |
75 * +-------------------------------+-------------------------------+
76 * | IP Address (4) |
77 * +---------------------------------------------------------------+
78 * | Subnet Mask (4) |
79 * +---------------------------------------------------------------+
80 * | Next Hop (4) |
81 * +---------------------------------------------------------------+
82 * | Metric (4) |
83 * +---------------------------------------------------------------+
84 *
85 */
itojuna9099322000-06-18 17:41:35 +000086
mcrf555c161999-10-07 23:47:09 +000087struct rip_netinfo {
itojun10afb022002-11-09 17:19:16 +000088 u_int16_t rip_family;
89 u_int16_t rip_tag;
mcrf555c161999-10-07 23:47:09 +000090 u_int32_t rip_dest;
91 u_int32_t rip_dest_mask;
92 u_int32_t rip_router;
93 u_int32_t rip_metric; /* cost of route */
guyfcc82f42002-12-11 07:13:49 +000094};
mcrf555c161999-10-07 23:47:09 +000095
96static void
guyc422d3a2002-09-05 21:25:34 +000097rip_entry_print_v1(register const struct rip_netinfo *ni)
itojuna9099322000-06-18 17:41:35 +000098{
99 register u_short family;
mcrf555c161999-10-07 23:47:09 +0000100
itojuna9099322000-06-18 17:41:35 +0000101 /* RFC 1058 */
102 family = EXTRACT_16BITS(&ni->rip_family);
103 if (family != AF_INET) {
hannesc603bd12002-12-22 02:01:49 +0000104 printf("\n\t AFI: %u:", family);
105 print_unknown_data((u_int8_t *)&ni->rip_family,"\n\t ",RIP_ROUTELEN);
itojuna9099322000-06-18 17:41:35 +0000106 return;
107 }
guyfcc82f42002-12-11 07:13:49 +0000108 if (EXTRACT_16BITS(&ni->rip_tag) ||
109 EXTRACT_32BITS(&ni->rip_dest_mask) ||
110 EXTRACT_32BITS(&ni->rip_router)) {
itojuna9099322000-06-18 17:41:35 +0000111 /* MBZ fields not zero */
hannesc603bd12002-12-22 02:01:49 +0000112 print_unknown_data((u_int8_t *)&ni->rip_family,"\n\t ",RIP_ROUTELEN);
itojuna9099322000-06-18 17:41:35 +0000113 return;
hannesc603bd12002-12-22 02:01:49 +0000114 } /* AF_INET */
115 printf("\n\t %s, metric: %u",
116 ipaddr_string(&ni->rip_dest),
itojuna9099322000-06-18 17:41:35 +0000117 EXTRACT_32BITS(&ni->rip_metric));
118}
119
120static void
guyc422d3a2002-09-05 21:25:34 +0000121rip_entry_print_v2(register const struct rip_netinfo *ni)
itojuna9099322000-06-18 17:41:35 +0000122{
123 register u_char *p;
124 register u_short family;
guy09a08a42000-09-24 07:59:35 +0000125 u_char buf[RIP_AUTHLEN];
itojuna9099322000-06-18 17:41:35 +0000126
itojuna9099322000-06-18 17:41:35 +0000127 family = EXTRACT_16BITS(&ni->rip_family);
hannesc603bd12002-12-22 02:01:49 +0000128 if (family == 0xFFFF) { /* 16 bytes authentication ? */
129 if (EXTRACT_16BITS(&ni->rip_tag) == 2) { /* simple text authentication ? */
itojuna9099322000-06-18 17:41:35 +0000130 memcpy(buf, &ni->rip_dest, sizeof(buf));
131 buf[sizeof(buf)-1] = '\0';
132 for (p = buf; *p; p++) {
133 if (!isprint(*p))
134 break;
135 }
hannesc603bd12002-12-22 02:01:49 +0000136 printf("\n\t Simple Text Authentication data: %s", buf);
137 } else {
138 printf("\n\t Unknown (%u) Authentication data:",
itojuna9099322000-06-18 17:41:35 +0000139 EXTRACT_16BITS(&ni->rip_tag));
hannesc603bd12002-12-22 02:01:49 +0000140 print_unknown_data((u_int8_t *)&ni->rip_dest,"\n\t ",RIP_AUTHLEN);
itojuna9099322000-06-18 17:41:35 +0000141 }
142 } else if (family != AF_INET) {
hannesc603bd12002-12-22 02:01:49 +0000143 printf("\n\t AFI: %u", family);
144 print_unknown_data((u_int8_t *)&ni->rip_tag,"\n\t ",RIP_ROUTELEN-2);
itojuna9099322000-06-18 17:41:35 +0000145 return;
146 } else { /* AF_INET */
hannesc603bd12002-12-22 02:01:49 +0000147 printf("\n\t AFI: IPv4: %15s/%-2d, tag 0x%04x, metric: %u, next-hop: ",
148 ipaddr_string(&ni->rip_dest),
149 mask2plen(EXTRACT_32BITS(&ni->rip_dest_mask)),
150 EXTRACT_16BITS(&ni->rip_tag),
151 EXTRACT_32BITS(&ni->rip_metric));
guyfcc82f42002-12-11 07:13:49 +0000152 if (EXTRACT_32BITS(&ni->rip_router))
hannesc603bd12002-12-22 02:01:49 +0000153 printf("%s", ipaddr_string(&ni->rip_router));
154 else
155 printf("self");
mcrf555c161999-10-07 23:47:09 +0000156 }
mcrf555c161999-10-07 23:47:09 +0000157}
158
159void
160rip_print(const u_char *dat, u_int length)
161{
162 register const struct rip *rp;
163 register const struct rip_netinfo *ni;
guyedb0e922002-09-05 00:00:07 +0000164 register u_int i, j;
165 register int trunc;
mcrf555c161999-10-07 23:47:09 +0000166
guyedb0e922002-09-05 00:00:07 +0000167 if (snapend < dat) {
fennera2392b01999-11-22 04:24:28 +0000168 printf(" [|rip]");
mcrf555c161999-10-07 23:47:09 +0000169 return;
fennera2392b01999-11-22 04:24:28 +0000170 }
guyedb0e922002-09-05 00:00:07 +0000171 i = snapend - dat;
172 if (i > length)
173 i = length;
174 if (i < sizeof(*rp)) {
175 printf(" [|rip]");
176 return;
177 }
178 i -= sizeof(*rp);
mcrf555c161999-10-07 23:47:09 +0000179
180 rp = (struct rip *)dat;
hannesc603bd12002-12-22 02:01:49 +0000181
182 printf("%sRIPv%u",
183 (vflag >= 1) ? "\n\t" : "",
184 rp->rip_vers);
185
mcrf555c161999-10-07 23:47:09 +0000186 switch (rp->rip_vers) {
itojuna9099322000-06-18 17:41:35 +0000187 case 0:
guy09a08a42000-09-24 07:59:35 +0000188 /*
189 * RFC 1058.
190 *
191 * XXX - RFC 1058 says
192 *
193 * 0 Datagrams whose version number is zero are to be ignored.
194 * These are from a previous version of the protocol, whose
195 * packet format was machine-specific.
196 *
hannesc603bd12002-12-22 02:01:49 +0000197 * so perhaps we should just dump the packet, in hex.
itojun3733a8b2001-01-28 08:14:55 +0000198 */
hannesc603bd12002-12-22 02:01:49 +0000199 print_unknown_data((u_int8_t *)&rp->rip_cmd,"\n\t",length);
mcrf555c161999-10-07 23:47:09 +0000200 break;
mcrf555c161999-10-07 23:47:09 +0000201 default:
hannesc603bd12002-12-22 02:01:49 +0000202 /* dump version and lets see if we know the commands name*/
203 printf(", %s, length: %u",
204 tok2str(rip_cmd_values,
205 "unknown command (%u)",
206 rp->rip_cmd),
207 length);
208
209 if (vflag < 1)
210 return;
211
itojuna9099322000-06-18 17:41:35 +0000212 switch (rp->rip_cmd) {
itojuna9099322000-06-18 17:41:35 +0000213 case RIPCMD_RESPONSE:
214 j = length / sizeof(*ni);
hannesc603bd12002-12-22 02:01:49 +0000215 printf(", routes: %u",j);
itojuna9099322000-06-18 17:41:35 +0000216 trunc = (i / sizeof(*ni)) != j;
217 ni = (struct rip_netinfo *)(rp + 1);
guyedb0e922002-09-05 00:00:07 +0000218 for (; i >= sizeof(*ni); ++ni) {
itojuna9099322000-06-18 17:41:35 +0000219 if (rp->rip_vers == 1)
guyc422d3a2002-09-05 21:25:34 +0000220 rip_entry_print_v1(ni);
hannesc603bd12002-12-22 02:01:49 +0000221 else if (rp->rip_vers == 2)
guyc422d3a2002-09-05 21:25:34 +0000222 rip_entry_print_v2(ni);
hannesc603bd12002-12-22 02:01:49 +0000223 else
224 break;
guyedb0e922002-09-05 00:00:07 +0000225 i -= sizeof(*ni);
itojuna9099322000-06-18 17:41:35 +0000226 }
227 if (trunc)
228 printf("[|rip]");
229 break;
hannesc603bd12002-12-22 02:01:49 +0000230
231 case RIPCMD_REQUEST:
itojuna9099322000-06-18 17:41:35 +0000232 case RIPCMD_TRACEOFF:
itojuna9099322000-06-18 17:41:35 +0000233 case RIPCMD_POLL:
itojuna9099322000-06-18 17:41:35 +0000234 case RIPCMD_POLLENTRY:
itojuna9099322000-06-18 17:41:35 +0000235 break;
hannesc603bd12002-12-22 02:01:49 +0000236
237 case RIPCMD_TRACEON:
238 /* fall through */
239 default:
240 if (vflag <= 1) {
241 if(!print_unknown_data((u_int8_t *)rp,"\n\t",length))
242 return;
243 }
244 break;
245 }
246 /* do we want to see an additionally hexdump ? */
247 if (vflag> 1) {
248 if(!print_unknown_data((u_int8_t *)rp,"\n\t",length))
249 return;
250 }
251 }
mcrf555c161999-10-07 23:47:09 +0000252}
hannesc603bd12002-12-22 02:01:49 +0000253
254