r5805: merging spoolss parsing changes from trunk and cleaning up resulting segvs
[samba.git] / source3 / rpc_parse / parse_prs.c
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.
8    
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 2 of the License, or
12    (at your option) any later version.
13    
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.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_RPC_PARSE
28
29 /**
30  * Dump a prs to a file: from the current location through to the end.
31  **/
32 void prs_dump(char *name, int v, prs_struct *ps)
33 {
34         prs_dump_region(name, v, ps, ps->data_offset, ps->buffer_size);
35 }
36
37
38 /**
39  * Dump from the start of the prs to the current location.
40  **/
41 void prs_dump_before(char *name, int v, prs_struct *ps)
42 {
43         prs_dump_region(name, v, ps, 0, ps->data_offset);
44 }
45
46
47 /**
48  * Dump everything from the start of the prs up to the current location.
49  **/
50 void prs_dump_region(char *name, int v, prs_struct *ps,
51                      int from_off, int to_off)
52 {
53         int fd, i;
54         pstring fname;
55         if (DEBUGLEVEL < 50) return;
56         for (i=1;i<100;i++) {
57                 if (v != -1) {
58                         slprintf(fname,sizeof(fname)-1, "/tmp/%s_%d.%d.prs", name, v, i);
59                 } else {
60                         slprintf(fname,sizeof(fname)-1, "/tmp/%s.%d.prs", name, i);
61                 }
62                 fd = open(fname, O_WRONLY|O_CREAT|O_EXCL, 0644);
63                 if (fd != -1 || errno != EEXIST) break;
64         }
65         if (fd != -1) {
66                 write(fd, ps->data_p + from_off, to_off - from_off);
67                 close(fd);
68                 DEBUG(0,("created %s\n", fname));
69         }
70 }
71
72
73
74 /*******************************************************************
75  debug output for parsing info.
76
77  XXXX side-effect of this function is to increase the debug depth XXXX
78
79  ********************************************************************/
80 void prs_debug(prs_struct *ps, int depth, const char *desc, const char *fn_name)
81 {
82         DEBUG(5+depth, ("%s%06x %s %s\n", tab_depth(depth), ps->data_offset, fn_name, desc));
83 }
84
85
86 /**
87  * Initialise an expandable parse structure.
88  *
89  * @param size Initial buffer size.  If >0, a new buffer will be
90  * created with malloc().
91  *
92  * @return False if allocation fails, otherwise True.
93  **/
94 BOOL prs_init(prs_struct *ps, uint32 size, TALLOC_CTX *ctx, BOOL io)
95 {
96         ZERO_STRUCTP(ps);
97         ps->io = io;
98         ps->bigendian_data = RPC_LITTLE_ENDIAN;
99         ps->align = RPC_PARSE_ALIGN;
100         ps->is_dynamic = False;
101         ps->data_offset = 0;
102         ps->buffer_size = 0;
103         ps->data_p = NULL;
104         ps->mem_ctx = ctx;
105
106         if (size != 0) {
107                 ps->buffer_size = size;
108                 if((ps->data_p = (char *)SMB_MALLOC((size_t)size)) == NULL) {
109                         DEBUG(0,("prs_init: malloc fail for %u bytes.\n", (unsigned int)size));
110                         return False;
111                 }
112                 memset(ps->data_p, '\0', (size_t)size);
113                 ps->is_dynamic = True; /* We own this memory. */
114         }
115
116         return True;
117 }
118
119 /*******************************************************************
120  Delete the memory in a parse structure - if we own it.
121  ********************************************************************/
122
123 void prs_mem_free(prs_struct *ps)
124 {
125         if(ps->is_dynamic)
126                 SAFE_FREE(ps->data_p);
127         ps->is_dynamic = False;
128         ps->buffer_size = 0;
129         ps->data_offset = 0;
130 }
131
132 /*******************************************************************
133  Clear the memory in a parse structure.
134  ********************************************************************/
135
136 void prs_mem_clear(prs_struct *ps)
137 {
138         if (ps->buffer_size)
139                 memset(ps->data_p, '\0', (size_t)ps->buffer_size);
140 }
141
142 /*******************************************************************
143  Allocate memory when unmarshalling... Always zero clears.
144  ********************************************************************/
145
146 #if defined(PARANOID_MALLOC_CHECKER)
147 char *prs_alloc_mem_(prs_struct *ps, size_t size, unsigned int count)
148 #else
149 char *prs_alloc_mem(prs_struct *ps, size_t size, unsigned int count)
150 #endif
151 {
152         char *ret = NULL;
153
154         if (size) {
155                 /* We can't call the type-safe version here. */
156 #if defined(PARANOID_MALLOC_CHECKER)
157                 ret = talloc_zero_array_(ps->mem_ctx, size, count);
158 #else
159                 ret = talloc_zero_array(ps->mem_ctx, size, count);
160 #endif
161         }
162         return ret;
163 }
164
165 /*******************************************************************
166  Return the current talloc context we're using.
167  ********************************************************************/
168
169 TALLOC_CTX *prs_get_mem_context(prs_struct *ps)
170 {
171         return ps->mem_ctx;
172 }
173
174 /*******************************************************************
175  Hand some already allocated memory to a prs_struct.
176  ********************************************************************/
177
178 void prs_give_memory(prs_struct *ps, char *buf, uint32 size, BOOL is_dynamic)
179 {
180         ps->is_dynamic = is_dynamic;
181         ps->data_p = buf;
182         ps->buffer_size = size;
183 }
184
185 /*******************************************************************
186  Take some memory back from a prs_struct.
187  ********************************************************************/
188
189 char *prs_take_memory(prs_struct *ps, uint32 *psize)
190 {
191         char *ret = ps->data_p;
192         if(psize)
193                 *psize = ps->buffer_size;
194         ps->is_dynamic = False;
195         prs_mem_free(ps);
196         return ret;
197 }
198
199 /*******************************************************************
200  Set a prs_struct to exactly a given size. Will grow or tuncate if neccessary.
201  ********************************************************************/
202
203 BOOL prs_set_buffer_size(prs_struct *ps, uint32 newsize)
204 {
205         if (newsize > ps->buffer_size)
206                 return prs_force_grow(ps, newsize - ps->buffer_size);
207
208         if (newsize < ps->buffer_size) {
209                 char *new_data_p = SMB_REALLOC(ps->data_p, newsize);
210                 /* if newsize is zero, Realloc acts like free() & returns NULL*/
211                 if (new_data_p == NULL && newsize != 0) {
212                         DEBUG(0,("prs_set_buffer_size: Realloc failure for size %u.\n",
213                                 (unsigned int)newsize));
214                         DEBUG(0,("prs_set_buffer_size: Reason %s\n",strerror(errno)));
215                         return False;
216                 }
217                 ps->data_p = new_data_p;
218                 ps->buffer_size = newsize;
219         }
220
221         return True;
222 }
223
224 /*******************************************************************
225  Attempt, if needed, to grow a data buffer.
226  Also depends on the data stream mode (io).
227  ********************************************************************/
228
229 BOOL prs_grow(prs_struct *ps, uint32 extra_space)
230 {
231         uint32 new_size;
232         char *new_data;
233
234         ps->grow_size = MAX(ps->grow_size, ps->data_offset + extra_space);
235
236         if(ps->data_offset + extra_space <= ps->buffer_size)
237                 return True;
238
239         /*
240          * We cannot grow the buffer if we're not reading
241          * into the prs_struct, or if we don't own the memory.
242          */
243
244         if(UNMARSHALLING(ps) || !ps->is_dynamic) {
245                 DEBUG(0,("prs_grow: Buffer overflow - unable to expand buffer by %u bytes.\n",
246                                 (unsigned int)extra_space));
247                 return False;
248         }
249         
250         /*
251          * Decide how much extra space we really need.
252          */
253
254         extra_space -= (ps->buffer_size - ps->data_offset);
255         if(ps->buffer_size == 0) {
256                 /*
257                  * Ensure we have at least a PDU's length, or extra_space, whichever
258                  * is greater.
259                  */
260
261                 new_size = MAX(MAX_PDU_FRAG_LEN,extra_space);
262
263                 if((new_data = SMB_MALLOC(new_size)) == NULL) {
264                         DEBUG(0,("prs_grow: Malloc failure for size %u.\n", (unsigned int)new_size));
265                         return False;
266                 }
267                 memset(new_data, '\0', (size_t)new_size );
268         } else {
269                 /*
270                  * If the current buffer size is bigger than the space needed, just 
271                  * double it, else add extra_space.
272                  */
273                 new_size = MAX(ps->buffer_size*2, ps->buffer_size + extra_space);               
274
275                 if ((new_data = SMB_REALLOC(ps->data_p, new_size)) == NULL) {
276                         DEBUG(0,("prs_grow: Realloc failure for size %u.\n",
277                                 (unsigned int)new_size));
278                         return False;
279                 }
280
281                 memset(&new_data[ps->buffer_size], '\0', (size_t)(new_size - ps->buffer_size));
282         }
283         ps->buffer_size = new_size;
284         ps->data_p = new_data;
285
286         return True;
287 }
288
289 /*******************************************************************
290  Attempt to force a data buffer to grow by len bytes.
291  This is only used when appending more data onto a prs_struct
292  when reading an rpc reply, before unmarshalling it.
293  ********************************************************************/
294
295 BOOL prs_force_grow(prs_struct *ps, uint32 extra_space)
296 {
297         uint32 new_size = ps->buffer_size + extra_space;
298         char *new_data;
299
300         if(!UNMARSHALLING(ps) || !ps->is_dynamic) {
301                 DEBUG(0,("prs_force_grow: Buffer overflow - unable to expand buffer by %u bytes.\n",
302                                 (unsigned int)extra_space));
303                 return False;
304         }
305
306         if((new_data = SMB_REALLOC(ps->data_p, new_size)) == NULL) {
307                 DEBUG(0,("prs_force_grow: Realloc failure for size %u.\n",
308                         (unsigned int)new_size));
309                 return False;
310         }
311
312         memset(&new_data[ps->buffer_size], '\0', (size_t)(new_size - ps->buffer_size));
313
314         ps->buffer_size = new_size;
315         ps->data_p = new_data;
316
317         return True;
318 }
319
320 /*******************************************************************
321  Get the data pointer (external interface).
322 ********************************************************************/
323
324 char *prs_data_p(prs_struct *ps)
325 {
326         return ps->data_p;
327 }
328
329 /*******************************************************************
330  Get the current data size (external interface).
331  ********************************************************************/
332
333 uint32 prs_data_size(prs_struct *ps)
334 {
335         return ps->buffer_size;
336 }
337
338 /*******************************************************************
339  Fetch the current offset (external interface).
340  ********************************************************************/
341
342 uint32 prs_offset(prs_struct *ps)
343 {
344         return ps->data_offset;
345 }
346
347 /*******************************************************************
348  Set the current offset (external interface).
349  ********************************************************************/
350
351 BOOL prs_set_offset(prs_struct *ps, uint32 offset)
352 {
353         if(offset <= ps->data_offset) {
354                 ps->data_offset = offset;
355                 return True;
356         }
357
358         if(!prs_grow(ps, offset - ps->data_offset))
359                 return False;
360
361         ps->data_offset = offset;
362         return True;
363 }
364
365 /*******************************************************************
366  Append the data from one parse_struct into another.
367  ********************************************************************/
368
369 BOOL prs_append_prs_data(prs_struct *dst, prs_struct *src)
370 {
371         if (prs_offset(src) == 0)
372                 return True;
373
374         if(!prs_grow(dst, prs_offset(src)))
375                 return False;
376
377         memcpy(&dst->data_p[dst->data_offset], src->data_p, (size_t)prs_offset(src));
378         dst->data_offset += prs_offset(src);
379
380         return True;
381 }
382
383 /*******************************************************************
384  Append some data from one parse_struct into another.
385  ********************************************************************/
386
387 BOOL prs_append_some_prs_data(prs_struct *dst, prs_struct *src, int32 start, uint32 len)
388 {       
389         if (len == 0)
390                 return True;
391
392         if(!prs_grow(dst, len))
393                 return False;
394         
395         memcpy(&dst->data_p[dst->data_offset], src->data_p + start, (size_t)len);
396         dst->data_offset += len;
397
398         return True;
399 }
400
401 /*******************************************************************
402  Append the data from a buffer into a parse_struct.
403  ********************************************************************/
404
405 BOOL prs_copy_data_in(prs_struct *dst, char *src, uint32 len)
406 {
407         if (len == 0)
408                 return True;
409
410         if(!prs_grow(dst, len))
411                 return False;
412
413         memcpy(&dst->data_p[dst->data_offset], src, (size_t)len);
414         dst->data_offset += len;
415
416         return True;
417 }
418
419 /*******************************************************************
420  Copy some data from a parse_struct into a buffer.
421  ********************************************************************/
422
423 BOOL prs_copy_data_out(char *dst, prs_struct *src, uint32 len)
424 {
425         if (len == 0)
426                 return True;
427
428         if(!prs_mem_get(src, len))
429                 return False;
430
431         memcpy(dst, &src->data_p[src->data_offset], (size_t)len);
432         src->data_offset += len;
433
434         return True;
435 }
436
437 /*******************************************************************
438  Copy all the data from a parse_struct into a buffer.
439  ********************************************************************/
440
441 BOOL prs_copy_all_data_out(char *dst, prs_struct *src)
442 {
443         uint32 len = prs_offset(src);
444
445         if (!len)
446                 return True;
447
448         prs_set_offset(src, 0);
449         return prs_copy_data_out(dst, src, len);
450 }
451
452 /*******************************************************************
453  Set the data as X-endian (external interface).
454  ********************************************************************/
455
456 void prs_set_endian_data(prs_struct *ps, BOOL endian)
457 {
458         ps->bigendian_data = endian;
459 }
460
461 /*******************************************************************
462  Align a the data_len to a multiple of align bytes - filling with
463  zeros.
464  ********************************************************************/
465
466 BOOL prs_align(prs_struct *ps)
467 {
468         uint32 mod = ps->data_offset & (ps->align-1);
469
470         if (ps->align != 0 && mod != 0) {
471                 uint32 extra_space = (ps->align - mod);
472                 if(!prs_grow(ps, extra_space))
473                         return False;
474                 memset(&ps->data_p[ps->data_offset], '\0', (size_t)extra_space);
475                 ps->data_offset += extra_space;
476         }
477
478         return True;
479 }
480
481 /******************************************************************
482  Align on a 2 byte boundary
483  *****************************************************************/
484  
485 BOOL prs_align_uint16(prs_struct *ps)
486 {
487         BOOL ret;
488         uint8 old_align = ps->align;
489
490         ps->align = 2;
491         ret = prs_align(ps);
492         ps->align = old_align;
493         
494         return ret;
495 }
496
497 /******************************************************************
498  Align on a 8 byte boundary
499  *****************************************************************/
500  
501 BOOL prs_align_uint64(prs_struct *ps)
502 {
503         BOOL ret;
504         uint8 old_align = ps->align;
505
506         ps->align = 8;
507         ret = prs_align(ps);
508         ps->align = old_align;
509         
510         return ret;
511 }
512
513 /*******************************************************************
514  Align only if required (for the unistr2 string mainly)
515  ********************************************************************/
516
517 BOOL prs_align_needed(prs_struct *ps, uint32 needed)
518 {
519         if (needed==0)
520                 return True;
521         else
522                 return prs_align(ps);
523 }
524
525 /*******************************************************************
526  Ensure we can read/write to a given offset.
527  ********************************************************************/
528
529 char *prs_mem_get(prs_struct *ps, uint32 extra_size)
530 {
531         if(UNMARSHALLING(ps)) {
532                 /*
533                  * If reading, ensure that we can read the requested size item.
534                  */
535                 if (ps->data_offset + extra_size > ps->buffer_size) {
536                         DEBUG(0,("prs_mem_get: reading data of size %u would overrun buffer.\n",
537                                         (unsigned int)extra_size ));
538                         return NULL;
539                 }
540         } else {
541                 /*
542                  * Writing - grow the buffer if needed.
543                  */
544                 if(!prs_grow(ps, extra_size))
545                         return NULL;
546         }
547         return &ps->data_p[ps->data_offset];
548 }
549
550 /*******************************************************************
551  Change the struct type.
552  ********************************************************************/
553
554 void prs_switch_type(prs_struct *ps, BOOL io)
555 {
556         if ((ps->io ^ io) == True)
557                 ps->io=io;
558 }
559
560 /*******************************************************************
561  Force a prs_struct to be dynamic even when it's size is 0.
562  ********************************************************************/
563
564 void prs_force_dynamic(prs_struct *ps)
565 {
566         ps->is_dynamic=True;
567 }
568
569 /*******************************************************************
570  Stream a uint8.
571  ********************************************************************/
572
573 BOOL prs_uint8(const char *name, prs_struct *ps, int depth, uint8 *data8)
574 {
575         char *q = prs_mem_get(ps, 1);
576         if (q == NULL)
577                 return False;
578
579     if (UNMARSHALLING(ps))
580                 *data8 = CVAL(q,0);
581         else
582                 SCVAL(q,0,*data8);
583
584     DEBUG(5,("%s%04x %s: %02x\n", tab_depth(depth), ps->data_offset, name, *data8));
585
586         ps->data_offset += 1;
587
588         return True;
589 }
590
591 /*******************************************************************
592  Stream a uint16.
593  ********************************************************************/
594
595 BOOL prs_uint16(const char *name, prs_struct *ps, int depth, uint16 *data16)
596 {
597         char *q = prs_mem_get(ps, sizeof(uint16));
598         if (q == NULL)
599                 return False;
600
601     if (UNMARSHALLING(ps)) {
602                 if (ps->bigendian_data)
603                         *data16 = RSVAL(q,0);
604                 else
605                         *data16 = SVAL(q,0);
606     } else {
607                 if (ps->bigendian_data)
608                         RSSVAL(q,0,*data16);
609                 else
610                         SSVAL(q,0,*data16);
611         }
612
613         DEBUG(5,("%s%04x %s: %04x\n", tab_depth(depth), ps->data_offset, name, *data16));
614
615         ps->data_offset += sizeof(uint16);
616
617         return True;
618 }
619
620 /*******************************************************************
621  Stream a uint32.
622  ********************************************************************/
623
624 BOOL prs_uint32(const char *name, prs_struct *ps, int depth, uint32 *data32)
625 {
626         char *q = prs_mem_get(ps, sizeof(uint32));
627         if (q == NULL)
628                 return False;
629
630         if (UNMARSHALLING(ps)) {
631                 if (ps->bigendian_data)
632                         *data32 = RIVAL(q,0);
633                 else
634                         *data32 = IVAL(q,0);
635         } else {
636                 if (ps->bigendian_data)
637                         RSIVAL(q,0,*data32);
638                 else
639                         SIVAL(q,0,*data32);
640         }
641
642         DEBUG(5,("%s%04x %s: %08x\n", tab_depth(depth), ps->data_offset, name, *data32));
643
644         ps->data_offset += sizeof(uint32);
645
646         return True;
647 }
648
649 /*******************************************************************
650  Stream a uint32* (allocate memory if unmarshalling)
651  ********************************************************************/
652
653 BOOL prs_uint32_p(const char *name, prs_struct *ps, int depth, uint32 **data32)
654 {
655         uint32 data_p;
656
657         /* caputure the pointer value to stream */
658
659         data_p = (uint32) *data32;
660
661         if ( !prs_uint32("ptr", ps, depth, &data_p ))
662                 return False;
663
664         /* we're done if there is no data */
665
666         if ( !data_p )
667                 return True;
668
669         if (UNMARSHALLING(ps)) {
670                 if ( !(*data32 = PRS_ALLOC_MEM(ps, uint32, 1)) )
671                         return False;
672         }
673
674         return prs_uint32(name, ps, depth, *data32);
675 }
676
677 /*******************************************************************
678  Stream a NTSTATUS
679  ********************************************************************/
680
681 BOOL prs_ntstatus(const char *name, prs_struct *ps, int depth, NTSTATUS *status)
682 {
683         char *q = prs_mem_get(ps, sizeof(uint32));
684         if (q == NULL)
685                 return False;
686
687         if (UNMARSHALLING(ps)) {
688                 if (ps->bigendian_data)
689                         *status = NT_STATUS(RIVAL(q,0));
690                 else
691                         *status = NT_STATUS(IVAL(q,0));
692         } else {
693                 if (ps->bigendian_data)
694                         RSIVAL(q,0,NT_STATUS_V(*status));
695                 else
696                         SIVAL(q,0,NT_STATUS_V(*status));
697         }
698
699         DEBUG(5,("%s%04x %s: %s\n", tab_depth(depth), ps->data_offset, name, 
700                  nt_errstr(*status)));
701
702         ps->data_offset += sizeof(uint32);
703
704         return True;
705 }
706
707 /*******************************************************************
708  Stream a WERROR
709  ********************************************************************/
710
711 BOOL prs_werror(const char *name, prs_struct *ps, int depth, WERROR *status)
712 {
713         char *q = prs_mem_get(ps, sizeof(uint32));
714         if (q == NULL)
715                 return False;
716
717         if (UNMARSHALLING(ps)) {
718                 if (ps->bigendian_data)
719                         *status = W_ERROR(RIVAL(q,0));
720                 else
721                         *status = W_ERROR(IVAL(q,0));
722         } else {
723                 if (ps->bigendian_data)
724                         RSIVAL(q,0,W_ERROR_V(*status));
725                 else
726                         SIVAL(q,0,W_ERROR_V(*status));
727         }
728
729         DEBUG(5,("%s%04x %s: %s\n", tab_depth(depth), ps->data_offset, name, 
730                  dos_errstr(*status)));
731
732         ps->data_offset += sizeof(uint32);
733
734         return True;
735 }
736
737
738 /******************************************************************
739  Stream an array of uint8s. Length is number of uint8s.
740  ********************************************************************/
741
742 BOOL prs_uint8s(BOOL charmode, const char *name, prs_struct *ps, int depth, uint8 *data8s, int len)
743 {
744         int i;
745         char *q = prs_mem_get(ps, len);
746         if (q == NULL)
747                 return False;
748
749         if (UNMARSHALLING(ps)) {
750                 for (i = 0; i < len; i++)
751                         data8s[i] = CVAL(q,i);
752         } else {
753                 for (i = 0; i < len; i++)
754                         SCVAL(q, i, data8s[i]);
755         }
756
757         DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset ,name));
758         if (charmode)
759                 print_asc(5, (unsigned char*)data8s, len);
760         else {
761                 for (i = 0; i < len; i++)
762                         DEBUG(5,("%02x ", data8s[i]));
763         }
764         DEBUG(5,("\n"));
765
766         ps->data_offset += len;
767
768         return True;
769 }
770
771 /******************************************************************
772  Stream an array of uint16s. Length is number of uint16s.
773  ********************************************************************/
774
775 BOOL prs_uint16s(BOOL charmode, const char *name, prs_struct *ps, int depth, uint16 *data16s, int len)
776 {
777         int i;
778         char *q = prs_mem_get(ps, len * sizeof(uint16));
779         if (q == NULL)
780                 return False;
781
782         if (UNMARSHALLING(ps)) {
783                 if (ps->bigendian_data) {
784                         for (i = 0; i < len; i++)
785                                 data16s[i] = RSVAL(q, 2*i);
786                 } else {
787                         for (i = 0; i < len; i++)
788                                 data16s[i] = SVAL(q, 2*i);
789                 }
790         } else {
791                 if (ps->bigendian_data) {
792                         for (i = 0; i < len; i++)
793                                 RSSVAL(q, 2*i, data16s[i]);
794                 } else {
795                         for (i = 0; i < len; i++)
796                                 SSVAL(q, 2*i, data16s[i]);
797                 }
798         }
799
800         DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset, name));
801         if (charmode)
802                 print_asc(5, (unsigned char*)data16s, 2*len);
803         else {
804                 for (i = 0; i < len; i++)
805                         DEBUG(5,("%04x ", data16s[i]));
806         }
807         DEBUG(5,("\n"));
808
809         ps->data_offset += (len * sizeof(uint16));
810
811         return True;
812 }
813
814 /******************************************************************
815  Start using a function for streaming unicode chars. If unmarshalling,
816  output must be little-endian, if marshalling, input must be little-endian.
817  ********************************************************************/
818
819 static void dbg_rw_punival(BOOL charmode, const char *name, int depth, prs_struct *ps,
820                                                         char *in_buf, char *out_buf, int len)
821 {
822         int i;
823
824         if (UNMARSHALLING(ps)) {
825                 if (ps->bigendian_data) {
826                         for (i = 0; i < len; i++)
827                                 SSVAL(out_buf,2*i,RSVAL(in_buf, 2*i));
828                 } else {
829                         for (i = 0; i < len; i++)
830                                 SSVAL(out_buf, 2*i, SVAL(in_buf, 2*i));
831                 }
832         } else {
833                 if (ps->bigendian_data) {
834                         for (i = 0; i < len; i++)
835                                 RSSVAL(in_buf, 2*i, SVAL(out_buf,2*i));
836                 } else {
837                         for (i = 0; i < len; i++)
838                                 SSVAL(in_buf, 2*i, SVAL(out_buf,2*i));
839                 }
840         }
841
842         DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset, name));
843         if (charmode)
844                 print_asc(5, (unsigned char*)out_buf, 2*len);
845         else {
846                 for (i = 0; i < len; i++)
847                         DEBUG(5,("%04x ", out_buf[i]));
848         }
849         DEBUG(5,("\n"));
850 }
851
852 /******************************************************************
853  Stream a unistr. Always little endian.
854  ********************************************************************/
855
856 BOOL prs_uint16uni(BOOL charmode, const char *name, prs_struct *ps, int depth, uint16 *data16s, int len)
857 {
858         char *q = prs_mem_get(ps, len * sizeof(uint16));
859         if (q == NULL)
860                 return False;
861
862         dbg_rw_punival(charmode, name, depth, ps, q, (char *)data16s, len);
863         ps->data_offset += (len * sizeof(uint16));
864
865         return True;
866 }
867
868 /******************************************************************
869  Stream an array of uint32s. Length is number of uint32s.
870  ********************************************************************/
871
872 BOOL prs_uint32s(BOOL charmode, const char *name, prs_struct *ps, int depth, uint32 *data32s, int len)
873 {
874         int i;
875         char *q = prs_mem_get(ps, len * sizeof(uint32));
876         if (q == NULL)
877                 return False;
878
879         if (UNMARSHALLING(ps)) {
880                 if (ps->bigendian_data) {
881                         for (i = 0; i < len; i++)
882                                 data32s[i] = RIVAL(q, 4*i);
883                 } else {
884                         for (i = 0; i < len; i++)
885                                 data32s[i] = IVAL(q, 4*i);
886                 }
887         } else {
888                 if (ps->bigendian_data) {
889                         for (i = 0; i < len; i++)
890                                 RSIVAL(q, 4*i, data32s[i]);
891                 } else {
892                         for (i = 0; i < len; i++)
893                                 SIVAL(q, 4*i, data32s[i]);
894                 }
895         }
896
897         DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset, name));
898         if (charmode)
899                 print_asc(5, (unsigned char*)data32s, 4*len);
900         else {
901                 for (i = 0; i < len; i++)
902                         DEBUG(5,("%08x ", data32s[i]));
903         }
904         DEBUG(5,("\n"));
905
906         ps->data_offset += (len * sizeof(uint32));
907
908         return True;
909 }
910
911 /******************************************************************
912  Stream an array of unicode string, length/buffer specified separately,
913  in uint16 chars. The unicode string is already in little-endian format.
914  ********************************************************************/
915
916 BOOL prs_buffer5(BOOL charmode, const char *name, prs_struct *ps, int depth, BUFFER5 *str)
917 {
918         char *p;
919         char *q = prs_mem_get(ps, str->buf_len * sizeof(uint16));
920         if (q == NULL)
921                 return False;
922
923         if (UNMARSHALLING(ps)) {
924                 str->buffer = PRS_ALLOC_MEM(ps,uint16,str->buf_len);
925                 if (str->buffer == NULL)
926                         return False;
927         }
928
929         /* If the string is empty, we don't have anything to stream */
930         if (str->buf_len==0)
931                 return True;
932
933         p = (char *)str->buffer;
934
935         dbg_rw_punival(charmode, name, depth, ps, q, p, str->buf_len);
936         
937         ps->data_offset += (str->buf_len * sizeof(uint16));
938
939         return True;
940 }
941
942 /******************************************************************
943  Stream a "not" unicode string, length/buffer specified separately,
944  in byte chars. String is in little-endian format.
945  ********************************************************************/
946
947 BOOL prs_buffer2(BOOL charmode, const char *name, prs_struct *ps, int depth, BUFFER2 *str)
948 {
949         char *p;
950         char *q = prs_mem_get(ps, str->buf_len);
951         if (q == NULL)
952                 return False;
953
954         if (UNMARSHALLING(ps)) {
955                 if (str->buf_len > str->buf_max_len) {
956                         return False;
957                 }
958                 if ( str->buf_max_len ) {
959                         str->buffer = PRS_ALLOC_MEM(ps, uint16, str->buf_max_len);
960                         if ( str->buffer == NULL )
961                                 return False;
962                 }
963         }
964
965         p = (char *)str->buffer;
966
967         dbg_rw_punival(charmode, name, depth, ps, q, p, str->buf_len/2);
968         ps->data_offset += str->buf_len;
969
970         return True;
971 }
972
973 /******************************************************************
974  Stream a string, length/buffer specified separately,
975  in uint8 chars.
976  ********************************************************************/
977
978 BOOL prs_string2(BOOL charmode, const char *name, prs_struct *ps, int depth, STRING2 *str)
979 {
980         unsigned int i;
981         char *q = prs_mem_get(ps, str->str_str_len);
982         if (q == NULL)
983                 return False;
984
985         if (UNMARSHALLING(ps)) {
986                 if (str->str_str_len > str->str_max_len) {
987                         return False;
988                 }
989                 str->buffer = PRS_ALLOC_MEM(ps,unsigned char, str->str_max_len);
990                 if (str->buffer == NULL)
991                         return False;
992         }
993
994         if (UNMARSHALLING(ps)) {
995                 for (i = 0; i < str->str_str_len; i++)
996                         str->buffer[i] = CVAL(q,i);
997         } else {
998                 for (i = 0; i < str->str_str_len; i++)
999                         SCVAL(q, i, str->buffer[i]);
1000         }
1001
1002         DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset, name));
1003         if (charmode)
1004                 print_asc(5, (unsigned char*)str->buffer, str->str_str_len);
1005         else {
1006                 for (i = 0; i < str->str_str_len; i++)
1007                         DEBUG(5,("%02x ", str->buffer[i]));
1008         }
1009         DEBUG(5,("\n"));
1010
1011         ps->data_offset += str->str_str_len;
1012
1013         return True;
1014 }
1015
1016 /******************************************************************
1017  Stream a unicode string, length/buffer specified separately,
1018  in uint16 chars. The unicode string is already in little-endian format.
1019  ********************************************************************/
1020
1021 BOOL prs_unistr2(BOOL charmode, const char *name, prs_struct *ps, int depth, UNISTR2 *str)
1022 {
1023         char *p;
1024         char *q = prs_mem_get(ps, str->uni_str_len * sizeof(uint16));
1025         if (q == NULL)
1026                 return False;
1027
1028         /* If the string is empty, we don't have anything to stream */
1029         if (str->uni_str_len==0)
1030                 return True;
1031
1032         if (UNMARSHALLING(ps)) {
1033                 if (str->uni_str_len > str->uni_max_len) {
1034                         return False;
1035                 }
1036                 str->buffer = PRS_ALLOC_MEM(ps,uint16,str->uni_max_len);
1037                 if (str->buffer == NULL)
1038                         return False;
1039         }
1040
1041         p = (char *)str->buffer;
1042
1043         dbg_rw_punival(charmode, name, depth, ps, q, p, str->uni_str_len);
1044         
1045         ps->data_offset += (str->uni_str_len * sizeof(uint16));
1046
1047         return True;
1048 }
1049
1050 /******************************************************************
1051  Stream a unicode string, length/buffer specified separately,
1052  in uint16 chars. The unicode string is already in little-endian format.
1053  ********************************************************************/
1054
1055 BOOL prs_unistr3(BOOL charmode, const char *name, UNISTR3 *str, prs_struct *ps, int depth)
1056 {
1057         char *p;
1058         char *q = prs_mem_get(ps, str->uni_str_len * sizeof(uint16));
1059         if (q == NULL)
1060                 return False;
1061
1062         if (UNMARSHALLING(ps)) {
1063                 str->str.buffer = PRS_ALLOC_MEM(ps,uint16,str->uni_str_len);
1064                 if (str->str.buffer == NULL)
1065                         return False;
1066         }
1067
1068         p = (char *)str->str.buffer;
1069
1070         dbg_rw_punival(charmode, name, depth, ps, q, p, str->uni_str_len);
1071         ps->data_offset += (str->uni_str_len * sizeof(uint16));
1072
1073         return True;
1074 }
1075
1076 /*******************************************************************
1077  Stream a unicode  null-terminated string. As the string is already
1078  in little-endian format then do it as a stream of bytes.
1079  ********************************************************************/
1080
1081 BOOL prs_unistr(const char *name, prs_struct *ps, int depth, UNISTR *str)
1082 {
1083         unsigned int len = 0;
1084         unsigned char *p = (unsigned char *)str->buffer;
1085         uint8 *start;
1086         char *q;
1087         uint32 max_len;
1088         uint16* ptr;
1089
1090         if (MARSHALLING(ps)) {
1091
1092                 for(len = 0; str->buffer[len] != 0; len++)
1093                         ;
1094
1095                 q = prs_mem_get(ps, (len+1)*2);
1096                 if (q == NULL)
1097                         return False;
1098
1099                 start = (uint8*)q;
1100
1101                 for(len = 0; str->buffer[len] != 0; len++) {
1102                         if(ps->bigendian_data) {
1103                                 /* swap bytes - p is little endian, q is big endian. */
1104                                 q[0] = (char)p[1];
1105                                 q[1] = (char)p[0];
1106                                 p += 2;
1107                                 q += 2;
1108                         } 
1109                         else 
1110                         {
1111                                 q[0] = (char)p[0];
1112                                 q[1] = (char)p[1];
1113                                 p += 2;
1114                                 q += 2;
1115                         }
1116                 }
1117
1118                 /*
1119                  * even if the string is 'empty' (only an \0 char)
1120                  * at this point the leading \0 hasn't been parsed.
1121                  * so parse it now
1122                  */
1123
1124                 q[0] = 0;
1125                 q[1] = 0;
1126                 q += 2;
1127
1128                 len++;
1129
1130                 DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset, name));
1131                 print_asc(5, (unsigned char*)start, 2*len);     
1132                 DEBUG(5, ("\n"));
1133         }
1134         else { /* unmarshalling */
1135         
1136                 uint32 alloc_len = 0;
1137                 q = ps->data_p + prs_offset(ps);
1138
1139                 /*
1140                  * Work out how much space we need and talloc it.
1141                  */
1142                 max_len = (ps->buffer_size - ps->data_offset)/sizeof(uint16);
1143
1144                 /* the test of the value of *ptr helps to catch the circumstance
1145                    where we have an emtpty (non-existent) string in the buffer */
1146                 for ( ptr = (uint16 *)q; *ptr++ && (alloc_len <= max_len); alloc_len++)
1147                         /* do nothing */ 
1148                         ;
1149
1150                 if (alloc_len < max_len)
1151                         alloc_len += 1;
1152
1153                 /* should we allocate anything at all? */
1154                 str->buffer = PRS_ALLOC_MEM(ps,uint16,alloc_len);
1155                 if ((str->buffer == NULL) && (alloc_len > 0))
1156                         return False;
1157
1158                 p = (unsigned char *)str->buffer;
1159
1160                 len = 0;
1161                 /* the (len < alloc_len) test is to prevent us from overwriting
1162                    memory that is not ours...if we get that far, we have a non-null
1163                    terminated string in the buffer and have messed up somewhere */
1164                 while ((len < alloc_len) && (*(uint16 *)q != 0)) {
1165                         if(ps->bigendian_data) 
1166                         {
1167                                 /* swap bytes - q is big endian, p is little endian. */
1168                                 p[0] = (unsigned char)q[1];
1169                                 p[1] = (unsigned char)q[0];
1170                                 p += 2;
1171                                 q += 2;
1172                         } else {
1173
1174                                 p[0] = (unsigned char)q[0];
1175                                 p[1] = (unsigned char)q[1];
1176                                 p += 2;
1177                                 q += 2;
1178                         }
1179
1180                         len++;
1181                 } 
1182                 if (len < alloc_len) {
1183                         /* NULL terminate the UNISTR */
1184                         str->buffer[len++] = '\0';
1185                 }
1186
1187                 DEBUG(5,("%s%04x %s: ", tab_depth(depth), ps->data_offset, name));
1188                 print_asc(5, (unsigned char*)str->buffer, 2*len);       
1189                 DEBUG(5, ("\n"));
1190         }
1191
1192         /* set the offset in the prs_struct; 'len' points to the
1193            terminiating NULL in the UNISTR so we need to go one more
1194            uint16 */
1195         ps->data_offset += (len)*2;
1196         
1197         return True;
1198 }
1199
1200
1201 /*******************************************************************
1202  Stream a null-terminated string.  len is strlen, and therefore does
1203  not include the null-termination character.
1204  ********************************************************************/
1205
1206 BOOL prs_string(const char *name, prs_struct *ps, int depth, char *str, int max_buf_size)
1207 {
1208         char *q;
1209         int i;
1210         int len;
1211
1212         if (UNMARSHALLING(ps))
1213                 len = strlen(&ps->data_p[ps->data_offset]);
1214         else
1215                 len = strlen(str);
1216
1217         len = MIN(len, (max_buf_size-1));
1218
1219         q = prs_mem_get(ps, len+1);
1220         if (q == NULL)
1221                 return False;
1222
1223         for(i = 0; i < len; i++) {
1224                 if (UNMARSHALLING(ps))
1225                         str[i] = q[i];
1226                 else
1227                         q[i] = str[i];
1228         }
1229
1230         /* The terminating null. */
1231         str[i] = '\0';
1232
1233         if (MARSHALLING(ps)) {
1234                 q[i] = '\0';
1235         }
1236
1237         ps->data_offset += len+1;
1238
1239         dump_data(5+depth, q, len);
1240
1241         return True;
1242 }
1243
1244 /*******************************************************************
1245  prs_uint16 wrapper. Call this and it sets up a pointer to where the
1246  uint16 should be stored, or gets the size if reading.
1247  ********************************************************************/
1248
1249 BOOL prs_uint16_pre(const char *name, prs_struct *ps, int depth, uint16 *data16, uint32 *offset)
1250 {
1251         *offset = ps->data_offset;
1252         if (UNMARSHALLING(ps)) {
1253                 /* reading. */
1254                 return prs_uint16(name, ps, depth, data16);
1255         } else {
1256                 char *q = prs_mem_get(ps, sizeof(uint16));
1257                 if(q ==NULL)
1258                         return False;
1259                 ps->data_offset += sizeof(uint16);
1260         }
1261         return True;
1262 }
1263
1264 /*******************************************************************
1265  prs_uint16 wrapper.  call this and it retrospectively stores the size.
1266  does nothing on reading, as that is already handled by ...._pre()
1267  ********************************************************************/
1268
1269 BOOL prs_uint16_post(const char *name, prs_struct *ps, int depth, uint16 *data16,
1270                                 uint32 ptr_uint16, uint32 start_offset)
1271 {
1272         if (MARSHALLING(ps)) {
1273                 /* 
1274                  * Writing - temporarily move the offset pointer.
1275                  */
1276                 uint16 data_size = ps->data_offset - start_offset;
1277                 uint32 old_offset = ps->data_offset;
1278
1279                 ps->data_offset = ptr_uint16;
1280                 if(!prs_uint16(name, ps, depth, &data_size)) {
1281                         ps->data_offset = old_offset;
1282                         return False;
1283                 }
1284                 ps->data_offset = old_offset;
1285         } else {
1286                 ps->data_offset = start_offset + (uint32)(*data16);
1287         }
1288         return True;
1289 }
1290
1291 /*******************************************************************
1292  prs_uint32 wrapper. Call this and it sets up a pointer to where the
1293  uint32 should be stored, or gets the size if reading.
1294  ********************************************************************/
1295
1296 BOOL prs_uint32_pre(const char *name, prs_struct *ps, int depth, uint32 *data32, uint32 *offset)
1297 {
1298         *offset = ps->data_offset;
1299         if (UNMARSHALLING(ps) && (data32 != NULL)) {
1300                 /* reading. */
1301                 return prs_uint32(name, ps, depth, data32);
1302         } else {
1303                 ps->data_offset += sizeof(uint32);
1304         }
1305         return True;
1306 }
1307
1308 /*******************************************************************
1309  prs_uint32 wrapper.  call this and it retrospectively stores the size.
1310  does nothing on reading, as that is already handled by ...._pre()
1311  ********************************************************************/
1312
1313 BOOL prs_uint32_post(const char *name, prs_struct *ps, int depth, uint32 *data32,
1314                                 uint32 ptr_uint32, uint32 data_size)
1315 {
1316         if (MARSHALLING(ps)) {
1317                 /* 
1318                  * Writing - temporarily move the offset pointer.
1319                  */
1320                 uint32 old_offset = ps->data_offset;
1321                 ps->data_offset = ptr_uint32;
1322                 if(!prs_uint32(name, ps, depth, &data_size)) {
1323                         ps->data_offset = old_offset;
1324                         return False;
1325                 }
1326                 ps->data_offset = old_offset;
1327         }
1328         return True;
1329 }
1330
1331 /* useful function to store a structure in rpc wire format */
1332 int tdb_prs_store(TDB_CONTEXT *tdb, char *keystr, prs_struct *ps)
1333 {
1334     TDB_DATA kbuf, dbuf;
1335     kbuf.dptr = keystr;
1336     kbuf.dsize = strlen(keystr)+1;
1337     dbuf.dptr = ps->data_p;
1338     dbuf.dsize = prs_offset(ps);
1339     return tdb_store(tdb, kbuf, dbuf, TDB_REPLACE);
1340 }
1341
1342 /* useful function to fetch a structure into rpc wire format */
1343 int tdb_prs_fetch(TDB_CONTEXT *tdb, char *keystr, prs_struct *ps, TALLOC_CTX *mem_ctx)
1344 {
1345     TDB_DATA kbuf, dbuf;
1346     kbuf.dptr = keystr;
1347     kbuf.dsize = strlen(keystr)+1;
1348
1349     dbuf = tdb_fetch(tdb, kbuf);
1350     if (!dbuf.dptr)
1351             return -1;
1352
1353     prs_init(ps, 0, mem_ctx, UNMARSHALL);
1354     prs_give_memory(ps, dbuf.dptr, dbuf.dsize, True);
1355
1356     return 0;
1357
1358
1359 /*******************************************************************
1360  hash a stream.
1361  ********************************************************************/
1362
1363 BOOL prs_hash1(prs_struct *ps, uint32 offset, uint8 sess_key[16], int len)
1364 {
1365         char *q;
1366
1367         q = ps->data_p;
1368         q = &q[offset];
1369
1370 #ifdef DEBUG_PASSWORD
1371         DEBUG(100, ("prs_hash1\n"));
1372         dump_data(100, sess_key, 16);
1373         dump_data(100, q, len);
1374 #endif
1375         SamOEMhash((uchar *) q, sess_key, len);
1376
1377 #ifdef DEBUG_PASSWORD
1378         dump_data(100, q, len);
1379 #endif
1380
1381         return True;
1382 }
1383
1384 /*******************************************************************
1385  Create a digest over the entire packet (including the data), and 
1386  MD5 it with the session key.
1387  ********************************************************************/
1388
1389 static void netsec_digest(struct netsec_auth_struct *a,
1390                           int auth_flags,
1391                           RPC_AUTH_NETSEC_CHK * verf,
1392                           char *data, size_t data_len,
1393                           uchar digest_final[16]) 
1394 {
1395         uchar whole_packet_digest[16];
1396         static uchar zeros[4];
1397         struct MD5Context ctx3;
1398         
1399         /* verfiy the signature on the packet by MD5 over various bits */
1400         MD5Init(&ctx3);
1401         /* use our sequence number, which ensures the packet is not
1402            out of order */
1403         MD5Update(&ctx3, zeros, sizeof(zeros));
1404         MD5Update(&ctx3, verf->sig, sizeof(verf->sig));
1405         if (auth_flags & AUTH_PIPE_SEAL) {
1406                 MD5Update(&ctx3, verf->confounder, sizeof(verf->confounder));
1407         }
1408         MD5Update(&ctx3, (const unsigned char *)data, data_len);
1409         MD5Final(whole_packet_digest, &ctx3);
1410         dump_data_pw("whole_packet_digest:\n", whole_packet_digest, sizeof(whole_packet_digest));
1411         
1412         /* MD5 this result and the session key, to prove that
1413            only a valid client could had produced this */
1414         hmac_md5(a->sess_key, whole_packet_digest, sizeof(whole_packet_digest), digest_final);
1415 }
1416
1417 /*******************************************************************
1418  Calculate the key with which to encode the data payload 
1419  ********************************************************************/
1420
1421 static void netsec_get_sealing_key(struct netsec_auth_struct *a,
1422                                    RPC_AUTH_NETSEC_CHK *verf,
1423                                    uchar sealing_key[16]) 
1424 {
1425         static uchar zeros[4];
1426         uchar digest2[16];
1427         uchar sess_kf0[16];
1428         int i;
1429
1430         for (i = 0; i < sizeof(sess_kf0); i++) {
1431                 sess_kf0[i] = a->sess_key[i] ^ 0xf0;
1432         }
1433         
1434         dump_data_pw("sess_kf0:\n", sess_kf0, sizeof(sess_kf0));
1435         
1436         /* MD5 of sess_kf0 and 4 zero bytes */
1437         hmac_md5(sess_kf0, zeros, 0x4, digest2);
1438         dump_data_pw("digest2:\n", digest2, sizeof(digest2));
1439         
1440         /* MD5 of the above result, plus 8 bytes of sequence number */
1441         hmac_md5(digest2, verf->seq_num, sizeof(verf->seq_num), sealing_key);
1442         dump_data_pw("sealing_key:\n", sealing_key, 16);
1443 }
1444
1445 /*******************************************************************
1446  Encode or Decode the sequence number (which is symmetric)
1447  ********************************************************************/
1448
1449 static void netsec_deal_with_seq_num(struct netsec_auth_struct *a,
1450                                      RPC_AUTH_NETSEC_CHK *verf)
1451 {
1452         static uchar zeros[4];
1453         uchar sequence_key[16];
1454         uchar digest1[16];
1455
1456         hmac_md5(a->sess_key, zeros, sizeof(zeros), digest1);
1457         dump_data_pw("(sequence key) digest1:\n", digest1, sizeof(digest1));
1458
1459         hmac_md5(digest1, verf->packet_digest, 8, sequence_key);
1460
1461         dump_data_pw("sequence_key:\n", sequence_key, sizeof(sequence_key));
1462
1463         dump_data_pw("seq_num (before):\n", verf->seq_num, sizeof(verf->seq_num));
1464         SamOEMhash(verf->seq_num, sequence_key, 8);
1465         dump_data_pw("seq_num (after):\n", verf->seq_num, sizeof(verf->seq_num));
1466 }
1467
1468 /*******************************************************************
1469 creates an RPC_AUTH_NETSEC_CHK structure.
1470 ********************************************************************/
1471
1472 static BOOL init_rpc_auth_netsec_chk(RPC_AUTH_NETSEC_CHK * chk,
1473                               const uchar sig[8],
1474                               const uchar packet_digest[8],
1475                               const uchar seq_num[8], const uchar confounder[8])
1476 {
1477         if (chk == NULL)
1478                 return False;
1479
1480         memcpy(chk->sig, sig, sizeof(chk->sig));
1481         memcpy(chk->packet_digest, packet_digest, sizeof(chk->packet_digest));
1482         memcpy(chk->seq_num, seq_num, sizeof(chk->seq_num));
1483         memcpy(chk->confounder, confounder, sizeof(chk->confounder));
1484
1485         return True;
1486 }
1487
1488 /*******************************************************************
1489  Encode a blob of data using the netsec (schannel) alogrithm, also produceing
1490  a checksum over the original data.  We currently only support
1491  signing and sealing togeather - the signing-only code is close, but not
1492  quite compatible with what MS does.
1493  ********************************************************************/
1494
1495 void netsec_encode(struct netsec_auth_struct *a, int auth_flags, 
1496                    enum netsec_direction direction,
1497                    RPC_AUTH_NETSEC_CHK * verf,
1498                    char *data, size_t data_len)
1499 {
1500         uchar digest_final[16];
1501         uchar confounder[8];
1502         uchar seq_num[8];
1503         static const uchar nullbytes[8];
1504
1505         static const uchar netsec_seal_sig[8] = NETSEC_SEAL_SIGNATURE;
1506         static const uchar netsec_sign_sig[8] = NETSEC_SIGN_SIGNATURE;
1507         const uchar *netsec_sig = NULL;
1508
1509         DEBUG(10,("SCHANNEL: netsec_encode seq_num=%d data_len=%lu\n", a->seq_num, (unsigned long)data_len));
1510         
1511         if (auth_flags & AUTH_PIPE_SEAL) {
1512                 netsec_sig = netsec_seal_sig;
1513         } else if (auth_flags & AUTH_PIPE_SIGN) {
1514                 netsec_sig = netsec_sign_sig;
1515         }
1516
1517         /* fill the 'confounder' with random data */
1518         generate_random_buffer(confounder, sizeof(confounder));
1519
1520         dump_data_pw("a->sess_key:\n", a->sess_key, sizeof(a->sess_key));
1521
1522         RSIVAL(seq_num, 0, a->seq_num);
1523
1524         switch (direction) {
1525         case SENDER_IS_INITIATOR:
1526                 SIVAL(seq_num, 4, 0x80);
1527                 break;
1528         case SENDER_IS_ACCEPTOR:
1529                 SIVAL(seq_num, 4, 0x0);
1530                 break;
1531         }
1532
1533         dump_data_pw("verf->seq_num:\n", seq_num, sizeof(verf->seq_num));
1534
1535         init_rpc_auth_netsec_chk(verf, netsec_sig, nullbytes,
1536                                  seq_num, confounder);
1537                                 
1538         /* produce a digest of the packet to prove it's legit (before we seal it) */
1539         netsec_digest(a, auth_flags, verf, data, data_len, digest_final);
1540         memcpy(verf->packet_digest, digest_final, sizeof(verf->packet_digest));
1541
1542         if (auth_flags & AUTH_PIPE_SEAL) {
1543                 uchar sealing_key[16];
1544
1545                 /* get the key to encode the data with */
1546                 netsec_get_sealing_key(a, verf, sealing_key);
1547
1548                 /* encode the verification data */
1549                 dump_data_pw("verf->confounder:\n", verf->confounder, sizeof(verf->confounder));
1550                 SamOEMhash(verf->confounder, sealing_key, 8);
1551
1552                 dump_data_pw("verf->confounder_enc:\n", verf->confounder, sizeof(verf->confounder));
1553                 
1554                 /* encode the packet payload */
1555                 dump_data_pw("data:\n", (const unsigned char *)data, data_len);
1556                 SamOEMhash((unsigned char *)data, sealing_key, data_len);
1557                 dump_data_pw("data_enc:\n", (const unsigned char *)data, data_len);
1558         }
1559
1560         /* encode the sequence number (key based on packet digest) */
1561         /* needs to be done after the sealing, as the original version 
1562            is used in the sealing stuff... */
1563         netsec_deal_with_seq_num(a, verf);
1564
1565         return;
1566 }
1567
1568 /*******************************************************************
1569  Decode a blob of data using the netsec (schannel) alogrithm, also verifiying
1570  a checksum over the original data.  We currently can verify signed messages,
1571  as well as decode sealed messages
1572  ********************************************************************/
1573
1574 BOOL netsec_decode(struct netsec_auth_struct *a, int auth_flags,
1575                    enum netsec_direction direction, 
1576                    RPC_AUTH_NETSEC_CHK * verf, char *data, size_t data_len)
1577 {
1578         uchar digest_final[16];
1579
1580         static const uchar netsec_seal_sig[8] = NETSEC_SEAL_SIGNATURE;
1581         static const uchar netsec_sign_sig[8] = NETSEC_SIGN_SIGNATURE;
1582         const uchar *netsec_sig = NULL;
1583
1584         uchar seq_num[8];
1585
1586         DEBUG(10,("SCHANNEL: netsec_encode seq_num=%d data_len=%lu\n", a->seq_num, (unsigned long)data_len));
1587         
1588         if (auth_flags & AUTH_PIPE_SEAL) {
1589                 netsec_sig = netsec_seal_sig;
1590         } else if (auth_flags & AUTH_PIPE_SIGN) {
1591                 netsec_sig = netsec_sign_sig;
1592         }
1593
1594         /* Create the expected sequence number for comparison */
1595         RSIVAL(seq_num, 0, a->seq_num);
1596
1597         switch (direction) {
1598         case SENDER_IS_INITIATOR:
1599                 SIVAL(seq_num, 4, 0x80);
1600                 break;
1601         case SENDER_IS_ACCEPTOR:
1602                 SIVAL(seq_num, 4, 0x0);
1603                 break;
1604         }
1605
1606         DEBUG(10,("SCHANNEL: netsec_decode seq_num=%d data_len=%lu\n", a->seq_num, (unsigned long)data_len));
1607         dump_data_pw("a->sess_key:\n", a->sess_key, sizeof(a->sess_key));
1608
1609         dump_data_pw("seq_num:\n", seq_num, sizeof(seq_num));
1610
1611         /* extract the sequence number (key based on supplied packet digest) */
1612         /* needs to be done before the sealing, as the original version 
1613            is used in the sealing stuff... */
1614         netsec_deal_with_seq_num(a, verf);
1615
1616         if (memcmp(verf->seq_num, seq_num, sizeof(seq_num))) {
1617                 /* don't even bother with the below if the sequence number is out */
1618                 /* The sequence number is MD5'ed with a key based on the whole-packet
1619                    digest, as supplied by the client.  We check that it's a valid 
1620                    checksum after the decode, below
1621                 */
1622                 DEBUG(2, ("netsec_decode: FAILED: packet sequence number:\n"));
1623                 dump_data(2, (const char*)verf->seq_num, sizeof(verf->seq_num));
1624                 DEBUG(2, ("should be:\n"));
1625                 dump_data(2, (const char*)seq_num, sizeof(seq_num));
1626
1627                 return False;
1628         }
1629
1630         if (memcmp(verf->sig, netsec_sig, sizeof(verf->sig))) {
1631                 /* Validate that the other end sent the expected header */
1632                 DEBUG(2, ("netsec_decode: FAILED: packet header:\n"));
1633                 dump_data(2, (const char*)verf->sig, sizeof(verf->sig));
1634                 DEBUG(2, ("should be:\n"));
1635                 dump_data(2, (const char*)netsec_sig, sizeof(netsec_sig));
1636                 return False;
1637         }
1638
1639         if (auth_flags & AUTH_PIPE_SEAL) {
1640                 uchar sealing_key[16];
1641                 
1642                 /* get the key to extract the data with */
1643                 netsec_get_sealing_key(a, verf, sealing_key);
1644
1645                 /* extract the verification data */
1646                 dump_data_pw("verf->confounder:\n", verf->confounder, 
1647                              sizeof(verf->confounder));
1648                 SamOEMhash(verf->confounder, sealing_key, 8);
1649
1650                 dump_data_pw("verf->confounder_dec:\n", verf->confounder, 
1651                              sizeof(verf->confounder));
1652                 
1653                 /* extract the packet payload */
1654                 dump_data_pw("data   :\n", (const unsigned char *)data, data_len);
1655                 SamOEMhash((unsigned char *)data, sealing_key, data_len);
1656                 dump_data_pw("datadec:\n", (const unsigned char *)data, data_len);      
1657         }
1658
1659         /* digest includes 'data' after unsealing */
1660         netsec_digest(a, auth_flags, verf, data, data_len, digest_final);
1661
1662         dump_data_pw("Calculated digest:\n", digest_final, 
1663                      sizeof(digest_final));
1664         dump_data_pw("verf->packet_digest:\n", verf->packet_digest, 
1665                      sizeof(verf->packet_digest));
1666         
1667         /* compare - if the client got the same result as us, then
1668            it must know the session key */
1669         return (memcmp(digest_final, verf->packet_digest, 
1670                        sizeof(verf->packet_digest)) == 0);
1671 }