merging for 2.2.6pre1
[Samba.git] / source / rpc_parse / parse_reg.c
blobc26aaee3c30de6b5ac272b8ca077e686e4a2ab8c
1 /*
2 * Unix SMB/Netbios implementation.
3 * Version 1.9.
4 * RPC Pipe client / server routines
5 * Copyright (C) Andrew Tridgell 1992-1997,
6 * Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
7 * Copyright (C) Paul Ashton 1997.
8 * Copyright (C) Marc Jacobsen 1999.
9 * Copyright (C) Simo Sorce 2000.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "includes.h"
28 /*******************************************************************
29 Inits a structure.
30 ********************************************************************/
32 void init_reg_q_open_hkcr(REG_Q_OPEN_HKCR *q_o,
33 uint16 unknown_0, uint32 level)
35 q_o->ptr = 1;
36 q_o->unknown_0 = unknown_0;
37 q_o->unknown_1 = 0x0; /* random - changes */
38 q_o->level = level;
41 /*******************************************************************
42 reads or writes a structure.
43 ********************************************************************/
45 BOOL reg_io_q_open_hkcr(char *desc, REG_Q_OPEN_HKCR *r_q, prs_struct *ps, int depth)
47 if (r_q == NULL)
48 return False;
50 prs_debug(ps, depth, desc, "reg_io_q_open_hkcr");
51 depth++;
53 if(!prs_align(ps))
54 return False;
56 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
57 return False;
59 if (r_q->ptr != 0) {
60 if(!prs_uint16("unknown_0", ps, depth, &r_q->unknown_0))
61 return False;
62 if(!prs_uint16("unknown_1", ps, depth, &r_q->unknown_1))
63 return False;
64 if(!prs_uint32("level ", ps, depth, &r_q->level))
65 return False;
68 return True;
72 /*******************************************************************
73 reads or writes a structure.
74 ********************************************************************/
76 BOOL reg_io_r_open_hkcr(char *desc, REG_R_OPEN_HKCR *r_r, prs_struct *ps, int depth)
78 if (r_r == NULL)
79 return False;
81 prs_debug(ps, depth, desc, "reg_io_r_open_hkcr");
82 depth++;
84 if(!prs_align(ps))
85 return False;
87 if(!smb_io_pol_hnd("", &r_r->pol, ps, depth))
88 return False;
90 if(!prs_ntstatus("status", ps, depth, &r_r->status))
91 return False;
93 return True;
96 /*******************************************************************
97 Inits a structure.
98 ********************************************************************/
100 void init_reg_q_open_hklm(REG_Q_OPEN_HKLM * q_o,
101 uint16 unknown_0, uint32 access_mask)
103 q_o->ptr = 1;
104 q_o->unknown_0 = unknown_0;
105 q_o->unknown_1 = 0x0; /* random - changes */
106 q_o->access_mask = access_mask;
110 /*******************************************************************
111 reads or writes a structure.
112 ********************************************************************/
113 BOOL reg_io_q_open_hklm(char *desc, REG_Q_OPEN_HKLM * r_q, prs_struct *ps,
114 int depth)
116 if (r_q == NULL)
117 return False;
119 prs_debug(ps, depth, desc, "reg_io_q_open_hklm");
120 depth++;
122 if (!prs_align(ps))
123 return False;
125 if (!prs_uint32("ptr ", ps, depth, &(r_q->ptr)))
126 return False;
127 if (r_q->ptr != 0)
129 if (!prs_uint16("unknown_0", ps, depth, &(r_q->unknown_0)))
130 return False;
131 if (!prs_uint16("unknown_1", ps, depth, &(r_q->unknown_1)))
132 return False;
133 if (!prs_uint32("access_mask", ps, depth, &(r_q->access_mask)))
134 return False;
137 return True;
141 /*******************************************************************
142 reads or writes a structure.
143 ********************************************************************/
144 BOOL reg_io_r_open_hklm(char *desc, REG_R_OPEN_HKLM * r_r, prs_struct *ps,
145 int depth)
147 if (r_r == NULL)
148 return False;
150 prs_debug(ps, depth, desc, "reg_io_r_open_hklm");
151 depth++;
153 if (!prs_align(ps))
154 return False;
156 if (!smb_io_pol_hnd("", &r_r->pol, ps, depth))
157 return False;
159 if (!prs_ntstatus("status", ps, depth, &r_r->status))
160 return False;
162 return True;
166 /*******************************************************************
167 Inits a structure.
168 ********************************************************************/
170 void init_reg_q_flush_key(REG_Q_FLUSH_KEY *q_u, POLICY_HND *pol)
172 memcpy(&q_u->pol, pol, sizeof(q_u->pol));
175 /*******************************************************************
176 reads or writes a structure.
177 ********************************************************************/
179 BOOL reg_io_q_flush_key(char *desc, REG_Q_FLUSH_KEY *r_q, prs_struct *ps, int depth)
181 if (r_q == NULL)
182 return False;
184 prs_debug(ps, depth, desc, "reg_io_q_flush_key");
185 depth++;
187 if(!prs_align(ps))
188 return False;
190 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
191 return False;
193 return True;
196 /*******************************************************************
197 reads or writes a structure.
198 ********************************************************************/
200 BOOL reg_io_r_flush_key(char *desc, REG_R_FLUSH_KEY *r_r, prs_struct *ps, int depth)
202 if (r_r == NULL)
203 return False;
205 prs_debug(ps, depth, desc, "reg_io_r_flush_key");
206 depth++;
208 if(!prs_align(ps))
209 return False;
211 if(!prs_ntstatus("status", ps, depth, &r_r->status))
212 return False;
214 return True;
217 /*******************************************************************
218 reads or writes SEC_DESC_BUF and SEC_DATA structures.
219 ********************************************************************/
221 static BOOL reg_io_hdrbuf_sec(uint32 ptr, uint32 *ptr3, BUFHDR *hdr_sec, SEC_DESC_BUF *data, prs_struct *ps, int depth)
223 if (ptr != 0) {
224 uint32 hdr_offset;
225 uint32 old_offset;
226 if(!smb_io_hdrbuf_pre("hdr_sec", hdr_sec, ps, depth, &hdr_offset))
227 return False;
229 old_offset = prs_offset(ps);
231 if (ptr3 != NULL) {
232 if(!prs_uint32("ptr3", ps, depth, ptr3))
233 return False;
236 if (ptr3 == NULL || *ptr3 != 0) {
237 if(!sec_io_desc_buf("data ", &data, ps, depth)) /* JRA - this line is probably wrong... */
238 return False;
241 if(!smb_io_hdrbuf_post("hdr_sec", hdr_sec, ps, depth, hdr_offset,
242 data->max_len, data->len))
243 return False;
244 if(!prs_set_offset(ps, old_offset + data->len + sizeof(uint32) * ((ptr3 != NULL) ? 5 : 3)))
245 return False;
247 if(!prs_align(ps))
248 return False;
251 return True;
254 /*******************************************************************
255 Inits a structure.
256 ********************************************************************/
258 void init_reg_q_create_key(REG_Q_CREATE_KEY *q_c, POLICY_HND *hnd,
259 char *name, char *class, SEC_ACCESS *sam_access,
260 SEC_DESC_BUF *sec_buf)
262 int len_name = name != NULL ? strlen(name ) + 1: 0;
263 int len_class = class != NULL ? strlen(class) + 1: 0;
265 ZERO_STRUCTP(q_c);
267 memcpy(&q_c->pnt_pol, hnd, sizeof(q_c->pnt_pol));
269 init_uni_hdr(&q_c->hdr_name, len_name);
270 init_unistr2(&q_c->uni_name, name, len_name);
272 init_uni_hdr(&q_c->hdr_class, len_class);
273 init_unistr2(&q_c->uni_class, class, len_class);
275 q_c->reserved = 0x00000000;
276 memcpy(&q_c->sam_access, sam_access, sizeof(q_c->sam_access));
278 q_c->ptr1 = 1;
279 q_c->sec_info = DACL_SECURITY_INFORMATION | SACL_SECURITY_INFORMATION;
281 q_c->data = sec_buf;
282 q_c->ptr2 = 1;
283 init_buf_hdr(&q_c->hdr_sec, sec_buf->len, sec_buf->len);
284 q_c->ptr3 = 1;
285 q_c->unknown_2 = 0x00000000;
288 /*******************************************************************
289 reads or writes a structure.
290 ********************************************************************/
292 BOOL reg_io_q_create_key(char *desc, REG_Q_CREATE_KEY *r_q, prs_struct *ps, int depth)
294 if (r_q == NULL)
295 return False;
297 prs_debug(ps, depth, desc, "reg_io_q_create_key");
298 depth++;
300 if(!prs_align(ps))
301 return False;
303 if(!smb_io_pol_hnd("", &r_q->pnt_pol, ps, depth))
304 return False;
306 if(!smb_io_unihdr ("", &r_q->hdr_name, ps, depth))
307 return False;
308 if(!smb_io_unistr2("", &r_q->uni_name, r_q->hdr_name.buffer, ps, depth))
309 return False;
310 if(!prs_align(ps))
311 return False;
313 if(!smb_io_unihdr ("", &r_q->hdr_class, ps, depth))
314 return False;
315 if(!smb_io_unistr2("", &r_q->uni_class, r_q->hdr_class.buffer, ps, depth))
316 return False;
317 if(!prs_align(ps))
318 return False;
320 if(!prs_uint32("reserved", ps, depth, &r_q->reserved))
321 return False;
322 if(!sec_io_access("sam_access", &r_q->sam_access, ps, depth))
323 return False;
325 if(!prs_uint32("ptr1", ps, depth, &r_q->ptr1))
326 return False;
328 if (r_q->ptr1 != 0) {
329 if(!prs_uint32("sec_info", ps, depth, &r_q->sec_info))
330 return False;
333 if(!prs_uint32("ptr2", ps, depth, &r_q->ptr2))
334 return False;
335 if(!reg_io_hdrbuf_sec(r_q->ptr2, &r_q->ptr3, &r_q->hdr_sec, r_q->data, ps, depth))
336 return False;
338 if(!prs_uint32("unknown_2", ps, depth, &r_q->unknown_2))
339 return False;
341 return True;
344 /*******************************************************************
345 reads or writes a structure.
346 ********************************************************************/
348 BOOL reg_io_r_create_key(char *desc, REG_R_CREATE_KEY *r_r, prs_struct *ps, int depth)
350 if (r_r == NULL)
351 return False;
353 prs_debug(ps, depth, desc, "reg_io_r_create_key");
354 depth++;
356 if(!prs_align(ps))
357 return False;
359 if(!smb_io_pol_hnd("", &r_r->key_pol, ps, depth))
360 return False;
361 if(!prs_uint32("unknown", ps, depth, &r_r->unknown))
362 return False;
364 if(!prs_ntstatus("status", ps, depth, &r_r->status))
365 return False;
367 return True;
371 /*******************************************************************
372 Inits a structure.
373 ********************************************************************/
375 void init_reg_q_delete_val(REG_Q_DELETE_VALUE *q_c, POLICY_HND *hnd,
376 char *name)
378 int len_name = name != NULL ? strlen(name ) + 1: 0;
379 ZERO_STRUCTP(q_c);
381 memcpy(&q_c->pnt_pol, hnd, sizeof(q_c->pnt_pol));
383 init_uni_hdr(&q_c->hdr_name, len_name);
384 init_unistr2(&q_c->uni_name, name, len_name);
387 /*******************************************************************
388 reads or writes a structure.
389 ********************************************************************/
391 BOOL reg_io_q_delete_val(char *desc, REG_Q_DELETE_VALUE *r_q, prs_struct *ps, int depth)
393 if (r_q == NULL)
394 return False;
396 prs_debug(ps, depth, desc, "reg_io_q_delete_val");
397 depth++;
399 if(!prs_align(ps))
400 return False;
402 if(!smb_io_pol_hnd("", &r_q->pnt_pol, ps, depth))
403 return False;
405 if(!smb_io_unihdr ("", &r_q->hdr_name, ps, depth))
406 return False;
407 if(!smb_io_unistr2("", &r_q->uni_name, r_q->hdr_name.buffer, ps, depth))
408 return False;
409 if(!prs_align(ps))
410 return False;
412 return True;
416 /*******************************************************************
417 reads or writes a structure.
418 ********************************************************************/
420 BOOL reg_io_r_delete_val(char *desc, REG_R_DELETE_VALUE *r_r, prs_struct *ps, int depth)
422 if (r_r == NULL)
423 return False;
425 prs_debug(ps, depth, desc, "reg_io_r_delete_val");
426 depth++;
428 if(!prs_align(ps))
429 return False;
431 if(!prs_ntstatus("status", ps, depth, &r_r->status))
432 return False;
434 return True;
437 /*******************************************************************
438 Inits a structure.
439 ********************************************************************/
441 void init_reg_q_delete_key(REG_Q_DELETE_KEY *q_c, POLICY_HND *hnd,
442 char *name)
444 int len_name = name != NULL ? strlen(name ) + 1: 0;
445 ZERO_STRUCTP(q_c);
447 memcpy(&q_c->pnt_pol, hnd, sizeof(q_c->pnt_pol));
449 init_uni_hdr(&q_c->hdr_name, len_name);
450 init_unistr2(&q_c->uni_name, name, len_name);
453 /*******************************************************************
454 reads or writes a structure.
455 ********************************************************************/
457 BOOL reg_io_q_delete_key(char *desc, REG_Q_DELETE_KEY *r_q, prs_struct *ps, int depth)
459 if (r_q == NULL)
460 return False;
462 prs_debug(ps, depth, desc, "reg_io_q_delete_key");
463 depth++;
465 if(!prs_align(ps))
466 return False;
468 if(!smb_io_pol_hnd("", &r_q->pnt_pol, ps, depth))
469 return False;
471 if(!smb_io_unihdr ("", &r_q->hdr_name, ps, depth))
472 return False;
473 if(!smb_io_unistr2("", &r_q->uni_name, r_q->hdr_name.buffer, ps, depth))
474 return False;
475 if(!prs_align(ps))
476 return False;
478 return True;
481 /*******************************************************************
482 reads or writes a structure.
483 ********************************************************************/
485 BOOL reg_io_r_delete_key(char *desc, REG_R_DELETE_KEY *r_r, prs_struct *ps, int depth)
487 if (r_r == NULL)
488 return False;
490 prs_debug(ps, depth, desc, "reg_io_r_delete_key");
491 depth++;
493 if(!prs_align(ps))
494 return False;
496 if(!prs_ntstatus("status", ps, depth, &r_r->status))
497 return False;
499 return True;
502 /*******************************************************************
503 Inits a structure.
504 ********************************************************************/
506 void init_reg_q_query_key(REG_Q_QUERY_KEY *q_o, POLICY_HND *hnd,
507 uint32 max_class_len)
509 ZERO_STRUCTP(q_o);
511 memcpy(&q_o->pol, hnd, sizeof(q_o->pol));
512 init_uni_hdr(&q_o->hdr_class, max_class_len);
513 q_o->uni_class.uni_max_len = max_class_len;
516 /*******************************************************************
517 reads or writes a structure.
518 ********************************************************************/
520 BOOL reg_io_q_query_key(char *desc, REG_Q_QUERY_KEY *r_q, prs_struct *ps, int depth)
522 if (r_q == NULL)
523 return False;
525 prs_debug(ps, depth, desc, "reg_io_q_query_key");
526 depth++;
528 if(!prs_align(ps))
529 return False;
531 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
532 return False;
533 if(!smb_io_unihdr ("", &r_q->hdr_class, ps, depth))
534 return False;
535 if(!smb_io_unistr2("", &r_q->uni_class, r_q->hdr_class.buffer, ps, depth))
536 return False;
538 if(!prs_align(ps))
539 return False;
541 return True;
545 /*******************************************************************
546 reads or writes a structure.
547 ********************************************************************/
549 BOOL reg_io_r_query_key(char *desc, REG_R_QUERY_KEY *r_r, prs_struct *ps, int depth)
551 if (r_r == NULL)
552 return False;
554 prs_debug(ps, depth, desc, "reg_io_r_query_key");
555 depth++;
557 if(!prs_align(ps))
558 return False;
560 if(!smb_io_unihdr ("", &r_r->hdr_class, ps, depth))
561 return False;
562 if(!smb_io_unistr2("", &r_r->uni_class, r_r->hdr_class.buffer, ps, depth))
563 return False;
565 if(!prs_align(ps))
566 return False;
568 if(!prs_uint32("num_subkeys ", ps, depth, &r_r->num_subkeys))
569 return False;
570 if(!prs_uint32("max_subkeylen ", ps, depth, &r_r->max_subkeylen))
571 return False;
572 if(!prs_uint32("mak_subkeysize", ps, depth, &r_r->max_subkeysize))
573 return False;
574 if(!prs_uint32("num_values ", ps, depth, &r_r->num_values))
575 return False;
576 if(!prs_uint32("max_valnamelen", ps, depth, &r_r->max_valnamelen))
577 return False;
578 if(!prs_uint32("max_valbufsize", ps, depth, &r_r->max_valbufsize))
579 return False;
580 if(!prs_uint32("sec_desc ", ps, depth, &r_r->sec_desc))
581 return False;
582 if(!smb_io_time("mod_time ", &r_r->mod_time, ps, depth))
583 return False;
585 if(!prs_ntstatus("status", ps, depth, &r_r->status))
586 return False;
588 return True;
591 /*******************************************************************
592 Inits a structure.
593 ********************************************************************/
595 void init_reg_q_unk_1a(REG_Q_UNK_1A *q_o, POLICY_HND *hnd)
597 memcpy(&q_o->pol, hnd, sizeof(q_o->pol));
600 /*******************************************************************
601 reads or writes a structure.
602 ********************************************************************/
604 BOOL reg_io_q_unk_1a(char *desc, REG_Q_UNK_1A *r_q, prs_struct *ps, int depth)
606 if (r_q == NULL)
607 return False;
609 prs_debug(ps, depth, desc, "reg_io_q_unk_1a");
610 depth++;
612 if(!prs_align(ps))
613 return False;
615 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
616 return False;
618 return True;
621 /*******************************************************************
622 reads or writes a structure.
623 ********************************************************************/
625 BOOL reg_io_r_unk_1a(char *desc, REG_R_UNK_1A *r_r, prs_struct *ps, int depth)
627 if (r_r == NULL)
628 return False;
630 prs_debug(ps, depth, desc, "reg_io_r_unk_1a");
631 depth++;
633 if(!prs_align(ps))
634 return False;
636 if(!prs_uint32("unknown", ps, depth, &r_r->unknown))
637 return False;
638 if(!prs_ntstatus("status" , ps, depth, &r_r->status))
639 return False;
641 return True;
644 /*******************************************************************
645 Inits a structure.
646 ********************************************************************/
648 void init_reg_q_open_hku(REG_Q_OPEN_HKU *q_o,
649 uint16 unknown_0, uint32 level)
651 q_o->ptr = 1;
652 q_o->unknown_0 = unknown_0;
653 q_o->unknown_1 = 0x0; /* random - changes */
654 q_o->level = level;
657 /*******************************************************************
658 reads or writes a structure.
659 ********************************************************************/
661 BOOL reg_io_q_open_hku(char *desc, REG_Q_OPEN_HKU *r_q, prs_struct *ps, int depth)
663 if (r_q == NULL)
664 return False;
666 prs_debug(ps, depth, desc, "reg_io_q_open_hku");
667 depth++;
669 if(!prs_align(ps))
670 return False;
672 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
673 return False;
674 if (r_q->ptr != 0) {
675 if(!prs_uint16("unknown_0", ps, depth, &r_q->unknown_0))
676 return False;
677 if(!prs_uint16("unknown_1", ps, depth, &r_q->unknown_1))
678 return False;
679 if(!prs_uint32("level ", ps, depth, &r_q->level))
680 return False;
683 return True;
686 /*******************************************************************
687 reads or writes a structure.
688 ********************************************************************/
690 BOOL reg_io_r_open_hku(char *desc, REG_R_OPEN_HKU *r_r, prs_struct *ps, int depth)
692 if (r_r == NULL)
693 return False;
695 prs_debug(ps, depth, desc, "reg_io_r_open_hku");
696 depth++;
698 if(!prs_align(ps))
699 return False;
701 if(!smb_io_pol_hnd("", &r_r->pol, ps, depth))
702 return False;
704 if(!prs_ntstatus("status", ps, depth, &r_r->status))
705 return False;
707 return True;
710 /*******************************************************************
711 Inits an REG_Q_CLOSE structure.
712 ********************************************************************/
714 void init_reg_q_close(REG_Q_CLOSE *q_c, POLICY_HND *hnd)
716 DEBUG(5,("init_reg_q_close\n"));
718 memcpy(&q_c->pol, hnd, sizeof(q_c->pol));
721 /*******************************************************************
722 reads or writes a structure.
723 ********************************************************************/
725 BOOL reg_io_q_close(char *desc, REG_Q_CLOSE *q_u, prs_struct *ps, int depth)
727 if (q_u == NULL)
728 return False;
730 prs_debug(ps, depth, desc, "reg_io_q_unknown_1");
731 depth++;
733 if(!prs_align(ps))
734 return False;
736 if(!smb_io_pol_hnd("", &q_u->pol, ps, depth))
737 return False;
738 if(!prs_align(ps))
739 return False;
741 return True;
744 /*******************************************************************
745 reads or writes a structure.
746 ********************************************************************/
748 BOOL reg_io_r_close(char *desc, REG_R_CLOSE *r_u, prs_struct *ps, int depth)
750 if (r_u == NULL)
751 return False;
753 prs_debug(ps, depth, desc, "reg_io_r_unknown_1");
754 depth++;
756 if(!prs_align(ps))
757 return False;
759 if(!smb_io_pol_hnd("", &r_u->pol, ps, depth))
760 return False;
761 if(!prs_align(ps))
762 return False;
764 if(!prs_ntstatus("status", ps, depth, &r_u->status))
765 return False;
767 return True;
770 /*******************************************************************
771 makes a structure.
772 ********************************************************************/
774 void init_reg_q_set_key_sec(REG_Q_SET_KEY_SEC *q_i, POLICY_HND *pol, SEC_DESC_BUF *sec_desc_buf)
776 memcpy(&q_i->pol, pol, sizeof(q_i->pol));
778 q_i->sec_info = DACL_SECURITY_INFORMATION;
780 q_i->ptr = 1;
781 init_buf_hdr(&q_i->hdr_sec, sec_desc_buf->len, sec_desc_buf->len);
782 q_i->data = sec_desc_buf;
785 /*******************************************************************
786 reads or writes a structure.
787 ********************************************************************/
789 BOOL reg_io_q_set_key_sec(char *desc, REG_Q_SET_KEY_SEC *r_q, prs_struct *ps, int depth)
791 if (r_q == NULL)
792 return False;
794 prs_debug(ps, depth, desc, "reg_io_q_set_key_sec");
795 depth++;
797 if(!prs_align(ps))
798 return False;
800 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
801 return False;
803 if(!prs_uint32("sec_info", ps, depth, &r_q->sec_info))
804 return False;
805 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
806 return False;
808 if(!reg_io_hdrbuf_sec(r_q->ptr, NULL, &r_q->hdr_sec, r_q->data, ps, depth))
809 return False;
811 return True;
814 /*******************************************************************
815 reads or writes a structure.
816 ********************************************************************/
818 BOOL reg_io_r_set_key_sec(char *desc, REG_R_SET_KEY_SEC *r_q, prs_struct *ps, int depth)
820 if (r_q == NULL)
821 return False;
823 prs_debug(ps, depth, desc, "reg_io_r_set_key_sec");
824 depth++;
826 if(!prs_align(ps))
827 return False;
829 if(!prs_ntstatus("status", ps, depth, &r_q->status))
830 return False;
832 return True;
836 /*******************************************************************
837 makes a structure.
838 ********************************************************************/
840 void init_reg_q_get_key_sec(REG_Q_GET_KEY_SEC *q_i, POLICY_HND *pol,
841 uint32 sec_buf_size, SEC_DESC_BUF *psdb)
843 memcpy(&q_i->pol, pol, sizeof(q_i->pol));
845 q_i->sec_info = OWNER_SECURITY_INFORMATION |
846 GROUP_SECURITY_INFORMATION |
847 DACL_SECURITY_INFORMATION;
849 q_i->ptr = psdb != NULL ? 1 : 0;
850 q_i->data = psdb;
852 init_buf_hdr(&q_i->hdr_sec, sec_buf_size, 0);
855 /*******************************************************************
856 reads or writes a structure.
857 ********************************************************************/
859 BOOL reg_io_q_get_key_sec(char *desc, REG_Q_GET_KEY_SEC *r_q, prs_struct *ps, int depth)
861 if (r_q == NULL)
862 return False;
864 prs_debug(ps, depth, desc, "reg_io_q_get_key_sec");
865 depth++;
867 if(!prs_align(ps))
868 return False;
870 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
871 return False;
873 if(!prs_uint32("sec_info", ps, depth, &r_q->sec_info))
874 return False;
875 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
876 return False;
878 if(!reg_io_hdrbuf_sec(r_q->ptr, NULL, &r_q->hdr_sec, r_q->data, ps, depth))
879 return False;
881 return True;
884 #if 0
885 /*******************************************************************
886 makes a structure.
887 ********************************************************************/
888 void init_reg_r_get_key_sec(REG_R_GET_KEY_SEC *r_i, POLICY_HND *pol,
889 uint32 buf_len, uint8 *buf,
890 NTSTATUS status)
892 r_i->ptr = 1;
893 init_buf_hdr(&r_i->hdr_sec, buf_len, buf_len);
894 init_sec_desc_buf(r_i->data, buf_len, 1);
896 r_i->status = status; /* 0x0000 0000 or 0x0000 007a */
898 #endif
900 /*******************************************************************
901 reads or writes a structure.
902 ********************************************************************/
904 BOOL reg_io_r_get_key_sec(char *desc, REG_R_GET_KEY_SEC *r_q, prs_struct *ps, int depth)
906 if (r_q == NULL)
907 return False;
909 prs_debug(ps, depth, desc, "reg_io_r_get_key_sec");
910 depth++;
912 if(!prs_align(ps))
913 return False;
915 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
916 return False;
918 if (r_q->ptr != 0) {
919 if(!smb_io_hdrbuf("", &r_q->hdr_sec, ps, depth))
920 return False;
921 if(!sec_io_desc_buf("", &r_q->data, ps, depth))
922 return False;
923 if(!prs_align(ps))
924 return False;
927 if(!prs_ntstatus("status", ps, depth, &r_q->status))
928 return False;
930 return True;
933 /*******************************************************************
934 makes a structure.
935 ********************************************************************/
937 BOOL init_reg_q_info(REG_Q_INFO *q_i, POLICY_HND *pol, char* val_name)
939 int len_type = val_name != NULL ? strlen(val_name) + 1 : 0;
941 if (q_i == NULL)
942 return False;
944 q_i->pol = *pol;
946 init_uni_hdr(&(q_i->hdr_type), len_type);
947 init_unistr2(&(q_i->uni_type), val_name, len_type);
949 q_i->ptr_reserved = 1;
950 q_i->ptr_buf = 1;
952 q_i->ptr_bufsize = 1;
953 q_i->bufsize = 0;
954 q_i->buf_unk = 0;
956 q_i->unk1 = 0;
957 q_i->ptr_buflen = 1;
958 q_i->buflen = 0;
960 q_i->ptr_buflen2 = 1;
961 q_i->buflen2 = 0;
963 return True;
966 /*******************************************************************
967 reads or writes a structure.
968 ********************************************************************/
970 BOOL reg_io_q_info(char *desc, REG_Q_INFO *r_q, prs_struct *ps, int depth)
972 if (r_q == NULL)
973 return False;
975 prs_debug(ps, depth, desc, "reg_io_q_info");
976 depth++;
978 if(!prs_align(ps))
979 return False;
981 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
982 return False;
983 if(!smb_io_unihdr ("", &r_q->hdr_type, ps, depth))
984 return False;
985 if(!smb_io_unistr2("", &r_q->uni_type, r_q->hdr_type.buffer, ps, depth))
986 return False;
988 if(!prs_align(ps))
989 return False;
991 if(!prs_uint32("ptr_reserved", ps, depth, &(r_q->ptr_reserved)))
992 return False;
994 if(!prs_uint32("ptr_buf", ps, depth, &(r_q->ptr_buf)))
995 return False;
997 if(r_q->ptr_buf) {
998 if(!prs_uint32("ptr_bufsize", ps, depth, &(r_q->ptr_bufsize)))
999 return False;
1000 if(!prs_uint32("bufsize", ps, depth, &(r_q->bufsize)))
1001 return False;
1002 if(!prs_uint32("buf_unk", ps, depth, &(r_q->buf_unk)))
1003 return False;
1006 if(!prs_uint32("unk1", ps, depth, &(r_q->unk1)))
1007 return False;
1009 if(!prs_uint32("ptr_buflen", ps, depth, &(r_q->ptr_buflen)))
1010 return False;
1012 if (r_q->ptr_buflen) {
1013 if(!prs_uint32("buflen", ps, depth, &(r_q->buflen)))
1014 return False;
1015 if(!prs_uint32("ptr_buflen2", ps, depth, &(r_q->ptr_buflen2)))
1016 return False;
1017 if(!prs_uint32("buflen2", ps, depth, &(r_q->buflen2)))
1018 return False;
1021 return True;
1024 /*******************************************************************
1025 Inits a structure.
1026 ********************************************************************/
1028 BOOL init_reg_r_info(uint32 include_keyval, REG_R_INFO *r_r,
1029 BUFFER2* buf, uint32 type, NTSTATUS status)
1031 if(r_r == NULL)
1032 return False;
1035 r_r->ptr_type = 1;
1036 r_r->type = type;
1038 /* if include_keyval is not set, don't send the key value, just
1039 the buflen data. probably used by NT5 to allocate buffer space - SK */
1040 r_r->ptr_uni_val = include_keyval ? 1:0;
1041 r_r->uni_val = buf;
1043 r_r->ptr_max_len = 1;
1044 r_r->buf_max_len = r_r->uni_val->buf_max_len;
1046 r_r->ptr_len = 1;
1047 r_r->buf_len = r_r->uni_val->buf_len;
1049 r_r->status = status;
1051 return True;
1055 /*******************************************************************
1056 reads or writes a structure.
1057 ********************************************************************/
1059 BOOL reg_io_r_info(char *desc, REG_R_INFO *r_r, prs_struct *ps, int depth)
1061 if (r_r == NULL)
1062 return False;
1064 prs_debug(ps, depth, desc, "reg_io_r_info");
1065 depth++;
1067 if(!prs_align(ps))
1068 return False;
1070 if(!prs_uint32("ptr_type", ps, depth, &(r_r->ptr_type)))
1071 return False;
1073 if (r_r->ptr_type != 0) {
1074 if(!prs_uint32("type", ps, depth, &r_r->type))
1075 return False;
1078 if(!prs_uint32("ptr_uni_val", ps, depth, &(r_r->ptr_uni_val)))
1079 return False;
1081 if(r_r->ptr_uni_val != 0) {
1082 if(!smb_io_buffer2("uni_val", r_r->uni_val, r_r->ptr_uni_val, ps, depth))
1083 return False;
1086 if(!prs_align(ps))
1087 return False;
1089 if(!prs_uint32("ptr_max_len", ps, depth, &(r_r->ptr_max_len)))
1090 return False;
1092 if (r_r->ptr_max_len != 0) {
1093 if(!prs_uint32("buf_max_len", ps, depth, &(r_r->buf_max_len)))
1094 return False;
1097 if(!prs_uint32("ptr_len", ps, depth, &(r_r->ptr_len)))
1098 return False;
1099 if (r_r->ptr_len != 0) {
1100 if(!prs_uint32("buf_len", ps, depth, &(r_r->buf_len)))
1101 return False;
1104 if(!prs_ntstatus("status", ps, depth, &r_r->status))
1105 return False;
1107 return True;
1110 /*******************************************************************
1111 makes a structure.
1112 ********************************************************************/
1114 void init_reg_q_enum_val(REG_Q_ENUM_VALUE *q_i, POLICY_HND *pol,
1115 uint32 val_idx, uint32 max_val_len,
1116 uint32 max_buf_len)
1118 ZERO_STRUCTP(q_i);
1120 memcpy(&q_i->pol, pol, sizeof(q_i->pol));
1122 q_i->val_index = val_idx;
1123 init_uni_hdr(&q_i->hdr_name, max_val_len);
1124 q_i->uni_name.uni_max_len = max_val_len;
1126 q_i->ptr_type = 1;
1127 q_i->type = 0x0;
1129 q_i->ptr_value = 1;
1130 q_i->buf_value.buf_max_len = max_buf_len;
1132 q_i->ptr1 = 1;
1133 q_i->len_value1 = max_buf_len;
1135 q_i->ptr2 = 1;
1136 q_i->len_value2 = 0;
1139 /*******************************************************************
1140 reads or writes a structure.
1141 ********************************************************************/
1143 BOOL reg_io_q_enum_val(char *desc, REG_Q_ENUM_VALUE *q_q, prs_struct *ps, int depth)
1145 if (q_q == NULL)
1146 return False;
1148 prs_debug(ps, depth, desc, "reg_io_q_enum_val");
1149 depth++;
1151 if(!prs_align(ps))
1152 return False;
1154 if(!smb_io_pol_hnd("", &q_q->pol, ps, depth))
1155 return False;
1157 if(!prs_uint32("val_index", ps, depth, &q_q->val_index))
1158 return False;
1159 if(!smb_io_unihdr ("hdr_name", &q_q->hdr_name, ps, depth))
1160 return False;
1161 if(!smb_io_unistr2("uni_name", &q_q->uni_name, q_q->hdr_name.buffer, ps, depth))
1162 return False;
1163 if(!prs_align(ps))
1164 return False;
1166 if(!prs_uint32("ptr_type", ps, depth, &q_q->ptr_type))
1167 return False;
1169 if (q_q->ptr_type != 0) {
1170 if(!prs_uint32("type", ps, depth, &q_q->type))
1171 return False;
1174 if(!prs_uint32("ptr_value", ps, depth, &q_q->ptr_value))
1175 return False;
1176 if(!smb_io_buffer2("buf_value", &q_q->buf_value, q_q->ptr_value, ps, depth))
1177 return False;
1178 if(!prs_align(ps))
1179 return False;
1181 if(!prs_uint32("ptr1", ps, depth, &q_q->ptr1))
1182 return False;
1183 if (q_q->ptr1 != 0) {
1184 if(!prs_uint32("len_value1", ps, depth, &q_q->len_value1))
1185 return False;
1187 if(!prs_uint32("ptr2", ps, depth, &q_q->ptr2))
1188 return False;
1189 if (q_q->ptr2 != 0) {
1190 if(!prs_uint32("len_value2", ps, depth, &q_q->len_value2))
1191 return False;
1194 return True;
1197 /*******************************************************************
1198 reads or writes a structure.
1199 ********************************************************************/
1201 BOOL reg_io_r_enum_val(char *desc, REG_R_ENUM_VALUE *r_q, prs_struct *ps, int depth)
1203 if (r_q == NULL)
1204 return False;
1206 prs_debug(ps, depth, desc, "reg_io_r_enum_val");
1207 depth++;
1209 if(!prs_align(ps))
1210 return False;
1212 if(!smb_io_unihdr ("hdr_name", &r_q->hdr_name, ps, depth))
1213 return False;
1214 if(!smb_io_unistr2("uni_name", &r_q->uni_name, r_q->hdr_name.buffer, ps, depth))
1215 return False;
1216 if(!prs_align(ps))
1217 return False;
1219 if(!prs_uint32("ptr_type", ps, depth, &r_q->ptr_type))
1220 return False;
1222 if (r_q->ptr_type != 0) {
1223 if(!prs_uint32("type", ps, depth, &r_q->type))
1224 return False;
1227 if(!prs_uint32("ptr_value", ps, depth, &r_q->ptr_value))
1228 return False;
1229 if(!smb_io_buffer2("buf_value", r_q->buf_value, r_q->ptr_value, ps, depth))
1230 return False;
1231 if(!prs_align(ps))
1232 return False;
1234 if(!prs_uint32("ptr1", ps, depth, &r_q->ptr1))
1235 return False;
1236 if (r_q->ptr1 != 0) {
1237 if(!prs_uint32("len_value1", ps, depth, &r_q->len_value1))
1238 return False;
1241 if(!prs_uint32("ptr2", ps, depth, &r_q->ptr2))
1242 return False;
1243 if (r_q->ptr2 != 0) {
1244 if(!prs_uint32("len_value2", ps, depth, &r_q->len_value2))
1245 return False;
1248 if(!prs_ntstatus("status", ps, depth, &r_q->status))
1249 return False;
1251 return True;
1254 /*******************************************************************
1255 makes a structure.
1256 ********************************************************************/
1258 void init_reg_q_create_val(REG_Q_CREATE_VALUE *q_i, POLICY_HND *pol,
1259 char *val_name, uint32 type,
1260 BUFFER3 *val)
1262 int val_len = strlen(val_name) + 1;
1264 ZERO_STRUCTP(q_i);
1266 memcpy(&q_i->pol, pol, sizeof(q_i->pol));
1268 init_uni_hdr(&q_i->hdr_name, val_len);
1269 init_unistr2(&q_i->uni_name, val_name, val_len);
1271 q_i->type = type;
1272 q_i->buf_value = val;
1275 /*******************************************************************
1276 reads or writes a structure.
1277 ********************************************************************/
1279 BOOL reg_io_q_create_val(char *desc, REG_Q_CREATE_VALUE *q_q, prs_struct *ps, int depth)
1281 if (q_q == NULL)
1282 return False;
1284 prs_debug(ps, depth, desc, "reg_io_q_create_val");
1285 depth++;
1287 if(!prs_align(ps))
1288 return False;
1290 if(!smb_io_pol_hnd("", &q_q->pol, ps, depth))
1291 return False;
1293 if(!smb_io_unihdr ("hdr_name", &q_q->hdr_name, ps, depth))
1294 return False;
1295 if(!smb_io_unistr2("uni_name", &q_q->uni_name, q_q->hdr_name.buffer, ps, depth))
1296 return False;
1297 if(!prs_align(ps))
1298 return False;
1300 if(!prs_uint32("type", ps, depth, &q_q->type))
1301 return False;
1302 if(!smb_io_buffer3("buf_value", q_q->buf_value, ps, depth))
1303 return False;
1304 if(!prs_align(ps))
1305 return False;
1307 return True;
1310 /*******************************************************************
1311 reads or writes a structure.
1312 ********************************************************************/
1314 BOOL reg_io_r_create_val(char *desc, REG_R_CREATE_VALUE *r_q, prs_struct *ps, int depth)
1316 if (r_q == NULL)
1317 return False;
1319 prs_debug(ps, depth, desc, "reg_io_r_create_val");
1320 depth++;
1322 if(!prs_align(ps))
1323 return False;
1325 if(!prs_ntstatus("status", ps, depth, &r_q->status))
1326 return False;
1328 return True;
1331 /*******************************************************************
1332 makes a structure.
1333 ********************************************************************/
1335 void init_reg_q_enum_key(REG_Q_ENUM_KEY *q_i, POLICY_HND *pol, uint32 key_idx)
1337 memcpy(&q_i->pol, pol, sizeof(q_i->pol));
1339 q_i->key_index = key_idx;
1340 q_i->key_name_len = 0;
1341 q_i->unknown_1 = 0x0414;
1343 q_i->ptr1 = 1;
1344 q_i->unknown_2 = 0x0000020A;
1345 memset(q_i->pad1, 0, sizeof(q_i->pad1));
1347 q_i->ptr2 = 1;
1348 memset(q_i->pad2, 0, sizeof(q_i->pad2));
1350 q_i->ptr3 = 1;
1351 unix_to_nt_time(&q_i->time, 0); /* current time? */
1354 /*******************************************************************
1355 reads or writes a structure.
1356 ********************************************************************/
1358 BOOL reg_io_q_enum_key(char *desc, REG_Q_ENUM_KEY *q_q, prs_struct *ps, int depth)
1360 if (q_q == NULL)
1361 return False;
1363 prs_debug(ps, depth, desc, "reg_io_q_enum_key");
1364 depth++;
1366 if(!prs_align(ps))
1367 return False;
1369 if(!smb_io_pol_hnd("", &q_q->pol, ps, depth))
1370 return False;
1372 if(!prs_uint32("key_index", ps, depth, &q_q->key_index))
1373 return False;
1374 if(!prs_uint16("key_name_len", ps, depth, &q_q->key_name_len))
1375 return False;
1376 if(!prs_uint16("unknown_1", ps, depth, &q_q->unknown_1))
1377 return False;
1379 if(!prs_uint32("ptr1", ps, depth, &q_q->ptr1))
1380 return False;
1382 if (q_q->ptr1 != 0) {
1383 if(!prs_uint32("unknown_2", ps, depth, &q_q->unknown_2))
1384 return False;
1385 if(!prs_uint8s(False, "pad1", ps, depth, q_q->pad1, sizeof(q_q->pad1)))
1386 return False;
1389 if(!prs_uint32("ptr2", ps, depth, &q_q->ptr2))
1390 return False;
1392 if (q_q->ptr2 != 0) {
1393 if(!prs_uint8s(False, "pad2", ps, depth, q_q->pad2, sizeof(q_q->pad2)))
1394 return False;
1397 if(!prs_uint32("ptr3", ps, depth, &q_q->ptr3))
1398 return False;
1400 if (q_q->ptr3 != 0) {
1401 if(!smb_io_time("", &q_q->time, ps, depth))
1402 return False;
1405 return True;
1408 /*******************************************************************
1409 reads or writes a structure.
1410 ********************************************************************/
1412 BOOL reg_io_r_enum_key(char *desc, REG_R_ENUM_KEY *r_q, prs_struct *ps, int depth)
1414 if (r_q == NULL)
1415 return False;
1417 prs_debug(ps, depth, desc, "reg_io_r_enum_key");
1418 depth++;
1420 if(!prs_align(ps))
1421 return False;
1423 if(!prs_uint16("key_name_len", ps, depth, &r_q->key_name_len))
1424 return False;
1425 if(!prs_uint16("unknown_1", ps, depth, &r_q->unknown_1))
1426 return False;
1428 if(!prs_uint32("ptr1", ps, depth, &r_q->ptr1))
1429 return False;
1431 if (r_q->ptr1 != 0) {
1432 if(!prs_uint32("unknown_2", ps, depth, &r_q->unknown_2))
1433 return False;
1434 if(!prs_uint32("unknown_3", ps, depth, &r_q->unknown_3))
1435 return False;
1436 if(!smb_io_unistr3("key_name", &r_q->key_name, ps, depth))
1437 return False;
1438 if(!prs_align(ps))
1439 return False;
1442 if(!prs_uint32("ptr2", ps, depth, &r_q->ptr2))
1443 return False;
1445 if (r_q->ptr2 != 0) {
1446 if(!prs_uint8s(False, "pad2", ps, depth, r_q->pad2, sizeof(r_q->pad2)))
1447 return False;
1450 if(!prs_uint32("ptr3", ps, depth, &r_q->ptr3))
1451 return False;
1453 if (r_q->ptr3 != 0) {
1454 if(!smb_io_time("", &r_q->time, ps, depth))
1455 return False;
1458 if(!prs_ntstatus("status", ps, depth, &r_q->status))
1459 return False;
1461 return True;
1464 /*******************************************************************
1465 makes a structure.
1466 ********************************************************************/
1468 void init_reg_q_open_entry(REG_Q_OPEN_ENTRY *r_q, POLICY_HND *pol,
1469 char *key_name, uint32 unk)
1471 int len_name = strlen(key_name)+1;
1473 memcpy(&r_q->pol, pol, sizeof(r_q->pol));
1475 init_uni_hdr(&r_q->hdr_name, len_name);
1476 init_unistr2(&r_q->uni_name, key_name, len_name);
1478 r_q->unknown_0 = 0x00000000;
1479 r_q->unknown_1 = unk;
1482 /*******************************************************************
1483 reads or writes a structure.
1484 ********************************************************************/
1486 BOOL reg_io_q_open_entry(char *desc, REG_Q_OPEN_ENTRY *r_q, prs_struct *ps, int depth)
1488 if (r_q == NULL)
1489 return False;
1491 prs_debug(ps, depth, desc, "reg_io_q_entry");
1492 depth++;
1494 if(!prs_align(ps))
1495 return False;
1497 if(!smb_io_pol_hnd("", &r_q->pol, ps, depth))
1498 return False;
1499 if(!smb_io_unihdr ("", &r_q->hdr_name, ps, depth))
1500 return False;
1501 if(!smb_io_unistr2("", &r_q->uni_name, r_q->hdr_name.buffer, ps, depth))
1502 return False;
1504 if(!prs_align(ps))
1505 return False;
1507 if(!prs_uint32("unknown_0", ps, depth, &r_q->unknown_0))
1508 return False;
1509 if(!prs_uint32("unknown_1", ps, depth, &r_q->unknown_1))
1510 return False;
1512 return True;
1515 /*******************************************************************
1516 Inits a structure.
1517 ********************************************************************/
1519 void init_reg_r_open_entry(REG_R_OPEN_ENTRY *r_r,
1520 POLICY_HND *pol, NTSTATUS status)
1522 memcpy(&r_r->pol, pol, sizeof(r_r->pol));
1523 r_r->status = status;
1526 /*******************************************************************
1527 reads or writes a structure.
1528 ********************************************************************/
1530 BOOL reg_io_r_open_entry(char *desc, REG_R_OPEN_ENTRY *r_r, prs_struct *ps, int depth)
1532 if (r_r == NULL)
1533 return False;
1535 prs_debug(ps, depth, desc, "reg_io_r_open_entry");
1536 depth++;
1538 if(!prs_align(ps))
1539 return False;
1541 if(!smb_io_pol_hnd("", &r_r->pol, ps, depth))
1542 return False;
1544 if(!prs_ntstatus("status", ps, depth, &r_r->status))
1545 return False;
1547 return True;
1550 /*******************************************************************
1551 Inits a structure.
1552 ********************************************************************/
1553 void init_reg_q_shutdown(REG_Q_SHUTDOWN * q_s,
1554 const char *msg, uint32 timeout, uint16 flags)
1556 int msg_len;
1557 msg_len = strlen(msg);
1559 q_s->ptr_0 = 1;
1560 q_s->ptr_1 = 1;
1561 q_s->ptr_2 = 1;
1563 init_uni_hdr(&(q_s->hdr_msg), msg_len);
1564 init_unistr2(&(q_s->uni_msg), msg, msg_len);
1566 q_s->timeout = timeout;
1567 q_s->flags = flags;
1571 /*******************************************************************
1572 reads or writes a structure.
1573 ********************************************************************/
1574 BOOL reg_io_q_shutdown(char *desc, REG_Q_SHUTDOWN * q_s, prs_struct *ps,
1575 int depth)
1577 if (q_s == NULL)
1578 return False;
1580 prs_debug(ps, depth, desc, "reg_io_q_shutdown");
1581 depth++;
1583 if (!prs_align(ps))
1584 return False;
1586 if (!prs_uint32("ptr_0", ps, depth, &(q_s->ptr_0)))
1587 return False;
1588 if (!prs_uint32("ptr_1", ps, depth, &(q_s->ptr_1)))
1589 return False;
1590 if (!prs_uint32("ptr_2", ps, depth, &(q_s->ptr_2)))
1591 return False;
1593 if (!smb_io_unihdr("hdr_msg", &(q_s->hdr_msg), ps, depth))
1594 return False;
1595 if (!smb_io_unistr2("uni_msg", &(q_s->uni_msg), q_s->hdr_msg.buffer, ps, depth))
1596 return False;
1597 if (!prs_align(ps))
1598 return False;
1600 if (!prs_uint32("timeout", ps, depth, &(q_s->timeout)))
1601 return False;
1602 if (!prs_uint16("flags ", ps, depth, &(q_s->flags)))
1603 return False;
1605 return True;
1608 /*******************************************************************
1609 reads or writes a structure.
1610 ********************************************************************/
1611 BOOL reg_io_r_shutdown(char *desc, REG_R_SHUTDOWN * r_s, prs_struct *ps,
1612 int depth)
1614 if (r_s == NULL)
1615 return False;
1617 prs_debug(ps, depth, desc, "reg_io_r_shutdown");
1618 depth++;
1620 if(!prs_align(ps))
1621 return False;
1623 if(!prs_ntstatus("status", ps, depth, &r_s->status))
1624 return False;
1626 return True;
1629 /*******************************************************************
1630 Inits a structure.
1631 ********************************************************************/
1632 void init_reg_q_abort_shutdown(REG_Q_ABORT_SHUTDOWN * q_s)
1635 q_s->ptr_server = 0;
1639 /*******************************************************************
1640 reads or writes a structure.
1641 ********************************************************************/
1642 BOOL reg_io_q_abort_shutdown(char *desc, REG_Q_ABORT_SHUTDOWN * q_s,
1643 prs_struct *ps, int depth)
1645 if (q_s == NULL)
1646 return False;
1648 prs_debug(ps, depth, desc, "reg_io_q_abort_shutdown");
1649 depth++;
1651 if (!prs_align(ps))
1652 return False;
1654 if (!prs_uint32("ptr_server", ps, depth, &(q_s->ptr_server)))
1655 return False;
1656 if (q_s->ptr_server != 0)
1657 if (!prs_uint16("server", ps, depth, &(q_s->server)))
1658 return False;
1660 return True;
1663 /*******************************************************************
1664 reads or writes a structure.
1665 ********************************************************************/
1666 BOOL reg_io_r_abort_shutdown(char *desc, REG_R_ABORT_SHUTDOWN * r_s,
1667 prs_struct *ps, int depth)
1669 if (r_s == NULL)
1670 return False;
1672 prs_debug(ps, depth, desc, "reg_io_r_abort_shutdown");
1673 depth++;
1675 if (!prs_align(ps))
1676 return False;
1678 if (!prs_ntstatus("status", ps, depth, &r_s->status))
1679 return False;
1681 return True;