2 Unix SMB/CIFS implementation.
6 Copyright (C) Andrew Tridgell 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 2 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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 this provides the core routines for NDR parsing functions
26 see http://www.opengroup.org/onlinepubs/9629399/chap14.htm for details
31 #include "dlinklist.h"
33 #define NDR_BASE_MARSHALL_SIZE 1024
36 work out the number of bytes needed to align on a n byte boundary
38 size_t ndr_align_size(uint32_t offset, size_t n)
40 if ((offset & (n-1)) == 0) return 0;
41 return n - (offset & (n-1));
45 initialise a ndr parse structure from a data blob
47 struct ndr_pull *ndr_pull_init_blob(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx)
51 ndr = talloc_zero_p(mem_ctx, struct ndr_pull);
52 if (!ndr) return NULL;
54 ndr->data = blob->data;
55 ndr->data_size = blob->length;
61 create an ndr sub-context based on an existing context. The new context starts
62 at the current offset, with the given size limit
64 NTSTATUS ndr_pull_subcontext(struct ndr_pull *ndr, struct ndr_pull *ndr2, uint32_t size)
66 NDR_PULL_NEED_BYTES(ndr, size);
68 ndr2->data += ndr2->offset;
70 ndr2->data_size = size;
71 ndr2->flags = ndr->flags;
77 advance by 'size' bytes
79 NTSTATUS ndr_pull_advance(struct ndr_pull *ndr, uint32_t size)
82 if (ndr->offset > ndr->data_size) {
83 return ndr_pull_error(ndr, NDR_ERR_BUFSIZE,
84 "ndr_pull_advance by %u failed",
91 set the parse offset to 'ofs'
93 NTSTATUS ndr_pull_set_offset(struct ndr_pull *ndr, uint32_t ofs)
96 if (ndr->offset > ndr->data_size) {
97 return ndr_pull_error(ndr, NDR_ERR_BUFSIZE,
98 "ndr_pull_set_offset %u failed",
104 /* save the offset/size of the current ndr state */
105 void ndr_pull_save(struct ndr_pull *ndr, struct ndr_pull_save *save)
107 save->offset = ndr->offset;
108 save->data_size = ndr->data_size;
111 /* restore the size/offset of a ndr structure */
112 void ndr_pull_restore(struct ndr_pull *ndr, struct ndr_pull_save *save)
114 ndr->offset = save->offset;
115 ndr->data_size = save->data_size;
119 /* create a ndr_push structure, ready for some marshalling */
120 struct ndr_push *ndr_push_init_ctx(TALLOC_CTX *mem_ctx)
122 struct ndr_push *ndr;
124 ndr = talloc_zero_p(mem_ctx, struct ndr_push);
130 ndr->alloc_size = NDR_BASE_MARSHALL_SIZE;
131 ndr->data = talloc_array_p(ndr, uint8_t, ndr->alloc_size);
140 /* create a ndr_push structure, ready for some marshalling */
141 struct ndr_push *ndr_push_init(void)
143 return ndr_push_init_ctx(NULL);
146 /* free a ndr_push structure */
147 void ndr_push_free(struct ndr_push *ndr)
153 /* return a DATA_BLOB structure for the current ndr_push marshalled data */
154 DATA_BLOB ndr_push_blob(struct ndr_push *ndr)
157 blob.data = ndr->data;
158 blob.length = ndr->offset;
164 expand the available space in the buffer to 'size'
166 NTSTATUS ndr_push_expand(struct ndr_push *ndr, uint32_t size)
168 if (ndr->alloc_size >= size) {
172 ndr->alloc_size += NDR_BASE_MARSHALL_SIZE;
173 if (size > ndr->alloc_size) {
174 ndr->alloc_size = size;
176 ndr->data = talloc_realloc(ndr, ndr->data, uint8_t, ndr->alloc_size);
178 return ndr_push_error(ndr, NDR_ERR_ALLOC, "Failed to push_expand to %u",
186 set the push offset to 'ofs'
188 NTSTATUS ndr_push_set_offset(struct ndr_push *ndr, uint32_t ofs)
190 NDR_CHECK(ndr_push_expand(ndr, ofs));
198 NTSTATUS ndr_push_array(struct ndr_push *ndr, int ndr_flags, void *base,
199 size_t elsize, uint32_t count,
200 NTSTATUS (*push_fn)(struct ndr_push *, int, void *))
204 if (!(ndr_flags & NDR_SCALARS)) goto buffers;
205 for (i=0;i<count;i++) {
206 NDR_CHECK(push_fn(ndr, NDR_SCALARS, p));
209 if (!(ndr_flags & NDR_BUFFERS)) goto done;
212 for (i=0;i<count;i++) {
213 NDR_CHECK(push_fn(ndr, NDR_BUFFERS, p));
221 pull a constant sized array
223 NTSTATUS ndr_pull_array(struct ndr_pull *ndr, int ndr_flags, void *base,
224 size_t elsize, uint32_t count,
225 NTSTATUS (*pull_fn)(struct ndr_pull *, int, void *))
230 if (!(ndr_flags & NDR_SCALARS)) goto buffers;
231 for (i=0;i<count;i++) {
232 NDR_CHECK(pull_fn(ndr, NDR_SCALARS, p));
235 if (!(ndr_flags & NDR_BUFFERS)) goto done;
238 for (i=0;i<count;i++) {
239 NDR_CHECK(pull_fn(ndr, NDR_BUFFERS, p));
247 pull a constant size array of structures
249 NTSTATUS ndr_pull_struct_array(struct ndr_pull *ndr, uint32_t count,
250 size_t elsize, void **info,
251 NTSTATUS (*pull_fn)(struct ndr_pull *, int, void *))
256 NDR_ALLOC_N_SIZE(ndr, *info, count, elsize);
257 base = (char *)*info;
259 for (i = 0; i < count; i++) {
260 ndr->data += ndr->offset;
262 NDR_CHECK(pull_fn(ndr, NDR_SCALARS|NDR_BUFFERS, &base[count * elsize]));
269 print a generic array
271 void ndr_print_array(struct ndr_print *ndr, const char *name, void *base,
272 size_t elsize, uint32_t count,
273 void (*print_fn)(struct ndr_print *, const char *, void *))
277 ndr->print(ndr, "%s: ARRAY(%d)", name, count);
279 for (i=0;i<count;i++) {
281 asprintf(&idx, "[%d]", i);
283 print_fn(ndr, idx, p);
293 void ndr_print_debug_helper(struct ndr_print *ndr, const char *format, ...) _PRINTF_ATTRIBUTE(2,3)
299 va_start(ap, format);
300 vasprintf(&s, format, ap);
303 for (i=0;i<ndr->depth;i++) {
307 DEBUG(0,("%s\n", s));
312 a useful helper function for printing idl structures via DEBUG()
314 void ndr_print_debug(ndr_print_fn_t fn, const char *name, void *ptr)
316 struct ndr_print *ndr;
318 ndr = talloc_p(NULL, struct ndr_print);
320 ndr->print = ndr_print_debug_helper;
329 a useful helper function for printing idl unions via DEBUG()
331 void ndr_print_union_debug(ndr_print_union_fn_t fn, const char *name, uint32_t level, void *ptr)
333 struct ndr_print *ndr;
335 ndr = talloc_p(NULL, struct ndr_print);
337 ndr->print = ndr_print_debug_helper;
340 fn(ndr, name, level, ptr);
345 a useful helper function for printing idl function calls via DEBUG()
347 void ndr_print_function_debug(ndr_print_function_t fn, const char *name, int flags, void *ptr)
349 struct ndr_print *ndr;
351 ndr = talloc_p(NULL, struct ndr_print);
353 ndr->print = ndr_print_debug_helper;
356 fn(ndr, name, flags, ptr);
360 void ndr_set_flags(uint32_t *pflags, uint32_t new_flags)
362 /* the big/little endian flags are inter-dependent */
363 if (new_flags & LIBNDR_FLAG_LITTLE_ENDIAN) {
364 (*pflags) &= ~LIBNDR_FLAG_BIGENDIAN;
366 if (new_flags & LIBNDR_FLAG_BIGENDIAN) {
367 (*pflags) &= ~LIBNDR_FLAG_LITTLE_ENDIAN;
369 (*pflags) |= new_flags;
372 static NTSTATUS ndr_map_error(enum ndr_err_code err)
375 case NDR_ERR_BUFSIZE:
376 return NT_STATUS_BUFFER_TOO_SMALL;
378 return NT_STATUS_INTERNAL_ERROR;
380 return NT_STATUS_NO_MEMORY;
381 case NDR_ERR_ARRAY_SIZE:
382 return NT_STATUS_ARRAY_BOUNDS_EXCEEDED;
387 /* we should all error codes to different status codes */
388 return NT_STATUS_INVALID_PARAMETER;
392 return and possibly log an NDR error
394 NTSTATUS ndr_pull_error(struct ndr_pull *ndr,
395 enum ndr_err_code err, const char *format, ...) _PRINTF_ATTRIBUTE(3,4)
400 va_start(ap, format);
401 vasprintf(&s, format, ap);
404 DEBUG(3,("ndr_pull_error(%u): %s\n", err, s));
408 return ndr_map_error(err);
412 return and possibly log an NDR error
414 NTSTATUS ndr_push_error(struct ndr_push *ndr, enum ndr_err_code err, const char *format, ...) _PRINTF_ATTRIBUTE(3,4)
419 va_start(ap, format);
420 vasprintf(&s, format, ap);
423 DEBUG(3,("ndr_push_error(%u): %s\n", err, s));
427 return ndr_map_error(err);
432 handle subcontext buffers, which in midl land are user-marshalled, but
433 we use magic in pidl to make them easier to cope with
435 static NTSTATUS ndr_pull_subcontext_header(struct ndr_pull *ndr,
437 struct ndr_pull *ndr2)
441 uint32_t size = ndr->data_size - ndr->offset;
442 if (size == 0) return NT_STATUS_OK;
443 NDR_CHECK(ndr_pull_subcontext(ndr, ndr2, size));
449 NDR_CHECK(ndr_pull_uint16(ndr, &size));
450 if (size == 0) return NT_STATUS_OK;
451 NDR_CHECK(ndr_pull_subcontext(ndr, ndr2, size));
457 NDR_CHECK(ndr_pull_uint32(ndr, &size));
458 if (size == 0) return NT_STATUS_OK;
459 NDR_CHECK(ndr_pull_subcontext(ndr, ndr2, size));
463 return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext size %d",
470 handle subcontext buffers, which in midl land are user-marshalled, but
471 we use magic in pidl to make them easier to cope with
473 NTSTATUS ndr_pull_subcontext_fn(struct ndr_pull *ndr, size_t sub_size,
474 void *base, ndr_pull_fn_t fn)
476 struct ndr_pull *ndr2;
477 NDR_ALLOC(ndr, ndr2);
478 NDR_CHECK(ndr_pull_subcontext_header(ndr, sub_size, ndr2));
479 NDR_CHECK(fn(ndr2, base));
481 NDR_CHECK(ndr_pull_advance(ndr, ndr2->data_size));
483 NDR_CHECK(ndr_pull_advance(ndr, ndr2->offset));
489 NTSTATUS ndr_pull_subcontext_flags_fn(struct ndr_pull *ndr, size_t sub_size,
490 void *base, ndr_pull_flags_fn_t fn)
492 struct ndr_pull *ndr2;
493 NDR_ALLOC(ndr, ndr2);
494 NDR_CHECK(ndr_pull_subcontext_header(ndr, sub_size, ndr2));
495 NDR_CHECK(fn(ndr2, NDR_SCALARS|NDR_BUFFERS, base));
497 NDR_CHECK(ndr_pull_advance(ndr, ndr2->data_size));
499 NDR_CHECK(ndr_pull_advance(ndr, ndr2->offset));
504 NTSTATUS ndr_pull_subcontext_union_fn(struct ndr_pull *ndr, size_t sub_size,
505 uint32_t level, void *base, ndr_pull_union_fn_t fn)
507 struct ndr_pull *ndr2;
509 NDR_ALLOC(ndr, ndr2);
510 NDR_CHECK(ndr_pull_subcontext_header(ndr, sub_size, ndr2));
511 NDR_CHECK(fn(ndr2, NDR_SCALARS|NDR_BUFFERS, level, base));
513 NDR_CHECK(ndr_pull_advance(ndr, ndr2->data_size));
515 NDR_CHECK(ndr_pull_advance(ndr, ndr2->offset));
522 push a subcontext header
524 static NTSTATUS ndr_push_subcontext_header(struct ndr_push *ndr,
526 struct ndr_push *ndr2)
533 NDR_CHECK(ndr_push_uint16(ndr, ndr2->offset));
537 NDR_CHECK(ndr_push_uint32(ndr, ndr2->offset));
541 return ndr_push_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext size %d",
548 handle subcontext buffers, which in midl land are user-marshalled, but
549 we use magic in pidl to make them easier to cope with
551 NTSTATUS ndr_push_subcontext_fn(struct ndr_push *ndr, size_t sub_size,
552 void *base, ndr_push_fn_t fn)
554 struct ndr_push *ndr2;
556 ndr2 = ndr_push_init_ctx(ndr);
557 if (!ndr2) return NT_STATUS_NO_MEMORY;
559 ndr2->flags = ndr->flags;
560 NDR_CHECK(fn(ndr2, base));
561 NDR_CHECK(ndr_push_subcontext_header(ndr, sub_size, ndr2));
562 NDR_CHECK(ndr_push_bytes(ndr, ndr2->data, ndr2->offset));
567 handle subcontext buffers for function that take a flags arg
569 NTSTATUS ndr_push_subcontext_flags_fn(struct ndr_push *ndr, size_t sub_size,
570 void *base, ndr_push_flags_fn_t fn)
572 struct ndr_push *ndr2;
574 ndr2 = ndr_push_init_ctx(ndr);
575 if (!ndr2) return NT_STATUS_NO_MEMORY;
577 ndr2->flags = ndr->flags;
578 NDR_CHECK(fn(ndr2, NDR_SCALARS|NDR_BUFFERS, base));
579 NDR_CHECK(ndr_push_subcontext_header(ndr, sub_size, ndr2));
580 NDR_CHECK(ndr_push_bytes(ndr, ndr2->data, ndr2->offset));
585 handle subcontext buffers for function that take a union
587 NTSTATUS ndr_push_subcontext_union_fn(struct ndr_push *ndr, size_t sub_size,
588 uint32_t level, void *base, ndr_push_union_fn_t fn)
590 struct ndr_push *ndr2;
592 ndr2 = ndr_push_init_ctx(ndr);
593 if (!ndr2) return NT_STATUS_NO_MEMORY;
595 ndr2->flags = ndr->flags;
596 NDR_CHECK(fn(ndr2, NDR_SCALARS|NDR_BUFFERS, level, base));
597 NDR_CHECK(ndr_push_subcontext_header(ndr, sub_size, ndr2));
598 NDR_CHECK(ndr_push_bytes(ndr, ndr2->data, ndr2->offset));
604 mark the start of a structure
606 NTSTATUS ndr_pull_struct_start(struct ndr_pull *ndr)
612 mark the end of a structure
614 void ndr_pull_struct_end(struct ndr_pull *ndr)
619 mark the start of a structure
621 NTSTATUS ndr_push_struct_start(struct ndr_push *ndr)
627 mark the end of a structure
629 void ndr_push_struct_end(struct ndr_push *ndr)
634 store a token in the ndr context, for later retrieval
636 static NTSTATUS ndr_token_store(TALLOC_CTX *mem_ctx,
637 struct ndr_token_list **list,
641 struct ndr_token_list *tok;
642 tok = talloc_p(mem_ctx, struct ndr_token_list);
644 return NT_STATUS_NO_MEMORY;
648 DLIST_ADD((*list), tok);
653 retrieve a token from a ndr context
655 static NTSTATUS ndr_token_retrieve(struct ndr_token_list **list, const void *key, uint32_t *v)
657 struct ndr_token_list *tok;
658 for (tok=*list;tok;tok=tok->next) {
659 if (tok->key == key) {
660 DLIST_REMOVE((*list), tok);
665 return ndr_map_error(NDR_ERR_TOKEN);
669 peek at but don't removed a token from a ndr context
671 static uint32_t ndr_token_peek(struct ndr_token_list **list, const void *key)
673 struct ndr_token_list *tok;
674 for (tok=*list;tok;tok=tok->next) {
675 if (tok->key == key) {
683 pull an array size field and add it to the array_size_list token list
685 NTSTATUS ndr_pull_array_size(struct ndr_pull *ndr, const void *p)
688 NDR_CHECK(ndr_pull_uint32(ndr, &size));
689 return ndr_token_store(ndr, &ndr->array_size_list, p, size);
693 get the stored array size field
695 uint32_t ndr_get_array_size(struct ndr_pull *ndr, const void *p)
697 return ndr_token_peek(&ndr->array_size_list, p);
701 check the stored array size field
703 NTSTATUS ndr_check_array_size(struct ndr_pull *ndr, void *p, uint32_t size)
706 NDR_CHECK(ndr_token_retrieve(&ndr->array_size_list, p, &stored));
707 if (stored != size) {
708 return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE,
709 "Bad array size - got %u expected %u\n",
716 pull an array length field and add it to the array_length_list token list
718 NTSTATUS ndr_pull_array_length(struct ndr_pull *ndr, const void *p)
720 uint32_t length, offset;
721 NDR_CHECK(ndr_pull_uint32(ndr, &offset));
723 return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE,
724 "non-zero array offset %u\n", offset);
726 NDR_CHECK(ndr_pull_uint32(ndr, &length));
727 return ndr_token_store(ndr, &ndr->array_length_list, p, length);
731 get the stored array length field
733 uint32_t ndr_get_array_length(struct ndr_pull *ndr, const void *p)
735 return ndr_token_peek(&ndr->array_length_list, p);
739 check the stored array length field
741 NTSTATUS ndr_check_array_length(struct ndr_pull *ndr, void *p, uint32_t length)
744 NDR_CHECK(ndr_token_retrieve(&ndr->array_length_list, p, &stored));
745 if (stored != length) {
746 return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE,
747 "Bad array length - got %u expected %u\n",
754 pull a relative object - stage1
755 called during SCALARS processing
757 NTSTATUS ndr_pull_relative1(struct ndr_pull *ndr, const void *p, uint32_t rel_offset)
759 if (ndr->flags & LIBNDR_FLAG_RELATIVE_CURRENT) {
760 return ndr_token_store(ndr, &ndr->relative_list, p,
761 rel_offset + ndr->offset - 4);
763 return ndr_token_store(ndr, &ndr->relative_list, p, rel_offset);
768 pull a relative object - stage2
769 called during BUFFERS processing
771 NTSTATUS ndr_pull_relative2(struct ndr_pull *ndr, const void *p)
774 NDR_CHECK(ndr_token_retrieve(&ndr->relative_list, p, &rel_offset));
775 return ndr_pull_set_offset(ndr, rel_offset);
779 push a relative object - stage1
780 this is called during SCALARS processing
782 NTSTATUS ndr_push_relative1(struct ndr_push *ndr, const void *p)
785 NDR_CHECK(ndr_push_uint32(ndr, 0));
788 NDR_CHECK(ndr_push_align(ndr, 4));
789 NDR_CHECK(ndr_token_store(ndr, &ndr->relative_list, p, ndr->offset));
790 return ndr_push_uint32(ndr, 0xFFFFFFFF);
794 push a relative object - stage2
795 this is called during buffers processing
797 NTSTATUS ndr_push_relative2(struct ndr_push *ndr, const void *p)
799 struct ndr_push_save save;
803 NDR_CHECK(ndr_push_align(ndr, 4));
804 ndr_push_save(ndr, &save);
805 NDR_CHECK(ndr_token_retrieve(&ndr->relative_list, p, &ndr->offset));
806 if (ndr->flags & LIBNDR_FLAG_RELATIVE_CURRENT) {
807 NDR_CHECK(ndr_push_uint32(ndr, save.offset - ndr->offset));
809 NDR_CHECK(ndr_push_uint32(ndr, save.offset));
811 ndr_push_restore(ndr, &save);
817 pull a union from a blob using NDR
819 NTSTATUS ndr_pull_union_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, uint32_t level, void *p,
820 ndr_pull_union_fn_t fn)
822 struct ndr_pull *ndr;
823 ndr = ndr_pull_init_blob(blob, mem_ctx);
825 return NT_STATUS_NO_MEMORY;
827 return fn(ndr, NDR_SCALARS|NDR_BUFFERS, level, p);
831 pull a struct from a blob using NDR
833 NTSTATUS ndr_pull_struct_blob(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
834 ndr_pull_flags_fn_t fn)
836 struct ndr_pull *ndr;
837 ndr = ndr_pull_init_blob(blob, mem_ctx);
839 return NT_STATUS_NO_MEMORY;
841 return fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
845 push a struct to a blob using NDR
847 NTSTATUS ndr_push_struct_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
848 ndr_push_flags_fn_t fn)
851 struct ndr_push *ndr;
852 ndr = ndr_push_init_ctx(mem_ctx);
854 return NT_STATUS_NO_MEMORY;
856 status = fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
857 if (!NT_STATUS_IS_OK(status)) {
861 *blob = ndr_push_blob(ndr);
867 generic ndr_size_*() handler for structures
869 size_t ndr_size_struct(const void *p, int flags, ndr_push_flags_fn_t push)
871 struct ndr_push *ndr;
875 ndr = ndr_push_init_ctx(NULL);
878 status = push(ndr, NDR_SCALARS|NDR_BUFFERS, discard_const(p));
879 if (!NT_STATUS_IS_OK(status)) {