################################################### # Samba4 parser generator for IDL structures # Copyright tridge@samba.org 2000-2003 # Copyright tpot@samba.org 2001 # released under the GNU GPL package IdlEParser; use strict; use client; #use Data::Dumper; # the list of needed functions my %needed; my %structs; my $module = "samr"; my $if_uuid; my $if_version; my $if_endpoints; sub pidl($) { print OUT shift; } ##################################################################### # parse a properties list sub ParseProperties($) { my($props) = shift; foreach my $d (@{$props}) { if (ref($d) ne "HASH") { pidl "[$d] "; } else { foreach my $k (keys %{$d}) { pidl "[$k($d->{$k})] "; } } } } ################################### # find a sibling var in a structure sub find_sibling($$) { my($e) = shift; my($name) = shift; my($fn) = $e->{PARENT}; if ($name =~ /\*(.*)/) { $name = $1; } if ($fn->{TYPE} eq "FUNCTION") { for my $e2 (@{$fn->{DATA}}) { if ($e2->{NAME} eq $name) { return $e2; } } } for my $e2 (@{$fn->{ELEMENTS}}) { if ($e2->{NAME} eq $name) { return $e2; } } die "invalid sibling '$name'"; } #################################################################### # work out the name of a size_is() variable sub find_size_var($$$) { my($e) = shift; my($size) = shift; my($var_prefix) = shift; my($fn) = $e->{PARENT}; if (util::is_constant($size)) { return $size; } if ($size =~ /ndr->|\(/) { return $size; } my $prefix = ""; if ($size =~ /\*(.*)/) { $size = $1; $prefix = "*"; } if ($fn->{TYPE} ne "FUNCTION") { return $prefix . "r->$size"; } my $e2 = find_sibling($e, $size); if (util::has_property($e2, "in") && util::has_property($e2, "out")) { return $prefix . "$var_prefix$size"; } if (util::has_property($e2, "in")) { return $prefix . "r->in.$size"; } if (util::has_property($e2, "out")) { return $prefix . "r->out.$size"; } die "invalid variable in $size for element $e->{NAME} in $fn->{NAME}\n"; } ##################################################################### # work out is a parse function should be declared static or not sub fn_prefix($) { my $fn = shift; if ($fn->{TYPE} eq "TYPEDEF") { if (util::has_property($fn->{DATA}, "public")) { return ""; } } if ($fn->{TYPE} eq "FUNCTION") { if (util::has_property($fn, "public")) { return ""; } } return "static "; } ################################################################### # setup any special flags for an element or structure sub start_flags($) { my $e = shift; my $flags = util::has_property($e, "flag"); if (defined $flags) { pidl "\t{ guint32 _flags_save_$e->{TYPE} = flags;\n"; pidl "\tflags |= $flags;\n"; } } ################################################################### # end any special flags for an element or structure sub end_flags($) { my $e = shift; my $flags = util::has_property($e, "flag"); if (defined $flags) { pidl "\tflags = _flags_save_$e->{TYPE};\n\t}\n"; } } ##################################################################### # work out the correct alignment for a structure sub struct_alignment { my $s = shift; my $align = 1; for my $e (@{$s->{ELEMENTS}}) { my $a = 1; if (!util::need_wire_pointer($e) && defined $structs{$e->{TYPE}}) { if ($structs{$e->{TYPE}}->{DATA}->{TYPE} eq "STRUCT") { $a = struct_alignment($structs{$e->{TYPE}}->{DATA}); } elsif ($structs{$e->{TYPE}}->{DATA}->{TYPE} eq "UNION") { if (defined $structs{$e->{TYPE}}->{DATA}) { $a = union_alignment($structs{$e->{TYPE}}->{DATA}); } } } else { $a = util::type_align($e); } if ($align < $a) { $align = $a; } } return $align; } ##################################################################### # work out the correct alignment for a union sub union_alignment { my $u = shift; my $align = 1; foreach my $e (@{$u->{DATA}}) { my $a = 1; if ($e->{TYPE} eq "EMPTY") { next; } if (!util::need_wire_pointer($e) && defined $structs{$e->{DATA}->{TYPE}}) { my $s = $structs{$e->{DATA}->{TYPE}}; if ($s->{DATA}->{TYPE} eq "STRUCT") { $a = struct_alignment($s->{DATA}); } elsif ($s->{DATA}->{TYPE} eq "UNION") { $a = union_alignment($s->{DATA}); } } else { $a = util::type_align($e->{DATA}); } if ($align < $a) { $align = $a; } } return $align; } ##################################################################### # parse an array - push side sub ParseArray($$$) { my $e = shift; my $var_prefix = shift; my $ndr_flags = shift; pidl "\t// ParseArray $e->{NAME}\n\n"; my $size = find_size_var($e, util::array_size($e), $var_prefix); if (defined $e->{CONFORMANT_SIZE}) { # the conformant size has already been pushed } elsif (!util::is_inline_array($e)) { # we need to emit the array size pidl "\t\toffset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_array_size, NULL);\n"; } if (my $length = util::has_property($e, "length_is")) { $length = find_size_var($e, $length, $var_prefix); pidl "\t\toffset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_length_is, NULL);\n"; pidl "\t\toffset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_length_is, NULL);\n"; $size = $length; } if (util::is_scalar_type($e->{TYPE})) { pidl "\t\t// ndr_push_array_$e->{TYPE}(ndr, $ndr_flags, $var_prefix$e->{NAME}, $size);\n"; } else { pidl "\t\t// ndr_push_array(ndr, $ndr_flags, $var_prefix$e->{NAME}, sizeof($var_prefix$e->{NAME}\[0]), $size, (ndr_push_flags_fn_t)ndr_push_$e->{TYPE});\n"; } } sub ParamPolicyHandle($) { my($p) = shift; my($res); $res .= "\toffset = dissect_nt_policy_hnd(tvb, offset, pinfo, tree, drep, hf_policy_handle, NULL, NULL, FALSE, FALSE);\n"; return $res; } sub ParamString($) { my($p) = shift; my($res); $res .= "\toffset = dissect_ndr_pointer_cb(tvb, offset, pinfo, tree, drep, dissect_ndr_wchar_cvstring, NDR_POINTER_UNIQUE, \"$p->{NAME}\", hf_$p->{NAME}_string, cb_wstr_postprocess, GINT_TO_POINTER(1));\n"; return $res; } sub ParamDomSID($) { my($p) = shift; my($res); $res .= "\toffset = dissect_ndr_nt_SID(tvb, offset, pinfo, tree, drep);\n"; return $res; } my %param_handlers = ( 'policy_handle' => \&ParamPolicyHandle, 'string' => \&ParamString, 'dom_sid2' => \&ParamDomSID, ); #################################################################### # parse scalars in a structure element sub ParseElementScalar($$$) { my($e) = shift; my($var_prefix) = shift; my($ndr_flags) = shift; my $cprefix = util::c_push_prefix($e); my $sub_size = util::has_property($e, "subcontext"); pidl "\t// ParseElementScalar $e->{NAME}\n\n"; start_flags($e); if (util::has_property($e, "relative")) { pidl "\tndr_push_relative(ndr, NDR_SCALARS, $var_prefix$e->{NAME}, (ndr_push_const_fn_t) ndr_push_$e->{TYPE});\n"; } elsif (util::is_inline_array($e)) { ParseArray($e, "r->", "NDR_SCALARS"); } elsif (util::need_wire_pointer($e)) { pidl "\toffset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_ptr, &ptr);\n"; } elsif (util::need_alloc($e)) { # no scalar component } elsif (my $switch = util::has_property($e, "switch_is")) { ParseElementSwitch($e, $var_prefix, $ndr_flags, $switch); } elsif (defined $sub_size) { if (util::is_builtin_type($e->{TYPE})) { pidl "\tndr_push_subcontext_fn(ndr, $sub_size, $cprefix$var_prefix$e->{NAME}, (ndr_push_fn_t) ndr_push_$e->{TYPE});\n"; } else { pidl "\tndr_push_subcontext_flags_fn(ndr, $sub_size, $cprefix$var_prefix$e->{NAME}, (ndr_push_flags_fn_t) ndr_push_$e->{TYPE});\n"; } } elsif (util::is_builtin_type($e->{TYPE})) { pidl "\toffset = dissect_ndr_$e->{TYPE}(tvb, offset, pinfo, tree, drep, hf_$e->{NAME}_$e->{TYPE}, NULL);\n\n"; } else { if (defined($param_handlers{$e->{TYPE}})) { pidl &{$param_handlers{$e->{TYPE}}}($e); } else { pidl "\tproto_tree_add_text(tree, tvb, offset, -1, \"Unhandled IDL type '$e->{TYPE}'\");\n"; } } end_flags($e); } ##################################################################### # push switch element sub ParseElementSwitch($$$$) { my($e) = shift; my($var_prefix) = shift; my($ndr_flags) = shift; my $switch = shift; my $switch_var = find_size_var($e, $switch, $var_prefix); my $cprefix = util::c_push_prefix($e); pidl "\t// ParseElementSwitch $e->{NAME}\n\n"; my $utype = $structs{$e->{TYPE}}; if (!defined $utype || !util::has_property($utype->{DATA}, "nodiscriminant")) { my $e2 = find_sibling($e, $switch); pidl "\tif (($ndr_flags) & NDR_SCALARS) {\n"; pidl "\t\toffset = dissect_ndr_$e2->{TYPE}(tvb, offset, pinfo, tree, drep, hf_switch, NULL);\n"; pidl "\t}\n"; } my $sub_size = util::has_property($e, "subcontext"); if (defined $sub_size) { pidl "\tndr_push_subcontext_union_fn(ndr, $sub_size, $switch_var, $cprefix$var_prefix$e->{NAME}, (ndr_push_union_fn_t) ndr_push_$e->{TYPE});\n"; } else { if (defined($param_handlers{$e->{TYPE}})) { pidl &{$param_handlers{$e->{TYPE}}}($e); } else { pidl "\tproto_tree_add_text(tree, tvb, offset, -1, \"Unhandled IDL type '$e->{TYPE}'\");\n"; } # pidl "\tndr_push_$e->{TYPE}(ndr, $ndr_flags, $switch_var, $cprefix$var_prefix$e->{NAME});\n"; } } ##################################################################### # parse buffers in a structure element sub ParseElementBuffer($$$) { my($e) = shift; my($var_prefix) = shift; my($ndr_flags) = shift; my $cprefix = util::c_push_prefix($e); my $sub_size = util::has_property($e, "subcontext"); pidl "\t// ParseElementBuffer $e->{NAME}\n\n"; if (util::is_pure_scalar($e)) { return; } start_flags($e); if (util::need_wire_pointer($e)) { pidl "\tif (ptr) {\n"; } if (util::has_property($e, "relative")) { pidl "\tndr_push_relative(ndr, NDR_BUFFERS, $cprefix$var_prefix$e->{NAME}, (ndr_push_const_fn_t) ndr_push_$e->{TYPE});\n"; } elsif (util::is_inline_array($e)) { ParseArray($e, "r->", "NDR_BUFFERS"); } elsif (util::array_size($e)) { ParseArray($e, "r->", "NDR_SCALARS|NDR_BUFFERS"); } elsif (my $switch = util::has_property($e, "switch_is")) { if ($e->{POINTERS}) { ParseElementSwitch($e, $var_prefix, "NDR_BUFFERS|NDR_SCALARS", $switch); } else { ParseElementSwitch($e, $var_prefix, "NDR_BUFFERS", $switch); } } elsif (defined $sub_size) { if ($e->{POINTERS}) { if (util::is_builtin_type($e->{TYPE})) { pidl "\tndr_push_subcontext_fn(ndr, $sub_size, $cprefix$var_prefix$e->{NAME}, (ndr_push_fn_t) ndr_push_$e->{TYPE});\n"; } else { pidl "\tndr_push_subcontext_flags_fn(ndr, $sub_size, $cprefix$var_prefix$e->{NAME}, (ndr_push_flags_fn_t) ndr_push_$e->{TYPE});\n"; } } } elsif (util::is_builtin_type($e->{TYPE})) { pidl "\toffset = dissect_ndr_$e->{TYPE}(tvb, offset, pinfo, tree, drep, hf_$e->{NAME}_$e->{TYPE}, NULL);\n"; } elsif ($e->{POINTERS}) { if (defined($param_handlers{$e->{TYPE}})) { pidl &{$param_handlers{$e->{TYPE}}}($e); } else { pidl "\t\toffset = dissect_$e->{TYPE}(tvb, offset, pinfo, tree, drep, NDR_SCALARS|NDR_BUFFERS);\n"; } } else { if (defined($param_handlers{$e->{TYPE}})) { pidl &{$param_handlers{$e->{TYPE}}}($e); } else { pidl "\t\toffset = dissect__$e->{TYPE}(tvb, offset, pinfo, tree, drep, $ndr_flags);\n"; } } if (util::need_wire_pointer($e)) { pidl "\t}\n"; } end_flags($e); } ##################################################################### # parse a struct sub ParseStruct($) { my($struct) = shift; my $conform_e; pidl "\t// ParseStruct $struct->{PARENT}->{NAME}\n\n"; if (! defined $struct->{ELEMENTS}) { return; } start_flags($struct); # see if the structure contains a conformant array. If it # does, then it must be the last element of the structure, and # we need to push the conformant length early, as it fits on # the wire before the structure (and even before the structure # alignment) my $e = $struct->{ELEMENTS}[-1]; if (defined $e->{ARRAY_LEN} && $e->{ARRAY_LEN} eq "*") { my $size = find_size_var($e, util::array_size($e), "r->"); $e->{CONFORMANT_SIZE} = $size; $conform_e = $e; pidl "\tndr_push_uint32(ndr, $size);\n"; } pidl "\tif (!(ndr_flags & NDR_SCALARS)) goto buffers;\n\n"; pidl "\tndr_push_struct_start(ndr);\n"; my $align = struct_alignment($struct); pidl "\tndr_push_align(ndr, $align);\n\n"; foreach my $e (@{$struct->{ELEMENTS}}) { ParseElementScalar($e, "r->", "NDR_SCALARS"); } pidl "buffers:\n"; pidl "\tif (!(ndr_flags & NDR_BUFFERS)) goto done;\n\n"; foreach my $e (@{$struct->{ELEMENTS}}) { ParseElementBuffer($e, "r->", "NDR_BUFFERS"); } pidl "\tndr_push_struct_end(ndr);\n"; pidl "done:\n"; end_flags($struct); } ##################################################################### # parse a union - push side sub ParseUnion($) { my $e = shift; my $have_default = 0; pidl "\t// ParseUnion $e->{PARENT}->{NAME}\n\n"; start_flags($e); pidl "\tif (!(ndr_flags & NDR_SCALARS)) goto buffers;\n"; pidl "\tndr_push_struct_start(ndr);\n"; # my $align = union_alignment($e); # pidl "\tndr_push_align(ndr, $align);\n"; pidl "\tswitch (level) {\n"; foreach my $el (@{$e->{DATA}}) { if ($el->{CASE} eq "default") { pidl "\tdefault:\n"; $have_default = 1; } else { pidl "\tcase $el->{CASE}:\n"; } if ($el->{TYPE} eq "UNION_ELEMENT") { ParseElementScalar($el->{DATA}, "r->", "NDR_SCALARS"); } pidl "\tbreak;\n\n"; } if (! $have_default) { pidl "\tdefault:\n"; pidl "\t\treturn ndr_push_error(ndr, NDR_ERR_BAD_SWITCH, \"Bad switch value \%u\", level);\n"; } pidl "\t}\n"; pidl "buffers:\n"; pidl "\tif (!(ndr_flags & NDR_BUFFERS)) goto done;\n"; pidl "\tswitch (level) {\n"; foreach my $el (@{$e->{DATA}}) { if ($el->{CASE} eq "default") { pidl "\tdefault:\n"; } else { pidl "\tcase $el->{CASE}:\n"; } if ($el->{TYPE} eq "UNION_ELEMENT") { ParseElementBuffer($el->{DATA}, "r->", "NDR_BUFFERS"); } pidl "\tbreak;\n\n"; } if (! $have_default) { pidl "\tdefault:\n"; pidl "\t\treturn ndr_push_error(ndr, NDR_ERR_BAD_SWITCH, \"Bad switch value \%u\", level);\n"; } pidl "\t}\n"; pidl "\tndr_push_struct_end(ndr);\n"; pidl "done:\n"; end_flags($e); } ##################################################################### # parse a type sub ParseType($) { my($data) = shift; if (ref($data) eq "HASH") { ($data->{TYPE} eq "STRUCT") && ParseStruct($data); ($data->{TYPE} eq "UNION") && ParseUnion($data); } } ##################################################################### # parse a typedef sub ParseTypedefEthereal($) { my($e) = shift; my $static = fn_prefix($e); if ($e->{DATA}->{TYPE} eq "STRUCT") { pidl $static . "int dissect_$e->{NAME}(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, guint8 *drep, int ndr_flags)\n"; pidl "\n{\n"; ParseType($e->{DATA}); pidl "\treturn offset;\n"; pidl "}\n\n"; } if ($e->{DATA}->{TYPE} eq "UNION") { pidl $static . "int dissect_$e->{NAME}(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, guint8 *drep, int ndr_flags)\n"; pidl "\n{\n"; ParseType($e->{DATA}); pidl "\treturn offset;\n"; pidl "}\n\n"; } } ##################################################################### # parse a function element sub ParseFunctionElement($$) { my $e = shift; my $inout = shift; pidl "\t// ParseFunctionElement $e->{NAME}\n\n"; if (util::array_size($e)) { if (util::need_wire_pointer($e)) { pidl "\toffset = dissect_ndr_uint32(tvb, offset, pinfo, tree, drep, hf_ptr, &ptr);\n"; pidl "\tif (ptr) {\n"; ParseArray($e, "r->$inout.", "NDR_SCALARS|NDR_BUFFERS"); pidl "\t}\n"; } else { ParseArray($e, "r->$inout.", "NDR_SCALARS|NDR_BUFFERS"); } } else { ParseElementScalar($e, "r->$inout.", "NDR_SCALARS|NDR_BUFFERS"); if ($e->{POINTERS}) { ParseElementBuffer($e, "r->$inout.", "NDR_SCALARS|NDR_BUFFERS"); } } } ##################################################################### # parse a function sub ParseFunctionEthereal($) { my($fn) = shift; my $static = fn_prefix($fn); # Comment displaying IDL for this function pidl "/*\n\n"; pidl IdlDump::DumpFunction($fn); pidl "*/\n\n"; # Request pidl $static . "int $fn->{NAME}_rqst(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, guint8 *drep)\n"; pidl "{\n"; pidl "\tint flags = NDR_SCALARS|NDR_BUFFERS;\n\n"; pidl "\tguint32 ptr;\n\n"; foreach my $e (@{$fn->{DATA}}) { if (util::has_property($e, "in")) { ParseFunctionElement($e, "in"); } } pidl "\treturn offset;\n"; pidl "}\n\n"; # Response pidl $static . "int $fn->{NAME}_resp(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, guint8 *drep)\n"; pidl "{\n"; pidl "\tint flags = NDR_SCALARS|NDR_BUFFERS;\n\n"; pidl "\tguint32 ptr;\n\n"; foreach my $e (@{$fn->{DATA}}) { if (util::has_property($e, "out")) { ParseFunctionElement($e, "out"); } } if ($fn->{RETURN_TYPE} && $fn->{RETURN_TYPE} ne "void") { if ($fn->{RETURN_TYPE} eq "NTSTATUS") { pidl "\n\toffset = dissect_ntstatus(tvb, offset, pinfo, tree, drep, hf_rc, NULL);\n\n"; } else { pidl "\tproto_tree_add_text(tree, tvb, offset, -1, \"Unhandled return type '$fn->{RETURN_TYPE}'\");\n\n"; } } pidl "\treturn offset;\n"; pidl "}\n\n"; } ##################################################################### # produce a function call table sub FunctionTable($) { my($interface) = shift; my($data) = $interface->{DATA}; my $count = 0; my $uname = uc $interface->{NAME}; foreach my $d (@{$data}) { if ($d->{TYPE} eq "FUNCTION") { $count++; } } if ($count == 0) { return; } pidl "static dcerpc_sub_dissector dcerpc_dissectors[] = {\n"; my $num = 0; foreach my $d (@{$data}) { if ($d->{TYPE} eq "FUNCTION") { # Strip module name from function name, if present my($n) = $d->{NAME}; $n = substr($d->{NAME}, length($module) + 1), if $module eq substr($d->{NAME}, 0, length($module)); pidl "\t{ $num, \"$n\",\n"; pidl "\t\t$d->{NAME}_rqst,\n"; pidl "\t\t$d->{NAME}_resp },\n"; $num++; } } pidl "};\n\n"; } ##################################################################### # parse the interface definitions sub ParseInterface($) { my($interface) = shift; my($data) = $interface->{DATA}; foreach my $d (@{$data}) { if ($d->{TYPE} eq "TYPEDEF") { $structs{$d->{NAME}} = $d; } } foreach my $d (@{$data}) { ($d->{TYPE} eq "TYPEDEF") && ParseTypedefEthereal($d); ($d->{TYPE} eq "FUNCTION") && ParseFunctionEthereal($d); } FunctionTable($interface); } # Convert an idl type to an ethereal FT_* type sub type2ft($) { my($t) = shift; return "FT_UINT32", if ($t eq "uint32"); return "FT_UINT16", if ($t eq "uint16"); return "FT_BYTES"; } # Select an ethereal BASE_* type for an idl type sub type2base($) { my($t) = shift; return "BASE_DEC", if ($t eq "uint32") or ($t eq "uint16"); return "BASE_NONE"; } sub NeededFunction($) { my $fn = shift; $needed{"pull_$fn->{NAME}"} = 1; $needed{"push_$fn->{NAME}"} = 1; foreach my $e (@{$fn->{DATA}}) { $needed{"hf_$e->{NAME}_$e->{TYPE}"} = { 'name' => $e->{NAME}, 'type' => $e->{TYPE}, 'ft' => type2ft($e->{TYPE}), 'base' => type2base($e->{TYPE}) }; $e->{PARENT} = $fn; $needed{"pull_$e->{TYPE}"} = 1; $needed{"push_$e->{TYPE}"} = 1; } } sub NeededTypedef($) { my $t = shift; if (util::has_property($t->{DATA}, "public")) { $needed{"pull_$t->{NAME}"} = 1; $needed{"push_$t->{NAME}"} = 1; } if ($t->{DATA}->{TYPE} eq "STRUCT") { for my $e (@{$t->{DATA}->{ELEMENTS}}) { $e->{PARENT} = $t->{DATA}; if ($needed{"pull_$t->{NAME}"}) { $needed{"pull_$e->{TYPE}"} = 1; } if ($needed{"push_$t->{NAME}"}) { $needed{"push_$e->{TYPE}"} = 1; } } } if ($t->{DATA}->{TYPE} eq "UNION") { for my $e (@{$t->{DATA}->{DATA}}) { $e->{PARENT} = $t->{DATA}; if ($e->{TYPE} eq "UNION_ELEMENT") { if ($needed{"pull_$t->{NAME}"}) { $needed{"pull_$e->{DATA}->{TYPE}"} = 1; } if ($needed{"push_$t->{NAME}"}) { $needed{"push_$e->{DATA}->{TYPE}"} = 1; } } } } } ##################################################################### # work out what parse functions are needed sub BuildNeeded($) { my($interface) = shift; my($data) = $interface->{DATA}; foreach my $d (@{$data}) { ($d->{TYPE} eq "FUNCTION") && NeededFunction($d); } foreach my $d (reverse @{$data}) { ($d->{TYPE} eq "TYPEDEF") && NeededTypedef($d); } } ##################################################################### # parse the interface definitions sub ModuleHeader($) { my($h) = shift; $if_uuid = $h->{PROPERTIES}->{uuid}; $if_version = $h->{PROPERTIES}->{version}; $if_endpoints = $h->{PROPERTIES}->{endpoints}; } ##################################################################### # parse a parsed IDL structure back into an IDL file sub Parse($$) { my($idl) = shift; my($filename) = shift; open(OUT, ">$filename") || die "can't open $filename"; pidl "/* parser auto-generated by pidl */\n\n"; pidl "#ifdef HAVE_CONFIG_H\n"; pidl "#include \"config.h\"\n"; pidl "#endif\n\n"; pidl "#include \"packet-dcerpc.h\"\n"; pidl "#include \"packet-dcerpc-nt.h\"\n\n"; pidl "#include \"packet-dcerpc-common.h\"\n\n"; pidl "#define NDR_SCALARS 1\n"; pidl "#define NDR_BUFFERS 2\n\n"; pidl "extern const value_string NT_errors[];\n\n"; foreach my $x (@{$idl}) { $module = $x->{NAME}, if $x->{TYPE} eq "INTERFACE"; } pidl "static int proto_dcerpc_$module = -1;\n\n"; pidl "static gint ett_dcerpc_$module = -1;\n\n"; pidl "static int hf_opnum = -1;\n"; pidl "static int hf_rc = -1;\n"; pidl "static int hf_ptr = -1;\n"; pidl "static int hf_switch = -1;\n"; pidl "static int hf_policy_handle = -1;\n"; pidl "static int hf_array_size = -1;\n"; pidl "static int hf_length_is = -1;\n"; foreach my $x (@{$idl}) { ($x->{TYPE} eq "MODULEHEADER") && ModuleHeader($x); if ($x->{TYPE} eq "INTERFACE") { BuildNeeded($x); foreach my $y (keys(%needed)) { pidl "static int $y = -1;\n", if $y =~ /^hf_/; } ParseInterface($x); } } pidl "static e_uuid_t uuid_dcerpc_$module = {\n"; pidl "\t0x" . substr($if_uuid, 0, 8); pidl ", 0x" . substr($if_uuid, 9, 4); pidl ", 0x" . substr($if_uuid, 14, 4) . ",\n"; pidl "\t{ 0x" . substr($if_uuid, 19, 2); pidl ", 0x" . substr($if_uuid, 21, 2); pidl ", 0x" . substr($if_uuid, 24, 2); pidl ", 0x" . substr($if_uuid, 26, 2); pidl ", 0x" . substr($if_uuid, 28, 2); pidl ", 0x" . substr($if_uuid, 30, 2); pidl ", 0x" . substr($if_uuid, 32, 2); pidl ", 0x" . substr($if_uuid, 34, 2) . " }\n"; pidl "};\n\n"; pidl "static guint16 ver_dcerpc_$module = " . $if_version . ";\n\n"; pidl "void proto_register_dcerpc_samr(void)\n"; pidl "{\n"; pidl "\tstatic hf_register_info hf[] = {\n"; pidl "\t{ &hf_opnum, { \"Operation\", \"$module.opnum\", FT_UINT16, BASE_DEC, NULL, 0x0, \"Operation\", HFILL }},\n"; pidl "\t{ &hf_policy_handle, { \"Policy handle\", \"$module.policy\", FT_BYTES, BASE_NONE, NULL, 0x0, \"Policy handle\", HFILL }},\n"; pidl "\t{ &hf_rc, { \"Return code\", \"$module.rc\", FT_UINT32, BASE_HEX, VALS(NT_errors), 0x0, \"Return status code\", HFILL }},\n"; pidl "\t{ &hf_switch, { \"Switch\", \"$module.switch\", FT_UINT16, BASE_DEC, NULL, 0x0, \"Switch\", HFILL }},\n"; pidl "\t{ &hf_array_size, { \"Array size\", \"$module.array_size\", FT_UINT32, BASE_DEC, NULL, 0x0, \"Array size\", HFILL }},\n"; pidl "\t{ &hf_length_is, { \"Length is\", \"$module.length_is\", FT_UINT32, BASE_DEC, NULL, 0x0, \"Length is\", HFILL }},\n"; pidl "\t{ &hf_ptr, { \"Pointer\", \"$module.ptr\", FT_UINT32, BASE_HEX, NULL, 0x0, \"Pointer\", HFILL }},\n"; foreach my $x (keys(%needed)) { next, if !($x =~ /^hf_/); pidl "\t{ &$x,\n"; pidl "\t { \"$needed{$x}{name}\", \"$x\", $needed{$x}{ft}, $needed{$x}{base},\n"; pidl"\t NULL, 0, \"$x\", HFILL }},\n"; } pidl "\t};\n\n"; pidl "\tstatic gint *ett[] = {\n"; pidl "\t\t&ett_dcerpc_$module,\n"; pidl "\t};\n\n"; pidl "\tproto_dcerpc_$module = proto_register_protocol(\"$module\", \"$module\", \"$module\");\n\n"; pidl "\tproto_register_field_array(proto_dcerpc_$module, hf, array_length (hf));\n"; pidl "\tproto_register_subtree_array(ett, array_length(ett));\n"; pidl "}\n\n"; pidl "void proto_reg_handoff_dcerpc_$module(void)\n"; pidl "{\n"; pidl "\tdcerpc_init_uuid(proto_dcerpc_$module, ett_dcerpc_$module, \n"; pidl "\t\t&uuid_dcerpc_$module, ver_dcerpc_$module, \n"; pidl "\t\tdcerpc_dissectors, hf_opnum);\n"; pidl "}\n"; close(OUT); } 1;