The address family isn't part of the RIP header, it's part of the RIP

entry.

Show, for each RIP entry, a summary line with, for IP routes, the
destination and metric, as well as showing the detailed breakdown below
it.

Dissect authentication entries.

svn path=/trunk/; revision=114
This commit is contained in:
Guy Harris 1998-11-20 09:24:42 +00:00
parent d570947a14
commit c1902f17ea
2 changed files with 99 additions and 55 deletions

View File

@ -2,7 +2,7 @@
* Routines for RIPv1 and RIPv2 packet disassembly
* (c) Copyright Hannes R. Boehm <hannes@boehm.org>
*
* $Id: packet-rip.c,v 1.5 1998/11/18 03:01:36 gerald Exp $
* $Id: packet-rip.c,v 1.6 1998/11/20 09:24:41 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -42,22 +42,22 @@
#include "packet.h"
#include "packet-rip.h"
static void dissect_ip_rip_vektor(guint8 version,
const e_rip_vektor *rip_vektor, int offset, GtkWidget *tree);
static void dissect_rip_authentication(const e_rip_authentication *rip_authentication,
int offset, GtkWidget *tree);
void
dissect_rip(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) {
e_riphdr *rip_header;
e_rip_vektor rip_vektor;
int auth = FALSE;
e_rip_entry rip_entry;
guint16 family;
GtkWidget *rip_tree = NULL, *ti;
GtkWidget *rip_vektor_tree;
/* we do the range checking of the index when checking wether or not this is a RIP packet */
char *packet_type[8] = { "never used", "Request", "Response",
static char *packet_type[8] = { "never used", "Request", "Response",
"Traceon", "Traceoff", "Vendor specific (Sun)" };
char *version[3] = { "RIP", "RIPv1", "RIPv2" };
static char *version[3] = { "RIP", "RIPv1", "RIPv2" };
rip_header = (e_riphdr *) &pd[offset];
/* Check if we 've realy got a RIP packet */
@ -85,7 +85,6 @@ dissect_rip(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) {
return;
}
if (check_col(fd, COL_PROTOCOL))
col_add_str(fd, COL_PROTOCOL, version[rip_header->version] );
if (check_col(fd, COL_INFO))
@ -96,52 +95,87 @@ dissect_rip(const u_char *pd, int offset, frame_data *fd, GtkTree *tree) {
rip_tree = gtk_tree_new();
add_subtree(ti, rip_tree, ETT_RIP);
add_item_to_tree(rip_tree, offset + 1, 1, "Version: %d", rip_header->version);
add_item_to_tree(rip_tree, offset, 1, "Command: %d (%s)", rip_header->command, packet_type[rip_header->command]);
switch(ntohs(rip_header->family)){
case 2: /* IP */
add_item_to_tree(rip_tree, offset + 4 , 2, "Address Family ID: IP");
break;
case 0xFFFF:
add_item_to_tree(rip_tree, offset + 4 , 2, "Authenticated Packet");
auth = TRUE;
break;
default:
break;
/* return; */
}
if(rip_header->version == RIPv2) {
add_item_to_tree(rip_tree, offset + 1, 1, "Version: %d", rip_header->version);
if(rip_header->version == RIPv2)
add_item_to_tree(rip_tree, offset + 2 , 2, "Routing Domain: %d", ntohs(rip_header->domain));
add_item_to_tree(rip_tree, offset + 6 , 2, "Route Tag: %d", ntohs(rip_header->tag));
}
/* skip header */
offset += RIP_HEADER_LENGTH;
/* if present, skip the authentication */
if(auth){
offset += RIP_VEKTOR_LENGTH;
}
/* zero or more distance vektors */
/* zero or more entries */
while((fd->cap_len - offset) >= RIP_VEKTOR_LENGTH){
ti = add_item_to_tree(GTK_WIDGET(rip_tree), offset, RIP_VEKTOR_LENGTH, "RIP Vektor");
rip_vektor_tree = gtk_tree_new();
add_subtree(ti, rip_vektor_tree, ETT_RIP_VEC);
memcpy(&rip_vektor, &pd[offset], sizeof(rip_vektor)); /* avoid alignment problem */
add_item_to_tree(rip_vektor_tree, offset, 4, "IP Address: %s", ip_to_str((guint8 *) &(rip_vektor.ip)));
while((fd->cap_len - offset) >= RIP_ENTRY_LENGTH){
memcpy(&rip_entry, &pd[offset], sizeof(rip_entry)); /* avoid alignment problem */
family = ntohs(rip_entry.vektor.family);
switch (family) {
case 2: /* IP */
ti = add_item_to_tree(GTK_WIDGET(rip_tree), offset,
RIP_ENTRY_LENGTH, "IP Address: %s, Metric: %ld",
ip_to_str((guint8 *) &(rip_entry.vektor.ip)),
(long)ntohl(rip_entry.vektor.metric));
dissect_ip_rip_vektor(rip_header->version, &rip_entry.vektor,
offset, ti);
break;
case 0xFFFF:
add_item_to_tree(GTK_WIDGET(rip_tree), offset,
RIP_ENTRY_LENGTH, "Authention");
dissect_rip_authentication(&rip_entry.authentication,
offset, ti);
break;
default:
add_item_to_tree(GTK_WIDGET(rip_tree), offset,
RIP_ENTRY_LENGTH, "Unknown address family %u",
family);
break;
}
if(rip_header->version == RIPv2) {
add_item_to_tree(rip_vektor_tree, offset + 4 , 4, "Netmask: %s",
ip_to_str((guint8 *) &(rip_vektor.mask)));
add_item_to_tree(rip_vektor_tree, offset + 8 , 4, "Next Hop: %s",
ip_to_str((guint8 *) &(rip_vektor.next_hop)));
}
add_item_to_tree(rip_vektor_tree, offset + 12 , 4, "Metric: %ld", (long)ntohl(rip_vektor.metric));
offset += RIP_VEKTOR_LENGTH;
};
offset += RIP_ENTRY_LENGTH;
}
}
}
static void
dissect_ip_rip_vektor(guint8 version, const e_rip_vektor *rip_vektor,
int offset, GtkWidget *tree)
{
GtkWidget *rip_vektor_tree;
rip_vektor_tree = gtk_tree_new();
add_subtree(tree, rip_vektor_tree, ETT_RIP_VEC);
add_item_to_tree(rip_vektor_tree, offset, 2, "Address Family ID: IP");
if(version == RIPv2)
add_item_to_tree(rip_vektor_tree, offset + 2 , 2, "Route Tag: %d",
ntohs(rip_vektor->tag));
add_item_to_tree(rip_vektor_tree, offset + 4, 4, "IP Address: %s",
ip_to_str((guint8 *) &(rip_vektor->ip)));
if(version == RIPv2) {
add_item_to_tree(rip_vektor_tree, offset + 8 , 4, "Netmask: %s",
ip_to_str((guint8 *) &(rip_vektor->mask)));
add_item_to_tree(rip_vektor_tree, offset + 12, 4, "Next Hop: %s",
ip_to_str((guint8 *) &(rip_vektor->next_hop)));
}
add_item_to_tree(rip_vektor_tree, offset + 16, 4, "Metric: %ld",
(long)ntohl(rip_vektor->metric));
}
static void
dissect_rip_authentication(const e_rip_authentication *rip_authentication,
int offset, GtkWidget *tree)
{
GtkWidget *rip_authentication_tree;
guint16 authtype;
rip_authentication_tree = gtk_tree_new();
add_subtree(tree, rip_authentication_tree, ETT_RIP_VEC);
authtype = ntohs(rip_authentication->authtype);
add_item_to_tree(rip_authentication_tree, offset + 2, 2,
"Authentication type: %u", authtype);
if (authtype == 2)
add_item_to_tree(rip_authentication_tree, offset + 4 , 16,
"Password: %.16s",
rip_authentication->authentication);
}

View File

@ -3,21 +3,31 @@
#define RIPv1 1
#define RIPv2 2
#define RIP_HEADER_LENGTH 8
#define RIP_VEKTOR_LENGTH 16
#define RIP_HEADER_LENGTH 4
#define RIP_ENTRY_LENGTH 20
typedef struct _e_riphdr {
guint8 command;
guint8 version;
guint16 domain;
guint16 family;
guint16 tag;
} e_riphdr;
typedef struct _e_rip_vektor {
guint16 family;
guint16 tag;
guint32 ip;
guint32 mask;
guint32 next_hop;
guint32 metric;
} e_rip_vektor;
typedef struct _e_rip_authentication {
guint16 family;
guint16 authtype;
guint8 authentication[16];
} e_rip_authentication;
typedef union _e_rip_entry {
e_rip_vektor vektor;
e_rip_authentication authentication;
} e_rip_entry;