r26270: Require specifying the loadparm_context or NULL to cli_credentials_guess().
[abartlet/samba.git/.git] / source4 / scripting / ejs / smbcalls_rpc.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    provide interfaces to rpc calls from ejs scripts
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "scripting/ejs/smbcalls.h"
24 #include "lib/appweb/ejs/ejs.h"
25 #include "librpc/gen_ndr/echo.h"
26 #include "lib/cmdline/popt_common.h"
27 #include "lib/messaging/irpc.h"
28 #include "scripting/ejs/ejsrpc.h"
29 #include "lib/util/dlinklist.h"
30 #include "lib/events/events.h"
31 #include "librpc/ndr/ndr_table.h"
32 #include "auth/credentials/credentials.h"
33 #include "librpc/rpc/dcerpc.h"
34 #include "cluster/cluster.h"
35
36 /*
37   state of a irpc 'connection'
38 */
39 struct ejs_irpc_connection {
40         const char *server_name;
41         struct server_id *dest_ids;
42         struct messaging_context *msg_ctx;
43 };
44
45 /*
46   messaging clients need server IDs as well ...
47  */
48 #define EJS_ID_BASE 0x30000000
49
50 /*
51   setup a context for talking to a irpc server
52      example: 
53         status = irpc.connect("smb_server");
54 */
55 static int ejs_irpc_connect(MprVarHandle eid, int argc, char **argv)
56 {
57         NTSTATUS status;
58         int i;
59         struct event_context *ev;
60         struct ejs_irpc_connection *p;
61         struct MprVar *this = mprGetProperty(ejsGetLocalObject(eid), "this", 0);
62
63         /* validate arguments */
64         if (argc != 1) {
65                 ejsSetErrorMsg(eid, "rpc_connect invalid arguments");
66                 return -1;
67         }
68
69         p = talloc(this, struct ejs_irpc_connection);
70         if (p == NULL) {
71                 return -1;
72         }
73
74         p->server_name = argv[0];
75
76         ev = event_context_find(p);
77
78         /* create a messaging context, looping as we have no way to
79            allocate temporary server ids automatically */
80         for (i=0;i<10000;i++) {
81                 p->msg_ctx = messaging_init(p, 
82                                             lp_messaging_path(p, global_loadparm),
83                                             cluster_id(EJS_ID_BASE + i), ev);
84                 if (p->msg_ctx) break;
85         }
86         if (p->msg_ctx == NULL) {
87                 ejsSetErrorMsg(eid, "irpc_connect unable to create a messaging context");
88                 talloc_free(p);
89                 return -1;
90         }
91
92         p->dest_ids = irpc_servers_byname(p->msg_ctx, p, p->server_name);
93         if (p->dest_ids == NULL || p->dest_ids[0].id == 0) {
94                 talloc_free(p);
95                 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
96         } else {
97                 mprSetPtrChild(this, "irpc", p);
98                 status = NT_STATUS_OK;
99         }
100
101         mpr_Return(eid, mprNTSTATUS(status));
102         return 0;
103 }
104
105
106 /*
107   connect to an rpc server
108      examples: 
109         status = rpc.connect("ncacn_ip_tcp:localhost");
110         status = rpc.connect("ncacn_ip_tcp:localhost", "pipe_name");
111 */
112 static int ejs_rpc_connect(MprVarHandle eid, int argc, char **argv)
113 {
114         const char *binding, *pipe_name;
115         const struct ndr_interface_table *iface;
116         NTSTATUS status;
117         struct dcerpc_pipe *p;
118         struct cli_credentials *creds;
119         struct event_context *ev;
120         struct MprVar *this = mprGetProperty(ejsGetLocalObject(eid), "this", 0);
121         struct MprVar *credentials;
122
123         /* validate arguments */
124         if (argc < 1) {
125                 ejsSetErrorMsg(eid, "rpc_connect invalid arguments");
126                 return -1;
127         }
128
129         binding    = argv[0];
130         if (strchr(binding, ':') == NULL) {
131                 /* its an irpc connect */
132                 return ejs_irpc_connect(eid, argc, argv);
133         }
134
135         if (argc > 1) {
136                 pipe_name = argv[1];
137         } else {
138                 pipe_name = mprToString(mprGetProperty(this, "pipe_name", NULL));
139         }
140
141         iface = ndr_table_by_name(pipe_name);
142         if (iface == NULL) {
143                 status = NT_STATUS_OBJECT_NAME_INVALID;
144                 goto done;
145         }
146
147         credentials = mprGetProperty(this, "credentials", NULL);
148         if (credentials) {
149                 creds = (struct cli_credentials *)
150                                 mprGetPtr(credentials, "creds");
151         } else {
152                 creds = cmdline_credentials;
153         }
154         if (creds == NULL) {
155                 creds = cli_credentials_init(mprMemCtx());
156                 cli_credentials_set_anonymous(creds);
157         }
158
159         ev = event_context_find(mprMemCtx());
160
161         status = dcerpc_pipe_connect(this, &p, binding, iface, creds, ev);
162         if (!NT_STATUS_IS_OK(status)) goto done;
163
164         /* callers don't allocate ref vars in the ejs interface */
165         p->conn->flags |= DCERPC_NDR_REF_ALLOC;
166
167         /* by making the pipe a child of the connection variable, it will
168            auto close when it goes out of scope in the script */
169         mprSetPtrChild(this, "pipe", p);
170
171 done:
172         mpr_Return(eid, mprNTSTATUS(status));
173         return 0;
174 }
175
176
177 /*
178   make an irpc call - called via the same interface as rpc
179 */
180 static int ejs_irpc_call(int eid, struct MprVar *io, 
181                          const struct ndr_interface_table *iface, int callnum,
182                          ejs_pull_function_t ejs_pull, ejs_push_function_t ejs_push)
183 {
184         NTSTATUS status;
185         void *ptr;
186         struct ejs_rpc *ejs;
187         const struct ndr_interface_call *call;
188         struct ejs_irpc_connection *p;
189         struct irpc_request **reqs;
190         int i, count;
191         struct MprVar *results;
192
193         p = (struct ejs_irpc_connection *)mprGetThisPtr(eid, "irpc");
194
195         ejs = talloc(mprMemCtx(), struct ejs_rpc);
196         if (ejs == NULL) {
197                 status = NT_STATUS_NO_MEMORY;
198                 goto done;
199         }
200
201         call = &iface->calls[callnum];
202
203         ejs->eid = eid;
204         ejs->callname = call->name;
205
206         /* allocate the C structure */
207         ptr = talloc_zero_size(ejs, call->struct_size);
208         if (ptr == NULL) {
209                 status = NT_STATUS_NO_MEMORY;
210                 goto done;
211         }
212
213         /* convert the mpr object into a C structure */
214         status = ejs_pull(ejs, io, ptr);
215         if (!NT_STATUS_IS_OK(status)) {
216                 goto done;
217         }
218
219         for (count=0;p->dest_ids[count].id;count++) /* noop */ ;
220
221         /* we need to make a call per server */
222         reqs = talloc_array(ejs, struct irpc_request *, count);
223         if (reqs == NULL) {
224                 status = NT_STATUS_NO_MEMORY;
225                 goto done;
226         }
227
228         /* make the actual calls */
229         for (i=0;i<count;i++) {
230                 reqs[i] = irpc_call_send(p->msg_ctx, p->dest_ids[i], 
231                                          iface, callnum, ptr, ptr);
232                 if (reqs[i] == NULL) {
233                         status = NT_STATUS_NO_MEMORY;
234                         goto done;
235                 }
236                 talloc_steal(reqs, reqs[i]);
237         }
238         
239         mprSetVar(io, "results", mprObject("results"));
240         results = mprGetProperty(io, "results", NULL);
241
242         /* and receive the results, placing them in io.results[i] */
243         for (i=0;i<count;i++) {
244                 struct MprVar *output;
245
246                 status = irpc_call_recv(reqs[i]);
247                 if (!NT_STATUS_IS_OK(status)) {
248                         goto done;
249                 }
250                 status = ejs_push(ejs, io, ptr);
251                 if (!NT_STATUS_IS_OK(status)) {
252                         goto done;
253                 }
254
255                 /* add to the results array */
256                 output = mprGetProperty(io, "output", NULL);
257                 if (output) {
258                         char idx[16];
259                         mprItoa(i, idx, sizeof(idx));
260                         mprSetProperty(results, idx, output);
261                         mprDeleteProperty(io, "output");
262                 }
263         }
264         mprSetVar(results, "length", mprCreateIntegerVar(i));
265
266 done:
267         talloc_free(ejs);
268         mpr_Return(eid, mprNTSTATUS(status));
269         if (NT_STATUS_EQUAL(status, NT_STATUS_INTERNAL_ERROR)) {
270                 return -1;
271         }
272         return 0;
273 }
274
275
276 /*
277   backend code for making an rpc call - this is called from the pidl generated ejs
278   code
279 */
280  int ejs_rpc_call(int eid, int argc, struct MprVar **argv,
281                   const struct ndr_interface_table *iface, int callnum,
282                   ejs_pull_function_t ejs_pull, ejs_push_function_t ejs_push)
283 {
284         struct MprVar *io;
285         struct dcerpc_pipe *p;
286         NTSTATUS status;
287         void *ptr;
288         struct rpc_request *req;
289         struct ejs_rpc *ejs;
290         const struct ndr_interface_call *call;
291
292         if (argc != 1 || argv[0]->type != MPR_TYPE_OBJECT) {
293                 ejsSetErrorMsg(eid, "rpc_call invalid arguments");
294                 return -1;
295         }
296             
297         io       = argv[0];
298
299         if (mprGetThisPtr(eid, "irpc")) {
300                 /* its an irpc call */
301                 return ejs_irpc_call(eid, io, iface, callnum, ejs_pull, ejs_push);
302         }
303
304         /* get the pipe info */
305         p = mprGetThisPtr(eid, "pipe");
306         if (p == NULL) {
307                 ejsSetErrorMsg(eid, "rpc_call invalid pipe");
308                 return -1;
309         }
310
311         ejs = talloc(mprMemCtx(), struct ejs_rpc);
312         if (ejs == NULL) {
313                 status = NT_STATUS_NO_MEMORY;
314                 goto done;
315         }
316
317         call = &iface->calls[callnum];
318
319         ejs->eid = eid;
320         ejs->callname = call->name;
321
322         /* allocate the C structure */
323         ptr = talloc_zero_size(ejs, call->struct_size);
324         if (ptr == NULL) {
325                 status = NT_STATUS_NO_MEMORY;
326                 goto done;
327         }
328
329         /* convert the mpr object into a C structure */
330         status = ejs_pull(ejs, io, ptr);
331         if (!NT_STATUS_IS_OK(status)) {
332                 goto done;
333         }
334
335         /* make the actual call */
336         req = dcerpc_ndr_request_send(p, NULL, iface, callnum, ptr, ptr);
337
338         /* if requested, print the structure */
339         if (p->conn->flags & DCERPC_DEBUG_PRINT_IN) {
340                 ndr_print_function_debug(call->ndr_print, call->name, NDR_IN, ptr);
341         }
342
343         if (req == NULL) {
344                 status = NT_STATUS_NO_MEMORY;
345                 goto done;
346         }
347
348         status = dcerpc_ndr_request_recv(req);
349         if (!NT_STATUS_IS_OK(status)) {
350                 goto done;
351         }
352
353         /* print the 'out' structure, if needed */
354         if (p->conn->flags & DCERPC_DEBUG_PRINT_OUT) {
355                 ndr_print_function_debug(call->ndr_print, call->name, NDR_OUT, ptr);
356         }
357
358         status = ejs_push(ejs, io, ptr);
359
360 done:
361         talloc_free(ejs);
362         mpr_Return(eid, mprNTSTATUS(status));
363         if (NT_STATUS_EQUAL(status, NT_STATUS_INTERNAL_ERROR)) {
364                 return -1;
365         }
366         return 0;
367 }
368
369 /*
370   hook called by generated RPC interfaces at the end of their init routines
371   used to add generic operations on the pipe
372 */
373 int ejs_rpc_init(struct MprVar *obj, const char *name)
374 {
375         ndr_table_init();
376
377         mprSetStringCFunction(obj, "connect", ejs_rpc_connect);
378         if (mprGetProperty(obj, "pipe_name", NULL) == NULL) {
379                 mprSetVar(obj, "pipe_name", mprString(name));
380         }
381         return 0;
382 }