On Thu, Feb 13, 2003 at 01:42:37PM -0800, Guy Harris wrote: > On Thu, Feb 13, 2003 at 12:07:46PM -0500, Craig Rodrigues wrote: > > Thanks for raising these issues. I believe the attached patch > > addresses all of them. > > So should we apply your patch, or Bernd's?
Neither. I missed Bernd's earlier patch. Can you apply the attached patch, which combines elements of Bernd's patch and my patch into one? -- Craig Rodrigues http://home.attbi.com/~rodrigc [EMAIL PROTECTED]
Index: packet-giop.c =================================================================== RCS file: /cvsroot/ethereal/packet-giop.c,v retrieving revision 1.66 diff -u -u -r1.66 packet-giop.c --- packet-giop.c 13 Feb 2003 01:23:35 -0000 1.66 +++ packet-giop.c 13 Feb 2003 22:27:44 -0000 @@ -4185,13 +4185,13 @@ { &hf_giop_iop_vscid, { "VSCID", "giop.iiop.vscid", - FT_UINT32, BASE_HEX, NULL, 0xfffff000, "", HFILL } + FT_UINT32, BASE_HEX, NULL, 0xffffff00, "", HFILL } } , { &hf_giop_iop_scid, { "SCID", "giop.iiop.scid", - FT_UINT32, BASE_HEX, NULL, 0x00000fff, "", HFILL } + FT_UINT32, BASE_HEX, NULL, 0x000000ff, "", HFILL } } , @@ -4718,7 +4718,7 @@ proto_tree *tree = NULL; /* ServiceContext tree */ proto_tree *sub_tree1 = NULL; - proto_item *tf, *tf_st1; + proto_item *tf = NULL, *tf_st1; guint32 context_id; @@ -4729,17 +4729,20 @@ gboolean encapsulation_is_be; guint32 encapsulation_boundary; int temp_offset; + int start_offset = *offset; /* create a subtree */ if (ptree) { - tf = proto_tree_add_text (ptree, tvb, *offset, -1, "ServiceContextList"); + /* set length to 0 now and correct with proto_item_set_len() later */ + tf = proto_tree_add_text (ptree, tvb, *offset, 0, "ServiceContextList"); + tree = proto_item_add_subtree (tf, ett_giop_scl); } /* Get sequence length (number of elements) */ - seqlen = get_CDR_ulong(tvb,offset,stream_is_be,boundary); + if (tree) { proto_tree_add_uint(tree,hf_giop_sequence_length,tvb, *offset-sizeof(seqlen),4,seqlen); @@ -4747,15 +4750,19 @@ /* return if zero length sequence */ - if(seqlen == 0) + if (seqlen == 0) { + if (tf) + proto_item_set_len(tf, *offset - start_offset); + return; + } /* Loop for all ServiceContext's */ for (i=0; i<seqlen; i++) { context_id = get_CDR_ulong(tvb,offset,stream_is_be,boundary); - vscid = context_id & 0xffffff00; /* vendor info, top 24 bits */ + vscid = (context_id & 0xffffff00) >> 8; /* vendor info, top 24 bits */ scid = context_id & 0x000000ff; /* standard service info, lower 8 bits */ service_context_name = match_strval(scid, service_context_ids); @@ -4773,21 +4780,22 @@ if( vscid != 0 || scid > max_service_context_id ) { decode_UnknownServiceContext(tvb, tree, offset, stream_is_be, boundary, vscid, scid); - return; - } - - if (tree) { - tf_st1 = proto_tree_add_text (tree, tvb, *offset, -1, service_context_name); - sub_tree1 = proto_item_add_subtree (tf_st1, ett_giop_scl_st1); + continue; } + temp_offset = *offset; /* get sequence length, new endianness and boundary for encapsulation */ seqlen_cd = get_CDR_encap_info(tvb, sub_tree1, offset, stream_is_be, boundary, &encapsulation_is_be , &encapsulation_boundary); + if (tree) { + tf_st1 = proto_tree_add_text (tree, tvb, temp_offset, sizeof(seqlen_cd) + seqlen_cd , service_context_name); + sub_tree1 = proto_item_add_subtree (tf_st1, ett_giop_scl_st1); + } + if (seqlen_cd == 0) - return; + continue; /* See CORBA 3.0.2 standard, section Section 15.3.3 "Encapsulation", * for how CDR types can be marshalled into a sequence<octet>. @@ -4809,7 +4817,10 @@ break; } - } /* seqlen */ + } /* for seqlen */ + + if (tf) + proto_item_set_len(tf, *offset - start_offset); }