mirror of
https://github.com/samba-team/samba.git
synced 2025-11-15 16:23:49 +03:00
-
438 lines
11 KiB
Perl
438 lines
11 KiB
Perl
###################################################
|
|
# Ethereal parser generator for IDL structures
|
|
# Copyright tpot@samba.org 2001
|
|
# Copyright tridge@samba.org 2000
|
|
# released under the GNU GPL
|
|
|
|
package IdlParser;
|
|
|
|
use Data::Dumper;
|
|
|
|
my($res);
|
|
|
|
#####################################################################
|
|
# parse a properties list
|
|
sub ParseProperties($)
|
|
{
|
|
my($props) = shift;
|
|
foreach my $d (@{$props}) {
|
|
if (ref($d) ne "HASH") {
|
|
$res .= "[$d] ";
|
|
} else {
|
|
foreach my $k (keys %{$d}) {
|
|
$res .= "[$k($d->{$k})] ";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse an array - push side
|
|
sub ParseArrayPush($)
|
|
{
|
|
my $e = shift;
|
|
my $size = util::has_property($e->{PROPERTIES}, "size_is");
|
|
if (util::is_scalar_type($e->{TYPE})) {
|
|
$res .= "\t\tNDR_CHECK(ndr_push_array_$e->{TYPE}(ndr, r->$e->{NAME}, r->$size));\n:";
|
|
} else {
|
|
$res .= "\t\tNDR_CHECK(ndr_push_array(ndr, ndr_flags, r->$e->{NAME}, sizeof(r->$e->{NAME}\[0]), r->$size, (ndr_push_flags_fn_t)ndr_push_$e->{TYPE}));\n";
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse an array - pull side
|
|
sub ParseArrayPull($)
|
|
{
|
|
my $e = shift;
|
|
my $size = util::has_property($e->{PROPERTIES}, "size_is");
|
|
if (util::is_scalar_type($e->{TYPE})) {
|
|
$res .= "\t\tNDR_CHECK(ndr_pull_array_$e->{TYPE}(ndr, &r->$e->{NAME}, r->$size));\n:";
|
|
} else {
|
|
$res .= "\t\tNDR_CHECK(ndr_pull_array(ndr, ndr_flags, (void **)&r->$e->{NAME}, sizeof(r->$e->{NAME}\[0]), r->$size, (ndr_pull_flags_fn_t)ndr_pull_$e->{TYPE}));\n";
|
|
}
|
|
}
|
|
|
|
|
|
#####################################################################
|
|
# parse scalars in a structure element
|
|
sub ParseElementPushScalar($$$)
|
|
{
|
|
my($e) = shift;
|
|
my($var_prefix) = shift;
|
|
my($ndr_flags) = shift;
|
|
|
|
if (defined $e->{VALUE}) {
|
|
$res .= "\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, $e->{VALUE}));\n";
|
|
} elsif ($e->{POINTERS} &&
|
|
!util::has_property($e->{PROPERTIES}, "ref")) {
|
|
$res .= "\tNDR_CHECK(ndr_push_ptr(ndr, $var_prefix$e->{NAME}));\n";
|
|
} elsif (util::is_builtin_type($e->{TYPE})) {
|
|
$res .= "\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, $var_prefix$e->{NAME}));\n";
|
|
} else {
|
|
$res .= "\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, $ndr_flags, $var_prefix$e->{NAME}));\n";
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse scalars in a structure element - pull size
|
|
sub ParseElementPullScalar($$)
|
|
{
|
|
my($e) = shift;
|
|
my($var_prefix) = shift;
|
|
|
|
if (defined $e->{VALUE}) {
|
|
$res .= "\tNDR_CHECK(ndr_pull_$e->{TYPE}(ndr, $e->{VALUE}));\n";
|
|
} elsif ($e->{POINTERS} &&
|
|
!util::has_property($e->{PROPERTIES}, "ref")) {
|
|
$res .= "\tNDR_CHECK(ndr_pull_uint32(ndr, &_ptr_$e->{NAME}));\n";
|
|
$res .= "\tif (_ptr_$e->{NAME}) {\n";
|
|
$res .= "\t\tNDR_ALLOC(ndr, $var_prefix$e->{NAME});\n";
|
|
$res .= "\t} else {\n";
|
|
$res .= "\t\t$var_prefix$e->{NAME} = NULL;\n";
|
|
$res .= "\t}\n";
|
|
} else {
|
|
$res .= "\tNDR_CHECK(ndr_pull_$e->{TYPE}(ndr, &$var_prefix$e->{NAME}));\n";
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse buffers in a structure element
|
|
sub ParseElementPushBuffer($$)
|
|
{
|
|
my($e) = shift;
|
|
my($var_prefix) = shift;
|
|
|
|
if (util::has_property($e->{PROPERTIES}, "ref")) {
|
|
return;
|
|
}
|
|
|
|
if (util::is_scalar_type($e->{TYPE}) && !$e->{POINTERS}) {
|
|
return;
|
|
}
|
|
|
|
if ($e->{POINTERS}) {
|
|
$res .= "\tif ($var_prefix$e->{NAME}) {\n";
|
|
}
|
|
|
|
if (util::has_property($e->{PROPERTIES}, "size_is")) {
|
|
ParseArrayPush($e);
|
|
} else {
|
|
if (util::is_scalar_type($e->{TYPE})) {
|
|
$res .= "\t\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, *$var_prefix$e->{NAME}));\n";
|
|
} elsif (util::has_property($e->{PROPERTIES}, "ref") || !$e->{POINTERS}) {
|
|
$res .= "\t\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, ndr_flags, *$var_prefix$e->{NAME}));\n";
|
|
} elsif (util::is_builtin_type($e->{TYPE})) {
|
|
$res .= "\t\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, $var_prefix$e->{NAME}));\n";
|
|
} else {
|
|
$res .= "\t\tNDR_CHECK(ndr_push_$e->{TYPE}(ndr, ndr_flags, $var_prefix$e->{NAME}));\n";
|
|
}
|
|
}
|
|
|
|
if ($e->{POINTERS}) {
|
|
$res .= "\t}\n";
|
|
}
|
|
}
|
|
|
|
|
|
#####################################################################
|
|
# parse buffers in a structure element - pull side
|
|
sub ParseElementPullBuffer($$)
|
|
{
|
|
my($e) = shift;
|
|
my($var_prefix) = shift;
|
|
|
|
if (util::has_property($e->{PROPERTIES}, "ref")) {
|
|
return;
|
|
}
|
|
|
|
if (util::is_scalar_type($e->{TYPE}) && !$e->{POINTERS}) {
|
|
return;
|
|
}
|
|
|
|
if ($e->{POINTERS}) {
|
|
$res .= "\tif ($var_prefix$e->{NAME}) {\n";
|
|
}
|
|
|
|
if (util::has_property($e->{PROPERTIES}, "size_is")) {
|
|
ParseArrayPull($e);
|
|
} else {
|
|
if (util::has_property($e->{PROPERTIES}, "ref") ||
|
|
!$e->{POINTERS} ||
|
|
$e->{TYPE} =~ "unistr") {
|
|
$res .= "\t\tNDR_CHECK(ndr_pull_$e->{TYPE}(ndr, \&$var_prefix$e->{NAME}));\n";
|
|
} elsif (util::is_builtin_type($e->{TYPE})) {
|
|
$res .= "\t\tNDR_CHECK(ndr_pull_$e->{TYPE}(ndr, $var_prefix$e->{NAME}));\n";
|
|
} else {
|
|
$res .= "\t\tNDR_CHECK(ndr_pull_$e->{TYPE}(ndr, ndr_flags, $var_prefix$e->{NAME}));\n";
|
|
}
|
|
}
|
|
|
|
if ($e->{POINTERS}) {
|
|
$res .= "\t}\n";
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a struct
|
|
sub ParseStructPush($)
|
|
{
|
|
my($struct) = shift;
|
|
my($struct_len);
|
|
|
|
if (! defined $struct->{ELEMENTS}) {
|
|
return;
|
|
}
|
|
|
|
# see if we have a structure length
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
if (util::has_property($e->{PROPERTIES}, "struct_len")) {
|
|
$struct_len = $e;
|
|
$e->{VALUE} = "0";
|
|
}
|
|
}
|
|
|
|
if (defined $struct_len) {
|
|
$res .= "\tstruct ndr_push_save _save1, _save2, _save3;\n";
|
|
$res .= "\tndr_push_save(ndr, &_save1);\n";
|
|
}
|
|
|
|
$res .= "\tif (!(ndr_flags & NDR_SCALARS)) goto buffers;\n";
|
|
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
if (defined($struct_len) && $e == $struct_len) {
|
|
$res .= "\tNDR_CHECK(ndr_push_align_$e->{TYPE}(ndr));\n";
|
|
$res .= "\tndr_push_save(ndr, &_save2);\n";
|
|
}
|
|
ParseElementPushScalar($e, "r->", "NDR_SCALARS");
|
|
}
|
|
|
|
$res .= "buffers:\n";
|
|
$res .= "\tif (!(ndr_flags & NDR_BUFFERS)) goto done;\n";
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
ParseElementPushBuffer($e, "r->");
|
|
}
|
|
|
|
if (defined $struct_len) {
|
|
$res .= "\tndr_push_save(ndr, &_save3);\n";
|
|
$res .= "\tndr_push_restore(ndr, &_save2);\n";
|
|
$struct_len->{VALUE} = "_save3.offset - _save1.offset";
|
|
ParseElementPushScalar($struct_len, "r->", "NDR_SCALARS");
|
|
$res .= "\tndr_push_restore(ndr, &_save3);\n";
|
|
}
|
|
|
|
$res .= "done:\n";
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a struct - pull side
|
|
sub ParseStructPull($)
|
|
{
|
|
my($struct) = shift;
|
|
my($struct_len);
|
|
|
|
if (! defined $struct->{ELEMENTS}) {
|
|
return;
|
|
}
|
|
|
|
# declare any internal pointers we need
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
if ($e->{POINTERS} &&
|
|
!util::has_property($e->{PROPERTIES}, "ref")) {
|
|
$res .= "\tuint32 _ptr_$e->{NAME};\n";
|
|
}
|
|
}
|
|
|
|
|
|
# see if we have a structure length. If we do then we need to advance
|
|
# the ndr_pull offset to that length past the front of the structure
|
|
# when we have finished with the structure
|
|
# we also need to make sure that we limit the size of our parsing
|
|
# of this structure to the given size
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
if (util::has_property($e->{PROPERTIES}, "struct_len")) {
|
|
$struct_len = $e;
|
|
$e->{VALUE} = "&_size";
|
|
}
|
|
}
|
|
|
|
if (defined $struct_len) {
|
|
$res .= "\tuint32 _size;\n";
|
|
$res .= "\tstruct ndr_pull_save _save;\n";
|
|
$res .= "\tndr_pull_save(ndr, &_save);\n";
|
|
}
|
|
|
|
$res .= "\tif (!(ndr_flags & NDR_SCALARS)) goto buffers;\n";
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
ParseElementPullScalar($e, "r->");
|
|
if (defined($struct_len) && $e == $struct_len) {
|
|
$res .= "\tNDR_CHECK(ndr_pull_limit_size(ndr, _size, 4));\n";
|
|
}
|
|
}
|
|
|
|
$res .= "buffers:\n";
|
|
$res .= "\tif (!(ndr_flags & NDR_BUFFERS)) goto done;\n";
|
|
foreach my $e (@{$struct->{ELEMENTS}}) {
|
|
ParseElementPullBuffer($e, "r->");
|
|
}
|
|
|
|
if (defined $struct_len) {
|
|
$res .= "\tndr_pull_restore(ndr, &_save);\n";
|
|
$res .= "\tNDR_CHECK(ndr_pull_advance(ndr, _size));\n";
|
|
}
|
|
|
|
$res .= "done:\n";
|
|
}
|
|
|
|
|
|
#####################################################################
|
|
# parse a union element
|
|
sub ParseUnionElementPush($)
|
|
{
|
|
die "unions not done";
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a union - push side
|
|
sub ParseUnionPush($)
|
|
{
|
|
die "unions not done";
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a union - pull side
|
|
sub ParseUnionPull($)
|
|
{
|
|
die "unions not done";
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a type
|
|
sub ParseTypePush($)
|
|
{
|
|
my($data) = shift;
|
|
|
|
if (ref($data) eq "HASH") {
|
|
($data->{TYPE} eq "STRUCT") &&
|
|
ParseStructPush($data);
|
|
($data->{TYPE} eq "UNION") &&
|
|
ParseUnionPush($data);
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a type
|
|
sub ParseTypePull($)
|
|
{
|
|
my($data) = shift;
|
|
|
|
if (ref($data) eq "HASH") {
|
|
($data->{TYPE} eq "STRUCT") &&
|
|
ParseStructPull($data);
|
|
($data->{TYPE} eq "UNION") &&
|
|
ParseUnionPull($data);
|
|
}
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a typedef - push side
|
|
sub ParseTypedefPush($)
|
|
{
|
|
my($e) = shift;
|
|
|
|
$res .= "static NTSTATUS ndr_push_$e->{NAME}(struct ndr_push *ndr, int ndr_flags, struct $e->{NAME} *r)";
|
|
$res .= "\n{\n";
|
|
ParseTypePush($e->{DATA});
|
|
$res .= "\treturn NT_STATUS_OK;\n";
|
|
$res .= "}\n\n";
|
|
}
|
|
|
|
|
|
#####################################################################
|
|
# parse a typedef - pull side
|
|
sub ParseTypedefPull($)
|
|
{
|
|
my($e) = shift;
|
|
|
|
$res .= "static NTSTATUS ndr_pull_$e->{NAME}(struct ndr_pull *ndr, int ndr_flags, struct $e->{NAME} *r)";
|
|
$res .= "\n{\n";
|
|
ParseTypePull($e->{DATA});
|
|
$res .= "\treturn NT_STATUS_OK;\n";
|
|
$res .= "}\n\n";
|
|
}
|
|
|
|
|
|
|
|
|
|
#####################################################################
|
|
# parse a function
|
|
sub ParseFunctionPush($)
|
|
{
|
|
my($function) = shift;
|
|
|
|
# Input function
|
|
$res .= "NTSTATUS ndr_push_$function->{NAME}(struct ndr_push *ndr, struct $function->{NAME} *r)\n{\n";
|
|
|
|
foreach my $arg (@{$function->{DATA}}) {
|
|
if (util::has_property($arg->{PROPERTIES}, "in")) {
|
|
ParseElementPushScalar($arg, "r->in.", "NDR_SCALARS|NDR_BUFFERS");
|
|
ParseElementPushBuffer($arg, "r->in.");
|
|
}
|
|
}
|
|
|
|
$res .= "\n\treturn NT_STATUS_OK;\n}\n\n";
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a function
|
|
sub ParseFunctionPull($)
|
|
{
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a typedef
|
|
sub ParseTypedef($)
|
|
{
|
|
my($e) = shift;
|
|
ParseTypedefPush($e);
|
|
ParseTypedefPull($e);
|
|
}
|
|
|
|
#####################################################################
|
|
# parse a function
|
|
sub ParseFunction($)
|
|
{
|
|
my $i = shift;
|
|
ParseFunctionPush($i);
|
|
ParseFunctionPull($i);
|
|
}
|
|
|
|
#####################################################################
|
|
# parse the interface definitions
|
|
sub ParseInterface($)
|
|
{
|
|
my($interface) = shift;
|
|
my($data) = $interface->{DATA};
|
|
foreach my $d (@{$data}) {
|
|
($d->{TYPE} eq "TYPEDEF") &&
|
|
ParseTypedef($d);
|
|
($d->{TYPE} eq "FUNCTION") &&
|
|
ParseFunction($d);
|
|
}
|
|
}
|
|
|
|
|
|
#####################################################################
|
|
# parse a parsed IDL structure back into an IDL file
|
|
sub Parse($)
|
|
{
|
|
my($idl) = shift;
|
|
$res = "/* parser auto-generated by pidl */\n\n";
|
|
foreach my $x (@{$idl}) {
|
|
($x->{TYPE} eq "INTERFACE") &&
|
|
ParseInterface($x);
|
|
}
|
|
return $res;
|
|
}
|
|
|
|
1;
|