summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-media.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-media.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-media.c')
-rw-r--r--epan/dissectors/packet-media.c115
1 files changed, 115 insertions, 0 deletions
diff --git a/epan/dissectors/packet-media.c b/epan/dissectors/packet-media.c
new file mode 100644
index 00000000..e4c3154c
--- /dev/null
+++ b/epan/dissectors/packet-media.c
@@ -0,0 +1,115 @@
+/* packet-media.c
+ * Routines for displaying an undissected media type (default case),
+ * based on the generic "data" dissector.
+ *
+ * (C) Olivier Biot, 2004
+ *
+ * Refer to the AUTHORS file or the AUTHORS section in the man page
+ * for contacting the author(s) of this file.
+ *
+ * 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 <wsutil/str_util.h>
+
+#include "packet-media-type.h"
+
+void proto_register_media(void);
+
+static int proto_media = -1;
+static gint hf_media_type = -1;
+static gint ett_media = -1;
+static heur_dissector_list_t heur_subdissector_list;
+
+static int
+dissect_media(tvbuff_t *tvb, packet_info *pinfo , proto_tree *tree, void* data)
+{
+ int bytes;
+ proto_item *ti;
+ proto_tree *media_tree = 0;
+ media_content_info_t *content_info = (media_content_info_t *)data;
+ heur_dtbl_entry_t *hdtbl_entry;
+
+ if (dissector_try_heuristic(heur_subdissector_list, tvb, pinfo, tree, &hdtbl_entry, data)) {
+ return tvb_reported_length(tvb);
+ }
+
+ /* Add media type to the INFO column if it is visible */
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)", (pinfo->match_string) ? pinfo->match_string : "");
+
+ if (tree) {
+ if ( (bytes = tvb_reported_length(tvb)) > 0 )
+ {
+ ti = proto_tree_add_item(tree, proto_media, tvb, 0, -1, ENC_NA);
+ media_tree = proto_item_add_subtree(ti, ett_media);
+
+ if (content_info != NULL && content_info->media_str != NULL) {
+ /* The media type has parameters */
+
+ proto_tree_add_bytes_format_value(media_tree, hf_media_type, tvb, 0, bytes,
+ NULL, "%s; %s (%d byte%s)",
+ pinfo->match_string, content_info->media_str,
+ bytes, plurality(bytes, "", "s"));
+ } else {
+ /* The media type has no parameters */
+ proto_tree_add_bytes_format_value(media_tree, hf_media_type, tvb, 0, bytes,
+ NULL, "%s (%d byte%s)",
+ pinfo->match_string ? pinfo->match_string : "",
+ bytes, plurality(bytes, "", "s"));
+ }
+ }
+ }
+
+ return tvb_reported_length(tvb);
+}
+
+void
+proto_register_media(void)
+{
+ static hf_register_info hf[] = {
+ { &hf_media_type,
+ { "Media type", "media.type",
+ FT_BYTES, BASE_NONE, NULL, 0,
+ NULL, HFILL }},
+ };
+ static gint *ett[] = {
+ &ett_media
+ };
+
+ proto_media = proto_register_protocol (
+ "Media Type", /* name */
+ "Media", /* short name */
+ "media" /* abbrev */
+ );
+ register_dissector("media", dissect_media, proto_media);
+ heur_subdissector_list = register_heur_dissector_list("media", proto_media);
+ proto_register_field_array(proto_media, hf, array_length(hf));
+ proto_register_subtree_array(ett, array_length(ett));
+
+ /*
+ * "Media" is used to dissect something whose normal dissector
+ * is disabled, so it cannot itself be disabled.
+ */
+ proto_set_cant_toggle(proto_media);
+}
+
+/*
+ * 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:
+ */