summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cisco-ttag.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/packet-cisco-ttag.c
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/packet-cisco-ttag.c')
-rw-r--r--epan/dissectors/packet-cisco-ttag.c122
1 files changed, 122 insertions, 0 deletions
diff --git a/epan/dissectors/packet-cisco-ttag.c b/epan/dissectors/packet-cisco-ttag.c
new file mode 100644
index 0000000..0e05483
--- /dev/null
+++ b/epan/dissectors/packet-cisco-ttag.c
@@ -0,0 +1,122 @@
+/* packet-cisco-ttag.c
+ * Routines for dissection of Cisco's ttag protocol.
+ * Based on packet-cisco-metadata.c
+ *
+ * Copyright 2016 by Jaap Keuter (jkeuter[AT]xs4all.nl)
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#include "config.h"
+
+#include <epan/packet.h>
+#include <epan/etypes.h>
+#include <epan/to_str.h>
+
+void proto_register_ttag(void);
+void proto_reg_handoff_ttag(void);
+
+static dissector_handle_t ttag_handle;
+
+static dissector_handle_t ethertype_handle;
+
+static int proto_ttag = -1;
+
+static int hf_ttag_time_stamp = -1;
+static int hf_ttag_eth_type = -1;
+
+static gint ett_ttag = -1;
+
+static int
+dissect_ttag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
+{
+ guint64 timestamp_value;
+ nstime_t timestamp;
+ guint16 encap_proto;
+ ethertype_data_t ethertype_data;
+
+ proto_tree *ttag_tree;
+ proto_item *ti;
+ gint offset = 0;
+
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "TTAG");
+ col_clear(pinfo->cinfo, COL_INFO);
+
+ ti = proto_tree_add_item(tree, proto_ttag, tvb, 0, 8, ENC_NA);
+ ttag_tree = proto_item_add_subtree(ti, ett_ttag);
+
+ timestamp_value = tvb_get_guint48(tvb, offset, ENC_BIG_ENDIAN);
+ timestamp.secs = (time_t) (timestamp_value / G_GUINT64_CONSTANT(1000000000));
+ timestamp.nsecs = (guint32)(timestamp_value - (timestamp.secs * G_GUINT64_CONSTANT(1000000000)));
+
+ proto_item_append_text(ti, ", Timestamp: %s", rel_time_to_secs_str(pinfo->pool, &timestamp));
+
+ proto_tree_add_time(ttag_tree, hf_ttag_time_stamp, tvb, offset, 6, &timestamp);
+ offset += 6;
+
+ encap_proto = tvb_get_ntohs(tvb, offset);
+ proto_tree_add_uint(ttag_tree, hf_ttag_eth_type, tvb, offset, 2, encap_proto);
+ offset += 2;
+
+ ethertype_data.etype = encap_proto;
+ ethertype_data.payload_offset = offset;
+ ethertype_data.fh_tree = ttag_tree;
+ /* ttag doesn't define a trailer, but there's no way to tell Ethertype dissector that.
+ * At least use the correct header field to reflect that and allow proper filter expression,
+ * although it will still be attached to our tree instead of Ethernet II.
+ */
+ ethertype_data.trailer_id = proto_registrar_get_id_byname("eth.trailer");
+ ethertype_data.fcs_len = 0;
+
+ call_dissector_with_data(ethertype_handle, tvb, pinfo, tree, &ethertype_data);
+
+ return tvb_captured_length(tvb);
+}
+
+void
+proto_register_ttag(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_ttag_time_stamp,
+ { "Time stamp", "ttag.time_stamp", FT_RELATIVE_TIME, 0, NULL, 0x0, NULL, HFILL }
+ },
+ { &hf_ttag_eth_type,
+ { "Type", "ttag.type", FT_UINT16, BASE_HEX, VALS(etype_vals), 0x0, NULL, HFILL }
+ }
+ };
+
+ static gint *ett[] = {
+ &ett_ttag
+ };
+
+ proto_ttag = proto_register_protocol("Cisco ttag", "Cisco ttag", "ttag");
+ proto_register_field_array(proto_ttag, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+
+ ttag_handle = register_dissector("ttag", dissect_ttag, proto_ttag);
+}
+
+void
+proto_reg_handoff_ttag(void)
+{
+ ethertype_handle = find_dissector_add_dependency("ethertype", proto_ttag);
+
+ dissector_add_for_decode_as("ethertype", ttag_handle);
+}
+
+/*
+ * Editor modelines - https://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:
+ */