From Josef Korelus <jkor [AT] quick.cz>: GPRS Network

Service-over-Frame-Relay support, including preference for Frame Relay
to select FRF 3.2/Cisco HDLC encapsulation or encapsulation of GPRS NS
PDUs.

svn path=/trunk/; revision=8362
This commit is contained in:
Guy Harris 2003-09-03 22:26:38 +00:00
parent afd3103ba2
commit ea4ff6a749
6 changed files with 309 additions and 7 deletions

View File

@ -1817,6 +1817,10 @@ Jean-Michel Fayard <jean-michel.fayard [AT] moufrei.de> {
BOOTP/DHCP, HTTP, and WSP statistics taps
}
Josef Korelus <jkor [AT] quick.cz> {
GPRS Network Service-over-Frame-Relay support
}
And assorted fixes and enhancements by the people listed above and by:
Pavel Roskin <proski [AT] gnu.org>

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.620 2003/09/03 06:38:14 guy Exp $
# $Id: Makefile.am,v 1.621 2003/09/03 22:26:37 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -212,6 +212,7 @@ DISSECTOR_SRC = \
packet-giop.c \
packet-gmrp.c \
packet-gnutella.c \
packet-gprs-ns.c \
packet-gre.c \
packet-gssapi.c \
packet-gtp.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.333 2003/09/03 06:38:15 guy Exp $
# $Id: Makefile.nmake,v 1.334 2003/09/03 22:26:37 guy Exp $
include config.nmake
include <win32.mak>
@ -153,6 +153,7 @@ DISSECTOR_SRC = \
packet-giop.c \
packet-gmrp.c \
packet-gnutella.c \
packet-gprs-ns.c \
packet-gre.c \
packet-gssapi.c \
packet-gtp.c \

View File

@ -2056,6 +2056,7 @@ B<http://www.ethereal.com>.
Giles Scott <gscott2 [AT] nortelnetworks.com>
Vincent Jardin <vincent.jardin [AT] 6wind.com>
Jean-Michel Fayard <jean-michel.fayard [AT] moufrei.de>
Josef Korelus <jkor [AT] quick.cz>
Pavel Roskin <proski [AT] gnu.org>
Georgi Guninski <guninski [AT] guninski.com>
Jason Copenhaver <jcopenha [AT] typedef.org>

View File

@ -3,7 +3,7 @@
*
* Copyright 2001, Paul Ionescu <paul@acorp.ro>
*
* $Id: packet-fr.c,v 1.42 2003/09/03 20:58:08 guy Exp $
* $Id: packet-fr.c,v 1.43 2003/09/03 22:26:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -45,6 +45,7 @@
#include <string.h>
#include <glib.h>
#include <epan/packet.h>
#include "prefs.h"
#include "packet-llc.h"
#include "packet-chdlc.h"
#include "xdlc.h"
@ -96,10 +97,20 @@ static gint hf_fr_pid = -1;
static gint hf_fr_snaptype = -1;
static gint hf_fr_chdlctype = -1;
static dissector_handle_t gprs_ns_handle;
static dissector_handle_t data_handle;
static dissector_table_t osinl_subdissector_table;
/*
* Encapsulation type.
* XXX - this should be per-DLCI as well.
*/
#define FRF_3_2 0 /* FRF 3.2 or Cisco HDLC */
#define GPRS_NS 1 /* GPRS Network Services (3GPP TS 08.16) */
static gint fr_encap = FRF_3_2;
static const true_false_string cmd_string = {
"Command",
"Response"
@ -163,6 +174,7 @@ dissect_fr_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
guint32 address;
guint8 fr_ctrl;
guint16 fr_type;
tvbuff_t *next_tvb;
if (check_col(pinfo->cinfo, COL_PROTOCOL))
col_set_str(pinfo->cinfo, COL_PROTOCOL, "FR");
@ -311,14 +323,17 @@ dissect_fr_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
if (check_col(pinfo->cinfo, COL_INFO))
col_add_fstr(pinfo->cinfo, COL_INFO, "DLCI %u", address);
fr_ctrl = tvb_get_guint8(tvb, offset);
if (fr_ctrl == XDLC_U) {
switch (fr_encap) {
case FRF_3_2:
fr_ctrl = tvb_get_guint8(tvb, offset);
if (fr_ctrl == XDLC_U) {
dissect_xdlc_control(tvb, offset, pinfo, fr_tree, hf_fr_control,
ett_fr_control, is_response, TRUE, TRUE);
offset++;
dissect_fr_nlpid(tvb, offset, pinfo, tree, ti, fr_tree, fr_ctrl);
} else {
} else {
if (address == 0) {
/* this must be some sort of lapf on DLCI 0 for SVC */
/* because DLCI 0 is rezerved for LMI and SVC signaling encaplulated in lapf */
@ -349,6 +364,16 @@ dissect_fr_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
proto_item_set_end(ti, tvb, offset+2);
}
chdlctype(fr_type, tvb, offset+2, pinfo, tree, fr_tree, hf_fr_chdlctype);
}
break;
case GPRS_NS:
next_tvb = tvb_new_subset(tvb, offset, -1, -1);
if (address != 0)
call_dissector(gprs_ns_handle, next_tvb, pinfo, tree);
else
dissect_lapf(next_tvb, pinfo, tree);
break;
}
}
@ -567,13 +592,18 @@ void proto_register_fr(void)
VALS(chdlc_vals), 0x0, "Frame Relay Cisco HDLC Encapsulated Protocol", HFILL }},
};
/* Setup protocol subtree array */
static gint *ett[] = {
&ett_fr,
&ett_fr_address,
&ett_fr_control,
};
static enum_val_t fr_encap_options[] = {
{"FRF 3.2/Cisco HDLC", FRF_3_2 },
{"GPRS Network Service", GPRS_NS },
{ NULL, 0 },
};
module_t *frencap_module;
proto_fr = proto_register_protocol("Frame Relay", "FR", "fr");
proto_register_field_array(proto_fr, hf, array_length(hf));
@ -586,6 +616,11 @@ void proto_register_fr(void)
register_dissector("fr_uncompressed", dissect_fr_uncompressed, proto_fr);
register_dissector("fr", dissect_fr, proto_fr);
frencap_module = prefs_register_protocol(proto_fr, NULL);
prefs_register_enum_preference(frencap_module, "encap", "Encapsulation",
"Encapsulation", &fr_encap,
fr_encap_options, FALSE);
}
void proto_reg_handoff_fr(void)
@ -598,6 +633,8 @@ void proto_reg_handoff_fr(void)
fr_phdr_handle = create_dissector_handle(dissect_fr_phdr, proto_fr);
dissector_add("wtap_encap", WTAP_ENCAP_FRELAY_WITH_PHDR, fr_phdr_handle);
gprs_ns_handle = find_dissector("gprs_ns");
data_handle = find_dissector("data");
osinl_subdissector_table = find_dissector_table("osinl");

258
packet-gprs-ns.c Normal file
View File

@ -0,0 +1,258 @@
/* packet-gprs-ns.c
* Routines for GPRS Network Service (ETSI GSM 08.16 version 6.3.0)
* dissection
* Copyright 2003, Josef Korelus <jkor@quick.cz>
*
* $Id: packet-gprs-ns.c,v 1.1 2003/09/03 22:26:38 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.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include <glib.h>
#include <epan/packet.h>
/*ETSI GSM08.16 Network Service */
#define NS_UNITDATA 0x00
#define NS_RESET 0x02
#define NS_RESET_ACK 0x03
#define NS_BLOCK 0x04
#define NS_BLOCK_ACK 0x05
#define NS_UNBLOCK 0x06
#define NS_UNBLOCK_ACK 0x07
#define NS_STATUS 0x08
#define NS_ALIVE 0x0a
#define NS_ALIVE_ACK 0x0b
/*ETSI GSM 08.16 IEI coding */
#define Cause 0x00
#define NS_VCI 0x01
#define NS_PDU 0x02
#define BVCI 0x03
#define NSEI 0x04
static gint proto_gprs_ns = -1;
static gint ett_gprs_ns = -1;
static gint hf_gprs_ns_vci = -1;
static gint hf_gprs_ns_pdutype = -1;
static gint hf_gprs_ns_nsei = -1;
static gint hf_gprs_ns_bvci = -1;
static gint hf_gprs_ns_spare = -1;
static gint hf_gprs_ns_cause = -1;
static const value_string ns_pdu_type[]= {
{ NS_UNITDATA, "NS-UNITDATA" },
{ NS_RESET, "NS-RESET" },
{ NS_RESET_ACK, "NS-RESET-ACK" },
{ NS_BLOCK, "NS-BLOCK" },
{ NS_BLOCK_ACK, "NS-BLOCK-ACK" },
{ NS_UNBLOCK, "NS-UNBLOCK" },
{ NS_UNBLOCK_ACK, "NS-UNBLOCK-ACK" },
{ NS_STATUS, "NS-STATUS" },
{ NS_ALIVE, "NS-ALIVE" },
{ NS_ALIVE_ACK, "NS-ALIVE-ACK" },
{ 0, NULL },
};
static const value_string ns_ie_type[]= {
{ Cause, "Cause" },
{ NS_VCI, "NS-VCI"},
{ NS_PDU, "NS PDU"},
{ BVCI, "BVCI"},
{ NSEI, "NSEI"},
{ 0, NULL },
};
static const value_string cause_val[]= {
{ 0x0, "Transit network failure" },
{ 0x1, "O&M intervention" },
{ 0x2, "Equipment failure" },
{ 0x3, "NS-VC blocked " },
{ 0x4, "NS-VC unknown" },
{ 0x5, "NS-VC unknown on that NSE" },
{ 0x8, "Semantically incorrect PDU" },
{ 0xa, "PDU not compatible with protocol state" },
{ 0xb, "Protocol error - unspecified" },
{ 0xc, "Invalid essential IE" },
{ 0xd, "Missing essential IE" },
{ 0, NULL },
};
static dissector_handle_t data_handle;
static void
dissect_gprs_ns(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
int offset = 0;
proto_item *ti = NULL;
proto_tree *gprs_ns_tree = NULL;
guint8 nspdu, cause;
guint16 nsvc, bvc;
tvbuff_t *next_tvb;
if (check_col(pinfo->cinfo, COL_PROTOCOL))
col_set_str(pinfo->cinfo, COL_PROTOCOL, "GPRS NS");
if (check_col(pinfo->cinfo, COL_INFO))
col_clear(pinfo->cinfo, COL_INFO);
nspdu = tvb_get_guint8(tvb,offset);
if (check_col(pinfo->cinfo, COL_INFO))
col_add_str(pinfo->cinfo, COL_INFO, match_strval(nspdu, ns_pdu_type));
if (tree) {
ti = proto_tree_add_item(tree, proto_gprs_ns, tvb, 0, -1, FALSE);
gprs_ns_tree = proto_item_add_subtree(ti, ett_gprs_ns);
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_pdutype, tvb, 0, 1, nspdu);
}
offset++;
switch (nspdu) {
case NS_ALIVE:
case NS_ALIVE_ACK:
case NS_UNBLOCK:
case NS_UNBLOCK_ACK:
break;
case NS_BLOCK:
offset=offset+2;
cause = tvb_get_guint8(tvb,offset);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_cause, tvb, offset, 1, cause);
offset=offset+3;
nsvc = tvb_get_ntohs(tvb,offset);
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " NSVCI: %u Cause: %s", nsvc,
match_strval(cause,cause_val));
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_vci, tvb, offset, 2, nsvc);
offset=offset+2;
break;
case NS_BLOCK_ACK:
offset=offset+3;
nsvc = tvb_get_ntohs(tvb,offset);
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " NSVCI: %u", nsvc);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_vci, tvb, offset, 2, nsvc);
offset=offset+2;
break;
case NS_RESET:
offset=offset+2;
cause = tvb_get_guint8(tvb,offset);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_cause, tvb, offset, 1, cause);
offset=offset+3;
nsvc = tvb_get_ntohs(tvb,offset);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_vci, tvb, offset, 2, nsvc);
offset=offset+4;
bvc = tvb_get_ntohs(tvb,offset);
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " NSVCI: %u NSEI: %u Cause: %s",
nsvc, bvc, match_strval(cause, cause_val));
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_nsei, tvb, offset, 2, bvc);
offset=offset+2;
break;
case NS_RESET_ACK:
offset=offset+2;
nsvc = tvb_get_ntohs(tvb,offset);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_vci, tvb, offset, 2, nsvc);
offset=offset+4;
bvc = tvb_get_ntohs(tvb,offset);
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " NSVCI: %u NSEI: %u", nsvc, bvc);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_nsei, tvb, offset, 2, bvc);
offset=offset+2;
break;
case NS_UNITDATA:
if (tree)
proto_tree_add_item(gprs_ns_tree, hf_gprs_ns_spare, tvb, offset, 1, FALSE);
offset++;
bvc = tvb_get_ntohs(tvb,offset);
if (check_col(pinfo->cinfo, COL_INFO))
col_append_fstr(pinfo->cinfo, COL_INFO, " BVCI: %u", bvc);
if (tree)
proto_tree_add_uint(gprs_ns_tree, hf_gprs_ns_bvci, tvb, offset, 2, bvc);
offset=offset+2;
next_tvb = tvb_new_subset(tvb, offset, -1, -1);
call_dissector(data_handle, next_tvb, pinfo, tree);
break;
case NS_STATUS:
break;
default:
break;
}
}
/* Register the protocol with Ethereal */
void
proto_register_gprs_ns(void)
{
static hf_register_info hf[] = {
{ &hf_gprs_ns_pdutype, {
"PDU Type", "gprs_ns.pdutype", FT_UINT8, BASE_HEX,
VALS(ns_pdu_type), 0x0, "NS Command", HFILL}},
{ &hf_gprs_ns_cause, {
"Cause", "gprs_ns.cause", FT_UINT8, BASE_HEX,
VALS(cause_val), 0x0, "Cause", HFILL}},
{ &hf_gprs_ns_vci, {
"NSVCI", "gprs_ns.nsvci", FT_UINT16, BASE_DEC,
NULL, 0x0, "Network Service Virtual Connection id", HFILL}},
{ &hf_gprs_ns_nsei, {
"NSEI", "gprs_ns.nsei", FT_UINT16, BASE_DEC,
NULL, 0x0, "Network Service Entity Id", HFILL}},
{ &hf_gprs_ns_bvci, {
"BVCI", "gprs_ns.bvci", FT_UINT16, BASE_DEC,
NULL, 0x0, "Cell ID", HFILL}},
{ &hf_gprs_ns_spare, {
"Spare octet", "gprs_ns.spare", FT_UINT8, BASE_HEX,
NULL, 0x0, "", HFILL}},
};
/* Setup protocol subtree array */
static gint *ett[] = {
&ett_gprs_ns,
};
proto_gprs_ns = proto_register_protocol("GPRS Network service",
"GPRS NS","gprs_ns");
proto_register_field_array(proto_gprs_ns, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
register_dissector("gprs_ns", dissect_gprs_ns, proto_gprs_ns);
}
void
proto_reg_handoff_gprs_ns(void)
{
data_handle = find_dissector("data");
}