Ethereal-dev: [Ethereal-dev] AX/4000 dissector patch
Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.
From: SEKINE Hideki <sekineh@xxxxxxxxxxxxxxxx>
Date: Mon, 02 Aug 2004 19:32:19 +0900
Hi, I have implemented a dissector for the test block generated by the AX/4000 Broadband Test System. Currently it decodes test blocks for IP, UDP and TCP packets. Please review the attached patch. For those who are not familiar with AX/4000, it is a wire-rate traffic generator/analyzer. The traffic generated by AX/4000 contains its own sequence number by which you can see if packets are lost or late. AX/4000 displays the statistics such as Lost Packets or Out-of-Sequence Packets in real time. For further information, please see the following URL: http://www.spirentcom.com/analysis/product_line.cfm?PL=1 Regards, SEKINE Hideki <sekineh@xxxxxxxxxxxxxxxx>
Index: epan/dissectors/Makefile.common
===================================================================
--- epan/dissectors/Makefile.common (revision 11470)
+++ epan/dissectors/Makefile.common (working copy)
@@ -70,6 +70,7 @@
packet-atalk.c \
packet-atm.c \
packet-auto_rp.c \
+ packet-ax4000.c \
packet-bacapp.c \
packet-bacnet.c \
packet-beep.c \
Index: epan/dissectors/packet-ax4000.c
===================================================================
--- epan/dissectors/packet-ax4000.c (revision 0)
+++ epan/dissectors/packet-ax4000.c (revision 0)
@@ -0,0 +1,185 @@
+/* packet-ax4000.c
+ * Routines for AX/4000 Test Block dissection
+ * Copyright 2004, SEKINE Hideki <sekineh@xxxxxxxxxxxxxxxx>
+ *
+ * $Id: README.developer 11418 2004-07-18 22:36:55Z jmayer $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@xxxxxxxxxxxx>
+ * 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 <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <glib.h>
+
+#include <epan/packet.h>
+
+/* IF PROTO exposes code to other dissectors, then it must be exported
+ in a header file. If not, a header file is not needed at all. */
+/* #include "packet-ax4000.h" */
+
+/* Initialize the protocol and registered fields */
+static int proto_ax4000 = -1;
+static int hf_ax4000_port = -1;
+static int hf_ax4000_chassis = -1;
+static int hf_ax4000_fill = -1;
+static int hf_ax4000_index = -1;
+static int hf_ax4000_timestamp = -1;
+static int hf_ax4000_seq = -1;
+static int hf_ax4000_crc = -1;
+
+/* Initialize the subtree pointers */
+static gint ett_ax4000 = -1;
+
+/* Code to actually dissect the packets */
+static void
+dissect_ax4000(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ proto_item *ti;
+ proto_tree *ax4000_tree;
+
+ guint8 ax_port;
+ guint8 ax_chassis;
+ guint16 ax_index;
+ guint32 ax_seq;
+ guint32 ax_timestamp;
+
+ /* Make entries in Protocol column and Info column on summary display */
+ if (check_col(pinfo->cinfo, COL_PROTOCOL))
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "AX4000");
+
+ ax_port = tvb_get_guint8(tvb, 0);
+ ax_chassis = tvb_get_guint8(tvb, 1);
+ ax_index = tvb_get_ntohs(tvb, 2) & 0x0FFF;
+ ax_timestamp = tvb_get_letohl(tvb, 6);
+ ax_seq = tvb_get_letohl(tvb, 10);
+
+ if (check_col(pinfo->cinfo, COL_INFO)) {
+ col_set_str(pinfo->cinfo, COL_INFO, "");
+ col_append_fstr(pinfo->cinfo, COL_INFO,
+ "Chss:%u Prt:%u Idx:%u Seq:0x%08x TS:%.6f[msec]",
+ ax_chassis, ax_port, ax_index, ax_seq, ax_timestamp*1e-5);
+ }
+
+ if (tree) {
+ /* create display subtree for the protocol */
+ ti = proto_tree_add_item(tree, proto_ax4000, tvb, 0, -1, FALSE);
+
+ ax4000_tree = proto_item_add_subtree(ti, ett_ax4000);
+
+ proto_tree_add_uint(ax4000_tree,
+ hf_ax4000_port, tvb, 0, 1, ax_port);
+ proto_tree_add_uint(ax4000_tree,
+ hf_ax4000_chassis, tvb, 1, 1, ax_chassis);
+ proto_tree_add_item(ax4000_tree,
+ hf_ax4000_fill, tvb, 2, 1, FALSE);
+ proto_tree_add_uint(ax4000_tree,
+ hf_ax4000_index, tvb, 2, 2, ax_index);
+ proto_tree_add_uint(ax4000_tree,
+ hf_ax4000_timestamp, tvb, 6, 4, ax_timestamp);
+ proto_tree_add_uint(ax4000_tree,
+ hf_ax4000_seq, tvb, 10, 4, ax_seq);
+ proto_tree_add_uint(ax4000_tree,
+ hf_ax4000_crc, tvb, 14, 2, tvb_get_letohs(tvb, 14));
+ }
+
+/* If this protocol has a sub-dissector call it here, see section 1.8 */
+}
+
+/* Register the protocol with Ethereal */
+
+/* this format is require because a script is used to build the C function
+ that calls all the protocol registration.
+*/
+
+void
+proto_register_ax4000(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_ax4000_port,
+ { "Port Number", "ax4000.port",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "" }
+ },
+ { &hf_ax4000_chassis,
+ { "Chassis Number", "ax4000.chassis",
+ FT_UINT8, BASE_DEC, NULL, 0x0,
+ "" }
+ },
+ { &hf_ax4000_fill,
+ { "Fill Type", "ax4000.fill",
+ FT_UINT8, BASE_DEC, NULL, 0xc0,
+ "" }
+ },
+ { &hf_ax4000_index,
+ { "Index", "ax4000.index",
+ FT_UINT16, BASE_DEC, NULL, 0x0FFF,
+ "" }
+ },
+ { &hf_ax4000_timestamp,
+ { "Timestamp", "ax4000.timestamp",
+ FT_UINT32, BASE_HEX, NULL, 0x0,
+ "" }
+ },
+ { &hf_ax4000_seq,
+ { "Sequence Number", "ax4000.seq",
+ FT_UINT32, BASE_HEX, NULL, 0x0,
+ "" }
+ },
+ { &hf_ax4000_crc,
+ { "CRC (unchecked)", "ax4000.crc",
+ FT_UINT16, BASE_HEX, NULL, 0x0,
+ "" }
+ }
+ };
+
+ /* Setup protocol subtree array */
+ static gint *ett[] = {
+ &ett_ax4000
+ };
+
+ /* Register the protocol name and description */
+ proto_ax4000 = proto_register_protocol("AX/4000 Test Block",
+ "AX4000", "ax4000");
+
+ /* Required function calls to register the header fields and subtrees used */
+ proto_register_field_array(proto_ax4000, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+}
+
+#define AX4000_IP_PROTO 0xAD /* not assigned by IANA*/
+#define AX4000_TCP_PORT 3357 /* assigned by IANA */
+#define AX4000_UDP_PORT 3357 /* assigned by IANA */
+
+void
+proto_reg_handoff_ax4000(void)
+{
+ dissector_handle_t ax4000_handle;
+
+ ax4000_handle = create_dissector_handle(dissect_ax4000,
+ proto_ax4000);
+ dissector_add("ip.proto", AX4000_IP_PROTO, ax4000_handle);
+ dissector_add("tcp.port", AX4000_TCP_PORT, ax4000_handle);
+ dissector_add("udp.port", AX4000_UDP_PORT, ax4000_handle);
+}
- Follow-Ups:
- Re: [Ethereal-dev] AX/4000 dissector patch
- From: SEKINE Hideki
- Re: [Ethereal-dev] AX/4000 dissector patch
- Prev by Date: Re: [Ethereal-dev] packet-ssl.c patch for certificates
- Next by Date: [Ethereal-dev] Export as text file: displayed and saved lines are incorrect after second time filtering
- Previous by thread: Re: [Ethereal-dev] packet-ssl.c patch for certificates
- Next by thread: Re: [Ethereal-dev] AX/4000 dissector patch
- Index(es):





