s4-netlogon: implement dcesrv_netr_DsRAddressToSitenamesExW
[Samba/aatanasov.git] / source3 / rpc_parse / parse_prs.c
blobedccded6c6c5f6281b7257af1d99f3caac1bcfd6
1 /*
2 Unix SMB/CIFS implementation.
3 Samba memory buffer functions
4 Copyright (C) Andrew Tridgell 1992-1997
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1997
6 Copyright (C) Jeremy Allison 1999
7 Copyright (C) Andrew Bartlett 2003.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "../librpc/gen_ndr/ndr_schannel.h"
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_RPC_PARSE
29 /**
30 * Dump a prs to a file: from the current location through to the end.
31 **/
32 void prs_dump(const char *name, int v, prs_struct *ps)
34 prs_dump_region(name, v, ps, ps->data_offset, ps->buffer_size);
37 /**
38 * Dump from the start of the prs to the current location.
39 **/
40 void prs_dump_before(const char *name, int v, prs_struct *ps)
42 prs_dump_region(name, v, ps, 0, ps->data_offset);
45 /**
46 * Dump everything from the start of the prs up to the current location.
47 **/
48 void prs_dump_region(const char *name, int v, prs_struct *ps,
49 int from_off, int to_off)
51 int fd, i;
52 char *fname = NULL;
53 ssize_t sz;
54 if (DEBUGLEVEL < 50) return;
55 for (i=1;i<100;i++) {
56 if (v != -1) {
57 if (asprintf(&fname,"/tmp/%s_%d.%d.prs", name, v, i) < 0) {
58 return;
60 } else {
61 if (asprintf(&fname,"/tmp/%s.%d.prs", name, i) < 0) {
62 return;
65 fd = open(fname, O_WRONLY|O_CREAT|O_EXCL, 0644);
66 if (fd != -1 || errno != EEXIST) break;
68 if (fd != -1) {
69 sz = write(fd, ps->data_p + from_off, to_off - from_off);
70 i = close(fd);
71 if ( (sz != to_off-from_off) || (i != 0) ) {
72 DEBUG(0,("Error writing/closing %s: %ld!=%ld %d\n", fname, (unsigned long)sz, (unsigned long)to_off-from_off, i ));
73 } else {
74 DEBUG(0,("created %s\n", fname));
77 SAFE_FREE(fname);
80 /*******************************************************************
81 Debug output for parsing info
83 XXXX side-effect of this function is to increase the debug depth XXXX.
85 ********************************************************************/
87 void prs_debug(prs_struct *ps, int depth, const char *desc, const char *fn_name)
89 DEBUG(5+depth, ("%s%06x %s %s\n", tab_depth(5+depth,depth), ps->data_offset, fn_name, desc));
92 /**
93 * Initialise an expandable parse structure.
95 * @param size Initial buffer size. If >0, a new buffer will be
96 * created with malloc().
98 * @return False if allocation fails, otherwise True.
99 **/
101 bool prs_init(prs_struct *ps, uint32 size, TALLOC_CTX *ctx, bool io)
103 ZERO_STRUCTP(ps);
104 ps->io = io;
105 ps->bigendian_data = RPC_LITTLE_ENDIAN;
106 ps->align = RPC_PARSE_ALIGN;
107 ps->is_dynamic = False;
108 ps->data_offset = 0;
109 ps->buffer_size = 0;
110 ps->data_p = NULL;
111 ps->mem_ctx = ctx;
113 if (size != 0) {
114 ps->buffer_size = size;
115 if((ps->data_p = (char *)SMB_MALLOC((size_t)size)) == NULL) {
116 DEBUG(0,("prs_init: malloc fail for %u bytes.\n", (unsigned int)size));
117 return False;
119 memset(ps->data_p, '\0', (size_t)size);
120 ps->is_dynamic = True; /* We own this memory. */
121 } else if (MARSHALLING(ps)) {
122 /* If size is zero and we're marshalling we should allocate memory on demand. */
123 ps->is_dynamic = True;
126 return True;
129 /*******************************************************************
130 Delete the memory in a parse structure - if we own it.
132 NOTE: Contrary to the somewhat confusing naming, this function is not
133 intended for freeing memory allocated by prs_alloc_mem(). That memory
134 is attached to the talloc context given by ps->mem_ctx.
135 ********************************************************************/
137 void prs_mem_free(prs_struct *ps)
139 if(ps->is_dynamic)
140 SAFE_FREE(ps->data_p);
141 ps->is_dynamic = False;
142 ps->buffer_size = 0;
143 ps->data_offset = 0;
146 /*******************************************************************
147 Clear the memory in a parse structure.
148 ********************************************************************/
150 void prs_mem_clear(prs_struct *ps)
152 if (ps->buffer_size)
153 memset(ps->data_p, '\0', (size_t)ps->buffer_size);
156 /*******************************************************************
157 Allocate memory when unmarshalling... Always zero clears.
158 ********************************************************************/
160 #if defined(PARANOID_MALLOC_CHECKER)
161 char *prs_alloc_mem_(prs_struct *ps, size_t size, unsigned int count)
162 #else
163 char *prs_alloc_mem(prs_struct *ps, size_t size, unsigned int count)
164 #endif
166 char *ret = NULL;
168 if (size && count) {
169 /* We can't call the type-safe version here. */
170 ret = (char *)_talloc_zero_array(ps->mem_ctx, size, count,
171 "parse_prs");
173 return ret;
176 /*******************************************************************
177 Return the current talloc context we're using.
178 ********************************************************************/
180 TALLOC_CTX *prs_get_mem_context(prs_struct *ps)
182 return ps->mem_ctx;
185 /*******************************************************************
186 Hand some already allocated memory to a prs_struct.
187 ********************************************************************/
189 void prs_give_memory(prs_struct *ps, char *buf, uint32 size, bool is_dynamic)
191 ps->is_dynamic = is_dynamic;
192 ps->data_p = buf;
193 ps->buffer_size = size;
196 /*******************************************************************
197 Take some memory back from a prs_struct.
198 ********************************************************************/
200 char *prs_take_memory(prs_struct *ps, uint32 *psize)
202 char *ret = ps->data_p;
203 if(psize)
204 *psize = ps->buffer_size;
205 ps->is_dynamic = False;
206 prs_mem_free(ps);
207 return ret;
210 /*******************************************************************
211 Set a prs_struct to exactly a given size. Will grow or tuncate if neccessary.
212 ********************************************************************/
214 bool prs_set_buffer_size(prs_struct *ps, uint32 newsize)
216 if (newsize > ps->buffer_size)
217 return prs_force_grow(ps, newsize - ps->buffer_size);
219 if (newsize < ps->buffer_size) {
220 ps->buffer_size = newsize;
222 /* newsize == 0 acts as a free and set pointer to NULL */
223 if (newsize == 0) {
224 SAFE_FREE(ps->data_p);
225 } else {
226 ps->data_p = (char *)SMB_REALLOC(ps->data_p, newsize);
228 if (ps->data_p == NULL) {
229 DEBUG(0,("prs_set_buffer_size: Realloc failure for size %u.\n",
230 (unsigned int)newsize));
231 DEBUG(0,("prs_set_buffer_size: Reason %s\n",strerror(errno)));
232 return False;
237 return True;
240 /*******************************************************************
241 Attempt, if needed, to grow a data buffer.
242 Also depends on the data stream mode (io).
243 ********************************************************************/
245 bool prs_grow(prs_struct *ps, uint32 extra_space)
247 uint32 new_size;
249 ps->grow_size = MAX(ps->grow_size, ps->data_offset + extra_space);
251 if(ps->data_offset + extra_space <= ps->buffer_size)
252 return True;
255 * We cannot grow the buffer if we're not reading
256 * into the prs_struct, or if we don't own the memory.
259 if(UNMARSHALLING(ps) || !ps->is_dynamic) {
260 DEBUG(0,("prs_grow: Buffer overflow - unable to expand buffer by %u bytes.\n",
261 (unsigned int)extra_space));
262 return False;
266 * Decide how much extra space we really need.
269 extra_space -= (ps->buffer_size - ps->data_offset);
270 if(ps->buffer_size == 0) {
273 * Start with 128 bytes (arbitrary value), enough for small rpc
274 * requests
276 new_size = MAX(128, extra_space);
278 if((ps->data_p = (char *)SMB_MALLOC(new_size)) == NULL) {
279 DEBUG(0,("prs_grow: Malloc failure for size %u.\n", (unsigned int)new_size));
280 return False;
282 memset(ps->data_p, '\0', (size_t)new_size );
283 } else {
285 * If the current buffer size is bigger than the space needed,
286 * just double it, else add extra_space. Always keep 64 bytes
287 * more, so that after we added a large blob we don't have to
288 * realloc immediately again.
290 new_size = MAX(ps->buffer_size*2,
291 ps->buffer_size + extra_space + 64);
293 if ((ps->data_p = (char *)SMB_REALLOC(ps->data_p, new_size)) == NULL) {
294 DEBUG(0,("prs_grow: Realloc failure for size %u.\n",
295 (unsigned int)new_size));
296 return False;
299 memset(&ps->data_p[ps->buffer_size], '\0', (size_t)(new_size - ps->buffer_size));
301 ps->buffer_size = new_size;
303 return True;
306 /*******************************************************************
307 Attempt to force a data buffer to grow by len bytes.
308 This is only used when appending more data onto a prs_struct
309 when reading an rpc reply, before unmarshalling it.
310 ********************************************************************/
312 bool prs_force_grow(prs_struct *ps, uint32 extra_space)
314 uint32 new_size = ps->buffer_size + extra_space;
316 if(!UNMARSHALLING(ps) || !ps->is_dynamic) {
317 DEBUG(0,("prs_force_grow: Buffer overflow - unable to expand buffer by %u bytes.\n",
318 (unsigned int)extra_space));
319 return False;
322 if((ps->data_p = (char *)SMB_REALLOC(ps->data_p, new_size)) == NULL) {
323 DEBUG(0,("prs_force_grow: Realloc failure for size %u.\n",
324 (unsigned int)new_size));
325 return False;
328 memset(&ps->data_p[ps->buffer_size], '\0', (size_t)(new_size - ps->buffer_size));
330 ps->buffer_size = new_size;
332 return True;
335 /*******************************************************************
336 Get the data pointer (external interface).
337 ********************************************************************/
339 char *prs_data_p(prs_struct *ps)
341 return ps->data_p;
344 /*******************************************************************
345 Get the current data size (external interface).
346 ********************************************************************/
348 uint32 prs_data_size(prs_struct *ps)
350 return ps->buffer_size;
353 /*******************************************************************
354 Fetch the current offset (external interface).
355 ********************************************************************/
357 uint32 prs_offset(prs_struct *ps)
359 return ps->data_offset;
362 /*******************************************************************
363 Set the current offset (external interface).
364 ********************************************************************/
366 bool prs_set_offset(prs_struct *ps, uint32 offset)
368 if ((offset > ps->data_offset)
369 && !prs_grow(ps, offset - ps->data_offset)) {
370 return False;
373 ps->data_offset = offset;
374 return True;
377 /*******************************************************************
378 Append the data from one parse_struct into another.
379 ********************************************************************/
381 bool prs_append_prs_data(prs_struct *dst, prs_struct *src)
383 if (prs_offset(src) == 0)
384 return True;
386 if(!prs_grow(dst, prs_offset(src)))
387 return False;
389 memcpy(&dst->data_p[dst->data_offset], src->data_p, (size_t)prs_offset(src));
390 dst->data_offset += prs_offset(src);
392 return True;
395 /*******************************************************************
396 Append some data from one parse_struct into another.
397 ********************************************************************/
399 bool prs_append_some_data(prs_struct *dst, void *src_base, uint32_t start,
400 uint32_t len)
402 if (len == 0) {
403 return true;
406 if(!prs_grow(dst, len)) {
407 return false;
410 memcpy(&dst->data_p[dst->data_offset], ((char *)src_base) + start, (size_t)len);
411 dst->data_offset += len;
412 return true;
415 bool prs_append_some_prs_data(prs_struct *dst, prs_struct *src, int32 start,
416 uint32 len)
418 return prs_append_some_data(dst, src->data_p, start, len);
421 /*******************************************************************
422 Append the data from a buffer into a parse_struct.
423 ********************************************************************/
425 bool prs_copy_data_in(prs_struct *dst, const char *src, uint32 len)
427 if (len == 0)
428 return True;
430 if(!prs_grow(dst, len))
431 return False;
433 memcpy(&dst->data_p[dst->data_offset], src, (size_t)len);
434 dst->data_offset += len;
436 return True;
439 /*******************************************************************
440 Copy some data from a parse_struct into a buffer.
441 ********************************************************************/
443 bool prs_copy_data_out(char *dst, prs_struct *src, uint32 len)
445 if (len == 0)
446 return True;
448 if(!prs_mem_get(src, len))
449 return False;
451 memcpy(dst, &src->data_p[src->data_offset], (size_t)len);
452 src->data_offset += len;
454 return True;
457 /*******************************************************************
458 Copy all the data from a parse_struct into a buffer.
459 ********************************************************************/
461 bool prs_copy_all_data_out(char *dst, prs_struct *src)
463 uint32 len = prs_offset(src);
465 if (!len)
466 return True;
468 prs_set_offset(src, 0);
469 return prs_copy_data_out(dst, src, len);
472 /*******************************************************************
473 Set the data as X-endian (external interface).
474 ********************************************************************/
476 void prs_set_endian_data(prs_struct *ps, bool endian)
478 ps->bigendian_data = endian;
481 /*******************************************************************
482 Align a the data_len to a multiple of align bytes - filling with
483 zeros.
484 ********************************************************************/
486 bool prs_align(prs_struct *ps)
488 uint32 mod = ps->data_offset & (ps->align-1);
490 if (ps->align != 0 && mod != 0) {
491 uint32 extra_space = (ps->align - mod);
492 if(!prs_grow(ps, extra_space))
493 return False;
494 memset(&ps->data_p[ps->data_offset], '\0', (size_t)extra_space);
495 ps->data_offset += extra_space;
498 return True;
501 /******************************************************************
502 Align on a 2 byte boundary
503 *****************************************************************/
505 bool prs_align_uint16(prs_struct *ps)
507 bool ret;
508 uint8 old_align = ps->align;
510 ps->align = 2;
511 ret = prs_align(ps);
512 ps->align = old_align;
514 return ret;
517 /******************************************************************
518 Align on a 8 byte boundary
519 *****************************************************************/
521 bool prs_align_uint64(prs_struct *ps)
523 bool ret;
524 uint8 old_align = ps->align;
526 ps->align = 8;
527 ret = prs_align(ps);
528 ps->align = old_align;
530 return ret;
533 /******************************************************************
534 Align on a specific byte boundary
535 *****************************************************************/
537 bool prs_align_custom(prs_struct *ps, uint8 boundary)
539 bool ret;
540 uint8 old_align = ps->align;
542 ps->align = boundary;
543 ret = prs_align(ps);
544 ps->align = old_align;
546 return ret;
551 /*******************************************************************
552 Align only if required (for the unistr2 string mainly)
553 ********************************************************************/
555 bool prs_align_needed(prs_struct *ps, uint32 needed)
557 if (needed==0)
558 return True;
559 else
560 return prs_align(ps);
563 /*******************************************************************
564 Ensure we can read/write to a given offset.
565 ********************************************************************/
567 char *prs_mem_get(prs_struct *ps, uint32 extra_size)
569 if(UNMARSHALLING(ps)) {
571 * If reading, ensure that we can read the requested size item.
573 if (ps->data_offset + extra_size > ps->buffer_size) {
574 DEBUG(0,("prs_mem_get: reading data of size %u would overrun "
575 "buffer by %u bytes.\n",
576 (unsigned int)extra_size,
577 (unsigned int)(ps->data_offset + extra_size - ps->buffer_size) ));
578 return NULL;
580 } else {
582 * Writing - grow the buffer if needed.
584 if(!prs_grow(ps, extra_size))
585 return NULL;
587 return &ps->data_p[ps->data_offset];
590 /*******************************************************************
591 Change the struct type.
592 ********************************************************************/
594 void prs_switch_type(prs_struct *ps, bool io)
596 if ((ps->io ^ io) == True)
597 ps->io=io;
600 /*******************************************************************
601 Force a prs_struct to be dynamic even when it's size is 0.
602 ********************************************************************/
604 void prs_force_dynamic(prs_struct *ps)
606 ps->is_dynamic=True;
609 /*******************************************************************
610 Associate a session key with a parse struct.
611 ********************************************************************/
613 void prs_set_session_key(prs_struct *ps, const char sess_key[16])
615 ps->sess_key = sess_key;
618 /*******************************************************************
619 Stream a uint8.
620 ********************************************************************/
622 bool prs_uint8(const char *name, prs_struct *ps, int depth, uint8 *data8)
624 char *q = prs_mem_get(ps, 1);
625 if (q == NULL)
626 return False;
628 if (UNMARSHALLING(ps))
629 *data8 = CVAL(q,0);
630 else
631 SCVAL(q,0,*data8);
633 DEBUGADD(5,("%s%04x %s: %02x\n", tab_depth(5,depth), ps->data_offset, name, *data8));
635 ps->data_offset += 1;
637 return True;
640 /*******************************************************************
641 Stream a uint16.
642 ********************************************************************/
644 bool prs_uint16(const char *name, prs_struct *ps, int depth, uint16 *data16)
646 char *q = prs_mem_get(ps, sizeof(uint16));
647 if (q == NULL)
648 return False;
650 if (UNMARSHALLING(ps)) {
651 if (ps->bigendian_data)
652 *data16 = RSVAL(q,0);
653 else
654 *data16 = SVAL(q,0);
655 } else {
656 if (ps->bigendian_data)
657 RSSVAL(q,0,*data16);
658 else
659 SSVAL(q,0,*data16);
662 DEBUGADD(5,("%s%04x %s: %04x\n", tab_depth(5,depth), ps->data_offset, name, *data16));
664 ps->data_offset += sizeof(uint16);
666 return True;
669 /*******************************************************************
670 Stream a uint32.
671 ********************************************************************/
673 bool prs_uint32(const char *name, prs_struct *ps, int depth, uint32 *data32)
675 char *q = prs_mem_get(ps, sizeof(uint32));
676 if (q == NULL)
677 return False;
679 if (UNMARSHALLING(ps)) {
680 if (ps->bigendian_data)
681 *data32 = RIVAL(q,0);
682 else
683 *data32 = IVAL(q,0);
684 } else {
685 if (ps->bigendian_data)
686 RSIVAL(q,0,*data32);
687 else
688 SIVAL(q,0,*data32);
691 DEBUGADD(5,("%s%04x %s: %08x\n", tab_depth(5,depth), ps->data_offset, name, *data32));
693 ps->data_offset += sizeof(uint32);
695 return True;
698 /*******************************************************************
699 Stream an int32.
700 ********************************************************************/
702 bool prs_int32(const char *name, prs_struct *ps, int depth, int32 *data32)
704 char *q = prs_mem_get(ps, sizeof(int32));
705 if (q == NULL)
706 return False;
708 if (UNMARSHALLING(ps)) {
709 if (ps->bigendian_data)
710 *data32 = RIVALS(q,0);
711 else
712 *data32 = IVALS(q,0);
713 } else {
714 if (ps->bigendian_data)
715 RSIVALS(q,0,*data32);
716 else
717 SIVALS(q,0,*data32);
720 DEBUGADD(5,("%s%04x %s: %08x\n", tab_depth(5,depth), ps->data_offset, name, *data32));
722 ps->data_offset += sizeof(int32);
724 return True;
727 /*******************************************************************
728 Stream a uint64_struct
729 ********************************************************************/
730 bool prs_uint64(const char *name, prs_struct *ps, int depth, uint64 *data64)
732 if (UNMARSHALLING(ps)) {
733 uint32 high, low;
735 if (!prs_uint32(name, ps, depth+1, &low))
736 return False;
738 if (!prs_uint32(name, ps, depth+1, &high))
739 return False;
741 *data64 = ((uint64_t)high << 32) + low;
743 return True;
744 } else {
745 uint32 high = (*data64) >> 32, low = (*data64) & 0xFFFFFFFF;
746 return prs_uint32(name, ps, depth+1, &low) &&
747 prs_uint32(name, ps, depth+1, &high);
751 /*******************************************************************
752 Stream a DCE error code
753 ********************************************************************/
755 bool prs_dcerpc_status(const char *name, prs_struct *ps, int depth, NTSTATUS *status)
757 char *q = prs_mem_get(ps, sizeof(uint32));
758 if (q == NULL)
759 return False;
761 if (UNMARSHALLING(ps)) {
762 if (ps->bigendian_data)
763 *status = NT_STATUS(RIVAL(q,0));
764 else
765 *status = NT_STATUS(IVAL(q,0));
766 } else {
767 if (ps->bigendian_data)
768 RSIVAL(q,0,NT_STATUS_V(*status));
769 else
770 SIVAL(q,0,NT_STATUS_V(*status));
773 DEBUGADD(5,("%s%04x %s: %s\n", tab_depth(5,depth), ps->data_offset, name,
774 dcerpc_errstr(debug_ctx(), NT_STATUS_V(*status))));
776 ps->data_offset += sizeof(uint32);
778 return True;
781 /******************************************************************
782 Stream an array of uint8s. Length is number of uint8s.
783 ********************************************************************/
785 bool prs_uint8s(bool charmode, const char *name, prs_struct *ps, int depth, uint8 *data8s, int len)
787 int i;
788 char *q = prs_mem_get(ps, len);
789 if (q == NULL)
790 return False;
792 if (UNMARSHALLING(ps)) {
793 for (i = 0; i < len; i++)
794 data8s[i] = CVAL(q,i);
795 } else {
796 for (i = 0; i < len; i++)
797 SCVAL(q, i, data8s[i]);
800 DEBUGADD(5,("%s%04x %s: ", tab_depth(5,depth), ps->data_offset ,name));
801 if (charmode)
802 print_asc(5, (unsigned char*)data8s, len);
803 else {
804 for (i = 0; i < len; i++)
805 DEBUGADD(5,("%02x ", data8s[i]));
807 DEBUGADD(5,("\n"));
809 ps->data_offset += len;
811 return True;
814 /******************************************************************
815 Stream an array of uint16s. Length is number of uint16s.
816 ********************************************************************/
818 bool prs_uint16s(bool charmode, const char *name, prs_struct *ps, int depth, uint16 *data16s, int len)
820 int i;
821 char *q = prs_mem_get(ps, len * sizeof(uint16));
822 if (q == NULL)
823 return False;
825 if (UNMARSHALLING(ps)) {
826 if (ps->bigendian_data) {
827 for (i = 0; i < len; i++)
828 data16s[i] = RSVAL(q, 2*i);
829 } else {
830 for (i = 0; i < len; i++)
831 data16s[i] = SVAL(q, 2*i);
833 } else {
834 if (ps->bigendian_data) {
835 for (i = 0; i < len; i++)
836 RSSVAL(q, 2*i, data16s[i]);
837 } else {
838 for (i = 0; i < len; i++)
839 SSVAL(q, 2*i, data16s[i]);
843 DEBUGADD(5,("%s%04x %s: ", tab_depth(5,depth), ps->data_offset, name));
844 if (charmode)
845 print_asc(5, (unsigned char*)data16s, 2*len);
846 else {
847 for (i = 0; i < len; i++)
848 DEBUGADD(5,("%04x ", data16s[i]));
850 DEBUGADD(5,("\n"));
852 ps->data_offset += (len * sizeof(uint16));
854 return True;
857 /******************************************************************
858 Stream an array of uint32s. Length is number of uint32s.
859 ********************************************************************/
861 bool prs_uint32s(bool charmode, const char *name, prs_struct *ps, int depth, uint32 *data32s, int len)
863 int i;
864 char *q = prs_mem_get(ps, len * sizeof(uint32));
865 if (q == NULL)
866 return False;
868 if (UNMARSHALLING(ps)) {
869 if (ps->bigendian_data) {
870 for (i = 0; i < len; i++)
871 data32s[i] = RIVAL(q, 4*i);
872 } else {
873 for (i = 0; i < len; i++)
874 data32s[i] = IVAL(q, 4*i);
876 } else {
877 if (ps->bigendian_data) {
878 for (i = 0; i < len; i++)
879 RSIVAL(q, 4*i, data32s[i]);
880 } else {
881 for (i = 0; i < len; i++)
882 SIVAL(q, 4*i, data32s[i]);
886 DEBUGADD(5,("%s%04x %s: ", tab_depth(5,depth), ps->data_offset, name));
887 if (charmode)
888 print_asc(5, (unsigned char*)data32s, 4*len);
889 else {
890 for (i = 0; i < len; i++)
891 DEBUGADD(5,("%08x ", data32s[i]));
893 DEBUGADD(5,("\n"));
895 ps->data_offset += (len * sizeof(uint32));
897 return True;
900 /*******************************************************************
901 Stream a unicode null-terminated string. As the string is already
902 in little-endian format then do it as a stream of bytes.
903 ********************************************************************/
905 bool prs_unistr(const char *name, prs_struct *ps, int depth, UNISTR *str)
907 unsigned int len = 0;
908 unsigned char *p = (unsigned char *)str->buffer;
909 uint8 *start;
910 char *q;
911 uint32 max_len;
912 uint16* ptr;
914 if (MARSHALLING(ps)) {
916 for(len = 0; str->buffer[len] != 0; len++)
919 q = prs_mem_get(ps, (len+1)*2);
920 if (q == NULL)
921 return False;
923 start = (uint8*)q;
925 for(len = 0; str->buffer[len] != 0; len++) {
926 if(ps->bigendian_data) {
927 /* swap bytes - p is little endian, q is big endian. */
928 q[0] = (char)p[1];
929 q[1] = (char)p[0];
930 p += 2;
931 q += 2;
933 else
935 q[0] = (char)p[0];
936 q[1] = (char)p[1];
937 p += 2;
938 q += 2;
943 * even if the string is 'empty' (only an \0 char)
944 * at this point the leading \0 hasn't been parsed.
945 * so parse it now
948 q[0] = 0;
949 q[1] = 0;
950 q += 2;
952 len++;
954 DEBUGADD(5,("%s%04x %s: ", tab_depth(5,depth), ps->data_offset, name));
955 print_asc(5, (unsigned char*)start, 2*len);
956 DEBUGADD(5, ("\n"));
958 else { /* unmarshalling */
960 uint32 alloc_len = 0;
961 q = ps->data_p + prs_offset(ps);
964 * Work out how much space we need and talloc it.
966 max_len = (ps->buffer_size - ps->data_offset)/sizeof(uint16);
968 /* the test of the value of *ptr helps to catch the circumstance
969 where we have an emtpty (non-existent) string in the buffer */
970 for ( ptr = (uint16 *)q; *ptr++ && (alloc_len <= max_len); alloc_len++)
971 /* do nothing */
974 if (alloc_len < max_len)
975 alloc_len += 1;
977 /* should we allocate anything at all? */
978 str->buffer = PRS_ALLOC_MEM(ps,uint16,alloc_len);
979 if ((str->buffer == NULL) && (alloc_len > 0))
980 return False;
982 p = (unsigned char *)str->buffer;
984 len = 0;
985 /* the (len < alloc_len) test is to prevent us from overwriting
986 memory that is not ours...if we get that far, we have a non-null
987 terminated string in the buffer and have messed up somewhere */
988 while ((len < alloc_len) && (*(uint16 *)q != 0)) {
989 if(ps->bigendian_data)
991 /* swap bytes - q is big endian, p is little endian. */
992 p[0] = (unsigned char)q[1];
993 p[1] = (unsigned char)q[0];
994 p += 2;
995 q += 2;
996 } else {
998 p[0] = (unsigned char)q[0];
999 p[1] = (unsigned char)q[1];
1000 p += 2;
1001 q += 2;
1004 len++;
1006 if (len < alloc_len) {
1007 /* NULL terminate the UNISTR */
1008 str->buffer[len++] = '\0';
1011 DEBUGADD(5,("%s%04x %s: ", tab_depth(5,depth), ps->data_offset, name));
1012 print_asc(5, (unsigned char*)str->buffer, 2*len);
1013 DEBUGADD(5, ("\n"));
1016 /* set the offset in the prs_struct; 'len' points to the
1017 terminiating NULL in the UNISTR so we need to go one more
1018 uint16 */
1019 ps->data_offset += (len)*2;
1021 return True;
1025 /*******************************************************************
1026 Stream a null-terminated string. len is strlen, and therefore does
1027 not include the null-termination character.
1028 ********************************************************************/
1030 bool prs_string(const char *name, prs_struct *ps, int depth, char *str, int max_buf_size)
1032 char *q;
1033 int i;
1034 int len;
1036 if (UNMARSHALLING(ps))
1037 len = strlen(&ps->data_p[ps->data_offset]);
1038 else
1039 len = strlen(str);
1041 len = MIN(len, (max_buf_size-1));
1043 q = prs_mem_get(ps, len+1);
1044 if (q == NULL)
1045 return False;
1047 for(i = 0; i < len; i++) {
1048 if (UNMARSHALLING(ps))
1049 str[i] = q[i];
1050 else
1051 q[i] = str[i];
1054 /* The terminating null. */
1055 str[i] = '\0';
1057 if (MARSHALLING(ps)) {
1058 q[i] = '\0';
1061 ps->data_offset += len+1;
1063 dump_data(5+depth, (uint8 *)q, len);
1065 return True;
1068 /*******************************************************************
1069 creates a new prs_struct containing a DATA_BLOB
1070 ********************************************************************/
1071 bool prs_init_data_blob(prs_struct *prs, DATA_BLOB *blob, TALLOC_CTX *mem_ctx)
1073 if (!prs_init( prs, RPC_MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL ))
1074 return False;
1077 if (!prs_copy_data_in(prs, (char *)blob->data, blob->length))
1078 return False;
1080 return True;
1083 /*******************************************************************
1084 return the contents of a prs_struct in a DATA_BLOB
1085 ********************************************************************/
1086 bool prs_data_blob(prs_struct *prs, DATA_BLOB *blob, TALLOC_CTX *mem_ctx)
1088 blob->length = prs_data_size(prs);
1089 blob->data = (uint8 *)TALLOC_ZERO_SIZE(mem_ctx, blob->length);
1091 /* set the pointer at the end of the buffer */
1092 prs_set_offset( prs, prs_data_size(prs) );
1094 if (!prs_copy_all_data_out((char *)blob->data, prs))
1095 return False;
1097 return True;