summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-hpteam.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2009-06-23 21:05:47 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2009-06-23 21:05:47 +0000
commit0621ecb3a844666fee9617e1204bc9aec57b6b82 (patch)
tree6115ea2b64ef9f18deabb8a100a07237c89bb8bb /epan/dissectors/packet-hpteam.c
parentdb687ef814cc11ac77b2f5767e95ed99c15e2e6f (diff)
downloadwireshark-0621ecb3a844666fee9617e1204bc9aec57b6b82.tar.gz
From Nathan Hartwell:
This patch attempt should more closely align with the Wireshark "layout" of using a dissector rather than a "hack" to the packet-llc dissector. svn path=/trunk/; revision=28823
Diffstat (limited to 'epan/dissectors/packet-hpteam.c')
-rw-r--r--epan/dissectors/packet-hpteam.c132
1 files changed, 132 insertions, 0 deletions
diff --git a/epan/dissectors/packet-hpteam.c b/epan/dissectors/packet-hpteam.c
new file mode 100644
index 0000000000..3ad74e3dcf
--- /dev/null
+++ b/epan/dissectors/packet-hpteam.c
@@ -0,0 +1,132 @@
+/* packet-hpteam.c
+ * Routines for HP Teaming heartbeat dissection
+ * Copyright 2009, Nathan Hartwell <nhartwell@gmail.com>
+ *
+ * $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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+ * USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <stdio.h>
+#include <glib.h>
+#include <epan/packet.h>
+#include <epan/oui.h>
+#include <string.h>
+#include <packet-llc.h>
+
+
+static int proto_hpteam = -1;
+static dissector_handle_t data_handle;
+
+/* These are the handles of our subdissectors */
+static dissector_handle_t data_handle=NULL;
+static dissector_handle_t hpteam_handle=NULL;
+
+/* Known HP NIC teaming PID values */
+static const value_string hpteam_pid_vals[] = {
+ { 0x0002, "Hewlett-Packard" },
+ { 0, NULL }
+};
+
+static gint hf_hpteam = -1;
+static gint hf_llc_hpteam_pid = -1;
+
+/* These are the ids of the subtrees that we may be creating */
+static gint ett_hpteam = -1;
+
+static void
+dissect_hpteam(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
+{
+ proto_item *hpteam_item = NULL;
+ proto_tree *hpteam_tree = NULL;
+ proto_tree *hpteam_header_tree = NULL;
+ guint32 offset = 0;
+ const char *strPtr, *HP_Mac;
+ const guint8 *mac_addr;
+
+ mac_addr = pinfo->dl_dst.data;
+ strPtr = ether_to_str(mac_addr);
+ HP_Mac = "03:00:c7:00:00:ee";
+ /*
+ * Check to see if SNAP frame is a HP Teaming frame or
+ * if it is really just SNAP
+ */
+ if (memcmp(strPtr, HP_Mac, 17) == 0) {
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "HP NIC Team");
+ /* Clear out stuff in the info column */
+ col_clear(pinfo->cinfo, COL_INFO);
+ col_set_str(pinfo->cinfo, COL_INFO, "HP NIC Teaming Heartbeat; ");
+ col_append_fstr(pinfo->cinfo, COL_INFO, "Port MAC = %s ", strPtr);
+
+ if (tree) { /* we are being asked for details */
+ hpteam_item = proto_tree_add_item(tree, proto_hpteam, tvb, 0, -1, FALSE);
+ hpteam_tree = proto_item_add_subtree(hpteam_item, ett_hpteam);
+ hpteam_header_tree = proto_item_add_subtree(hpteam_item, ett_hpteam);
+ proto_tree_add_item(hpteam_tree, hf_hpteam, tvb, offset, 58, FALSE);
+ }
+ }
+ else {
+ data_handle = find_dissector("data");
+ call_dissector(data_handle, tvb, pinfo, tree);
+ }
+}
+
+void proto_register_hpteam(void)
+{
+ static hf_register_info hf_pid = {
+ &hf_llc_hpteam_pid,
+ { "PID", "llc.hpteam_pid", FT_UINT16, BASE_HEX,
+ VALS(hpteam_pid_vals), 0x0, NULL, HFILL }
+ };
+
+ static hf_register_info hf_data[] = {
+ {&hf_hpteam,
+ { "Proprietary Data", "hpteam.data", FT_BYTES, BASE_NONE,
+ NULL, 0x0, NULL, HFILL }}
+ };
+
+ static gint *ett[] = {
+ &ett_hpteam
+ };
+
+ proto_hpteam = proto_register_protocol ("HP NIC Teaming Heartbeat", "HPTEAM", "hpteam");
+
+ /*Tied into the LLC dissector so register the OUI with LLC*/
+ llc_add_oui(OUI_HP_2, "llc.hpteam_pid", "Hewlett Packard OUI PID", &hf_pid);
+ proto_register_field_array(proto_hpteam, hf_data, array_length(hf_data));
+ proto_register_subtree_array(ett, array_length(ett));
+ register_dissector("hpteam", dissect_hpteam, proto_hpteam);
+}
+
+void proto_reg_handoff_hpteam(void)
+{
+ static gboolean initialized = FALSE;
+ if (!initialized) {
+ data_handle = find_dissector("data");
+ hpteam_handle = create_dissector_handle(dissect_hpteam, proto_hpteam);
+ /* Register dissector to key off of known PID / OUI combination */
+ dissector_add("llc.hpteam_pid", 0x0002, hpteam_handle);
+ initialized = TRUE;
+ }
+}