From df17fdd34e22f0da3dbb9c9dc7574eef6d200586 Mon Sep 17 00:00:00 2001 From: jake Date: Sat, 26 Mar 2011 16:07:30 +0000 Subject: [PATCH] From Alexis La Goutte: A patch to add ATM over TCP Dissector. The dissector dissect only the ATMTCP header (VCI, VPI, Payload Length) The data are not yet dissect, it is necessary to add a "UAT" (As with the K12 dissector) to indicate the type (ILMI, AAL, ATM...) of data (based on VCI/VPI) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36354 f5534014-38df-0310-8fa8-9805f1628bb7 --- AUTHORS | 1 + epan/CMakeLists.txt | 1 + epan/dissectors/Makefile.common | 1 + epan/dissectors/packet-atmtcp.c | 176 ++++++++++++++++++++++++++++++++ 4 files changed, 179 insertions(+) create mode 100644 epan/dissectors/packet-atmtcp.c diff --git a/AUTHORS b/AUTHORS index caad6a85b9..42c71a5443 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2953,6 +2953,7 @@ Samu Varjonen { Alexis La Goutte { Aruba ERM dissector + ATMTCP dissector CAPWAP dissector PAPI dissector MONGO dissector diff --git a/epan/CMakeLists.txt b/epan/CMakeLists.txt index 7c9488db51..7a9cbf2b92 100644 --- a/epan/CMakeLists.txt +++ b/epan/CMakeLists.txt @@ -346,6 +346,7 @@ set(DISSECTOR_SRC dissectors/packet-assa_r3.c dissectors/packet-atalk.c dissectors/packet-atm.c + dissectors/packet-atmtcp.c dissectors/packet-auto_rp.c dissectors/packet-ax4000.c dissectors/packet-ayiya.c diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common index 1df804ab24..cbf6951803 100644 --- a/epan/dissectors/Makefile.common +++ b/epan/dissectors/Makefile.common @@ -259,6 +259,7 @@ DISSECTOR_SRC = \ packet-assa_r3.c \ packet-atalk.c \ packet-atm.c \ + packet-atmtcp.c \ packet-auto_rp.c \ packet-ax4000.c \ packet-ayiya.c \ diff --git a/epan/dissectors/packet-atmtcp.c b/epan/dissectors/packet-atmtcp.c new file mode 100644 index 0000000000..ca67e2bcd6 --- /dev/null +++ b/epan/dissectors/packet-atmtcp.c @@ -0,0 +1,176 @@ +/* packet-atmtcp.c + * Routines for ATM over TCP dissection + * Copyright 2011, Alexis La Goutte + * + * $Id$ + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +/* Specification... + * http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=blob;f=include/linux/atm_tcp.h;hb=HEAD + * http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=blob;f=drivers/atm/atmtcp.c;hb=HEAD + */ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include + +#include +#include + +void proto_reg_handoff_atmtcp(void); + +static int proto_atmtcp = -1; +static int hf_atmtcp_vpi = -1; +static int hf_atmtcp_vci = -1; +static int hf_atmtcp_length = -1; + +static guint global_atmtcp_tcp_port = 2812; + +static gint ett_atmtcp = -1; + +static dissector_handle_t data_handle; + +#define ATMTCP_HDR_MAGIC (~0) /* this length indicates a command */ +#define ATMTCP_CTRL_OPEN 1 /* request/reply */ +#define ATMTCP_CTRL_CLOSE 2 /* request/reply */ + +static int +dissect_atmtcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) +{ + + proto_item *ti; + proto_tree *atmtcp_tree; + guint offset=0; + gint32 length; + tvbuff_t *next_tvb; + + col_set_str(pinfo->cinfo, COL_PROTOCOL, "ATMTCP"); + + col_set_str(pinfo->cinfo, COL_INFO, "ATMTCP"); + + if (tree) { + ti = proto_tree_add_item(tree, proto_atmtcp, tvb, 0, -1, ENC_NA); + + atmtcp_tree = proto_item_add_subtree(ti, ett_atmtcp); + + /* VPI */ + proto_tree_add_item(atmtcp_tree, hf_atmtcp_vpi, tvb, offset, 2, ENC_NA); + } + offset +=2; + + + if (tree) { + /* VCI */ + proto_tree_add_item(atmtcp_tree, hf_atmtcp_vci, tvb, offset, 2, ENC_NA); + } + offset +=2; + + + if (tree) { + /* Length */ + proto_tree_add_item(atmtcp_tree, hf_atmtcp_length, tvb, offset, 4, ENC_NA); + } + length = tvb_get_ntohl(tvb, offset); + + offset +=4; + + /* Data (for the moment...) */ + next_tvb = tvb_new_subset(tvb, 8, -1, -1); + call_dissector(data_handle, next_tvb, pinfo, tree); + return tvb_length(tvb); +} + + +void +proto_register_atmtcp(void) +{ + module_t *atmtcp_module; + + + static hf_register_info hf[] = { + { &hf_atmtcp_vpi, + { "VPI", "atmtcp.vpi", FT_UINT16, BASE_DEC, NULL, 0x0, + "Virtual Path Identifier", HFILL } + }, + { &hf_atmtcp_vci, + { "VCI", "atmtcp.vci", FT_UINT16, BASE_DEC, NULL, 0x0, + "Virtual Channel Identifier", HFILL } + }, + { &hf_atmtcp_length, + { "Length", "atmtcp.length", FT_UINT32, BASE_DEC, NULL, 0x0, + "length of data", HFILL } + } + }; + + + static gint *ett[] = { + &ett_atmtcp + }; + + + proto_atmtcp = proto_register_protocol("ATM over TCP", "ATMTCP", "atmtcp"); + + proto_register_field_array(proto_atmtcp, hf, array_length(hf)); + proto_register_subtree_array(ett, array_length(ett)); + + + atmtcp_module = prefs_register_protocol(proto_atmtcp, proto_reg_handoff_atmtcp); + + prefs_register_uint_preference(atmtcp_module, "tcp.port", "ATMTCP TCP Port", + "ATMTCP TCP port if other than the default", + 10, &global_atmtcp_tcp_port); +} + + +void +proto_reg_handoff_atmtcp(void) +{ + static gboolean initialized = FALSE; + static dissector_handle_t atmtcp_handle; + static int current_port; + + if (!initialized) { + atmtcp_handle = new_create_dissector_handle(dissect_atmtcp, proto_atmtcp); + data_handle = find_dissector("data"); + initialized = TRUE; + } else { + dissector_delete_uint("tcp.port", current_port, atmtcp_handle); + } + + current_port = global_atmtcp_tcp_port; + + dissector_add_uint("tcp.port", current_port, atmtcp_handle); +} + +/* + * Editor modelines - http://www.wireshark.org/tools/modelines.html + * + * Local variables: + * c-basic-offset: 4 + * tab-width: 8 + * indent-tabs-mode: nil + * End: + * + * vi: set shiftwidth=4 tabstop=8 expandtab + * :indentSize=4:tabSize=8:noTabs=true: + */ -- 2.34.1