pidl: Allow new property 'no_srv_register'.
[amitay/samba.git] / pidl / lib / Parse / Pidl / Samba3 / ServerNDR.pm
1 ###################################################
2 # Samba3 server generator for IDL structures
3 # on top of Samba4 style NDR functions
4 # Copyright jelmer@samba.org 2005-2006
5 # released under the GNU GPL
6
7 package Parse::Pidl::Samba3::ServerNDR;
8
9 use Exporter;
10 @ISA = qw(Exporter);
11 @EXPORT_OK = qw(DeclLevel);
12
13 use strict;
14 use Parse::Pidl qw(warning error fatal);
15 use Parse::Pidl::Typelist qw(mapTypeName scalar_is_reference);
16 use Parse::Pidl::Util qw(ParseExpr has_property is_constant);
17 use Parse::Pidl::NDR qw(GetNextLevel);
18 use Parse::Pidl::Samba4 qw(ElementStars DeclLong);
19 use Parse::Pidl::Samba4::Header qw(GenerateFunctionOutEnv);
20
21 use vars qw($VERSION);
22 $VERSION = '0.01';
23
24 my $res;
25 my $res_hdr;
26 my $tabs = "";
27 sub indent() { $tabs.="\t"; }
28 sub deindent() { $tabs = substr($tabs, 1); }
29 sub pidl($) { my ($txt) = @_; $res .= $txt?$tabs.(shift)."\n":"\n"; }
30 sub pidl_hdr($) { $res_hdr .= (shift)."\n"; }
31 sub fn_declare($) { my ($n) = @_; pidl $n; pidl_hdr "$n;"; }
32
33 sub DeclLevel($$)
34 {
35         my ($e, $l) = @_;
36         my $res = "";
37
38         if (has_property($e, "charset")) {
39                 $res .= "const char";
40         } else {
41                 $res .= mapTypeName($e->{TYPE});
42         }
43
44         my $stars = ElementStars($e, $l);
45
46         $res .= " ".$stars unless ($stars eq "");
47
48         return $res;
49 }
50
51 sub AllocOutVar($$$$$)
52 {
53         my ($e, $mem_ctx, $name, $env, $fail) = @_;
54
55         my $l = $e->{LEVELS}[0];
56
57         # we skip pointer to arrays
58         if ($l->{TYPE} eq "POINTER") {
59                 my $nl = GetNextLevel($e, $l);
60                 $l = $nl if ($nl->{TYPE} eq "ARRAY");
61         } elsif
62
63         # we don't support multi-dimentional arrays yet
64         ($l->{TYPE} eq "ARRAY") {
65                 my $nl = GetNextLevel($e, $l);
66                 if ($nl->{TYPE} eq "ARRAY") {
67                         fatal($e->{ORIGINAL},"multi-dimentional [out] arrays are not supported!");
68                 }
69         } else {
70                 # neither pointer nor array, no need to alloc something.
71                 return;
72         }
73
74         if ($l->{TYPE} eq "ARRAY") {
75                 unless(defined($l->{SIZE_IS})) {
76                         error($e->{ORIGINAL}, "No size known for array `$e->{NAME}'");
77                         pidl "#error No size known for array `$e->{NAME}'";
78                 } else {
79                         my $size = ParseExpr($l->{SIZE_IS}, $env, $e);
80                         pidl "$name = talloc_zero_array($mem_ctx, " . DeclLevel($e, 1) . ", $size);";
81                 }
82         } else {
83                 pidl "$name = talloc_zero($mem_ctx, " . DeclLevel($e, 1) . ");";
84         }
85
86         pidl "if ($name == NULL) {";
87         $fail->();
88         pidl "}";
89         pidl "";
90 }
91
92 sub CallWithStruct($$$$)
93 {
94         my ($pipes_struct, $mem_ctx, $fn, $fail) = @_;
95         my $env = GenerateFunctionOutEnv($fn);
96         my $hasout = 0;
97         foreach (@{$fn->{ELEMENTS}}) {
98                 if (grep(/out/, @{$_->{DIRECTION}})) { $hasout = 1; }
99         }
100
101         pidl "ZERO_STRUCT(r->out);" if ($hasout);
102
103         my $proto = "_$fn->{NAME}(pipes_struct *p, struct $fn->{NAME} *r";
104         my $ret = "_$fn->{NAME}($pipes_struct, r";
105         foreach (@{$fn->{ELEMENTS}}) {
106                 my @dir = @{$_->{DIRECTION}};
107                 if (grep(/in/, @dir) and grep(/out/, @dir)) {
108                         pidl "r->out.$_->{NAME} = r->in.$_->{NAME};";
109                 }
110         }
111
112         foreach (@{$fn->{ELEMENTS}}) {
113                 my @dir = @{$_->{DIRECTION}};
114                 if (grep(/in/, @dir) and grep(/out/, @dir)) {
115                         # noop
116                 } elsif (grep(/out/, @dir) and not
117                                  has_property($_, "represent_as")) {
118                         AllocOutVar($_, $mem_ctx, "r->out.$_->{NAME}", $env, $fail);
119                 }
120         }
121         $ret .= ")";
122         $proto .= ");";
123
124         if ($fn->{RETURN_TYPE}) {
125                 $ret = "r->out.result = $ret";
126                 $proto = "$fn->{RETURN_TYPE} $proto";
127         } else {
128                 $proto = "void $proto";
129         }
130
131         pidl_hdr "$proto";
132         pidl "$ret;";
133 }
134
135 sub ParseFunction($$)
136 {
137         my ($if,$fn) = @_;
138
139         my $op = "NDR_".uc($fn->{NAME});
140
141         pidl "static bool api_$fn->{NAME}(pipes_struct *p)";
142         pidl "{";
143         indent;
144         pidl "const struct ndr_interface_call *call;";
145         pidl "struct ndr_pull *pull;";
146         pidl "struct ndr_push *push;";
147         pidl "enum ndr_err_code ndr_err;";
148         pidl "DATA_BLOB blob;";
149         pidl "struct $fn->{NAME} *r;";
150         pidl "";
151         pidl "call = &ndr_table_$if->{NAME}.calls[$op];";
152         pidl "";
153         pidl "r = talloc(talloc_tos(), struct $fn->{NAME});";
154         pidl "if (r == NULL) {";
155         pidl "\treturn false;";
156         pidl "}";
157         pidl "";
158         pidl "if (!prs_data_blob(&p->in_data.data, &blob, r)) {";
159         pidl "\ttalloc_free(r);";
160         pidl "\treturn false;";
161         pidl "}";
162         pidl "";
163         pidl "pull = ndr_pull_init_blob(&blob, r);";
164         pidl "if (pull == NULL) {";
165         pidl "\ttalloc_free(r);";
166         pidl "\treturn false;";
167         pidl "}";
168         pidl "";
169         pidl "pull->flags |= LIBNDR_FLAG_REF_ALLOC;";
170         pidl "ndr_err = call->ndr_pull(pull, NDR_IN, r);";
171         pidl "if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {";
172         pidl "\ttalloc_free(r);";
173         pidl "\treturn false;";
174         pidl "}";
175         pidl "";
176         pidl "if (DEBUGLEVEL >= 10) {";
177         pidl "\tNDR_PRINT_IN_DEBUG($fn->{NAME}, r);";
178         pidl "}";
179         pidl "";
180
181         CallWithStruct("p", "r", $fn, 
182         sub { 
183                         pidl "\ttalloc_free(r);";
184                         pidl "\treturn false;";
185                 }
186         );
187
188         pidl "";
189         pidl "if (p->rng_fault_state) {";
190         pidl "\ttalloc_free(r);";
191         pidl "\t/* Return true here, srv_pipe_hnd.c will take care */";
192         pidl "\treturn true;";
193         pidl "}";
194         pidl "";
195         pidl "if (DEBUGLEVEL >= 10) {";
196         pidl "\tNDR_PRINT_OUT_DEBUG($fn->{NAME}, r);";
197         pidl "}";
198         pidl "";
199         pidl "push = ndr_push_init_ctx(r);";
200         pidl "if (push == NULL) {";
201         pidl "\ttalloc_free(r);";
202         pidl "\treturn false;";
203         pidl "}";
204         pidl "";
205         pidl "ndr_err = call->ndr_push(push, NDR_OUT, r);";
206         pidl "if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {";
207         pidl "\ttalloc_free(r);";
208         pidl "\treturn false;";
209         pidl "}";
210         pidl "";
211         pidl "blob = ndr_push_blob(push);";
212         pidl "if (!prs_copy_data_in(&p->out_data.rdata, (const char *)blob.data, (uint32_t)blob.length)) {";
213         pidl "\ttalloc_free(r);";
214         pidl "\treturn false;";
215         pidl "}";
216         pidl "";
217         pidl "talloc_free(r);";
218         pidl "";
219         pidl "return true;";
220         deindent;
221         pidl "}";
222         pidl "";
223 }
224
225 sub ParseDispatchFunction($)
226 {
227         my ($if) = @_;
228
229         pidl_hdr "NTSTATUS rpc_$if->{NAME}_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, const struct ndr_interface_table *table, uint32_t opnum, void *r);";
230         pidl "NTSTATUS rpc_$if->{NAME}_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, const struct ndr_interface_table *table, uint32_t opnum, void *_r)";
231         pidl "{";
232         indent;
233         pidl "if (cli->pipes_struct == NULL) {";
234         pidl "\treturn NT_STATUS_INVALID_PARAMETER;";
235         pidl "}";
236         pidl "";
237         pidl "switch (opnum)";
238         pidl "{";
239         indent;
240         foreach my $fn (@{$if->{FUNCTIONS}}) {
241                 next if ($fn->{PROPERTIES}{noopnum});
242                 my $op = "NDR_".uc($fn->{NAME});
243                 pidl "case $op: {";
244                 indent;
245                 pidl "struct $fn->{NAME} *r = (struct $fn->{NAME} *)_r;";
246
247                 pidl "if (DEBUGLEVEL >= 10) {";
248                 pidl "\tNDR_PRINT_IN_DEBUG($fn->{NAME}, r);";
249                 pidl "}";
250
251                 CallWithStruct("cli->pipes_struct", "mem_ctx", $fn, 
252                         sub { pidl "\treturn NT_STATUS_NO_MEMORY;"; });
253
254                 pidl "if (DEBUGLEVEL >= 10) {";
255                 pidl "\tNDR_PRINT_OUT_DEBUG($fn->{NAME}, r);";
256                 pidl "}";
257
258                 pidl "return NT_STATUS_OK;";
259                 deindent;
260                 pidl "}";
261                 pidl "";
262         }
263
264         pidl "default:";
265         pidl "\treturn NT_STATUS_NOT_IMPLEMENTED;";
266         deindent;
267         pidl "}";
268         deindent;
269         pidl "}";
270
271         pidl "";
272 }
273
274 sub ParseInterface($)
275 {
276         my $if = shift;
277
278         my $uif = uc($if->{NAME});
279
280         pidl_hdr "#ifndef __SRV_$uif\__";
281         pidl_hdr "#define __SRV_$uif\__";
282
283         foreach (@{$if->{FUNCTIONS}}) {
284                 next if ($_->{PROPERTIES}{noopnum});
285                 ParseFunction($if, $_);
286         }
287
288         pidl "";
289         pidl "/* Tables */";
290         pidl "static struct api_struct api_$if->{NAME}_cmds[] = ";
291         pidl "{";
292         indent;
293
294         foreach (@{$if->{FUNCTIONS}}) {
295                 next if ($_->{PROPERTIES}{noopnum});
296                 pidl "{\"" . uc($_->{NAME}) . "\", NDR_" . uc($_->{NAME}) . ", api_$_->{NAME}},";
297         }
298
299         deindent;
300         pidl "};";
301
302         pidl "";
303
304         pidl_hdr "void $if->{NAME}_get_pipe_fns(struct api_struct **fns, int *n_fns);";
305         pidl "void $if->{NAME}_get_pipe_fns(struct api_struct **fns, int *n_fns)";
306         pidl "{";
307         indent;
308         pidl "*fns = api_$if->{NAME}_cmds;";
309         pidl "*n_fns = sizeof(api_$if->{NAME}_cmds) / sizeof(struct api_struct);";
310         deindent;
311         pidl "}";
312         pidl "";
313
314         ParseDispatchFunction($if);
315
316         if (not has_property($if, "no_srv_register")) {
317             pidl_hdr "NTSTATUS rpc_$if->{NAME}_init(void);";
318             pidl "NTSTATUS rpc_$if->{NAME}_init(void)";
319             pidl "{";
320             pidl "\treturn rpc_srv_register(SMB_RPC_INTERFACE_VERSION, \"$if->{NAME}\", \"$if->{NAME}\", \&ndr_table_$if->{NAME}, api_$if->{NAME}_cmds, sizeof(api_$if->{NAME}_cmds) / sizeof(struct api_struct));";
321             pidl "}";
322         }
323         pidl_hdr "#endif /* __SRV_$uif\__ */";
324 }
325
326 sub Parse($$$)
327 {
328         my($ndr,$header,$ndr_header) = @_;
329
330         $res = "";
331         $res_hdr = "";
332
333         pidl "/*";
334         pidl " * Unix SMB/CIFS implementation.";
335         pidl " * server auto-generated by pidl. DO NOT MODIFY!";
336         pidl " */";
337         pidl "";
338         pidl "#include \"includes.h\"";
339         pidl "#include \"$header\"";
340         pidl_hdr "#include \"$ndr_header\"";
341         pidl "";
342
343         foreach (@$ndr) {
344                 ParseInterface($_) if ($_->{TYPE} eq "INTERFACE");
345         }
346
347         return ($res, $res_hdr);
348 }
349
350 1;