2 Unix SMB/CIFS implementation.
3 simple kerberos5/SPNEGO routines
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002
6 Copyright (C) Andrew Bartlett 2002-2003
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.
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.
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/>.
23 #include "libcli/auth/msrpc_parse.h"
26 this is a tiny msrpc packet generator. I am only using this to
27 avoid tying this code to a particular varient of our rpc code. This
28 generator is not general enough for all our rpc needs, its just
29 enough for the spnego/ntlmssp code
31 format specifiers are:
33 U = unicode string (input is unix string)
34 a = address (input is char *unix_string)
35 (1 byte type, 1 byte length, unicode/ASCII string, all inline)
36 A = ASCII string (input is unix string)
37 B = data blob (pointer + length)
38 b = data blob in header (pointer + length)
41 C = constant ascii string
43 NTSTATUS
msrpc_gen(TALLOC_CTX
*mem_ctx
,
45 const char *format
, ...)
52 int head_size
=0, data_size
=0;
53 int head_ofs
, data_ofs
;
59 pointers
= talloc_array(mem_ctx
, DATA_BLOB
, strlen(format
));
61 return NT_STATUS_NO_MEMORY
;
63 intargs
= talloc_array(pointers
, int, strlen(format
));
65 return NT_STATUS_NO_MEMORY
;
68 /* first scan the format to work out the header and body size */
70 for (i
=0; format
[i
]; i
++) {
73 s
= va_arg(ap
, char *);
75 ret
= push_ucs2_talloc(
77 (smb_ucs2_t
**)(void *)&pointers
[i
].data
,
81 return map_nt_error_from_unix_common(errno
);
83 pointers
[i
].length
= n
;
84 pointers
[i
].length
-= 2;
85 data_size
+= pointers
[i
].length
;
88 s
= va_arg(ap
, char *);
90 ret
= push_ascii_talloc(
91 pointers
, (char **)(void *)&pointers
[i
].data
,
95 return map_nt_error_from_unix_common(errno
);
97 pointers
[i
].length
= n
;
98 pointers
[i
].length
-= 1;
99 data_size
+= pointers
[i
].length
;
104 s
= va_arg(ap
, char *);
105 ret
= push_ucs2_talloc(
107 (smb_ucs2_t
**)(void *)&pointers
[i
].data
,
111 return map_nt_error_from_unix_common(errno
);
113 pointers
[i
].length
= n
;
114 pointers
[i
].length
-= 2;
115 data_size
+= pointers
[i
].length
+ 4;
118 b
= va_arg(ap
, uint8_t *);
120 pointers
[i
].data
= b
;
121 pointers
[i
].length
= va_arg(ap
, int);
122 data_size
+= pointers
[i
].length
;
125 b
= va_arg(ap
, uint8_t *);
126 pointers
[i
].data
= b
;
127 pointers
[i
].length
= va_arg(ap
, int);
128 head_size
+= pointers
[i
].length
;
136 s
= va_arg(ap
, char *);
137 pointers
[i
].data
= (uint8_t *)s
;
138 pointers
[i
].length
= strlen(s
)+1;
139 head_size
+= pointers
[i
].length
;
143 return NT_STATUS_INVALID_PARAMETER
;
148 if (head_size
+ data_size
== 0) {
149 return NT_STATUS_INVALID_PARAMETER
;
152 /* allocate the space, then scan the format again to fill in the values */
153 *blob
= data_blob_talloc(mem_ctx
, NULL
, head_size
+ data_size
);
155 return NT_STATUS_NO_MEMORY
;
158 data_ofs
= head_size
;
160 va_start(ap
, format
);
161 for (i
=0; format
[i
]; i
++) {
166 n
= pointers
[i
].length
;
167 SSVAL(blob
->data
, head_ofs
, n
); head_ofs
+= 2;
168 SSVAL(blob
->data
, head_ofs
, n
); head_ofs
+= 2;
169 SIVAL(blob
->data
, head_ofs
, data_ofs
); head_ofs
+= 4;
170 if (pointers
[i
].data
&& n
) /* don't follow null pointers... */
171 memcpy(blob
->data
+data_ofs
, pointers
[i
].data
, n
);
176 SSVAL(blob
->data
, data_ofs
, j
); data_ofs
+= 2;
178 n
= pointers
[i
].length
;
179 SSVAL(blob
->data
, data_ofs
, n
); data_ofs
+= 2;
180 memcpy(blob
->data
+data_ofs
, pointers
[i
].data
, n
);
185 SIVAL(blob
->data
, head_ofs
, j
);
189 n
= pointers
[i
].length
;
190 if (pointers
[i
].data
&& n
) {
191 /* don't follow null pointers... */
192 memcpy(blob
->data
+ head_ofs
, pointers
[i
].data
, n
);
197 n
= pointers
[i
].length
;
198 memcpy(blob
->data
+ head_ofs
, pointers
[i
].data
, n
);
203 return NT_STATUS_INVALID_PARAMETER
;
208 talloc_free(pointers
);
214 /* a helpful macro to avoid running over the end of our blob */
215 #define NEED_DATA(amount) \
216 if ((head_ofs + amount) > blob->length) { \
222 this is a tiny msrpc packet parser. This the the partner of msrpc_gen
224 format specifiers are:
226 U = unicode string (output is unix string)
229 b = data blob in header
231 C = constant ascii string
234 bool msrpc_parse(TALLOC_CTX
*mem_ctx
,
235 const DATA_BLOB
*blob
,
236 const char *format
, ...)
248 va_start(ap
, format
);
249 for (i
=0; format
[i
]; i
++) {
253 len1
= SVAL(blob
->data
, head_ofs
); head_ofs
+= 2;
254 len2
= SVAL(blob
->data
, head_ofs
); head_ofs
+= 2;
255 ptr
= IVAL(blob
->data
, head_ofs
); head_ofs
+= 4;
257 ps
= va_arg(ap
, char **);
258 if (len1
== 0 && len2
== 0) {
259 *ps
= talloc_strdup(mem_ctx
, "");
265 /* make sure its in the right format - be strict */
266 if ((len1
!= len2
) || (ptr
+ len1
< ptr
) || (ptr
+ len1
< len1
) || (ptr
+ len1
> blob
->length
)) {
271 /* if odd length and unicode */
275 if (blob
->data
+ ptr
< (uint8_t *)(uintptr_t)ptr
||
276 blob
->data
+ ptr
< blob
->data
) {
283 if (!convert_string_talloc(mem_ctx
, CH_UTF16
, CH_UNIX
,
284 blob
->data
+ ptr
, len1
,
290 *ps
= talloc_strdup(mem_ctx
, "");
300 len1
= SVAL(blob
->data
, head_ofs
); head_ofs
+= 2;
301 len2
= SVAL(blob
->data
, head_ofs
); head_ofs
+= 2;
302 ptr
= IVAL(blob
->data
, head_ofs
); head_ofs
+= 4;
304 ps
= (char **)va_arg(ap
, char **);
305 /* make sure its in the right format - be strict */
306 if (len1
== 0 && len2
== 0) {
307 *ps
= talloc_strdup(mem_ctx
, "");
313 if ((len1
!= len2
) || (ptr
+ len1
< ptr
) || (ptr
+ len1
< len1
) || (ptr
+ len1
> blob
->length
)) {
318 if (blob
->data
+ ptr
< (uint8_t *)(uintptr_t)ptr
||
319 blob
->data
+ ptr
< blob
->data
) {
327 if (!convert_string_talloc(mem_ctx
, CH_DOS
, CH_UNIX
,
328 blob
->data
+ ptr
, len1
,
334 *ps
= talloc_strdup(mem_ctx
, "");
344 len1
= SVAL(blob
->data
, head_ofs
); head_ofs
+= 2;
345 len2
= SVAL(blob
->data
, head_ofs
); head_ofs
+= 2;
346 ptr
= IVAL(blob
->data
, head_ofs
); head_ofs
+= 4;
348 b
= (DATA_BLOB
*)va_arg(ap
, void *);
349 if (len1
== 0 && len2
== 0) {
350 *b
= data_blob_talloc(mem_ctx
, NULL
, 0);
352 /* make sure its in the right format - be strict */
353 if ((len1
!= len2
) || (ptr
+ len1
< ptr
) || (ptr
+ len1
< len1
) || (ptr
+ len1
> blob
->length
)) {
358 if (blob
->data
+ ptr
< (uint8_t *)(uintptr_t)ptr
||
359 blob
->data
+ ptr
< blob
->data
) {
364 *b
= data_blob_talloc(mem_ctx
, blob
->data
+ ptr
, len1
);
368 b
= (DATA_BLOB
*)va_arg(ap
, void *);
369 len1
= va_arg(ap
, unsigned int);
370 /* make sure its in the right format - be strict */
372 if (blob
->data
+ head_ofs
< (uint8_t *)head_ofs
||
373 blob
->data
+ head_ofs
< blob
->data
) {
378 *b
= data_blob_talloc(mem_ctx
, blob
->data
+ head_ofs
, len1
);
382 v
= va_arg(ap
, uint32_t *);
384 *v
= IVAL(blob
->data
, head_ofs
); head_ofs
+= 4;
387 s
= va_arg(ap
, char *);
389 if (blob
->data
+ head_ofs
< (uint8_t *)head_ofs
||
390 blob
->data
+ head_ofs
< blob
->data
||
391 (head_ofs
+ (strlen(s
) + 1)) > blob
->length
) {
396 if (memcmp(blob
->data
+ head_ofs
, s
, strlen(s
)+1) != 0) {
400 head_ofs
+= (strlen(s
) + 1);