r13840: Mark some functions as public.
[samba.git] / source / librpc / ndr / ndr.c
index 3394231726c6e39d2d723b294cc18fb34978e1f7..1f626df13b3e10329e0071ddd74bb319c97b7c9d 100644 (file)
 */
 
 #include "includes.h"
+#include "dlinklist.h"
 
 #define NDR_BASE_MARSHALL_SIZE 1024
 
+/* this guid indicates NDR encoding in a protocol tower */
+const struct dcerpc_syntax_id ndr_transfer_syntax = {
+  { 0x8a885d04, 0x1ceb, 0x11c9, {0x9f, 0xe8}, {0x08,0x00,0x2b,0x10,0x48,0x60} },
+  2
+};
+
+const struct dcerpc_syntax_id ndr64_transfer_syntax = {
+  { 0x71710533, 0xbeba, 0x4937, {0x83, 0x19}, {0xb5,0xdb,0xef,0x9c,0xcc,0x36} },
+  1
+};
+
 /*
   work out the number of bytes needed to align on a n byte boundary
 */
-size_t ndr_align_size(uint32_t offset, size_t n)
+_PUBLIC_ size_t ndr_align_size(uint32_t offset, size_t n)
 {
        if ((offset & (n-1)) == 0) return 0;
        return n - (offset & (n-1));
@@ -43,42 +55,24 @@ size_t ndr_align_size(uint32_t offset, size_t n)
 /*
   initialise a ndr parse structure from a data blob
 */
-struct ndr_pull *ndr_pull_init_blob(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx)
+_PUBLIC_ struct ndr_pull *ndr_pull_init_blob(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx)
 {
        struct ndr_pull *ndr;
 
-       ndr = talloc(mem_ctx, sizeof(*ndr));
+       ndr = talloc_zero(mem_ctx, struct ndr_pull);
        if (!ndr) return NULL;
+       ndr->current_mem_ctx = mem_ctx;
 
-       ndr->flags = 0;
        ndr->data = blob->data;
        ndr->data_size = blob->length;
-       ndr->offset = 0;
-       ndr->mem_ctx = mem_ctx;
 
        return ndr;
 }
 
-/*
-  create an ndr sub-context based on an existing context. The new context starts
-  at the current offset, with the given size limit
-*/
-NTSTATUS ndr_pull_subcontext(struct ndr_pull *ndr, struct ndr_pull *ndr2, uint32_t size)
-{
-       NDR_PULL_NEED_BYTES(ndr, size);
-       *ndr2 = *ndr;
-       ndr2->data += ndr2->offset;
-       ndr2->offset = 0;
-       ndr2->data_size = size;
-       ndr2->flags = ndr->flags;
-       return NT_STATUS_OK;
-}
-
-
 /*
   advance by 'size' bytes
 */
-NTSTATUS ndr_pull_advance(struct ndr_pull *ndr, uint32_t size)
+_PUBLIC_ NTSTATUS ndr_pull_advance(struct ndr_pull *ndr, uint32_t size)
 {
        ndr->offset += size;
        if (ndr->offset > ndr->data_size) {
@@ -92,7 +86,7 @@ NTSTATUS ndr_pull_advance(struct ndr_pull *ndr, uint32_t size)
 /*
   set the parse offset to 'ofs'
 */
-NTSTATUS ndr_pull_set_offset(struct ndr_pull *ndr, uint32_t ofs)
+static NTSTATUS ndr_pull_set_offset(struct ndr_pull *ndr, uint32_t ofs)
 {
        ndr->offset = ofs;
        if (ndr->offset > ndr->data_size) {
@@ -104,14 +98,14 @@ NTSTATUS ndr_pull_set_offset(struct ndr_pull *ndr, uint32_t ofs)
 }
 
 /* save the offset/size of the current ndr state */
-void ndr_pull_save(struct ndr_pull *ndr, struct ndr_pull_save *save)
+_PUBLIC_ void ndr_pull_save(struct ndr_pull *ndr, struct ndr_pull_save *save)
 {
        save->offset = ndr->offset;
        save->data_size = ndr->data_size;
 }
 
 /* restore the size/offset of a ndr structure */
-void ndr_pull_restore(struct ndr_pull *ndr, struct ndr_pull_save *save)
+_PUBLIC_ void ndr_pull_restore(struct ndr_pull *ndr, struct ndr_pull_save *save)
 {
        ndr->offset = save->offset;
        ndr->data_size = save->data_size;
@@ -119,57 +113,48 @@ void ndr_pull_restore(struct ndr_pull *ndr, struct ndr_pull_save *save)
 
 
 /* create a ndr_push structure, ready for some marshalling */
-struct ndr_push *ndr_push_init_ctx(TALLOC_CTX *mem_ctx)
+_PUBLIC_ struct ndr_push *ndr_push_init_ctx(TALLOC_CTX *mem_ctx)
 {
        struct ndr_push *ndr;
 
-       ndr = talloc(mem_ctx, sizeof(*ndr));
+       ndr = talloc_zero(mem_ctx, struct ndr_push);
        if (!ndr) {
                return NULL;
        }
 
-       ndr->mem_ctx = mem_ctx;
        ndr->flags = 0;
        ndr->alloc_size = NDR_BASE_MARSHALL_SIZE;
-       ndr->data = talloc(ndr->mem_ctx, ndr->alloc_size);
+       ndr->data = talloc_array(ndr, uint8_t, ndr->alloc_size);
        if (!ndr->data) {
                return NULL;
        }
-       ndr->offset = 0;
-       ndr->ptr_count = 0;
-       ndr->relative_list = NULL;
-       ndr->relative_list_end = NULL;
-       
+
        return ndr;
 }
 
 
 /* create a ndr_push structure, ready for some marshalling */
-struct ndr_push *ndr_push_init(void)
+_PUBLIC_ struct ndr_push *ndr_push_init(void)
 {
-       struct ndr_push *ndr;
-       TALLOC_CTX *mem_ctx = talloc_init("ndr_push_init");
-       if (!mem_ctx) return NULL;
-       ndr = ndr_push_init_ctx(mem_ctx);
-       if (!ndr) {
-               talloc_destroy(mem_ctx);
-       }
-       return ndr;
+       return ndr_push_init_ctx(NULL);
 }
 
 /* free a ndr_push structure */
-void ndr_push_free(struct ndr_push *ndr)
+_PUBLIC_ void ndr_push_free(struct ndr_push *ndr)
 {
-       talloc_destroy(ndr->mem_ctx);
+       talloc_free(ndr);
 }
 
 
 /* return a DATA_BLOB structure for the current ndr_push marshalled data */
-DATA_BLOB ndr_push_blob(struct ndr_push *ndr)
+_PUBLIC_ DATA_BLOB ndr_push_blob(struct ndr_push *ndr)
 {
        DATA_BLOB blob;
        blob.data = ndr->data;
        blob.length = ndr->offset;
+       if (ndr->alloc_size > ndr->offset) {
+               ndr->data[ndr->offset] = 0;
+       }
        return blob;
 }
 
@@ -177,17 +162,17 @@ DATA_BLOB ndr_push_blob(struct ndr_push *ndr)
 /*
   expand the available space in the buffer to 'size'
 */
-NTSTATUS ndr_push_expand(struct ndr_push *ndr, uint32_t size)
+_PUBLIC_ NTSTATUS ndr_push_expand(struct ndr_push *ndr, uint32_t size)
 {
-       if (ndr->alloc_size >= size) {
+       if (ndr->alloc_size > size) {
                return NT_STATUS_OK;
        }
 
        ndr->alloc_size += NDR_BASE_MARSHALL_SIZE;
-       if (size > ndr->alloc_size) {
-               ndr->alloc_size = size;
+       if (size+1 > ndr->alloc_size) {
+               ndr->alloc_size = size+1;
        }
-       ndr->data = talloc_realloc(ndr->mem_ctx, ndr->data, ndr->alloc_size);
+       ndr->data = talloc_realloc(ndr, ndr->data, uint8_t, ndr->alloc_size);
        if (!ndr->data) {
                return ndr_push_error(ndr, NDR_ERR_ALLOC, "Failed to push_expand to %u",
                                      ndr->alloc_size);
@@ -196,94 +181,7 @@ NTSTATUS ndr_push_expand(struct ndr_push *ndr, uint32_t size)
        return NT_STATUS_OK;
 }
 
-/*
-  set the push offset to 'ofs'
-*/
-NTSTATUS ndr_push_set_offset(struct ndr_push *ndr, uint32_t ofs)
-{
-       NDR_CHECK(ndr_push_expand(ndr, ofs));
-       ndr->offset = ofs;
-       return NT_STATUS_OK;
-}
-
-/*
-  push a generic array
-*/
-NTSTATUS ndr_push_array(struct ndr_push *ndr, int ndr_flags, void *base, 
-                       size_t elsize, uint32_t count, 
-                       NTSTATUS (*push_fn)(struct ndr_push *, int, void *))
-{
-       int i;
-       char *p = base;
-       if (!(ndr_flags & NDR_SCALARS)) goto buffers;
-       for (i=0;i<count;i++) {
-               NDR_CHECK(push_fn(ndr, NDR_SCALARS, p));
-               p += elsize;
-       }
-       if (!(ndr_flags & NDR_BUFFERS)) goto done;
-buffers:
-       p = base;
-       for (i=0;i<count;i++) {
-               NDR_CHECK(push_fn(ndr, NDR_BUFFERS, p));
-               p += elsize;
-       }
-done:
-       return NT_STATUS_OK;
-}
-
-/*
-  pull a constant sized array
-*/
-NTSTATUS ndr_pull_array(struct ndr_pull *ndr, int ndr_flags, void *base, 
-                       size_t elsize, uint32_t count, 
-                       NTSTATUS (*pull_fn)(struct ndr_pull *, int, void *))
-{
-       int i;
-       char *p;
-       p = base;
-       if (!(ndr_flags & NDR_SCALARS)) goto buffers;
-       for (i=0;i<count;i++) {
-               NDR_CHECK(pull_fn(ndr, NDR_SCALARS, p));
-               p += elsize;
-       }
-       if (!(ndr_flags & NDR_BUFFERS)) goto done;
-buffers:
-       p = base;
-       for (i=0;i<count;i++) {
-               NDR_CHECK(pull_fn(ndr, NDR_BUFFERS, p));
-               p += elsize;
-       }
-done:
-       return NT_STATUS_OK;
-}
-
-
-/*
-  print a generic array
-*/
-void ndr_print_array(struct ndr_print *ndr, const char *name, void *base, 
-                    size_t elsize, uint32_t count, 
-                    void (*print_fn)(struct ndr_print *, const char *, void *))
-{
-       int i;
-       char *p = base;
-       ndr->print(ndr, "%s: ARRAY(%d)", name, count);
-       ndr->depth++;
-       for (i=0;i<count;i++) {
-               char *idx=NULL;
-               asprintf(&idx, "[%d]", i);
-               if (idx) {
-                       print_fn(ndr, idx, p);
-                       free(idx);
-               }
-               p += elsize;
-       }
-       ndr->depth--;
-}
-
-
-
-void ndr_print_debug_helper(struct ndr_print *ndr, const char *format, ...)
+_PUBLIC_ void ndr_print_debug_helper(struct ndr_print *ndr, const char *format, ...) _PRINTF_ATTRIBUTE(2,3)
 {
        va_list ap;
        char *s = NULL;
@@ -301,79 +199,139 @@ void ndr_print_debug_helper(struct ndr_print *ndr, const char *format, ...)
        free(s);
 }
 
+static void ndr_print_string_helper(struct ndr_print *ndr, const char *format, ...) _PRINTF_ATTRIBUTE(2,3)
+{
+       va_list ap;
+       int i;
+
+       for (i=0;i<ndr->depth;i++) {
+               ndr->private = talloc_asprintf_append(ndr->private, "    ");
+       }
+
+       va_start(ap, format);
+       ndr->private = talloc_vasprintf_append(ndr->private, format, ap);
+       va_end(ap);
+       ndr->private = talloc_asprintf_append(ndr->private, "\n");
+}
+
 /*
   a useful helper function for printing idl structures via DEBUG()
 */
-void ndr_print_debug(void (*fn)(struct ndr_print *, const char *, void *),
-                    const char *name,
-                    void *ptr)
+_PUBLIC_ void ndr_print_debug(ndr_print_fn_t fn, const char *name, void *ptr)
 {
-       struct ndr_print ndr;
+       struct ndr_print *ndr;
 
-       ndr.mem_ctx = talloc_init("ndr_print_debug");
-       if (!ndr.mem_ctx) return;
-       ndr.print = ndr_print_debug_helper;
-       ndr.depth = 1;
-       fn(&ndr, name, ptr);
-       talloc_destroy(ndr.mem_ctx);
+       ndr = talloc_zero(NULL, struct ndr_print);
+       if (!ndr) return;
+       ndr->print = ndr_print_debug_helper;
+       ndr->depth = 1;
+       ndr->flags = 0;
+       fn(ndr, name, ptr);
+       talloc_free(ndr);
 }
 
-
 /*
   a useful helper function for printing idl unions via DEBUG()
 */
-void ndr_print_union_debug(void (*fn)(struct ndr_print *, const char *, uint32_t, void *),
-                          const char *name,
-                          uint32_t level,
-                          void *ptr)
+_PUBLIC_ void ndr_print_union_debug(ndr_print_fn_t fn, const char *name, uint32_t level, void *ptr)
 {
-       struct ndr_print ndr;
+       struct ndr_print *ndr;
 
-       ndr.mem_ctx = talloc_init("ndr_print_union");
-       if (!ndr.mem_ctx) return;
-       ndr.print = ndr_print_debug_helper;
-       ndr.depth = 1;
-       fn(&ndr, name, level, ptr);
-       talloc_destroy(ndr.mem_ctx);
+       ndr = talloc_zero(NULL, struct ndr_print);
+       if (!ndr) return;
+       ndr->print = ndr_print_debug_helper;
+       ndr->depth = 1;
+       ndr->flags = 0;
+       ndr_print_set_switch_value(ndr, ptr, level);
+       fn(ndr, name, ptr);
+       talloc_free(ndr);
 }
 
 /*
   a useful helper function for printing idl function calls via DEBUG()
 */
-void ndr_print_function_debug(void (*fn)(struct ndr_print *, const char *, int , void *),
-                             const char *name,
-                             int flags,
-                             void *ptr)
+_PUBLIC_ void ndr_print_function_debug(ndr_print_function_t fn, const char *name, int flags, void *ptr)
+{
+       struct ndr_print *ndr;
+
+       ndr = talloc_zero(NULL, struct ndr_print);
+       if (!ndr) return;
+       ndr->print = ndr_print_debug_helper;
+       ndr->depth = 1;
+       ndr->flags = 0;
+       fn(ndr, name, flags, ptr);
+       talloc_free(ndr);
+}
+
+
+/*
+  a useful helper function for printing idl function calls to a string
+*/
+_PUBLIC_ char *ndr_print_function_string(TALLOC_CTX *mem_ctx,
+                               ndr_print_function_t fn, const char *name, 
+                               int flags, void *ptr)
 {
-       struct ndr_print ndr;
+       struct ndr_print *ndr;
+       char *ret = NULL;
 
-       ndr.mem_ctx = talloc_init("ndr_print_function");
-       if (!ndr.mem_ctx) return;
-       ndr.print = ndr_print_debug_helper;
-       ndr.depth = 1;
-       ndr.flags = 0;
-       fn(&ndr, name, flags, ptr);
-       talloc_destroy(ndr.mem_ctx);
+       ndr = talloc_zero(mem_ctx, struct ndr_print);
+       if (!ndr) return NULL;
+       ndr->private = talloc_strdup(ndr, "");
+       if (!ndr->private) {
+               goto failed;
+       }
+       ndr->print = ndr_print_string_helper;
+       ndr->depth = 1;
+       ndr->flags = 0;
+       fn(ndr, name, flags, ptr);
+       ret = talloc_steal(mem_ctx, ndr->private);
+failed:
+       talloc_free(ndr);
+       return ret;
 }
 
+_PUBLIC_ void ndr_set_flags(uint32_t *pflags, uint32_t new_flags)
+{
+       /* the big/little endian flags are inter-dependent */
+       if (new_flags & LIBNDR_FLAG_LITTLE_ENDIAN) {
+               (*pflags) &= ~LIBNDR_FLAG_BIGENDIAN;
+       }
+       if (new_flags & LIBNDR_FLAG_BIGENDIAN) {
+               (*pflags) &= ~LIBNDR_FLAG_LITTLE_ENDIAN;
+       }
+       if (new_flags & LIBNDR_FLAG_REMAINING) {
+               (*pflags) &= ~LIBNDR_ALIGN_FLAGS;
+       }
+       if (new_flags & LIBNDR_ALIGN_FLAGS) {
+               (*pflags) &= ~LIBNDR_FLAG_REMAINING;
+       }
+       (*pflags) |= new_flags;
+}
 
 static NTSTATUS ndr_map_error(enum ndr_err_code err)
 {
        switch (err) {
        case NDR_ERR_BUFSIZE:
                return NT_STATUS_BUFFER_TOO_SMALL;
+       case NDR_ERR_TOKEN:
+               return NT_STATUS_INTERNAL_ERROR;
        case NDR_ERR_ALLOC:
                return NT_STATUS_NO_MEMORY;
+       case NDR_ERR_ARRAY_SIZE:
+               return NT_STATUS_ARRAY_BOUNDS_EXCEEDED;
+       default:
+               break;
        }
 
-       /* we should all error codes to different status codes */
+       /* we should map all error codes to different status codes */
        return NT_STATUS_INVALID_PARAMETER;
 }
 
 /*
   return and possibly log an NDR error
 */
-NTSTATUS ndr_pull_error(struct ndr_pull *ndr, enum ndr_err_code err, const char *format, ...)
+_PUBLIC_ NTSTATUS ndr_pull_error(struct ndr_pull *ndr, 
+                       enum ndr_err_code err, const char *format, ...) _PRINTF_ATTRIBUTE(3,4)
 {
        char *s=NULL;
        va_list ap;
@@ -392,7 +350,7 @@ NTSTATUS ndr_pull_error(struct ndr_pull *ndr, enum ndr_err_code err, const char
 /*
   return and possibly log an NDR error
 */
-NTSTATUS ndr_push_error(struct ndr_push *ndr, enum ndr_err_code err, const char *format, ...)
+_PUBLIC_ NTSTATUS ndr_push_error(struct ndr_push *ndr, enum ndr_err_code err, const char *format, ...)  _PRINTF_ATTRIBUTE(3,4)
 {
        char *s=NULL;
        va_list ap;
@@ -408,347 +366,369 @@ NTSTATUS ndr_push_error(struct ndr_push *ndr, enum ndr_err_code err, const char
        return ndr_map_error(err);
 }
 
-
 /*
   handle subcontext buffers, which in midl land are user-marshalled, but
   we use magic in pidl to make them easier to cope with
 */
-static NTSTATUS ndr_pull_subcontext_header(struct ndr_pull *ndr, 
-                                          size_t sub_size,
-                                          struct ndr_pull *ndr2)
+_PUBLIC_ NTSTATUS ndr_pull_subcontext_start(struct ndr_pull *ndr, 
+                                  struct ndr_pull **_subndr,
+                                  size_t header_size,
+                                  ssize_t size_is)
 {
-       switch (sub_size) {
+       struct ndr_pull *subndr;
+       uint32_t r_content_size;
+
+       switch (header_size) {
        case 0: {
-               uint32_t size = ndr->data_size - ndr->offset;
-               if (size == 0) return NT_STATUS_OK;
-               NDR_CHECK(ndr_pull_subcontext(ndr, ndr2, size));
+               uint32_t content_size = ndr->data_size - ndr->offset;
+               if (size_is >= 0) {
+                       content_size = size_is;
+               }
+               r_content_size = content_size;
                break;
        }
 
        case 2: {
-               uint16 size;
-               NDR_CHECK(ndr_pull_uint16(ndr, &size));
-               if (size == 0) return NT_STATUS_OK;
-               NDR_CHECK(ndr_pull_subcontext(ndr, ndr2, size));
+               uint16_t content_size;
+               NDR_CHECK(ndr_pull_uint16(ndr, NDR_SCALARS, &content_size));
+               if (size_is >= 0 && size_is != content_size) {
+                       return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext (PULL) size_is(%d) mismatch content_size %d", 
+                                               (int)size_is, (int)content_size);
+               }
+               r_content_size = content_size;
                break;
        }
 
        case 4: {
-               uint32_t size;
-               NDR_CHECK(ndr_pull_uint32(ndr, &size));
-               if (size == 0) return NT_STATUS_OK;
-               NDR_CHECK(ndr_pull_subcontext(ndr, ndr2, size));
+               uint32_t content_size;
+               NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &content_size));
+               if (size_is >= 0 && size_is != content_size) {
+                       return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext (PULL) size_is(%d) mismatch content_size %d", 
+                                               (int)size_is, (int)content_size);
+               }
+               r_content_size = content_size;
                break;
        }
        default:
-               return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext size %d", 
-                                     sub_size);
+               return ndr_pull_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext (PULL) header_size %d", 
+                                     (int)header_size);
        }
-       return NT_STATUS_OK;
-}
 
-/*
-  handle subcontext buffers, which in midl land are user-marshalled, but
-  we use magic in pidl to make them easier to cope with
-*/
-NTSTATUS ndr_pull_subcontext_fn(struct ndr_pull *ndr, 
-                               size_t sub_size,
-                               void *base,
-                               NTSTATUS (*fn)(struct ndr_pull *, void *))
-{
-       struct ndr_pull ndr2;
+       NDR_PULL_NEED_BYTES(ndr, r_content_size);
 
-       NDR_CHECK(ndr_pull_subcontext_header(ndr, sub_size, &ndr2));
-       NDR_CHECK(fn(&ndr2, base));
-       if (sub_size) {
-               NDR_CHECK(ndr_pull_advance(ndr, ndr2.data_size));
-       } else {
-               NDR_CHECK(ndr_pull_advance(ndr, ndr2.offset));
-       }
+       subndr = talloc_zero(ndr, struct ndr_pull);
+       NT_STATUS_HAVE_NO_MEMORY(subndr);
+       subndr->flags           = ndr->flags;
+       subndr->current_mem_ctx = ndr->current_mem_ctx;
+
+       subndr->data = ndr->data + ndr->offset;
+       subndr->offset = 0;
+       subndr->data_size = r_content_size;
+
+       *_subndr = subndr;
        return NT_STATUS_OK;
 }
 
-
-NTSTATUS ndr_pull_subcontext_flags_fn(struct ndr_pull *ndr, 
-                                     size_t sub_size,
-                                     void *base,
-                                     NTSTATUS (*fn)(struct ndr_pull *, int , void *))
+_PUBLIC_ NTSTATUS ndr_pull_subcontext_end(struct ndr_pull *ndr, 
+                                struct ndr_pull *subndr,
+                                size_t header_size,
+                                ssize_t size_is)
 {
-       struct ndr_pull ndr2;
-
-       NDR_CHECK(ndr_pull_subcontext_header(ndr, sub_size, &ndr2));
-       NDR_CHECK(fn(&ndr2, NDR_SCALARS|NDR_BUFFERS, base));
-       if (sub_size) {
-               NDR_CHECK(ndr_pull_advance(ndr, ndr2.data_size));
+       uint32_t advance;
+       if (size_is >= 0) {
+               advance = size_is;
+       } else if (header_size > 0) {
+               advance = subndr->data_size;
        } else {
-               NDR_CHECK(ndr_pull_advance(ndr, ndr2.offset));
+               advance = subndr->offset;
        }
+       NDR_CHECK(ndr_pull_advance(ndr, advance));
        return NT_STATUS_OK;
 }
 
-NTSTATUS ndr_pull_subcontext_union_fn(struct ndr_pull *ndr, 
-                                     size_t sub_size,
-                                     uint32_t level,
-                                     void *base,
-                                     NTSTATUS (*fn)(struct ndr_pull *, int , uint32_t , void *))
+_PUBLIC_ NTSTATUS ndr_push_subcontext_start(struct ndr_push *ndr,
+                                  struct ndr_push **_subndr,
+                                  size_t header_size,
+                                  ssize_t size_is)
 {
-       struct ndr_pull ndr2;
+       struct ndr_push *subndr;
 
-       NDR_CHECK(ndr_pull_subcontext_header(ndr, sub_size, &ndr2));
-       NDR_CHECK(fn(&ndr2, NDR_SCALARS|NDR_BUFFERS, level, base));
-       if (sub_size) {
-               NDR_CHECK(ndr_pull_advance(ndr, ndr2.data_size));
-       } else {
-               NDR_CHECK(ndr_pull_advance(ndr, ndr2.offset));
-       }
+       subndr = ndr_push_init_ctx(ndr);
+       NT_STATUS_HAVE_NO_MEMORY(subndr);
+       subndr->flags   = ndr->flags;
+
+       *_subndr = subndr;
        return NT_STATUS_OK;
 }
 
-
 /*
   push a subcontext header 
 */
-static NTSTATUS ndr_push_subcontext_header(struct ndr_push *ndr, 
-                                          size_t sub_size,
-                                          struct ndr_push *ndr2)
-{
-       switch (sub_size) {
+_PUBLIC_ NTSTATUS ndr_push_subcontext_end(struct ndr_push *ndr,
+                                struct ndr_push *subndr,
+                                size_t header_size,
+                                ssize_t size_is)
+{
+       if (size_is >= 0) {
+               ssize_t padding_len = size_is - subndr->offset;
+               if (padding_len > 0) {
+                       NDR_CHECK(ndr_push_zero(subndr, padding_len));
+               } else if (padding_len < 0) {
+                       return ndr_push_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext (PUSH) content_size %d is larger than size_is(%d)",
+                                             (int)subndr->offset, (int)size_is);
+               }
+       }
+
+       switch (header_size) {
        case 0: 
                break;
 
        case 2: 
-               NDR_CHECK(ndr_push_uint16(ndr, ndr2->offset));
+               NDR_CHECK(ndr_push_uint16(ndr, NDR_SCALARS, subndr->offset));
                break;
 
        case 4: 
-               NDR_CHECK(ndr_push_uint32(ndr, ndr2->offset));
+               NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, subndr->offset));
                break;
 
        default:
-               return ndr_push_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext size %d", 
-                                     sub_size);
+               return ndr_push_error(ndr, NDR_ERR_SUBCONTEXT, "Bad subcontext header size %d", 
+                                     (int)header_size);
        }
+
+       NDR_CHECK(ndr_push_bytes(ndr, subndr->data, subndr->offset));
        return NT_STATUS_OK;
 }
 
 /*
-  handle subcontext buffers, which in midl land are user-marshalled, but
-  we use magic in pidl to make them easier to cope with
+  store a token in the ndr context, for later retrieval
 */
-NTSTATUS ndr_push_subcontext_fn(struct ndr_push *ndr
-                               size_t sub_size,
-                               void *base,
-                               NTSTATUS (*fn)(struct ndr_push *, void *))
+_PUBLIC_ NTSTATUS ndr_token_store(TALLOC_CTX *mem_ctx
+                        struct ndr_token_list **list, 
+                        const void *key, 
+                        uint32_t value)
 {
-       struct ndr_push *ndr2;
-
-       ndr2 = ndr_push_init_ctx(ndr->mem_ctx);
-       if (!ndr2) return NT_STATUS_NO_MEMORY;
-
-       ndr2->flags = ndr->flags;
-       NDR_CHECK(fn(ndr2, base));
-       NDR_CHECK(ndr_push_subcontext_header(ndr, sub_size, ndr2));
-       NDR_CHECK(ndr_push_bytes(ndr, ndr2->data, ndr2->offset));
+       struct ndr_token_list *tok;
+       tok = talloc(mem_ctx, struct ndr_token_list);
+       if (tok == NULL) {
+               return NT_STATUS_NO_MEMORY;
+       }
+       tok->key = key;
+       tok->value = value;
+       DLIST_ADD((*list), tok);
        return NT_STATUS_OK;
 }
 
 /*
-  handle subcontext buffers for function that take a flags arg
+  retrieve a token from a ndr context, using cmp_fn to match the tokens
 */
-NTSTATUS ndr_push_subcontext_flags_fn(struct ndr_push *ndr, 
-                                     size_t sub_size,
-                                     void *base,
-                                     NTSTATUS (*fn)(struct ndr_push *, int, void *))
+_PUBLIC_ NTSTATUS ndr_token_retrieve_cmp_fn(struct ndr_token_list **list, const void *key, uint32_t *v,
+                                  comparison_fn_t _cmp_fn, BOOL _remove_tok)
 {
-       struct ndr_push *ndr2;
+       struct ndr_token_list *tok;
+       for (tok=*list;tok;tok=tok->next) {
+               if (_cmp_fn && _cmp_fn(tok->key,key)==0) goto found;
+               else if (!_cmp_fn && tok->key == key) goto found;
+       }
+       return ndr_map_error(NDR_ERR_TOKEN);
+found:
+       *v = tok->value;
+       if (_remove_tok) {
+               DLIST_REMOVE((*list), tok);
+               talloc_free(tok);
+       }
+       return NT_STATUS_OK;            
+}
 
-       ndr2 = ndr_push_init_ctx(ndr->mem_ctx);
-       if (!ndr2) return NT_STATUS_NO_MEMORY;
+/*
+  retrieve a token from a ndr context
+*/
+_PUBLIC_ NTSTATUS ndr_token_retrieve(struct ndr_token_list **list, const void *key, uint32_t *v)
+{
+       return ndr_token_retrieve_cmp_fn(list, key, v, NULL, True);
+}
 
-       ndr2->flags = ndr->flags;
-       NDR_CHECK(fn(ndr2, NDR_SCALARS|NDR_BUFFERS, base));
-       NDR_CHECK(ndr_push_subcontext_header(ndr, sub_size, ndr2));
-       NDR_CHECK(ndr_push_bytes(ndr, ndr2->data, ndr2->offset));
-       return NT_STATUS_OK;
+/*
+  peek at but don't removed a token from a ndr context
+*/
+_PUBLIC_ uint32_t ndr_token_peek(struct ndr_token_list **list, const void *key)
+{
+       NTSTATUS status;
+       uint32_t v;
+       status = ndr_token_retrieve_cmp_fn(list, key, &v, NULL, False);
+       if (NT_STATUS_IS_OK(status)) return v;
+       return 0;
 }
 
 /*
-  handle subcontext buffers for function that take a union
+  pull an array size field and add it to the array_size_list token list
 */
-NTSTATUS ndr_push_subcontext_union_fn(struct ndr_push *ndr, 
-                                     size_t sub_size,
-                                     uint32_t level,
-                                     void *base,
-                                     NTSTATUS (*fn)(struct ndr_push *, int, uint32_t, void *))
+_PUBLIC_ NTSTATUS ndr_pull_array_size(struct ndr_pull *ndr, const void *p)
 {
-       struct ndr_push *ndr2;
+       uint32_t size;
+       NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &size));
+       return ndr_token_store(ndr, &ndr->array_size_list, p, size);
+}
 
-       ndr2 = ndr_push_init_ctx(ndr->mem_ctx);
-       if (!ndr2) return NT_STATUS_NO_MEMORY;
+/*
+  get the stored array size field
+*/
+_PUBLIC_ uint32_t ndr_get_array_size(struct ndr_pull *ndr, const void *p)
+{
+       return ndr_token_peek(&ndr->array_size_list, p);
+}
 
-       ndr2->flags = ndr->flags;
-       NDR_CHECK(fn(ndr2, NDR_SCALARS|NDR_BUFFERS, level, base));
-       NDR_CHECK(ndr_push_subcontext_header(ndr, sub_size, ndr2));
-       NDR_CHECK(ndr_push_bytes(ndr, ndr2->data, ndr2->offset));
+/*
+  check the stored array size field
+*/
+_PUBLIC_ NTSTATUS ndr_check_array_size(struct ndr_pull *ndr, void *p, uint32_t size)
+{
+       uint32_t stored;
+       stored = ndr_token_peek(&ndr->array_size_list, p);
+       if (stored != size) {
+               return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, 
+                                     "Bad array size - got %u expected %u\n",
+                                     stored, size);
+       }
        return NT_STATUS_OK;
 }
 
-
 /*
-  mark the start of a structure
+  pull an array length field and add it to the array_length_list token list
 */
-NTSTATUS ndr_pull_struct_start(struct ndr_pull *ndr)
+_PUBLIC_ NTSTATUS ndr_pull_array_length(struct ndr_pull *ndr, const void *p)
 {
-       struct ndr_ofs_list *ofs;
-       NDR_ALLOC(ndr, ofs);
-       ofs->offset = ndr->offset;
-       ofs->next = ndr->ofs_list;
-       ndr->ofs_list = ofs;
-       return NT_STATUS_OK;
+       uint32_t length, offset;
+       NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &offset));
+       if (offset != 0) {
+               return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, 
+                                     "non-zero array offset %u\n", offset);
+       }
+       NDR_CHECK(ndr_pull_uint32(ndr, NDR_SCALARS, &length));
+       return ndr_token_store(ndr, &ndr->array_length_list, p, length);
 }
 
 /*
-  mark the end of a structure
+  get the stored array length field
 */
-void ndr_pull_struct_end(struct ndr_pull *ndr)
+_PUBLIC_ uint32_t ndr_get_array_length(struct ndr_pull *ndr, const void *p)
 {
-       ndr->ofs_list = ndr->ofs_list->next;
+       return ndr_token_peek(&ndr->array_length_list, p);
 }
 
 /*
-  mark the start of a structure
+  check the stored array length field
 */
-NTSTATUS ndr_push_struct_start(struct ndr_push *ndr)
+_PUBLIC_ NTSTATUS ndr_check_array_length(struct ndr_pull *ndr, void *p, uint32_t length)
 {
-       struct ndr_ofs_list *ofs;
-       NDR_PUSH_ALLOC(ndr, ofs);
-       ofs->offset = ndr->offset;
-       ofs->next = ndr->ofs_list;
-       ndr->ofs_list = ofs;
+       uint32_t stored;
+       stored = ndr_token_peek(&ndr->array_length_list, p);
+       if (stored != length) {
+               return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, 
+                                     "Bad array length - got %u expected %u\n",
+                                     stored, length);
+       }
        return NT_STATUS_OK;
 }
 
 /*
-  mark the end of a structure
-*/
-void ndr_push_struct_end(struct ndr_push *ndr)
+  store a switch value
+ */
+_PUBLIC_ NTSTATUS ndr_push_set_switch_value(struct ndr_push *ndr, const void *p, uint32_t val)
 {
-       ndr->ofs_list = ndr->ofs_list->next;
+       return ndr_token_store(ndr, &ndr->switch_list, p, val);
 }
 
+_PUBLIC_ NTSTATUS ndr_pull_set_switch_value(struct ndr_pull *ndr, const void *p, uint32_t val)
+{
+       return ndr_token_store(ndr, &ndr->switch_list, p, val);
+}
+
+_PUBLIC_ NTSTATUS ndr_print_set_switch_value(struct ndr_print *ndr, const void *p, uint32_t val)
+{
+       return ndr_token_store(ndr, &ndr->switch_list, p, val);
+}
 
 /*
-  pull a relative structure
-*/
-NTSTATUS ndr_pull_relative(struct ndr_pull *ndr, const void **buf, size_t size, 
-                          NTSTATUS (*fn)(struct ndr_pull *, int ndr_flags, void *))
+  retrieve a switch value
+ */
+_PUBLIC_ uint32_t ndr_push_get_switch_value(struct ndr_push *ndr, const void *p)
 {
-       struct ndr_pull ndr2;
-       uint32_t ofs;
-       struct ndr_pull_save save;
-       void *p;
+       return ndr_token_peek(&ndr->switch_list, p);
+}
 
-       NDR_CHECK(ndr_pull_uint32(ndr, &ofs));
-       if (ofs == 0) {
-               (*buf) = NULL;
-               return NT_STATUS_OK;
-       }
-       ndr_pull_save(ndr, &save);
-       NDR_CHECK(ndr_pull_set_offset(ndr, ofs + ndr->ofs_list->offset));
-       NDR_CHECK(ndr_pull_subcontext(ndr, &ndr2, ndr->data_size - ndr->offset));
-       /* strings must be allocated by the backend functions */
-       if (ndr->flags & LIBNDR_STRING_FLAGS) {
-               NDR_CHECK(fn(&ndr2, NDR_SCALARS|NDR_BUFFERS, &p));
-       } else {
-               NDR_ALLOC_SIZE(ndr, p, size);
-               NDR_CHECK(fn(&ndr2, NDR_SCALARS|NDR_BUFFERS, p));
-       }
-       (*buf) = p;
-       ndr_pull_restore(ndr, &save);
-       return NT_STATUS_OK;
+_PUBLIC_ uint32_t ndr_pull_get_switch_value(struct ndr_pull *ndr, const void *p)
+{
+       return ndr_token_peek(&ndr->switch_list, p);
+}
+
+_PUBLIC_ uint32_t ndr_print_get_switch_value(struct ndr_print *ndr, const void *p)
+{
+       return ndr_token_peek(&ndr->switch_list, p);
 }
 
 /*
-  push a relative structure
+  pull a struct from a blob using NDR
 */
-NTSTATUS ndr_push_relative(struct ndr_push *ndr, int ndr_flags, const void *p, 
-                          NTSTATUS (*fn)(struct ndr_push *, int , const void *))
+_PUBLIC_ NTSTATUS ndr_pull_struct_blob(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
+                             ndr_pull_flags_fn_t fn)
 {
-       struct ndr_ofs_list *ofs;
-       if (ndr_flags & NDR_SCALARS) {
-               if (!p) {
-                       NDR_CHECK(ndr_push_uint32(ndr, 0));
-                       return NT_STATUS_OK;
-               }
-               NDR_PUSH_ALLOC(ndr, ofs);
-               NDR_CHECK(ndr_push_align(ndr, 4));
-               ofs->offset = ndr->offset;
-               NDR_CHECK(ndr_push_uint32(ndr, 0xFFFFFFFF));
-               ofs->next = NULL;
-               if (ndr->relative_list_end) {
-                       ndr->relative_list_end->next = ofs;
-               } else {
-                       ndr->relative_list = ofs;
-               }
-               ndr->relative_list_end = ofs;
-       }
-       if (ndr_flags & NDR_BUFFERS) {
-               struct ndr_push_save save;
-               if (!p) {
-                       return NT_STATUS_OK;
-               }
-               ofs = ndr->relative_list;
-               if (!ofs) {
-                       return ndr_push_error(ndr, NDR_ERR_RELATIVE, "Empty relative stack");
-               }
-               ndr->relative_list = ndr->relative_list->next;
-               if (ndr->relative_list == NULL) {
-                       ndr->relative_list_end = NULL;
-               }
-               NDR_CHECK(ndr_push_align(ndr, 4));
-               ndr_push_save(ndr, &save);
-               ndr->offset = ofs->offset;
-               NDR_CHECK(ndr_push_uint32(ndr, save.offset - ndr->ofs_list->offset));
-               ndr_push_restore(ndr, &save);
-               NDR_CHECK(fn(ndr, NDR_SCALARS|NDR_BUFFERS, p));
+       struct ndr_pull *ndr;
+       ndr = ndr_pull_init_blob(blob, mem_ctx);
+       if (!ndr) {
+               return NT_STATUS_NO_MEMORY;
        }
-       return NT_STATUS_OK;
+       return fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
 }
 
-
 /*
-  pull a union from a blob using NDR
+  pull a struct from a blob using NDR - failing if all bytes are not consumed
 */
-NTSTATUS ndr_pull_union_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, uint32_t level, void *p,
-                            NTSTATUS (*fn)(struct ndr_pull *, int ndr_flags, uint32_t, void *))
+_PUBLIC_ NTSTATUS ndr_pull_struct_blob_all(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
+                                 ndr_pull_flags_fn_t fn)
 {
        struct ndr_pull *ndr;
+       NTSTATUS status;
+
        ndr = ndr_pull_init_blob(blob, mem_ctx);
        if (!ndr) {
                return NT_STATUS_NO_MEMORY;
        }
-       return fn(ndr, NDR_SCALARS|NDR_BUFFERS, level, p);
+       status = fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
+       if (!NT_STATUS_IS_OK(status)) return status;
+       if (ndr->offset != ndr->data_size) {
+               return NT_STATUS_BUFFER_TOO_SMALL;
+       }
+       return status;
 }
 
 /*
-  pull a struct from a blob using NDR
+  pull a union from a blob using NDR, given the union discriminator
 */
-NTSTATUS ndr_pull_struct_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
-                             NTSTATUS (*fn)(struct ndr_pull *, int , void *))
+_PUBLIC_ NTSTATUS ndr_pull_union_blob(const DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
+                            uint32_t level, ndr_pull_flags_fn_t fn)
 {
        struct ndr_pull *ndr;
+       NTSTATUS status;
+
        ndr = ndr_pull_init_blob(blob, mem_ctx);
        if (!ndr) {
                return NT_STATUS_NO_MEMORY;
        }
-       return fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
+       ndr_pull_set_switch_value(ndr, p, level);
+       status = fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
+       if (!NT_STATUS_IS_OK(status)) return status;
+       if (ndr->offset != ndr->data_size) {
+               return NT_STATUS_BUFFER_TOO_SMALL;
+       }
+       return status;
 }
 
 /*
   push a struct to a blob using NDR
 */
-NTSTATUS ndr_push_struct_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
-                             NTSTATUS (*fn)(struct ndr_push *, int , void *))
+_PUBLIC_ NTSTATUS ndr_push_struct_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, const void *p,
+                             ndr_push_flags_fn_t fn)
 {
        NTSTATUS status;
        struct ndr_push *ndr;
@@ -765,3 +745,215 @@ NTSTATUS ndr_push_struct_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
 
        return NT_STATUS_OK;
 }
+
+/*
+  push a union to a blob using NDR
+*/
+_PUBLIC_ NTSTATUS ndr_push_union_blob(DATA_BLOB *blob, TALLOC_CTX *mem_ctx, void *p,
+                            uint32_t level, ndr_push_flags_fn_t fn)
+{
+       NTSTATUS status;
+       struct ndr_push *ndr;
+       ndr = ndr_push_init_ctx(mem_ctx);
+       if (!ndr) {
+               return NT_STATUS_NO_MEMORY;
+       }
+       ndr_push_set_switch_value(ndr, p, level);
+       status = fn(ndr, NDR_SCALARS|NDR_BUFFERS, p);
+       if (!NT_STATUS_IS_OK(status)) {
+               return status;
+       }
+
+       *blob = ndr_push_blob(ndr);
+
+       return NT_STATUS_OK;
+}
+
+/*
+  generic ndr_size_*() handler for structures
+*/
+_PUBLIC_ size_t ndr_size_struct(const void *p, int flags, ndr_push_flags_fn_t push)
+{
+       struct ndr_push *ndr;
+       NTSTATUS status;
+       size_t ret;
+
+       /* avoid recursion */
+       if (flags & LIBNDR_FLAG_NO_NDR_SIZE) return 0;
+
+       ndr = ndr_push_init_ctx(NULL);
+       if (!ndr) return 0;
+       ndr->flags |= flags | LIBNDR_FLAG_NO_NDR_SIZE;
+       status = push(ndr, NDR_SCALARS|NDR_BUFFERS, discard_const(p));
+       if (!NT_STATUS_IS_OK(status)) {
+               return 0;
+       }
+       ret = ndr->offset;
+       talloc_free(ndr);
+       return ret;
+}
+
+/*
+  generic ndr_size_*() handler for unions
+*/
+_PUBLIC_ size_t ndr_size_union(const void *p, int flags, uint32_t level, ndr_push_flags_fn_t push)
+{
+       struct ndr_push *ndr;
+       NTSTATUS status;
+       size_t ret;
+
+       /* avoid recursion */
+       if (flags & LIBNDR_FLAG_NO_NDR_SIZE) return 0;
+
+       ndr = ndr_push_init_ctx(NULL);
+       if (!ndr) return 0;
+       ndr->flags |= flags | LIBNDR_FLAG_NO_NDR_SIZE;
+       ndr_push_set_switch_value(ndr, p, level);
+       status = push(ndr, NDR_SCALARS|NDR_BUFFERS, p);
+       if (!NT_STATUS_IS_OK(status)) {
+               return 0;
+       }
+       ret = ndr->offset;
+       talloc_free(ndr);
+       return ret;
+}
+
+/*
+  get the current base for relative pointers for the push
+*/
+_PUBLIC_ uint32_t ndr_push_get_relative_base_offset(struct ndr_push *ndr)
+{
+       return ndr->relative_base_offset;
+}
+
+/*
+  restore the old base for relative pointers for the push
+*/
+_PUBLIC_ void ndr_push_restore_relative_base_offset(struct ndr_push *ndr, uint32_t offset)
+{
+       ndr->relative_base_offset = offset;
+}
+
+/*
+  setup the current base for relative pointers for the push
+  called in the NDR_SCALAR stage
+*/
+_PUBLIC_ NTSTATUS ndr_push_setup_relative_base_offset1(struct ndr_push *ndr, const void *p, uint32_t offset)
+{
+       ndr->relative_base_offset = offset;
+       return ndr_token_store(ndr, &ndr->relative_base_list, p, offset);
+}
+
+/*
+  setup the current base for relative pointers for the push
+  called in the NDR_BUFFERS stage
+*/
+_PUBLIC_ NTSTATUS ndr_push_setup_relative_base_offset2(struct ndr_push *ndr, const void *p)
+{
+       return ndr_token_retrieve(&ndr->relative_base_list, p, &ndr->relative_base_offset);
+}
+
+/*
+  push a relative object - stage1
+  this is called during SCALARS processing
+*/
+_PUBLIC_ NTSTATUS ndr_push_relative_ptr1(struct ndr_push *ndr, const void *p)
+{
+       if (p == NULL) {
+               NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
+               return NT_STATUS_OK;
+       }
+       NDR_CHECK(ndr_push_align(ndr, 4));
+       NDR_CHECK(ndr_token_store(ndr, &ndr->relative_list, p, ndr->offset));
+       return ndr_push_uint32(ndr, NDR_SCALARS, 0xFFFFFFFF);
+}
+
+/*
+  push a relative object - stage2
+  this is called during buffers processing
+*/
+_PUBLIC_ NTSTATUS ndr_push_relative_ptr2(struct ndr_push *ndr, const void *p)
+{
+       struct ndr_push_save save;
+       uint32_t ptr_offset = 0xFFFFFFFF;
+       if (p == NULL) {
+               return NT_STATUS_OK;
+       }
+       ndr_push_save(ndr, &save);
+       NDR_CHECK(ndr_token_retrieve(&ndr->relative_list, p, &ptr_offset));
+       if (ptr_offset > ndr->offset) {
+               return ndr_push_error(ndr, NDR_ERR_BUFSIZE, 
+                                     "ndr_push_relative_ptr2 ptr_offset(%u) > ndr->offset(%u)",
+                                     ptr_offset, ndr->offset);
+       }
+       ndr->offset = ptr_offset;
+       if (save.offset < ndr->relative_base_offset) {
+               return ndr_push_error(ndr, NDR_ERR_BUFSIZE, 
+                                     "ndr_push_relative_ptr2 save.offset(%u) < ndr->relative_base_offset(%u)",
+                                     save.offset, ndr->relative_base_offset);
+       }       
+       NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, save.offset - ndr->relative_base_offset));
+       ndr_push_restore(ndr, &save);
+       return NT_STATUS_OK;
+}
+
+/*
+  get the current base for relative pointers for the pull
+*/
+_PUBLIC_ uint32_t ndr_pull_get_relative_base_offset(struct ndr_pull *ndr)
+{
+       return ndr->relative_base_offset;
+}
+
+/*
+  restore the old base for relative pointers for the pull
+*/
+_PUBLIC_ void ndr_pull_restore_relative_base_offset(struct ndr_pull *ndr, uint32_t offset)
+{
+       ndr->relative_base_offset = offset;
+}
+
+/*
+  setup the current base for relative pointers for the pull
+  called in the NDR_SCALAR stage
+*/
+_PUBLIC_ NTSTATUS ndr_pull_setup_relative_base_offset1(struct ndr_pull *ndr, const void *p, uint32_t offset)
+{
+       ndr->relative_base_offset = offset;
+       return ndr_token_store(ndr, &ndr->relative_base_list, p, offset);
+}
+
+/*
+  setup the current base for relative pointers for the pull
+  called in the NDR_BUFFERS stage
+*/
+_PUBLIC_ NTSTATUS ndr_pull_setup_relative_base_offset2(struct ndr_pull *ndr, const void *p)
+{
+       return ndr_token_retrieve(&ndr->relative_base_list, p, &ndr->relative_base_offset);
+}
+
+/*
+  pull a relative object - stage1
+  called during SCALARS processing
+*/
+_PUBLIC_ NTSTATUS ndr_pull_relative_ptr1(struct ndr_pull *ndr, const void *p, uint32_t rel_offset)
+{
+       rel_offset += ndr->relative_base_offset;
+       if (rel_offset > ndr->data_size) {
+               return ndr_pull_error(ndr, NDR_ERR_BUFSIZE, 
+                                     "ndr_pull_relative_ptr1 rel_offset(%u) > ndr->data_size(%u)",
+                                     rel_offset, ndr->data_size);
+       }
+       return ndr_token_store(ndr, &ndr->relative_list, p, rel_offset);
+}
+
+/*
+  pull a relative object - stage2
+  called during BUFFERS processing
+*/
+_PUBLIC_ NTSTATUS ndr_pull_relative_ptr2(struct ndr_pull *ndr, const void *p)
+{
+       uint32_t rel_offset;
+       NDR_CHECK(ndr_token_retrieve(&ndr->relative_list, p, &rel_offset));
+       return ndr_pull_set_offset(ndr, rel_offset);
+}