added auto-generation of the IDL interface tables. This makes two less
[samba.git] / source4 / librpc / ndr / libndr.h
1 /* 
2    Unix SMB/CIFS implementation.
3    rpc interface definitions
4    Copyright (C) Andrew Tridgell 2003
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 /*
22   this provides definitions for the libcli/rpc/ MSRPC library
23 */
24
25
26 /* offset lists are used to allow a push/pull function to find the
27    start of an encapsulating structure */
28 struct ndr_ofs_list {
29         uint32 offset;
30         struct ndr_ofs_list *next;
31 };
32
33
34 /* this is the base structure passed to routines that 
35    parse MSRPC formatted data 
36
37    note that in Samba4 we use separate routines and structures for
38    MSRPC marshalling and unmarshalling. Also note that these routines
39    are being kept deliberately very simple, and are not tied to a
40    particular transport
41 */
42 struct ndr_pull {
43         uint32 flags; /* LIBNDR_FLAG_* */
44         char *data;
45         uint32 data_size;
46         uint32 offset;
47         TALLOC_CTX *mem_ctx;
48
49         /* this points at a list of offsets to the structures being processed.
50            The first element in the list is the current structure */
51         struct ndr_ofs_list *ofs_list;
52 };
53
54 struct ndr_pull_save {
55         uint32 data_size;
56         uint32 offset;
57         struct ndr_pull_save *next;
58 };
59
60 /* structure passed to functions that generate NDR formatted data */
61 struct ndr_push {
62         uint32 flags; /* LIBNDR_FLAG_* */
63         char *data;
64         uint32 alloc_size;
65         uint32 offset;
66         TALLOC_CTX *mem_ctx;
67
68         /* this is used to ensure we generate unique reference IDs */
69         uint32 ptr_count;
70
71         /* this points at a list of offsets to the structures being processed.
72            The first element in the list is the current structure */
73         struct ndr_ofs_list *ofs_list;
74
75         /* this list is used by the [relative] code to find the offsets */
76         struct ndr_ofs_list *relative_list, *relative_list_end;
77 };
78
79 struct ndr_push_save {
80         uint32 offset;
81         struct ndr_push_save *next;
82 };
83
84
85 /* structure passed to functions that print IDL structures */
86 struct ndr_print {
87         uint32 flags; /* LIBNDR_FLAG_* */
88         TALLOC_CTX *mem_ctx;
89         uint32 depth;
90         void (*print)(struct ndr_print *, const char *, ...);
91         void *private;
92 };
93
94 #define LIBNDR_FLAG_BIGENDIAN  (1<<0)
95 #define LIBNDR_FLAG_NOALIGN    (1<<1)
96
97 #define LIBNDR_FLAG_STR_ASCII    (1<<2)
98 #define LIBNDR_FLAG_STR_LEN4     (1<<3)
99 #define LIBNDR_FLAG_STR_SIZE4    (1<<4)
100 #define LIBNDR_FLAG_STR_NOTERM   (1<<5)
101 #define LIBNDR_FLAG_STR_NULLTERM (1<<6)
102 #define LIBNDR_FLAG_STR_SIZE2    (1<<7)
103 #define LIBNDR_STRING_FLAGS      (0xFC)
104
105 #define LIBNDR_FLAG_REF_ALLOC    (1<<10)
106 #define LIBNDR_FLAG_REMAINING    (1<<11)
107 #define LIBNDR_FLAG_ALIGN2       (1<<12)
108 #define LIBNDR_FLAG_ALIGN4       (1<<13)
109 #define LIBNDR_FLAG_ALIGN8       (1<<14)
110
111 #define LIBNDR_ALIGN_FLAGS (LIBNDR_FLAG_ALIGN2|LIBNDR_FLAG_ALIGN4|LIBNDR_FLAG_ALIGN8)
112
113 /* useful macro for debugging */
114 #define NDR_PRINT_DEBUG(type, p) ndr_print_debug((ndr_print_fn_t)ndr_print_ ##type, #p, p)
115 #define NDR_PRINT_UNION_DEBUG(type, level, p) ndr_print_union_debug((ndr_print_union_fn_t)ndr_print_ ##type, #p, level, p)
116 #define NDR_PRINT_FUNCTION_DEBUG(type, flags, p) ndr_print_function_debug((ndr_print_function_t)ndr_print_ ##type, #type, flags, p)
117 #define NDR_PRINT_BOTH_DEBUG(type, p) NDR_PRINT_FUNCTION_DEBUG(type, NDR_BOTH, p)
118 #define NDR_PRINT_OUT_DEBUG(type, p) NDR_PRINT_FUNCTION_DEBUG(type, NDR_OUT, p)
119 #define NDR_PRINT_IN_DEBUG(type, p) NDR_PRINT_FUNCTION_DEBUG(type, NDR_IN, p)
120
121
122 enum ndr_err_code {
123         NDR_ERR_CONFORMANT_SIZE,
124         NDR_ERR_ARRAY_SIZE,
125         NDR_ERR_BAD_SWITCH,
126         NDR_ERR_OFFSET,
127         NDR_ERR_RELATIVE,
128         NDR_ERR_CHARCNV,
129         NDR_ERR_LENGTH,
130         NDR_ERR_SUBCONTEXT,
131         NDR_ERR_STRING,
132         NDR_ERR_VALIDATE,
133         NDR_ERR_BUFSIZE,
134         NDR_ERR_ALLOC
135 };
136
137 /*
138   flags passed to control parse flow
139 */
140 #define NDR_SCALARS 1
141 #define NDR_BUFFERS 2
142
143 /*
144   flags passed to ndr_print_*()
145 */
146 #define NDR_IN 1
147 #define NDR_OUT 2
148 #define NDR_BOTH 3
149
150 #define NDR_PULL_NEED_BYTES(ndr, n) do { \
151         if ((n) > ndr->data_size || ndr->offset + (n) > ndr->data_size) { \
152                 return ndr_pull_error(ndr, NDR_ERR_BUFSIZE, "Pull bytes %u", n); \
153         } \
154 } while(0)
155
156 #define NDR_ALIGN(ndr, n) ndr_align_size(ndr->offset, n)
157
158 #define NDR_PULL_ALIGN(ndr, n) do { \
159         if (!(ndr->flags & LIBNDR_FLAG_NOALIGN)) { \
160                 ndr->offset = (ndr->offset + (n-1)) & ~(n-1); \
161         } \
162         if (ndr->offset >= ndr->data_size) { \
163                 return ndr_pull_error(ndr, NDR_ERR_BUFSIZE, "Pull align %u", n); \
164         } \
165 } while(0)
166
167 #define NDR_PUSH_NEED_BYTES(ndr, n) NDR_CHECK(ndr_push_expand(ndr, ndr->offset+(n)))
168
169 #define NDR_PUSH_ALIGN(ndr, n) do { \
170         if (!(ndr->flags & LIBNDR_FLAG_NOALIGN)) { \
171                 uint32 _pad = ((ndr->offset + (n-1)) & ~(n-1)) - ndr->offset; \
172                 while (_pad--) NDR_CHECK(ndr_push_uint8(ndr, 0)); \
173         } \
174 } while(0)
175
176
177 /* these are used to make the error checking on each element in libndr
178    less tedious, hopefully making the code more readable */
179 #define NDR_CHECK(call) do { NTSTATUS _status; \
180                              _status = call; \
181                              if (!NT_STATUS_IS_OK(_status)) \
182                                 return _status; \
183                         } while (0)
184
185
186 #define NDR_ALLOC_SIZE(ndr, s, size) do { \
187                                (s) = talloc(ndr->mem_ctx, size); \
188                                if ((size) && !(s)) return ndr_pull_error(ndr, NDR_ERR_ALLOC, \
189                                                                "Alloc %u failed\n", \
190                                                                size); \
191                            } while (0)
192
193 #define NDR_ALLOC(ndr, s) NDR_ALLOC_SIZE(ndr, s, sizeof(*(s)))
194
195
196 #define NDR_ALLOC_N_SIZE(ndr, s, n, elsize) do { \
197                                 if ((n) == 0) { \
198                                         (s) = NULL; \
199                                 } else { \
200                                         (s) = talloc(ndr->mem_ctx, (n) * elsize); \
201                                         if (!(s)) return ndr_pull_error(ndr, \
202                                                                         NDR_ERR_ALLOC, \
203                                                                         "Alloc %u * %u failed\n", \
204                                                                         n, elsize); \
205                                 } \
206                            } while (0)
207
208 #define NDR_ALLOC_N(ndr, s, n) NDR_ALLOC_N_SIZE(ndr, s, n, sizeof(*(s)))
209
210
211 #define NDR_PUSH_ALLOC_SIZE(ndr, s, size) do { \
212                                (s) = talloc(ndr->mem_ctx, size); \
213                                if ((size) && !(s)) return ndr_push_error(ndr, NDR_ERR_ALLOC, \
214                                                                "push alloc %u failed\n",\
215                                                                size); \
216                            } while (0)
217
218 #define NDR_PUSH_ALLOC(ndr, s) NDR_PUSH_ALLOC_SIZE(ndr, s, sizeof(*(s)))
219
220
221 /* these are used when generic fn pointers are needed for ndr push/pull fns */
222 typedef NTSTATUS (*ndr_push_fn_t)(struct ndr_push *, void *);
223 typedef NTSTATUS (*ndr_pull_fn_t)(struct ndr_pull *, void *);
224
225 typedef NTSTATUS (*ndr_push_flags_fn_t)(struct ndr_push *, int ndr_flags, void *);
226 typedef NTSTATUS (*ndr_push_const_fn_t)(struct ndr_push *, int ndr_flags, const void *);
227 typedef NTSTATUS (*ndr_pull_flags_fn_t)(struct ndr_pull *, int ndr_flags, void *);
228 typedef NTSTATUS (*ndr_push_union_fn_t)(struct ndr_push *, int ndr_flags, uint32, void *);
229 typedef NTSTATUS (*ndr_pull_union_fn_t)(struct ndr_pull *, int ndr_flags, uint32, void *);
230 typedef void (*ndr_print_fn_t)(struct ndr_print *, const char *, void *);
231 typedef void (*ndr_print_function_t)(struct ndr_print *, const char *, int, void *);
232 typedef void (*ndr_print_union_fn_t)(struct ndr_print *, const char *, uint32, void *);
233
234 #include "librpc/ndr/ndr_basic.h"
235 #include "librpc/ndr/ndr_sec.h"
236
237 /* now pull in the individual parsers */
238 #include "librpc/gen_ndr/tables.h"