pidl:NDR/Server: use interface->{UUID} and {NAME} instead of the raw {PROPERTIES}
[Samba/gebeck_regimport.git] / pidl / lib / Parse / Pidl / Samba4 / NDR / Server.pm
blob1d51fa1526f1937473d34a2d5616cbf9daf87bbc
1 ###################################################
2 # server boilerplate generator
3 # Copyright tridge@samba.org 2003
4 # Copyright metze@samba.org 2004
5 # released under the GNU GPL
7 package Parse::Pidl::Samba4::NDR::Server;
9 use strict;
10 use Parse::Pidl::Util;
12 use vars qw($VERSION);
13 $VERSION = '0.01';
15 my($res);
17 sub pidl($)
19 $res .= shift;
23 #####################################################
24 # generate the switch statement for function dispatch
25 sub gen_dispatch_switch($)
27 my $interface = shift;
29 foreach my $fn (@{$interface->{FUNCTIONS}}) {
30 next if not defined($fn->{OPNUM});
32 pidl "\tcase $fn->{OPNUM}: {\n";
33 pidl "\t\tstruct $fn->{NAME} *r2 = (struct $fn->{NAME} *)r;\n";
34 pidl "\t\tif (DEBUGLEVEL >= 10) {\n";
35 pidl "\t\t\tNDR_PRINT_FUNCTION_DEBUG($fn->{NAME}, NDR_IN, r2);\n";
36 pidl "\t\t}\n";
37 if ($fn->{RETURN_TYPE} && $fn->{RETURN_TYPE} ne "void") {
38 pidl "\t\tr2->out.result = dcesrv_$fn->{NAME}(dce_call, mem_ctx, r2);\n";
39 } else {
40 pidl "\t\tdcesrv_$fn->{NAME}(dce_call, mem_ctx, r2);\n";
42 pidl "\t\tif (dce_call->state_flags & DCESRV_CALL_STATE_FLAG_ASYNC) {\n";
43 pidl "\t\t\tDEBUG(5,(\"function $fn->{NAME} will reply async\\n\"));\n";
44 pidl "\t\t}\n";
45 pidl "\t\tbreak;\n\t}\n";
49 #####################################################
50 # generate the switch statement for function reply
51 sub gen_reply_switch($)
53 my $interface = shift;
55 foreach my $fn (@{$interface->{FUNCTIONS}}) {
56 next if not defined($fn->{OPNUM});
58 pidl "\tcase $fn->{OPNUM}: {\n";
59 pidl "\t\tstruct $fn->{NAME} *r2 = (struct $fn->{NAME} *)r;\n";
60 pidl "\t\tif (dce_call->state_flags & DCESRV_CALL_STATE_FLAG_ASYNC) {\n";
61 pidl "\t\t\tDEBUG(5,(\"function $fn->{NAME} replied async\\n\"));\n";
62 pidl "\t\t}\n";
63 pidl "\t\tif (DEBUGLEVEL >= 10 && dce_call->fault_code == 0) {\n";
64 pidl "\t\t\tNDR_PRINT_FUNCTION_DEBUG($fn->{NAME}, NDR_OUT | NDR_SET_VALUES, r2);\n";
65 pidl "\t\t}\n";
66 pidl "\t\tif (dce_call->fault_code != 0) {\n";
67 pidl "\t\t\tDEBUG(2,(\"dcerpc_fault %s in $fn->{NAME}\\n\", dcerpc_errstr(mem_ctx, dce_call->fault_code)));\n";
68 pidl "\t\t}\n";
69 pidl "\t\tbreak;\n\t}\n";
73 #####################################################################
74 # produce boilerplate code for a interface
75 sub Boilerplate_Iface($)
77 my($interface) = shift;
78 my $name = $interface->{NAME};
79 my $uname = uc $name;
80 my $uuid = lc($interface->{UUID});
81 my $if_version = $interface->{VERSION};
83 pidl "
84 static NTSTATUS $name\__op_bind(struct dcesrv_call_state *dce_call, const struct dcesrv_interface *iface, uint32_t if_version)
86 #ifdef DCESRV_INTERFACE_$uname\_BIND
87 return DCESRV_INTERFACE_$uname\_BIND(dce_call,iface);
88 #else
89 return NT_STATUS_OK;
90 #endif
93 static void $name\__op_unbind(struct dcesrv_connection_context *context, const struct dcesrv_interface *iface)
95 #ifdef DCESRV_INTERFACE_$uname\_UNBIND
96 DCESRV_INTERFACE_$uname\_UNBIND(context, iface);
97 #else
98 return;
99 #endif
102 static NTSTATUS $name\__op_ndr_pull(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct ndr_pull *pull, void **r)
104 enum ndr_err_code ndr_err;
105 uint16_t opnum = dce_call->pkt.u.request.opnum;
107 dce_call->fault_code = 0;
109 if (opnum >= ndr_table_$name.num_calls) {
110 dce_call->fault_code = DCERPC_FAULT_OP_RNG_ERROR;
111 return NT_STATUS_NET_WRITE_FAULT;
114 *r = talloc_named(mem_ctx,
115 ndr_table_$name.calls[opnum].struct_size,
116 \"struct %s\",
117 ndr_table_$name.calls[opnum].name);
118 NT_STATUS_HAVE_NO_MEMORY(*r);
120 /* unravel the NDR for the packet */
121 ndr_err = ndr_table_$name.calls[opnum].ndr_pull(pull, NDR_IN, *r);
122 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
123 dcerpc_log_packet(dce_call->conn->packet_log_dir,
124 &ndr_table_$name, opnum, NDR_IN,
125 &dce_call->pkt.u.request.stub_and_verifier);
126 dce_call->fault_code = DCERPC_FAULT_NDR;
127 return NT_STATUS_NET_WRITE_FAULT;
130 return NT_STATUS_OK;
133 static NTSTATUS $name\__op_dispatch(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
135 uint16_t opnum = dce_call->pkt.u.request.opnum;
137 switch (opnum) {
139 gen_dispatch_switch($interface);
141 pidl "
142 default:
143 dce_call->fault_code = DCERPC_FAULT_OP_RNG_ERROR;
144 break;
147 if (dce_call->fault_code != 0) {
148 dcerpc_log_packet(dce_call->conn->packet_log_dir,
149 &ndr_table_$name, opnum, NDR_IN,
150 &dce_call->pkt.u.request.stub_and_verifier);
151 return NT_STATUS_NET_WRITE_FAULT;
154 return NT_STATUS_OK;
157 static NTSTATUS $name\__op_reply(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, void *r)
159 uint16_t opnum = dce_call->pkt.u.request.opnum;
161 switch (opnum) {
163 gen_reply_switch($interface);
165 pidl "
166 default:
167 dce_call->fault_code = DCERPC_FAULT_OP_RNG_ERROR;
168 break;
171 if (dce_call->fault_code != 0) {
172 dcerpc_log_packet(dce_call->conn->packet_log_dir,
173 &ndr_table_$name, opnum, NDR_IN,
174 &dce_call->pkt.u.request.stub_and_verifier);
175 return NT_STATUS_NET_WRITE_FAULT;
178 return NT_STATUS_OK;
181 static NTSTATUS $name\__op_ndr_push(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, struct ndr_push *push, const void *r)
183 enum ndr_err_code ndr_err;
184 uint16_t opnum = dce_call->pkt.u.request.opnum;
186 ndr_err = ndr_table_$name.calls[opnum].ndr_push(push, NDR_OUT, r);
187 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
188 dce_call->fault_code = DCERPC_FAULT_NDR;
189 return NT_STATUS_NET_WRITE_FAULT;
192 return NT_STATUS_OK;
195 const struct dcesrv_interface dcesrv\_$name\_interface = {
196 .name = \"$name\",
197 .syntax_id = {".print_uuid($uuid).",$if_version},
198 .bind = $name\__op_bind,
199 .unbind = $name\__op_unbind,
200 .ndr_pull = $name\__op_ndr_pull,
201 .dispatch = $name\__op_dispatch,
202 .reply = $name\__op_reply,
203 .ndr_push = $name\__op_ndr_push
209 #####################################################################
210 # produce boilerplate code for an endpoint server
211 sub Boilerplate_Ep_Server($)
213 my($interface) = shift;
214 my $name = $interface->{NAME};
215 my $uname = uc $name;
217 pidl "
218 static NTSTATUS $name\__op_init_server(struct dcesrv_context *dce_ctx, const struct dcesrv_endpoint_server *ep_server)
220 int i;
222 for (i=0;i<ndr_table_$name.endpoints->count;i++) {
223 NTSTATUS ret;
224 const char *name = ndr_table_$name.endpoints->names[i];
226 ret = dcesrv_interface_register(dce_ctx, name, &dcesrv_$name\_interface, NULL);
227 if (!NT_STATUS_IS_OK(ret)) {
228 DEBUG(1,(\"$name\_op_init_server: failed to register endpoint \'%s\'\\n\",name));
229 return ret;
233 return NT_STATUS_OK;
236 static bool $name\__op_interface_by_uuid(struct dcesrv_interface *iface, const struct GUID *uuid, uint32_t if_version)
238 if (dcesrv_$name\_interface.syntax_id.if_version == if_version &&
239 GUID_equal(\&dcesrv\_$name\_interface.syntax_id.uuid, uuid)) {
240 memcpy(iface,&dcesrv\_$name\_interface, sizeof(*iface));
241 return true;
244 return false;
247 static bool $name\__op_interface_by_name(struct dcesrv_interface *iface, const char *name)
249 if (strcmp(dcesrv_$name\_interface.name, name)==0) {
250 memcpy(iface, &dcesrv_$name\_interface, sizeof(*iface));
251 return true;
254 return false;
257 NTSTATUS dcerpc_server_$name\_init(void)
259 NTSTATUS ret;
260 struct dcesrv_endpoint_server ep_server;
262 /* fill in our name */
263 ep_server.name = \"$name\";
265 /* fill in all the operations */
266 ep_server.init_server = $name\__op_init_server;
268 ep_server.interface_by_uuid = $name\__op_interface_by_uuid;
269 ep_server.interface_by_name = $name\__op_interface_by_name;
271 /* register ourselves with the DCERPC subsystem. */
272 ret = dcerpc_register_ep_server(&ep_server);
274 if (!NT_STATUS_IS_OK(ret)) {
275 DEBUG(0,(\"Failed to register \'$name\' endpoint server!\\n\"));
276 return ret;
279 return ret;
285 #####################################################################
286 # dcerpc server boilerplate from a parsed IDL structure
287 sub ParseInterface($)
289 my($interface) = shift;
290 my $count = 0;
292 $res .= "NTSTATUS dcerpc_server_$interface->{NAME}\_init(void);\n";
293 $res .= "\n";
295 if (!defined $interface->{PROPERTIES}->{uuid}) {
296 return $res;
299 if (!defined $interface->{PROPERTIES}->{version}) {
300 $interface->{PROPERTIES}->{version} = "0.0";
303 foreach my $fn (@{$interface->{FUNCTIONS}}) {
304 if (defined($fn->{OPNUM})) { $count++; }
307 if ($count == 0) {
308 return $res;
311 $res .= "/* $interface->{NAME} - dcerpc server boilerplate generated by pidl */\n\n";
312 Boilerplate_Iface($interface);
313 Boilerplate_Ep_Server($interface);
315 return $res;
318 sub Parse($$)
320 my($ndr,$header) = @_;
322 $res = "";
323 $res .= "/* server functions auto-generated by pidl */\n";
324 $res .= "#include \"$header\"\n";
325 $res .= "\n";
327 foreach my $x (@{$ndr}) {
328 ParseInterface($x) if ($x->{TYPE} eq "INTERFACE" and not defined($x->{PROPERTIES}{object}));
331 return $res;