aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-frame.c
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-04 12:08:17 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-04 12:08:17 +0000
commit5fadba56c14e0c048dcf9d492902dd6cd7f8a764 (patch)
tree065a9ff503556b647b42731e30c90e9107bead64 /epan/dissectors/packet-frame.c
parent734a27a84219c74a055f4965988ce1022cc4934c (diff)
From Jim Young:
The attached patch augments the epan/dissectors/packet-frame.c module to optionally generate MD5 hashes of each packet. These MD5 hashes are calculated in the same manner as the MD5 hash used for duplicate packet removal by the editcap utility. The ability to generate the MD5 hashes can be enabled or disabled by a new boolean preferences option: frame.generate_md5_hash. By default MD5 hash generation is disabled. To help identify frames with matching MD5 hashes this patch also includes a new display filter: frame.md5_hash. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27150 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-frame.c')
-rw-r--r--epan/dissectors/packet-frame.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/epan/dissectors/packet-frame.c b/epan/dissectors/packet-frame.c
index 9177f5ef8c..a8d09790f1 100644
--- a/epan/dissectors/packet-frame.c
+++ b/epan/dissectors/packet-frame.c
@@ -40,6 +40,7 @@
#include <epan/prefs.h>
#include <epan/tap.h>
#include <epan/expert.h>
+#include <epan/crypt/crypt-md5.h>
#include "color.h"
#include "color_filters.h"
@@ -56,6 +57,7 @@ int hf_frame_len = -1;
int hf_frame_capture_len = -1;
static int hf_frame_p2p_dir = -1;
static int hf_frame_file_off = -1;
+static int hf_frame_md5_hash = -1;
static int hf_frame_marked = -1;
static int hf_frame_ref_time = -1;
static int hf_link_number = -1;
@@ -77,6 +79,7 @@ static dissector_handle_t docsis_handle;
/* Preferences */
static gboolean show_file_off = FALSE;
static gboolean force_docsis_encap;
+static gboolean generate_md5_hash = FALSE;
static const value_string p2p_dirs[] = {
{ P2P_DIR_SENT, "Sent" },
@@ -250,6 +253,23 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
*/
proto_tree_set_visible(fh_tree, TRUE);
+ if (generate_md5_hash) {
+ const guint8 *cp;
+ md5_state_t md_ctx;
+ md5_byte_t digest[16];
+ gchar *digest_string;
+
+ cp = tvb_get_ptr(tvb, 0, cap_len);
+
+ md5_init(&md_ctx);
+ md5_append(&md_ctx, cp, cap_len);
+ md5_finish(&md_ctx, digest);
+
+ digest_string = bytestring_to_str(digest, 16, '\0');
+ ti = proto_tree_add_string(fh_tree, hf_frame_md5_hash, tvb, 0, 0, digest_string);
+ PROTO_ITEM_SET_GENERATED(ti);
+ }
+
if(pinfo->fd->flags.ref_time){
ti = proto_tree_add_item(fh_tree, hf_frame_ref_time, tvb, 0, 0, FALSE);
PROTO_ITEM_SET_GENERATED(ti);
@@ -552,6 +572,10 @@ proto_register_frame(void)
{ "Frame length stored into the capture file", "frame.cap_len", FT_UINT32, BASE_DEC, NULL, 0x0,
"", HFILL }},
+ { &hf_frame_md5_hash,
+ { "Frame MD5 Hash", "frame.md5_hash", FT_STRING, 0, NULL, 0x0,
+ NULL, HFILL }},
+
{ &hf_frame_p2p_dir,
{ "Point-to-Point Direction", "frame.p2p_dir", FT_UINT8, BASE_DEC, VALS(p2p_dirs), 0x0,
"", HFILL }},
@@ -620,6 +644,10 @@ proto_register_frame(void)
"Show File Offset", "Show File Offset", &show_file_off);
prefs_register_bool_preference(frame_module, "force_docsis_encap",
"Treat all frames as DOCSIS frames", "Treat all frames as DOCSIS Frames", &force_docsis_encap);
+ prefs_register_bool_preference(frame_module, "generate_md5_hash",
+ "Generate an MD5 hash of each frame",
+ "Whether or not MD5 hashes should be generated for each frame, useful for finding duplicate frames.",
+ &generate_md5_hash);
frame_tap=register_tap("frame");
}