[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / rpc_parse / parse_samr.c
blob4410348abeee31b89aedbaa884d69c2546d3f4da
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-2000,
5 * Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
6 * Copyright (C) Paul Ashton 1997-2000,
7 * Copyright (C) Elrond 2000,
8 * Copyright (C) Jeremy Allison 2001,
9 * Copyright (C) Jean François Micouleau 1998-2001,
10 * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #include "includes.h"
29 #undef DBGC_CLASS
30 #define DBGC_CLASS DBGC_RPC_PARSE
32 /*******************************************************************
33 inits a SAMR_Q_CLOSE_HND structure.
34 ********************************************************************/
36 void init_samr_q_close_hnd(SAMR_Q_CLOSE_HND * q_c, POLICY_HND *hnd)
38 DEBUG(5, ("init_samr_q_close_hnd\n"));
40 q_c->pol = *hnd;
43 /*******************************************************************
44 reads or writes a structure.
45 ********************************************************************/
47 BOOL samr_io_q_close_hnd(const char *desc, SAMR_Q_CLOSE_HND * q_u,
48 prs_struct *ps, int depth)
50 if (q_u == NULL)
51 return False;
53 prs_debug(ps, depth, desc, "samr_io_q_close_hnd");
54 depth++;
56 if(!prs_align(ps))
57 return False;
59 return smb_io_pol_hnd("pol", &q_u->pol, ps, depth);
62 /*******************************************************************
63 reads or writes a structure.
64 ********************************************************************/
66 BOOL samr_io_r_close_hnd(const char *desc, SAMR_R_CLOSE_HND * r_u,
67 prs_struct *ps, int depth)
69 if (r_u == NULL)
70 return False;
72 prs_debug(ps, depth, desc, "samr_io_r_close_hnd");
73 depth++;
75 if(!prs_align(ps))
76 return False;
78 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
79 return False;
81 if(!prs_ntstatus("status", ps, depth, &r_u->status))
82 return False;
84 return True;
87 /*******************************************************************
88 inits a SAMR_Q_LOOKUP_DOMAIN structure.
89 ********************************************************************/
91 void init_samr_q_lookup_domain(SAMR_Q_LOOKUP_DOMAIN * q_u,
92 POLICY_HND *pol, char *dom_name)
94 DEBUG(5, ("init_samr_q_lookup_domain\n"));
96 q_u->connect_pol = *pol;
98 init_unistr2(&q_u->uni_domain, dom_name, UNI_FLAGS_NONE);
99 init_uni_hdr(&q_u->hdr_domain, &q_u->uni_domain);
102 /*******************************************************************
103 reads or writes a structure.
104 ********************************************************************/
105 BOOL samr_io_q_lookup_domain(const char *desc, SAMR_Q_LOOKUP_DOMAIN * q_u,
106 prs_struct *ps, int depth)
108 if (q_u == NULL)
109 return False;
111 prs_debug(ps, depth, desc, "samr_io_q_lookup_domain");
112 depth++;
114 if(!prs_align(ps))
115 return False;
117 if(!smb_io_pol_hnd("connect_pol", &q_u->connect_pol, ps, depth))
118 return False;
120 if(!smb_io_unihdr("hdr_domain", &q_u->hdr_domain, ps, depth))
121 return False;
123 if(!smb_io_unistr2("uni_domain", &q_u->uni_domain, q_u->hdr_domain.buffer, ps, depth))
124 return False;
126 return True;
129 /*******************************************************************
130 inits a SAMR_R_LOOKUP_DOMAIN structure.
131 ********************************************************************/
133 void init_samr_r_lookup_domain(SAMR_R_LOOKUP_DOMAIN * r_u,
134 DOM_SID *dom_sid, NTSTATUS status)
136 DEBUG(5, ("init_samr_r_lookup_domain\n"));
138 r_u->status = status;
139 r_u->ptr_sid = 0;
140 if (NT_STATUS_IS_OK(status)) {
141 r_u->ptr_sid = 1;
142 init_dom_sid2(&r_u->dom_sid, dom_sid);
146 /*******************************************************************
147 reads or writes a structure.
148 ********************************************************************/
150 BOOL samr_io_r_lookup_domain(const char *desc, SAMR_R_LOOKUP_DOMAIN * r_u,
151 prs_struct *ps, int depth)
153 if (r_u == NULL)
154 return False;
156 prs_debug(ps, depth, desc, "samr_io_r_lookup_domain");
157 depth++;
159 if(!prs_align(ps))
160 return False;
162 if(!prs_uint32("ptr", ps, depth, &r_u->ptr_sid))
163 return False;
165 if (r_u->ptr_sid != 0) {
166 if(!smb_io_dom_sid2("sid", &r_u->dom_sid, ps, depth))
167 return False;
168 if(!prs_align(ps))
169 return False;
172 if(!prs_ntstatus("status", ps, depth, &r_u->status))
173 return False;
175 return True;
178 /*******************************************************************
179 reads or writes a structure.
180 ********************************************************************/
182 void init_samr_q_remove_sid_foreign_domain(SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN * q_u, POLICY_HND *dom_pol, DOM_SID *sid)
184 DEBUG(5, ("samr_init_samr_q_remove_sid_foreign_domain\n"));
186 q_u->dom_pol = *dom_pol;
187 init_dom_sid2(&q_u->sid, sid);
190 /*******************************************************************
191 reads or writes a structure.
192 ********************************************************************/
194 BOOL samr_io_q_remove_sid_foreign_domain(const char *desc, SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN * q_u,
195 prs_struct *ps, int depth)
197 if (q_u == NULL)
198 return False;
200 prs_debug(ps, depth, desc, "samr_io_q_remove_sid_foreign_domain");
201 depth++;
203 if(!prs_align(ps))
204 return False;
206 if(!smb_io_pol_hnd("domain_pol", &q_u->dom_pol, ps, depth))
207 return False;
209 if(!smb_io_dom_sid2("sid", &q_u->sid, ps, depth))
210 return False;
212 if(!prs_align(ps))
213 return False;
215 return True;
218 /*******************************************************************
219 reads or writes a structure.
220 ********************************************************************/
222 BOOL samr_io_r_remove_sid_foreign_domain(const char *desc, SAMR_R_REMOVE_SID_FOREIGN_DOMAIN * r_u,
223 prs_struct *ps, int depth)
225 if (r_u == NULL)
226 return False;
228 prs_debug(ps, depth, desc, "samr_io_r_remove_sid_foreign_domain");
229 depth++;
231 if(!prs_align(ps))
232 return False;
234 if(!prs_ntstatus("status", ps, depth, &r_u->status))
235 return False;
237 return True;
240 /*******************************************************************
241 reads or writes a structure.
242 ********************************************************************/
244 void init_samr_q_open_domain(SAMR_Q_OPEN_DOMAIN * q_u,
245 POLICY_HND *pol, uint32 flags,
246 const DOM_SID *sid)
248 DEBUG(5, ("samr_init_samr_q_open_domain\n"));
250 q_u->pol = *pol;
251 q_u->flags = flags;
252 init_dom_sid2(&q_u->dom_sid, sid);
255 /*******************************************************************
256 reads or writes a structure.
257 ********************************************************************/
259 BOOL samr_io_q_open_domain(const char *desc, SAMR_Q_OPEN_DOMAIN * q_u,
260 prs_struct *ps, int depth)
262 if (q_u == NULL)
263 return False;
265 prs_debug(ps, depth, desc, "samr_io_q_open_domain");
266 depth++;
268 if(!prs_align(ps))
269 return False;
271 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
272 return False;
274 if(!prs_uint32("flags", ps, depth, &q_u->flags))
275 return False;
277 if(!smb_io_dom_sid2("sid", &q_u->dom_sid, ps, depth))
278 return False;
280 return True;
283 /*******************************************************************
284 reads or writes a structure.
285 ********************************************************************/
287 BOOL samr_io_r_open_domain(const char *desc, SAMR_R_OPEN_DOMAIN * r_u,
288 prs_struct *ps, int depth)
290 if (r_u == NULL)
291 return False;
293 prs_debug(ps, depth, desc, "samr_io_r_open_domain");
294 depth++;
296 if(!prs_align(ps))
297 return False;
299 if(!smb_io_pol_hnd("domain_pol", &r_u->domain_pol, ps, depth))
300 return False;
302 if(!prs_ntstatus("status", ps, depth, &r_u->status))
303 return False;
305 return True;
308 /*******************************************************************
309 reads or writes a structure.
310 ********************************************************************/
312 void init_samr_q_get_usrdom_pwinfo(SAMR_Q_GET_USRDOM_PWINFO * q_u,
313 POLICY_HND *user_pol)
315 DEBUG(5, ("samr_init_samr_q_get_usrdom_pwinfo\n"));
317 q_u->user_pol = *user_pol;
320 /*******************************************************************
321 reads or writes a structure.
322 ********************************************************************/
324 BOOL samr_io_q_get_usrdom_pwinfo(const char *desc, SAMR_Q_GET_USRDOM_PWINFO * q_u,
325 prs_struct *ps, int depth)
327 if (q_u == NULL)
328 return False;
330 prs_debug(ps, depth, desc, "samr_io_q_get_usrdom_pwinfo");
331 depth++;
333 if(!prs_align(ps))
334 return False;
336 return smb_io_pol_hnd("user_pol", &q_u->user_pol, ps, depth);
339 /*******************************************************************
340 Init.
341 ********************************************************************/
343 void init_samr_r_get_usrdom_pwinfo(SAMR_R_GET_USRDOM_PWINFO *r_u, NTSTATUS status)
345 DEBUG(5, ("init_samr_r_get_usrdom_pwinfo\n"));
347 r_u->min_pwd_length = 0x0000;
350 * used to be
351 * r_u->unknown_1 = 0x0015;
352 * but for trusts.
354 r_u->unknown_1 = 0x01D1;
355 r_u->unknown_1 = 0x0015;
357 r_u->password_properties = 0x00000000;
359 r_u->status = status;
362 /*******************************************************************
363 reads or writes a structure.
364 ********************************************************************/
366 BOOL samr_io_r_get_usrdom_pwinfo(const char *desc, SAMR_R_GET_USRDOM_PWINFO * r_u,
367 prs_struct *ps, int depth)
369 if (r_u == NULL)
370 return False;
372 prs_debug(ps, depth, desc, "samr_io_r_get_usrdom_pwinfo");
373 depth++;
375 if(!prs_align(ps))
376 return False;
378 if(!prs_uint16("min_pwd_length", ps, depth, &r_u->min_pwd_length))
379 return False;
380 if(!prs_uint16("unknown_1", ps, depth, &r_u->unknown_1))
381 return False;
382 if(!prs_uint32("password_properties", ps, depth, &r_u->password_properties))
383 return False;
385 if(!prs_ntstatus("status ", ps, depth, &r_u->status))
386 return False;
388 return True;
392 /*******************************************************************
393 reads or writes a structure.
394 ********************************************************************/
396 BOOL samr_io_q_set_sec_obj(const char *desc, SAMR_Q_SET_SEC_OBJ * q_u,
397 prs_struct *ps, int depth)
399 if (q_u == NULL)
400 return False;
402 prs_debug(ps, depth, desc, "samr_io_q_set_sec_obj");
403 depth++;
405 if(!prs_align(ps))
406 return False;
408 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
409 return False;
411 if(!prs_uint32("sec_info", ps, depth, &q_u->sec_info))
412 return False;
414 if(!sec_io_desc_buf("sec_desc", &q_u->buf, ps, depth))
415 return False;
417 return True;
421 /*******************************************************************
422 reads or writes a structure.
423 ********************************************************************/
425 void init_samr_q_query_sec_obj(SAMR_Q_QUERY_SEC_OBJ * q_u,
426 POLICY_HND *user_pol, uint32 sec_info)
428 DEBUG(5, ("samr_init_samr_q_query_sec_obj\n"));
430 q_u->user_pol = *user_pol;
431 q_u->sec_info = sec_info;
435 /*******************************************************************
436 reads or writes a structure.
437 ********************************************************************/
439 BOOL samr_io_q_query_sec_obj(const char *desc, SAMR_Q_QUERY_SEC_OBJ * q_u,
440 prs_struct *ps, int depth)
442 if (q_u == NULL)
443 return False;
445 prs_debug(ps, depth, desc, "samr_io_q_query_sec_obj");
446 depth++;
448 if(!prs_align(ps))
449 return False;
451 if(!smb_io_pol_hnd("user_pol", &q_u->user_pol, ps, depth))
452 return False;
454 if(!prs_uint32("sec_info", ps, depth, &q_u->sec_info))
455 return False;
457 return True;
460 /*******************************************************************
461 reads or writes a structure.
462 ********************************************************************/
464 void init_samr_q_query_domain_info(SAMR_Q_QUERY_DOMAIN_INFO * q_u,
465 POLICY_HND *domain_pol, uint16 switch_value)
467 DEBUG(5, ("samr_init_samr_q_query_domain_info\n"));
469 q_u->domain_pol = *domain_pol;
470 q_u->switch_value = switch_value;
473 /*******************************************************************
474 reads or writes a structure.
475 ********************************************************************/
477 BOOL samr_io_q_query_domain_info(const char *desc, SAMR_Q_QUERY_DOMAIN_INFO * q_u,
478 prs_struct *ps, int depth)
480 if (q_u == NULL)
481 return False;
483 prs_debug(ps, depth, desc, "samr_io_q_query_domain_info");
484 depth++;
486 if(!prs_align(ps))
487 return False;
489 if(!smb_io_pol_hnd("domain_pol", &q_u->domain_pol, ps, depth))
490 return False;
492 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value))
493 return False;
495 return True;
498 /*******************************************************************
499 inits a structure.
500 ********************************************************************/
502 void init_unk_info1(SAM_UNK_INFO_1 *u_1, uint16 min_pass_len, uint16 pass_hist,
503 uint32 password_properties, NTTIME nt_expire, NTTIME nt_min_age)
505 u_1->min_length_password = min_pass_len;
506 u_1->password_history = pass_hist;
508 if (lp_check_password_script() && *lp_check_password_script()) {
509 password_properties |= DOMAIN_PASSWORD_COMPLEX;
511 u_1->password_properties = password_properties;
513 /* password never expire */
514 u_1->expire = nt_expire;
516 /* can change the password now */
517 u_1->min_passwordage = nt_min_age;
521 /*******************************************************************
522 reads or writes a structure.
523 ********************************************************************/
525 static BOOL sam_io_unk_info1(const char *desc, SAM_UNK_INFO_1 * u_1,
526 prs_struct *ps, int depth)
528 if (u_1 == NULL)
529 return False;
531 prs_debug(ps, depth, desc, "sam_io_unk_info1");
532 depth++;
534 if(!prs_uint16("min_length_password", ps, depth, &u_1->min_length_password))
535 return False;
536 if(!prs_uint16("password_history", ps, depth, &u_1->password_history))
537 return False;
538 if(!prs_uint32("password_properties", ps, depth, &u_1->password_properties))
539 return False;
540 if(!smb_io_time("expire", &u_1->expire, ps, depth))
541 return False;
542 if(!smb_io_time("min_passwordage", &u_1->min_passwordage, ps, depth))
543 return False;
545 return True;
548 /*******************************************************************
549 inits a structure.
550 ********************************************************************/
552 void init_unk_info2(SAM_UNK_INFO_2 * u_2,
553 const char *comment, const char *domain, const char *server,
554 uint32 seq_num, uint32 num_users, uint32 num_groups, uint32 num_alias, NTTIME nt_logout, uint32 server_role)
556 u_2->logout = nt_logout;
558 u_2->seq_num = seq_num;
561 u_2->unknown_4 = 0x00000001;
562 u_2->server_role = server_role;
563 u_2->unknown_6 = 0x00000001;
564 u_2->num_domain_usrs = num_users;
565 u_2->num_domain_grps = num_groups;
566 u_2->num_local_grps = num_alias;
568 init_unistr2(&u_2->uni_comment, comment, UNI_FLAGS_NONE);
569 init_uni_hdr(&u_2->hdr_comment, &u_2->uni_comment);
570 init_unistr2(&u_2->uni_domain, domain, UNI_FLAGS_NONE);
571 init_uni_hdr(&u_2->hdr_domain, &u_2->uni_domain);
572 init_unistr2(&u_2->uni_server, server, UNI_FLAGS_NONE);
573 init_uni_hdr(&u_2->hdr_server, &u_2->uni_server);
576 /*******************************************************************
577 reads or writes a structure.
578 ********************************************************************/
580 static BOOL sam_io_unk_info2(const char *desc, SAM_UNK_INFO_2 * u_2,
581 prs_struct *ps, int depth)
583 if (u_2 == NULL)
584 return False;
586 prs_debug(ps, depth, desc, "sam_io_unk_info2");
587 depth++;
589 if(!smb_io_time("logout", &u_2->logout, ps, depth))
590 return False;
591 if(!smb_io_unihdr("hdr_comment", &u_2->hdr_comment, ps, depth))
592 return False;
593 if(!smb_io_unihdr("hdr_domain", &u_2->hdr_domain, ps, depth))
594 return False;
595 if(!smb_io_unihdr("hdr_server", &u_2->hdr_server, ps, depth))
596 return False;
598 /* put all the data in here, at the moment, including what the above
599 pointer is referring to
602 if(!prs_uint64("seq_num ", ps, depth, &u_2->seq_num))
603 return False;
605 if(!prs_uint32("unknown_4 ", ps, depth, &u_2->unknown_4)) /* 0x0000 0001 */
606 return False;
607 if(!prs_uint32("server_role ", ps, depth, &u_2->server_role))
608 return False;
609 if(!prs_uint32("unknown_6 ", ps, depth, &u_2->unknown_6)) /* 0x0000 0001 */
610 return False;
611 if(!prs_uint32("num_domain_usrs ", ps, depth, &u_2->num_domain_usrs))
612 return False;
613 if(!prs_uint32("num_domain_grps", ps, depth, &u_2->num_domain_grps))
614 return False;
615 if(!prs_uint32("num_local_grps", ps, depth, &u_2->num_local_grps))
616 return False;
618 if(!smb_io_unistr2("uni_comment", &u_2->uni_comment, u_2->hdr_comment.buffer, ps, depth))
619 return False;
620 if(!smb_io_unistr2("uni_domain", &u_2->uni_domain, u_2->hdr_domain.buffer, ps, depth))
621 return False;
622 if(!smb_io_unistr2("uni_server", &u_2->uni_server, u_2->hdr_server.buffer, ps, depth))
623 return False;
625 return True;
628 /*******************************************************************
629 inits a structure.
630 ********************************************************************/
632 void init_unk_info3(SAM_UNK_INFO_3 *u_3, NTTIME nt_logout)
634 u_3->logout = nt_logout;
637 /*******************************************************************
638 reads or writes a structure.
639 ********************************************************************/
641 static BOOL sam_io_unk_info3(const char *desc, SAM_UNK_INFO_3 * u_3,
642 prs_struct *ps, int depth)
644 if (u_3 == NULL)
645 return False;
647 prs_debug(ps, depth, desc, "sam_io_unk_info3");
648 depth++;
650 if(!smb_io_time("logout", &u_3->logout, ps, depth))
651 return False;
653 return True;
656 /*******************************************************************
657 inits a structure.
658 ********************************************************************/
660 void init_unk_info4(SAM_UNK_INFO_4 * u_4,const char *comment)
662 init_unistr2(&u_4->uni_comment, comment, UNI_FLAGS_NONE);
663 init_uni_hdr(&u_4->hdr_comment, &u_4->uni_comment);
666 /*******************************************************************
667 reads or writes a structure.
668 ********************************************************************/
670 static BOOL sam_io_unk_info4(const char *desc, SAM_UNK_INFO_4 * u_4,
671 prs_struct *ps, int depth)
673 if (u_4 == NULL)
674 return False;
676 prs_debug(ps, depth, desc, "sam_io_unk_info4");
677 depth++;
679 if(!smb_io_unihdr("hdr_comment", &u_4->hdr_comment, ps, depth))
680 return False;
682 if(!smb_io_unistr2("uni_comment", &u_4->uni_comment, u_4->hdr_comment.buffer, ps, depth))
683 return False;
685 return True;
688 /*******************************************************************
689 inits a structure.
690 ********************************************************************/
692 void init_unk_info5(SAM_UNK_INFO_5 * u_5,const char *domain)
694 init_unistr2(&u_5->uni_domain, domain, UNI_FLAGS_NONE);
695 init_uni_hdr(&u_5->hdr_domain, &u_5->uni_domain);
698 /*******************************************************************
699 reads or writes a structure.
700 ********************************************************************/
702 static BOOL sam_io_unk_info5(const char *desc, SAM_UNK_INFO_5 * u_5,
703 prs_struct *ps, int depth)
705 if (u_5 == NULL)
706 return False;
708 prs_debug(ps, depth, desc, "sam_io_unk_info5");
709 depth++;
711 if(!smb_io_unihdr("hdr_domain", &u_5->hdr_domain, ps, depth))
712 return False;
714 if(!smb_io_unistr2("uni_domain", &u_5->uni_domain, u_5->hdr_domain.buffer, ps, depth))
715 return False;
717 return True;
720 /*******************************************************************
721 inits a structure.
722 ********************************************************************/
724 void init_unk_info6(SAM_UNK_INFO_6 * u_6, const char *server)
726 init_unistr2(&u_6->uni_server, server, UNI_FLAGS_NONE);
727 init_uni_hdr(&u_6->hdr_server, &u_6->uni_server);
730 /*******************************************************************
731 reads or writes a structure.
732 ********************************************************************/
734 static BOOL sam_io_unk_info6(const char *desc, SAM_UNK_INFO_6 * u_6,
735 prs_struct *ps, int depth)
737 if (u_6 == NULL)
738 return False;
740 prs_debug(ps, depth, desc, "sam_io_unk_info6");
741 depth++;
743 if(!smb_io_unihdr("hdr_server", &u_6->hdr_server, ps, depth))
744 return False;
746 if(!smb_io_unistr2("uni_server", &u_6->uni_server, u_6->hdr_server.buffer, ps, depth))
747 return False;
749 return True;
752 /*******************************************************************
753 inits a structure.
754 ********************************************************************/
756 void init_unk_info7(SAM_UNK_INFO_7 * u_7, uint32 server_role)
758 u_7->server_role = server_role;
761 /*******************************************************************
762 reads or writes a structure.
763 ********************************************************************/
765 static BOOL sam_io_unk_info7(const char *desc, SAM_UNK_INFO_7 * u_7,
766 prs_struct *ps, int depth)
768 if (u_7 == NULL)
769 return False;
771 prs_debug(ps, depth, desc, "sam_io_unk_info7");
772 depth++;
774 if(!prs_uint16("server_role", ps, depth, &u_7->server_role))
775 return False;
777 return True;
780 /*******************************************************************
781 inits a structure.
782 ********************************************************************/
784 void init_unk_info8(SAM_UNK_INFO_8 * u_8, uint32 seq_num)
786 unix_to_nt_time(&u_8->domain_create_time, 0);
787 u_8->seq_num = seq_num;
790 /*******************************************************************
791 reads or writes a structure.
792 ********************************************************************/
794 static BOOL sam_io_unk_info8(const char *desc, SAM_UNK_INFO_8 * u_8,
795 prs_struct *ps, int depth)
797 if (u_8 == NULL)
798 return False;
800 prs_debug(ps, depth, desc, "sam_io_unk_info8");
801 depth++;
803 if (!prs_uint64("seq_num", ps, depth, &u_8->seq_num))
804 return False;
806 if(!smb_io_time("domain_create_time", &u_8->domain_create_time, ps, depth))
807 return False;
809 return True;
812 /*******************************************************************
813 inits a structure.
814 ********************************************************************/
816 void init_unk_info9(SAM_UNK_INFO_9 * u_9, uint32 unknown)
818 u_9->unknown = unknown;
821 /*******************************************************************
822 reads or writes a structure.
823 ********************************************************************/
825 static BOOL sam_io_unk_info9(const char *desc, SAM_UNK_INFO_9 * u_9,
826 prs_struct *ps, int depth)
828 if (u_9 == NULL)
829 return False;
831 prs_debug(ps, depth, desc, "sam_io_unk_info9");
832 depth++;
834 if (!prs_uint32("unknown", ps, depth, &u_9->unknown))
835 return False;
837 return True;
840 /*******************************************************************
841 inits a structure.
842 ********************************************************************/
844 void init_unk_info12(SAM_UNK_INFO_12 * u_12, NTTIME nt_lock_duration, NTTIME nt_reset_time, uint16 lockout)
846 u_12->duration = nt_lock_duration;
847 u_12->reset_count = nt_reset_time;
849 u_12->bad_attempt_lockout = lockout;
852 /*******************************************************************
853 reads or writes a structure.
854 ********************************************************************/
856 static BOOL sam_io_unk_info12(const char *desc, SAM_UNK_INFO_12 * u_12,
857 prs_struct *ps, int depth)
859 if (u_12 == NULL)
860 return False;
862 prs_debug(ps, depth, desc, "sam_io_unk_info12");
863 depth++;
865 if(!smb_io_time("duration", &u_12->duration, ps, depth))
866 return False;
867 if(!smb_io_time("reset_count", &u_12->reset_count, ps, depth))
868 return False;
869 if(!prs_uint16("bad_attempt_lockout", ps, depth, &u_12->bad_attempt_lockout))
870 return False;
872 return True;
875 /*******************************************************************
876 inits a structure.
877 ********************************************************************/
879 void init_unk_info13(SAM_UNK_INFO_13 * u_13, uint32 seq_num)
881 unix_to_nt_time(&u_13->domain_create_time, 0);
882 u_13->seq_num = seq_num;
883 u_13->unknown1 = 0;
884 u_13->unknown2 = 0;
887 /*******************************************************************
888 reads or writes a structure.
889 ********************************************************************/
891 static BOOL sam_io_unk_info13(const char *desc, SAM_UNK_INFO_13 * u_13,
892 prs_struct *ps, int depth)
894 if (u_13 == NULL)
895 return False;
897 prs_debug(ps, depth, desc, "sam_io_unk_info13");
898 depth++;
900 if (!prs_uint64("seq_num", ps, depth, &u_13->seq_num))
901 return False;
903 if(!smb_io_time("domain_create_time", &u_13->domain_create_time, ps, depth))
904 return False;
906 if (!prs_uint32("unknown1", ps, depth, &u_13->unknown1))
907 return False;
908 if (!prs_uint32("unknown2", ps, depth, &u_13->unknown2))
909 return False;
911 return True;
914 /*******************************************************************
915 inits a SAMR_R_QUERY_DOMAIN_INFO structure.
916 ********************************************************************/
918 void init_samr_r_query_domain_info(SAMR_R_QUERY_DOMAIN_INFO * r_u,
919 uint16 switch_value, SAM_UNK_CTR * ctr,
920 NTSTATUS status)
922 DEBUG(5, ("init_samr_r_query_domain_info\n"));
924 r_u->ptr_0 = 0;
925 r_u->switch_value = 0;
926 r_u->status = status; /* return status */
928 if (NT_STATUS_IS_OK(status)) {
929 r_u->switch_value = switch_value;
930 r_u->ptr_0 = 1;
931 r_u->ctr = ctr;
935 /*******************************************************************
936 reads or writes a structure.
937 ********************************************************************/
939 BOOL samr_io_r_query_domain_info(const char *desc, SAMR_R_QUERY_DOMAIN_INFO * r_u,
940 prs_struct *ps, int depth)
942 if (r_u == NULL)
943 return False;
945 prs_debug(ps, depth, desc, "samr_io_r_query_domain_info");
946 depth++;
948 if(!prs_align(ps))
949 return False;
951 if(!prs_uint32("ptr_0 ", ps, depth, &r_u->ptr_0))
952 return False;
954 if (r_u->ptr_0 != 0 && r_u->ctr != NULL) {
955 if(!prs_uint16("switch_value", ps, depth, &r_u->switch_value))
956 return False;
957 if(!prs_align(ps))
958 return False;
960 switch (r_u->switch_value) {
961 case 0x0d:
962 if(!sam_io_unk_info13("unk_inf13", &r_u->ctr->info.inf13, ps, depth))
963 return False;
964 break;
965 case 0x0c:
966 if(!sam_io_unk_info12("unk_inf12", &r_u->ctr->info.inf12, ps, depth))
967 return False;
968 break;
969 case 0x09:
970 if(!sam_io_unk_info9("unk_inf9",&r_u->ctr->info.inf9, ps,depth))
971 return False;
972 break;
973 case 0x08:
974 if(!sam_io_unk_info8("unk_inf8",&r_u->ctr->info.inf8, ps,depth))
975 return False;
976 break;
977 case 0x07:
978 if(!sam_io_unk_info7("unk_inf7",&r_u->ctr->info.inf7, ps,depth))
979 return False;
980 break;
981 case 0x06:
982 if(!sam_io_unk_info6("unk_inf6",&r_u->ctr->info.inf6, ps,depth))
983 return False;
984 break;
985 case 0x05:
986 if(!sam_io_unk_info5("unk_inf5",&r_u->ctr->info.inf5, ps,depth))
987 return False;
988 break;
989 case 0x04:
990 if(!sam_io_unk_info4("unk_inf4",&r_u->ctr->info.inf4, ps,depth))
991 return False;
992 break;
993 case 0x03:
994 if(!sam_io_unk_info3("unk_inf3",&r_u->ctr->info.inf3, ps,depth))
995 return False;
996 break;
997 case 0x02:
998 if(!sam_io_unk_info2("unk_inf2",&r_u->ctr->info.inf2, ps,depth))
999 return False;
1000 break;
1001 case 0x01:
1002 if(!sam_io_unk_info1("unk_inf1",&r_u->ctr->info.inf1, ps,depth))
1003 return False;
1004 break;
1005 default:
1006 DEBUG(0, ("samr_io_r_query_domain_info: unknown switch level 0x%x\n",
1007 r_u->switch_value));
1008 r_u->status = NT_STATUS_INVALID_INFO_CLASS;
1009 return False;
1013 if(!prs_align(ps))
1014 return False;
1016 if(!prs_ntstatus("status", ps, depth, &r_u->status))
1017 return False;
1019 return True;
1022 /*******************************************************************
1023 reads or writes a structure.
1024 ********************************************************************/
1026 void init_samr_q_set_sec_obj(SAMR_Q_SET_SEC_OBJ * q_u,
1027 POLICY_HND *pol, uint32 sec_info, SEC_DESC_BUF *buf)
1029 DEBUG(5, ("samr_init_samr_q_set_sec_obj\n"));
1031 q_u->pol = *pol;
1032 q_u->sec_info = sec_info;
1033 q_u->buf = buf;
1037 /*******************************************************************
1038 reads or writes a SAMR_R_SET_SEC_OBJ structure.
1039 ********************************************************************/
1041 BOOL samr_io_r_set_sec_obj(const char *desc, SAMR_R_SET_SEC_OBJ * r_u,
1042 prs_struct *ps, int depth)
1044 if (r_u == NULL)
1045 return False;
1047 prs_debug(ps, depth, desc, "samr_io_r_set_sec_obj");
1048 depth++;
1050 if(!prs_align(ps))
1051 return False;
1053 if(!prs_ntstatus("status", ps, depth, &r_u->status))
1054 return False;
1056 return True;
1059 /*******************************************************************
1060 reads or writes a SAMR_R_QUERY_SEC_OBJ structure.
1061 ********************************************************************/
1063 BOOL samr_io_r_query_sec_obj(const char *desc, SAMR_R_QUERY_SEC_OBJ * r_u,
1064 prs_struct *ps, int depth)
1066 if (r_u == NULL)
1067 return False;
1069 prs_debug(ps, depth, desc, "samr_io_r_query_sec_obj");
1070 depth++;
1072 if(!prs_align(ps))
1073 return False;
1075 if(!prs_uint32("ptr", ps, depth, &r_u->ptr))
1076 return False;
1077 if (r_u->ptr != 0) {
1078 if(!sec_io_desc_buf("sec", &r_u->buf, ps, depth))
1079 return False;
1082 if(!prs_ntstatus("status", ps, depth, &r_u->status))
1083 return False;
1085 return True;
1088 /*******************************************************************
1089 reads or writes a SAM_STR1 structure.
1090 ********************************************************************/
1092 static BOOL sam_io_sam_str1(const char *desc, SAM_STR1 * sam, uint32 acct_buf,
1093 uint32 name_buf, uint32 desc_buf,
1094 prs_struct *ps, int depth)
1096 if (sam == NULL)
1097 return False;
1099 prs_debug(ps, depth, desc, "sam_io_sam_str1");
1100 depth++;
1102 if(!prs_align(ps))
1103 return False;
1104 if (!smb_io_unistr2("name", &sam->uni_acct_name, acct_buf, ps, depth))
1105 return False;
1107 if (!smb_io_unistr2("desc", &sam->uni_acct_desc, desc_buf, ps, depth))
1108 return False;
1110 if (!smb_io_unistr2("full", &sam->uni_full_name, name_buf, ps, depth))
1111 return False;
1113 return True;
1116 /*******************************************************************
1117 inits a SAM_ENTRY1 structure.
1118 ********************************************************************/
1120 static void init_sam_entry1(SAM_ENTRY1 *sam, uint32 user_idx,
1121 UNISTR2 *sam_name, UNISTR2 *sam_full,
1122 UNISTR2 *sam_desc, uint32 rid_user,
1123 uint32 acb_info)
1125 DEBUG(5, ("init_sam_entry1\n"));
1127 ZERO_STRUCTP(sam);
1129 sam->user_idx = user_idx;
1130 sam->rid_user = rid_user;
1131 sam->acb_info = acb_info;
1133 init_uni_hdr(&sam->hdr_acct_name, sam_name);
1134 init_uni_hdr(&sam->hdr_user_name, sam_full);
1135 init_uni_hdr(&sam->hdr_user_desc, sam_desc);
1138 /*******************************************************************
1139 reads or writes a SAM_ENTRY1 structure.
1140 ********************************************************************/
1142 static BOOL sam_io_sam_entry1(const char *desc, SAM_ENTRY1 * sam,
1143 prs_struct *ps, int depth)
1145 if (sam == NULL)
1146 return False;
1148 prs_debug(ps, depth, desc, "sam_io_sam_entry1");
1149 depth++;
1151 if(!prs_align(ps))
1152 return False;
1154 if(!prs_uint32("user_idx ", ps, depth, &sam->user_idx))
1155 return False;
1157 if(!prs_uint32("rid_user ", ps, depth, &sam->rid_user))
1158 return False;
1159 if(!prs_uint32("acb_info ", ps, depth, &sam->acb_info))
1160 return False;
1162 if (!smb_io_unihdr("hdr_acct_name", &sam->hdr_acct_name, ps, depth))
1163 return False;
1164 if (!smb_io_unihdr("hdr_user_desc", &sam->hdr_user_desc, ps, depth))
1165 return False;
1166 if (!smb_io_unihdr("hdr_user_name", &sam->hdr_user_name, ps, depth))
1167 return False;
1169 return True;
1172 /*******************************************************************
1173 reads or writes a SAM_STR2 structure.
1174 ********************************************************************/
1176 static BOOL sam_io_sam_str2(const char *desc, SAM_STR2 * sam, uint32 acct_buf,
1177 uint32 desc_buf, prs_struct *ps, int depth)
1179 if (sam == NULL)
1180 return False;
1182 prs_debug(ps, depth, desc, "sam_io_sam_str2");
1183 depth++;
1185 if(!prs_align(ps))
1186 return False;
1188 if(!smb_io_unistr2("uni_srv_name", &sam->uni_srv_name, acct_buf, ps, depth)) /* account name unicode string */
1189 return False;
1190 if(!smb_io_unistr2("uni_srv_desc", &sam->uni_srv_desc, desc_buf, ps, depth)) /* account desc unicode string */
1191 return False;
1193 return True;
1196 /*******************************************************************
1197 inits a SAM_ENTRY2 structure.
1198 ********************************************************************/
1199 static void init_sam_entry2(SAM_ENTRY2 * sam, uint32 user_idx,
1200 UNISTR2 *sam_name, UNISTR2 *sam_desc,
1201 uint32 rid_user, uint32 acb_info)
1203 DEBUG(5, ("init_sam_entry2\n"));
1205 sam->user_idx = user_idx;
1206 sam->rid_user = rid_user;
1207 sam->acb_info = acb_info;
1209 init_uni_hdr(&sam->hdr_srv_name, sam_name);
1210 init_uni_hdr(&sam->hdr_srv_desc, sam_desc);
1213 /*******************************************************************
1214 reads or writes a SAM_ENTRY2 structure.
1215 ********************************************************************/
1217 static BOOL sam_io_sam_entry2(const char *desc, SAM_ENTRY2 * sam,
1218 prs_struct *ps, int depth)
1220 if (sam == NULL)
1221 return False;
1223 prs_debug(ps, depth, desc, "sam_io_sam_entry2");
1224 depth++;
1226 if(!prs_align(ps))
1227 return False;
1229 if(!prs_uint32("user_idx ", ps, depth, &sam->user_idx))
1230 return False;
1232 if(!prs_uint32("rid_user ", ps, depth, &sam->rid_user))
1233 return False;
1234 if(!prs_uint32("acb_info ", ps, depth, &sam->acb_info))
1235 return False;
1237 if(!smb_io_unihdr("unihdr", &sam->hdr_srv_name, ps, depth)) /* account name unicode string header */
1238 return False;
1239 if(!smb_io_unihdr("unihdr", &sam->hdr_srv_desc, ps, depth)) /* account name unicode string header */
1240 return False;
1242 return True;
1245 /*******************************************************************
1246 reads or writes a SAM_STR3 structure.
1247 ********************************************************************/
1249 static BOOL sam_io_sam_str3(const char *desc, SAM_STR3 * sam, uint32 acct_buf,
1250 uint32 desc_buf, prs_struct *ps, int depth)
1252 if (sam == NULL)
1253 return False;
1255 prs_debug(ps, depth, desc, "sam_io_sam_str3");
1256 depth++;
1258 if(!prs_align(ps))
1259 return False;
1261 if(!smb_io_unistr2("uni_grp_name", &sam->uni_grp_name, acct_buf, ps, depth)) /* account name unicode string */
1262 return False;
1263 if(!smb_io_unistr2("uni_grp_desc", &sam->uni_grp_desc, desc_buf, ps, depth)) /* account desc unicode string */
1264 return False;
1266 return True;
1269 /*******************************************************************
1270 inits a SAM_ENTRY3 structure.
1271 ********************************************************************/
1273 static void init_sam_entry3(SAM_ENTRY3 * sam, uint32 grp_idx,
1274 UNISTR2 *grp_name, UNISTR2 *grp_desc,
1275 uint32 rid_grp)
1277 DEBUG(5, ("init_sam_entry3\n"));
1279 sam->grp_idx = grp_idx;
1280 sam->rid_grp = rid_grp;
1281 sam->attr = 0x07; /* group rid attributes - gets ignored by nt 4.0 */
1283 init_uni_hdr(&sam->hdr_grp_name, grp_name);
1284 init_uni_hdr(&sam->hdr_grp_desc, grp_desc);
1287 /*******************************************************************
1288 reads or writes a SAM_ENTRY3 structure.
1289 ********************************************************************/
1291 static BOOL sam_io_sam_entry3(const char *desc, SAM_ENTRY3 * sam,
1292 prs_struct *ps, int depth)
1294 if (sam == NULL)
1295 return False;
1297 prs_debug(ps, depth, desc, "sam_io_sam_entry3");
1298 depth++;
1300 if(!prs_align(ps))
1301 return False;
1303 if(!prs_uint32("grp_idx", ps, depth, &sam->grp_idx))
1304 return False;
1306 if(!prs_uint32("rid_grp", ps, depth, &sam->rid_grp))
1307 return False;
1308 if(!prs_uint32("attr ", ps, depth, &sam->attr))
1309 return False;
1311 if(!smb_io_unihdr("unihdr", &sam->hdr_grp_name, ps, depth)) /* account name unicode string header */
1312 return False;
1313 if(!smb_io_unihdr("unihdr", &sam->hdr_grp_desc, ps, depth)) /* account name unicode string header */
1314 return False;
1316 return True;
1319 /*******************************************************************
1320 inits a SAM_ENTRY4 structure.
1321 ********************************************************************/
1323 static void init_sam_entry4(SAM_ENTRY4 * sam, uint32 user_idx,
1324 uint32 len_acct_name)
1326 DEBUG(5, ("init_sam_entry4\n"));
1328 sam->user_idx = user_idx;
1329 init_str_hdr(&sam->hdr_acct_name, len_acct_name+1, len_acct_name, len_acct_name != 0);
1332 /*******************************************************************
1333 reads or writes a SAM_ENTRY4 structure.
1334 ********************************************************************/
1336 static BOOL sam_io_sam_entry4(const char *desc, SAM_ENTRY4 * sam,
1337 prs_struct *ps, int depth)
1339 if (sam == NULL)
1340 return False;
1342 prs_debug(ps, depth, desc, "sam_io_sam_entry4");
1343 depth++;
1345 if(!prs_align(ps))
1346 return False;
1348 if(!prs_uint32("user_idx", ps, depth, &sam->user_idx))
1349 return False;
1350 if(!smb_io_strhdr("strhdr", &sam->hdr_acct_name, ps, depth))
1351 return False;
1353 return True;
1356 /*******************************************************************
1357 inits a SAM_ENTRY5 structure.
1358 ********************************************************************/
1360 static void init_sam_entry5(SAM_ENTRY5 * sam, uint32 grp_idx,
1361 uint32 len_grp_name)
1363 DEBUG(5, ("init_sam_entry5\n"));
1365 sam->grp_idx = grp_idx;
1366 init_str_hdr(&sam->hdr_grp_name, len_grp_name, len_grp_name,
1367 len_grp_name != 0);
1370 /*******************************************************************
1371 reads or writes a SAM_ENTRY5 structure.
1372 ********************************************************************/
1374 static BOOL sam_io_sam_entry5(const char *desc, SAM_ENTRY5 * sam,
1375 prs_struct *ps, int depth)
1377 if (sam == NULL)
1378 return False;
1380 prs_debug(ps, depth, desc, "sam_io_sam_entry5");
1381 depth++;
1383 if(!prs_align(ps))
1384 return False;
1386 if(!prs_uint32("grp_idx", ps, depth, &sam->grp_idx))
1387 return False;
1388 if(!smb_io_strhdr("strhdr", &sam->hdr_grp_name, ps, depth))
1389 return False;
1391 return True;
1394 /*******************************************************************
1395 inits a SAM_ENTRY structure.
1396 ********************************************************************/
1398 void init_sam_entry(SAM_ENTRY *sam, UNISTR2 *uni2, uint32 rid)
1400 DEBUG(10, ("init_sam_entry: %d\n", rid));
1402 sam->rid = rid;
1403 init_uni_hdr(&sam->hdr_name, uni2);
1406 /*******************************************************************
1407 reads or writes a SAM_ENTRY structure.
1408 ********************************************************************/
1410 static BOOL sam_io_sam_entry(const char *desc, SAM_ENTRY * sam,
1411 prs_struct *ps, int depth)
1413 if (sam == NULL)
1414 return False;
1416 prs_debug(ps, depth, desc, "sam_io_sam_entry");
1417 depth++;
1419 if(!prs_align(ps))
1420 return False;
1421 if(!prs_uint32("rid", ps, depth, &sam->rid))
1422 return False;
1423 if(!smb_io_unihdr("unihdr", &sam->hdr_name, ps, depth)) /* account name unicode string header */
1424 return False;
1426 return True;
1429 /*******************************************************************
1430 inits a SAMR_Q_ENUM_DOM_USERS structure.
1431 ********************************************************************/
1433 void init_samr_q_enum_dom_users(SAMR_Q_ENUM_DOM_USERS * q_e, POLICY_HND *pol,
1434 uint32 start_idx,
1435 uint32 acb_mask, uint32 size)
1437 DEBUG(5, ("init_samr_q_enum_dom_users\n"));
1439 q_e->pol = *pol;
1441 q_e->start_idx = start_idx; /* zero indicates lots */
1442 q_e->acb_mask = acb_mask;
1443 q_e->max_size = size;
1446 /*******************************************************************
1447 reads or writes a structure.
1448 ********************************************************************/
1450 BOOL samr_io_q_enum_dom_users(const char *desc, SAMR_Q_ENUM_DOM_USERS * q_e,
1451 prs_struct *ps, int depth)
1453 if (q_e == NULL)
1454 return False;
1456 prs_debug(ps, depth, desc, "samr_io_q_enum_dom_users");
1457 depth++;
1459 if(!prs_align(ps))
1460 return False;
1462 if(!smb_io_pol_hnd("domain_pol", &q_e->pol, ps, depth))
1463 return False;
1465 if(!prs_uint32("start_idx", ps, depth, &q_e->start_idx))
1466 return False;
1467 if(!prs_uint32("acb_mask ", ps, depth, &q_e->acb_mask))
1468 return False;
1470 if(!prs_uint32("max_size ", ps, depth, &q_e->max_size))
1471 return False;
1473 return True;
1477 /*******************************************************************
1478 inits a SAMR_R_ENUM_DOM_USERS structure.
1479 ********************************************************************/
1481 void init_samr_r_enum_dom_users(SAMR_R_ENUM_DOM_USERS * r_u,
1482 uint32 next_idx, uint32 num_sam_entries)
1484 DEBUG(5, ("init_samr_r_enum_dom_users\n"));
1486 r_u->next_idx = next_idx;
1488 if (num_sam_entries != 0) {
1489 r_u->ptr_entries1 = 1;
1490 r_u->ptr_entries2 = 1;
1491 r_u->num_entries2 = num_sam_entries;
1492 r_u->num_entries3 = num_sam_entries;
1494 r_u->num_entries4 = num_sam_entries;
1495 } else {
1496 r_u->ptr_entries1 = 0;
1497 r_u->num_entries2 = num_sam_entries;
1498 r_u->ptr_entries2 = 1;
1502 /*******************************************************************
1503 reads or writes a structure.
1504 ********************************************************************/
1506 BOOL samr_io_r_enum_dom_users(const char *desc, SAMR_R_ENUM_DOM_USERS * r_u,
1507 prs_struct *ps, int depth)
1509 uint32 i;
1511 if (r_u == NULL)
1512 return False;
1514 prs_debug(ps, depth, desc, "samr_io_r_enum_dom_users");
1515 depth++;
1517 if(!prs_align(ps))
1518 return False;
1520 if(!prs_uint32("next_idx ", ps, depth, &r_u->next_idx))
1521 return False;
1522 if(!prs_uint32("ptr_entries1", ps, depth, &r_u->ptr_entries1))
1523 return False;
1525 if (r_u->ptr_entries1 != 0) {
1526 if(!prs_uint32("num_entries2", ps, depth, &r_u->num_entries2))
1527 return False;
1528 if(!prs_uint32("ptr_entries2", ps, depth, &r_u->ptr_entries2))
1529 return False;
1530 if(!prs_uint32("num_entries3", ps, depth, &r_u->num_entries3))
1531 return False;
1533 if (UNMARSHALLING(ps) && (r_u->num_entries2 != 0)) {
1534 r_u->sam = PRS_ALLOC_MEM(ps,SAM_ENTRY, r_u->num_entries2);
1535 r_u->uni_acct_name = PRS_ALLOC_MEM(ps,UNISTR2, r_u->num_entries2);
1538 if ((r_u->sam == NULL || r_u->uni_acct_name == NULL) && r_u->num_entries2 != 0) {
1539 DEBUG(0,("NULL pointers in SAMR_R_ENUM_DOM_USERS\n"));
1540 r_u->num_entries4 = 0;
1541 r_u->status = NT_STATUS_MEMORY_NOT_ALLOCATED;
1542 return False;
1545 for (i = 0; i < r_u->num_entries2; i++) {
1546 if(!sam_io_sam_entry("", &r_u->sam[i], ps, depth))
1547 return False;
1550 for (i = 0; i < r_u->num_entries2; i++) {
1551 if(!smb_io_unistr2("", &r_u->uni_acct_name[i],r_u->sam[i].hdr_name.buffer, ps,depth))
1552 return False;
1557 if(!prs_align(ps))
1558 return False;
1560 if(!prs_uint32("num_entries4", ps, depth, &r_u->num_entries4))
1561 return False;
1562 if(!prs_ntstatus("status", ps, depth, &r_u->status))
1563 return False;
1565 return True;
1568 /*******************************************************************
1569 inits a SAMR_Q_QUERY_DISPINFO structure.
1570 ********************************************************************/
1572 void init_samr_q_query_dispinfo(SAMR_Q_QUERY_DISPINFO * q_e, POLICY_HND *pol,
1573 uint16 switch_level, uint32 start_idx,
1574 uint32 max_entries, uint32 max_size)
1576 DEBUG(5, ("init_samr_q_query_dispinfo\n"));
1578 q_e->domain_pol = *pol;
1580 q_e->switch_level = switch_level;
1582 q_e->start_idx = start_idx;
1583 q_e->max_entries = max_entries;
1584 q_e->max_size = max_size;
1587 /*******************************************************************
1588 reads or writes a structure.
1589 ********************************************************************/
1591 BOOL samr_io_q_query_dispinfo(const char *desc, SAMR_Q_QUERY_DISPINFO * q_e,
1592 prs_struct *ps, int depth)
1594 if (q_e == NULL)
1595 return False;
1597 prs_debug(ps, depth, desc, "samr_io_q_query_dispinfo");
1598 depth++;
1600 if(!prs_align(ps))
1601 return False;
1603 if(!smb_io_pol_hnd("domain_pol", &q_e->domain_pol, ps, depth))
1604 return False;
1606 if(!prs_uint16("switch_level", ps, depth, &q_e->switch_level))
1607 return False;
1608 if(!prs_align(ps))
1609 return False;
1611 if(!prs_uint32("start_idx ", ps, depth, &q_e->start_idx))
1612 return False;
1613 if(!prs_uint32("max_entries ", ps, depth, &q_e->max_entries))
1614 return False;
1615 if(!prs_uint32("max_size ", ps, depth, &q_e->max_size))
1616 return False;
1618 return True;
1621 /*******************************************************************
1622 inits a SAM_DISPINFO_1 structure.
1623 ********************************************************************/
1625 NTSTATUS init_sam_dispinfo_1(TALLOC_CTX *ctx, SAM_DISPINFO_1 **sam,
1626 uint32 num_entries, uint32 start_idx,
1627 struct samr_displayentry *entries)
1629 uint32 i;
1631 DEBUG(10, ("init_sam_dispinfo_1: num_entries: %d\n", num_entries));
1633 if (num_entries==0)
1634 return NT_STATUS_OK;
1636 *sam = TALLOC_ZERO_ARRAY(ctx, SAM_DISPINFO_1, num_entries);
1637 if (*sam == NULL)
1638 return NT_STATUS_NO_MEMORY;
1640 (*sam)->sam=TALLOC_ARRAY(ctx, SAM_ENTRY1, num_entries);
1641 if ((*sam)->sam == NULL)
1642 return NT_STATUS_NO_MEMORY;
1644 (*sam)->str=TALLOC_ARRAY(ctx, SAM_STR1, num_entries);
1645 if ((*sam)->str == NULL)
1646 return NT_STATUS_NO_MEMORY;
1648 for (i = 0; i < num_entries ; i++) {
1649 init_unistr2(&(*sam)->str[i].uni_acct_name,
1650 entries[i].account_name, UNI_FLAGS_NONE);
1651 init_unistr2(&(*sam)->str[i].uni_full_name,
1652 entries[i].fullname, UNI_FLAGS_NONE);
1653 init_unistr2(&(*sam)->str[i].uni_acct_desc,
1654 entries[i].description, UNI_FLAGS_NONE);
1656 init_sam_entry1(&(*sam)->sam[i], start_idx+i+1,
1657 &(*sam)->str[i].uni_acct_name,
1658 &(*sam)->str[i].uni_full_name,
1659 &(*sam)->str[i].uni_acct_desc,
1660 entries[i].rid, entries[i].acct_flags);
1663 return NT_STATUS_OK;
1666 /*******************************************************************
1667 reads or writes a structure.
1668 ********************************************************************/
1670 static BOOL sam_io_sam_dispinfo_1(const char *desc, SAM_DISPINFO_1 * sam,
1671 uint32 num_entries,
1672 prs_struct *ps, int depth)
1674 uint32 i;
1676 prs_debug(ps, depth, desc, "sam_io_sam_dispinfo_1");
1677 depth++;
1679 if(!prs_align(ps))
1680 return False;
1682 if (UNMARSHALLING(ps) && num_entries > 0) {
1684 if ((sam->sam = PRS_ALLOC_MEM(ps, SAM_ENTRY1, num_entries)) == NULL) {
1685 DEBUG(0, ("out of memory allocating SAM_ENTRY1\n"));
1686 return False;
1689 if ((sam->str = PRS_ALLOC_MEM(ps, SAM_STR1, num_entries)) == NULL) {
1690 DEBUG(0, ("out of memory allocating SAM_STR1\n"));
1691 return False;
1695 for (i = 0; i < num_entries; i++) {
1696 if(!sam_io_sam_entry1("", &sam->sam[i], ps, depth))
1697 return False;
1700 for (i = 0; i < num_entries; i++) {
1701 if(!sam_io_sam_str1("", &sam->str[i],
1702 sam->sam[i].hdr_acct_name.buffer,
1703 sam->sam[i].hdr_user_name.buffer,
1704 sam->sam[i].hdr_user_desc.buffer, ps, depth))
1705 return False;
1708 return True;
1711 /*******************************************************************
1712 inits a SAM_DISPINFO_2 structure.
1713 ********************************************************************/
1715 NTSTATUS init_sam_dispinfo_2(TALLOC_CTX *ctx, SAM_DISPINFO_2 **sam,
1716 uint32 num_entries, uint32 start_idx,
1717 struct samr_displayentry *entries)
1719 uint32 i;
1721 DEBUG(10, ("init_sam_dispinfo_2: num_entries: %d\n", num_entries));
1723 if (num_entries==0)
1724 return NT_STATUS_OK;
1726 *sam = TALLOC_ZERO_ARRAY(ctx, SAM_DISPINFO_2, num_entries);
1727 if (*sam == NULL)
1728 return NT_STATUS_NO_MEMORY;
1730 (*sam)->sam = TALLOC_ARRAY(ctx, SAM_ENTRY2, num_entries);
1731 if ((*sam)->sam == NULL)
1732 return NT_STATUS_NO_MEMORY;
1734 (*sam)->str=TALLOC_ARRAY(ctx, SAM_STR2, num_entries);
1735 if ((*sam)->str == NULL)
1736 return NT_STATUS_NO_MEMORY;
1738 for (i = 0; i < num_entries; i++) {
1739 init_unistr2(&(*sam)->str[i].uni_srv_name,
1740 entries[i].account_name, UNI_FLAGS_NONE);
1741 init_unistr2(&(*sam)->str[i].uni_srv_desc,
1742 entries[i].description, UNI_FLAGS_NONE);
1744 init_sam_entry2(&(*sam)->sam[i], start_idx + i + 1,
1745 &(*sam)->str[i].uni_srv_name,
1746 &(*sam)->str[i].uni_srv_desc,
1747 entries[i].rid, entries[i].acct_flags);
1750 return NT_STATUS_OK;
1753 /*******************************************************************
1754 reads or writes a structure.
1755 ********************************************************************/
1757 static BOOL sam_io_sam_dispinfo_2(const char *desc, SAM_DISPINFO_2 * sam,
1758 uint32 num_entries,
1759 prs_struct *ps, int depth)
1761 uint32 i;
1763 if (sam == NULL)
1764 return False;
1766 prs_debug(ps, depth, desc, "sam_io_sam_dispinfo_2");
1767 depth++;
1769 if(!prs_align(ps))
1770 return False;
1772 if (UNMARSHALLING(ps) && num_entries > 0) {
1774 if ((sam->sam = PRS_ALLOC_MEM(ps, SAM_ENTRY2, num_entries)) == NULL) {
1775 DEBUG(0, ("out of memory allocating SAM_ENTRY2\n"));
1776 return False;
1779 if ((sam->str = PRS_ALLOC_MEM(ps, SAM_STR2, num_entries)) == NULL) {
1780 DEBUG(0, ("out of memory allocating SAM_STR2\n"));
1781 return False;
1785 for (i = 0; i < num_entries; i++) {
1786 if(!sam_io_sam_entry2("", &sam->sam[i], ps, depth))
1787 return False;
1790 for (i = 0; i < num_entries; i++) {
1791 if(!sam_io_sam_str2("", &sam->str[i],
1792 sam->sam[i].hdr_srv_name.buffer,
1793 sam->sam[i].hdr_srv_desc.buffer, ps, depth))
1794 return False;
1797 return True;
1800 /*******************************************************************
1801 inits a SAM_DISPINFO_3 structure.
1802 ********************************************************************/
1804 NTSTATUS init_sam_dispinfo_3(TALLOC_CTX *ctx, SAM_DISPINFO_3 **sam,
1805 uint32 num_entries, uint32 start_idx,
1806 struct samr_displayentry *entries)
1808 uint32 i;
1810 DEBUG(5, ("init_sam_dispinfo_3: num_entries: %d\n", num_entries));
1812 if (num_entries==0)
1813 return NT_STATUS_OK;
1815 *sam = TALLOC_ZERO_ARRAY(ctx, SAM_DISPINFO_3, num_entries);
1816 if (*sam == NULL)
1817 return NT_STATUS_NO_MEMORY;
1819 if (!((*sam)->sam=TALLOC_ARRAY(ctx, SAM_ENTRY3, num_entries)))
1820 return NT_STATUS_NO_MEMORY;
1822 if (!((*sam)->str=TALLOC_ARRAY(ctx, SAM_STR3, num_entries)))
1823 return NT_STATUS_NO_MEMORY;
1825 for (i = 0; i < num_entries; i++) {
1826 DEBUG(11, ("init_sam_dispinfo_3: entry: %d\n",i));
1828 init_unistr2(&(*sam)->str[i].uni_grp_name,
1829 entries[i].account_name, UNI_FLAGS_NONE);
1830 init_unistr2(&(*sam)->str[i].uni_grp_desc,
1831 entries[i].description, UNI_FLAGS_NONE);
1833 init_sam_entry3(&(*sam)->sam[i], start_idx+i+1,
1834 &(*sam)->str[i].uni_grp_name,
1835 &(*sam)->str[i].uni_grp_desc,
1836 entries[i].rid);
1839 return NT_STATUS_OK;
1842 /*******************************************************************
1843 reads or writes a structure.
1844 ********************************************************************/
1846 static BOOL sam_io_sam_dispinfo_3(const char *desc, SAM_DISPINFO_3 * sam,
1847 uint32 num_entries,
1848 prs_struct *ps, int depth)
1850 uint32 i;
1852 if (sam == NULL)
1853 return False;
1855 prs_debug(ps, depth, desc, "sam_io_sam_dispinfo_3");
1856 depth++;
1858 if(!prs_align(ps))
1859 return False;
1861 if (UNMARSHALLING(ps) && num_entries > 0) {
1863 if ((sam->sam = PRS_ALLOC_MEM(ps, SAM_ENTRY3, num_entries)) == NULL) {
1864 DEBUG(0, ("out of memory allocating SAM_ENTRY3\n"));
1865 return False;
1868 if ((sam->str = PRS_ALLOC_MEM(ps, SAM_STR3, num_entries)) == NULL) {
1869 DEBUG(0, ("out of memory allocating SAM_STR3\n"));
1870 return False;
1874 for (i = 0; i < num_entries; i++) {
1875 if(!sam_io_sam_entry3("", &sam->sam[i], ps, depth))
1876 return False;
1879 for (i = 0; i < num_entries; i++) {
1880 if(!sam_io_sam_str3("", &sam->str[i],
1881 sam->sam[i].hdr_grp_name.buffer,
1882 sam->sam[i].hdr_grp_desc.buffer, ps, depth))
1883 return False;
1886 return True;
1889 /*******************************************************************
1890 inits a SAM_DISPINFO_4 structure.
1891 ********************************************************************/
1893 NTSTATUS init_sam_dispinfo_4(TALLOC_CTX *ctx, SAM_DISPINFO_4 **sam,
1894 uint32 num_entries, uint32 start_idx,
1895 struct samr_displayentry *entries)
1897 uint32 i;
1899 DEBUG(5, ("init_sam_dispinfo_4: num_entries: %d\n", num_entries));
1901 if (num_entries==0)
1902 return NT_STATUS_OK;
1904 *sam = TALLOC_ZERO_ARRAY(ctx, SAM_DISPINFO_4, num_entries);
1905 if (*sam == NULL)
1906 return NT_STATUS_NO_MEMORY;
1908 (*sam)->sam = TALLOC_ARRAY(ctx, SAM_ENTRY4, num_entries);
1909 if ((*sam)->sam == NULL)
1910 return NT_STATUS_NO_MEMORY;
1912 (*sam)->str=TALLOC_ARRAY(ctx, SAM_STR4, num_entries);
1913 if ((*sam)->str == NULL)
1914 return NT_STATUS_NO_MEMORY;
1916 for (i = 0; i < num_entries; i++) {
1917 size_t len_sam_name = strlen(entries[i].account_name);
1919 DEBUG(11, ("init_sam_dispinfo_2: entry: %d\n",i));
1921 init_sam_entry4(&(*sam)->sam[i], start_idx + i + 1,
1922 len_sam_name);
1924 init_string2(&(*sam)->str[i].acct_name,
1925 entries[i].account_name, len_sam_name+1,
1926 len_sam_name);
1929 return NT_STATUS_OK;
1932 /*******************************************************************
1933 reads or writes a structure.
1934 ********************************************************************/
1936 static BOOL sam_io_sam_dispinfo_4(const char *desc, SAM_DISPINFO_4 * sam,
1937 uint32 num_entries,
1938 prs_struct *ps, int depth)
1940 uint32 i;
1942 if (sam == NULL)
1943 return False;
1945 prs_debug(ps, depth, desc, "sam_io_sam_dispinfo_4");
1946 depth++;
1948 if(!prs_align(ps))
1949 return False;
1951 if (UNMARSHALLING(ps) && num_entries > 0) {
1953 if ((sam->sam = PRS_ALLOC_MEM(ps, SAM_ENTRY4, num_entries)) == NULL) {
1954 DEBUG(0, ("out of memory allocating SAM_ENTRY4\n"));
1955 return False;
1958 if ((sam->str = PRS_ALLOC_MEM(ps, SAM_STR4, num_entries)) == NULL) {
1959 DEBUG(0, ("out of memory allocating SAM_STR4\n"));
1960 return False;
1964 for (i = 0; i < num_entries; i++) {
1965 if(!sam_io_sam_entry4("", &sam->sam[i], ps, depth))
1966 return False;
1969 for (i = 0; i < num_entries; i++) {
1970 if(!smb_io_string2("acct_name", &sam->str[i].acct_name,
1971 sam->sam[i].hdr_acct_name.buffer, ps, depth))
1972 return False;
1975 return True;
1978 /*******************************************************************
1979 inits a SAM_DISPINFO_5 structure.
1980 ********************************************************************/
1982 NTSTATUS init_sam_dispinfo_5(TALLOC_CTX *ctx, SAM_DISPINFO_5 **sam,
1983 uint32 num_entries, uint32 start_idx,
1984 struct samr_displayentry *entries)
1986 uint32 len_sam_name;
1987 uint32 i;
1989 DEBUG(5, ("init_sam_dispinfo_5: num_entries: %d\n", num_entries));
1991 if (num_entries==0)
1992 return NT_STATUS_OK;
1994 *sam = TALLOC_ZERO_ARRAY(ctx, SAM_DISPINFO_5, num_entries);
1995 if (*sam == NULL)
1996 return NT_STATUS_NO_MEMORY;
1998 if (!((*sam)->sam=TALLOC_ARRAY(ctx, SAM_ENTRY5, num_entries)))
1999 return NT_STATUS_NO_MEMORY;
2001 if (!((*sam)->str=TALLOC_ARRAY(ctx, SAM_STR5, num_entries)))
2002 return NT_STATUS_NO_MEMORY;
2004 for (i = 0; i < num_entries; i++) {
2005 DEBUG(11, ("init_sam_dispinfo_5: entry: %d\n",i));
2007 len_sam_name = strlen(entries[i].account_name);
2009 init_sam_entry5(&(*sam)->sam[i], start_idx+i+1, len_sam_name);
2010 init_string2(&(*sam)->str[i].grp_name, entries[i].account_name,
2011 len_sam_name+1, len_sam_name);
2014 return NT_STATUS_OK;
2017 /*******************************************************************
2018 reads or writes a structure.
2019 ********************************************************************/
2021 static BOOL sam_io_sam_dispinfo_5(const char *desc, SAM_DISPINFO_5 * sam,
2022 uint32 num_entries,
2023 prs_struct *ps, int depth)
2025 uint32 i;
2027 if (sam == NULL)
2028 return False;
2030 prs_debug(ps, depth, desc, "sam_io_sam_dispinfo_5");
2031 depth++;
2033 if(!prs_align(ps))
2034 return False;
2036 if (UNMARSHALLING(ps) && num_entries > 0) {
2038 if ((sam->sam = PRS_ALLOC_MEM(ps, SAM_ENTRY5, num_entries)) == NULL) {
2039 DEBUG(0, ("out of memory allocating SAM_ENTRY5\n"));
2040 return False;
2043 if ((sam->str = PRS_ALLOC_MEM(ps, SAM_STR5, num_entries)) == NULL) {
2044 DEBUG(0, ("out of memory allocating SAM_STR5\n"));
2045 return False;
2049 for (i = 0; i < num_entries; i++) {
2050 if(!sam_io_sam_entry5("", &sam->sam[i], ps, depth))
2051 return False;
2054 for (i = 0; i < num_entries; i++) {
2055 if(!smb_io_string2("grp_name", &sam->str[i].grp_name,
2056 sam->sam[i].hdr_grp_name.buffer, ps, depth))
2057 return False;
2060 return True;
2063 /*******************************************************************
2064 inits a SAMR_R_QUERY_DISPINFO structure.
2065 ********************************************************************/
2067 void init_samr_r_query_dispinfo(SAMR_R_QUERY_DISPINFO * r_u,
2068 uint32 num_entries, uint32 total_size, uint32 data_size,
2069 uint16 switch_level, SAM_DISPINFO_CTR * ctr,
2070 NTSTATUS status)
2072 DEBUG(5, ("init_samr_r_query_dispinfo: level %d\n", switch_level));
2074 r_u->total_size = total_size;
2076 r_u->data_size = data_size;
2078 r_u->switch_level = switch_level;
2079 r_u->num_entries = num_entries;
2081 if (num_entries==0)
2082 r_u->ptr_entries = 0;
2083 else
2084 r_u->ptr_entries = 1;
2086 r_u->num_entries2 = num_entries;
2087 r_u->ctr = ctr;
2089 r_u->status = status;
2092 /*******************************************************************
2093 reads or writes a structure.
2094 ********************************************************************/
2096 BOOL samr_io_r_query_dispinfo(const char *desc, SAMR_R_QUERY_DISPINFO * r_u,
2097 prs_struct *ps, int depth)
2099 if (r_u == NULL)
2100 return False;
2102 prs_debug(ps, depth, desc, "samr_io_r_query_dispinfo");
2103 depth++;
2105 if(!prs_align(ps))
2106 return False;
2108 if(!prs_uint32("total_size ", ps, depth, &r_u->total_size))
2109 return False;
2110 if(!prs_uint32("data_size ", ps, depth, &r_u->data_size))
2111 return False;
2112 if(!prs_uint16("switch_level", ps, depth, &r_u->switch_level))
2113 return False;
2114 if(!prs_align(ps))
2115 return False;
2117 if(!prs_uint32("num_entries ", ps, depth, &r_u->num_entries))
2118 return False;
2119 if(!prs_uint32("ptr_entries ", ps, depth, &r_u->ptr_entries))
2120 return False;
2122 if (r_u->ptr_entries==0) {
2123 if(!prs_align(ps))
2124 return False;
2125 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2126 return False;
2128 return True;
2131 if(!prs_uint32("num_entries2", ps, depth, &r_u->num_entries2))
2132 return False;
2134 switch (r_u->switch_level) {
2135 case 0x1:
2136 if(!sam_io_sam_dispinfo_1("users", r_u->ctr->sam.info1,
2137 r_u->num_entries, ps, depth))
2138 return False;
2139 break;
2140 case 0x2:
2141 if(!sam_io_sam_dispinfo_2("servers", r_u->ctr->sam.info2,
2142 r_u->num_entries, ps, depth))
2143 return False;
2144 break;
2145 case 0x3:
2146 if(!sam_io_sam_dispinfo_3("groups", r_u->ctr->sam.info3,
2147 r_u->num_entries, ps, depth))
2148 return False;
2149 break;
2150 case 0x4:
2151 if(!sam_io_sam_dispinfo_4("user list",
2152 r_u->ctr->sam.info4,
2153 r_u->num_entries, ps, depth))
2154 return False;
2155 break;
2156 case 0x5:
2157 if(!sam_io_sam_dispinfo_5("group list",
2158 r_u->ctr->sam.info5,
2159 r_u->num_entries, ps, depth))
2160 return False;
2161 break;
2162 default:
2163 DEBUG(0,("samr_io_r_query_dispinfo: unknown switch value\n"));
2164 break;
2167 if(!prs_align(ps))
2168 return False;
2169 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2170 return False;
2172 return True;
2175 /*******************************************************************
2176 inits a SAMR_Q_OPEN_GROUP structure.
2177 ********************************************************************/
2179 void init_samr_q_open_group(SAMR_Q_OPEN_GROUP * q_c,
2180 POLICY_HND *hnd,
2181 uint32 access_mask, uint32 rid)
2183 DEBUG(5, ("init_samr_q_open_group\n"));
2185 q_c->domain_pol = *hnd;
2186 q_c->access_mask = access_mask;
2187 q_c->rid_group = rid;
2190 /*******************************************************************
2191 reads or writes a structure.
2192 ********************************************************************/
2194 BOOL samr_io_q_open_group(const char *desc, SAMR_Q_OPEN_GROUP * q_u,
2195 prs_struct *ps, int depth)
2197 if (q_u == NULL)
2198 return False;
2200 prs_debug(ps, depth, desc, "samr_io_q_open_group");
2201 depth++;
2203 if(!prs_align(ps))
2204 return False;
2206 if(!smb_io_pol_hnd("domain_pol", &q_u->domain_pol, ps, depth))
2207 return False;
2209 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
2210 return False;
2211 if(!prs_uint32("rid_group", ps, depth, &q_u->rid_group))
2212 return False;
2214 return True;
2217 /*******************************************************************
2218 reads or writes a structure.
2219 ********************************************************************/
2221 BOOL samr_io_r_open_group(const char *desc, SAMR_R_OPEN_GROUP * r_u,
2222 prs_struct *ps, int depth)
2224 if (r_u == NULL)
2225 return False;
2227 prs_debug(ps, depth, desc, "samr_io_r_open_group");
2228 depth++;
2230 if(!prs_align(ps))
2231 return False;
2233 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
2234 return False;
2236 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2237 return False;
2239 return True;
2242 /*******************************************************************
2243 inits a GROUP_INFO1 structure.
2244 ********************************************************************/
2246 void init_samr_group_info1(GROUP_INFO1 * gr1,
2247 char *acct_name, char *acct_desc,
2248 uint32 num_members)
2250 DEBUG(5, ("init_samr_group_info1\n"));
2252 gr1->group_attr = (SE_GROUP_MANDATORY|SE_GROUP_ENABLED_BY_DEFAULT); /* why not | SE_GROUP_ENABLED ? */
2253 gr1->num_members = num_members;
2255 init_unistr2(&gr1->uni_acct_name, acct_name, UNI_FLAGS_NONE);
2256 init_uni_hdr(&gr1->hdr_acct_name, &gr1->uni_acct_name);
2257 init_unistr2(&gr1->uni_acct_desc, acct_desc, UNI_FLAGS_NONE);
2258 init_uni_hdr(&gr1->hdr_acct_desc, &gr1->uni_acct_desc);
2261 /*******************************************************************
2262 reads or writes a structure.
2263 ********************************************************************/
2265 BOOL samr_io_group_info1(const char *desc, GROUP_INFO1 * gr1,
2266 prs_struct *ps, int depth)
2268 uint16 dummy = 1;
2270 if (gr1 == NULL)
2271 return False;
2273 prs_debug(ps, depth, desc, "samr_io_group_info1");
2274 depth++;
2276 if(!prs_uint16("level", ps, depth, &dummy))
2277 return False;
2279 if(!prs_align(ps))
2280 return False;
2282 if(!smb_io_unihdr("hdr_acct_name", &gr1->hdr_acct_name, ps, depth))
2283 return False;
2285 if(!prs_uint32("group_attr", ps, depth, &gr1->group_attr))
2286 return False;
2287 if(!prs_uint32("num_members", ps, depth, &gr1->num_members))
2288 return False;
2290 if(!smb_io_unihdr("hdr_acct_desc", &gr1->hdr_acct_desc, ps, depth))
2291 return False;
2293 if(!smb_io_unistr2("uni_acct_name", &gr1->uni_acct_name,
2294 gr1->hdr_acct_name.buffer, ps, depth))
2295 return False;
2297 if(!smb_io_unistr2("uni_acct_desc", &gr1->uni_acct_desc,
2298 gr1->hdr_acct_desc.buffer, ps, depth))
2299 return False;
2301 return True;
2304 /*******************************************************************
2305 inits a GROUP_INFO2 structure.
2306 ********************************************************************/
2308 void init_samr_group_info2(GROUP_INFO2 * gr2, const char *acct_name)
2310 DEBUG(5, ("init_samr_group_info2\n"));
2312 gr2->level = 2;
2313 init_unistr2(&gr2->uni_acct_name, acct_name, UNI_FLAGS_NONE);
2314 init_uni_hdr(&gr2->hdr_acct_name, &gr2->uni_acct_name);
2317 /*******************************************************************
2318 reads or writes a structure.
2319 ********************************************************************/
2321 BOOL samr_io_group_info2(const char *desc, GROUP_INFO2 *gr2, prs_struct *ps, int depth)
2323 if (gr2 == NULL)
2324 return False;
2326 prs_debug(ps, depth, desc, "samr_io_group_info2");
2327 depth++;
2329 if(!prs_uint16("hdr_level", ps, depth, &gr2->level))
2330 return False;
2332 if(!smb_io_unihdr("hdr_acct_name", &gr2->hdr_acct_name, ps, depth))
2333 return False;
2334 if(!smb_io_unistr2("uni_acct_name", &gr2->uni_acct_name,
2335 gr2->hdr_acct_name.buffer, ps, depth))
2336 return False;
2338 return True;
2341 /*******************************************************************
2342 inits a GROUP_INFO3 structure.
2343 ********************************************************************/
2345 void init_samr_group_info3(GROUP_INFO3 *gr3)
2347 DEBUG(5, ("init_samr_group_info3\n"));
2349 gr3->group_attr = (SE_GROUP_MANDATORY|SE_GROUP_ENABLED_BY_DEFAULT); /* why not | SE_GROUP_ENABLED ? */
2352 /*******************************************************************
2353 reads or writes a structure.
2354 ********************************************************************/
2356 BOOL samr_io_group_info3(const char *desc, GROUP_INFO3 *gr3, prs_struct *ps, int depth)
2358 if (gr3 == NULL)
2359 return False;
2361 prs_debug(ps, depth, desc, "samr_io_group_info3");
2362 depth++;
2364 if(!prs_align(ps))
2365 return False;
2367 if(!prs_uint32("group_attr", ps, depth, &gr3->group_attr))
2368 return False;
2370 return True;
2373 /*******************************************************************
2374 inits a GROUP_INFO4 structure.
2375 ********************************************************************/
2377 void init_samr_group_info4(GROUP_INFO4 * gr4, const char *acct_desc)
2379 DEBUG(5, ("init_samr_group_info4\n"));
2381 gr4->level = 4;
2382 init_unistr2(&gr4->uni_acct_desc, acct_desc, UNI_FLAGS_NONE);
2383 init_uni_hdr(&gr4->hdr_acct_desc, &gr4->uni_acct_desc);
2386 /*******************************************************************
2387 reads or writes a structure.
2388 ********************************************************************/
2390 BOOL samr_io_group_info4(const char *desc, GROUP_INFO4 * gr4,
2391 prs_struct *ps, int depth)
2393 if (gr4 == NULL)
2394 return False;
2396 prs_debug(ps, depth, desc, "samr_io_group_info4");
2397 depth++;
2399 if(!prs_uint16("hdr_level", ps, depth, &gr4->level))
2400 return False;
2401 if(!smb_io_unihdr("hdr_acct_desc", &gr4->hdr_acct_desc, ps, depth))
2402 return False;
2403 if(!smb_io_unistr2("uni_acct_desc", &gr4->uni_acct_desc,
2404 gr4->hdr_acct_desc.buffer, ps, depth))
2405 return False;
2407 return True;
2410 /*******************************************************************
2411 inits a GROUP_INFO5 structure.
2412 ********************************************************************/
2414 void init_samr_group_info5(GROUP_INFO5 * gr5,
2415 char *acct_name, char *acct_desc,
2416 uint32 num_members)
2418 DEBUG(5, ("init_samr_group_info5\n"));
2420 gr5->group_attr = (SE_GROUP_MANDATORY|SE_GROUP_ENABLED_BY_DEFAULT); /* why not | SE_GROUP_ENABLED ? */
2421 gr5->num_members = num_members;
2423 init_unistr2(&gr5->uni_acct_name, acct_name, UNI_FLAGS_NONE);
2424 init_uni_hdr(&gr5->hdr_acct_name, &gr5->uni_acct_name);
2425 init_unistr2(&gr5->uni_acct_desc, acct_desc, UNI_FLAGS_NONE);
2426 init_uni_hdr(&gr5->hdr_acct_desc, &gr5->uni_acct_desc);
2429 /*******************************************************************
2430 reads or writes a structure.
2431 ********************************************************************/
2433 BOOL samr_io_group_info5(const char *desc, GROUP_INFO5 * gr5,
2434 prs_struct *ps, int depth)
2436 uint16 dummy = 1;
2438 if (gr5 == NULL)
2439 return False;
2441 prs_debug(ps, depth, desc, "samr_io_group_info5");
2442 depth++;
2444 if(!prs_uint16("level", ps, depth, &dummy))
2445 return False;
2447 if(!prs_align(ps))
2448 return False;
2450 if(!smb_io_unihdr("hdr_acct_name", &gr5->hdr_acct_name, ps, depth))
2451 return False;
2453 if(!prs_uint32("group_attr", ps, depth, &gr5->group_attr))
2454 return False;
2455 if(!prs_uint32("num_members", ps, depth, &gr5->num_members))
2456 return False;
2458 if(!smb_io_unihdr("hdr_acct_desc", &gr5->hdr_acct_desc, ps, depth))
2459 return False;
2461 if(!smb_io_unistr2("uni_acct_name", &gr5->uni_acct_name,
2462 gr5->hdr_acct_name.buffer, ps, depth))
2463 return False;
2465 if(!smb_io_unistr2("uni_acct_desc", &gr5->uni_acct_desc,
2466 gr5->hdr_acct_desc.buffer, ps, depth))
2467 return False;
2469 return True;
2473 /*******************************************************************
2474 reads or writes a structure.
2475 ********************************************************************/
2477 static BOOL samr_group_info_ctr(const char *desc, GROUP_INFO_CTR **ctr,
2478 prs_struct *ps, int depth)
2480 if (UNMARSHALLING(ps))
2481 *ctr = PRS_ALLOC_MEM(ps,GROUP_INFO_CTR,1);
2483 if (*ctr == NULL)
2484 return False;
2486 prs_debug(ps, depth, desc, "samr_group_info_ctr");
2487 depth++;
2489 if(!prs_uint16("switch_value1", ps, depth, &(*ctr)->switch_value1))
2490 return False;
2492 switch ((*ctr)->switch_value1) {
2493 case 1:
2494 if(!samr_io_group_info1("group_info1", &(*ctr)->group.info1, ps, depth))
2495 return False;
2496 break;
2497 case 2:
2498 if(!samr_io_group_info2("group_info2", &(*ctr)->group.info2, ps, depth))
2499 return False;
2500 break;
2501 case 3:
2502 if(!samr_io_group_info3("group_info3", &(*ctr)->group.info3, ps, depth))
2503 return False;
2504 break;
2505 case 4:
2506 if(!samr_io_group_info4("group_info4", &(*ctr)->group.info4, ps, depth))
2507 return False;
2508 break;
2509 case 5:
2510 if(!samr_io_group_info5("group_info5", &(*ctr)->group.info5, ps, depth))
2511 return False;
2512 break;
2513 default:
2514 DEBUG(0,("samr_group_info_ctr: unsupported switch level\n"));
2515 break;
2518 return True;
2521 /*******************************************************************
2522 inits a SAMR_Q_CREATE_DOM_GROUP structure.
2523 ********************************************************************/
2525 void init_samr_q_create_dom_group(SAMR_Q_CREATE_DOM_GROUP * q_e,
2526 POLICY_HND *pol, const char *acct_desc,
2527 uint32 access_mask)
2529 DEBUG(5, ("init_samr_q_create_dom_group\n"));
2531 q_e->pol = *pol;
2533 init_unistr2(&q_e->uni_acct_desc, acct_desc, UNI_FLAGS_NONE);
2534 init_uni_hdr(&q_e->hdr_acct_desc, &q_e->uni_acct_desc);
2536 q_e->access_mask = access_mask;
2539 /*******************************************************************
2540 reads or writes a structure.
2541 ********************************************************************/
2543 BOOL samr_io_q_create_dom_group(const char *desc, SAMR_Q_CREATE_DOM_GROUP * q_e,
2544 prs_struct *ps, int depth)
2546 if (q_e == NULL)
2547 return False;
2549 prs_debug(ps, depth, desc, "samr_io_q_create_dom_group");
2550 depth++;
2552 if(!prs_align(ps))
2553 return False;
2555 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
2556 return False;
2558 if(!smb_io_unihdr("hdr_acct_desc", &q_e->hdr_acct_desc, ps, depth))
2559 return False;
2560 if(!smb_io_unistr2("uni_acct_desc", &q_e->uni_acct_desc,
2561 q_e->hdr_acct_desc.buffer, ps, depth))
2562 return False;
2564 if(!prs_align(ps))
2565 return False;
2566 if(!prs_uint32("access", ps, depth, &q_e->access_mask))
2567 return False;
2569 return True;
2572 /*******************************************************************
2573 reads or writes a structure.
2574 ********************************************************************/
2576 BOOL samr_io_r_create_dom_group(const char *desc, SAMR_R_CREATE_DOM_GROUP * r_u,
2577 prs_struct *ps, int depth)
2579 if (r_u == NULL)
2580 return False;
2582 prs_debug(ps, depth, desc, "samr_io_r_create_dom_group");
2583 depth++;
2585 if(!prs_align(ps))
2586 return False;
2588 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
2589 return False;
2591 if(!prs_uint32("rid ", ps, depth, &r_u->rid))
2592 return False;
2593 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2594 return False;
2596 return True;
2599 /*******************************************************************
2600 inits a SAMR_Q_DELETE_DOM_GROUP structure.
2601 ********************************************************************/
2603 void init_samr_q_delete_dom_group(SAMR_Q_DELETE_DOM_GROUP * q_c,
2604 POLICY_HND *hnd)
2606 DEBUG(5, ("init_samr_q_delete_dom_group\n"));
2608 q_c->group_pol = *hnd;
2611 /*******************************************************************
2612 reads or writes a structure.
2613 ********************************************************************/
2615 BOOL samr_io_q_delete_dom_group(const char *desc, SAMR_Q_DELETE_DOM_GROUP * q_u,
2616 prs_struct *ps, int depth)
2618 if (q_u == NULL)
2619 return False;
2621 prs_debug(ps, depth, desc, "samr_io_q_delete_dom_group");
2622 depth++;
2624 if(!prs_align(ps))
2625 return False;
2627 if(!smb_io_pol_hnd("group_pol", &q_u->group_pol, ps, depth))
2628 return False;
2630 return True;
2633 /*******************************************************************
2634 reads or writes a structure.
2635 ********************************************************************/
2637 BOOL samr_io_r_delete_dom_group(const char *desc, SAMR_R_DELETE_DOM_GROUP * r_u,
2638 prs_struct *ps, int depth)
2640 if (r_u == NULL)
2641 return False;
2643 prs_debug(ps, depth, desc, "samr_io_r_delete_dom_group");
2644 depth++;
2646 if(!prs_align(ps))
2647 return False;
2649 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
2650 return False;
2652 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2653 return False;
2655 return True;
2658 /*******************************************************************
2659 inits a SAMR_Q_DEL_GROUPMEM structure.
2660 ********************************************************************/
2662 void init_samr_q_del_groupmem(SAMR_Q_DEL_GROUPMEM * q_e,
2663 POLICY_HND *pol, uint32 rid)
2665 DEBUG(5, ("init_samr_q_del_groupmem\n"));
2667 q_e->pol = *pol;
2668 q_e->rid = rid;
2671 /*******************************************************************
2672 reads or writes a structure.
2673 ********************************************************************/
2675 BOOL samr_io_q_del_groupmem(const char *desc, SAMR_Q_DEL_GROUPMEM * q_e,
2676 prs_struct *ps, int depth)
2678 if (q_e == NULL)
2679 return False;
2681 prs_debug(ps, depth, desc, "samr_io_q_del_groupmem");
2682 depth++;
2684 if(!prs_align(ps))
2685 return False;
2687 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
2688 return False;
2690 if(!prs_uint32("rid", ps, depth, &q_e->rid))
2691 return False;
2693 return True;
2696 /*******************************************************************
2697 inits a SAMR_R_DEL_GROUPMEM structure.
2698 ********************************************************************/
2700 void init_samr_r_del_groupmem(SAMR_R_DEL_GROUPMEM * r_u, POLICY_HND *pol,
2701 NTSTATUS status)
2703 DEBUG(5, ("init_samr_r_del_groupmem\n"));
2705 r_u->status = status;
2708 /*******************************************************************
2709 reads or writes a structure.
2710 ********************************************************************/
2712 BOOL samr_io_r_del_groupmem(const char *desc, SAMR_R_DEL_GROUPMEM * r_u,
2713 prs_struct *ps, int depth)
2715 if (r_u == NULL)
2716 return False;
2718 prs_debug(ps, depth, desc, "samr_io_r_del_groupmem");
2719 depth++;
2721 if(!prs_align(ps))
2722 return False;
2724 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2725 return False;
2727 return True;
2730 /*******************************************************************
2731 inits a SAMR_Q_ADD_GROUPMEM structure.
2732 ********************************************************************/
2734 void init_samr_q_add_groupmem(SAMR_Q_ADD_GROUPMEM * q_e,
2735 POLICY_HND *pol, uint32 rid)
2737 DEBUG(5, ("init_samr_q_add_groupmem\n"));
2739 q_e->pol = *pol;
2740 q_e->rid = rid;
2741 q_e->unknown = 0x0005;
2744 /*******************************************************************
2745 reads or writes a structure.
2746 ********************************************************************/
2748 BOOL samr_io_q_add_groupmem(const char *desc, SAMR_Q_ADD_GROUPMEM * q_e,
2749 prs_struct *ps, int depth)
2751 if (q_e == NULL)
2752 return False;
2754 prs_debug(ps, depth, desc, "samr_io_q_add_groupmem");
2755 depth++;
2757 if(!prs_align(ps))
2758 return False;
2760 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
2761 return False;
2763 if(!prs_uint32("rid ", ps, depth, &q_e->rid))
2764 return False;
2765 if(!prs_uint32("unknown", ps, depth, &q_e->unknown))
2766 return False;
2768 return True;
2771 /*******************************************************************
2772 inits a SAMR_R_ADD_GROUPMEM structure.
2773 ********************************************************************/
2775 void init_samr_r_add_groupmem(SAMR_R_ADD_GROUPMEM * r_u, POLICY_HND *pol,
2776 NTSTATUS status)
2778 DEBUG(5, ("init_samr_r_add_groupmem\n"));
2780 r_u->status = status;
2783 /*******************************************************************
2784 reads or writes a structure.
2785 ********************************************************************/
2787 BOOL samr_io_r_add_groupmem(const char *desc, SAMR_R_ADD_GROUPMEM * r_u,
2788 prs_struct *ps, int depth)
2790 if (r_u == NULL)
2791 return False;
2793 prs_debug(ps, depth, desc, "samr_io_r_add_groupmem");
2794 depth++;
2796 if(!prs_align(ps))
2797 return False;
2799 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2800 return False;
2802 return True;
2805 /*******************************************************************
2806 inits a SAMR_Q_SET_GROUPINFO structure.
2807 ********************************************************************/
2809 void init_samr_q_set_groupinfo(SAMR_Q_SET_GROUPINFO * q_e,
2810 POLICY_HND *pol, GROUP_INFO_CTR * ctr)
2812 DEBUG(5, ("init_samr_q_set_groupinfo\n"));
2814 q_e->pol = *pol;
2815 q_e->ctr = ctr;
2818 /*******************************************************************
2819 reads or writes a structure.
2820 ********************************************************************/
2822 BOOL samr_io_q_set_groupinfo(const char *desc, SAMR_Q_SET_GROUPINFO * q_e,
2823 prs_struct *ps, int depth)
2825 if (q_e == NULL)
2826 return False;
2828 prs_debug(ps, depth, desc, "samr_io_q_set_groupinfo");
2829 depth++;
2831 if(!prs_align(ps))
2832 return False;
2834 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
2835 return False;
2837 if(!samr_group_info_ctr("ctr", &q_e->ctr, ps, depth))
2838 return False;
2840 return True;
2843 /*******************************************************************
2844 inits a SAMR_R_SET_GROUPINFO structure.
2845 ********************************************************************/
2847 void init_samr_r_set_groupinfo(SAMR_R_SET_GROUPINFO * r_u, NTSTATUS status)
2849 DEBUG(5, ("init_samr_r_set_groupinfo\n"));
2851 r_u->status = status;
2854 /*******************************************************************
2855 reads or writes a structure.
2856 ********************************************************************/
2858 BOOL samr_io_r_set_groupinfo(const char *desc, SAMR_R_SET_GROUPINFO * r_u,
2859 prs_struct *ps, int depth)
2861 if (r_u == NULL)
2862 return False;
2864 prs_debug(ps, depth, desc, "samr_io_r_set_groupinfo");
2865 depth++;
2867 if(!prs_align(ps))
2868 return False;
2870 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2871 return False;
2873 return True;
2876 /*******************************************************************
2877 inits a SAMR_Q_QUERY_GROUPINFO structure.
2878 ********************************************************************/
2880 void init_samr_q_query_groupinfo(SAMR_Q_QUERY_GROUPINFO * q_e,
2881 POLICY_HND *pol, uint16 switch_level)
2883 DEBUG(5, ("init_samr_q_query_groupinfo\n"));
2885 q_e->pol = *pol;
2887 q_e->switch_level = switch_level;
2890 /*******************************************************************
2891 reads or writes a structure.
2892 ********************************************************************/
2894 BOOL samr_io_q_query_groupinfo(const char *desc, SAMR_Q_QUERY_GROUPINFO * q_e,
2895 prs_struct *ps, int depth)
2897 if (q_e == NULL)
2898 return False;
2900 prs_debug(ps, depth, desc, "samr_io_q_query_groupinfo");
2901 depth++;
2903 if(!prs_align(ps))
2904 return False;
2906 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
2907 return False;
2909 if(!prs_uint16("switch_level", ps, depth, &q_e->switch_level))
2910 return False;
2912 return True;
2915 /*******************************************************************
2916 inits a SAMR_R_QUERY_GROUPINFO structure.
2917 ********************************************************************/
2919 void init_samr_r_query_groupinfo(SAMR_R_QUERY_GROUPINFO * r_u,
2920 GROUP_INFO_CTR * ctr, NTSTATUS status)
2922 DEBUG(5, ("init_samr_r_query_groupinfo\n"));
2924 r_u->ptr = (NT_STATUS_IS_OK(status) && ctr != NULL) ? 1 : 0;
2925 r_u->ctr = ctr;
2926 r_u->status = status;
2929 /*******************************************************************
2930 reads or writes a structure.
2931 ********************************************************************/
2933 BOOL samr_io_r_query_groupinfo(const char *desc, SAMR_R_QUERY_GROUPINFO * r_u,
2934 prs_struct *ps, int depth)
2936 if (r_u == NULL)
2937 return False;
2939 prs_debug(ps, depth, desc, "samr_io_r_query_groupinfo");
2940 depth++;
2942 if(!prs_align(ps))
2943 return False;
2945 if(!prs_uint32("ptr", ps, depth, &r_u->ptr))
2946 return False;
2948 if (r_u->ptr != 0) {
2949 if(!samr_group_info_ctr("ctr", &r_u->ctr, ps, depth))
2950 return False;
2953 if(!prs_align(ps))
2954 return False;
2955 if(!prs_ntstatus("status", ps, depth, &r_u->status))
2956 return False;
2958 return True;
2961 /*******************************************************************
2962 inits a SAMR_Q_QUERY_GROUPMEM structure.
2963 ********************************************************************/
2965 void init_samr_q_query_groupmem(SAMR_Q_QUERY_GROUPMEM * q_c, POLICY_HND *hnd)
2967 DEBUG(5, ("init_samr_q_query_groupmem\n"));
2969 q_c->group_pol = *hnd;
2972 /*******************************************************************
2973 reads or writes a structure.
2974 ********************************************************************/
2976 BOOL samr_io_q_query_groupmem(const char *desc, SAMR_Q_QUERY_GROUPMEM * q_u,
2977 prs_struct *ps, int depth)
2979 if (q_u == NULL)
2980 return False;
2982 prs_debug(ps, depth, desc, "samr_io_q_query_groupmem");
2983 depth++;
2985 if(!prs_align(ps))
2986 return False;
2988 if(!smb_io_pol_hnd("group_pol", &q_u->group_pol, ps, depth))
2989 return False;
2991 return True;
2994 /*******************************************************************
2995 inits a SAMR_R_QUERY_GROUPMEM structure.
2996 ********************************************************************/
2998 void init_samr_r_query_groupmem(SAMR_R_QUERY_GROUPMEM * r_u,
2999 uint32 num_entries, uint32 *rid,
3000 uint32 *attr, NTSTATUS status)
3002 DEBUG(5, ("init_samr_r_query_groupmem\n"));
3004 if (NT_STATUS_IS_OK(status)) {
3005 r_u->ptr = 1;
3006 r_u->num_entries = num_entries;
3008 r_u->ptr_attrs = attr != NULL ? 1 : 0;
3009 r_u->ptr_rids = rid != NULL ? 1 : 0;
3011 r_u->num_rids = num_entries;
3012 r_u->rid = rid;
3014 r_u->num_attrs = num_entries;
3015 r_u->attr = attr;
3016 } else {
3017 r_u->ptr = 0;
3018 r_u->num_entries = 0;
3021 r_u->status = status;
3024 /*******************************************************************
3025 reads or writes a structure.
3026 ********************************************************************/
3028 BOOL samr_io_r_query_groupmem(const char *desc, SAMR_R_QUERY_GROUPMEM * r_u,
3029 prs_struct *ps, int depth)
3031 uint32 i;
3033 if (r_u == NULL)
3034 return False;
3036 if (UNMARSHALLING(ps))
3037 ZERO_STRUCTP(r_u);
3039 prs_debug(ps, depth, desc, "samr_io_r_query_groupmem");
3040 depth++;
3042 if(!prs_align(ps))
3043 return False;
3045 if(!prs_uint32("ptr", ps, depth, &r_u->ptr))
3046 return False;
3047 if(!prs_uint32("num_entries ", ps, depth, &r_u->num_entries))
3048 return False;
3050 if (r_u->ptr != 0) {
3051 if(!prs_uint32("ptr_rids ", ps, depth, &r_u->ptr_rids))
3052 return False;
3053 if(!prs_uint32("ptr_attrs", ps, depth, &r_u->ptr_attrs))
3054 return False;
3056 if (r_u->ptr_rids != 0) {
3057 if(!prs_uint32("num_rids", ps, depth, &r_u->num_rids))
3058 return False;
3059 if (UNMARSHALLING(ps) && r_u->num_rids != 0) {
3060 r_u->rid = PRS_ALLOC_MEM(ps,uint32,r_u->num_rids);
3061 if (r_u->rid == NULL)
3062 return False;
3065 for (i = 0; i < r_u->num_rids; i++) {
3066 if(!prs_uint32("", ps, depth, &r_u->rid[i]))
3067 return False;
3071 if (r_u->ptr_attrs != 0) {
3072 if(!prs_uint32("num_attrs", ps, depth, &r_u->num_attrs))
3073 return False;
3075 if (UNMARSHALLING(ps) && r_u->num_attrs != 0) {
3076 r_u->attr = PRS_ALLOC_MEM(ps,uint32,r_u->num_attrs);
3077 if (r_u->attr == NULL)
3078 return False;
3081 for (i = 0; i < r_u->num_attrs; i++) {
3082 if(!prs_uint32("", ps, depth, &r_u->attr[i]))
3083 return False;
3088 if(!prs_ntstatus("status", ps, depth, &r_u->status))
3089 return False;
3091 return True;
3094 /*******************************************************************
3095 inits a SAMR_Q_QUERY_USERGROUPS structure.
3096 ********************************************************************/
3098 void init_samr_q_query_usergroups(SAMR_Q_QUERY_USERGROUPS * q_u,
3099 POLICY_HND *hnd)
3101 DEBUG(5, ("init_samr_q_query_usergroups\n"));
3103 q_u->pol = *hnd;
3106 /*******************************************************************
3107 reads or writes a structure.
3108 ********************************************************************/
3110 BOOL samr_io_q_query_usergroups(const char *desc, SAMR_Q_QUERY_USERGROUPS * q_u,
3111 prs_struct *ps, int depth)
3113 if (q_u == NULL)
3114 return False;
3116 prs_debug(ps, depth, desc, "samr_io_q_query_usergroups");
3117 depth++;
3119 if(!prs_align(ps))
3120 return False;
3122 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
3123 return False;
3125 return True;
3128 /*******************************************************************
3129 inits a SAMR_R_QUERY_USERGROUPS structure.
3130 ********************************************************************/
3132 void init_samr_r_query_usergroups(SAMR_R_QUERY_USERGROUPS * r_u,
3133 uint32 num_gids, DOM_GID * gid,
3134 NTSTATUS status)
3136 DEBUG(5, ("init_samr_r_query_usergroups\n"));
3138 if (NT_STATUS_IS_OK(status)) {
3139 r_u->ptr_0 = 1;
3140 r_u->num_entries = num_gids;
3141 r_u->ptr_1 = (num_gids != 0) ? 1 : 0;
3142 r_u->num_entries2 = num_gids;
3144 r_u->gid = gid;
3145 } else {
3146 r_u->ptr_0 = 0;
3147 r_u->num_entries = 0;
3148 r_u->ptr_1 = 0;
3149 r_u->gid = NULL;
3152 r_u->status = status;
3155 /*******************************************************************
3156 reads or writes a structure.
3157 ********************************************************************/
3159 BOOL samr_io_gids(const char *desc, uint32 *num_gids, DOM_GID ** gid,
3160 prs_struct *ps, int depth)
3162 uint32 i;
3163 if (gid == NULL)
3164 return False;
3166 prs_debug(ps, depth, desc, "samr_io_gids");
3167 depth++;
3169 if(!prs_align(ps))
3170 return False;
3172 if(!prs_uint32("num_gids", ps, depth, num_gids))
3173 return False;
3175 if ((*num_gids) != 0) {
3176 if (UNMARSHALLING(ps)) {
3177 (*gid) = PRS_ALLOC_MEM(ps,DOM_GID,*num_gids);
3180 if ((*gid) == NULL) {
3181 return False;
3184 for (i = 0; i < (*num_gids); i++) {
3185 if(!smb_io_gid("gids", &(*gid)[i], ps, depth))
3186 return False;
3190 return True;
3193 /*******************************************************************
3194 reads or writes a structure.
3195 ********************************************************************/
3197 BOOL samr_io_r_query_usergroups(const char *desc, SAMR_R_QUERY_USERGROUPS * r_u,
3198 prs_struct *ps, int depth)
3200 if (r_u == NULL)
3201 return False;
3203 prs_debug(ps, depth, desc, "samr_io_r_query_usergroups");
3204 depth++;
3206 if(!prs_align(ps))
3207 return False;
3209 if(!prs_uint32("ptr_0 ", ps, depth, &r_u->ptr_0))
3210 return False;
3212 if (r_u->ptr_0 != 0) {
3213 if(!prs_uint32("num_entries ", ps, depth, &r_u->num_entries))
3214 return False;
3215 if(!prs_uint32("ptr_1 ", ps, depth, &r_u->ptr_1))
3216 return False;
3218 if (r_u->num_entries != 0 && r_u->ptr_1 != 0) {
3219 if(!samr_io_gids("gids", &r_u->num_entries2, &r_u->gid, ps, depth))
3220 return False;
3224 if(!prs_align(ps))
3225 return False;
3226 if(!prs_ntstatus("status", ps, depth, &r_u->status))
3227 return False;
3229 return True;
3232 /*******************************************************************
3233 inits a SAMR_Q_ENUM_DOMAINS structure.
3234 ********************************************************************/
3236 void init_samr_q_enum_domains(SAMR_Q_ENUM_DOMAINS * q_e,
3237 POLICY_HND *pol,
3238 uint32 start_idx, uint32 size)
3240 DEBUG(5, ("init_samr_q_enum_domains\n"));
3242 q_e->pol = *pol;
3244 q_e->start_idx = start_idx;
3245 q_e->max_size = size;
3248 /*******************************************************************
3249 reads or writes a structure.
3250 ********************************************************************/
3252 BOOL samr_io_q_enum_domains(const char *desc, SAMR_Q_ENUM_DOMAINS * q_e,
3253 prs_struct *ps, int depth)
3255 if (q_e == NULL)
3256 return False;
3258 prs_debug(ps, depth, desc, "samr_io_q_enum_domains");
3259 depth++;
3261 if(!prs_align(ps))
3262 return False;
3264 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
3265 return False;
3267 if(!prs_uint32("start_idx", ps, depth, &q_e->start_idx))
3268 return False;
3269 if(!prs_uint32("max_size ", ps, depth, &q_e->max_size))
3270 return False;
3272 return True;
3275 /*******************************************************************
3276 inits a SAMR_R_ENUM_DOMAINS structure.
3277 ********************************************************************/
3279 void init_samr_r_enum_domains(SAMR_R_ENUM_DOMAINS * r_u,
3280 uint32 next_idx, uint32 num_sam_entries)
3282 DEBUG(5, ("init_samr_r_enum_domains\n"));
3284 r_u->next_idx = next_idx;
3286 if (num_sam_entries != 0) {
3287 r_u->ptr_entries1 = 1;
3288 r_u->ptr_entries2 = 1;
3289 r_u->num_entries2 = num_sam_entries;
3290 r_u->num_entries3 = num_sam_entries;
3292 r_u->num_entries4 = num_sam_entries;
3293 } else {
3294 r_u->ptr_entries1 = 0;
3295 r_u->num_entries2 = num_sam_entries;
3296 r_u->ptr_entries2 = 1;
3300 /*******************************************************************
3301 reads or writes a structure.
3302 ********************************************************************/
3304 BOOL samr_io_r_enum_domains(const char *desc, SAMR_R_ENUM_DOMAINS * r_u,
3305 prs_struct *ps, int depth)
3307 uint32 i;
3309 if (r_u == NULL)
3310 return False;
3312 prs_debug(ps, depth, desc, "samr_io_r_enum_domains");
3313 depth++;
3315 if(!prs_align(ps))
3316 return False;
3318 if(!prs_uint32("next_idx ", ps, depth, &r_u->next_idx))
3319 return False;
3320 if(!prs_uint32("ptr_entries1", ps, depth, &r_u->ptr_entries1))
3321 return False;
3323 if (r_u->ptr_entries1 != 0) {
3324 if(!prs_uint32("num_entries2", ps, depth, &r_u->num_entries2))
3325 return False;
3326 if(!prs_uint32("ptr_entries2", ps, depth, &r_u->ptr_entries2))
3327 return False;
3328 if(!prs_uint32("num_entries3", ps, depth, &r_u->num_entries3))
3329 return False;
3331 if (UNMARSHALLING(ps) && r_u->num_entries2) {
3332 r_u->sam = PRS_ALLOC_MEM(ps,SAM_ENTRY,r_u->num_entries2);
3333 r_u->uni_dom_name = PRS_ALLOC_MEM(ps,UNISTR2,r_u->num_entries2);
3336 if ((r_u->sam == NULL || r_u->uni_dom_name == NULL) && r_u->num_entries2 != 0) {
3337 DEBUG(0, ("NULL pointers in SAMR_R_ENUM_DOMAINS\n"));
3338 r_u->num_entries4 = 0;
3339 r_u->status = NT_STATUS_MEMORY_NOT_ALLOCATED;
3340 return False;
3343 for (i = 0; i < r_u->num_entries2; i++) {
3344 fstring tmp;
3345 slprintf(tmp, sizeof(tmp) - 1, "dom[%d]", i);
3346 if(!sam_io_sam_entry(tmp, &r_u->sam[i], ps, depth))
3347 return False;
3350 for (i = 0; i < r_u->num_entries2; i++) {
3351 fstring tmp;
3352 slprintf(tmp, sizeof(tmp) - 1, "dom[%d]", i);
3353 if(!smb_io_unistr2(tmp, &r_u->uni_dom_name[i],
3354 r_u->sam[i].hdr_name.buffer, ps,
3355 depth))
3356 return False;
3361 if(!prs_align(ps))
3362 return False;
3363 if(!prs_uint32("num_entries4", ps, depth, &r_u->num_entries4))
3364 return False;
3365 if(!prs_ntstatus("status", ps, depth, &r_u->status))
3366 return False;
3368 return True;
3371 /*******************************************************************
3372 inits a SAMR_Q_ENUM_DOM_GROUPS structure.
3373 ********************************************************************/
3375 void init_samr_q_enum_dom_groups(SAMR_Q_ENUM_DOM_GROUPS * q_e,
3376 POLICY_HND *pol,
3377 uint32 start_idx, uint32 size)
3379 DEBUG(5, ("init_samr_q_enum_dom_groups\n"));
3381 q_e->pol = *pol;
3383 q_e->start_idx = start_idx;
3384 q_e->max_size = size;
3387 /*******************************************************************
3388 reads or writes a structure.
3389 ********************************************************************/
3391 BOOL samr_io_q_enum_dom_groups(const char *desc, SAMR_Q_ENUM_DOM_GROUPS * q_e,
3392 prs_struct *ps, int depth)
3394 if (q_e == NULL)
3395 return False;
3397 prs_debug(ps, depth, desc, "samr_io_q_enum_dom_groups");
3398 depth++;
3400 if(!prs_align(ps))
3401 return False;
3403 if(!smb_io_pol_hnd("pol", &(q_e->pol), ps, depth))
3404 return False;
3406 if(!prs_uint32("start_idx", ps, depth, &q_e->start_idx))
3407 return False;
3408 if(!prs_uint32("max_size ", ps, depth, &q_e->max_size))
3409 return False;
3411 return True;
3414 /*******************************************************************
3415 inits a SAMR_R_ENUM_DOM_GROUPS structure.
3416 ********************************************************************/
3418 void init_samr_r_enum_dom_groups(SAMR_R_ENUM_DOM_GROUPS * r_u,
3419 uint32 next_idx, uint32 num_sam_entries)
3421 DEBUG(5, ("init_samr_r_enum_dom_groups\n"));
3423 r_u->next_idx = next_idx;
3425 if (num_sam_entries != 0) {
3426 r_u->ptr_entries1 = 1;
3427 r_u->ptr_entries2 = 1;
3428 r_u->num_entries2 = num_sam_entries;
3429 r_u->num_entries3 = num_sam_entries;
3431 r_u->num_entries4 = num_sam_entries;
3432 } else {
3433 r_u->ptr_entries1 = 0;
3434 r_u->num_entries2 = num_sam_entries;
3435 r_u->ptr_entries2 = 1;
3439 /*******************************************************************
3440 reads or writes a structure.
3441 ********************************************************************/
3443 BOOL samr_io_r_enum_dom_groups(const char *desc, SAMR_R_ENUM_DOM_GROUPS * r_u,
3444 prs_struct *ps, int depth)
3446 uint32 i;
3448 if (r_u == NULL)
3449 return False;
3451 prs_debug(ps, depth, desc, "samr_io_r_enum_dom_groups");
3452 depth++;
3454 if(!prs_align(ps))
3455 return False;
3457 if(!prs_uint32("next_idx ", ps, depth, &r_u->next_idx))
3458 return False;
3459 if(!prs_uint32("ptr_entries1", ps, depth, &r_u->ptr_entries1))
3460 return False;
3462 if (r_u->ptr_entries1 != 0) {
3463 if(!prs_uint32("num_entries2", ps, depth, &r_u->num_entries2))
3464 return False;
3465 if(!prs_uint32("ptr_entries2", ps, depth, &r_u->ptr_entries2))
3466 return False;
3467 if(!prs_uint32("num_entries3", ps, depth, &r_u->num_entries3))
3468 return False;
3470 if (UNMARSHALLING(ps) && r_u->num_entries2) {
3471 r_u->sam = PRS_ALLOC_MEM(ps,SAM_ENTRY,r_u->num_entries2);
3472 r_u->uni_grp_name = PRS_ALLOC_MEM(ps,UNISTR2,r_u->num_entries2);
3475 if ((r_u->sam == NULL || r_u->uni_grp_name == NULL) && r_u->num_entries2 != 0) {
3476 DEBUG(0,
3477 ("NULL pointers in SAMR_R_ENUM_DOM_GROUPS\n"));
3478 r_u->num_entries4 = 0;
3479 r_u->status = NT_STATUS_MEMORY_NOT_ALLOCATED;
3480 return False;
3483 for (i = 0; i < r_u->num_entries2; i++) {
3484 if(!sam_io_sam_entry("", &r_u->sam[i], ps, depth))
3485 return False;
3488 for (i = 0; i < r_u->num_entries2; i++) {
3489 if(!smb_io_unistr2("", &r_u->uni_grp_name[i],
3490 r_u->sam[i].hdr_name.buffer, ps, depth))
3491 return False;
3495 if(!prs_align(ps))
3496 return False;
3497 if(!prs_uint32("num_entries4", ps, depth, &r_u->num_entries4))
3498 return False;
3499 if(!prs_ntstatus("status", ps, depth, &r_u->status))
3500 return False;
3502 return True;
3505 /*******************************************************************
3506 inits a SAMR_Q_ENUM_DOM_ALIASES structure.
3507 ********************************************************************/
3509 void init_samr_q_enum_dom_aliases(SAMR_Q_ENUM_DOM_ALIASES * q_e,
3510 POLICY_HND *pol, uint32 start_idx,
3511 uint32 size)
3513 DEBUG(5, ("init_samr_q_enum_dom_aliases\n"));
3515 q_e->pol = *pol;
3517 q_e->start_idx = start_idx;
3518 q_e->max_size = size;
3522 /*******************************************************************
3523 reads or writes a structure.
3524 ********************************************************************/
3526 BOOL samr_io_q_enum_dom_aliases(const char *desc, SAMR_Q_ENUM_DOM_ALIASES * q_e,
3527 prs_struct *ps, int depth)
3529 if (q_e == NULL)
3530 return False;
3532 prs_debug(ps, depth, desc, "samr_io_q_enum_dom_aliases");
3533 depth++;
3535 if(!prs_align(ps))
3536 return False;
3538 if(!smb_io_pol_hnd("pol", &q_e->pol, ps, depth))
3539 return False;
3541 if(!prs_uint32("start_idx", ps, depth, &q_e->start_idx))
3542 return False;
3543 if(!prs_uint32("max_size ", ps, depth, &q_e->max_size))
3544 return False;
3546 return True;
3549 /*******************************************************************
3550 inits a SAMR_R_ENUM_DOM_ALIASES structure.
3551 ********************************************************************/
3553 void init_samr_r_enum_dom_aliases(SAMR_R_ENUM_DOM_ALIASES *r_u, uint32 next_idx, uint32 num_sam_entries)
3555 DEBUG(5, ("init_samr_r_enum_dom_aliases\n"));
3557 r_u->next_idx = next_idx;
3559 if (num_sam_entries != 0) {
3560 r_u->ptr_entries1 = 1;
3561 r_u->ptr_entries2 = 1;
3562 r_u->num_entries2 = num_sam_entries;
3563 r_u->num_entries3 = num_sam_entries;
3565 r_u->num_entries4 = num_sam_entries;
3566 } else {
3567 r_u->ptr_entries1 = 0;
3568 r_u->num_entries2 = num_sam_entries;
3569 r_u->ptr_entries2 = 1;
3573 /*******************************************************************
3574 reads or writes a structure.
3575 ********************************************************************/
3577 BOOL samr_io_r_enum_dom_aliases(const char *desc, SAMR_R_ENUM_DOM_ALIASES * r_u,
3578 prs_struct *ps, int depth)
3580 uint32 i;
3582 if (r_u == NULL)
3583 return False;
3585 prs_debug(ps, depth, desc, "samr_io_r_enum_dom_aliases");
3586 depth++;
3588 if(!prs_align(ps))
3589 return False;
3591 if(!prs_uint32("next_idx ", ps, depth, &r_u->next_idx))
3592 return False;
3593 if(!prs_uint32("ptr_entries1", ps, depth, &r_u->ptr_entries1))
3594 return False;
3596 if (r_u->ptr_entries1 != 0) {
3597 if(!prs_uint32("num_entries2", ps, depth, &r_u->num_entries2))
3598 return False;
3599 if(!prs_uint32("ptr_entries2", ps, depth, &r_u->ptr_entries2))
3600 return False;
3601 if(!prs_uint32("num_entries3", ps, depth, &r_u->num_entries3))
3602 return False;
3604 if (UNMARSHALLING(ps) && (r_u->num_entries2 > 0)) {
3605 r_u->sam = PRS_ALLOC_MEM(ps,SAM_ENTRY,r_u->num_entries2);
3606 r_u->uni_grp_name = PRS_ALLOC_MEM(ps,UNISTR2,r_u->num_entries2);
3609 if (r_u->num_entries2 != 0 &&
3610 (r_u->sam == NULL || r_u->uni_grp_name == NULL)) {
3611 DEBUG(0,("NULL pointers in SAMR_R_ENUM_DOM_ALIASES\n"));
3612 r_u->num_entries4 = 0;
3613 r_u->status = NT_STATUS_MEMORY_NOT_ALLOCATED;
3614 return False;
3617 for (i = 0; i < r_u->num_entries2; i++) {
3618 if(!sam_io_sam_entry("", &r_u->sam[i], ps, depth))
3619 return False;
3622 for (i = 0; i < r_u->num_entries2; i++) {
3623 if(!smb_io_unistr2("", &r_u->uni_grp_name[i],
3624 r_u->sam[i].hdr_name.buffer, ps,
3625 depth))
3626 return False;
3630 if(!prs_align(ps))
3631 return False;
3632 if(!prs_uint32("num_entries4", ps, depth, &r_u->num_entries4))
3633 return False;
3634 if(!prs_ntstatus("status", ps, depth, &r_u->status))
3635 return False;
3637 return True;
3640 /*******************************************************************
3641 inits a ALIAS_INFO1 structure.
3642 ********************************************************************/
3644 void init_samr_alias_info1(ALIAS_INFO1 * al1, char *acct_name, uint32 num_member, char *acct_desc)
3646 DEBUG(5, ("init_samr_alias_info1\n"));
3648 init_unistr4(&al1->name, acct_name, UNI_FLAGS_NONE);
3649 al1->num_member = num_member;
3650 init_unistr4(&al1->description, acct_desc, UNI_FLAGS_NONE);
3653 /*******************************************************************
3654 reads or writes a structure.
3655 ********************************************************************/
3657 BOOL samr_io_alias_info1(const char *desc, ALIAS_INFO1 * al1,
3658 prs_struct *ps, int depth)
3660 if (al1 == NULL)
3661 return False;
3663 prs_debug(ps, depth, desc, "samr_io_alias_info1");
3664 depth++;
3666 if(!prs_align(ps))
3667 return False;
3669 if ( !prs_unistr4_hdr("name", ps, depth, &al1->name) )
3670 return False;
3671 if ( !prs_uint32("num_member", ps, depth, &al1->num_member) )
3672 return False;
3673 if ( !prs_unistr4_hdr("description", ps, depth, &al1->description) )
3674 return False;
3676 if ( !prs_unistr4_str("name", ps, depth, &al1->name) )
3677 return False;
3678 if ( !prs_align(ps) )
3679 return False;
3680 if ( !prs_unistr4_str("description", ps, depth, &al1->description) )
3681 return False;
3682 if ( !prs_align(ps) )
3683 return False;
3685 return True;
3688 /*******************************************************************
3689 inits a ALIAS_INFO3 structure.
3690 ********************************************************************/
3692 void init_samr_alias_info3(ALIAS_INFO3 * al3, const char *acct_desc)
3694 DEBUG(5, ("init_samr_alias_info3\n"));
3696 init_unistr4(&al3->description, acct_desc, UNI_FLAGS_NONE);
3699 /*******************************************************************
3700 reads or writes a structure.
3701 ********************************************************************/
3703 BOOL samr_io_alias_info3(const char *desc, ALIAS_INFO3 *al3,
3704 prs_struct *ps, int depth)
3706 if (al3 == NULL)
3707 return False;
3709 prs_debug(ps, depth, desc, "samr_io_alias_info3");
3710 depth++;
3712 if(!prs_align(ps))
3713 return False;
3715 if (!prs_unistr4("description", ps, depth, &al3->description))
3716 return False;
3718 return True;
3721 /*******************************************************************
3722 reads or writes a structure.
3723 ********************************************************************/
3725 BOOL samr_io_alias_info2(const char *desc, ALIAS_INFO2 *al2,
3726 prs_struct *ps, int depth)
3728 if (al2 == NULL)
3729 return False;
3731 prs_debug(ps, depth, desc, "samr_io_alias_info2");
3732 depth++;
3734 if(!prs_align(ps))
3735 return False;
3737 if (!prs_unistr4("name", ps, depth, &al2->name))
3738 return False;
3740 return True;
3743 /*******************************************************************
3744 reads or writes a structure.
3745 ********************************************************************/
3747 BOOL samr_alias_info_ctr(const char *desc, prs_struct *ps, int depth, ALIAS_INFO_CTR * ctr)
3749 if ( !ctr )
3750 return False;
3752 prs_debug(ps, depth, desc, "samr_alias_info_ctr");
3753 depth++;
3755 if ( !prs_uint16("level", ps, depth, &ctr->level) )
3756 return False;
3758 if(!prs_align(ps))
3759 return False;
3760 switch (ctr->level) {
3761 case 1:
3762 if(!samr_io_alias_info1("alias_info1", &ctr->alias.info1, ps, depth))
3763 return False;
3764 break;
3765 case 2:
3766 if(!samr_io_alias_info2("alias_info2", &ctr->alias.info2, ps, depth))
3767 return False;
3768 break;
3769 case 3:
3770 if(!samr_io_alias_info3("alias_info3", &ctr->alias.info3, ps, depth))
3771 return False;
3772 break;
3773 default:
3774 DEBUG(0,("samr_alias_info_ctr: unsupported switch level\n"));
3775 break;
3778 return True;
3781 /*******************************************************************
3782 inits a SAMR_Q_QUERY_ALIASINFO structure.
3783 ********************************************************************/
3785 void init_samr_q_query_aliasinfo(SAMR_Q_QUERY_ALIASINFO * q_e,
3786 POLICY_HND *pol, uint32 switch_level)
3788 DEBUG(5, ("init_samr_q_query_aliasinfo\n"));
3790 q_e->pol = *pol;
3791 q_e->level = switch_level;
3794 /*******************************************************************
3795 reads or writes a structure.
3796 ********************************************************************/
3798 BOOL samr_io_q_query_aliasinfo(const char *desc, SAMR_Q_QUERY_ALIASINFO *in,
3799 prs_struct *ps, int depth)
3801 if ( !in )
3802 return False;
3804 prs_debug(ps, depth, desc, "samr_io_q_query_aliasinfo");
3805 depth++;
3807 if(!prs_align(ps))
3808 return False;
3810 if ( !smb_io_pol_hnd("pol", &(in->pol), ps, depth) )
3811 return False;
3813 if ( !prs_uint16("level", ps, depth, &in->level) )
3814 return False;
3816 return True;
3819 /*******************************************************************
3820 inits a SAMR_R_QUERY_ALIASINFO structure.
3821 ********************************************************************/
3823 void init_samr_r_query_aliasinfo(SAMR_R_QUERY_ALIASINFO *out,
3824 ALIAS_INFO_CTR * ctr, NTSTATUS status)
3826 DEBUG(5, ("init_samr_r_query_aliasinfo\n"));
3828 out->ctr = ctr;
3829 out->status = status;
3832 /*******************************************************************
3833 reads or writes a structure.
3834 ********************************************************************/
3836 BOOL samr_io_r_query_aliasinfo(const char *desc, SAMR_R_QUERY_ALIASINFO *out,
3837 prs_struct *ps, int depth)
3839 if ( !out )
3840 return False;
3842 prs_debug(ps, depth, desc, "samr_io_r_query_aliasinfo");
3843 depth++;
3845 if(!prs_align(ps))
3846 return False;
3848 if ( !prs_pointer("alias", ps, depth, (void*)&out->ctr, sizeof(ALIAS_INFO_CTR), (PRS_POINTER_CAST)samr_alias_info_ctr))
3849 return False;
3850 if(!prs_align(ps))
3851 return False;
3853 if(!prs_ntstatus("status", ps, depth, &out->status))
3854 return False;
3856 return True;
3859 /*******************************************************************
3860 inits a SAMR_Q_SET_ALIASINFO structure.
3861 ********************************************************************/
3863 void init_samr_q_set_aliasinfo(SAMR_Q_SET_ALIASINFO * q_u,
3864 POLICY_HND *hnd, ALIAS_INFO_CTR * ctr)
3866 DEBUG(5, ("init_samr_q_set_aliasinfo\n"));
3868 q_u->alias_pol = *hnd;
3869 q_u->ctr = *ctr;
3872 /*******************************************************************
3873 reads or writes a structure.
3874 ********************************************************************/
3876 BOOL samr_io_q_set_aliasinfo(const char *desc, SAMR_Q_SET_ALIASINFO * q_u,
3877 prs_struct *ps, int depth)
3879 if (q_u == NULL)
3880 return False;
3882 prs_debug(ps, depth, desc, "samr_io_q_set_aliasinfo");
3883 depth++;
3885 if(!prs_align(ps))
3886 return False;
3888 if(!smb_io_pol_hnd("alias_pol", &q_u->alias_pol, ps, depth))
3889 return False;
3890 if(!samr_alias_info_ctr("ctr", ps, depth, &q_u->ctr))
3891 return False;
3893 return True;
3896 /*******************************************************************
3897 reads or writes a structure.
3898 ********************************************************************/
3900 BOOL samr_io_r_set_aliasinfo(const char *desc, SAMR_R_SET_ALIASINFO * r_u,
3901 prs_struct *ps, int depth)
3903 if (r_u == NULL)
3904 return False;
3906 prs_debug(ps, depth, desc, "samr_io_r_set_aliasinfo");
3907 depth++;
3909 if(!prs_align(ps))
3910 return False;
3911 if(!prs_ntstatus("status", ps, depth, &r_u->status))
3912 return False;
3914 return True;
3917 /*******************************************************************
3918 inits a SAMR_Q_QUERY_USERALIASES structure.
3919 ********************************************************************/
3921 void init_samr_q_query_useraliases(SAMR_Q_QUERY_USERALIASES * q_u,
3922 POLICY_HND *hnd,
3923 uint32 num_sids,
3924 uint32 *ptr_sid, DOM_SID2 * sid)
3926 DEBUG(5, ("init_samr_q_query_useraliases\n"));
3928 q_u->pol = *hnd;
3930 q_u->num_sids1 = num_sids;
3931 q_u->ptr = 1;
3932 q_u->num_sids2 = num_sids;
3934 q_u->ptr_sid = ptr_sid;
3935 q_u->sid = sid;
3938 /*******************************************************************
3939 reads or writes a SAMR_Q_QUERY_USERALIASES structure.
3940 ********************************************************************/
3942 BOOL samr_io_q_query_useraliases(const char *desc, SAMR_Q_QUERY_USERALIASES * q_u,
3943 prs_struct *ps, int depth)
3945 fstring tmp;
3946 uint32 i;
3948 if (q_u == NULL)
3949 return False;
3951 prs_debug(ps, depth, desc, "samr_io_q_query_useraliases");
3952 depth++;
3954 if(!prs_align(ps))
3955 return False;
3957 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
3958 return False;
3960 if(!prs_uint32("num_sids1", ps, depth, &q_u->num_sids1))
3961 return False;
3962 if(!prs_uint32("ptr ", ps, depth, &q_u->ptr))
3963 return False;
3965 if (q_u->ptr==0)
3966 return True;
3968 if(!prs_uint32("num_sids2", ps, depth, &q_u->num_sids2))
3969 return False;
3971 if (UNMARSHALLING(ps) && (q_u->num_sids2 != 0)) {
3972 q_u->ptr_sid = PRS_ALLOC_MEM(ps,uint32,q_u->num_sids2);
3973 if (q_u->ptr_sid == NULL)
3974 return False;
3976 q_u->sid = PRS_ALLOC_MEM(ps, DOM_SID2, q_u->num_sids2);
3977 if (q_u->sid == NULL)
3978 return False;
3981 for (i = 0; i < q_u->num_sids2; i++) {
3982 slprintf(tmp, sizeof(tmp) - 1, "ptr[%02d]", i);
3983 if(!prs_uint32(tmp, ps, depth, &q_u->ptr_sid[i]))
3984 return False;
3987 for (i = 0; i < q_u->num_sids2; i++) {
3988 if (q_u->ptr_sid[i] != 0) {
3989 slprintf(tmp, sizeof(tmp) - 1, "sid[%02d]", i);
3990 if(!smb_io_dom_sid2(tmp, &q_u->sid[i], ps, depth))
3991 return False;
3995 return True;
3998 /*******************************************************************
3999 inits a SAMR_R_QUERY_USERALIASES structure.
4000 ********************************************************************/
4002 void init_samr_r_query_useraliases(SAMR_R_QUERY_USERALIASES * r_u,
4003 uint32 num_rids, uint32 *rid,
4004 NTSTATUS status)
4006 DEBUG(5, ("init_samr_r_query_useraliases\n"));
4008 if (NT_STATUS_IS_OK(status)) {
4009 r_u->num_entries = num_rids;
4010 r_u->ptr = 1;
4011 r_u->num_entries2 = num_rids;
4013 r_u->rid = rid;
4014 } else {
4015 r_u->num_entries = 0;
4016 r_u->ptr = 0;
4017 r_u->num_entries2 = 0;
4020 r_u->status = status;
4023 /*******************************************************************
4024 reads or writes a structure.
4025 ********************************************************************/
4027 BOOL samr_io_rids(const char *desc, uint32 *num_rids, uint32 **rid,
4028 prs_struct *ps, int depth)
4030 fstring tmp;
4031 uint32 i;
4032 if (rid == NULL)
4033 return False;
4035 prs_debug(ps, depth, desc, "samr_io_rids");
4036 depth++;
4038 if(!prs_align(ps))
4039 return False;
4041 if(!prs_uint32("num_rids", ps, depth, num_rids))
4042 return False;
4044 if ((*num_rids) != 0) {
4045 if (UNMARSHALLING(ps)) {
4046 /* reading */
4047 (*rid) = PRS_ALLOC_MEM(ps,uint32, *num_rids);
4049 if ((*rid) == NULL)
4050 return False;
4052 for (i = 0; i < (*num_rids); i++) {
4053 slprintf(tmp, sizeof(tmp) - 1, "rid[%02d]", i);
4054 if(!prs_uint32(tmp, ps, depth, &((*rid)[i])))
4055 return False;
4059 return True;
4062 /*******************************************************************
4063 reads or writes a structure.
4064 ********************************************************************/
4066 BOOL samr_io_r_query_useraliases(const char *desc, SAMR_R_QUERY_USERALIASES * r_u,
4067 prs_struct *ps, int depth)
4069 if (r_u == NULL)
4070 return False;
4072 prs_debug(ps, depth, desc, "samr_io_r_query_useraliases");
4073 depth++;
4075 if(!prs_align(ps))
4076 return False;
4078 if(!prs_uint32("num_entries", ps, depth, &r_u->num_entries))
4079 return False;
4080 if(!prs_uint32("ptr ", ps, depth, &r_u->ptr))
4081 return False;
4083 if (r_u->ptr != 0) {
4084 if(!samr_io_rids("rids", &r_u->num_entries2, &r_u->rid, ps, depth))
4085 return False;
4088 if(!prs_align(ps))
4089 return False;
4090 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4091 return False;
4093 return True;
4096 /*******************************************************************
4097 inits a SAMR_Q_OPEN_ALIAS structure.
4098 ********************************************************************/
4100 void init_samr_q_open_alias(SAMR_Q_OPEN_ALIAS * q_u, POLICY_HND *pol,
4101 uint32 access_mask, uint32 rid)
4103 DEBUG(5, ("init_samr_q_open_alias\n"));
4105 q_u->dom_pol = *pol;
4106 q_u->access_mask = access_mask;
4107 q_u->rid_alias = rid;
4110 /*******************************************************************
4111 reads or writes a structure.
4112 ********************************************************************/
4114 BOOL samr_io_q_open_alias(const char *desc, SAMR_Q_OPEN_ALIAS * q_u,
4115 prs_struct *ps, int depth)
4117 if (q_u == NULL)
4118 return False;
4120 prs_debug(ps, depth, desc, "samr_io_q_open_alias");
4121 depth++;
4123 if(!prs_align(ps))
4124 return False;
4126 if(!smb_io_pol_hnd("domain_pol", &q_u->dom_pol, ps, depth))
4127 return False;
4129 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
4130 return False;
4131 if(!prs_uint32("rid_alias", ps, depth, &q_u->rid_alias))
4132 return False;
4134 return True;
4137 /*******************************************************************
4138 reads or writes a structure.
4139 ********************************************************************/
4141 BOOL samr_io_r_open_alias(const char *desc, SAMR_R_OPEN_ALIAS * r_u,
4142 prs_struct *ps, int depth)
4144 if (r_u == NULL)
4145 return False;
4147 prs_debug(ps, depth, desc, "samr_io_r_open_alias");
4148 depth++;
4150 if(!prs_align(ps))
4151 return False;
4153 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
4154 return False;
4156 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4157 return False;
4159 return True;
4162 /*******************************************************************
4163 inits a SAMR_Q_LOOKUP_RIDS structure.
4164 ********************************************************************/
4166 void init_samr_q_lookup_rids(TALLOC_CTX *ctx, SAMR_Q_LOOKUP_RIDS * q_u,
4167 POLICY_HND *pol, uint32 flags,
4168 uint32 num_rids, uint32 *rid)
4170 DEBUG(5, ("init_samr_q_lookup_rids\n"));
4172 q_u->pol = *pol;
4174 q_u->num_rids1 = num_rids;
4175 q_u->flags = flags;
4176 q_u->ptr = 0;
4177 q_u->num_rids2 = num_rids;
4178 if (num_rids) {
4179 q_u->rid = TALLOC_ZERO_ARRAY(ctx, uint32, num_rids );
4180 } else {
4181 q_u->rid = NULL;
4183 if (q_u->rid == NULL) {
4184 q_u->num_rids1 = 0;
4185 q_u->num_rids2 = 0;
4186 } else {
4187 memcpy(q_u->rid, rid, num_rids * sizeof(q_u->rid[0]));
4191 /*******************************************************************
4192 reads or writes a structure.
4193 ********************************************************************/
4195 BOOL samr_io_q_lookup_rids(const char *desc, SAMR_Q_LOOKUP_RIDS * q_u,
4196 prs_struct *ps, int depth)
4198 uint32 i;
4199 fstring tmp;
4201 if (q_u == NULL)
4202 return False;
4204 prs_debug(ps, depth, desc, "samr_io_q_lookup_rids");
4205 depth++;
4207 if (UNMARSHALLING(ps))
4208 ZERO_STRUCTP(q_u);
4210 if(!prs_align(ps))
4211 return False;
4213 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
4214 return False;
4216 if(!prs_uint32("num_rids1", ps, depth, &q_u->num_rids1))
4217 return False;
4218 if(!prs_uint32("flags ", ps, depth, &q_u->flags))
4219 return False;
4220 if(!prs_uint32("ptr ", ps, depth, &q_u->ptr))
4221 return False;
4222 if(!prs_uint32("num_rids2", ps, depth, &q_u->num_rids2))
4223 return False;
4225 if (UNMARSHALLING(ps) && (q_u->num_rids2 != 0)) {
4226 q_u->rid = PRS_ALLOC_MEM(ps, uint32, q_u->num_rids2);
4227 if (q_u->rid == NULL)
4228 return False;
4231 for (i = 0; i < q_u->num_rids2; i++) {
4232 slprintf(tmp, sizeof(tmp) - 1, "rid[%02d] ", i);
4233 if(!prs_uint32(tmp, ps, depth, &q_u->rid[i]))
4234 return False;
4237 return True;
4240 /*******************************************************************
4241 inits a SAMR_R_LOOKUP_RIDS structure.
4242 ********************************************************************/
4244 void init_samr_r_lookup_rids(SAMR_R_LOOKUP_RIDS * r_u,
4245 uint32 num_names, UNIHDR * hdr_name,
4246 UNISTR2 *uni_name, uint32 *type)
4248 DEBUG(5, ("init_samr_r_lookup_rids\n"));
4250 r_u->hdr_name = NULL;
4251 r_u->uni_name = NULL;
4252 r_u->type = NULL;
4254 if (num_names != 0) {
4255 r_u->num_names1 = num_names;
4256 r_u->ptr_names = 1;
4257 r_u->num_names2 = num_names;
4259 r_u->num_types1 = num_names;
4260 r_u->ptr_types = 1;
4261 r_u->num_types2 = num_names;
4263 r_u->hdr_name = hdr_name;
4264 r_u->uni_name = uni_name;
4265 r_u->type = type;
4266 } else {
4267 r_u->num_names1 = num_names;
4268 r_u->ptr_names = 0;
4269 r_u->num_names2 = num_names;
4271 r_u->num_types1 = num_names;
4272 r_u->ptr_types = 0;
4273 r_u->num_types2 = num_names;
4277 /*******************************************************************
4278 reads or writes a structure.
4279 ********************************************************************/
4281 BOOL samr_io_r_lookup_rids(const char *desc, SAMR_R_LOOKUP_RIDS * r_u,
4282 prs_struct *ps, int depth)
4284 uint32 i;
4285 fstring tmp;
4286 if (r_u == NULL)
4287 return False;
4289 prs_debug(ps, depth, desc, "samr_io_r_lookup_rids");
4290 depth++;
4292 if(!prs_align(ps))
4293 return False;
4295 if(!prs_uint32("num_names1", ps, depth, &r_u->num_names1))
4296 return False;
4297 if(!prs_uint32("ptr_names ", ps, depth, &r_u->ptr_names))
4298 return False;
4300 if (r_u->ptr_names != 0) {
4302 if(!prs_uint32("num_names2", ps, depth, &r_u->num_names2))
4303 return False;
4306 if (UNMARSHALLING(ps) && (r_u->num_names2 != 0)) {
4307 r_u->hdr_name = PRS_ALLOC_MEM(ps, UNIHDR, r_u->num_names2);
4308 if (r_u->hdr_name == NULL)
4309 return False;
4311 r_u->uni_name = PRS_ALLOC_MEM(ps, UNISTR2, r_u->num_names2);
4312 if (r_u->uni_name == NULL)
4313 return False;
4316 for (i = 0; i < r_u->num_names2; i++) {
4317 slprintf(tmp, sizeof(tmp) - 1, "hdr[%02d] ", i);
4318 if(!smb_io_unihdr("", &r_u->hdr_name[i], ps, depth))
4319 return False;
4321 for (i = 0; i < r_u->num_names2; i++) {
4322 slprintf(tmp, sizeof(tmp) - 1, "str[%02d] ", i);
4323 if(!smb_io_unistr2("", &r_u->uni_name[i], r_u->hdr_name[i].buffer, ps, depth))
4324 return False;
4329 if(!prs_align(ps))
4330 return False;
4331 if(!prs_uint32("num_types1", ps, depth, &r_u->num_types1))
4332 return False;
4333 if(!prs_uint32("ptr_types ", ps, depth, &r_u->ptr_types))
4334 return False;
4336 if (r_u->ptr_types != 0) {
4338 if(!prs_uint32("num_types2", ps, depth, &r_u->num_types2))
4339 return False;
4341 if (UNMARSHALLING(ps) && (r_u->num_types2 != 0)) {
4342 r_u->type = PRS_ALLOC_MEM(ps, uint32, r_u->num_types2);
4343 if (r_u->type == NULL)
4344 return False;
4347 for (i = 0; i < r_u->num_types2; i++) {
4348 slprintf(tmp, sizeof(tmp) - 1, "type[%02d] ", i);
4349 if(!prs_uint32(tmp, ps, depth, &r_u->type[i]))
4350 return False;
4354 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4355 return False;
4357 return True;
4360 /*******************************************************************
4361 inits a SAMR_Q_OPEN_ALIAS structure.
4362 ********************************************************************/
4364 void init_samr_q_delete_alias(SAMR_Q_DELETE_DOM_ALIAS * q_u, POLICY_HND *hnd)
4366 DEBUG(5, ("init_samr_q_delete_alias\n"));
4368 q_u->alias_pol = *hnd;
4371 /*******************************************************************
4372 reads or writes a structure.
4373 ********************************************************************/
4375 BOOL samr_io_q_delete_alias(const char *desc, SAMR_Q_DELETE_DOM_ALIAS * q_u,
4376 prs_struct *ps, int depth)
4378 if (q_u == NULL)
4379 return False;
4381 prs_debug(ps, depth, desc, "samr_io_q_delete_alias");
4382 depth++;
4384 if(!prs_align(ps))
4385 return False;
4387 if(!smb_io_pol_hnd("alias_pol", &q_u->alias_pol, ps, depth))
4388 return False;
4390 return True;
4393 /*******************************************************************
4394 reads or writes a structure.
4395 ********************************************************************/
4397 BOOL samr_io_r_delete_alias(const char *desc, SAMR_R_DELETE_DOM_ALIAS * r_u,
4398 prs_struct *ps, int depth)
4400 if (r_u == NULL)
4401 return False;
4403 prs_debug(ps, depth, desc, "samr_io_r_delete_alias");
4404 depth++;
4406 if(!prs_align(ps))
4407 return False;
4409 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
4410 return False;
4411 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4412 return False;
4414 return True;
4417 /*******************************************************************
4418 inits a SAMR_Q_CREATE_DOM_ALIAS structure.
4419 ********************************************************************/
4421 void init_samr_q_create_dom_alias(SAMR_Q_CREATE_DOM_ALIAS * q_u,
4422 POLICY_HND *hnd, const char *acct_desc)
4424 DEBUG(5, ("init_samr_q_create_dom_alias\n"));
4426 q_u->dom_pol = *hnd;
4428 init_unistr2(&q_u->uni_acct_desc, acct_desc, UNI_FLAGS_NONE);
4429 init_uni_hdr(&q_u->hdr_acct_desc, &q_u->uni_acct_desc);
4431 q_u->access_mask = MAXIMUM_ALLOWED_ACCESS;
4434 /*******************************************************************
4435 reads or writes a structure.
4436 ********************************************************************/
4438 BOOL samr_io_q_create_dom_alias(const char *desc, SAMR_Q_CREATE_DOM_ALIAS * q_u,
4439 prs_struct *ps, int depth)
4441 if (q_u == NULL)
4442 return False;
4444 prs_debug(ps, depth, desc, "samr_io_q_create_dom_alias");
4445 depth++;
4447 if(!prs_align(ps))
4448 return False;
4450 if(!smb_io_pol_hnd("dom_pol", &q_u->dom_pol, ps, depth))
4451 return False;
4453 if(!smb_io_unihdr("hdr_acct_desc", &q_u->hdr_acct_desc, ps, depth))
4454 return False;
4455 if(!smb_io_unistr2("uni_acct_desc", &q_u->uni_acct_desc,
4456 q_u->hdr_acct_desc.buffer, ps, depth))
4457 return False;
4459 if(!prs_align(ps))
4460 return False;
4461 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
4462 return False;
4464 return True;
4467 /*******************************************************************
4468 reads or writes a structure.
4469 ********************************************************************/
4471 BOOL samr_io_r_create_dom_alias(const char *desc, SAMR_R_CREATE_DOM_ALIAS * r_u,
4472 prs_struct *ps, int depth)
4474 if (r_u == NULL)
4475 return False;
4477 prs_debug(ps, depth, desc, "samr_io_r_create_dom_alias");
4478 depth++;
4480 if(!prs_align(ps))
4481 return False;
4483 if(!smb_io_pol_hnd("alias_pol", &r_u->alias_pol, ps, depth))
4484 return False;
4486 if(!prs_uint32("rid", ps, depth, &r_u->rid))
4487 return False;
4489 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4490 return False;
4492 return True;
4495 /*******************************************************************
4496 inits a SAMR_Q_ADD_ALIASMEM structure.
4497 ********************************************************************/
4499 void init_samr_q_add_aliasmem(SAMR_Q_ADD_ALIASMEM * q_u, POLICY_HND *hnd,
4500 DOM_SID *sid)
4502 DEBUG(5, ("init_samr_q_add_aliasmem\n"));
4504 q_u->alias_pol = *hnd;
4505 init_dom_sid2(&q_u->sid, sid);
4508 /*******************************************************************
4509 reads or writes a structure.
4510 ********************************************************************/
4512 BOOL samr_io_q_add_aliasmem(const char *desc, SAMR_Q_ADD_ALIASMEM * q_u,
4513 prs_struct *ps, int depth)
4515 if (q_u == NULL)
4516 return False;
4518 prs_debug(ps, depth, desc, "samr_io_q_add_aliasmem");
4519 depth++;
4521 if(!prs_align(ps))
4522 return False;
4524 if(!smb_io_pol_hnd("alias_pol", &q_u->alias_pol, ps, depth))
4525 return False;
4526 if(!smb_io_dom_sid2("sid ", &q_u->sid, ps, depth))
4527 return False;
4529 return True;
4532 /*******************************************************************
4533 reads or writes a structure.
4534 ********************************************************************/
4536 BOOL samr_io_r_add_aliasmem(const char *desc, SAMR_R_ADD_ALIASMEM * r_u,
4537 prs_struct *ps, int depth)
4539 if (r_u == NULL)
4540 return False;
4542 prs_debug(ps, depth, desc, "samr_io_r_add_aliasmem");
4543 depth++;
4545 if(!prs_align(ps))
4546 return False;
4548 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4549 return False;
4551 return True;
4554 /*******************************************************************
4555 inits a SAMR_Q_DEL_ALIASMEM structure.
4556 ********************************************************************/
4558 void init_samr_q_del_aliasmem(SAMR_Q_DEL_ALIASMEM * q_u, POLICY_HND *hnd,
4559 DOM_SID *sid)
4561 DEBUG(5, ("init_samr_q_del_aliasmem\n"));
4563 q_u->alias_pol = *hnd;
4564 init_dom_sid2(&q_u->sid, sid);
4567 /*******************************************************************
4568 reads or writes a structure.
4569 ********************************************************************/
4571 BOOL samr_io_q_del_aliasmem(const char *desc, SAMR_Q_DEL_ALIASMEM * q_u,
4572 prs_struct *ps, int depth)
4574 if (q_u == NULL)
4575 return False;
4577 prs_debug(ps, depth, desc, "samr_io_q_del_aliasmem");
4578 depth++;
4580 if(!prs_align(ps))
4581 return False;
4583 if(!smb_io_pol_hnd("alias_pol", &q_u->alias_pol, ps, depth))
4584 return False;
4585 if(!smb_io_dom_sid2("sid ", &q_u->sid, ps, depth))
4586 return False;
4588 return True;
4591 /*******************************************************************
4592 reads or writes a structure.
4593 ********************************************************************/
4595 BOOL samr_io_r_del_aliasmem(const char *desc, SAMR_R_DEL_ALIASMEM * r_u,
4596 prs_struct *ps, int depth)
4598 if (r_u == NULL)
4599 return False;
4601 prs_debug(ps, depth, desc, "samr_io_r_del_aliasmem");
4602 depth++;
4604 if(!prs_align(ps))
4605 return False;
4607 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4608 return False;
4610 return True;
4613 /*******************************************************************
4614 inits a SAMR_Q_DELETE_DOM_ALIAS structure.
4615 ********************************************************************/
4617 void init_samr_q_delete_dom_alias(SAMR_Q_DELETE_DOM_ALIAS * q_c,
4618 POLICY_HND *hnd)
4620 DEBUG(5, ("init_samr_q_delete_dom_alias\n"));
4622 q_c->alias_pol = *hnd;
4625 /*******************************************************************
4626 reads or writes a structure.
4627 ********************************************************************/
4629 BOOL samr_io_q_delete_dom_alias(const char *desc, SAMR_Q_DELETE_DOM_ALIAS * q_u,
4630 prs_struct *ps, int depth)
4632 if (q_u == NULL)
4633 return False;
4635 prs_debug(ps, depth, desc, "samr_io_q_delete_dom_alias");
4636 depth++;
4638 if(!prs_align(ps))
4639 return False;
4641 if(!smb_io_pol_hnd("alias_pol", &q_u->alias_pol, ps, depth))
4642 return False;
4644 return True;
4647 /*******************************************************************
4648 inits a SAMR_R_DELETE_DOM_ALIAS structure.
4649 ********************************************************************/
4651 void init_samr_r_delete_dom_alias(SAMR_R_DELETE_DOM_ALIAS * r_u,
4652 NTSTATUS status)
4654 DEBUG(5, ("init_samr_r_delete_dom_alias\n"));
4656 r_u->status = status;
4659 /*******************************************************************
4660 reads or writes a structure.
4661 ********************************************************************/
4663 BOOL samr_io_r_delete_dom_alias(const char *desc, SAMR_R_DELETE_DOM_ALIAS * r_u,
4664 prs_struct *ps, int depth)
4666 if (r_u == NULL)
4667 return False;
4669 prs_debug(ps, depth, desc, "samr_io_r_delete_dom_alias");
4670 depth++;
4672 if(!prs_align(ps))
4673 return False;
4675 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
4676 return False;
4678 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4679 return False;
4681 return True;
4684 /*******************************************************************
4685 inits a SAMR_Q_QUERY_ALIASMEM structure.
4686 ********************************************************************/
4688 void init_samr_q_query_aliasmem(SAMR_Q_QUERY_ALIASMEM * q_c,
4689 POLICY_HND *hnd)
4691 DEBUG(5, ("init_samr_q_query_aliasmem\n"));
4693 q_c->alias_pol = *hnd;
4696 /*******************************************************************
4697 reads or writes a structure.
4698 ********************************************************************/
4700 BOOL samr_io_q_query_aliasmem(const char *desc, SAMR_Q_QUERY_ALIASMEM * q_u,
4701 prs_struct *ps, int depth)
4703 if (q_u == NULL)
4704 return False;
4706 prs_debug(ps, depth, desc, "samr_io_q_query_aliasmem");
4707 depth++;
4709 if(!prs_align(ps))
4710 return False;
4712 if(!smb_io_pol_hnd("alias_pol", &q_u->alias_pol, ps, depth))
4713 return False;
4715 return True;
4718 /*******************************************************************
4719 inits a SAMR_R_QUERY_ALIASMEM structure.
4720 ********************************************************************/
4722 void init_samr_r_query_aliasmem(SAMR_R_QUERY_ALIASMEM * r_u,
4723 uint32 num_sids, DOM_SID2 * sid,
4724 NTSTATUS status)
4726 DEBUG(5, ("init_samr_r_query_aliasmem\n"));
4728 if (NT_STATUS_IS_OK(status)) {
4729 r_u->num_sids = num_sids;
4730 r_u->ptr = (num_sids != 0) ? 1 : 0;
4731 r_u->num_sids1 = num_sids;
4733 r_u->sid = sid;
4734 } else {
4735 r_u->ptr = 0;
4736 r_u->num_sids = 0;
4739 r_u->status = status;
4742 /*******************************************************************
4743 reads or writes a structure.
4744 ********************************************************************/
4746 BOOL samr_io_r_query_aliasmem(const char *desc, SAMR_R_QUERY_ALIASMEM * r_u,
4747 prs_struct *ps, int depth)
4749 uint32 i;
4751 if (r_u == NULL)
4752 return False;
4754 prs_debug(ps, depth, desc, "samr_io_r_query_aliasmem");
4755 depth++;
4757 if(!prs_align(ps))
4758 return False;
4760 if(!prs_uint32("num_sids ", ps, depth, &r_u->num_sids))
4761 return False;
4762 if(!prs_uint32("ptr", ps, depth, &r_u->ptr))
4763 return False;
4765 if (r_u->ptr != 0 && r_u->num_sids != 0) {
4766 uint32 *ptr_sid = NULL;
4768 if(!prs_uint32("num_sids1", ps, depth, &r_u->num_sids1))
4769 return False;
4771 /* We must always use talloc here even when marshalling. */
4772 if (r_u->num_sids1) {
4773 ptr_sid = TALLOC_ARRAY(ps->mem_ctx, uint32, r_u->num_sids1);
4774 if (!ptr_sid) {
4775 return False;
4777 } else {
4778 ptr_sid = NULL;
4781 for (i = 0; i < r_u->num_sids1; i++) {
4782 ptr_sid[i] = 1;
4783 if(!prs_uint32("ptr_sid", ps, depth, &ptr_sid[i]))
4784 return False;
4787 if (UNMARSHALLING(ps)) {
4788 if (r_u->num_sids1) {
4789 r_u->sid = TALLOC_ARRAY(ps->mem_ctx, DOM_SID2, r_u->num_sids1);
4790 if (!r_u->sid) {
4791 return False;
4793 } else {
4794 r_u->sid = NULL;
4798 for (i = 0; i < r_u->num_sids1; i++) {
4799 if (ptr_sid[i] != 0) {
4800 if(!smb_io_dom_sid2("sid", &r_u->sid[i], ps, depth))
4801 return False;
4806 if(!prs_align(ps))
4807 return False;
4808 if(!prs_ntstatus("status", ps, depth, &r_u->status))
4809 return False;
4811 return True;
4814 /*******************************************************************
4815 inits a SAMR_Q_LOOKUP_NAMES structure.
4816 ********************************************************************/
4818 NTSTATUS init_samr_q_lookup_names(TALLOC_CTX *ctx, SAMR_Q_LOOKUP_NAMES * q_u,
4819 POLICY_HND *pol, uint32 flags,
4820 uint32 num_names, const char **name)
4822 uint32 i;
4824 DEBUG(5, ("init_samr_q_lookup_names\n"));
4826 q_u->pol = *pol;
4828 q_u->num_names1 = num_names;
4829 q_u->flags = flags;
4830 q_u->ptr = 0;
4831 q_u->num_names2 = num_names;
4833 if (num_names) {
4834 if (!(q_u->hdr_name = TALLOC_ZERO_ARRAY(ctx, UNIHDR, num_names)))
4835 return NT_STATUS_NO_MEMORY;
4837 if (!(q_u->uni_name = TALLOC_ZERO_ARRAY(ctx, UNISTR2, num_names)))
4838 return NT_STATUS_NO_MEMORY;
4839 } else {
4840 q_u->hdr_name = NULL;
4841 q_u->uni_name = NULL;
4844 for (i = 0; i < num_names; i++) {
4845 init_unistr2(&q_u->uni_name[i], name[i], UNI_FLAGS_NONE); /* unicode string for machine account */
4846 init_uni_hdr(&q_u->hdr_name[i], &q_u->uni_name[i]); /* unicode header for user_name */
4849 return NT_STATUS_OK;
4852 /*******************************************************************
4853 reads or writes a structure.
4854 ********************************************************************/
4856 BOOL samr_io_q_lookup_names(const char *desc, SAMR_Q_LOOKUP_NAMES * q_u,
4857 prs_struct *ps, int depth)
4859 uint32 i;
4861 if (q_u == NULL)
4862 return False;
4864 prs_debug(ps, depth, desc, "samr_io_q_lookup_names");
4865 depth++;
4867 if (UNMARSHALLING(ps))
4868 ZERO_STRUCTP(q_u);
4870 if(!prs_align(ps))
4871 return False;
4873 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
4874 return False;
4876 if(!prs_uint32("num_names1", ps, depth, &q_u->num_names1))
4877 return False;
4878 if(!prs_uint32("flags ", ps, depth, &q_u->flags))
4879 return False;
4880 if(!prs_uint32("ptr ", ps, depth, &q_u->ptr))
4881 return False;
4882 if(!prs_uint32("num_names2", ps, depth, &q_u->num_names2))
4883 return False;
4885 if (UNMARSHALLING(ps) && (q_u->num_names2 != 0)) {
4886 q_u->hdr_name = PRS_ALLOC_MEM(ps, UNIHDR, q_u->num_names2);
4887 q_u->uni_name = PRS_ALLOC_MEM(ps, UNISTR2, q_u->num_names2);
4888 if (!q_u->hdr_name || !q_u->uni_name)
4889 return False;
4892 for (i = 0; i < q_u->num_names2; i++) {
4893 if(!smb_io_unihdr("", &q_u->hdr_name[i], ps, depth))
4894 return False;
4897 for (i = 0; i < q_u->num_names2; i++) {
4898 if(!smb_io_unistr2("", &q_u->uni_name[i], q_u->hdr_name[i].buffer, ps, depth))
4899 return False;
4902 return True;
4905 /*******************************************************************
4906 inits a SAMR_R_LOOKUP_NAMES structure.
4907 ********************************************************************/
4909 NTSTATUS init_samr_r_lookup_names(TALLOC_CTX *ctx, SAMR_R_LOOKUP_NAMES * r_u,
4910 uint32 num_rids,
4911 uint32 *rid, enum lsa_SidType *type,
4912 NTSTATUS status)
4914 DEBUG(5, ("init_samr_r_lookup_names\n"));
4916 if (NT_STATUS_IS_OK(status) && (num_rids != 0)) {
4917 uint32 i;
4919 r_u->num_types1 = num_rids;
4920 r_u->ptr_types = 1;
4921 r_u->num_types2 = num_rids;
4923 r_u->num_rids1 = num_rids;
4924 r_u->ptr_rids = 1;
4925 r_u->num_rids2 = num_rids;
4927 if (num_rids) {
4928 if (!(r_u->rids = TALLOC_ZERO_ARRAY(ctx, uint32, num_rids)))
4929 return NT_STATUS_NO_MEMORY;
4930 if (!(r_u->types = TALLOC_ZERO_ARRAY(ctx, uint32, num_rids)))
4931 return NT_STATUS_NO_MEMORY;
4932 } else {
4933 r_u->rids = NULL;
4934 r_u->types = NULL;
4937 if (!r_u->rids || !r_u->types)
4938 goto empty;
4940 for (i = 0; i < num_rids; i++) {
4941 r_u->rids[i] = rid[i];
4942 r_u->types[i] = type[i];
4944 } else {
4946 empty:
4947 r_u->num_types1 = 0;
4948 r_u->ptr_types = 0;
4949 r_u->num_types2 = 0;
4951 r_u->num_rids1 = 0;
4952 r_u->ptr_rids = 0;
4953 r_u->num_rids2 = 0;
4955 r_u->rids = NULL;
4956 r_u->types = NULL;
4959 r_u->status = status;
4961 return NT_STATUS_OK;
4964 /*******************************************************************
4965 reads or writes a structure.
4966 ********************************************************************/
4968 BOOL samr_io_r_lookup_names(const char *desc, SAMR_R_LOOKUP_NAMES * r_u,
4969 prs_struct *ps, int depth)
4971 uint32 i;
4972 fstring tmp;
4974 if (r_u == NULL)
4975 return False;
4977 prs_debug(ps, depth, desc, "samr_io_r_lookup_names");
4978 depth++;
4980 if (UNMARSHALLING(ps))
4981 ZERO_STRUCTP(r_u);
4983 if(!prs_align(ps))
4984 return False;
4986 if(!prs_uint32("num_rids1", ps, depth, &r_u->num_rids1))
4987 return False;
4988 if(!prs_uint32("ptr_rids ", ps, depth, &r_u->ptr_rids))
4989 return False;
4991 if (r_u->ptr_rids != 0) {
4992 if(!prs_uint32("num_rids2", ps, depth, &r_u->num_rids2))
4993 return False;
4995 if (r_u->num_rids2 != r_u->num_rids1) {
4996 /* RPC fault */
4997 return False;
5000 if (UNMARSHALLING(ps) && r_u->num_rids2) {
5001 r_u->rids = PRS_ALLOC_MEM(ps, uint32, r_u->num_rids2);
5003 if (!r_u->rids) {
5004 DEBUG(0, ("NULL rids in samr_io_r_lookup_names\n"));
5005 return False;
5009 for (i = 0; i < r_u->num_rids2; i++) {
5010 slprintf(tmp, sizeof(tmp) - 1, "rid[%02d] ", i);
5011 if(!prs_uint32(tmp, ps, depth, &r_u->rids[i]))
5012 return False;
5016 if(!prs_uint32("num_types1", ps, depth, &r_u->num_types1))
5017 return False;
5018 if(!prs_uint32("ptr_types ", ps, depth, &r_u->ptr_types))
5019 return False;
5021 if (r_u->ptr_types != 0) {
5022 if(!prs_uint32("num_types2", ps, depth, &r_u->num_types2))
5023 return False;
5025 if (r_u->num_types2 != r_u->num_types1) {
5026 /* RPC fault */
5027 return False;
5030 if (UNMARSHALLING(ps) && r_u->num_types2) {
5031 r_u->types = PRS_ALLOC_MEM(ps, uint32, r_u->num_types2);
5033 if (!r_u->types) {
5034 DEBUG(0, ("NULL types in samr_io_r_lookup_names\n"));
5035 return False;
5039 for (i = 0; i < r_u->num_types2; i++) {
5040 slprintf(tmp, sizeof(tmp) - 1, "type[%02d] ", i);
5041 if(!prs_uint32(tmp, ps, depth, &r_u->types[i]))
5042 return False;
5046 if(!prs_ntstatus("status", ps, depth, &r_u->status))
5047 return False;
5049 return True;
5052 /*******************************************************************
5053 inits a SAMR_Q_DELETE_DOM_USER structure.
5054 ********************************************************************/
5056 void init_samr_q_delete_dom_user(SAMR_Q_DELETE_DOM_USER * q_c,
5057 POLICY_HND *hnd)
5059 DEBUG(5, ("init_samr_q_delete_dom_user\n"));
5061 q_c->user_pol = *hnd;
5064 /*******************************************************************
5065 reads or writes a structure.
5066 ********************************************************************/
5068 BOOL samr_io_q_delete_dom_user(const char *desc, SAMR_Q_DELETE_DOM_USER * q_u,
5069 prs_struct *ps, int depth)
5071 if (q_u == NULL)
5072 return False;
5074 prs_debug(ps, depth, desc, "samr_io_q_delete_dom_user");
5075 depth++;
5077 if(!prs_align(ps))
5078 return False;
5080 if(!smb_io_pol_hnd("user_pol", &q_u->user_pol, ps, depth))
5081 return False;
5083 return True;
5086 /*******************************************************************
5087 reads or writes a structure.
5088 ********************************************************************/
5090 BOOL samr_io_r_delete_dom_user(const char *desc, SAMR_R_DELETE_DOM_USER * r_u,
5091 prs_struct *ps, int depth)
5093 if (r_u == NULL)
5094 return False;
5096 prs_debug(ps, depth, desc, "samr_io_r_delete_dom_user");
5097 depth++;
5099 if(!prs_align(ps))
5100 return False;
5102 if(!smb_io_pol_hnd("pol", &r_u->pol, ps, depth))
5103 return False;
5104 if(!prs_ntstatus("status", ps, depth, &r_u->status))
5105 return False;
5107 return True;
5110 /*******************************************************************
5111 reads or writes a structure.
5112 ********************************************************************/
5114 void init_samr_q_open_user(SAMR_Q_OPEN_USER * q_u,
5115 POLICY_HND *pol,
5116 uint32 access_mask, uint32 rid)
5118 DEBUG(5, ("samr_init_samr_q_open_user\n"));
5120 q_u->domain_pol = *pol;
5121 q_u->access_mask = access_mask;
5122 q_u->user_rid = rid;
5125 /*******************************************************************
5126 reads or writes a structure.
5127 ********************************************************************/
5129 BOOL samr_io_q_open_user(const char *desc, SAMR_Q_OPEN_USER * q_u,
5130 prs_struct *ps, int depth)
5132 if (q_u == NULL)
5133 return False;
5135 prs_debug(ps, depth, desc, "samr_io_q_open_user");
5136 depth++;
5138 if(!prs_align(ps))
5139 return False;
5141 if(!smb_io_pol_hnd("domain_pol", &q_u->domain_pol, ps, depth))
5142 return False;
5144 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
5145 return False;
5146 if(!prs_uint32("user_rid ", ps, depth, &q_u->user_rid))
5147 return False;
5149 return True;
5152 /*******************************************************************
5153 reads or writes a structure.
5154 ********************************************************************/
5156 BOOL samr_io_r_open_user(const char *desc, SAMR_R_OPEN_USER * r_u,
5157 prs_struct *ps, int depth)
5159 if (r_u == NULL)
5160 return False;
5162 prs_debug(ps, depth, desc, "samr_io_r_open_user");
5163 depth++;
5165 if(!prs_align(ps))
5166 return False;
5168 if(!smb_io_pol_hnd("user_pol", &r_u->user_pol, ps, depth))
5169 return False;
5171 if(!prs_ntstatus("status", ps, depth, &r_u->status))
5172 return False;
5174 return True;
5178 /*******************************************************************
5179 reads or writes a structure.
5180 ********************************************************************/
5182 void init_samr_q_create_user(SAMR_Q_CREATE_USER * q_u,
5183 POLICY_HND *pol,
5184 const char *name,
5185 uint32 acb_info, uint32 access_mask)
5187 DEBUG(5, ("samr_init_samr_q_create_user\n"));
5189 q_u->domain_pol = *pol;
5191 init_unistr2(&q_u->uni_name, name, UNI_FLAGS_NONE);
5192 init_uni_hdr(&q_u->hdr_name, &q_u->uni_name);
5194 q_u->acb_info = acb_info;
5195 q_u->access_mask = access_mask;
5198 /*******************************************************************
5199 reads or writes a structure.
5200 ********************************************************************/
5202 BOOL samr_io_q_create_user(const char *desc, SAMR_Q_CREATE_USER * q_u,
5203 prs_struct *ps, int depth)
5205 if (q_u == NULL)
5206 return False;
5208 prs_debug(ps, depth, desc, "samr_io_q_create_user");
5209 depth++;
5211 if(!prs_align(ps))
5212 return False;
5214 if(!smb_io_pol_hnd("domain_pol", &q_u->domain_pol, ps, depth))
5215 return False;
5217 if(!smb_io_unihdr("hdr_name", &q_u->hdr_name, ps, depth))
5218 return False;
5219 if(!smb_io_unistr2("uni_name", &q_u->uni_name, q_u->hdr_name.buffer, ps, depth))
5220 return False;
5222 if(!prs_align(ps))
5223 return False;
5224 if(!prs_uint32("acb_info ", ps, depth, &q_u->acb_info))
5225 return False;
5226 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
5227 return False;
5229 return True;
5232 /*******************************************************************
5233 reads or writes a structure.
5234 ********************************************************************/
5236 BOOL samr_io_r_create_user(const char *desc, SAMR_R_CREATE_USER * r_u,
5237 prs_struct *ps, int depth)
5239 if (r_u == NULL)
5240 return False;
5242 prs_debug(ps, depth, desc, "samr_io_r_create_user");
5243 depth++;
5245 if(!prs_align(ps))
5246 return False;
5248 if(!smb_io_pol_hnd("user_pol", &r_u->user_pol, ps, depth))
5249 return False;
5251 if(!prs_uint32("access_granted", ps, depth, &r_u->access_granted))
5252 return False;
5253 if(!prs_uint32("user_rid ", ps, depth, &r_u->user_rid))
5254 return False;
5255 if(!prs_ntstatus("status", ps, depth, &r_u->status))
5256 return False;
5258 return True;
5261 /*******************************************************************
5262 inits a SAMR_Q_QUERY_USERINFO structure.
5263 ********************************************************************/
5265 void init_samr_q_query_userinfo(SAMR_Q_QUERY_USERINFO * q_u,
5266 const POLICY_HND *hnd, uint16 switch_value)
5268 DEBUG(5, ("init_samr_q_query_userinfo\n"));
5270 q_u->pol = *hnd;
5271 q_u->switch_value = switch_value;
5274 /*******************************************************************
5275 reads or writes a structure.
5276 ********************************************************************/
5278 BOOL samr_io_q_query_userinfo(const char *desc, SAMR_Q_QUERY_USERINFO * q_u,
5279 prs_struct *ps, int depth)
5281 if (q_u == NULL)
5282 return False;
5284 prs_debug(ps, depth, desc, "samr_io_q_query_userinfo");
5285 depth++;
5287 if(!prs_align(ps))
5288 return False;
5290 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
5291 return False;
5293 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value)) /* 0x0015 or 0x0011 */
5294 return False;
5296 return True;
5299 /*******************************************************************
5300 reads or writes a LOGON_HRS structure.
5301 ********************************************************************/
5303 static BOOL sam_io_logon_hrs(const char *desc, LOGON_HRS * hrs,
5304 prs_struct *ps, int depth)
5306 if (hrs == NULL)
5307 return False;
5309 prs_debug(ps, depth, desc, "sam_io_logon_hrs");
5310 depth++;
5312 if(!prs_align(ps))
5313 return False;
5315 if(!prs_uint32("maxlen", ps, depth, &hrs->max_len))
5316 return False;
5318 if(!prs_uint32("offset", ps, depth, &hrs->offset))
5319 return False;
5321 if(!prs_uint32("len ", ps, depth, &hrs->len))
5322 return False;
5324 if (hrs->len > sizeof(hrs->hours)) {
5325 DEBUG(3, ("sam_io_logon_hrs: truncating length from %d\n", hrs->len));
5326 hrs->len = sizeof(hrs->hours);
5329 if(!prs_uint8s(False, "hours", ps, depth, hrs->hours, hrs->len))
5330 return False;
5332 return True;
5335 /*******************************************************************
5336 inits a SAM_USER_INFO_18 structure.
5337 ********************************************************************/
5339 void init_sam_user_info18(SAM_USER_INFO_18 * usr,
5340 const uint8 lm_pwd[16], const uint8 nt_pwd[16])
5342 DEBUG(5, ("init_sam_user_info18\n"));
5344 usr->lm_pwd_active =
5345 memcpy(usr->lm_pwd, lm_pwd, sizeof(usr->lm_pwd)) ? 1 : 0;
5346 usr->nt_pwd_active =
5347 memcpy(usr->nt_pwd, nt_pwd, sizeof(usr->nt_pwd)) ? 1 : 0;
5350 /*******************************************************************
5351 reads or writes a structure.
5352 ********************************************************************/
5354 static BOOL sam_io_user_info18(const char *desc, SAM_USER_INFO_18 * u,
5355 prs_struct *ps, int depth)
5357 if (u == NULL)
5358 return False;
5360 prs_debug(ps, depth, desc, "samr_io_r_user_info18");
5361 depth++;
5363 if(!prs_align(ps))
5364 return False;
5366 if(!prs_uint8s(False, "lm_pwd", ps, depth, u->lm_pwd, sizeof(u->lm_pwd)))
5367 return False;
5368 if(!prs_uint8s(False, "nt_pwd", ps, depth, u->nt_pwd, sizeof(u->nt_pwd)))
5369 return False;
5371 if(!prs_uint8("lm_pwd_active", ps, depth, &u->lm_pwd_active))
5372 return False;
5373 if(!prs_uint8("nt_pwd_active", ps, depth, &u->nt_pwd_active))
5374 return False;
5376 return True;
5379 /*******************************************************************
5380 inits a SAM_USER_INFO_7 structure.
5381 ********************************************************************/
5383 void init_sam_user_info7(SAM_USER_INFO_7 * usr, const char *name)
5385 DEBUG(5, ("init_sam_user_info7\n"));
5387 init_unistr2(&usr->uni_name, name, UNI_FLAGS_NONE); /* unicode string for name */
5388 init_uni_hdr(&usr->hdr_name, &usr->uni_name); /* unicode header for name */
5392 /*******************************************************************
5393 reads or writes a structure.
5394 ********************************************************************/
5396 static BOOL sam_io_user_info7(const char *desc, SAM_USER_INFO_7 * usr,
5397 prs_struct *ps, int depth)
5399 if (usr == NULL)
5400 return False;
5402 prs_debug(ps, depth, desc, "samr_io_r_user_info7");
5403 depth++;
5405 if(!prs_align(ps))
5406 return False;
5408 if(!smb_io_unihdr("unihdr", &usr->hdr_name, ps, depth))
5409 return False;
5411 if(!smb_io_unistr2("unistr2", &usr->uni_name, True, ps, depth))
5412 return False;
5414 return True;
5417 /*******************************************************************
5418 inits a SAM_USER_INFO_9 structure.
5419 ********************************************************************/
5421 void init_sam_user_info9(SAM_USER_INFO_9 * usr, uint32 rid_group)
5423 DEBUG(5, ("init_sam_user_info9\n"));
5425 usr->rid_group = rid_group;
5428 /*******************************************************************
5429 reads or writes a structure.
5430 ********************************************************************/
5432 static BOOL sam_io_user_info9(const char *desc, SAM_USER_INFO_9 * usr,
5433 prs_struct *ps, int depth)
5435 if (usr == NULL)
5436 return False;
5438 prs_debug(ps, depth, desc, "samr_io_r_user_info9");
5439 depth++;
5441 if(!prs_align(ps))
5442 return False;
5444 if(!prs_uint32("rid_group", ps, depth, &usr->rid_group))
5445 return False;
5447 return True;
5450 /*******************************************************************
5451 inits a SAM_USER_INFO_16 structure.
5452 ********************************************************************/
5454 void init_sam_user_info16(SAM_USER_INFO_16 * usr, uint32 acb_info)
5456 DEBUG(5, ("init_sam_user_info16\n"));
5458 usr->acb_info = acb_info;
5461 /*******************************************************************
5462 reads or writes a structure.
5463 ********************************************************************/
5465 static BOOL sam_io_user_info16(const char *desc, SAM_USER_INFO_16 * usr,
5466 prs_struct *ps, int depth)
5468 if (usr == NULL)
5469 return False;
5471 prs_debug(ps, depth, desc, "samr_io_r_user_info16");
5472 depth++;
5474 if(!prs_align(ps))
5475 return False;
5477 if(!prs_uint32("acb_info", ps, depth, &usr->acb_info))
5478 return False;
5480 return True;
5483 /*******************************************************************
5484 inits a SAM_USER_INFO_17 structure.
5485 ********************************************************************/
5487 void init_sam_user_info17(SAM_USER_INFO_17 * usr,
5488 NTTIME * expiry,
5489 char *mach_acct,
5490 uint32 rid_user, uint32 rid_group, uint16 acct_ctrl)
5492 DEBUG(5, ("init_sam_user_info17\n"));
5494 memcpy(&usr->expiry, expiry, sizeof(usr->expiry)); /* expiry time or something? */
5495 ZERO_STRUCT(usr->padding_1); /* 0 - padding 24 bytes */
5497 usr->padding_2 = 0; /* 0 - padding 4 bytes */
5499 usr->ptr_1 = 1; /* pointer */
5500 ZERO_STRUCT(usr->padding_3); /* 0 - padding 32 bytes */
5501 usr->padding_4 = 0; /* 0 - padding 4 bytes */
5503 usr->ptr_2 = 1; /* pointer */
5504 usr->padding_5 = 0; /* 0 - padding 4 bytes */
5506 usr->ptr_3 = 1; /* pointer */
5507 ZERO_STRUCT(usr->padding_6); /* 0 - padding 32 bytes */
5509 usr->rid_user = rid_user;
5510 usr->rid_group = rid_group;
5512 usr->acct_ctrl = acct_ctrl;
5513 usr->unknown_3 = 0x0000;
5515 usr->unknown_4 = 0x003f; /* 0x003f - 16 bit unknown */
5516 usr->unknown_5 = 0x003c; /* 0x003c - 16 bit unknown */
5518 ZERO_STRUCT(usr->padding_7); /* 0 - padding 16 bytes */
5519 usr->padding_8 = 0; /* 0 - padding 4 bytes */
5521 init_unistr2(&usr->uni_mach_acct, mach_acct, UNI_FLAGS_NONE); /* unicode string for machine account */
5522 init_uni_hdr(&usr->hdr_mach_acct, &usr->uni_mach_acct); /* unicode header for machine account */
5525 /*******************************************************************
5526 reads or writes a structure.
5527 ********************************************************************/
5529 static BOOL sam_io_user_info17(const char *desc, SAM_USER_INFO_17 * usr,
5530 prs_struct *ps, int depth)
5532 if (usr == NULL)
5533 return False;
5535 prs_debug(ps, depth, desc, "samr_io_r_unknown_17");
5536 depth++;
5538 if(!prs_align(ps))
5539 return False;
5541 if(!prs_uint8s(False, "padding_0", ps, depth, usr->padding_0, sizeof(usr->padding_0)))
5542 return False;
5544 if(!smb_io_time("time", &usr->expiry, ps, depth))
5545 return False;
5547 if(!prs_uint8s(False, "padding_1", ps, depth, usr->padding_1, sizeof(usr->padding_1)))
5548 return False;
5550 if(!smb_io_unihdr("unihdr", &usr->hdr_mach_acct, ps, depth))
5551 return False;
5553 if(!prs_uint32("padding_2", ps, depth, &usr->padding_2))
5554 return False;
5556 if(!prs_uint32("ptr_1 ", ps, depth, &usr->ptr_1))
5557 return False;
5558 if(!prs_uint8s(False, "padding_3", ps, depth, usr->padding_3, sizeof(usr->padding_3)))
5559 return False;
5561 if(!prs_uint32("padding_4", ps, depth, &usr->padding_4))
5562 return False;
5564 if(!prs_uint32("ptr_2 ", ps, depth, &usr->ptr_2))
5565 return False;
5566 if(!prs_uint32("padding_5", ps, depth, &usr->padding_5))
5567 return False;
5569 if(!prs_uint32("ptr_3 ", ps, depth, &usr->ptr_3))
5570 return False;
5571 if(!prs_uint8s(False, "padding_6", ps, depth, usr->padding_6,sizeof(usr->padding_6)))
5572 return False;
5574 if(!prs_uint32("rid_user ", ps, depth, &usr->rid_user))
5575 return False;
5576 if(!prs_uint32("rid_group", ps, depth, &usr->rid_group))
5577 return False;
5578 if(!prs_uint16("acct_ctrl", ps, depth, &usr->acct_ctrl))
5579 return False;
5580 if(!prs_uint16("unknown_3", ps, depth, &usr->unknown_3))
5581 return False;
5582 if(!prs_uint16("unknown_4", ps, depth, &usr->unknown_4))
5583 return False;
5584 if(!prs_uint16("unknown_5", ps, depth, &usr->unknown_5))
5585 return False;
5587 if(!prs_uint8s(False, "padding_7", ps, depth, usr->padding_7, sizeof(usr->padding_7)))
5588 return False;
5590 if(!prs_uint32("padding_8", ps, depth, &(usr->padding_8)))
5591 return False;
5593 if(!smb_io_unistr2("unistr2", &usr->uni_mach_acct, True, ps, depth))
5594 return False;
5596 if(!prs_align(ps))
5597 return False;
5599 if(!prs_uint8s(False, "padding_9", ps, depth, usr->padding_9, sizeof(usr->padding_9)))
5600 return False;
5602 return True;
5605 /*************************************************************************
5606 init_sam_user_infoa
5607 *************************************************************************/
5609 void init_sam_user_info24(SAM_USER_INFO_24 * usr, char newpass[516],
5610 uint8 pw_len)
5612 DEBUG(10, ("init_sam_user_info24:\n"));
5613 memcpy(usr->pass, newpass, sizeof(usr->pass));
5614 usr->pw_len = pw_len;
5617 /*******************************************************************
5618 reads or writes a structure.
5619 ********************************************************************/
5621 static BOOL sam_io_user_info24(const char *desc, SAM_USER_INFO_24 * usr,
5622 prs_struct *ps, int depth)
5624 if (usr == NULL)
5625 return False;
5627 prs_debug(ps, depth, desc, "sam_io_user_info24");
5628 depth++;
5630 if(!prs_align(ps))
5631 return False;
5633 if(!prs_uint8s(False, "password", ps, depth, usr->pass,
5634 sizeof(usr->pass)))
5635 return False;
5637 if (MARSHALLING(ps) && (usr->pw_len != 0)) {
5638 if (!prs_uint8("pw_len", ps, depth, &usr->pw_len))
5639 return False;
5640 } else if (UNMARSHALLING(ps)) {
5641 if (!prs_uint8("pw_len", ps, depth, &usr->pw_len))
5642 return False;
5645 return True;
5648 /*******************************************************************
5649 reads or writes a structure.
5650 ********************************************************************/
5652 static BOOL sam_io_user_info26(const char *desc, SAM_USER_INFO_26 * usr,
5653 prs_struct *ps, int depth)
5655 if (usr == NULL)
5656 return False;
5658 prs_debug(ps, depth, desc, "sam_io_user_info26");
5659 depth++;
5661 if(!prs_align(ps))
5662 return False;
5664 if(!prs_uint8s(False, "password", ps, depth, usr->pass,
5665 sizeof(usr->pass)))
5666 return False;
5668 if (!prs_uint8("pw_len", ps, depth, &usr->pw_len))
5669 return False;
5671 return True;
5675 /*************************************************************************
5676 init_sam_user_info23
5678 unknown_6 = 0x0000 04ec
5680 *************************************************************************/
5682 void init_sam_user_info23W(SAM_USER_INFO_23 * usr, NTTIME * logon_time, /* all zeros */
5683 NTTIME * logoff_time, /* all zeros */
5684 NTTIME * kickoff_time, /* all zeros */
5685 NTTIME * pass_last_set_time, /* all zeros */
5686 NTTIME * pass_can_change_time, /* all zeros */
5687 NTTIME * pass_must_change_time, /* all zeros */
5688 UNISTR2 *user_name,
5689 UNISTR2 *full_name,
5690 UNISTR2 *home_dir,
5691 UNISTR2 *dir_drive,
5692 UNISTR2 *log_scr,
5693 UNISTR2 *prof_path,
5694 UNISTR2 *desc,
5695 UNISTR2 *wkstas,
5696 UNISTR2 *unk_str,
5697 UNISTR2 *mung_dial,
5698 uint32 user_rid, /* 0x0000 0000 */
5699 uint32 group_rid,
5700 uint32 acb_info,
5701 uint32 fields_present,
5702 uint16 logon_divs,
5703 LOGON_HRS * hrs,
5704 uint16 bad_password_count,
5705 uint16 logon_count,
5706 char newpass[516])
5708 usr->logon_time = *logon_time; /* all zeros */
5709 usr->logoff_time = *logoff_time; /* all zeros */
5710 usr->kickoff_time = *kickoff_time; /* all zeros */
5711 usr->pass_last_set_time = *pass_last_set_time; /* all zeros */
5712 usr->pass_can_change_time = *pass_can_change_time; /* all zeros */
5713 usr->pass_must_change_time = *pass_must_change_time; /* all zeros */
5715 ZERO_STRUCT(usr->nt_pwd);
5716 ZERO_STRUCT(usr->lm_pwd);
5718 usr->user_rid = user_rid; /* 0x0000 0000 */
5719 usr->group_rid = group_rid;
5720 usr->acb_info = acb_info;
5721 usr->fields_present = fields_present; /* 09f8 27fa */
5723 usr->logon_divs = logon_divs; /* should be 168 (hours/week) */
5724 usr->ptr_logon_hrs = hrs ? 1 : 0;
5726 if (nt_time_is_zero(pass_must_change_time)) {
5727 usr->passmustchange=PASS_MUST_CHANGE_AT_NEXT_LOGON;
5728 } else {
5729 usr->passmustchange=0;
5732 ZERO_STRUCT(usr->padding1);
5733 ZERO_STRUCT(usr->padding2);
5735 usr->bad_password_count = bad_password_count;
5736 usr->logon_count = logon_count;
5738 memcpy(usr->pass, newpass, sizeof(usr->pass));
5740 copy_unistr2(&usr->uni_user_name, user_name);
5741 init_uni_hdr(&usr->hdr_user_name, &usr->uni_user_name);
5743 copy_unistr2(&usr->uni_full_name, full_name);
5744 init_uni_hdr(&usr->hdr_full_name, &usr->uni_full_name);
5746 copy_unistr2(&usr->uni_home_dir, home_dir);
5747 init_uni_hdr(&usr->hdr_home_dir, &usr->uni_home_dir);
5749 copy_unistr2(&usr->uni_dir_drive, dir_drive);
5750 init_uni_hdr(&usr->hdr_dir_drive, &usr->uni_dir_drive);
5752 copy_unistr2(&usr->uni_logon_script, log_scr);
5753 init_uni_hdr(&usr->hdr_logon_script, &usr->uni_logon_script);
5755 copy_unistr2(&usr->uni_profile_path, prof_path);
5756 init_uni_hdr(&usr->hdr_profile_path, &usr->uni_profile_path);
5758 copy_unistr2(&usr->uni_acct_desc, desc);
5759 init_uni_hdr(&usr->hdr_acct_desc, &usr->uni_acct_desc);
5761 copy_unistr2(&usr->uni_workstations, wkstas);
5762 init_uni_hdr(&usr->hdr_workstations, &usr->uni_workstations);
5764 copy_unistr2(&usr->uni_comment, unk_str);
5765 init_uni_hdr(&usr->hdr_comment, &usr->uni_comment);
5767 copy_unistr2(&usr->uni_munged_dial, mung_dial);
5768 init_uni_hdr(&usr->hdr_munged_dial, &usr->uni_munged_dial);
5770 if (hrs) {
5771 memcpy(&usr->logon_hrs, hrs, sizeof(usr->logon_hrs));
5772 } else {
5773 ZERO_STRUCT(usr->logon_hrs);
5777 /*************************************************************************
5778 init_sam_user_info23
5780 unknown_6 = 0x0000 04ec
5782 *************************************************************************/
5784 void init_sam_user_info23A(SAM_USER_INFO_23 * usr, NTTIME * logon_time, /* all zeros */
5785 NTTIME * logoff_time, /* all zeros */
5786 NTTIME * kickoff_time, /* all zeros */
5787 NTTIME * pass_last_set_time, /* all zeros */
5788 NTTIME * pass_can_change_time, /* all zeros */
5789 NTTIME * pass_must_change_time, /* all zeros */
5790 char *user_name, /* NULL */
5791 char *full_name,
5792 char *home_dir, char *dir_drive, char *log_scr,
5793 char *prof_path, const char *desc, char *wkstas,
5794 char *unk_str, char *mung_dial, uint32 user_rid, /* 0x0000 0000 */
5795 uint32 group_rid, uint32 acb_info,
5796 uint32 fields_present, uint16 logon_divs,
5797 LOGON_HRS * hrs, uint16 bad_password_count, uint16 logon_count,
5798 char newpass[516])
5800 DATA_BLOB blob = base64_decode_data_blob(mung_dial);
5802 usr->logon_time = *logon_time; /* all zeros */
5803 usr->logoff_time = *logoff_time; /* all zeros */
5804 usr->kickoff_time = *kickoff_time; /* all zeros */
5805 usr->pass_last_set_time = *pass_last_set_time; /* all zeros */
5806 usr->pass_can_change_time = *pass_can_change_time; /* all zeros */
5807 usr->pass_must_change_time = *pass_must_change_time; /* all zeros */
5809 ZERO_STRUCT(usr->nt_pwd);
5810 ZERO_STRUCT(usr->lm_pwd);
5812 usr->user_rid = user_rid; /* 0x0000 0000 */
5813 usr->group_rid = group_rid;
5814 usr->acb_info = acb_info;
5815 usr->fields_present = fields_present; /* 09f8 27fa */
5817 usr->logon_divs = logon_divs; /* should be 168 (hours/week) */
5818 usr->ptr_logon_hrs = hrs ? 1 : 0;
5820 if (nt_time_is_zero(pass_must_change_time)) {
5821 usr->passmustchange=PASS_MUST_CHANGE_AT_NEXT_LOGON;
5822 } else {
5823 usr->passmustchange=0;
5826 ZERO_STRUCT(usr->padding1);
5827 ZERO_STRUCT(usr->padding2);
5829 usr->bad_password_count = bad_password_count;
5830 usr->logon_count = logon_count;
5832 memcpy(usr->pass, newpass, sizeof(usr->pass));
5834 init_unistr2(&usr->uni_user_name, user_name, UNI_FLAGS_NONE);
5835 init_uni_hdr(&usr->hdr_user_name, &usr->uni_user_name);
5837 init_unistr2(&usr->uni_full_name, full_name, UNI_FLAGS_NONE);
5838 init_uni_hdr(&usr->hdr_full_name, &usr->uni_full_name);
5840 init_unistr2(&usr->uni_home_dir, home_dir, UNI_FLAGS_NONE);
5841 init_uni_hdr(&usr->hdr_home_dir, &usr->uni_home_dir);
5843 init_unistr2(&usr->uni_dir_drive, dir_drive, UNI_FLAGS_NONE);
5844 init_uni_hdr(&usr->hdr_dir_drive, &usr->uni_dir_drive);
5846 init_unistr2(&usr->uni_logon_script, log_scr, UNI_FLAGS_NONE);
5847 init_uni_hdr(&usr->hdr_logon_script, &usr->uni_logon_script);
5849 init_unistr2(&usr->uni_profile_path, prof_path, UNI_FLAGS_NONE);
5850 init_uni_hdr(&usr->hdr_profile_path, &usr->uni_profile_path);
5852 init_unistr2(&usr->uni_acct_desc, desc, UNI_FLAGS_NONE);
5853 init_uni_hdr(&usr->hdr_acct_desc, &usr->uni_acct_desc);
5855 init_unistr2(&usr->uni_workstations, wkstas, UNI_FLAGS_NONE);
5856 init_uni_hdr(&usr->hdr_workstations, &usr->uni_workstations);
5858 init_unistr2(&usr->uni_comment, unk_str, UNI_FLAGS_NONE);
5859 init_uni_hdr(&usr->hdr_comment, &usr->uni_comment);
5861 init_unistr2_from_datablob(&usr->uni_munged_dial, &blob);
5862 init_uni_hdr(&usr->hdr_munged_dial, &usr->uni_munged_dial);
5864 data_blob_free(&blob);
5866 if (hrs) {
5867 memcpy(&usr->logon_hrs, hrs, sizeof(usr->logon_hrs));
5868 } else {
5869 ZERO_STRUCT(usr->logon_hrs);
5873 /*******************************************************************
5874 reads or writes a structure.
5875 ********************************************************************/
5877 static BOOL sam_io_user_info23(const char *desc, SAM_USER_INFO_23 * usr,
5878 prs_struct *ps, int depth)
5880 if (usr == NULL)
5881 return False;
5883 prs_debug(ps, depth, desc, "sam_io_user_info23");
5884 depth++;
5886 if(!prs_align(ps))
5887 return False;
5889 if(!smb_io_time("logon_time ", &usr->logon_time, ps, depth))
5890 return False;
5891 if(!smb_io_time("logoff_time ", &usr->logoff_time, ps, depth))
5892 return False;
5893 if(!smb_io_time("kickoff_time ", &usr->kickoff_time, ps, depth))
5894 return False;
5895 if(!smb_io_time("pass_last_set_time ", &usr->pass_last_set_time, ps, depth))
5896 return False;
5897 if(!smb_io_time("pass_can_change_time ", &usr->pass_can_change_time, ps, depth))
5898 return False;
5899 if(!smb_io_time("pass_must_change_time", &usr->pass_must_change_time, ps, depth))
5900 return False;
5902 if(!smb_io_unihdr("hdr_user_name ", &usr->hdr_user_name, ps, depth)) /* username unicode string header */
5903 return False;
5904 if(!smb_io_unihdr("hdr_full_name ", &usr->hdr_full_name, ps, depth)) /* user's full name unicode string header */
5905 return False;
5906 if(!smb_io_unihdr("hdr_home_dir ", &usr->hdr_home_dir, ps, depth)) /* home directory unicode string header */
5907 return False;
5908 if(!smb_io_unihdr("hdr_dir_drive ", &usr->hdr_dir_drive, ps, depth)) /* home directory drive */
5909 return False;
5910 if(!smb_io_unihdr("hdr_logon_script", &usr->hdr_logon_script, ps, depth)) /* logon script unicode string header */
5911 return False;
5912 if(!smb_io_unihdr("hdr_profile_path", &usr->hdr_profile_path, ps, depth)) /* profile path unicode string header */
5913 return False;
5914 if(!smb_io_unihdr("hdr_acct_desc ", &usr->hdr_acct_desc, ps, depth)) /* account desc */
5915 return False;
5916 if(!smb_io_unihdr("hdr_workstations", &usr->hdr_workstations, ps, depth)) /* wkstas user can log on from */
5917 return False;
5918 if(!smb_io_unihdr("hdr_comment ", &usr->hdr_comment, ps, depth)) /* unknown string */
5919 return False;
5920 if(!smb_io_unihdr("hdr_munged_dial ", &usr->hdr_munged_dial, ps, depth)) /* wkstas user can log on from */
5921 return False;
5923 if(!prs_uint8s(False, "lm_pwd ", ps, depth, usr->lm_pwd, sizeof(usr->lm_pwd)))
5924 return False;
5925 if(!prs_uint8s(False, "nt_pwd ", ps, depth, usr->nt_pwd, sizeof(usr->nt_pwd)))
5926 return False;
5928 if(!prs_uint32("user_rid ", ps, depth, &usr->user_rid)) /* User ID */
5929 return False;
5930 if(!prs_uint32("group_rid ", ps, depth, &usr->group_rid)) /* Group ID */
5931 return False;
5932 if(!prs_uint32("acb_info ", ps, depth, &usr->acb_info))
5933 return False;
5935 if(!prs_uint32("fields_present ", ps, depth, &usr->fields_present))
5936 return False;
5937 if(!prs_uint16("logon_divs ", ps, depth, &usr->logon_divs)) /* logon divisions per week */
5938 return False;
5939 if(!prs_align(ps))
5940 return False;
5941 if(!prs_uint32("ptr_logon_hrs ", ps, depth, &usr->ptr_logon_hrs))
5942 return False;
5944 if(!prs_uint16("bad_password_count ", ps, depth, &usr->bad_password_count))
5945 return False;
5946 if(!prs_uint16("logon_count ", ps, depth, &usr->logon_count))
5947 return False;
5949 if(!prs_uint8s(False, "padding1 ", ps, depth, usr->padding1, sizeof(usr->padding1)))
5950 return False;
5951 if(!prs_uint8("passmustchange ", ps, depth, &usr->passmustchange))
5952 return False;
5953 if(!prs_uint8("padding2 ", ps, depth, &usr->padding2))
5954 return False;
5957 if(!prs_uint8s(False, "password ", ps, depth, usr->pass, sizeof(usr->pass)))
5958 return False;
5960 /* here begins pointed-to data */
5962 if(!smb_io_unistr2("uni_user_name ", &usr->uni_user_name, usr->hdr_user_name.buffer, ps, depth)) /* username unicode string */
5963 return False;
5965 if(!smb_io_unistr2("uni_full_name ", &usr->uni_full_name, usr->hdr_full_name.buffer, ps, depth)) /* user's full name unicode string */
5966 return False;
5968 if(!smb_io_unistr2("uni_home_dir ", &usr->uni_home_dir, usr->hdr_home_dir.buffer, ps, depth)) /* home directory unicode string */
5969 return False;
5971 if(!smb_io_unistr2("uni_dir_drive ", &usr->uni_dir_drive, usr->hdr_dir_drive.buffer, ps, depth)) /* home directory drive unicode string */
5972 return False;
5974 if(!smb_io_unistr2("uni_logon_script", &usr->uni_logon_script, usr->hdr_logon_script.buffer, ps, depth)) /* logon script unicode string */
5975 return False;
5977 if(!smb_io_unistr2("uni_profile_path", &usr->uni_profile_path, usr->hdr_profile_path.buffer, ps, depth)) /* profile path unicode string */
5978 return False;
5980 if(!smb_io_unistr2("uni_acct_desc ", &usr->uni_acct_desc, usr->hdr_acct_desc.buffer, ps, depth)) /* user desc unicode string */
5981 return False;
5983 if(!smb_io_unistr2("uni_workstations", &usr->uni_workstations, usr->hdr_workstations.buffer, ps, depth)) /* worksations user can log on from */
5984 return False;
5986 if(!smb_io_unistr2("uni_comment ", &usr->uni_comment, usr->hdr_comment.buffer, ps, depth)) /* unknown string */
5987 return False;
5989 if(!smb_io_unistr2("uni_munged_dial ", &usr->uni_munged_dial, usr->hdr_munged_dial.buffer, ps, depth))
5990 return False;
5992 /* ok, this is only guess-work (as usual) */
5993 if (usr->ptr_logon_hrs) {
5994 if(!sam_io_logon_hrs("logon_hrs", &usr->logon_hrs, ps, depth))
5995 return False;
5998 return True;
6001 /*******************************************************************
6002 reads or writes a structure.
6003 NB. This structure is *definately* incorrect. It's my best guess
6004 currently for W2K SP2. The password field is encrypted in a different
6005 way than normal... And there are definately other problems. JRA.
6006 ********************************************************************/
6008 static BOOL sam_io_user_info25(const char *desc, SAM_USER_INFO_25 * usr, prs_struct *ps, int depth)
6010 if (usr == NULL)
6011 return False;
6013 prs_debug(ps, depth, desc, "sam_io_user_info25");
6014 depth++;
6016 if(!prs_align(ps))
6017 return False;
6019 if(!smb_io_time("logon_time ", &usr->logon_time, ps, depth))
6020 return False;
6021 if(!smb_io_time("logoff_time ", &usr->logoff_time, ps, depth))
6022 return False;
6023 if(!smb_io_time("kickoff_time ", &usr->kickoff_time, ps, depth))
6024 return False;
6025 if(!smb_io_time("pass_last_set_time ", &usr->pass_last_set_time, ps, depth))
6026 return False;
6027 if(!smb_io_time("pass_can_change_time ", &usr->pass_can_change_time, ps, depth))
6028 return False;
6029 if(!smb_io_time("pass_must_change_time", &usr->pass_must_change_time, ps, depth))
6030 return False;
6032 if(!smb_io_unihdr("hdr_user_name ", &usr->hdr_user_name, ps, depth)) /* username unicode string header */
6033 return False;
6034 if(!smb_io_unihdr("hdr_full_name ", &usr->hdr_full_name, ps, depth)) /* user's full name unicode string header */
6035 return False;
6036 if(!smb_io_unihdr("hdr_home_dir ", &usr->hdr_home_dir, ps, depth)) /* home directory unicode string header */
6037 return False;
6038 if(!smb_io_unihdr("hdr_dir_drive ", &usr->hdr_dir_drive, ps, depth)) /* home directory drive */
6039 return False;
6040 if(!smb_io_unihdr("hdr_logon_script", &usr->hdr_logon_script, ps, depth)) /* logon script unicode string header */
6041 return False;
6042 if(!smb_io_unihdr("hdr_profile_path", &usr->hdr_profile_path, ps, depth)) /* profile path unicode string header */
6043 return False;
6044 if(!smb_io_unihdr("hdr_acct_desc ", &usr->hdr_acct_desc, ps, depth)) /* account desc */
6045 return False;
6046 if(!smb_io_unihdr("hdr_workstations", &usr->hdr_workstations, ps, depth)) /* wkstas user can log on from */
6047 return False;
6048 if(!smb_io_unihdr("hdr_comment ", &usr->hdr_comment, ps, depth)) /* unknown string */
6049 return False;
6050 if(!smb_io_unihdr("hdr_munged_dial ", &usr->hdr_munged_dial, ps, depth)) /* wkstas user can log on from */
6051 return False;
6053 if(!prs_uint8s(False, "lm_pwd ", ps, depth, usr->lm_pwd, sizeof(usr->lm_pwd)))
6054 return False;
6055 if(!prs_uint8s(False, "nt_pwd ", ps, depth, usr->nt_pwd, sizeof(usr->nt_pwd)))
6056 return False;
6058 if(!prs_uint32("user_rid ", ps, depth, &usr->user_rid)) /* User ID */
6059 return False;
6060 if(!prs_uint32("group_rid ", ps, depth, &usr->group_rid)) /* Group ID */
6061 return False;
6062 if(!prs_uint32("acb_info ", ps, depth, &usr->acb_info))
6063 return False;
6064 if(!prs_uint32("fields_present ", ps, depth, &usr->fields_present))
6065 return False;
6067 if(!prs_uint16("logon_divs ", ps, depth, &usr->logon_divs)) /* logon divisions per week */
6068 return False;
6069 if(!prs_align(ps))
6070 return False;
6071 if(!prs_uint32("ptr_logon_hrs ", ps, depth, &usr->ptr_logon_hrs))
6072 return False;
6074 if(!prs_uint16("bad_password_count ", ps, depth, &usr->bad_password_count))
6075 return False;
6076 if(!prs_uint16("logon_count ", ps, depth, &usr->logon_count))
6077 return False;
6079 if(!prs_uint8s(False, "padding1 ", ps, depth, usr->padding1, sizeof(usr->padding1)))
6080 return False;
6081 if(!prs_uint8("passmustchange ", ps, depth, &usr->passmustchange))
6082 return False;
6083 if(!prs_uint8("padding2 ", ps, depth, &usr->padding2))
6084 return False;
6087 if(!prs_uint8s(False, "password ", ps, depth, usr->pass, sizeof(usr->pass)))
6088 return False;
6090 /* here begins pointed-to data */
6092 if(!smb_io_unistr2("uni_user_name ", &usr->uni_user_name, usr->hdr_user_name.buffer, ps, depth)) /* username unicode string */
6093 return False;
6095 if(!smb_io_unistr2("uni_full_name ", &usr->uni_full_name, usr->hdr_full_name.buffer, ps, depth)) /* user's full name unicode string */
6096 return False;
6098 if(!smb_io_unistr2("uni_home_dir ", &usr->uni_home_dir, usr->hdr_home_dir.buffer, ps, depth)) /* home directory unicode string */
6099 return False;
6101 if(!smb_io_unistr2("uni_dir_drive ", &usr->uni_dir_drive, usr->hdr_dir_drive.buffer, ps, depth)) /* home directory drive unicode string */
6102 return False;
6104 if(!smb_io_unistr2("uni_logon_script", &usr->uni_logon_script, usr->hdr_logon_script.buffer, ps, depth)) /* logon script unicode string */
6105 return False;
6107 if(!smb_io_unistr2("uni_profile_path", &usr->uni_profile_path, usr->hdr_profile_path.buffer, ps, depth)) /* profile path unicode string */
6108 return False;
6110 if(!smb_io_unistr2("uni_acct_desc ", &usr->uni_acct_desc, usr->hdr_acct_desc.buffer, ps, depth)) /* user desc unicode string */
6111 return False;
6113 if(!smb_io_unistr2("uni_workstations", &usr->uni_workstations, usr->hdr_workstations.buffer, ps, depth)) /* worksations user can log on from */
6114 return False;
6116 if(!smb_io_unistr2("uni_comment ", &usr->uni_comment, usr->hdr_comment.buffer, ps, depth)) /* unknown string */
6117 return False;
6119 if(!smb_io_unistr2("uni_munged_dial ", &usr->uni_munged_dial, usr->hdr_munged_dial.buffer, ps, depth))
6120 return False;
6122 /* ok, this is only guess-work (as usual) */
6123 if (usr->ptr_logon_hrs) {
6124 if(!sam_io_logon_hrs("logon_hrs", &usr->logon_hrs, ps, depth))
6125 return False;
6128 return True;
6132 /*************************************************************************
6133 init_sam_user_info21W
6135 unknown_6 = 0x0000 04ec
6137 *************************************************************************/
6139 void init_sam_user_info21W(SAM_USER_INFO_21 * usr,
6140 NTTIME * logon_time,
6141 NTTIME * logoff_time,
6142 NTTIME * kickoff_time,
6143 NTTIME * pass_last_set_time,
6144 NTTIME * pass_can_change_time,
6145 NTTIME * pass_must_change_time,
6146 UNISTR2 *user_name,
6147 UNISTR2 *full_name,
6148 UNISTR2 *home_dir,
6149 UNISTR2 *dir_drive,
6150 UNISTR2 *log_scr,
6151 UNISTR2 *prof_path,
6152 UNISTR2 *desc,
6153 UNISTR2 *wkstas,
6154 UNISTR2 *unk_str,
6155 UNISTR2 *mung_dial,
6156 uchar lm_pwd[16],
6157 uchar nt_pwd[16],
6158 uint32 user_rid,
6159 uint32 group_rid,
6160 uint32 acb_info,
6161 uint32 fields_present,
6162 uint16 logon_divs,
6163 LOGON_HRS * hrs,
6164 uint16 bad_password_count,
6165 uint16 logon_count)
6167 usr->logon_time = *logon_time;
6168 usr->logoff_time = *logoff_time;
6169 usr->kickoff_time = *kickoff_time;
6170 usr->pass_last_set_time = *pass_last_set_time;
6171 usr->pass_can_change_time = *pass_can_change_time;
6172 usr->pass_must_change_time = *pass_must_change_time;
6174 memcpy(usr->lm_pwd, lm_pwd, sizeof(usr->lm_pwd));
6175 memcpy(usr->nt_pwd, nt_pwd, sizeof(usr->nt_pwd));
6177 usr->user_rid = user_rid;
6178 usr->group_rid = group_rid;
6179 usr->acb_info = acb_info;
6180 usr->fields_present = fields_present; /* 0x00ff ffff */
6182 usr->logon_divs = logon_divs; /* should be 168 (hours/week) */
6183 usr->ptr_logon_hrs = hrs ? 1 : 0;
6184 usr->bad_password_count = bad_password_count;
6185 usr->logon_count = logon_count;
6187 if (nt_time_is_zero(pass_must_change_time)) {
6188 usr->passmustchange=PASS_MUST_CHANGE_AT_NEXT_LOGON;
6189 } else {
6190 usr->passmustchange=0;
6193 ZERO_STRUCT(usr->padding1);
6194 ZERO_STRUCT(usr->padding2);
6196 copy_unistr2(&usr->uni_user_name, user_name);
6197 init_uni_hdr(&usr->hdr_user_name, &usr->uni_user_name);
6199 copy_unistr2(&usr->uni_full_name, full_name);
6200 init_uni_hdr(&usr->hdr_full_name, &usr->uni_full_name);
6202 copy_unistr2(&usr->uni_home_dir, home_dir);
6203 init_uni_hdr(&usr->hdr_home_dir, &usr->uni_home_dir);
6205 copy_unistr2(&usr->uni_dir_drive, dir_drive);
6206 init_uni_hdr(&usr->hdr_dir_drive, &usr->uni_dir_drive);
6208 copy_unistr2(&usr->uni_logon_script, log_scr);
6209 init_uni_hdr(&usr->hdr_logon_script, &usr->uni_logon_script);
6211 copy_unistr2(&usr->uni_profile_path, prof_path);
6212 init_uni_hdr(&usr->hdr_profile_path, &usr->uni_profile_path);
6214 copy_unistr2(&usr->uni_acct_desc, desc);
6215 init_uni_hdr(&usr->hdr_acct_desc, &usr->uni_acct_desc);
6217 copy_unistr2(&usr->uni_workstations, wkstas);
6218 init_uni_hdr(&usr->hdr_workstations, &usr->uni_workstations);
6220 copy_unistr2(&usr->uni_comment, unk_str);
6221 init_uni_hdr(&usr->hdr_comment, &usr->uni_comment);
6223 copy_unistr2(&usr->uni_munged_dial, mung_dial);
6224 init_uni_hdr(&usr->hdr_munged_dial, &usr->uni_munged_dial);
6226 if (hrs) {
6227 memcpy(&usr->logon_hrs, hrs, sizeof(usr->logon_hrs));
6228 } else {
6229 ZERO_STRUCT(usr->logon_hrs);
6233 /*************************************************************************
6234 init_sam_user_info21
6236 unknown_6 = 0x0000 04ec
6238 *************************************************************************/
6240 NTSTATUS init_sam_user_info21A(SAM_USER_INFO_21 *usr, struct samu *pw, DOM_SID *domain_sid)
6242 NTTIME logon_time, logoff_time, kickoff_time,
6243 pass_last_set_time, pass_can_change_time,
6244 pass_must_change_time;
6246 time_t must_change_time;
6247 const char* user_name = pdb_get_username(pw);
6248 const char* full_name = pdb_get_fullname(pw);
6249 const char* home_dir = pdb_get_homedir(pw);
6250 const char* dir_drive = pdb_get_dir_drive(pw);
6251 const char* logon_script = pdb_get_logon_script(pw);
6252 const char* profile_path = pdb_get_profile_path(pw);
6253 const char* description = pdb_get_acct_desc(pw);
6254 const char* workstations = pdb_get_workstations(pw);
6255 const char* munged_dial = pdb_get_munged_dial(pw);
6256 DATA_BLOB munged_dial_blob;
6258 uint32 user_rid;
6259 const DOM_SID *user_sid;
6261 uint32 group_rid;
6262 const DOM_SID *group_sid;
6264 if (munged_dial) {
6265 munged_dial_blob = base64_decode_data_blob(munged_dial);
6266 } else {
6267 munged_dial_blob = data_blob(NULL, 0);
6270 /* Create NTTIME structs */
6271 unix_to_nt_time (&logon_time, pdb_get_logon_time(pw));
6272 unix_to_nt_time (&logoff_time, pdb_get_logoff_time(pw));
6273 unix_to_nt_time (&kickoff_time, pdb_get_kickoff_time(pw));
6274 unix_to_nt_time (&pass_last_set_time, pdb_get_pass_last_set_time(pw));
6275 unix_to_nt_time (&pass_can_change_time,pdb_get_pass_can_change_time(pw));
6276 must_change_time = pdb_get_pass_must_change_time(pw);
6277 if (must_change_time == get_time_t_max())
6278 unix_to_nt_time_abs(&pass_must_change_time, must_change_time);
6279 else
6280 unix_to_nt_time(&pass_must_change_time, must_change_time);
6282 /* structure assignment */
6283 usr->logon_time = logon_time;
6284 usr->logoff_time = logoff_time;
6285 usr->kickoff_time = kickoff_time;
6286 usr->pass_last_set_time = pass_last_set_time;
6287 usr->pass_can_change_time = pass_can_change_time;
6288 usr->pass_must_change_time = pass_must_change_time;
6290 ZERO_STRUCT(usr->nt_pwd);
6291 ZERO_STRUCT(usr->lm_pwd);
6293 user_sid = pdb_get_user_sid(pw);
6295 if (!sid_peek_check_rid(domain_sid, user_sid, &user_rid)) {
6296 fstring user_sid_string;
6297 fstring domain_sid_string;
6298 DEBUG(0, ("init_sam_user_info_21A: User %s has SID %s, \nwhich conflicts with "
6299 "the domain sid %s. Failing operation.\n",
6300 user_name,
6301 sid_to_string(user_sid_string, user_sid),
6302 sid_to_string(domain_sid_string, domain_sid)));
6303 data_blob_free(&munged_dial_blob);
6304 return NT_STATUS_UNSUCCESSFUL;
6307 become_root();
6308 group_sid = pdb_get_group_sid(pw);
6309 unbecome_root();
6311 if (!sid_peek_check_rid(domain_sid, group_sid, &group_rid)) {
6312 fstring group_sid_string;
6313 fstring domain_sid_string;
6314 DEBUG(0, ("init_sam_user_info_21A: User %s has Primary Group SID %s, \n"
6315 "which conflicts with the domain sid %s. Failing operation.\n",
6316 user_name,
6317 sid_to_string(group_sid_string, group_sid),
6318 sid_to_string(domain_sid_string, domain_sid)));
6319 data_blob_free(&munged_dial_blob);
6320 return NT_STATUS_UNSUCCESSFUL;
6323 usr->user_rid = user_rid;
6324 usr->group_rid = group_rid;
6325 usr->acb_info = pdb_get_acct_ctrl(pw);
6328 Look at a user on a real NT4 PDC with usrmgr, press
6329 'ok'. Then you will see that fields_present is set to
6330 0x08f827fa. Look at the user immediately after that again,
6331 and you will see that 0x00fffff is returned. This solves
6332 the problem that you get access denied after having looked
6333 at the user.
6334 -- Volker
6336 usr->fields_present = pdb_build_fields_present(pw);
6338 usr->logon_divs = pdb_get_logon_divs(pw);
6339 usr->ptr_logon_hrs = pdb_get_hours(pw) ? 1 : 0;
6340 usr->bad_password_count = pdb_get_bad_password_count(pw);
6341 usr->logon_count = pdb_get_logon_count(pw);
6343 if (pdb_get_pass_must_change_time(pw) == 0) {
6344 usr->passmustchange=PASS_MUST_CHANGE_AT_NEXT_LOGON;
6345 } else {
6346 usr->passmustchange=0;
6349 ZERO_STRUCT(usr->padding1);
6350 ZERO_STRUCT(usr->padding2);
6352 init_unistr2(&usr->uni_user_name, user_name, UNI_STR_TERMINATE);
6353 init_uni_hdr(&usr->hdr_user_name, &usr->uni_user_name);
6355 init_unistr2(&usr->uni_full_name, full_name, UNI_STR_TERMINATE);
6356 init_uni_hdr(&usr->hdr_full_name, &usr->uni_full_name);
6358 init_unistr2(&usr->uni_home_dir, home_dir, UNI_STR_TERMINATE);
6359 init_uni_hdr(&usr->hdr_home_dir, &usr->uni_home_dir);
6361 init_unistr2(&usr->uni_dir_drive, dir_drive, UNI_STR_TERMINATE);
6362 init_uni_hdr(&usr->hdr_dir_drive, &usr->uni_dir_drive);
6364 init_unistr2(&usr->uni_logon_script, logon_script, UNI_STR_TERMINATE);
6365 init_uni_hdr(&usr->hdr_logon_script, &usr->uni_logon_script);
6367 init_unistr2(&usr->uni_profile_path, profile_path, UNI_STR_TERMINATE);
6368 init_uni_hdr(&usr->hdr_profile_path, &usr->uni_profile_path);
6370 init_unistr2(&usr->uni_acct_desc, description, UNI_STR_TERMINATE);
6371 init_uni_hdr(&usr->hdr_acct_desc, &usr->uni_acct_desc);
6373 init_unistr2(&usr->uni_workstations, workstations, UNI_STR_TERMINATE);
6374 init_uni_hdr(&usr->hdr_workstations, &usr->uni_workstations);
6376 init_unistr2(&usr->uni_comment, NULL, UNI_STR_TERMINATE);
6377 init_uni_hdr(&usr->hdr_comment, &usr->uni_comment);
6379 init_unistr2_from_datablob(&usr->uni_munged_dial, &munged_dial_blob);
6380 init_uni_hdr(&usr->hdr_munged_dial, &usr->uni_munged_dial);
6381 data_blob_free(&munged_dial_blob);
6383 if (pdb_get_hours(pw)) {
6384 usr->logon_hrs.max_len = 1260;
6385 usr->logon_hrs.offset = 0;
6386 usr->logon_hrs.len = pdb_get_hours_len(pw);
6387 memcpy(&usr->logon_hrs.hours, pdb_get_hours(pw), MAX_HOURS_LEN);
6388 } else {
6389 usr->logon_hrs.max_len = 1260;
6390 usr->logon_hrs.offset = 0;
6391 usr->logon_hrs.len = 0;
6392 memset(&usr->logon_hrs, 0xff, sizeof(usr->logon_hrs));
6395 return NT_STATUS_OK;
6398 /*******************************************************************
6399 reads or writes a structure.
6400 ********************************************************************/
6402 static BOOL sam_io_user_info21(const char *desc, SAM_USER_INFO_21 * usr,
6403 prs_struct *ps, int depth)
6405 if (usr == NULL)
6406 return False;
6408 prs_debug(ps, depth, desc, "sam_io_user_info21");
6409 depth++;
6411 if(!prs_align(ps))
6412 return False;
6414 if(!smb_io_time("logon_time ", &usr->logon_time, ps, depth))
6415 return False;
6416 if(!smb_io_time("logoff_time ", &usr->logoff_time, ps, depth))
6417 return False;
6418 if(!smb_io_time("pass_last_set_time ", &usr->pass_last_set_time, ps,depth))
6419 return False;
6420 if(!smb_io_time("kickoff_time ", &usr->kickoff_time, ps, depth))
6421 return False;
6422 if(!smb_io_time("pass_can_change_time ", &usr->pass_can_change_time, ps,depth))
6423 return False;
6424 if(!smb_io_time("pass_must_change_time", &usr->pass_must_change_time, ps, depth))
6425 return False;
6427 if(!smb_io_unihdr("hdr_user_name ", &usr->hdr_user_name, ps, depth)) /* username unicode string header */
6428 return False;
6429 if(!smb_io_unihdr("hdr_full_name ", &usr->hdr_full_name, ps, depth)) /* user's full name unicode string header */
6430 return False;
6431 if(!smb_io_unihdr("hdr_home_dir ", &usr->hdr_home_dir, ps, depth)) /* home directory unicode string header */
6432 return False;
6433 if(!smb_io_unihdr("hdr_dir_drive ", &usr->hdr_dir_drive, ps, depth)) /* home directory drive */
6434 return False;
6435 if(!smb_io_unihdr("hdr_logon_script", &usr->hdr_logon_script, ps, depth)) /* logon script unicode string header */
6436 return False;
6437 if(!smb_io_unihdr("hdr_profile_path", &usr->hdr_profile_path, ps, depth)) /* profile path unicode string header */
6438 return False;
6439 if(!smb_io_unihdr("hdr_acct_desc ", &usr->hdr_acct_desc, ps, depth)) /* account desc */
6440 return False;
6441 if(!smb_io_unihdr("hdr_workstations", &usr->hdr_workstations, ps, depth)) /* wkstas user can log on from */
6442 return False;
6443 if(!smb_io_unihdr("hdr_comment ", &usr->hdr_comment, ps, depth)) /* unknown string */
6444 return False;
6445 if(!smb_io_unihdr("hdr_munged_dial ", &usr->hdr_munged_dial, ps, depth)) /* wkstas user can log on from */
6446 return False;
6448 if(!prs_uint8s(False, "lm_pwd ", ps, depth, usr->lm_pwd, sizeof(usr->lm_pwd)))
6449 return False;
6450 if(!prs_uint8s(False, "nt_pwd ", ps, depth, usr->nt_pwd, sizeof(usr->nt_pwd)))
6451 return False;
6453 if(!prs_uint32("user_rid ", ps, depth, &usr->user_rid)) /* User ID */
6454 return False;
6455 if(!prs_uint32("group_rid ", ps, depth, &usr->group_rid)) /* Group ID */
6456 return False;
6457 if(!prs_uint32("acb_info ", ps, depth, &usr->acb_info))
6458 return False;
6460 if(!prs_uint32("fields_present ", ps, depth, &usr->fields_present))
6461 return False;
6462 if(!prs_uint16("logon_divs ", ps, depth, &usr->logon_divs)) /* logon divisions per week */
6463 return False;
6464 if(!prs_align(ps))
6465 return False;
6466 if(!prs_uint32("ptr_logon_hrs ", ps, depth, &usr->ptr_logon_hrs))
6467 return False;
6469 if(!prs_uint16("bad_password_count ", ps, depth, &usr->bad_password_count))
6470 return False;
6471 if(!prs_uint16("logon_count ", ps, depth, &usr->logon_count))
6472 return False;
6474 if(!prs_uint8s(False, "padding1 ", ps, depth, usr->padding1, sizeof(usr->padding1)))
6475 return False;
6476 if(!prs_uint8("passmustchange ", ps, depth, &usr->passmustchange))
6477 return False;
6478 if(!prs_uint8("padding2 ", ps, depth, &usr->padding2))
6479 return False;
6481 /* here begins pointed-to data */
6483 if(!smb_io_unistr2("uni_user_name ", &usr->uni_user_name,usr->hdr_user_name.buffer, ps, depth))
6484 return False;
6485 if(!smb_io_unistr2("uni_full_name ", &usr->uni_full_name, usr->hdr_full_name.buffer, ps, depth))
6486 return False;
6487 if(!smb_io_unistr2("uni_home_dir ", &usr->uni_home_dir, usr->hdr_home_dir.buffer, ps, depth))
6488 return False;
6489 if(!smb_io_unistr2("uni_dir_drive ", &usr->uni_dir_drive, usr->hdr_dir_drive.buffer, ps, depth))
6490 return False;
6491 if(!smb_io_unistr2("uni_logon_script", &usr->uni_logon_script, usr->hdr_logon_script.buffer, ps, depth))
6492 return False;
6493 if(!smb_io_unistr2("uni_profile_path", &usr->uni_profile_path, usr->hdr_profile_path.buffer, ps, depth))
6494 return False;
6495 if(!smb_io_unistr2("uni_acct_desc ", &usr->uni_acct_desc, usr->hdr_acct_desc.buffer, ps, depth))
6496 return False;
6497 if(!smb_io_unistr2("uni_workstations", &usr->uni_workstations, usr->hdr_workstations.buffer, ps, depth))
6498 return False;
6499 if(!smb_io_unistr2("uni_comment", &usr->uni_comment, usr->hdr_comment.buffer, ps, depth))
6500 return False;
6501 if(!smb_io_unistr2("uni_munged_dial ", &usr->uni_munged_dial,usr->hdr_munged_dial.buffer, ps, depth))
6502 return False;
6504 /* ok, this is only guess-work (as usual) */
6505 if (usr->ptr_logon_hrs) {
6506 if(!sam_io_logon_hrs("logon_hrs", &usr->logon_hrs, ps, depth))
6507 return False;
6510 return True;
6513 void init_sam_user_info20A(SAM_USER_INFO_20 *usr, struct samu *pw)
6515 const char *munged_dial = pdb_get_munged_dial(pw);
6516 DATA_BLOB blob;
6518 if (munged_dial) {
6519 blob = base64_decode_data_blob(munged_dial);
6520 } else {
6521 blob = data_blob(NULL, 0);
6524 init_unistr2_from_datablob(&usr->uni_munged_dial, &blob);
6525 init_uni_hdr(&usr->hdr_munged_dial, &usr->uni_munged_dial);
6526 data_blob_free(&blob);
6529 /*******************************************************************
6530 reads or writes a structure.
6531 ********************************************************************/
6533 static BOOL sam_io_user_info20(const char *desc, SAM_USER_INFO_20 *usr,
6534 prs_struct *ps, int depth)
6536 if (usr == NULL)
6537 return False;
6539 prs_debug(ps, depth, desc, "sam_io_user_info20");
6540 depth++;
6542 if(!prs_align(ps))
6543 return False;
6545 if(!smb_io_unihdr("hdr_munged_dial ", &usr->hdr_munged_dial, ps, depth)) /* wkstas user can log on from */
6546 return False;
6548 if(!smb_io_unistr2("uni_munged_dial ", &usr->uni_munged_dial,usr->hdr_munged_dial.buffer, ps, depth)) /* worksations user can log on from */
6549 return False;
6551 return True;
6554 /*******************************************************************
6555 inits a SAM_USERINFO_CTR structure.
6556 ********************************************************************/
6558 NTSTATUS make_samr_userinfo_ctr_usr21(TALLOC_CTX *ctx, SAM_USERINFO_CTR * ctr,
6559 uint16 switch_value,
6560 SAM_USER_INFO_21 * usr)
6562 DEBUG(5, ("make_samr_userinfo_ctr_usr21\n"));
6564 ctr->switch_value = switch_value;
6565 ctr->info.id = NULL;
6567 switch (switch_value) {
6568 case 16:
6569 ctr->info.id16 = TALLOC_ZERO_P(ctx,SAM_USER_INFO_16);
6570 if (ctr->info.id16 == NULL)
6571 return NT_STATUS_NO_MEMORY;
6573 init_sam_user_info16(ctr->info.id16, usr->acb_info);
6574 break;
6575 #if 0
6576 /* whoops - got this wrong. i think. or don't understand what's happening. */
6577 case 17:
6579 NTTIME expire;
6580 info = (void *)&id11;
6582 expire.low = 0xffffffff;
6583 expire.high = 0x7fffffff;
6585 ctr->info.id = TALLOC_ZERO_P(ctx,SAM_USER_INFO_17);
6586 init_sam_user_info11(ctr->info.id17, &expire,
6587 "BROOKFIELDS$", /* name */
6588 0x03ef, /* user rid */
6589 0x201, /* group rid */
6590 0x0080); /* acb info */
6592 break;
6594 #endif
6595 case 18:
6596 ctr->info.id18 = TALLOC_ZERO_P(ctx,SAM_USER_INFO_18);
6597 if (ctr->info.id18 == NULL)
6598 return NT_STATUS_NO_MEMORY;
6600 init_sam_user_info18(ctr->info.id18, usr->lm_pwd, usr->nt_pwd);
6601 break;
6602 case 21:
6604 SAM_USER_INFO_21 *cusr;
6605 cusr = TALLOC_ZERO_P(ctx,SAM_USER_INFO_21);
6606 ctr->info.id21 = cusr;
6607 if (ctr->info.id21 == NULL)
6608 return NT_STATUS_NO_MEMORY;
6609 memcpy(cusr, usr, sizeof(*usr));
6610 memset(cusr->lm_pwd, 0, sizeof(cusr->lm_pwd));
6611 memset(cusr->nt_pwd, 0, sizeof(cusr->nt_pwd));
6612 break;
6614 default:
6615 DEBUG(4,("make_samr_userinfo_ctr: unsupported info\n"));
6616 return NT_STATUS_INVALID_INFO_CLASS;
6619 return NT_STATUS_OK;
6622 /*******************************************************************
6623 inits a SAM_USERINFO_CTR structure.
6624 ********************************************************************/
6626 static void init_samr_userinfo_ctr(SAM_USERINFO_CTR * ctr, DATA_BLOB *sess_key,
6627 uint16 switch_value, void *info)
6629 DEBUG(5, ("init_samr_userinfo_ctr\n"));
6631 ctr->switch_value = switch_value;
6632 ctr->info.id = info;
6634 switch (switch_value) {
6635 case 0x18:
6636 SamOEMhashBlob(ctr->info.id24->pass, 516, sess_key);
6637 dump_data(100, (char *)sess_key->data, sess_key->length);
6638 dump_data(100, (char *)ctr->info.id24->pass, 516);
6639 break;
6640 case 0x17:
6641 SamOEMhashBlob(ctr->info.id23->pass, 516, sess_key);
6642 dump_data(100, (char *)sess_key->data, sess_key->length);
6643 dump_data(100, (char *)ctr->info.id23->pass, 516);
6644 break;
6645 case 0x07:
6646 break;
6647 default:
6648 DEBUG(4,("init_samr_userinfo_ctr: unsupported switch level: %d\n", switch_value));
6652 /*******************************************************************
6653 reads or writes a structure.
6654 ********************************************************************/
6656 static BOOL samr_io_userinfo_ctr(const char *desc, SAM_USERINFO_CTR **ppctr,
6657 prs_struct *ps, int depth)
6659 BOOL ret;
6660 SAM_USERINFO_CTR *ctr;
6662 prs_debug(ps, depth, desc, "samr_io_userinfo_ctr");
6663 depth++;
6665 if (UNMARSHALLING(ps)) {
6666 ctr = PRS_ALLOC_MEM(ps,SAM_USERINFO_CTR,1);
6667 if (ctr == NULL)
6668 return False;
6669 *ppctr = ctr;
6670 } else {
6671 ctr = *ppctr;
6674 /* lkclXXXX DO NOT ALIGN BEFORE READING SWITCH VALUE! */
6676 if(!prs_uint16("switch_value", ps, depth, &ctr->switch_value))
6677 return False;
6678 if(!prs_align(ps))
6679 return False;
6681 ret = False;
6683 switch (ctr->switch_value) {
6684 case 7:
6685 if (UNMARSHALLING(ps))
6686 ctr->info.id7 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_7,1);
6687 if (ctr->info.id7 == NULL) {
6688 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6689 return False;
6691 ret = sam_io_user_info7("", ctr->info.id7, ps, depth);
6692 break;
6693 case 9:
6694 if (UNMARSHALLING(ps))
6695 ctr->info.id9 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_9,1);
6696 if (ctr->info.id9 == NULL) {
6697 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6698 return False;
6700 ret = sam_io_user_info9("", ctr->info.id9, ps, depth);
6701 break;
6702 case 16:
6703 if (UNMARSHALLING(ps))
6704 ctr->info.id16 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_16,1);
6705 if (ctr->info.id16 == NULL) {
6706 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6707 return False;
6709 ret = sam_io_user_info16("", ctr->info.id16, ps, depth);
6710 break;
6711 case 17:
6712 if (UNMARSHALLING(ps))
6713 ctr->info.id17 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_17,1);
6715 if (ctr->info.id17 == NULL) {
6716 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6717 return False;
6719 ret = sam_io_user_info17("", ctr->info.id17, ps, depth);
6720 break;
6721 case 18:
6722 if (UNMARSHALLING(ps))
6723 ctr->info.id18 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_18,1);
6725 if (ctr->info.id18 == NULL) {
6726 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6727 return False;
6729 ret = sam_io_user_info18("", ctr->info.id18, ps, depth);
6730 break;
6731 case 20:
6732 if (UNMARSHALLING(ps))
6733 ctr->info.id20 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_20,1);
6735 if (ctr->info.id20 == NULL) {
6736 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6737 return False;
6739 ret = sam_io_user_info20("", ctr->info.id20, ps, depth);
6740 break;
6741 case 21:
6742 if (UNMARSHALLING(ps))
6743 ctr->info.id21 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_21,1);
6745 if (ctr->info.id21 == NULL) {
6746 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6747 return False;
6749 ret = sam_io_user_info21("", ctr->info.id21, ps, depth);
6750 break;
6751 case 23:
6752 if (UNMARSHALLING(ps))
6753 ctr->info.id23 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_23,1);
6755 if (ctr->info.id23 == NULL) {
6756 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6757 return False;
6759 ret = sam_io_user_info23("", ctr->info.id23, ps, depth);
6760 break;
6761 case 24:
6762 if (UNMARSHALLING(ps))
6763 ctr->info.id24 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_24,1);
6765 if (ctr->info.id24 == NULL) {
6766 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6767 return False;
6769 ret = sam_io_user_info24("", ctr->info.id24, ps, depth);
6770 break;
6771 case 25:
6772 if (UNMARSHALLING(ps))
6773 ctr->info.id25 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_25,1);
6775 if (ctr->info.id25 == NULL) {
6776 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6777 return False;
6779 ret = sam_io_user_info25("", ctr->info.id25, ps, depth);
6780 break;
6781 case 26:
6782 if (UNMARSHALLING(ps))
6783 ctr->info.id26 = PRS_ALLOC_MEM(ps,SAM_USER_INFO_26,1);
6785 if (ctr->info.id26 == NULL) {
6786 DEBUG(2,("samr_io_userinfo_ctr: info pointer not initialised\n"));
6787 return False;
6789 ret = sam_io_user_info26("", ctr->info.id26, ps, depth);
6790 break;
6791 default:
6792 DEBUG(2, ("samr_io_userinfo_ctr: unknown switch level 0x%x\n", ctr->switch_value));
6793 ret = False;
6794 break;
6797 return ret;
6800 /*******************************************************************
6801 inits a SAMR_R_QUERY_USERINFO structure.
6802 ********************************************************************/
6804 void init_samr_r_query_userinfo(SAMR_R_QUERY_USERINFO * r_u,
6805 SAM_USERINFO_CTR * ctr, NTSTATUS status)
6807 DEBUG(5, ("init_samr_r_query_userinfo\n"));
6809 r_u->ptr = 0;
6810 r_u->ctr = NULL;
6812 if (NT_STATUS_IS_OK(status)) {
6813 r_u->ptr = 1;
6814 r_u->ctr = ctr;
6817 r_u->status = status; /* return status */
6820 /*******************************************************************
6821 reads or writes a structure.
6822 ********************************************************************/
6824 BOOL samr_io_r_query_userinfo(const char *desc, SAMR_R_QUERY_USERINFO * r_u,
6825 prs_struct *ps, int depth)
6827 if (r_u == NULL)
6828 return False;
6830 prs_debug(ps, depth, desc, "samr_io_r_query_userinfo");
6831 depth++;
6833 if(!prs_align(ps))
6834 return False;
6836 if(!prs_uint32("ptr", ps, depth, &r_u->ptr))
6837 return False;
6839 if (r_u->ptr != 0) {
6840 if(!samr_io_userinfo_ctr("ctr", &r_u->ctr, ps, depth))
6841 return False;
6844 if(!prs_align(ps))
6845 return False;
6846 if(!prs_ntstatus("status", ps, depth, &r_u->status))
6847 return False;
6849 return True;
6852 /*******************************************************************
6853 inits a SAMR_Q_SET_USERINFO structure.
6854 ********************************************************************/
6856 void init_samr_q_set_userinfo(SAMR_Q_SET_USERINFO * q_u,
6857 const POLICY_HND *hnd, DATA_BLOB *sess_key,
6858 uint16 switch_value, void *info)
6860 DEBUG(5, ("init_samr_q_set_userinfo\n"));
6862 q_u->pol = *hnd;
6863 q_u->switch_value = switch_value;
6864 init_samr_userinfo_ctr(q_u->ctr, sess_key, switch_value, info);
6867 /*******************************************************************
6868 reads or writes a structure.
6869 ********************************************************************/
6871 BOOL samr_io_q_set_userinfo(const char *desc, SAMR_Q_SET_USERINFO * q_u,
6872 prs_struct *ps, int depth)
6874 if (q_u == NULL)
6875 return False;
6877 prs_debug(ps, depth, desc, "samr_io_q_set_userinfo");
6878 depth++;
6880 if(!prs_align(ps))
6881 return False;
6883 smb_io_pol_hnd("pol", &(q_u->pol), ps, depth);
6885 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value))
6886 return False;
6887 if(!samr_io_userinfo_ctr("ctr", &q_u->ctr, ps, depth))
6888 return False;
6890 return True;
6893 /*******************************************************************
6894 inits a SAMR_R_SET_USERINFO structure.
6895 ********************************************************************/
6897 void init_samr_r_set_userinfo(SAMR_R_SET_USERINFO * r_u, NTSTATUS status)
6899 DEBUG(5, ("init_samr_r_set_userinfo\n"));
6901 r_u->status = status; /* return status */
6904 /*******************************************************************
6905 reads or writes a structure.
6906 ********************************************************************/
6908 BOOL samr_io_r_set_userinfo(const char *desc, SAMR_R_SET_USERINFO * r_u,
6909 prs_struct *ps, int depth)
6911 if (r_u == NULL)
6912 return False;
6914 prs_debug(ps, depth, desc, "samr_io_r_set_userinfo");
6915 depth++;
6917 if(!prs_align(ps))
6918 return False;
6920 if(!prs_ntstatus("status", ps, depth, &r_u->status))
6921 return False;
6923 return True;
6926 /*******************************************************************
6927 inits a SAMR_Q_SET_USERINFO2 structure.
6928 ********************************************************************/
6930 void init_samr_q_set_userinfo2(SAMR_Q_SET_USERINFO2 * q_u,
6931 const POLICY_HND *hnd, DATA_BLOB *sess_key,
6932 uint16 switch_value, SAM_USERINFO_CTR * ctr)
6934 DEBUG(5, ("init_samr_q_set_userinfo2\n"));
6936 q_u->pol = *hnd;
6937 q_u->switch_value = switch_value;
6938 q_u->ctr = ctr;
6940 q_u->ctr->switch_value = switch_value;
6942 switch (switch_value) {
6943 case 18:
6944 SamOEMhashBlob(ctr->info.id18->lm_pwd, 16, sess_key);
6945 SamOEMhashBlob(ctr->info.id18->nt_pwd, 16, sess_key);
6946 dump_data(100, (char *)sess_key->data, sess_key->length);
6947 dump_data(100, (char *)ctr->info.id18->lm_pwd, 16);
6948 dump_data(100, (char *)ctr->info.id18->nt_pwd, 16);
6949 break;
6953 /*******************************************************************
6954 reads or writes a structure.
6955 ********************************************************************/
6957 BOOL samr_io_q_set_userinfo2(const char *desc, SAMR_Q_SET_USERINFO2 * q_u,
6958 prs_struct *ps, int depth)
6960 if (q_u == NULL)
6961 return False;
6963 prs_debug(ps, depth, desc, "samr_io_q_set_userinfo2");
6964 depth++;
6966 if(!prs_align(ps))
6967 return False;
6969 if(!smb_io_pol_hnd("pol", &q_u->pol, ps, depth))
6970 return False;
6972 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value))
6973 return False;
6974 if(!samr_io_userinfo_ctr("ctr", &q_u->ctr, ps, depth))
6975 return False;
6977 return True;
6980 /*******************************************************************
6981 inits a SAMR_R_SET_USERINFO2 structure.
6982 ********************************************************************/
6984 void init_samr_r_set_userinfo2(SAMR_R_SET_USERINFO2 * r_u, NTSTATUS status)
6986 DEBUG(5, ("init_samr_r_set_userinfo2\n"));
6988 r_u->status = status; /* return status */
6991 /*******************************************************************
6992 reads or writes a structure.
6993 ********************************************************************/
6995 BOOL samr_io_r_set_userinfo2(const char *desc, SAMR_R_SET_USERINFO2 * r_u,
6996 prs_struct *ps, int depth)
6998 if (r_u == NULL)
6999 return False;
7001 prs_debug(ps, depth, desc, "samr_io_r_set_userinfo2");
7002 depth++;
7004 if(!prs_align(ps))
7005 return False;
7007 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7008 return False;
7010 return True;
7013 /*******************************************************************
7014 inits a SAMR_Q_CONNECT structure.
7015 ********************************************************************/
7017 void init_samr_q_connect(SAMR_Q_CONNECT * q_u,
7018 char *srv_name, uint32 access_mask)
7020 DEBUG(5, ("init_samr_q_connect\n"));
7022 /* make PDC server name \\server */
7023 q_u->ptr_srv_name = (srv_name != NULL && *srv_name) ? 1 : 0;
7024 init_unistr2(&q_u->uni_srv_name, srv_name, UNI_STR_TERMINATE);
7026 /* example values: 0x0000 0002 */
7027 q_u->access_mask = access_mask;
7030 /*******************************************************************
7031 reads or writes a structure.
7032 ********************************************************************/
7034 BOOL samr_io_q_connect(const char *desc, SAMR_Q_CONNECT * q_u,
7035 prs_struct *ps, int depth)
7037 if (q_u == NULL)
7038 return False;
7040 prs_debug(ps, depth, desc, "samr_io_q_connect");
7041 depth++;
7043 if(!prs_align(ps))
7044 return False;
7046 if(!prs_uint32("ptr_srv_name", ps, depth, &q_u->ptr_srv_name))
7047 return False;
7048 if(!smb_io_unistr2("", &q_u->uni_srv_name, q_u->ptr_srv_name, ps, depth))
7049 return False;
7051 if(!prs_align(ps))
7052 return False;
7053 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
7054 return False;
7056 return True;
7059 /*******************************************************************
7060 reads or writes a structure.
7061 ********************************************************************/
7063 BOOL samr_io_r_connect(const char *desc, SAMR_R_CONNECT * r_u,
7064 prs_struct *ps, int depth)
7066 if (r_u == NULL)
7067 return False;
7069 prs_debug(ps, depth, desc, "samr_io_r_connect");
7070 depth++;
7072 if(!prs_align(ps))
7073 return False;
7075 if(!smb_io_pol_hnd("connect_pol", &r_u->connect_pol, ps, depth))
7076 return False;
7078 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7079 return False;
7081 return True;
7084 /*******************************************************************
7085 inits a SAMR_Q_CONNECT4 structure.
7086 ********************************************************************/
7088 void init_samr_q_connect4(SAMR_Q_CONNECT4 * q_u,
7089 char *srv_name, uint32 access_mask)
7091 DEBUG(5, ("init_samr_q_connect4\n"));
7093 /* make PDC server name \\server */
7094 q_u->ptr_srv_name = (srv_name != NULL && *srv_name) ? 1 : 0;
7095 init_unistr2(&q_u->uni_srv_name, srv_name, UNI_STR_TERMINATE);
7097 /* Only value we've seen, possibly an address type ? */
7098 q_u->unk_0 = 2;
7100 /* example values: 0x0000 0002 */
7101 q_u->access_mask = access_mask;
7104 /*******************************************************************
7105 reads or writes a structure.
7106 ********************************************************************/
7108 BOOL samr_io_q_connect4(const char *desc, SAMR_Q_CONNECT4 * q_u,
7109 prs_struct *ps, int depth)
7111 if (q_u == NULL)
7112 return False;
7114 prs_debug(ps, depth, desc, "samr_io_q_connect4");
7115 depth++;
7117 if(!prs_align(ps))
7118 return False;
7120 if(!prs_uint32("ptr_srv_name", ps, depth, &q_u->ptr_srv_name))
7121 return False;
7122 if(!smb_io_unistr2("", &q_u->uni_srv_name, q_u->ptr_srv_name, ps, depth))
7123 return False;
7125 if(!prs_align(ps))
7126 return False;
7127 if(!prs_uint32("unk_0", ps, depth, &q_u->unk_0))
7128 return False;
7129 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
7130 return False;
7132 return True;
7135 /*******************************************************************
7136 reads or writes a structure.
7137 ********************************************************************/
7139 BOOL samr_io_r_connect4(const char *desc, SAMR_R_CONNECT4 * r_u,
7140 prs_struct *ps, int depth)
7142 if (r_u == NULL)
7143 return False;
7145 prs_debug(ps, depth, desc, "samr_io_r_connect4");
7146 depth++;
7148 if(!prs_align(ps))
7149 return False;
7151 if(!smb_io_pol_hnd("connect_pol", &r_u->connect_pol, ps, depth))
7152 return False;
7154 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7155 return False;
7157 return True;
7160 /*******************************************************************
7161 inits a SAMR_Q_CONNECT5 structure.
7162 ********************************************************************/
7164 void init_samr_q_connect5(SAMR_Q_CONNECT5 * q_u,
7165 char *srv_name, uint32 access_mask)
7167 DEBUG(5, ("init_samr_q_connect5\n"));
7169 /* make PDC server name \\server */
7170 q_u->ptr_srv_name = (srv_name != NULL && *srv_name) ? 1 : 0;
7171 init_unistr2(&q_u->uni_srv_name, srv_name, UNI_STR_TERMINATE);
7173 /* example values: 0x0000 0002 */
7174 q_u->access_mask = access_mask;
7176 q_u->level = 1;
7177 q_u->info1_unk1 = 3;
7178 q_u->info1_unk2 = 0;
7181 /*******************************************************************
7182 inits a SAMR_R_CONNECT5 structure.
7183 ********************************************************************/
7185 void init_samr_r_connect5(SAMR_R_CONNECT5 * r_u, POLICY_HND *pol, NTSTATUS status)
7187 DEBUG(5, ("init_samr_q_connect5\n"));
7189 r_u->level = 1;
7190 r_u->info1_unk1 = 3;
7191 r_u->info1_unk2 = 0;
7193 r_u->connect_pol = *pol;
7194 r_u->status = status;
7197 /*******************************************************************
7198 reads or writes a structure.
7199 ********************************************************************/
7201 BOOL samr_io_q_connect5(const char *desc, SAMR_Q_CONNECT5 * q_u,
7202 prs_struct *ps, int depth)
7204 if (q_u == NULL)
7205 return False;
7207 prs_debug(ps, depth, desc, "samr_io_q_connect5");
7208 depth++;
7210 if(!prs_align(ps))
7211 return False;
7213 if(!prs_uint32("ptr_srv_name", ps, depth, &q_u->ptr_srv_name))
7214 return False;
7215 if(!smb_io_unistr2("", &q_u->uni_srv_name, q_u->ptr_srv_name, ps, depth))
7216 return False;
7218 if(!prs_align(ps))
7219 return False;
7220 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
7221 return False;
7223 if(!prs_uint32("level", ps, depth, &q_u->level))
7224 return False;
7225 if(!prs_uint32("level", ps, depth, &q_u->level))
7226 return False;
7228 if(!prs_uint32("info1_unk1", ps, depth, &q_u->info1_unk1))
7229 return False;
7230 if(!prs_uint32("info1_unk2", ps, depth, &q_u->info1_unk2))
7231 return False;
7233 return True;
7236 /*******************************************************************
7237 reads or writes a structure.
7238 ********************************************************************/
7240 BOOL samr_io_r_connect5(const char *desc, SAMR_R_CONNECT5 * r_u,
7241 prs_struct *ps, int depth)
7243 if (r_u == NULL)
7244 return False;
7246 prs_debug(ps, depth, desc, "samr_io_r_connect5");
7247 depth++;
7249 if(!prs_align(ps))
7250 return False;
7252 if(!prs_uint32("level", ps, depth, &r_u->level))
7253 return False;
7254 if(!prs_uint32("level", ps, depth, &r_u->level))
7255 return False;
7256 if(!prs_uint32("info1_unk1", ps, depth, &r_u->info1_unk1))
7257 return False;
7258 if(!prs_uint32("info1_unk2", ps, depth, &r_u->info1_unk2))
7259 return False;
7261 if(!smb_io_pol_hnd("connect_pol", &r_u->connect_pol, ps, depth))
7262 return False;
7264 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7265 return False;
7267 return True;
7270 /*******************************************************************
7271 inits a SAMR_Q_CONNECT_ANON structure.
7272 ********************************************************************/
7274 void init_samr_q_connect_anon(SAMR_Q_CONNECT_ANON * q_u)
7276 DEBUG(5, ("init_samr_q_connect_anon\n"));
7278 q_u->ptr = 1;
7279 q_u->unknown_0 = 0x5c; /* server name (?!!) */
7280 q_u->access_mask = MAXIMUM_ALLOWED_ACCESS;
7283 /*******************************************************************
7284 reads or writes a structure.
7285 ********************************************************************/
7287 BOOL samr_io_q_connect_anon(const char *desc, SAMR_Q_CONNECT_ANON * q_u,
7288 prs_struct *ps, int depth)
7290 if (q_u == NULL)
7291 return False;
7293 prs_debug(ps, depth, desc, "samr_io_q_connect_anon");
7294 depth++;
7296 if(!prs_align(ps))
7297 return False;
7299 if(!prs_uint32("ptr ", ps, depth, &q_u->ptr))
7300 return False;
7301 if (q_u->ptr) {
7302 if(!prs_uint16("unknown_0", ps, depth, &q_u->unknown_0))
7303 return False;
7305 if(!prs_align(ps))
7306 return False;
7307 if(!prs_uint32("access_mask", ps, depth, &q_u->access_mask))
7308 return False;
7310 return True;
7313 /*******************************************************************
7314 reads or writes a structure.
7315 ********************************************************************/
7317 BOOL samr_io_r_connect_anon(const char *desc, SAMR_R_CONNECT_ANON * r_u,
7318 prs_struct *ps, int depth)
7320 if (r_u == NULL)
7321 return False;
7323 prs_debug(ps, depth, desc, "samr_io_r_connect_anon");
7324 depth++;
7326 if(!prs_align(ps))
7327 return False;
7329 if(!smb_io_pol_hnd("connect_pol", &r_u->connect_pol, ps, depth))
7330 return False;
7332 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7333 return False;
7335 return True;
7338 /*******************************************************************
7339 inits a SAMR_Q_GET_DOM_PWINFO structure.
7340 ********************************************************************/
7342 void init_samr_q_get_dom_pwinfo(SAMR_Q_GET_DOM_PWINFO * q_u,
7343 char *srv_name)
7345 DEBUG(5, ("init_samr_q_get_dom_pwinfo\n"));
7347 q_u->ptr = 1;
7348 init_unistr2(&q_u->uni_srv_name, srv_name, UNI_FLAGS_NONE);
7349 init_uni_hdr(&q_u->hdr_srv_name, &q_u->uni_srv_name);
7352 /*******************************************************************
7353 reads or writes a structure.
7354 ********************************************************************/
7356 BOOL samr_io_q_get_dom_pwinfo(const char *desc, SAMR_Q_GET_DOM_PWINFO * q_u,
7357 prs_struct *ps, int depth)
7359 if (q_u == NULL)
7360 return False;
7362 prs_debug(ps, depth, desc, "samr_io_q_get_dom_pwinfo");
7363 depth++;
7365 if(!prs_align(ps))
7366 return False;
7368 if(!prs_uint32("ptr", ps, depth, &q_u->ptr))
7369 return False;
7370 if (q_u->ptr != 0) {
7371 if(!smb_io_unihdr("", &q_u->hdr_srv_name, ps, depth))
7372 return False;
7373 if(!smb_io_unistr2("", &q_u->uni_srv_name, q_u->hdr_srv_name.buffer, ps, depth))
7374 return False;
7377 return True;
7380 /*******************************************************************
7381 reads or writes a structure.
7382 ********************************************************************/
7384 BOOL samr_io_r_get_dom_pwinfo(const char *desc, SAMR_R_GET_DOM_PWINFO * r_u,
7385 prs_struct *ps, int depth)
7387 if (r_u == NULL)
7388 return False;
7390 prs_debug(ps, depth, desc, "samr_io_r_get_dom_pwinfo");
7391 depth++;
7393 if(!prs_align(ps))
7394 return False;
7396 if(!prs_uint16("min_pwd_length", ps, depth, &r_u->min_pwd_length))
7397 return False;
7398 if(!prs_align(ps))
7399 return False;
7400 if(!prs_uint32("password_properties", ps, depth, &r_u->password_properties))
7401 return False;
7403 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7404 return False;
7406 return True;
7409 /*******************************************************************
7410 make a SAMR_ENC_PASSWD structure.
7411 ********************************************************************/
7413 void init_enc_passwd(SAMR_ENC_PASSWD * pwd, const char pass[512])
7415 ZERO_STRUCTP(pwd);
7417 if (pass == NULL) {
7418 pwd->ptr = 0;
7419 } else {
7420 pwd->ptr = 1;
7421 memcpy(pwd->pass, pass, sizeof(pwd->pass));
7425 /*******************************************************************
7426 reads or writes a SAMR_ENC_PASSWD structure.
7427 ********************************************************************/
7429 BOOL samr_io_enc_passwd(const char *desc, SAMR_ENC_PASSWD * pwd,
7430 prs_struct *ps, int depth)
7432 if (pwd == NULL)
7433 return False;
7435 prs_debug(ps, depth, desc, "samr_io_enc_passwd");
7436 depth++;
7438 if(!prs_align(ps))
7439 return False;
7441 if(!prs_uint32("ptr", ps, depth, &pwd->ptr))
7442 return False;
7444 if (pwd->ptr != 0) {
7445 if(!prs_uint8s(False, "pwd", ps, depth, pwd->pass, sizeof(pwd->pass)))
7446 return False;
7449 return True;
7452 /*******************************************************************
7453 inits a SAMR_ENC_HASH structure.
7454 ********************************************************************/
7456 void init_enc_hash(SAMR_ENC_HASH * hsh, const uchar hash[16])
7458 ZERO_STRUCTP(hsh);
7460 if (hash == NULL) {
7461 hsh->ptr = 0;
7462 } else {
7463 hsh->ptr = 1;
7464 memcpy(hsh->hash, hash, sizeof(hsh->hash));
7468 /*******************************************************************
7469 reads or writes a SAMR_ENC_HASH structure.
7470 ********************************************************************/
7472 BOOL samr_io_enc_hash(const char *desc, SAMR_ENC_HASH * hsh,
7473 prs_struct *ps, int depth)
7475 if (hsh == NULL)
7476 return False;
7478 prs_debug(ps, depth, desc, "samr_io_enc_hash");
7479 depth++;
7481 if(!prs_align(ps))
7482 return False;
7484 if(!prs_uint32("ptr ", ps, depth, &hsh->ptr))
7485 return False;
7486 if (hsh->ptr != 0) {
7487 if(!prs_uint8s(False, "hash", ps, depth, hsh->hash,sizeof(hsh->hash)))
7488 return False;
7491 return True;
7494 /*******************************************************************
7495 inits a SAMR_Q_CHGPASSWD_USER structure.
7496 ********************************************************************/
7498 void init_samr_q_chgpasswd_user(SAMR_Q_CHGPASSWD_USER * q_u,
7499 const char *dest_host, const char *user_name,
7500 const uchar nt_newpass[516],
7501 const uchar nt_oldhash[16],
7502 const uchar lm_newpass[516],
7503 const uchar lm_oldhash[16])
7505 DEBUG(5, ("init_samr_q_chgpasswd_user\n"));
7507 q_u->ptr_0 = 1;
7508 init_unistr2(&q_u->uni_dest_host, dest_host, UNI_FLAGS_NONE);
7509 init_uni_hdr(&q_u->hdr_dest_host, &q_u->uni_dest_host);
7511 init_unistr2(&q_u->uni_user_name, user_name, UNI_FLAGS_NONE);
7512 init_uni_hdr(&q_u->hdr_user_name, &q_u->uni_user_name);
7514 init_enc_passwd(&q_u->nt_newpass, (const char *)nt_newpass);
7515 init_enc_hash(&q_u->nt_oldhash, nt_oldhash);
7517 q_u->unknown = 0x01;
7519 init_enc_passwd(&q_u->lm_newpass, (const char *)lm_newpass);
7520 init_enc_hash(&q_u->lm_oldhash, lm_oldhash);
7523 /*******************************************************************
7524 reads or writes a structure.
7525 ********************************************************************/
7527 BOOL samr_io_q_chgpasswd_user(const char *desc, SAMR_Q_CHGPASSWD_USER * q_u,
7528 prs_struct *ps, int depth)
7530 if (q_u == NULL)
7531 return False;
7533 prs_debug(ps, depth, desc, "samr_io_q_chgpasswd_user");
7534 depth++;
7536 if(!prs_align(ps))
7537 return False;
7539 if(!prs_uint32("ptr_0", ps, depth, &q_u->ptr_0))
7540 return False;
7542 if(!smb_io_unihdr("", &q_u->hdr_dest_host, ps, depth))
7543 return False;
7544 if(!smb_io_unistr2("", &q_u->uni_dest_host, q_u->hdr_dest_host.buffer, ps, depth))
7545 return False;
7547 if(!prs_align(ps))
7548 return False;
7549 if(!smb_io_unihdr("", &q_u->hdr_user_name, ps, depth))
7550 return False;
7551 if(!smb_io_unistr2("", &q_u->uni_user_name, q_u->hdr_user_name.buffer,ps, depth))
7552 return False;
7554 if(!samr_io_enc_passwd("nt_newpass", &q_u->nt_newpass, ps, depth))
7555 return False;
7556 if(!samr_io_enc_hash("nt_oldhash", &q_u->nt_oldhash, ps, depth))
7557 return False;
7559 if(!prs_uint32("unknown", ps, depth, &q_u->unknown))
7560 return False;
7562 if(!samr_io_enc_passwd("lm_newpass", &q_u->lm_newpass, ps, depth))
7563 return False;
7564 if(!samr_io_enc_hash("lm_oldhash", &q_u->lm_oldhash, ps, depth))
7565 return False;
7567 return True;
7570 /*******************************************************************
7571 inits a SAMR_R_CHGPASSWD_USER structure.
7572 ********************************************************************/
7574 void init_samr_r_chgpasswd_user(SAMR_R_CHGPASSWD_USER * r_u, NTSTATUS status)
7576 DEBUG(5, ("init_samr_r_chgpasswd_user\n"));
7578 r_u->status = status;
7581 /*******************************************************************
7582 reads or writes a structure.
7583 ********************************************************************/
7585 BOOL samr_io_r_chgpasswd_user(const char *desc, SAMR_R_CHGPASSWD_USER * r_u,
7586 prs_struct *ps, int depth)
7588 if (r_u == NULL)
7589 return False;
7591 prs_debug(ps, depth, desc, "samr_io_r_chgpasswd_user");
7592 depth++;
7594 if(!prs_align(ps))
7595 return False;
7597 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7598 return False;
7600 return True;
7603 /*******************************************************************
7604 inits a SAMR_Q_CHGPASSWD3 structure.
7605 ********************************************************************/
7607 void init_samr_q_chgpasswd_user3(SAMR_Q_CHGPASSWD_USER3 * q_u,
7608 const char *dest_host, const char *user_name,
7609 const uchar nt_newpass[516],
7610 const uchar nt_oldhash[16],
7611 const uchar lm_newpass[516],
7612 const uchar lm_oldhash[16])
7614 DEBUG(5, ("init_samr_q_chgpasswd_user3\n"));
7616 q_u->ptr_0 = 1;
7617 init_unistr2(&q_u->uni_dest_host, dest_host, UNI_FLAGS_NONE);
7618 init_uni_hdr(&q_u->hdr_dest_host, &q_u->uni_dest_host);
7620 init_unistr2(&q_u->uni_user_name, user_name, UNI_FLAGS_NONE);
7621 init_uni_hdr(&q_u->hdr_user_name, &q_u->uni_user_name);
7623 init_enc_passwd(&q_u->nt_newpass, (const char *)nt_newpass);
7624 init_enc_hash(&q_u->nt_oldhash, nt_oldhash);
7626 q_u->lm_change = 0x01;
7628 init_enc_passwd(&q_u->lm_newpass, (const char *)lm_newpass);
7629 init_enc_hash(&q_u->lm_oldhash, lm_oldhash);
7631 init_enc_passwd(&q_u->password3, NULL);
7634 /*******************************************************************
7635 reads or writes a structure.
7636 ********************************************************************/
7638 BOOL samr_io_q_chgpasswd_user3(const char *desc, SAMR_Q_CHGPASSWD_USER3 * q_u,
7639 prs_struct *ps, int depth)
7641 if (q_u == NULL)
7642 return False;
7644 prs_debug(ps, depth, desc, "samr_io_q_chgpasswd_user3");
7645 depth++;
7647 if(!prs_align(ps))
7648 return False;
7650 if(!prs_uint32("ptr_0", ps, depth, &q_u->ptr_0))
7651 return False;
7653 if(!smb_io_unihdr("", &q_u->hdr_dest_host, ps, depth))
7654 return False;
7655 if(!smb_io_unistr2("", &q_u->uni_dest_host, q_u->hdr_dest_host.buffer, ps, depth))
7656 return False;
7658 if(!prs_align(ps))
7659 return False;
7660 if(!smb_io_unihdr("", &q_u->hdr_user_name, ps, depth))
7661 return False;
7662 if(!smb_io_unistr2("", &q_u->uni_user_name, q_u->hdr_user_name.buffer,ps, depth))
7663 return False;
7665 if(!samr_io_enc_passwd("nt_newpass", &q_u->nt_newpass, ps, depth))
7666 return False;
7667 if(!samr_io_enc_hash("nt_oldhash", &q_u->nt_oldhash, ps, depth))
7668 return False;
7670 if(!prs_uint32("lm_change", ps, depth, &q_u->lm_change))
7671 return False;
7673 if(!samr_io_enc_passwd("lm_newpass", &q_u->lm_newpass, ps, depth))
7674 return False;
7675 if(!samr_io_enc_hash("lm_oldhash", &q_u->lm_oldhash, ps, depth))
7676 return False;
7678 if(!samr_io_enc_passwd("password3", &q_u->password3, ps, depth))
7679 return False;
7681 return True;
7684 /*******************************************************************
7685 inits a SAMR_R_CHGPASSWD_USER3 structure.
7686 ********************************************************************/
7688 void init_samr_r_chgpasswd_user3(SAMR_R_CHGPASSWD_USER3 *r_u, NTSTATUS status,
7689 SAMR_CHANGE_REJECT *reject, SAM_UNK_INFO_1 *info)
7691 DEBUG(5, ("init_samr_r_chgpasswd_user3\n"));
7693 r_u->status = status;
7694 r_u->info = 0;
7695 r_u->ptr_info = 0;
7696 r_u->reject = 0;
7697 r_u->ptr_reject = 0;
7699 if (info) {
7700 r_u->info = info;
7701 r_u->ptr_info = 1;
7703 if (reject && (reject->reject_reason != Undefined)) {
7704 r_u->reject = reject;
7705 r_u->ptr_reject = 1;
7709 /*******************************************************************
7710 Reads or writes an SAMR_CHANGE_REJECT structure.
7711 ********************************************************************/
7713 BOOL samr_io_change_reject(const char *desc, SAMR_CHANGE_REJECT *reject, prs_struct *ps, int depth)
7715 if (reject == NULL)
7716 return False;
7718 prs_debug(ps, depth, desc, "samr_io_change_reject");
7719 depth++;
7721 if(!prs_align(ps))
7722 return False;
7724 if(UNMARSHALLING(ps))
7725 ZERO_STRUCTP(reject);
7727 if (!prs_uint32("reject_reason", ps, depth, &reject->reject_reason))
7728 return False;
7730 if (!prs_uint32("unknown1", ps, depth, &reject->unknown1))
7731 return False;
7733 if (!prs_uint32("unknown2", ps, depth, &reject->unknown2))
7734 return False;
7736 return True;
7739 /*******************************************************************
7740 reads or writes a structure.
7741 ********************************************************************/
7743 BOOL samr_io_r_chgpasswd_user3(const char *desc, SAMR_R_CHGPASSWD_USER3 *r_u,
7744 prs_struct *ps, int depth)
7746 if (r_u == NULL)
7747 return False;
7749 prs_debug(ps, depth, desc, "samr_io_r_chgpasswd_user3");
7750 depth++;
7752 if (!prs_align(ps))
7753 return False;
7755 if (!prs_uint32("ptr_info", ps, depth, &r_u->ptr_info))
7756 return False;
7758 /* special case: Windows 2000 can return stub data here saying
7759 NT_STATUS_NOT_SUPPORTED */
7761 if ( NT_STATUS_EQUAL( NT_STATUS_NOT_SUPPORTED, NT_STATUS(r_u->ptr_info)) ) {
7762 r_u->status = NT_STATUS_NOT_SUPPORTED;
7763 return True;
7766 if (r_u->ptr_info && r_u->info != NULL) {
7767 /* SAM_UNK_INFO_1 */
7768 if (!sam_io_unk_info1("info", r_u->info, ps, depth))
7769 return False;
7772 if (!prs_uint32("ptr_reject", ps, depth, &r_u->ptr_reject))
7773 return False;
7775 if (r_u->ptr_reject && r_u->reject != NULL) {
7776 /* SAMR_CHANGE_REJECT */
7777 if (!samr_io_change_reject("reject", r_u->reject, ps, depth))
7778 return False;
7781 if (!prs_ntstatus("status", ps, depth, &r_u->status))
7782 return False;
7784 return True;
7787 /*******************************************************************
7788 reads or writes a structure.
7789 ********************************************************************/
7791 void init_samr_q_query_domain_info2(SAMR_Q_QUERY_DOMAIN_INFO2 *q_u,
7792 POLICY_HND *domain_pol, uint16 switch_value)
7794 DEBUG(5, ("init_samr_q_query_domain_info2\n"));
7796 q_u->domain_pol = *domain_pol;
7797 q_u->switch_value = switch_value;
7800 /*******************************************************************
7801 reads or writes a structure.
7802 ********************************************************************/
7804 BOOL samr_io_q_query_domain_info2(const char *desc, SAMR_Q_QUERY_DOMAIN_INFO2 *q_u,
7805 prs_struct *ps, int depth)
7807 if (q_u == NULL)
7808 return False;
7810 prs_debug(ps, depth, desc, "samr_io_q_query_domain_info2");
7811 depth++;
7813 if(!prs_align(ps))
7814 return False;
7816 if(!smb_io_pol_hnd("domain_pol", &q_u->domain_pol, ps, depth))
7817 return False;
7819 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value))
7820 return False;
7822 return True;
7825 /*******************************************************************
7826 inits a SAMR_R_QUERY_DOMAIN_INFO structure.
7827 ********************************************************************/
7829 void init_samr_r_query_domain_info2(SAMR_R_QUERY_DOMAIN_INFO2 * r_u,
7830 uint16 switch_value, SAM_UNK_CTR * ctr,
7831 NTSTATUS status)
7833 DEBUG(5, ("init_samr_r_query_domain_info2\n"));
7835 r_u->ptr_0 = 0;
7836 r_u->switch_value = 0;
7837 r_u->status = status; /* return status */
7839 if (NT_STATUS_IS_OK(status)) {
7840 r_u->switch_value = switch_value;
7841 r_u->ptr_0 = 1;
7842 r_u->ctr = ctr;
7846 /*******************************************************************
7847 reads or writes a structure.
7848 ********************************************************************/
7850 BOOL samr_io_r_query_domain_info2(const char *desc, SAMR_R_QUERY_DOMAIN_INFO2 * r_u,
7851 prs_struct *ps, int depth)
7853 if (r_u == NULL)
7854 return False;
7856 prs_debug(ps, depth, desc, "samr_io_r_query_domain_info2");
7857 depth++;
7859 if(!prs_align(ps))
7860 return False;
7862 if(!prs_uint32("ptr_0 ", ps, depth, &r_u->ptr_0))
7863 return False;
7865 if (r_u->ptr_0 != 0 && r_u->ctr != NULL) {
7866 if(!prs_uint16("switch_value", ps, depth, &r_u->switch_value))
7867 return False;
7868 if(!prs_align(ps))
7869 return False;
7871 switch (r_u->switch_value) {
7872 case 0x0d:
7873 if(!sam_io_unk_info13("unk_inf13", &r_u->ctr->info.inf13, ps, depth))
7874 return False;
7875 break;
7876 case 0x0c:
7877 if(!sam_io_unk_info12("unk_inf12", &r_u->ctr->info.inf12, ps, depth))
7878 return False;
7879 break;
7880 case 0x09:
7881 if(!sam_io_unk_info9("unk_inf9",&r_u->ctr->info.inf9, ps,depth))
7882 return False;
7883 break;
7884 case 0x08:
7885 if(!sam_io_unk_info8("unk_inf8",&r_u->ctr->info.inf8, ps,depth))
7886 return False;
7887 break;
7888 case 0x07:
7889 if(!sam_io_unk_info7("unk_inf7",&r_u->ctr->info.inf7, ps,depth))
7890 return False;
7891 break;
7892 case 0x06:
7893 if(!sam_io_unk_info6("unk_inf6",&r_u->ctr->info.inf6, ps,depth))
7894 return False;
7895 break;
7896 case 0x05:
7897 if(!sam_io_unk_info5("unk_inf5",&r_u->ctr->info.inf5, ps,depth))
7898 return False;
7899 break;
7900 case 0x04:
7901 if(!sam_io_unk_info4("unk_inf4",&r_u->ctr->info.inf4, ps,depth))
7902 return False;
7903 break;
7904 case 0x03:
7905 if(!sam_io_unk_info3("unk_inf3",&r_u->ctr->info.inf3, ps,depth))
7906 return False;
7907 break;
7908 case 0x02:
7909 if(!sam_io_unk_info2("unk_inf2",&r_u->ctr->info.inf2, ps,depth))
7910 return False;
7911 break;
7912 case 0x01:
7913 if(!sam_io_unk_info1("unk_inf1",&r_u->ctr->info.inf1, ps,depth))
7914 return False;
7915 break;
7916 default:
7917 DEBUG(0, ("samr_io_r_query_domain_info2: unknown switch level 0x%x\n",
7918 r_u->switch_value));
7919 r_u->status = NT_STATUS_INVALID_INFO_CLASS;
7920 return False;
7924 if(!prs_align(ps))
7925 return False;
7927 if(!prs_ntstatus("status", ps, depth, &r_u->status))
7928 return False;
7930 return True;
7934 /*******************************************************************
7935 reads or writes a structure.
7936 ********************************************************************/
7938 void init_samr_q_set_domain_info(SAMR_Q_SET_DOMAIN_INFO *q_u,
7939 POLICY_HND *domain_pol, uint16 switch_value, SAM_UNK_CTR *ctr)
7941 DEBUG(5, ("init_samr_q_set_domain_info\n"));
7943 q_u->domain_pol = *domain_pol;
7944 q_u->switch_value0 = switch_value;
7946 q_u->switch_value = switch_value;
7947 q_u->ctr = ctr;
7951 /*******************************************************************
7952 reads or writes a structure.
7953 ********************************************************************/
7955 BOOL samr_io_q_set_domain_info(const char *desc, SAMR_Q_SET_DOMAIN_INFO *q_u,
7956 prs_struct *ps, int depth)
7958 if (q_u == NULL)
7959 return False;
7961 prs_debug(ps, depth, desc, "samr_io_q_set_domain_info");
7962 depth++;
7964 if(!prs_align(ps))
7965 return False;
7967 if(!smb_io_pol_hnd("domain_pol", &q_u->domain_pol, ps, depth))
7968 return False;
7970 if(!prs_uint16("switch_value0", ps, depth, &q_u->switch_value0))
7971 return False;
7973 if(!prs_uint16("switch_value", ps, depth, &q_u->switch_value))
7974 return False;
7976 if(!prs_align(ps))
7977 return False;
7979 if (UNMARSHALLING(ps)) {
7980 if ((q_u->ctr = PRS_ALLOC_MEM(ps, SAM_UNK_CTR, 1)) == NULL)
7981 return False;
7984 switch (q_u->switch_value) {
7986 case 0x0c:
7987 if(!sam_io_unk_info12("unk_inf12", &q_u->ctr->info.inf12, ps, depth))
7988 return False;
7989 break;
7990 case 0x07:
7991 if(!sam_io_unk_info7("unk_inf7",&q_u->ctr->info.inf7, ps,depth))
7992 return False;
7993 break;
7994 case 0x06:
7995 if(!sam_io_unk_info6("unk_inf6",&q_u->ctr->info.inf6, ps,depth))
7996 return False;
7997 break;
7998 case 0x05:
7999 if(!sam_io_unk_info5("unk_inf5",&q_u->ctr->info.inf5, ps,depth))
8000 return False;
8001 break;
8002 case 0x03:
8003 if(!sam_io_unk_info3("unk_inf3",&q_u->ctr->info.inf3, ps,depth))
8004 return False;
8005 break;
8006 case 0x02:
8007 if(!sam_io_unk_info2("unk_inf2",&q_u->ctr->info.inf2, ps,depth))
8008 return False;
8009 break;
8010 case 0x01:
8011 if(!sam_io_unk_info1("unk_inf1",&q_u->ctr->info.inf1, ps,depth))
8012 return False;
8013 break;
8014 default:
8015 DEBUG(0, ("samr_io_r_samr_unknown_2e: unknown switch level 0x%x\n",
8016 q_u->switch_value));
8017 return False;
8020 return True;
8023 /*******************************************************************
8024 inits a SAMR_R_QUERY_DOMAIN_INFO structure.
8025 ********************************************************************/
8027 void init_samr_r_set_domain_info(SAMR_R_SET_DOMAIN_INFO * r_u, NTSTATUS status)
8029 DEBUG(5, ("init_samr_r_set_domain_info\n"));
8031 r_u->status = status; /* return status */
8034 /*******************************************************************
8035 reads or writes a structure.
8036 ********************************************************************/
8038 BOOL samr_io_r_set_domain_info(const char *desc, SAMR_R_SET_DOMAIN_INFO * r_u,
8039 prs_struct *ps, int depth)
8041 if (r_u == NULL)
8042 return False;
8044 prs_debug(ps, depth, desc, "samr_io_r_samr_unknown_2e");
8045 depth++;
8047 if(!prs_align(ps))
8048 return False;
8050 if(!prs_ntstatus("status", ps, depth, &r_u->status))
8051 return False;
8053 return True;