aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-10-13 06:06:53 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-10-13 06:06:53 +0000
commitb768a63583656b61b1c6b699dd7717e22f6ff151 (patch)
tree344e6bfe501bc83bd055d890ae6adebc38ba4b67
parente925a84e7edc21badf6806ff3626f4ac31b0c793 (diff)
From Christophe PALETOU:
Add dissector for public protocol Flight Message Transfer Protocol (FMTP) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6433 - Modified and moved col_add_fstr outside of if(tree) - call data dissector for data - use ENC_BIG_ENDIAN - minor cleanups svn path=/trunk/; revision=39403
-rw-r--r--epan/CMakeLists.txt1
-rw-r--r--epan/dissectors/Makefile.common1
-rw-r--r--epan/dissectors/packet-fmtp.c221
3 files changed, 223 insertions, 0 deletions
diff --git a/epan/CMakeLists.txt b/epan/CMakeLists.txt
index 3acf465310..26bf9b921c 100644
--- a/epan/CMakeLists.txt
+++ b/epan/CMakeLists.txt
@@ -569,6 +569,7 @@ set(DISSECTOR_SRC
dissectors/packet-flip.c
dissectors/packet-fmp.c
dissectors/packet-fmp_notify.c
+ dissectors/packet-fmtp.c
dissectors/packet-force10-oui.c
dissectors/packet-fp_hint.c
dissectors/packet-fr.c
diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common
index 9a3b1b50a2..b3179f9ee0 100644
--- a/epan/dissectors/Makefile.common
+++ b/epan/dissectors/Makefile.common
@@ -488,6 +488,7 @@ DISSECTOR_SRC = \
packet-flip.c \
packet-fmp.c \
packet-fmp_notify.c \
+ packet-fmtp.c \
packet-force10-oui.c \
packet-fp_hint.c \
packet-fr.c \
diff --git a/epan/dissectors/packet-fmtp.c b/epan/dissectors/packet-fmtp.c
new file mode 100644
index 0000000000..73193a6360
--- /dev/null
+++ b/epan/dissectors/packet-fmtp.c
@@ -0,0 +1,221 @@
+/* packet-fmtp.c
+ *
+ * Routines for FMTP version 2 packet dissection.
+ *
+ * The specifications of this public protocol can be found on Eurocontrol web site:
+ * http://www.eurocontrol.int/ses/public/standard_page/fmtp_spec.html
+ *
+ * Copyright 2011, Christophe Paletou <c.paletou@free.fr>
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * 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 <epan/packet.h>
+#include "packet-tcp.h"
+
+static int proto_fmtp = -1;
+static int hf_fmtp_pdu_version = -1;
+static int hf_fmtp_pdu_reserved = -1;
+static int hf_fmtp_pdu_type = -1;
+static int hf_fmtp_pdu_length = -1;
+static int hf_fmtp_data = -1;
+static gint ett_fmtp = -1;
+
+#define TCP_PORT_FMTP 8500
+#define FMTP_HEADER_LEN 5
+#define FMTP_MAX_DATA_LEN 10240
+#define FMTP_MAX_LEN FMTP_HEADER_LEN + FMTP_MAX_DATA_LEN
+
+#define FMTP_TYP_OPERATIONAL 1
+#define FMTP_TYP_OPERATOR 2
+#define FMTP_TYP_IDENTIFICATION 3
+#define FMTP_TYP_SYSTEM 4
+
+#define INFO_STR_SIZE 1024
+
+static dissector_handle_t data_handle;
+
+static const value_string packet_type_names[] = {
+ { FMTP_TYP_OPERATIONAL, "Operational message" },
+ { FMTP_TYP_OPERATOR, "Operator message" },
+ { FMTP_TYP_IDENTIFICATION, "Identification message" },
+ { FMTP_TYP_SYSTEM , "System message" },
+ { 0, NULL }
+};
+
+static const value_string system_message_names[] = {
+ { 12337, "Startup" }, /* 0x3031 */
+ { 12336, "Shutdown" }, /* 0x3030 */
+ { 12339, "Heartbeat" }, /* 0x3033 */
+ { 0, NULL }
+};
+
+static void
+dissect_fmtp_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ guint8 packet_type;
+ guint16 packet_len;
+ tvbuff_t *next_tvb;
+ proto_item *ti = NULL;
+ proto_tree *fmtp_tree = NULL;
+
+ packet_type = tvb_get_guint8(tvb, 4);
+ packet_len = tvb_get_ntohs(tvb, 2);
+
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "FMTP");
+
+ /* Clear out stuff in the info column */
+ col_clear(pinfo->cinfo,COL_INFO);
+
+ ti = proto_tree_add_item(tree, proto_fmtp, tvb, 0, -1, ENC_LITTLE_ENDIAN);
+ proto_item_append_text(ti, ", %s",
+ val_to_str(packet_type, packet_type_names, "Unknown (0x%02x)"));
+
+ switch (packet_type) {
+
+ case FMTP_TYP_IDENTIFICATION:
+ proto_item_append_text(ti, " (%s)",
+ tvb_get_ephemeral_string(tvb, FMTP_HEADER_LEN, packet_len-FMTP_HEADER_LEN));
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s (%s)",
+ val_to_str(packet_type, packet_type_names, "Unknown (0x%02x)"),
+ tvb_get_ephemeral_string(tvb, FMTP_HEADER_LEN, packet_len-FMTP_HEADER_LEN));
+ break;
+
+ case FMTP_TYP_SYSTEM:
+ proto_item_append_text(ti, " (%s)",
+ tvb_get_ephemeral_string(tvb, FMTP_HEADER_LEN, packet_len-FMTP_HEADER_LEN));
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s (%s)",
+ val_to_str(packet_type, packet_type_names, "Unknown (0x%02x)"),
+ val_to_str(tvb_get_ntohs(tvb, FMTP_HEADER_LEN), system_message_names, "Unknown (0x%02x)"));
+ break;
+
+ default:
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s",
+ val_to_str(packet_type, packet_type_names, "Unknown (0x%02x)"));
+ break;
+ }
+ if (tree) { /* we are being asked for details */
+ fmtp_tree = proto_item_add_subtree(ti, ett_fmtp);
+ proto_tree_add_item(fmtp_tree, hf_fmtp_pdu_version, tvb, 0, 1, ENC_LITTLE_ENDIAN);
+ proto_tree_add_item(fmtp_tree, hf_fmtp_pdu_reserved, tvb, 1, 1, ENC_LITTLE_ENDIAN);
+ proto_tree_add_item(fmtp_tree, hf_fmtp_pdu_length, tvb, 2, 2, ENC_LITTLE_ENDIAN);
+ proto_tree_add_item(fmtp_tree, hf_fmtp_pdu_type, tvb, 4, 1, ENC_LITTLE_ENDIAN);
+
+ next_tvb = tvb_new_subset_remaining(tvb, FMTP_HEADER_LEN);
+ call_dissector(data_handle, next_tvb, pinfo, fmtp_tree);
+ }
+}
+
+static guint
+get_fmtp_message_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset)
+{
+ return (guint)tvb_get_ntohs(tvb, offset+2);
+}
+
+static gboolean
+dissect_fmtp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ /*
+ * Check that packet looks like FMTP before going further
+ */
+ /* VERSION must currently be 0x02 */
+ if (tvb_get_guint8(tvb, 0) != 0x02) return (FALSE);
+ /* RESERVED must currently be 0x00 */
+ if (tvb_get_guint8(tvb, 1) != 0x00) return (FALSE);
+ /* LENGTH must currently not exceed 5 (header) + 10240 (data) */
+ if (tvb_get_ntohs(tvb, 2) > FMTP_MAX_LEN) return (FALSE);
+ /* TYP must currently be in range 0x01-0x04 */
+ if ((tvb_get_guint8(tvb, 4) < 0x01) || (tvb_get_guint8(tvb, 4) > 0x04))
+ return (FALSE);
+
+ tcp_dissect_pdus(tvb, pinfo, tree, TRUE, FMTP_HEADER_LEN,
+ get_fmtp_message_len, dissect_fmtp_message);
+ return (TRUE);
+}
+
+void
+proto_register_fmtp(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_fmtp_pdu_version,
+ { "Version", "fmtp.version",
+ FT_UINT8, BASE_DEC,
+ NULL, 0x0,
+ NULL, HFILL }
+ },
+ { &hf_fmtp_pdu_reserved,
+ { "Reserved", "fmtp.reserved",
+ FT_UINT8, BASE_DEC,
+ NULL, 0x0,
+ NULL, HFILL }
+ },
+ { &hf_fmtp_pdu_length,
+ { "Length", "fmtp.length",
+ FT_UINT16, BASE_DEC,
+ NULL, 0x0,
+ NULL, HFILL }
+ },
+ { &hf_fmtp_pdu_type,
+ { "Type", "fmtp.type",
+ FT_UINT8, BASE_DEC,
+ VALS(packet_type_names), 0x0,
+ NULL, HFILL }
+ },
+ { &hf_fmtp_data,
+ { "Data", "fmtp.data",
+ FT_BYTES, BASE_NONE,
+ NULL, 0x0,
+ NULL, HFILL }
+ }
+ };
+
+ /* Setup protocol subtree array */
+ static gint *ett[] = {
+ &ett_fmtp
+ };
+
+ proto_fmtp = proto_register_protocol(
+ "Flight Message Transfer Protocol (FMTP)",
+ "FMTP",
+ "fmtp");
+
+ proto_register_field_array(proto_fmtp, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+}
+
+void
+proto_reg_handoff_fmtp(void)
+{
+ static int fmtp_inited = FALSE;
+
+ if (!fmtp_inited)
+ {
+ /* Register as heuristic dissector for TCP */
+ heur_dissector_add("tcp", dissect_fmtp, proto_fmtp);
+ }
+
+ data_handle = find_dissector("data");
+}
+