r8273: fixed some memory leaks in smbscript. This required converting
[jelmer/samba4-debian.git] / source / scripting / ejs / ejsrpc.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    ejs <-> rpc interface definitions
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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 struct ejs_rpc {
24         int eid;
25         const char *callname;
26         /* as ejs does only one pass, we can use a single var for switch 
27            handling */
28         uint32_t switch_var;
29 };
30
31 typedef NTSTATUS (*ejs_pull_t)(struct ejs_rpc *, struct MprVar *, const char *, void *);
32 typedef NTSTATUS (*ejs_push_t)(struct ejs_rpc *, struct MprVar *, const char *, const void *);
33 typedef NTSTATUS (*ejs_pull_function_t)(struct ejs_rpc *, struct MprVar *, void *);
34 typedef NTSTATUS (*ejs_push_function_t)(struct ejs_rpc *, struct MprVar *, const void *);
35
36 NTSTATUS ejs_panic(struct ejs_rpc *ejs, const char *why);
37 void ejs_set_switch(struct ejs_rpc *ejs, uint32_t switch_var);
38
39 typedef void (*ejs_setup_t)(void);
40 typedef void (*ejs_constants_t)(int);
41
42 NTSTATUS smbcalls_register_ejs(const char *name, 
43                                ejs_setup_t setup,
44                                ejs_constants_t constants);
45
46 int ejs_rpc_call(int eid, int argc, struct MprVar **argv, const char *callname,
47                  ejs_pull_function_t ejs_pull, ejs_push_function_t ejs_push);
48
49 NTSTATUS ejs_pull_struct_start(struct ejs_rpc *ejs, struct MprVar **v, const char *name);
50 NTSTATUS ejs_push_struct_start(struct ejs_rpc *ejs, struct MprVar **v, const char *name);
51
52 NTSTATUS ejs_pull_uint8(struct ejs_rpc *ejs, 
53                         struct MprVar *v, const char *name, uint8_t *r);
54 NTSTATUS ejs_push_uint8(struct ejs_rpc *ejs, 
55                         struct MprVar *v, const char *name, const uint8_t *r);
56 NTSTATUS ejs_pull_uint16(struct ejs_rpc *ejs, 
57                          struct MprVar *v, const char *name, uint16_t *r);
58 NTSTATUS ejs_push_uint16(struct ejs_rpc *ejs, 
59                          struct MprVar *v, const char *name, const uint16_t *r);
60 NTSTATUS ejs_pull_uint32(struct ejs_rpc *ejs, 
61                          struct MprVar *v, const char *name, uint32_t *r);
62 NTSTATUS ejs_push_int32(struct ejs_rpc *ejs, 
63                          struct MprVar *v, const char *name, const int32_t *r);
64 NTSTATUS ejs_pull_int32(struct ejs_rpc *ejs, 
65                          struct MprVar *v, const char *name, int32_t *r);
66 NTSTATUS ejs_push_uint32(struct ejs_rpc *ejs, 
67                          struct MprVar *v, const char *name, const uint32_t *r);
68 NTSTATUS ejs_pull_hyper(struct ejs_rpc *ejs, 
69                         struct MprVar *v, const char *name, uint64_t *r);
70 NTSTATUS ejs_push_hyper(struct ejs_rpc *ejs, 
71                         struct MprVar *v, const char *name, const uint64_t *r);
72 NTSTATUS ejs_pull_dlong(struct ejs_rpc *ejs, 
73                         struct MprVar *v, const char *name, uint64_t *r);
74 NTSTATUS ejs_push_dlong(struct ejs_rpc *ejs, 
75                         struct MprVar *v, const char *name, const uint64_t *r);
76 NTSTATUS ejs_pull_udlong(struct ejs_rpc *ejs, 
77                         struct MprVar *v, const char *name, uint64_t *r);
78 NTSTATUS ejs_push_udlong(struct ejs_rpc *ejs, 
79                         struct MprVar *v, const char *name, const uint64_t *r);
80 NTSTATUS ejs_pull_NTTIME(struct ejs_rpc *ejs, 
81                         struct MprVar *v, const char *name, uint64_t *r);
82 NTSTATUS ejs_push_NTTIME(struct ejs_rpc *ejs, 
83                         struct MprVar *v, const char *name, const uint64_t *r);
84 NTSTATUS ejs_pull_enum(struct ejs_rpc *ejs, 
85                        struct MprVar *v, const char *name, unsigned *r);
86 NTSTATUS ejs_push_enum(struct ejs_rpc *ejs, 
87                        struct MprVar *v, const char *name, const unsigned *r);
88 NTSTATUS ejs_pull_string(struct ejs_rpc *ejs, 
89                          struct MprVar *v, const char *name, const char **s);
90 NTSTATUS ejs_push_string(struct ejs_rpc *ejs, 
91                          struct MprVar *v, const char *name, const char *s);
92 void ejs_set_constant_int(int eid, const char *name, int value);
93 void ejs_set_constant_string(int eid, const char *name, const char *value);
94
95 NTSTATUS ejs_pull_dom_sid(struct ejs_rpc *ejs, 
96                           struct MprVar *v, const char *name, struct dom_sid *r);
97 NTSTATUS ejs_push_dom_sid(struct ejs_rpc *ejs, 
98                           struct MprVar *v, const char *name, const struct dom_sid *r);
99 NTSTATUS ejs_push_null(struct ejs_rpc *ejs, struct MprVar *v, const char *name);
100 BOOL ejs_pull_null(struct ejs_rpc *ejs, struct MprVar *v, const char *name);
101
102
103 #define EJS_ALLOC_SIZE(ejs, s, size) do { \
104   (s) = talloc_size(ejs, size); \
105   if (!(s)) return ejs_panic(ejs, "out of memory"); \
106 } while (0)
107
108 #define EJS_ALLOC(ejs, s) EJS_ALLOC_SIZE(ejs, s, sizeof(*(s)))
109
110 #define EJS_ALLOC_N_SIZE(ejs, s, n, elsize) do { \
111         (s) = talloc_array_size(ejs, elsize, n); \
112         if (!(s)) return ejs_panic(ejs, "out of memory"); \
113 } while (0)
114
115 #define EJS_ALLOC_N(ejs, s, n) EJS_ALLOC_N_SIZE(ejs, s, n, sizeof(*(s)))
116
117 /* some types are equivalent for ejs */
118 #define ejs_pull_dom_sid2 ejs_pull_dom_sid
119 #define ejs_push_dom_sid2 ejs_push_dom_sid
120 #define ejs_pull_NTTIME_hyper ejs_pull_NTTIME
121 #define ejs_push_NTTIME_hyper ejs_push_NTTIME