MRDISC support, from Ronnie Sahlberg.

svn path=/trunk/; revision=3614
This commit is contained in:
Guy Harris 2001-06-27 20:19:19 +00:00
parent fafefda449
commit db974f9b06
6 changed files with 395 additions and 4 deletions

View File

@ -534,6 +534,7 @@ Ronnie Sahlberg <rsahlber@bigpond.net.au> {
Tvbuffified and bug-fixed RX and AFS dissectors
Support for filtering on absolute and relative time fields
DVMRP support
MRDISC support
}
Borosa Tomislav <tomislav.borosa@SIEMENS.HR> {

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.338 2001/06/21 22:25:51 guy Exp $
# $Id: Makefile.am,v 1.339 2001/06/27 20:19:19 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -161,6 +161,7 @@ DISSECTOR_SRC = \
packet-mount.c \
packet-mpeg1.c \
packet-mpls.c \
packet-mrdisc.c \
packet-msproxy.c \
packet-mtp3.c \
packet-nbipx.c \

View File

@ -1,7 +1,7 @@
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.119 2001/06/21 22:25:51 guy Exp $
# $Id: Makefile.nmake,v 1.120 2001/06/27 20:19:19 guy Exp $
include config.nmake
include <win32.mak>
@ -115,6 +115,7 @@ DISSECTOR_SRC = \
packet-mount.c \
packet-mpeg1.c \
packet-mpls.c \
packet-mrdisc.c \
packet-msproxy.c \
packet-mtp3.c \
packet-nbipx.c \

View File

@ -1,7 +1,7 @@
/* packet-igmp.c 2001 Ronnie Sahlberg <rsahlber@bigpond.net.au>
* Routines for IGMP packet disassembly
*
* $Id: packet-igmp.c,v 1.5 2001/06/18 02:17:47 guy Exp $
* $Id: packet-igmp.c,v 1.6 2001/06/27 20:19:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -30,7 +30,7 @@
draft-ietf-idmr-igmp-v3-07 Version 3
Size in bytes for each packet
type RFC988 RFC1054 RFC2236 RFC???? DVMRP
type RFC988 RFC1054 RFC2236 RFC???? DVMRP MRDISC
v0 v1 v2 v3 v1/v3
0x01 20
0x02 20
@ -46,9 +46,14 @@
0x16 8
0x17 8
0x22 >=8
0x24 a
0x25 a
0x26 a
* Differs in second byte of protocol. Always 0 in V1
x DVMRP Protocol see packet-dvmrp.c
DVMRP is defined in the following RFCs
RFC1075 Version 1
@ -57,6 +62,13 @@
V1 and V3 can be distinguished by looking at bytes 6 and 7 in the
IGMP header.
If header[6]==0xff and header[7]==0x03 we have version 3.
a MRDISC Protocol see packet-mrdisc.c
MRDISC : IGMP Multicast Router DISCovery
draft-ietf-idmr-igmp-mrdisc-06.txt
TTL == 1 and IP.DST==224.0.0.2 for all packets
*/
#ifdef HAVE_CONFIG_H
@ -75,6 +87,7 @@
#include "ipproto.h"
#include "in_cksum.h"
#include "packet-dvmrp.h"
#include "packet-mrdisc.h"
static int proto_igmp = -1;
static int hf_type = -1;
@ -105,6 +118,8 @@ static int ett_group_record = -1;
static int ett_sqrv_bits = -1;
static int ett_max_resp = -1;
#define MC_ALL_ROUTERS 0xe0000002
#define IGMP_V0_CREATE_GROUP_REQUEST 0x01
#define IGMP_V0_CREATE_GROUP_REPLY 0x02
@ -123,6 +138,9 @@ static int ett_max_resp = -1;
#define IGMP_V1_TRACEROUTE_RESPONSE 0x1e /* XXX */
#define IGMP_V1_TRACEROUTE_MESSAGE 0x1f /* XXX */
#define IGMP_V3_MEMBERSHIP_REPORT 0x22
#define IGMP_TYPE_0x24 0x24
#define IGMP_TYPE_0x25 0x25
#define IGMP_TYPE_0x26 0x26
static const value_string commands[] = {
{IGMP_V0_CREATE_GROUP_REQUEST, "Create Group Request" },
@ -575,6 +593,7 @@ dissect_igmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
proto_item *item;
int offset = 0;
unsigned char type;
guint32 dst;
item = proto_tree_add_item(parent_tree, proto_igmp, tvb, offset, 0, FALSE);
tree = proto_item_add_subtree(item, ett_igmp);
@ -656,6 +675,24 @@ dissect_igmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
case IGMP_V3_MEMBERSHIP_REPORT:
offset = dissect_igmp_v3_response(tvb, pinfo, tree, type, offset);
break;
case IGMP_TYPE_0x24:
dst = htonl(MC_ALL_ROUTERS);
if (!memcmp(pinfo->dst.data, &dst, 4)) {
offset = dissect_mrdisc(tvb, pinfo, parent_tree, offset);
}
break;
case IGMP_TYPE_0x25:
dst = htonl(MC_ALL_ROUTERS);
if (!memcmp(pinfo->dst.data, &dst, 4)) {
offset = dissect_mrdisc(tvb, pinfo, parent_tree, offset);
}
break;
case IGMP_TYPE_0x26:
dst = htonl(MC_ALL_ROUTERS);
if (!memcmp(pinfo->dst.data, &dst, 4)) {
offset = dissect_mrdisc(tvb, pinfo, parent_tree, offset);
}
break;
default:
offset = dissect_igmp_unknown(tvb, pinfo, tree, type, offset);

320
packet-mrdisc.c Normal file
View File

@ -0,0 +1,320 @@
/* packet-mrdisc.c 2001 Ronnie Sahlberg <rsahlber@bigpond.net.au>
* Routines for IGMP/MRDISC packet disassembly
*
* $Id: packet-mrdisc.c,v 1.1 2001/06/27 20:19:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
MRDISC
code
0x24 x
0x25 x
0x26 x
MRDISC : IGMP Multicast Router DISCovery
Defined in draft-ietf-idmr-igmp-mrdisc-06.txt
TTL==1 and IP.DST==224.0.0.2 for all packets.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include "packet.h"
#include "in_cksum.h"
#include "packet-mrdisc.h"
static int proto_mrdisc = -1;
static int hf_checksum = -1;
static int hf_checksum_bad = -1;
static int hf_type = -1;
static int hf_advint = -1;
static int hf_numopts = -1;
static int hf_options = -1;
static int hf_option = -1;
static int hf_option_len = -1;
static int hf_qi = -1;
static int hf_rv = -1;
static int hf_option_bytes = -1;
static int ett_mrdisc = -1;
static int ett_options = -1;
#define MRDISC_MRA 0x24
#define MRDISC_MRS 0x25
#define MRDISC_MRT 0x26
static const value_string mrdisc_types[] = {
{MRDISC_MRA, "Multicast Router Advertisement"},
{MRDISC_MRS, "Multicast Router Solicitation"},
{MRDISC_MRT, "Multicast Router Termination"},
{0, NULL}
};
#define MRDISC_QI 0x01
#define MRDISC_RV 0x02
static const value_string mrdisc_options[] = {
{MRDISC_QI, "Query Interval"},
{MRDISC_RV, "Robustness Variable"},
{0, NULL}
};
static void mrdisc_checksum(proto_tree *tree,tvbuff_t *tvb, int len)
{
guint16 cksum,hdrcksum;
vec_t cksum_vec[1];
cksum_vec[0].ptr = tvb_get_ptr(tvb, 0, len);
cksum_vec[0].len = len;
hdrcksum = tvb_get_ntohs(tvb, 2);
cksum = in_cksum(&cksum_vec[0],1);
if (cksum==0) {
proto_tree_add_uint_format(tree, hf_checksum, tvb, 2, 2, hdrcksum, "Header checksum: 0x%04x (correct)", hdrcksum);
} else {
proto_tree_add_item_hidden(tree, hf_checksum_bad, tvb, 2, 2, TRUE);
proto_tree_add_uint_format(tree, hf_checksum, tvb, 2, 2, hdrcksum, "Header checksum: 0x%04x (incorrect, should be 0x%04x)", hdrcksum,in_cksum_shouldbe(hdrcksum,cksum));
}
return;
}
static int
dissect_mrdisc_mra(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset)
{
guint16 num;
/* Advertising Interval */
proto_tree_add_uint(parent_tree, hf_advint, tvb,
offset, 1, tvb_get_guint8(tvb, offset));
offset += 1;
/* checksum */
mrdisc_checksum(parent_tree, tvb, tvb_length_remaining(tvb, 0));
offset += 2;
/* skip unused bytes */
offset += 2;
/* number of options */
num = tvb_get_ntohs(tvb, offset);
proto_tree_add_uint(parent_tree, hf_numopts, tvb,
offset, 2, num);
offset += 2;
/* process any options */
while (num--) {
proto_tree *tree;
proto_item *item;
guint8 type,len;
int old_offset = offset;
item = proto_tree_add_item(parent_tree, hf_options,
tvb, offset, 0, FALSE);
tree = proto_item_add_subtree(item, ett_options);
type = tvb_get_guint8(tvb, offset);
proto_tree_add_uint(tree, hf_option, tvb, offset, 1, type);
offset += 1;
len = tvb_get_guint8(tvb, offset);
proto_tree_add_uint(tree, hf_option_len, tvb, offset, 1, len);
offset += 1;
switch (type) {
case MRDISC_QI:
if (item) {
proto_item_set_text(item,"Option: %s == %d",
val_to_str(type, mrdisc_options, "unknown %x"),
tvb_get_ntohs(tvb, offset));
}
proto_tree_add_uint(tree, hf_qi, tvb, offset, len,
tvb_get_ntohs(tvb, offset));
offset += len;
break;
case MRDISC_RV:
if (item) {
proto_item_set_text(item,"Option: %s == %d",
val_to_str(type, mrdisc_options, "unknown %x"),
tvb_get_ntohs(tvb, offset));
}
proto_tree_add_uint(tree, hf_rv, tvb, offset, len,
tvb_get_ntohs(tvb, offset));
offset += len;
break;
default:
if (item) {
proto_item_set_text(item,"Option: unknown");
}
proto_tree_add_bytes(tree, hf_option_bytes,
tvb, offset, len, tvb_get_ptr(tvb, offset, len));
offset += len;
}
if (item) {
proto_item_set_len(item, offset-old_offset);
}
}
return offset;
}
static int
dissect_mrdisc_mrst(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset)
{
/* skip reserved byte */
offset += 1;
/* checksum */
mrdisc_checksum(parent_tree, tvb, tvb_length_remaining(tvb, 0));
offset += 2;
return offset;
}
/* This function is only called from the IGMP dissector */
int
dissect_mrdisc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset)
{
proto_tree *tree;
proto_item *item;
guint8 type;
if (!proto_is_protocol_enabled(proto_mrdisc)) {
/* we are not enabled, skip entire packet to be nice
to the igmp layer. (so clicking on IGMP will display the data)
*/
return offset+tvb_length_remaining(tvb, offset);
}
item = proto_tree_add_item(parent_tree, proto_mrdisc, tvb, offset, 0, FALSE);
tree = proto_item_add_subtree(item, ett_mrdisc);
if (check_col(pinfo->fd, COL_PROTOCOL)) {
col_set_str(pinfo->fd, COL_PROTOCOL, "MRDISC");
}
if (check_col(pinfo->fd, COL_INFO)) {
col_clear(pinfo->fd, COL_INFO);
}
type = tvb_get_guint8(tvb, offset);
if (check_col(pinfo->fd, COL_INFO)) {
col_add_fstr(pinfo->fd, COL_INFO,
"%s",val_to_str(type, mrdisc_types,
"Unknown Type:0x%02x"));
}
/* type of command */
proto_tree_add_uint(tree, hf_type, tvb, offset, 1, type);
offset += 1;
switch (type) {
case MRDISC_MRA:
offset = dissect_mrdisc_mra(tvb, pinfo, tree, offset);
break;
case MRDISC_MRS:
case MRDISC_MRT:
/* MRS and MRT packets looks the same */
offset = dissect_mrdisc_mrst(tvb, pinfo, tree, offset);
break;
}
return offset;
}
void
proto_register_mrdisc(void)
{
static hf_register_info hf[] = {
{ &hf_type,
{ "Type", "mrdisc.type", FT_UINT8, BASE_HEX,
VALS(mrdisc_types), 0, "MRDISC Packet Type", HFILL }},
{ &hf_checksum,
{ "Checksum", "mrdisc.checksum", FT_UINT16, BASE_HEX,
NULL, 0, "MRDISC Checksum", HFILL }},
{ &hf_checksum_bad,
{ "Bad Checksum", "mrdisc.checksum_bad", FT_BOOLEAN, BASE_NONE,
NULL, 0, "Bad MRDISC Checksum", HFILL }},
{ &hf_advint,
{ "Advertising Interval", "mrdisc.adv_int", FT_UINT8, BASE_DEC,
NULL, 0, "MRDISC Advertising Interval in seconds", HFILL }},
{ &hf_numopts,
{ "Number Of Options", "mrdisc.num_opts", FT_UINT16, BASE_DEC,
NULL, 0, "MRDISC Number Of Options", HFILL }},
{ &hf_options,
{ "Options", "mrdisc.options", FT_NONE, BASE_NONE,
NULL, 0, "MRDISC Options", HFILL }},
{ &hf_option,
{ "Option", "mrdisc.option", FT_UINT8, BASE_DEC,
VALS(mrdisc_options), 0, "MRDISC Option Type", HFILL }},
{ &hf_option_len,
{ "Length", "mrdisc.opt_len", FT_UINT8, BASE_DEC,
NULL, 0, "MRDISC Option Length", HFILL }},
{ &hf_qi,
{ "Query Interval", "mrdisc.query_int", FT_UINT16, BASE_DEC,
NULL, 0, "MRDISC Query Interval", HFILL }},
{ &hf_rv,
{ "Robustness Variable", "mrdisc.rob_var", FT_UINT16, BASE_DEC,
NULL, 0, "MRDISC Robustness Variable", HFILL }},
{ &hf_option_bytes,
{ "Data", "mrdisc.option_data", FT_BYTES, BASE_NONE,
NULL, 0, "MRDISC Unknown Option Data", HFILL }},
};
static gint *ett[] = {
&ett_mrdisc,
&ett_options,
};
proto_mrdisc = proto_register_protocol("Multicast Router DISCovery protocol",
"MRDISC", "mrdisc");
proto_register_field_array(proto_mrdisc, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
}

31
packet-mrdisc.h Normal file
View File

@ -0,0 +1,31 @@
/* packet-mrdisc.h 2001 Ronnie Sahlberg <rsahlber@bigpond.net.au>
* Declarations of routines for IGMP/MRDISC packet disassembly
*
* $Id: packet-mrdisc.h,v 1.1 2001/06/27 20:19:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __PACKET_MRDISC_H__
#define __PACKET_MRDISC_H__
int dissect_mrdisc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset);
#endif