PNG: Convert to old proto tree API

Related with #17774.
This commit is contained in:
João Valverde 2021-12-09 01:44:02 +00:00
parent 4221079a57
commit 6fd4777e56
1 changed files with 293 additions and 263 deletions

View File

@ -12,9 +12,6 @@
*/
/* See http://www.w3.org/TR/PNG for specification
*/
#define NEW_PROTO_TREE_API
#include "config.h"
#include <epan/packet.h>
@ -62,69 +59,21 @@ static const value_string chunk_types[] = {
void proto_register_png(void);
void proto_reg_handoff_png(void);
static header_field_info *hfi_png = NULL;
#define PNG_HFI_INIT HFI_INIT(proto_png)
static header_field_info hfi_png_signature PNG_HFI_INIT = {
"PNG Signature", "png.signature", FT_BYTES, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chunk_data PNG_HFI_INIT = {
"Data", "png.chunk.data", FT_NONE, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chunk_type_str PNG_HFI_INIT = {
"Chunk", "png.chunk.type", FT_STRING, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chunk_len PNG_HFI_INIT = {
"Len", "png.chunk.len", FT_UINT32, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chunk_crc PNG_HFI_INIT = {
"CRC", "png.chunk.crc", FT_UINT32, BASE_HEX,
NULL, 0, NULL, HFILL };
static const true_false_string png_chunk_anc = {
"This is an ANCILLARY chunk",
"This is a CRITICAL chunk"
};
static header_field_info hfi_png_chunk_flag_anc PNG_HFI_INIT = {
"Ancillary", "png.chunk.flag.ancillary", FT_BOOLEAN, 32,
TFS(&png_chunk_anc), 0x20000000, NULL, HFILL };
static const true_false_string png_chunk_priv = {
"This is a PRIVATE chunk",
"This is a PUBLIC chunk"
};
static header_field_info hfi_png_chunk_flag_priv PNG_HFI_INIT = {
"Private", "png.chunk.flag.private", FT_BOOLEAN, 32,
TFS(&png_chunk_priv), 0x00200000, NULL, HFILL };
static const true_false_string png_chunk_stc = {
"This chunk is SAFE TO COPY",
"This chunk is NOT safe to copy"
};
static header_field_info hfi_png_chunk_flag_stc PNG_HFI_INIT = {
"Safe To Copy", "png.chunk.flag.stc", FT_BOOLEAN, 32,
TFS(&png_chunk_stc), 0x00000020, NULL, HFILL };
static header_field_info hfi_png_ihdr_width PNG_HFI_INIT = {
"Width", "png.ihdr.width", FT_UINT32, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_ihdr_height PNG_HFI_INIT = {
"Height", "png.ihdr.height", FT_UINT32, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_ihdr_bitdepth PNG_HFI_INIT = {
"Bit Depth", "png.ihdr.bitdepth", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static const value_string colour_type_vals[] = {
{ 0, "Greyscale"},
{ 2, "Truecolour"},
@ -134,38 +83,22 @@ static const value_string colour_type_vals[] = {
{ 0, NULL }
};
static header_field_info hfi_png_ihdr_colour_type PNG_HFI_INIT = {
"Colour Type", "png.ihdr.colour_type", FT_UINT8, BASE_DEC,
VALS(colour_type_vals), 0, NULL, HFILL };
static const value_string compression_method_vals[] = {
{ 0, "Deflate"},
{ 0, NULL }
};
static header_field_info hfi_png_ihdr_compression_method PNG_HFI_INIT = {
"Compression Method", "png.ihdr.compression_method", FT_UINT8, BASE_DEC,
VALS(compression_method_vals), 0, NULL, HFILL };
static const value_string filter_method_vals[] = {
{ 0, "Adaptive"},
{ 0, NULL }
};
static header_field_info hfi_png_ihdr_filter_method PNG_HFI_INIT = {
"Filter Method", "png.ihdr.filter_method", FT_UINT8, BASE_DEC,
VALS(filter_method_vals), 0, NULL, HFILL };
static const value_string interlace_method_vals[] = {
{ 0, "No interlace"},
{ 1, "Adam7"},
{ 0, NULL }
};
static header_field_info hfi_png_ihdr_interlace_method PNG_HFI_INIT = {
"Interlace Method", "png.ihdr.interlace_method", FT_UINT8, BASE_DEC,
VALS(interlace_method_vals), 0, NULL, HFILL };
static const value_string srgb_intent_vals[] = {
{ 0, "Perceptual" },
{ 1, "Relative colorimetric" },
@ -174,115 +107,55 @@ static const value_string srgb_intent_vals[] = {
{ 0, NULL }
};
static header_field_info hfi_png_srgb_intent PNG_HFI_INIT = {
"Intent", "png.srgb.intent", FT_UINT8, BASE_DEC,
VALS(srgb_intent_vals), 0, NULL, HFILL };
static header_field_info hfi_png_text_keyword PNG_HFI_INIT = {
"Keyword", "png.text.keyword", FT_STRING, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_text_string PNG_HFI_INIT = {
"String", "png.text.string", FT_STRING, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_time_year PNG_HFI_INIT = {
"Year", "png.time.year", FT_UINT16, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_time_month PNG_HFI_INIT = {
"Month", "png.time.month", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_time_day PNG_HFI_INIT = {
"Day", "png.time.day", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_time_hour PNG_HFI_INIT = {
"Hour", "png.time.hour", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_time_minute PNG_HFI_INIT = {
"Minute", "png.time.minute", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_time_second PNG_HFI_INIT = {
"Second", "png.time.second", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_phys_horiz PNG_HFI_INIT = {
"Horizontal pixels per unit", "png.phys.horiz", FT_UINT32, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_phys_vert PNG_HFI_INIT = {
"Vertical pixels per unit", "png.phys.vert", FT_UINT32, BASE_DEC,
NULL, 0, NULL, HFILL };
static const value_string phys_unit_vals[] = {
{ 0, "Unit is unknown"},
{ 1, "Unit is METRE"},
{ 0, NULL }
};
static header_field_info hfi_png_phys_unit PNG_HFI_INIT = {
"Unit", "png.phys.unit", FT_UINT8, BASE_DEC,
VALS(phys_unit_vals), 0, NULL, HFILL };
static int proto_png = -1;
static header_field_info hfi_png_bkgd_palette_index PNG_HFI_INIT = {
"Palette Index", "png.bkgd.palette_index", FT_UINT8, BASE_DEC,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_bkgd_greyscale PNG_HFI_INIT = {
"Greyscale", "png.bkgd.greyscale", FT_UINT16, BASE_HEX,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_bkgd_red PNG_HFI_INIT = {
"Red", "png.bkgd.red", FT_UINT16, BASE_HEX,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_bkgd_green PNG_HFI_INIT = {
"Green", "png.bkgd.green", FT_UINT16, BASE_HEX,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_bkgd_blue PNG_HFI_INIT = {
"Blue", "png.bkgd.blue", FT_UINT16, BASE_HEX,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_white_x PNG_HFI_INIT = {
"White X", "png.chrm.white.x", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_white_y PNG_HFI_INIT = {
"White Y", "png.chrm.white.y", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_red_x PNG_HFI_INIT = {
"Red X", "png.chrm.red.x", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_red_y PNG_HFI_INIT = {
"Red Y", "png.chrm.red.y", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_green_x PNG_HFI_INIT = {
"Green X", "png.chrm.green.x", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_green_y PNG_HFI_INIT = {
"Green Y", "png.chrm.green.y", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_blue_x PNG_HFI_INIT = {
"Blue X", "png.chrm.blue.x", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_chrm_blue_y PNG_HFI_INIT = {
"Blue Y", "png.chrm.blue.y", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static header_field_info hfi_png_gama_gamma PNG_HFI_INIT = {
"Gamma", "png.gama.gamma", FT_FLOAT, BASE_NONE,
NULL, 0, NULL, HFILL };
static int hf_png_bkgd_blue = -1;
static int hf_png_bkgd_green = -1;
static int hf_png_bkgd_greyscale = -1;
static int hf_png_bkgd_palette_index = -1;
static int hf_png_bkgd_red = -1;
static int hf_png_chrm_blue_x = -1;
static int hf_png_chrm_blue_y = -1;
static int hf_png_chrm_green_x = -1;
static int hf_png_chrm_green_y = -1;
static int hf_png_chrm_red_x = -1;
static int hf_png_chrm_red_y = -1;
static int hf_png_chrm_white_x = -1;
static int hf_png_chrm_white_y = -1;
static int hf_png_chunk_crc = -1;
static int hf_png_chunk_data = -1;
static int hf_png_chunk_flag_anc = -1;
static int hf_png_chunk_flag_priv = -1;
static int hf_png_chunk_flag_stc = -1;
static int hf_png_chunk_len = -1;
static int hf_png_chunk_type_str = -1;
static int hf_png_gama_gamma = -1;
static int hf_png_ihdr_bitdepth = -1;
static int hf_png_ihdr_colour_type = -1;
static int hf_png_ihdr_compression_method = -1;
static int hf_png_ihdr_filter_method = -1;
static int hf_png_ihdr_height = -1;
static int hf_png_ihdr_interlace_method = -1;
static int hf_png_ihdr_width = -1;
static int hf_png_phys_horiz = -1;
static int hf_png_phys_unit = -1;
static int hf_png_phys_vert = -1;
static int hf_png_signature = -1;
static int hf_png_srgb_intent = -1;
static int hf_png_text_keyword = -1;
static int hf_png_text_string = -1;
static int hf_png_time_day = -1;
static int hf_png_time_hour = -1;
static int hf_png_time_minute = -1;
static int hf_png_time_month = -1;
static int hf_png_time_second = -1;
static int hf_png_time_year = -1;
static gint ett_png = -1;
static gint ett_png_chunk = -1;
@ -294,20 +167,20 @@ static dissector_handle_t png_handle;
static void
dissect_png_ihdr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
proto_tree_add_item(tree, &hfi_png_ihdr_width, tvb, 0, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_ihdr_height, tvb, 4, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_ihdr_bitdepth, tvb, 8, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_ihdr_colour_type, tvb, 9, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_ihdr_compression_method, tvb, 10, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_ihdr_filter_method, tvb, 11, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_ihdr_interlace_method, tvb, 12, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_width, tvb, 0, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_height, tvb, 4, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_bitdepth, tvb, 8, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_colour_type, tvb, 9, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_compression_method, tvb, 10, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_filter_method, tvb, 11, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_ihdr_interlace_method, tvb, 12, 1, ENC_BIG_ENDIAN);
}
static void
dissect_png_srgb(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
proto_tree_add_item(tree, &hfi_png_srgb_intent,
proto_tree_add_item(tree, hf_png_srgb_intent,
tvb, 0, 1, ENC_BIG_ENDIAN);
}
@ -323,30 +196,30 @@ dissect_png_text(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
return;
}
proto_tree_add_item(tree, &hfi_png_text_keyword, tvb, offset, nul_offset, ENC_ISO_8859_1|ENC_NA);
proto_tree_add_item(tree, hf_png_text_keyword, tvb, offset, nul_offset, ENC_ISO_8859_1|ENC_NA);
offset = nul_offset+1; /* length of the key word + 0 character */
proto_tree_add_item(tree, &hfi_png_text_string, tvb, offset, tvb_captured_length_remaining(tvb, offset), ENC_ISO_8859_1|ENC_NA);
proto_tree_add_item(tree, hf_png_text_string, tvb, offset, tvb_captured_length_remaining(tvb, offset), ENC_ISO_8859_1|ENC_NA);
}
static void
dissect_png_time(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
proto_tree_add_item(tree, &hfi_png_time_year, tvb, 0, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_time_month, tvb, 2, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_time_day, tvb, 3, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_time_hour, tvb, 4, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_time_minute, tvb, 5, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_time_second, tvb, 6, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_time_year, tvb, 0, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_time_month, tvb, 2, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_time_day, tvb, 3, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_time_hour, tvb, 4, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_time_minute, tvb, 5, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_time_second, tvb, 6, 1, ENC_BIG_ENDIAN);
}
static void
dissect_png_phys(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
proto_tree_add_item(tree, &hfi_png_phys_horiz, tvb, 0, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_phys_vert, tvb, 4, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_phys_unit, tvb, 8, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_phys_horiz, tvb, 0, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_phys_vert, tvb, 4, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_phys_unit, tvb, 8, 1, ENC_BIG_ENDIAN);
}
static void
@ -354,15 +227,15 @@ dissect_png_bkgd(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
{
switch(tvb_reported_length(tvb)){
case 1: /* colour type 3 */
proto_tree_add_item(tree, &hfi_png_bkgd_palette_index, tvb, 0, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_bkgd_palette_index, tvb, 0, 1, ENC_BIG_ENDIAN);
break;
case 2: /* colour type 0, 4 */
proto_tree_add_item(tree, &hfi_png_bkgd_greyscale, tvb, 0, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_bkgd_greyscale, tvb, 0, 2, ENC_BIG_ENDIAN);
break;
case 6: /* colour type 2, 6 */
proto_tree_add_item(tree, &hfi_png_bkgd_red, tvb, 0, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_bkgd_green, tvb, 2, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, &hfi_png_bkgd_blue, tvb, 4, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_bkgd_red, tvb, 0, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_bkgd_green, tvb, 2, 2, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_png_bkgd_blue, tvb, 4, 2, ENC_BIG_ENDIAN);
break;
}
}
@ -374,42 +247,42 @@ dissect_png_chrm(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
gint offset = 0;
wx = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_white_x,
proto_tree_add_float(tree, hf_png_chrm_white_x,
tvb, offset, 4, wx);
offset += 4;
wy = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_white_y,
proto_tree_add_float(tree, hf_png_chrm_white_y,
tvb, offset, 4, wy);
offset += 4;
rx = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_red_x,
proto_tree_add_float(tree, hf_png_chrm_red_x,
tvb, offset, 4, rx);
offset += 4;
ry = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_red_y,
proto_tree_add_float(tree, hf_png_chrm_red_y,
tvb, offset, 4, ry);
offset += 4;
gx = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_green_x,
proto_tree_add_float(tree, hf_png_chrm_green_x,
tvb, offset, 4, gx);
offset += 4;
gy = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_green_y,
proto_tree_add_float(tree, hf_png_chrm_green_y,
tvb, offset, 4, gy);
offset += 4;
bx = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_blue_x,
proto_tree_add_float(tree, hf_png_chrm_blue_x,
tvb, offset, 4, bx);
offset += 4;
by = tvb_get_ntohl(tvb, offset) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_chrm_blue_y,
proto_tree_add_float(tree, hf_png_chrm_blue_y,
tvb, offset, 4, by);
}
@ -419,7 +292,7 @@ dissect_png_gama(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree)
float gamma;
gamma = tvb_get_ntohl(tvb, 0) / 100000.0f;
proto_tree_add_float(tree, &hfi_png_gama_gamma,
proto_tree_add_float(tree, hf_png_gama_gamma,
tvb, 0, 4, gamma);
}
@ -439,10 +312,10 @@ dissect_png(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void *da
col_append_str(pinfo->cinfo, COL_INFO, " (PNG)");
ti=proto_tree_add_item(parent_tree, hfi_png, tvb, offset, -1, ENC_NA);
ti=proto_tree_add_item(parent_tree, proto_png, tvb, offset, -1, ENC_NA);
tree=proto_item_add_subtree(ti, ett_png);
proto_tree_add_item(tree, &hfi_png_signature, tvb, offset, 8, ENC_NA);
proto_tree_add_item(tree, hf_png_signature, tvb, offset, 8, ENC_NA);
offset+=8;
while(tvb_reported_length_remaining(tvb, offset) > 0){
@ -463,7 +336,7 @@ dissect_png(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void *da
chunk_tree = proto_tree_add_subtree_format(tree, tvb, offset, 4+4+len_field+4, ett_png_chunk, NULL,
"%s (%s)", val_to_str_const(type, chunk_types, "unknown"), type_str);
len_it = proto_tree_add_item(chunk_tree, &hfi_png_chunk_len,
len_it = proto_tree_add_item(chunk_tree, hf_png_chunk_len,
tvb, offset, 4, ENC_BIG_ENDIAN);
offset+=4;
if (len_field > G_MAXINT) {
@ -471,12 +344,12 @@ dissect_png(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void *da
return offset;
}
proto_tree_add_item(chunk_tree, &hfi_png_chunk_type_str,
proto_tree_add_item(chunk_tree, hf_png_chunk_type_str,
tvb, offset, 4, ENC_ASCII|ENC_NA);
proto_tree_add_item(chunk_tree, &hfi_png_chunk_flag_anc, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(chunk_tree, &hfi_png_chunk_flag_priv, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(chunk_tree, &hfi_png_chunk_flag_stc, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(chunk_tree, hf_png_chunk_flag_anc, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(chunk_tree, hf_png_chunk_flag_priv, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(chunk_tree, hf_png_chunk_flag_stc, tvb, offset, 4, ENC_BIG_ENDIAN);
offset+=4;
chunk_tvb=tvb_new_subset_length(tvb, offset, len_field);
@ -507,14 +380,14 @@ dissect_png(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void *da
break;
default:
if (len_field>0) {
proto_tree_add_item(chunk_tree, &hfi_png_chunk_data,
proto_tree_add_item(chunk_tree, hf_png_chunk_data,
tvb, offset, len_field, ENC_NA);
}
break;
}
offset += len_field;
proto_tree_add_item(chunk_tree, &hfi_png_chunk_crc, tvb, offset, 4, ENC_BIG_ENDIAN);
proto_tree_add_item(chunk_tree, hf_png_chunk_crc, tvb, offset, 4, ENC_BIG_ENDIAN);
offset+=4;
}
return offset;
@ -523,52 +396,213 @@ dissect_png(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, void *da
void
proto_register_png(void)
{
#ifndef HAVE_HFI_SECTION_INIT
static header_field_info *hfi[] =
{
&hfi_png_signature,
&hfi_png_chunk_type_str,
&hfi_png_chunk_data,
&hfi_png_chunk_len,
&hfi_png_chunk_crc,
&hfi_png_chunk_flag_anc,
&hfi_png_chunk_flag_priv,
&hfi_png_chunk_flag_stc,
&hfi_png_ihdr_width,
&hfi_png_ihdr_height,
&hfi_png_ihdr_bitdepth,
&hfi_png_ihdr_colour_type,
&hfi_png_ihdr_compression_method,
&hfi_png_ihdr_filter_method,
&hfi_png_ihdr_interlace_method,
&hfi_png_srgb_intent,
&hfi_png_text_keyword,
&hfi_png_text_string,
&hfi_png_time_year,
&hfi_png_time_month,
&hfi_png_time_day,
&hfi_png_time_hour,
&hfi_png_time_minute,
&hfi_png_time_second,
&hfi_png_phys_horiz,
&hfi_png_phys_vert,
&hfi_png_phys_unit,
&hfi_png_bkgd_palette_index,
&hfi_png_bkgd_greyscale,
&hfi_png_bkgd_red,
&hfi_png_bkgd_green,
&hfi_png_bkgd_blue,
&hfi_png_chrm_white_x,
&hfi_png_chrm_white_y,
&hfi_png_chrm_red_x,
&hfi_png_chrm_red_y,
&hfi_png_chrm_green_x,
&hfi_png_chrm_green_y,
&hfi_png_chrm_blue_x,
&hfi_png_chrm_blue_y,
&hfi_png_gama_gamma
static hf_register_info hf[] = {
{ &hf_png_signature,
{ "PNG Signature", "png.signature",
FT_BYTES, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chunk_data,
{ "Data", "png.chunk.data",
FT_NONE, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chunk_type_str,
{ "Chunk", "png.chunk.type",
FT_STRING, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chunk_len,
{ "Len", "png.chunk.len",
FT_UINT32, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chunk_crc,
{ "CRC", "png.chunk.crc",
FT_UINT32, BASE_HEX, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chunk_flag_anc,
{ "Ancillary", "png.chunk.flag.ancillary",
FT_BOOLEAN, 32, TFS(&png_chunk_anc), 0x20000000,
NULL, HFILL }
},
{ &hf_png_chunk_flag_priv,
{ "Private", "png.chunk.flag.private",
FT_BOOLEAN, 32, TFS(&png_chunk_priv), 0x00200000,
NULL, HFILL }
},
{ &hf_png_chunk_flag_stc,
{ "Safe To Copy", "png.chunk.flag.stc",
FT_BOOLEAN, 32, TFS(&png_chunk_stc), 0x00000020,
NULL, HFILL }
},
{ &hf_png_ihdr_width,
{ "Width", "png.ihdr.width",
FT_UINT32, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_ihdr_height,
{ "Height", "png.ihdr.height",
FT_UINT32, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_ihdr_bitdepth,
{ "Bit Depth", "png.ihdr.bitdepth",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_ihdr_colour_type,
{ "Colour Type", "png.ihdr.colour_type",
FT_UINT8, BASE_DEC, VALS(colour_type_vals), 0,
NULL, HFILL }
},
{ &hf_png_ihdr_compression_method,
{ "Compression Method", "png.ihdr.compression_method",
FT_UINT8, BASE_DEC, VALS(compression_method_vals), 0,
NULL, HFILL }
},
{ &hf_png_ihdr_filter_method,
{ "Filter Method", "png.ihdr.filter_method",
FT_UINT8, BASE_DEC, VALS(filter_method_vals), 0,
NULL, HFILL }
},
{ &hf_png_ihdr_interlace_method,
{ "Interlace Method", "png.ihdr.interlace_method",
FT_UINT8, BASE_DEC, VALS(interlace_method_vals), 0,
NULL, HFILL }
},
{ &hf_png_srgb_intent,
{ "Intent", "png.srgb.intent",
FT_UINT8, BASE_DEC, VALS(srgb_intent_vals), 0,
NULL, HFILL }
},
{ &hf_png_text_keyword,
{ "Keyword", "png.text.keyword",
FT_STRING, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_text_string,
{ "String", "png.text.string",
FT_STRING, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_time_year,
{ "Year", "png.time.year",
FT_UINT16, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_time_month,
{ "Month", "png.time.month",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_time_day,
{ "Day", "png.time.day",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_time_hour,
{ "Hour", "png.time.hour",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_time_minute,
{ "Minute", "png.time.minute",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_time_second,
{ "Second", "png.time.second",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_phys_horiz,
{ "Horizontal pixels per unit", "png.phys.horiz",
FT_UINT32, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_phys_vert,
{ "Vertical pixels per unit", "png.phys.vert",
FT_UINT32, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_phys_unit,
{ "Unit", "png.phys.unit",
FT_UINT8, BASE_DEC, VALS(phys_unit_vals), 0,
NULL, HFILL }
},
{ &hf_png_bkgd_palette_index,
{ "Palette Index", "png.bkgd.palette_index",
FT_UINT8, BASE_DEC, NULL, 0,
NULL, HFILL }
},
{ &hf_png_bkgd_greyscale,
{ "Greyscale", "png.bkgd.greyscale",
FT_UINT16, BASE_HEX, NULL, 0,
NULL, HFILL }
},
{ &hf_png_bkgd_red,
{ "Red", "png.bkgd.red",
FT_UINT16, BASE_HEX, NULL, 0,
NULL, HFILL }
},
{ &hf_png_bkgd_green,
{ "Green", "png.bkgd.green",
FT_UINT16, BASE_HEX, NULL, 0,
NULL, HFILL }
},
{ &hf_png_bkgd_blue,
{ "Blue", "png.bkgd.blue",
FT_UINT16, BASE_HEX, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_white_x,
{ "White X", "png.chrm.white.x",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_white_y,
{ "White Y", "png.chrm.white.y",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_red_x,
{ "Red X", "png.chrm.red.x",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_red_y,
{ "Red Y", "png.chrm.red.y",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_green_x,
{ "Green X", "png.chrm.green.x",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_green_y,
{ "Green Y", "png.chrm.green.y",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_blue_x,
{ "Blue X", "png.chrm.blue.x",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_chrm_blue_y,
{ "Blue Y", "png.chrm.blue.y",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
{ &hf_png_gama_gamma,
{ "Gamma", "png.gama.gamma",
FT_FLOAT, BASE_NONE, NULL, 0,
NULL, HFILL }
},
};
#endif
static gint *ett[] =
{
@ -583,12 +617,8 @@ proto_register_png(void)
};
expert_module_t *expert_png;
int proto_png;
proto_png = proto_register_protocol("Portable Network Graphics","PNG","png");
hfi_png = proto_registrar_get_nth(proto_png);
proto_register_fields(proto_png, hfi, array_length(hfi));
proto_register_field_array(proto_png, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
expert_png = expert_register_protocol(proto_png);
@ -606,8 +636,8 @@ void
proto_reg_handoff_png(void)
{
dissector_add_string("media_type", "image/png", png_handle);
heur_dissector_add("http", dissect_png_heur, "PNG file in HTTP", "png_http", hfi_png->id, HEURISTIC_ENABLE);
heur_dissector_add("wtap_file", dissect_png_heur, "PNG file in HTTP", "png_wtap", hfi_png->id, HEURISTIC_ENABLE);
heur_dissector_add("http", dissect_png_heur, "PNG file in HTTP", "png_http", proto_png, HEURISTIC_ENABLE);
heur_dissector_add("wtap_file", dissect_png_heur, "PNG file in HTTP", "png_wtap", proto_png, HEURISTIC_ENABLE);
}
/*