2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-1997,
5 * Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6 * Copyright (C) Paul Ashton 1997,
7 * Copyright (C) Andrew Bartlett 2002,
8 * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002.
9 * Copyright (C) Gerald )Jerry) Carter 2005
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #define DBGC_CLASS DBGC_RPC_PARSE
31 static BOOL
lsa_io_trans_names(const char *desc
, LSA_TRANS_NAME_ENUM
*trn
, prs_struct
*ps
, int depth
);
32 static BOOL
lsa_io_trans_names2(const char *desc
, LSA_TRANS_NAME_ENUM2
*trn
, prs_struct
*ps
, int depth
);
34 /*******************************************************************
35 Inits a LSA_TRANS_NAME structure.
36 ********************************************************************/
38 void init_lsa_trans_name(LSA_TRANS_NAME
*trn
, UNISTR2
*uni_name
,
39 uint16 sid_name_use
, const char *name
, uint32 idx
)
41 trn
->sid_name_use
= sid_name_use
;
42 init_unistr2(uni_name
, name
, UNI_FLAGS_NONE
);
43 init_uni_hdr(&trn
->hdr_name
, uni_name
);
44 trn
->domain_idx
= idx
;
47 /*******************************************************************
48 Reads or writes a LSA_TRANS_NAME structure.
49 ********************************************************************/
51 static BOOL
lsa_io_trans_name(const char *desc
, LSA_TRANS_NAME
*trn
, prs_struct
*ps
,
54 prs_debug(ps
, depth
, desc
, "lsa_io_trans_name");
60 if(!prs_uint16("sid_name_use", ps
, depth
, &trn
->sid_name_use
))
65 if(!smb_io_unihdr ("hdr_name", &trn
->hdr_name
, ps
, depth
))
67 if(!prs_uint32("domain_idx ", ps
, depth
, &trn
->domain_idx
))
73 /*******************************************************************
74 Inits a LSA_TRANS_NAME2 structure.
75 ********************************************************************/
77 void init_lsa_trans_name2(LSA_TRANS_NAME2
*trn
, UNISTR2
*uni_name
,
78 uint16 sid_name_use
, const char *name
, uint32 idx
)
80 trn
->sid_name_use
= sid_name_use
;
81 init_unistr2(uni_name
, name
, UNI_FLAGS_NONE
);
82 init_uni_hdr(&trn
->hdr_name
, uni_name
);
83 trn
->domain_idx
= idx
;
87 /*******************************************************************
88 Reads or writes a LSA_TRANS_NAME2 structure.
89 ********************************************************************/
91 static BOOL
lsa_io_trans_name2(const char *desc
, LSA_TRANS_NAME2
*trn
, prs_struct
*ps
,
94 prs_debug(ps
, depth
, desc
, "lsa_io_trans_name2");
100 if(!prs_uint16("sid_name_use", ps
, depth
, &trn
->sid_name_use
))
105 if(!smb_io_unihdr ("hdr_name", &trn
->hdr_name
, ps
, depth
))
107 if(!prs_uint32("domain_idx ", ps
, depth
, &trn
->domain_idx
))
109 if(!prs_uint32("unknown ", ps
, depth
, &trn
->unknown
))
115 /*******************************************************************
116 Reads or writes a DOM_R_REF structure.
117 ********************************************************************/
119 static BOOL
lsa_io_dom_r_ref(const char *desc
, DOM_R_REF
*dom
, prs_struct
*ps
, int depth
)
123 prs_debug(ps
, depth
, desc
, "lsa_io_dom_r_ref");
129 if(!prs_uint32("num_ref_doms_1", ps
, depth
, &dom
->num_ref_doms_1
)) /* num referenced domains? */
131 if(!prs_uint32("ptr_ref_dom ", ps
, depth
, &dom
->ptr_ref_dom
)) /* undocumented buffer pointer. */
133 if(!prs_uint32("max_entries ", ps
, depth
, &dom
->max_entries
)) /* 32 - max number of entries */
136 SMB_ASSERT_ARRAY(dom
->hdr_ref_dom
, dom
->num_ref_doms_1
);
138 if (dom
->ptr_ref_dom
!= 0) {
140 if(!prs_uint32("num_ref_doms_2", ps
, depth
, &dom
->num_ref_doms_2
)) /* 4 - num referenced domains? */
143 SMB_ASSERT_ARRAY(dom
->ref_dom
, dom
->num_ref_doms_2
);
145 for (i
= 0; i
< dom
->num_ref_doms_1
; i
++) {
148 slprintf(t
, sizeof(t
) - 1, "dom_ref[%d] ", i
);
149 if(!smb_io_unihdr(t
, &dom
->hdr_ref_dom
[i
].hdr_dom_name
, ps
, depth
))
152 slprintf(t
, sizeof(t
) - 1, "sid_ptr[%d] ", i
);
153 if(!prs_uint32(t
, ps
, depth
, &dom
->hdr_ref_dom
[i
].ptr_dom_sid
))
157 for (i
= 0; i
< dom
->num_ref_doms_2
; i
++) {
160 if (dom
->hdr_ref_dom
[i
].hdr_dom_name
.buffer
!= 0) {
161 slprintf(t
, sizeof(t
) - 1, "dom_ref[%d] ", i
);
162 if(!smb_io_unistr2(t
, &dom
->ref_dom
[i
].uni_dom_name
, True
, ps
, depth
)) /* domain name unicode string */
168 if (dom
->hdr_ref_dom
[i
].ptr_dom_sid
!= 0) {
169 slprintf(t
, sizeof(t
) - 1, "sid_ptr[%d] ", i
);
170 if(!smb_io_dom_sid2(t
, &dom
->ref_dom
[i
].ref_dom
, ps
, depth
)) /* referenced domain SIDs */
179 /*******************************************************************
180 Inits an LSA_SEC_QOS structure.
181 ********************************************************************/
183 void init_lsa_sec_qos(LSA_SEC_QOS
*qos
, uint16 imp_lev
, uint8 ctxt
, uint8 eff
)
185 DEBUG(5, ("init_lsa_sec_qos\n"));
187 qos
->len
= 0x0c; /* length of quality of service block, in bytes */
188 qos
->sec_imp_level
= imp_lev
;
189 qos
->sec_ctxt_mode
= ctxt
;
190 qos
->effective_only
= eff
;
193 /*******************************************************************
194 Reads or writes an LSA_SEC_QOS structure.
195 ********************************************************************/
197 static BOOL
lsa_io_sec_qos(const char *desc
, LSA_SEC_QOS
*qos
, prs_struct
*ps
,
202 prs_debug(ps
, depth
, desc
, "lsa_io_obj_qos");
208 start
= prs_offset(ps
);
210 /* these pointers had _better_ be zero, because we don't know
213 if(!prs_uint32("len ", ps
, depth
, &qos
->len
)) /* 0x18 - length (in bytes) inc. the length field. */
215 if(!prs_uint16("sec_imp_level ", ps
, depth
, &qos
->sec_imp_level
))
217 if(!prs_uint8 ("sec_ctxt_mode ", ps
, depth
, &qos
->sec_ctxt_mode
))
219 if(!prs_uint8 ("effective_only", ps
, depth
, &qos
->effective_only
))
222 if (qos
->len
!= prs_offset(ps
) - start
) {
223 DEBUG(3,("lsa_io_sec_qos: length %x does not match size %x\n",
224 qos
->len
, prs_offset(ps
) - start
));
230 /*******************************************************************
231 Inits an LSA_OBJ_ATTR structure.
232 ********************************************************************/
234 static void init_lsa_obj_attr(LSA_OBJ_ATTR
*attr
, uint32 attributes
, LSA_SEC_QOS
*qos
)
236 DEBUG(5, ("init_lsa_obj_attr\n"));
238 attr
->len
= 0x18; /* length of object attribute block, in bytes */
239 attr
->ptr_root_dir
= 0;
240 attr
->ptr_obj_name
= 0;
241 attr
->attributes
= attributes
;
242 attr
->ptr_sec_desc
= 0;
245 attr
->ptr_sec_qos
= 1;
248 attr
->ptr_sec_qos
= 0;
249 attr
->sec_qos
= NULL
;
253 /*******************************************************************
254 Reads or writes an LSA_OBJ_ATTR structure.
255 ********************************************************************/
257 static BOOL
lsa_io_obj_attr(const char *desc
, LSA_OBJ_ATTR
*attr
, prs_struct
*ps
,
260 prs_debug(ps
, depth
, desc
, "lsa_io_obj_attr");
266 /* these pointers had _better_ be zero, because we don't know
269 if(!prs_uint32("len ", ps
, depth
, &attr
->len
)) /* 0x18 - length (in bytes) inc. the length field. */
271 if(!prs_uint32("ptr_root_dir", ps
, depth
, &attr
->ptr_root_dir
)) /* 0 - root directory (pointer) */
273 if(!prs_uint32("ptr_obj_name", ps
, depth
, &attr
->ptr_obj_name
)) /* 0 - object name (pointer) */
275 if(!prs_uint32("attributes ", ps
, depth
, &attr
->attributes
)) /* 0 - attributes (undocumented) */
277 if(!prs_uint32("ptr_sec_desc", ps
, depth
, &attr
->ptr_sec_desc
)) /* 0 - security descriptior (pointer) */
279 if(!prs_uint32("ptr_sec_qos ", ps
, depth
, &attr
->ptr_sec_qos
)) /* security quality of service (pointer) */
282 if (attr
->ptr_sec_qos
!= 0) {
283 if (UNMARSHALLING(ps
))
284 if (!(attr
->sec_qos
= PRS_ALLOC_MEM(ps
,LSA_SEC_QOS
,1)))
287 if(!lsa_io_sec_qos("sec_qos", attr
->sec_qos
, ps
, depth
))
295 /*******************************************************************
296 Inits an LSA_Q_OPEN_POL structure.
297 ********************************************************************/
299 void init_q_open_pol(LSA_Q_OPEN_POL
*in
, uint16 system_name
,
300 uint32 attributes
, uint32 desired_access
,
303 DEBUG(5, ("init_open_pol: attr:%d da:%d\n", attributes
,
306 in
->ptr
= 1; /* undocumented pointer */
308 in
->des_access
= desired_access
;
310 in
->system_name
= system_name
;
311 init_lsa_obj_attr(&in
->attr
, attributes
, qos
);
314 /*******************************************************************
315 Reads or writes an LSA_Q_OPEN_POL structure.
316 ********************************************************************/
318 BOOL
lsa_io_q_open_pol(const char *desc
, LSA_Q_OPEN_POL
*in
, prs_struct
*ps
,
321 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_pol");
324 if(!prs_uint32("ptr ", ps
, depth
, &in
->ptr
))
326 if(!prs_uint16("system_name", ps
, depth
, &in
->system_name
))
331 if(!lsa_io_obj_attr("", &in
->attr
, ps
, depth
))
334 if(!prs_uint32("des_access", ps
, depth
, &in
->des_access
))
340 /*******************************************************************
341 Reads or writes an LSA_R_OPEN_POL structure.
342 ********************************************************************/
344 BOOL
lsa_io_r_open_pol(const char *desc
, LSA_R_OPEN_POL
*out
, prs_struct
*ps
,
347 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_pol");
350 if(!smb_io_pol_hnd("", &out
->pol
, ps
, depth
))
353 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
359 /*******************************************************************
360 Inits an LSA_Q_OPEN_POL2 structure.
361 ********************************************************************/
363 void init_q_open_pol2(LSA_Q_OPEN_POL2
*in
, const char *server_name
,
364 uint32 attributes
, uint32 desired_access
,
367 DEBUG(5, ("init_q_open_pol2: attr:%d da:%d\n", attributes
,
370 in
->ptr
= 1; /* undocumented pointer */
372 in
->des_access
= desired_access
;
374 init_unistr2(&in
->uni_server_name
, server_name
, UNI_STR_TERMINATE
);
376 init_lsa_obj_attr(&in
->attr
, attributes
, qos
);
379 /*******************************************************************
380 Reads or writes an LSA_Q_OPEN_POL2 structure.
381 ********************************************************************/
383 BOOL
lsa_io_q_open_pol2(const char *desc
, LSA_Q_OPEN_POL2
*in
, prs_struct
*ps
,
386 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_pol2");
389 if(!prs_uint32("ptr ", ps
, depth
, &in
->ptr
))
392 if(!smb_io_unistr2 ("", &in
->uni_server_name
, in
->ptr
, ps
, depth
))
394 if(!lsa_io_obj_attr("", &in
->attr
, ps
, depth
))
397 if(!prs_uint32("des_access", ps
, depth
, &in
->des_access
))
403 /*******************************************************************
404 Reads or writes an LSA_R_OPEN_POL2 structure.
405 ********************************************************************/
407 BOOL
lsa_io_r_open_pol2(const char *desc
, LSA_R_OPEN_POL2
*out
, prs_struct
*ps
,
410 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_pol2");
413 if(!smb_io_pol_hnd("", &out
->pol
, ps
, depth
))
416 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
422 /*******************************************************************
423 makes an LSA_Q_QUERY_SEC_OBJ structure.
424 ********************************************************************/
426 void init_q_query_sec_obj(LSA_Q_QUERY_SEC_OBJ
*in
, const POLICY_HND
*hnd
,
429 DEBUG(5, ("init_q_query_sec_obj\n"));
432 in
->sec_info
= sec_info
;
437 /*******************************************************************
438 Reads or writes an LSA_Q_QUERY_SEC_OBJ structure.
439 ********************************************************************/
441 BOOL
lsa_io_q_query_sec_obj(const char *desc
, LSA_Q_QUERY_SEC_OBJ
*in
,
442 prs_struct
*ps
, int depth
)
444 prs_debug(ps
, depth
, desc
, "lsa_io_q_query_sec_obj");
447 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
450 if (!prs_uint32("sec_info", ps
, depth
, &in
->sec_info
))
456 /*******************************************************************
457 Reads or writes a LSA_R_QUERY_SEC_OBJ structure.
458 ********************************************************************/
460 BOOL
lsa_io_r_query_sec_obj(const char *desc
, LSA_R_QUERY_SEC_OBJ
*out
, prs_struct
*ps
, int depth
)
462 prs_debug(ps
, depth
, desc
, "lsa_io_r_query_sec_obj");
468 if (!prs_uint32("ptr", ps
, depth
, &out
->ptr
))
472 if (!sec_io_desc_buf("sec", &out
->buf
, ps
, depth
))
476 if (!prs_ntstatus("status", ps
, depth
, &out
->status
))
482 /*******************************************************************
483 Inits an LSA_Q_QUERY_INFO structure.
484 ********************************************************************/
486 void init_q_query(LSA_Q_QUERY_INFO
*in
, POLICY_HND
*hnd
, uint16 info_class
)
488 DEBUG(5, ("init_q_query\n"));
490 memcpy(&in
->pol
, hnd
, sizeof(in
->pol
));
492 in
->info_class
= info_class
;
495 /*******************************************************************
496 Reads or writes an LSA_Q_QUERY_INFO structure.
497 ********************************************************************/
499 BOOL
lsa_io_q_query(const char *desc
, LSA_Q_QUERY_INFO
*in
, prs_struct
*ps
,
502 prs_debug(ps
, depth
, desc
, "lsa_io_q_query");
505 if(!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
508 if(!prs_uint16("info_class", ps
, depth
, &in
->info_class
))
514 /*******************************************************************
515 makes an LSA_Q_ENUM_TRUST_DOM structure.
516 ********************************************************************/
517 BOOL
init_q_enum_trust_dom(LSA_Q_ENUM_TRUST_DOM
* q_e
, POLICY_HND
*pol
,
518 uint32 enum_context
, uint32 preferred_len
)
520 DEBUG(5, ("init_q_enum_trust_dom\n"));
523 q_e
->enum_context
= enum_context
;
524 q_e
->preferred_len
= preferred_len
;
529 /*******************************************************************
530 Reads or writes an LSA_Q_ENUM_TRUST_DOM structure.
531 ********************************************************************/
533 BOOL
lsa_io_q_enum_trust_dom(const char *desc
, LSA_Q_ENUM_TRUST_DOM
*q_e
,
534 prs_struct
*ps
, int depth
)
536 prs_debug(ps
, depth
, desc
, "lsa_io_q_enum_trust_dom");
539 if(!smb_io_pol_hnd("", &q_e
->pol
, ps
, depth
))
542 if(!prs_uint32("enum_context ", ps
, depth
, &q_e
->enum_context
))
544 if(!prs_uint32("preferred_len", ps
, depth
, &q_e
->preferred_len
))
550 /*******************************************************************
551 Inits an LSA_R_ENUM_TRUST_DOM structure.
552 ********************************************************************/
554 void init_r_enum_trust_dom(TALLOC_CTX
*ctx
, LSA_R_ENUM_TRUST_DOM
*out
,
555 uint32 enum_context
, uint32 num_domains
,
556 struct trustdom_info
**td
)
560 DEBUG(5, ("init_r_enum_trust_dom\n"));
562 out
->enum_context
= enum_context
;
563 out
->count
= num_domains
;
565 if ( num_domains
!= 0 ) {
567 /* allocate container memory */
569 out
->domlist
= TALLOC_P( ctx
, DOMAIN_LIST
);
571 if ( !out
->domlist
) {
572 out
->status
= NT_STATUS_NO_MEMORY
;
577 out
->domlist
->domains
= TALLOC_ARRAY( ctx
, DOMAIN_INFO
,
579 if ( !out
->domlist
->domains
) {
580 out
->status
= NT_STATUS_NO_MEMORY
;
584 out
->domlist
->domains
= NULL
;
587 out
->domlist
->count
= out
->count
;
589 /* initialize the list of domains and their sid */
591 for (i
= 0; i
< num_domains
; i
++) {
593 if ( !(out
->domlist
->domains
[i
].sid
=
594 TALLOC_P(ctx
, DOM_SID2
)) ) {
595 out
->status
= NT_STATUS_NO_MEMORY
;
599 init_dom_sid2(out
->domlist
->domains
[i
].sid
,
601 if (push_ucs2_talloc(ctx
, &name
, (td
[i
])->name
) == (size_t)-1){
602 out
->status
= NT_STATUS_NO_MEMORY
;
605 init_unistr4_w(ctx
, &out
->domlist
->domains
[i
].name
,
612 /*******************************************************************
613 ********************************************************************/
615 BOOL
lsa_io_domain_list( const char *desc
, prs_struct
*ps
, int depth
, DOMAIN_LIST
*domlist
)
619 prs_debug(ps
, depth
, desc
, "lsa_io_domain_list");
622 if(!prs_uint32("count", ps
, depth
, &domlist
->count
))
625 if ( domlist
->count
== 0 )
628 if ( UNMARSHALLING(ps
) ) {
629 if ( !(domlist
->domains
= PRS_ALLOC_MEM( ps
, DOMAIN_INFO
, domlist
->count
)) )
635 for ( i
=0; i
<domlist
->count
; i
++ ) {
636 if ( !prs_unistr4_hdr("name_header", ps
, depth
, &domlist
->domains
[i
].name
) )
638 if ( !smb_io_dom_sid2_p("sid_header", ps
, depth
, &domlist
->domains
[i
].sid
) )
644 for ( i
=0; i
<domlist
->count
; i
++ ) {
645 if ( !prs_unistr4_str("name", ps
, depth
, &domlist
->domains
[i
].name
) )
647 if( !smb_io_dom_sid2("sid", domlist
->domains
[i
].sid
, ps
, depth
) )
654 /*******************************************************************
655 Reads or writes an LSA_R_ENUM_TRUST_DOM structure.
656 ********************************************************************/
658 BOOL
lsa_io_r_enum_trust_dom(const char *desc
, LSA_R_ENUM_TRUST_DOM
*out
,
659 prs_struct
*ps
, int depth
)
661 prs_debug(ps
, depth
, desc
, "lsa_io_r_enum_trust_dom");
664 if(!prs_uint32("enum_context", ps
, depth
, &out
->enum_context
))
667 if(!prs_uint32("count", ps
, depth
, &out
->count
))
670 if ( !prs_pointer("trusted_domains", ps
, depth
, (void*)&out
->domlist
, sizeof(DOMAIN_LIST
), (PRS_POINTER_CAST
)lsa_io_domain_list
))
673 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
679 /*******************************************************************
680 reads or writes a structure.
681 ********************************************************************/
683 static BOOL
lsa_io_dom_query_1(const char *desc
, DOM_QUERY_1
*d_q
, prs_struct
*ps
, int depth
)
688 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_1");
694 if (!prs_uint32("percent_full", ps
, depth
, &d_q
->percent_full
))
696 if (!prs_uint32("log_size", ps
, depth
, &d_q
->log_size
))
698 if (!smb_io_nttime("retention_time", ps
, depth
, &d_q
->retention_time
))
700 if (!prs_uint8("shutdown_in_progress", ps
, depth
, &d_q
->shutdown_in_progress
))
702 if (!smb_io_nttime("time_to_shutdown", ps
, depth
, &d_q
->time_to_shutdown
))
704 if (!prs_uint32("next_audit_record", ps
, depth
, &d_q
->next_audit_record
))
706 if (!prs_uint32("unknown", ps
, depth
, &d_q
->unknown
))
712 /*******************************************************************
713 reads or writes a structure.
714 ********************************************************************/
716 static BOOL
lsa_io_dom_query_2(const char *desc
, DOM_QUERY_2
*d_q
, prs_struct
*ps
, int depth
)
721 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_2");
727 if (!prs_uint32("auditing_enabled", ps
, depth
, &d_q
->auditing_enabled
))
729 if (!prs_uint32("ptr ", ps
, depth
, &d_q
->ptr
))
731 if (!prs_uint32("count1", ps
, depth
, &d_q
->count1
))
736 if (!prs_uint32("count2", ps
, depth
, &d_q
->count2
))
739 if (d_q
->count1
!= d_q
->count2
)
742 if (UNMARSHALLING(ps
)) {
744 d_q
->auditsettings
= TALLOC_ZERO_ARRAY(ps
->mem_ctx
, uint32
, d_q
->count2
);
745 if (!d_q
->auditsettings
) {
749 d_q
->auditsettings
= NULL
;
753 if (!prs_uint32s(False
, "auditsettings", ps
, depth
, d_q
->auditsettings
, d_q
->count2
))
760 /*******************************************************************
761 reads or writes a dom query structure.
762 ********************************************************************/
764 static BOOL
lsa_io_dom_query_3(const char *desc
, DOM_QUERY_3
*d_q
, prs_struct
*ps
, int depth
)
769 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_3");
775 if(!prs_uint16("uni_dom_max_len", ps
, depth
, &d_q
->uni_dom_max_len
)) /* domain name string length * 2 */
777 if(!prs_uint16("uni_dom_str_len", ps
, depth
, &d_q
->uni_dom_str_len
)) /* domain name string length * 2 */
780 if(!prs_uint32("buffer_dom_name", ps
, depth
, &d_q
->buffer_dom_name
)) /* undocumented domain name string buffer pointer */
782 if(!prs_uint32("buffer_dom_sid ", ps
, depth
, &d_q
->buffer_dom_sid
)) /* undocumented domain SID string buffer pointer */
785 if(!smb_io_unistr2("unistr2", &d_q
->uni_domain_name
, d_q
->buffer_dom_name
, ps
, depth
)) /* domain name (unicode string) */
791 if (d_q
->buffer_dom_sid
!= 0) {
792 if(!smb_io_dom_sid2("", &d_q
->dom_sid
, ps
, depth
)) /* domain SID */
795 memset((char *)&d_q
->dom_sid
, '\0', sizeof(d_q
->dom_sid
));
801 /*******************************************************************
802 Reads or writes a dom query structure.
803 ********************************************************************/
805 static BOOL
lsa_io_dom_query_5(const char *desc
, DOM_QUERY_5
*d_q
, prs_struct
*ps
, int depth
)
807 return lsa_io_dom_query_3("", d_q
, ps
, depth
);
810 /*******************************************************************
811 Reads or writes a dom query structure.
812 ********************************************************************/
814 static BOOL
lsa_io_dom_query_6(const char *desc
, DOM_QUERY_6
*d_q
, prs_struct
*ps
, int depth
)
819 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_6");
822 if (!prs_uint16("server_role", ps
, depth
, &d_q
->server_role
))
828 /*******************************************************************
829 Reads or writes a dom query structure.
830 ********************************************************************/
832 static BOOL
lsa_io_dom_query_10(const char *desc
, DOM_QUERY_10
*d_q
, prs_struct
*ps
, int depth
)
837 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_10");
840 if (!prs_uint8("shutdown_on_full", ps
, depth
, &d_q
->shutdown_on_full
))
846 /*******************************************************************
847 Reads or writes a dom query structure.
848 ********************************************************************/
850 static BOOL
lsa_io_dom_query_11(const char *desc
, DOM_QUERY_11
*d_q
, prs_struct
*ps
, int depth
)
855 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_11");
858 if (!prs_uint16("unknown", ps
, depth
, &d_q
->unknown
))
860 if (!prs_uint8("shutdown_on_full", ps
, depth
, &d_q
->shutdown_on_full
))
862 if (!prs_uint8("log_is_full", ps
, depth
, &d_q
->log_is_full
))
868 /*******************************************************************
869 Reads or writes an LSA_DNS_DOM_INFO structure.
870 ********************************************************************/
872 BOOL
lsa_io_dom_query_12(const char *desc
, DOM_QUERY_12
*info
, prs_struct
*ps
, int depth
)
874 prs_debug(ps
, depth
, desc
, "lsa_io_dom_query_12");
879 if(!smb_io_unihdr("nb_name", &info
->hdr_nb_dom_name
, ps
, depth
))
881 if(!smb_io_unihdr("dns_name", &info
->hdr_dns_dom_name
, ps
, depth
))
883 if(!smb_io_unihdr("forest", &info
->hdr_forest_name
, ps
, depth
))
888 if ( !smb_io_uuid("dom_guid", &info
->dom_guid
, ps
, depth
) )
893 if(!prs_uint32("dom_sid", ps
, depth
, &info
->ptr_dom_sid
))
896 if(!smb_io_unistr2("nb_name", &info
->uni_nb_dom_name
,
897 info
->hdr_nb_dom_name
.buffer
, ps
, depth
))
899 if(!smb_io_unistr2("dns_name", &info
->uni_dns_dom_name
,
900 info
->hdr_dns_dom_name
.buffer
, ps
, depth
))
902 if(!smb_io_unistr2("forest", &info
->uni_forest_name
,
903 info
->hdr_forest_name
.buffer
, ps
, depth
))
906 if(!smb_io_dom_sid2("dom_sid", &info
->dom_sid
, ps
, depth
))
913 /*******************************************************************
914 Inits an LSA_Q_QUERY_INFO structure.
915 ********************************************************************/
917 void init_q_set(LSA_Q_SET_INFO
*in
, POLICY_HND
*hnd
, uint16 info_class
, LSA_INFO_CTR ctr
)
919 DEBUG(5,("init_q_set\n"));
921 in
->info_class
= info_class
;
926 in
->ctr
.info_class
= info_class
;
929 /*******************************************************************
930 reads or writes a structure.
931 ********************************************************************/
933 static BOOL
lsa_io_query_info_ctr2(const char *desc
, prs_struct
*ps
, int depth
, LSA_INFO_CTR2
*ctr
)
935 prs_debug(ps
, depth
, desc
, "lsa_io_query_info_ctr2");
938 if(!prs_uint16("info_class", ps
, depth
, &ctr
->info_class
))
941 switch (ctr
->info_class
) {
943 if(!lsa_io_dom_query_1("", &ctr
->info
.id1
, ps
, depth
))
947 if(!lsa_io_dom_query_2("", &ctr
->info
.id2
, ps
, depth
))
951 if(!lsa_io_dom_query_3("", &ctr
->info
.id3
, ps
, depth
))
955 if(!lsa_io_dom_query_5("", &ctr
->info
.id5
, ps
, depth
))
959 if(!lsa_io_dom_query_6("", &ctr
->info
.id6
, ps
, depth
))
963 if(!lsa_io_dom_query_10("", &ctr
->info
.id10
, ps
, depth
))
967 if(!lsa_io_dom_query_11("", &ctr
->info
.id11
, ps
, depth
))
971 if(!lsa_io_dom_query_12("", &ctr
->info
.id12
, ps
, depth
))
975 DEBUG(0,("invalid info_class: %d\n", ctr
->info_class
));
984 /*******************************************************************
985 reads or writes a structure.
986 ********************************************************************/
988 static BOOL
lsa_io_query_info_ctr(const char *desc
, prs_struct
*ps
, int depth
, LSA_INFO_CTR
*ctr
)
990 prs_debug(ps
, depth
, desc
, "lsa_io_query_info_ctr");
993 if(!prs_uint16("info_class", ps
, depth
, &ctr
->info_class
))
999 switch (ctr
->info_class
) {
1001 if(!lsa_io_dom_query_1("", &ctr
->info
.id1
, ps
, depth
))
1005 if(!lsa_io_dom_query_2("", &ctr
->info
.id2
, ps
, depth
))
1009 if(!lsa_io_dom_query_3("", &ctr
->info
.id3
, ps
, depth
))
1013 if(!lsa_io_dom_query_5("", &ctr
->info
.id5
, ps
, depth
))
1017 if(!lsa_io_dom_query_6("", &ctr
->info
.id6
, ps
, depth
))
1021 if(!lsa_io_dom_query_10("", &ctr
->info
.id10
, ps
, depth
))
1025 if(!lsa_io_dom_query_11("", &ctr
->info
.id11
, ps
, depth
))
1029 DEBUG(0,("invalid info_class: %d\n", ctr
->info_class
));
1037 /*******************************************************************
1038 Reads or writes an LSA_R_QUERY_INFO structure.
1039 ********************************************************************/
1041 BOOL
lsa_io_r_query(const char *desc
, LSA_R_QUERY_INFO
*out
, prs_struct
*ps
, int depth
)
1044 prs_debug(ps
, depth
, desc
, "lsa_io_r_query");
1050 if(!prs_uint32("dom_ptr", ps
, depth
, &out
->dom_ptr
))
1055 if(!lsa_io_query_info_ctr("", ps
, depth
, &out
->ctr
))
1062 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
1068 /*******************************************************************
1069 Reads or writes an LSA_Q_SET_INFO structure.
1070 ********************************************************************/
1072 BOOL
lsa_io_q_set(const char *desc
, LSA_Q_SET_INFO
*in
, prs_struct
*ps
,
1075 prs_debug(ps
, depth
, desc
, "lsa_io_q_set");
1081 if(!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
1084 if(!prs_uint16("info_class", ps
, depth
, &in
->info_class
))
1087 if(!lsa_io_query_info_ctr("", ps
, depth
, &in
->ctr
))
1093 /*******************************************************************
1094 Reads or writes an LSA_R_SET_INFO structure.
1095 ********************************************************************/
1097 BOOL
lsa_io_r_set(const char *desc
, LSA_R_SET_INFO
*out
, prs_struct
*ps
, int depth
)
1099 prs_debug(ps
, depth
, desc
, "lsa_io_r_set");
1105 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
1111 /*******************************************************************
1112 Inits a LSA_SID_ENUM structure.
1113 ********************************************************************/
1115 static void init_lsa_sid_enum(TALLOC_CTX
*mem_ctx
, LSA_SID_ENUM
*sen
,
1116 int num_entries
, const DOM_SID
*sids
)
1120 DEBUG(5, ("init_lsa_sid_enum\n"));
1122 sen
->num_entries
= num_entries
;
1123 sen
->ptr_sid_enum
= (num_entries
!= 0);
1124 sen
->num_entries2
= num_entries
;
1126 /* Allocate memory for sids and sid pointers */
1129 if ((sen
->ptr_sid
= TALLOC_ZERO_ARRAY(mem_ctx
, uint32
, num_entries
)) == NULL
) {
1130 DEBUG(3, ("init_lsa_sid_enum(): out of memory for ptr_sid\n"));
1134 if ((sen
->sid
= TALLOC_ZERO_ARRAY(mem_ctx
, DOM_SID2
, num_entries
)) == NULL
) {
1135 DEBUG(3, ("init_lsa_sid_enum(): out of memory for sids\n"));
1140 /* Copy across SIDs and SID pointers */
1142 for (i
= 0; i
< num_entries
; i
++) {
1143 sen
->ptr_sid
[i
] = 1;
1144 init_dom_sid2(&sen
->sid
[i
], &sids
[i
]);
1148 /*******************************************************************
1149 Reads or writes a LSA_SID_ENUM structure.
1150 ********************************************************************/
1152 static BOOL
lsa_io_sid_enum(const char *desc
, LSA_SID_ENUM
*sen
, prs_struct
*ps
,
1157 prs_debug(ps
, depth
, desc
, "lsa_io_sid_enum");
1163 if(!prs_uint32("num_entries ", ps
, depth
, &sen
->num_entries
))
1165 if(!prs_uint32("ptr_sid_enum", ps
, depth
, &sen
->ptr_sid_enum
))
1169 if the ptr is NULL, leave here. checked from a real w2k trace.
1173 if (sen
->ptr_sid_enum
==0)
1176 if(!prs_uint32("num_entries2", ps
, depth
, &sen
->num_entries2
))
1179 /* Mallocate memory if we're unpacking from the wire */
1181 if (UNMARSHALLING(ps
) && sen
->num_entries
) {
1182 if ((sen
->ptr_sid
= PRS_ALLOC_MEM( ps
, uint32
, sen
->num_entries
)) == NULL
) {
1183 DEBUG(3, ("init_lsa_sid_enum(): out of memory for "
1188 if ((sen
->sid
= PRS_ALLOC_MEM( ps
, DOM_SID2
, sen
->num_entries
)) == NULL
) {
1189 DEBUG(3, ("init_lsa_sid_enum(): out of memory for "
1195 for (i
= 0; i
< sen
->num_entries
; i
++) {
1198 slprintf(temp
, sizeof(temp
) - 1, "ptr_sid[%d]", i
);
1199 if(!prs_uint32(temp
, ps
, depth
, &sen
->ptr_sid
[i
])) {
1204 for (i
= 0; i
< sen
->num_entries
; i
++) {
1207 slprintf(temp
, sizeof(temp
) - 1, "sid[%d]", i
);
1208 if(!smb_io_dom_sid2(temp
, &sen
->sid
[i
], ps
, depth
)) {
1216 /*******************************************************************
1217 Inits an LSA_R_ENUM_TRUST_DOM structure.
1218 ********************************************************************/
1220 void init_q_lookup_sids(TALLOC_CTX
*mem_ctx
, LSA_Q_LOOKUP_SIDS
*q_l
,
1221 POLICY_HND
*hnd
, int num_sids
, const DOM_SID
*sids
,
1224 DEBUG(5, ("init_q_lookup_sids\n"));
1228 memcpy(&q_l
->pol
, hnd
, sizeof(q_l
->pol
));
1229 init_lsa_sid_enum(mem_ctx
, &q_l
->sids
, num_sids
, sids
);
1234 /*******************************************************************
1235 Reads or writes a LSA_Q_LOOKUP_SIDS structure.
1236 ********************************************************************/
1238 BOOL
lsa_io_q_lookup_sids(const char *desc
, LSA_Q_LOOKUP_SIDS
*q_s
, prs_struct
*ps
,
1241 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_sids");
1247 if(!smb_io_pol_hnd("pol_hnd", &q_s
->pol
, ps
, depth
)) /* policy handle */
1249 if(!lsa_io_sid_enum("sids ", &q_s
->sids
, ps
, depth
)) /* sids to be looked up */
1251 if(!lsa_io_trans_names("names ", &q_s
->names
, ps
, depth
)) /* translated names */
1254 if(!prs_uint16("level", ps
, depth
, &q_s
->level
)) /* lookup level */
1259 if(!prs_uint32("mapped_count", ps
, depth
, &q_s
->mapped_count
))
1265 /*******************************************************************
1266 Reads or writes a LSA_Q_LOOKUP_SIDS2 structure.
1267 ********************************************************************/
1269 BOOL
lsa_io_q_lookup_sids2(const char *desc
, LSA_Q_LOOKUP_SIDS2
*q_s
, prs_struct
*ps
,
1272 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_sids2");
1278 if(!smb_io_pol_hnd("pol_hnd", &q_s
->pol
, ps
, depth
)) /* policy handle */
1280 if(!lsa_io_sid_enum("sids ", &q_s
->sids
, ps
, depth
)) /* sids to be looked up */
1282 if(!lsa_io_trans_names2("names ", &q_s
->names
, ps
, depth
)) /* translated names */
1285 if(!prs_uint16("level", ps
, depth
, &q_s
->level
)) /* lookup level */
1290 if(!prs_uint32("mapped_count", ps
, depth
, &q_s
->mapped_count
))
1292 if(!prs_uint32("unknown1", ps
, depth
, &q_s
->unknown1
))
1294 if(!prs_uint32("unknown2", ps
, depth
, &q_s
->unknown2
))
1300 /*******************************************************************
1301 Reads or writes a LSA_Q_LOOKUP_SIDS3 structure.
1302 ********************************************************************/
1304 BOOL
lsa_io_q_lookup_sids3(const char *desc
, LSA_Q_LOOKUP_SIDS3
*q_s
, prs_struct
*ps
,
1307 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_sids3");
1313 if(!lsa_io_sid_enum("sids ", &q_s
->sids
, ps
, depth
)) /* sids to be looked up */
1315 if(!lsa_io_trans_names2("names ", &q_s
->names
, ps
, depth
)) /* translated names */
1318 if(!prs_uint16("level", ps
, depth
, &q_s
->level
)) /* lookup level */
1323 if(!prs_uint32("mapped_count", ps
, depth
, &q_s
->mapped_count
))
1325 if(!prs_uint32("unknown1", ps
, depth
, &q_s
->unknown1
))
1327 if(!prs_uint32("unknown2", ps
, depth
, &q_s
->unknown2
))
1334 /*******************************************************************
1335 Reads or writes a structure.
1336 ********************************************************************/
1338 static BOOL
lsa_io_trans_names(const char *desc
, LSA_TRANS_NAME_ENUM
*trn
,
1339 prs_struct
*ps
, int depth
)
1343 prs_debug(ps
, depth
, desc
, "lsa_io_trans_names");
1349 if(!prs_uint32("num_entries ", ps
, depth
, &trn
->num_entries
))
1351 if(!prs_uint32("ptr_trans_names", ps
, depth
, &trn
->ptr_trans_names
))
1354 if (trn
->ptr_trans_names
!= 0) {
1355 if(!prs_uint32("num_entries2 ", ps
, depth
,
1356 &trn
->num_entries2
))
1359 if (trn
->num_entries2
!= trn
->num_entries
) {
1364 if (UNMARSHALLING(ps
) && trn
->num_entries2
) {
1365 if ((trn
->name
= PRS_ALLOC_MEM(ps
, LSA_TRANS_NAME
, trn
->num_entries2
)) == NULL
) {
1369 if ((trn
->uni_name
= PRS_ALLOC_MEM(ps
, UNISTR2
, trn
->num_entries2
)) == NULL
) {
1374 for (i
= 0; i
< trn
->num_entries2
; i
++) {
1376 slprintf(t
, sizeof(t
) - 1, "name[%d] ", i
);
1378 if(!lsa_io_trans_name(t
, &trn
->name
[i
], ps
, depth
)) /* translated name */
1382 for (i
= 0; i
< trn
->num_entries2
; i
++) {
1384 slprintf(t
, sizeof(t
) - 1, "name[%d] ", i
);
1386 if(!smb_io_unistr2(t
, &trn
->uni_name
[i
], trn
->name
[i
].hdr_name
.buffer
, ps
, depth
))
1396 /*******************************************************************
1397 Reads or writes a structure.
1398 ********************************************************************/
1400 static BOOL
lsa_io_trans_names2(const char *desc
, LSA_TRANS_NAME_ENUM2
*trn
,
1401 prs_struct
*ps
, int depth
)
1405 prs_debug(ps
, depth
, desc
, "lsa_io_trans_names2");
1411 if(!prs_uint32("num_entries ", ps
, depth
, &trn
->num_entries
))
1413 if(!prs_uint32("ptr_trans_names", ps
, depth
, &trn
->ptr_trans_names
))
1416 if (trn
->ptr_trans_names
!= 0) {
1417 if(!prs_uint32("num_entries2 ", ps
, depth
,
1418 &trn
->num_entries2
))
1421 if (trn
->num_entries2
!= trn
->num_entries
) {
1426 if (UNMARSHALLING(ps
) && trn
->num_entries2
) {
1427 if ((trn
->name
= PRS_ALLOC_MEM(ps
, LSA_TRANS_NAME2
, trn
->num_entries2
)) == NULL
) {
1431 if ((trn
->uni_name
= PRS_ALLOC_MEM(ps
, UNISTR2
, trn
->num_entries2
)) == NULL
) {
1436 for (i
= 0; i
< trn
->num_entries2
; i
++) {
1438 slprintf(t
, sizeof(t
) - 1, "name[%d] ", i
);
1440 if(!lsa_io_trans_name2(t
, &trn
->name
[i
], ps
, depth
)) /* translated name */
1444 for (i
= 0; i
< trn
->num_entries2
; i
++) {
1446 slprintf(t
, sizeof(t
) - 1, "name[%d] ", i
);
1448 if(!smb_io_unistr2(t
, &trn
->uni_name
[i
], trn
->name
[i
].hdr_name
.buffer
, ps
, depth
))
1459 /*******************************************************************
1460 Reads or writes a structure.
1461 ********************************************************************/
1463 BOOL
lsa_io_r_lookup_sids(const char *desc
, LSA_R_LOOKUP_SIDS
*r_s
,
1464 prs_struct
*ps
, int depth
)
1466 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_sids");
1472 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &r_s
->ptr_dom_ref
))
1475 if (r_s
->ptr_dom_ref
!= 0)
1476 if(!lsa_io_dom_r_ref ("dom_ref", r_s
->dom_ref
, ps
, depth
)) /* domain reference info */
1479 if(!lsa_io_trans_names("names ", r_s
->names
, ps
, depth
)) /* translated names */
1485 if(!prs_uint32("mapped_count", ps
, depth
, &r_s
->mapped_count
))
1488 if(!prs_ntstatus("status ", ps
, depth
, &r_s
->status
))
1494 /*******************************************************************
1495 Reads or writes a structure.
1496 ********************************************************************/
1498 BOOL
lsa_io_r_lookup_sids2(const char *desc
, LSA_R_LOOKUP_SIDS2
*r_s
,
1499 prs_struct
*ps
, int depth
)
1501 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_sids2");
1507 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &r_s
->ptr_dom_ref
))
1510 if (r_s
->ptr_dom_ref
!= 0)
1511 if(!lsa_io_dom_r_ref ("dom_ref", r_s
->dom_ref
, ps
, depth
)) /* domain reference info */
1514 if(!lsa_io_trans_names2("names ", r_s
->names
, ps
, depth
)) /* translated names */
1520 if(!prs_uint32("mapped_count", ps
, depth
, &r_s
->mapped_count
))
1523 if(!prs_ntstatus("status ", ps
, depth
, &r_s
->status
))
1530 /*******************************************************************
1531 Reads or writes a structure.
1532 ********************************************************************/
1534 BOOL
lsa_io_r_lookup_sids3(const char *desc
, LSA_R_LOOKUP_SIDS3
*r_s
,
1535 prs_struct
*ps
, int depth
)
1537 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_sids3");
1543 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &r_s
->ptr_dom_ref
))
1546 if (r_s
->ptr_dom_ref
!= 0)
1547 if(!lsa_io_dom_r_ref ("dom_ref", r_s
->dom_ref
, ps
, depth
)) /* domain reference info */
1550 if(!lsa_io_trans_names2("names ", r_s
->names
, ps
, depth
)) /* translated names */
1556 if(!prs_uint32("mapped_count", ps
, depth
, &r_s
->mapped_count
))
1559 if(!prs_ntstatus("status ", ps
, depth
, &r_s
->status
))
1565 /*******************************************************************
1567 ********************************************************************/
1569 void init_q_lookup_names(TALLOC_CTX
*mem_ctx
, LSA_Q_LOOKUP_NAMES
*q_l
,
1570 POLICY_HND
*hnd
, int num_names
, const char **names
)
1574 DEBUG(5, ("init_q_lookup_names\n"));
1579 q_l
->num_entries
= num_names
;
1580 q_l
->num_entries2
= num_names
;
1581 q_l
->lookup_level
= 1;
1584 if ((q_l
->uni_name
= TALLOC_ZERO_ARRAY(mem_ctx
, UNISTR2
, num_names
)) == NULL
) {
1585 DEBUG(3, ("init_q_lookup_names(): out of memory\n"));
1589 if ((q_l
->hdr_name
= TALLOC_ZERO_ARRAY(mem_ctx
, UNIHDR
, num_names
)) == NULL
) {
1590 DEBUG(3, ("init_q_lookup_names(): out of memory\n"));
1594 q_l
->uni_name
= NULL
;
1595 q_l
->hdr_name
= NULL
;
1598 for (i
= 0; i
< num_names
; i
++) {
1599 init_unistr2(&q_l
->uni_name
[i
], names
[i
], UNI_FLAGS_NONE
);
1600 init_uni_hdr(&q_l
->hdr_name
[i
], &q_l
->uni_name
[i
]);
1604 /*******************************************************************
1605 reads or writes a structure.
1606 ********************************************************************/
1608 BOOL
lsa_io_q_lookup_names(const char *desc
, LSA_Q_LOOKUP_NAMES
*q_r
,
1609 prs_struct
*ps
, int depth
)
1613 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_names");
1619 if(!smb_io_pol_hnd("", &q_r
->pol
, ps
, depth
)) /* policy handle */
1624 if(!prs_uint32("num_entries ", ps
, depth
, &q_r
->num_entries
))
1626 if(!prs_uint32("num_entries2 ", ps
, depth
, &q_r
->num_entries2
))
1629 if (UNMARSHALLING(ps
)) {
1630 if (q_r
->num_entries
) {
1631 if ((q_r
->hdr_name
= PRS_ALLOC_MEM(ps
, UNIHDR
, q_r
->num_entries
)) == NULL
)
1633 if ((q_r
->uni_name
= PRS_ALLOC_MEM(ps
, UNISTR2
, q_r
->num_entries
)) == NULL
)
1638 for (i
= 0; i
< q_r
->num_entries
; i
++) {
1641 if(!smb_io_unihdr("hdr_name", &q_r
->hdr_name
[i
], ps
, depth
)) /* pointer names */
1645 for (i
= 0; i
< q_r
->num_entries
; i
++) {
1648 if(!smb_io_unistr2("dom_name", &q_r
->uni_name
[i
], q_r
->hdr_name
[i
].buffer
, ps
, depth
)) /* names to be looked up */
1654 if(!prs_uint32("num_trans_entries ", ps
, depth
, &q_r
->num_trans_entries
))
1656 if(!prs_uint32("ptr_trans_sids ", ps
, depth
, &q_r
->ptr_trans_sids
))
1658 if(!prs_uint16("lookup_level ", ps
, depth
, &q_r
->lookup_level
))
1662 if(!prs_uint32("mapped_count ", ps
, depth
, &q_r
->mapped_count
))
1668 /*******************************************************************
1669 reads or writes a structure.
1670 ********************************************************************/
1672 BOOL
lsa_io_r_lookup_names(const char *desc
, LSA_R_LOOKUP_NAMES
*out
, prs_struct
*ps
, int depth
)
1676 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_names");
1682 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &out
->ptr_dom_ref
))
1685 if (out
->ptr_dom_ref
!= 0)
1686 if(!lsa_io_dom_r_ref("", out
->dom_ref
, ps
, depth
))
1689 if(!prs_uint32("num_entries", ps
, depth
, &out
->num_entries
))
1691 if(!prs_uint32("ptr_entries", ps
, depth
, &out
->ptr_entries
))
1694 if (out
->ptr_entries
!= 0) {
1695 if(!prs_uint32("num_entries2", ps
, depth
, &out
->num_entries2
))
1698 if (out
->num_entries2
!= out
->num_entries
) {
1703 if (UNMARSHALLING(ps
) && out
->num_entries2
) {
1704 if ((out
->dom_rid
= PRS_ALLOC_MEM(ps
, DOM_RID
, out
->num_entries2
))
1706 DEBUG(3, ("lsa_io_r_lookup_names(): out of memory\n"));
1711 for (i
= 0; i
< out
->num_entries2
; i
++)
1712 if(!smb_io_dom_rid("", &out
->dom_rid
[i
], ps
, depth
)) /* domain RIDs being looked up */
1716 if(!prs_uint32("mapped_count", ps
, depth
, &out
->mapped_count
))
1719 if(!prs_ntstatus("status ", ps
, depth
, &out
->status
))
1725 /*******************************************************************
1726 reads or writes a structure.
1727 ********************************************************************/
1729 BOOL
lsa_io_q_lookup_names2(const char *desc
, LSA_Q_LOOKUP_NAMES2
*q_r
,
1730 prs_struct
*ps
, int depth
)
1734 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_names2");
1740 if(!smb_io_pol_hnd("", &q_r
->pol
, ps
, depth
)) /* policy handle */
1745 if(!prs_uint32("num_entries ", ps
, depth
, &q_r
->num_entries
))
1747 if(!prs_uint32("num_entries2 ", ps
, depth
, &q_r
->num_entries2
))
1750 if (UNMARSHALLING(ps
)) {
1751 if (q_r
->num_entries
) {
1752 if ((q_r
->hdr_name
= PRS_ALLOC_MEM(ps
, UNIHDR
, q_r
->num_entries
)) == NULL
)
1754 if ((q_r
->uni_name
= PRS_ALLOC_MEM(ps
, UNISTR2
, q_r
->num_entries
)) == NULL
)
1759 for (i
= 0; i
< q_r
->num_entries
; i
++) {
1762 if(!smb_io_unihdr("hdr_name", &q_r
->hdr_name
[i
], ps
, depth
)) /* pointer names */
1766 for (i
= 0; i
< q_r
->num_entries
; i
++) {
1769 if(!smb_io_unistr2("dom_name", &q_r
->uni_name
[i
], q_r
->hdr_name
[i
].buffer
, ps
, depth
)) /* names to be looked up */
1775 if(!prs_uint32("num_trans_entries ", ps
, depth
, &q_r
->num_trans_entries
))
1777 if(!prs_uint32("ptr_trans_sids ", ps
, depth
, &q_r
->ptr_trans_sids
))
1779 if(!prs_uint16("lookup_level ", ps
, depth
, &q_r
->lookup_level
))
1783 if(!prs_uint32("mapped_count ", ps
, depth
, &q_r
->mapped_count
))
1785 if(!prs_uint32("unknown1 ", ps
, depth
, &q_r
->unknown1
))
1787 if(!prs_uint32("unknown2 ", ps
, depth
, &q_r
->unknown2
))
1793 /*******************************************************************
1794 reads or writes a structure.
1795 ********************************************************************/
1797 BOOL
lsa_io_r_lookup_names2(const char *desc
, LSA_R_LOOKUP_NAMES2
*out
, prs_struct
*ps
, int depth
)
1801 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_names2");
1807 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &out
->ptr_dom_ref
))
1810 if (out
->ptr_dom_ref
!= 0)
1811 if(!lsa_io_dom_r_ref("", out
->dom_ref
, ps
, depth
))
1814 if(!prs_uint32("num_entries", ps
, depth
, &out
->num_entries
))
1816 if(!prs_uint32("ptr_entries", ps
, depth
, &out
->ptr_entries
))
1819 if (out
->ptr_entries
!= 0) {
1820 if(!prs_uint32("num_entries2", ps
, depth
, &out
->num_entries2
))
1823 if (out
->num_entries2
!= out
->num_entries
) {
1828 if (UNMARSHALLING(ps
) && out
->num_entries2
) {
1829 if ((out
->dom_rid
= PRS_ALLOC_MEM(ps
, DOM_RID2
, out
->num_entries2
))
1831 DEBUG(3, ("lsa_io_r_lookup_names2(): out of memory\n"));
1836 for (i
= 0; i
< out
->num_entries2
; i
++)
1837 if(!smb_io_dom_rid2("", &out
->dom_rid
[i
], ps
, depth
)) /* domain RIDs being looked up */
1841 if(!prs_uint32("mapped_count", ps
, depth
, &out
->mapped_count
))
1844 if(!prs_ntstatus("status ", ps
, depth
, &out
->status
))
1850 /*******************************************************************
1851 Internal lsa data type io.
1852 Following pass must read DOM_SID2 types.
1853 ********************************************************************/
1855 BOOL
smb_io_lsa_translated_sids3(const char *desc
, LSA_TRANSLATED_SID3
*q_r
,
1856 prs_struct
*ps
, int depth
)
1858 prs_debug(ps
, depth
, desc
, "smb_io_lsa_translated_sids3");
1863 if(!prs_uint8 ("sid_type ", ps
, depth
, &q_r
->sid_type
))
1867 /* Second pass will read/write these. */
1868 if (!smb_io_dom_sid2_p("sid_header", ps
, depth
, &q_r
->sid2
))
1870 if(!prs_uint32("sid_idx ", ps
, depth
, &q_r
->sid_idx
))
1872 if(!prs_uint32("unknown ", ps
, depth
, &q_r
->unknown
))
1878 /*******************************************************************
1879 Identical to lsa_io_q_lookup_names2.
1880 ********************************************************************/
1882 BOOL
lsa_io_q_lookup_names3(const char *desc
, LSA_Q_LOOKUP_NAMES3
*q_r
,
1883 prs_struct
*ps
, int depth
)
1887 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_names3");
1893 if(!smb_io_pol_hnd("", &q_r
->pol
, ps
, depth
)) /* policy handle */
1898 if(!prs_uint32("num_entries ", ps
, depth
, &q_r
->num_entries
))
1900 if(!prs_uint32("num_entries2 ", ps
, depth
, &q_r
->num_entries2
))
1903 if (UNMARSHALLING(ps
)) {
1904 if (q_r
->num_entries
) {
1905 if ((q_r
->hdr_name
= PRS_ALLOC_MEM(ps
, UNIHDR
, q_r
->num_entries
)) == NULL
)
1907 if ((q_r
->uni_name
= PRS_ALLOC_MEM(ps
, UNISTR2
, q_r
->num_entries
)) == NULL
)
1912 for (i
= 0; i
< q_r
->num_entries
; i
++) {
1915 if(!smb_io_unihdr("hdr_name", &q_r
->hdr_name
[i
], ps
, depth
)) /* pointer names */
1919 for (i
= 0; i
< q_r
->num_entries
; i
++) {
1922 if(!smb_io_unistr2("dom_name", &q_r
->uni_name
[i
], q_r
->hdr_name
[i
].buffer
, ps
, depth
)) /* names to be looked up */
1928 if(!prs_uint32("num_trans_entries ", ps
, depth
, &q_r
->num_trans_entries
))
1930 if(!prs_uint32("ptr_trans_sids ", ps
, depth
, &q_r
->ptr_trans_sids
))
1932 if(!prs_uint16("lookup_level ", ps
, depth
, &q_r
->lookup_level
))
1936 if(!prs_uint32("mapped_count ", ps
, depth
, &q_r
->mapped_count
))
1938 if(!prs_uint32("unknown1 ", ps
, depth
, &q_r
->unknown1
))
1940 if(!prs_uint32("unknown2 ", ps
, depth
, &q_r
->unknown2
))
1946 /*******************************************************************
1947 reads or writes a structure.
1948 ********************************************************************/
1950 BOOL
lsa_io_r_lookup_names3(const char *desc
, LSA_R_LOOKUP_NAMES3
*out
, prs_struct
*ps
, int depth
)
1954 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_names3");
1960 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &out
->ptr_dom_ref
))
1963 if (out
->ptr_dom_ref
!= 0)
1964 if(!lsa_io_dom_r_ref("", out
->dom_ref
, ps
, depth
))
1967 if(!prs_uint32("num_entries", ps
, depth
, &out
->num_entries
))
1969 if(!prs_uint32("ptr_entries", ps
, depth
, &out
->ptr_entries
))
1972 if (out
->ptr_entries
!= 0) {
1973 if(!prs_uint32("num_entries2", ps
, depth
, &out
->num_entries2
))
1976 if (out
->num_entries2
!= out
->num_entries
) {
1981 if (UNMARSHALLING(ps
) && out
->num_entries2
) {
1982 if ((out
->trans_sids
= PRS_ALLOC_MEM(ps
, LSA_TRANSLATED_SID3
, out
->num_entries2
))
1984 DEBUG(3, ("lsa_io_r_lookup_names3(): out of memory\n"));
1989 for (i
= 0; i
< out
->num_entries2
; i
++) {
1990 if(!smb_io_lsa_translated_sids3("", &out
->trans_sids
[i
], ps
, depth
)) {
1994 /* Now process the DOM_SID2 entries. */
1995 for (i
= 0; i
< out
->num_entries2
; i
++) {
1996 if (out
->trans_sids
[i
].sid2
) {
1997 if( !smb_io_dom_sid2("sid2", out
->trans_sids
[i
].sid2
, ps
, depth
) ) {
2004 if(!prs_uint32("mapped_count", ps
, depth
, &out
->mapped_count
))
2007 if(!prs_ntstatus("status ", ps
, depth
, &out
->status
))
2013 /*******************************************************************
2014 ********************************************************************/
2016 BOOL
lsa_io_q_lookup_names4(const char *desc
, LSA_Q_LOOKUP_NAMES4
*q_r
,
2017 prs_struct
*ps
, int depth
)
2021 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_names4");
2027 if(!prs_uint32("num_entries ", ps
, depth
, &q_r
->num_entries
))
2029 if(!prs_uint32("num_entries2 ", ps
, depth
, &q_r
->num_entries2
))
2032 if (UNMARSHALLING(ps
)) {
2033 if (q_r
->num_entries
) {
2034 if ((q_r
->hdr_name
= PRS_ALLOC_MEM(ps
, UNIHDR
, q_r
->num_entries
)) == NULL
)
2036 if ((q_r
->uni_name
= PRS_ALLOC_MEM(ps
, UNISTR2
, q_r
->num_entries
)) == NULL
)
2041 for (i
= 0; i
< q_r
->num_entries
; i
++) {
2044 if(!smb_io_unihdr("hdr_name", &q_r
->hdr_name
[i
], ps
, depth
)) /* pointer names */
2048 for (i
= 0; i
< q_r
->num_entries
; i
++) {
2051 if(!smb_io_unistr2("dom_name", &q_r
->uni_name
[i
], q_r
->hdr_name
[i
].buffer
, ps
, depth
)) /* names to be looked up */
2057 if(!prs_uint32("num_trans_entries ", ps
, depth
, &q_r
->num_trans_entries
))
2059 if(!prs_uint32("ptr_trans_sids ", ps
, depth
, &q_r
->ptr_trans_sids
))
2061 if(!prs_uint16("lookup_level ", ps
, depth
, &q_r
->lookup_level
))
2065 if(!prs_uint32("mapped_count ", ps
, depth
, &q_r
->mapped_count
))
2067 if(!prs_uint32("unknown1 ", ps
, depth
, &q_r
->unknown1
))
2069 if(!prs_uint32("unknown2 ", ps
, depth
, &q_r
->unknown2
))
2075 /*******************************************************************
2076 Identical to lsa_io_r_lookup_names3.
2077 ********************************************************************/
2079 BOOL
lsa_io_r_lookup_names4(const char *desc
, LSA_R_LOOKUP_NAMES4
*out
, prs_struct
*ps
, int depth
)
2083 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_names4");
2089 if(!prs_uint32("ptr_dom_ref", ps
, depth
, &out
->ptr_dom_ref
))
2092 if (out
->ptr_dom_ref
!= 0)
2093 if(!lsa_io_dom_r_ref("", out
->dom_ref
, ps
, depth
))
2096 if(!prs_uint32("num_entries", ps
, depth
, &out
->num_entries
))
2098 if(!prs_uint32("ptr_entries", ps
, depth
, &out
->ptr_entries
))
2101 if (out
->ptr_entries
!= 0) {
2102 if(!prs_uint32("num_entries2", ps
, depth
, &out
->num_entries2
))
2105 if (out
->num_entries2
!= out
->num_entries
) {
2110 if (UNMARSHALLING(ps
) && out
->num_entries2
) {
2111 if ((out
->trans_sids
= PRS_ALLOC_MEM(ps
, LSA_TRANSLATED_SID3
, out
->num_entries2
))
2113 DEBUG(3, ("lsa_io_r_lookup_names4(): out of memory\n"));
2118 for (i
= 0; i
< out
->num_entries2
; i
++) {
2119 if(!smb_io_lsa_translated_sids3("", &out
->trans_sids
[i
], ps
, depth
)) {
2123 /* Now process the DOM_SID2 entries. */
2124 for (i
= 0; i
< out
->num_entries2
; i
++) {
2125 if (out
->trans_sids
[i
].sid2
) {
2126 if( !smb_io_dom_sid2("sid2", out
->trans_sids
[i
].sid2
, ps
, depth
) ) {
2133 if(!prs_uint32("mapped_count", ps
, depth
, &out
->mapped_count
))
2136 if(!prs_ntstatus("status ", ps
, depth
, &out
->status
))
2142 /*******************************************************************
2143 Inits an LSA_Q_CLOSE structure.
2144 ********************************************************************/
2146 void init_lsa_q_close(LSA_Q_CLOSE
*in
, POLICY_HND
*hnd
)
2148 DEBUG(5, ("init_lsa_q_close\n"));
2150 memcpy(&in
->pol
, hnd
, sizeof(in
->pol
));
2153 /*******************************************************************
2154 Reads or writes an LSA_Q_CLOSE structure.
2155 ********************************************************************/
2157 BOOL
lsa_io_q_close(const char *desc
, LSA_Q_CLOSE
*in
, prs_struct
*ps
, int depth
)
2159 prs_debug(ps
, depth
, desc
, "lsa_io_q_close");
2162 if(!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
2168 /*******************************************************************
2169 Reads or writes an LSA_R_CLOSE structure.
2170 ********************************************************************/
2172 BOOL
lsa_io_r_close(const char *desc
, LSA_R_CLOSE
*out
, prs_struct
*ps
, int depth
)
2174 prs_debug(ps
, depth
, desc
, "lsa_io_r_close");
2177 if(!smb_io_pol_hnd("", &out
->pol
, ps
, depth
))
2180 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2186 /*******************************************************************
2187 Reads or writes an LSA_Q_OPEN_SECRET structure.
2188 ********************************************************************/
2190 BOOL
lsa_io_q_open_secret(const char *desc
, LSA_Q_OPEN_SECRET
*in
, prs_struct
*ps
, int depth
)
2192 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_secret");
2198 if(!smb_io_pol_hnd("", &in
->handle
, ps
, depth
))
2201 if(!prs_unistr4 ("secretname", ps
, depth
, &in
->secretname
))
2206 if(!prs_uint32("access", ps
, depth
, &in
->access
))
2212 /*******************************************************************
2213 Reads or writes an LSA_R_OPEN_SECRET structure.
2214 ********************************************************************/
2216 BOOL
lsa_io_r_open_secret(const char *desc
, LSA_R_OPEN_SECRET
*out
, prs_struct
*ps
, int depth
)
2218 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_secret");
2224 if(!smb_io_pol_hnd("", &out
->handle
, ps
, depth
))
2227 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2233 /*******************************************************************
2234 Inits an LSA_Q_ENUM_PRIVS structure.
2235 ********************************************************************/
2237 void init_q_enum_privs(LSA_Q_ENUM_PRIVS
*in
, POLICY_HND
*hnd
, uint32 enum_context
, uint32 pref_max_length
)
2239 DEBUG(5, ("init_q_enum_privs\n"));
2241 memcpy(&in
->pol
, hnd
, sizeof(in
->pol
));
2243 in
->enum_context
= enum_context
;
2244 in
->pref_max_length
= pref_max_length
;
2247 /*******************************************************************
2248 reads or writes a structure.
2249 ********************************************************************/
2250 BOOL
lsa_io_q_enum_privs(const char *desc
, LSA_Q_ENUM_PRIVS
*in
, prs_struct
*ps
, int depth
)
2255 prs_debug(ps
, depth
, desc
, "lsa_io_q_enum_privs");
2258 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
2261 if(!prs_uint32("enum_context ", ps
, depth
, &in
->enum_context
))
2263 if(!prs_uint32("pref_max_length", ps
, depth
, &in
->pref_max_length
))
2269 /*******************************************************************
2270 reads or writes a structure.
2271 ********************************************************************/
2272 static BOOL
lsa_io_priv_entries(const char *desc
, LSA_PRIV_ENTRY
*entries
, uint32 count
, prs_struct
*ps
, int depth
)
2276 if (entries
== NULL
)
2279 prs_debug(ps
, depth
, desc
, "lsa_io_priv_entries");
2285 for (i
= 0; i
< count
; i
++) {
2286 if (!smb_io_unihdr("", &entries
[i
].hdr_name
, ps
, depth
))
2288 if(!prs_uint32("luid_low ", ps
, depth
, &entries
[i
].luid_low
))
2290 if(!prs_uint32("luid_high", ps
, depth
, &entries
[i
].luid_high
))
2294 for (i
= 0; i
< count
; i
++)
2295 if (!smb_io_unistr2("", &entries
[i
].name
, entries
[i
].hdr_name
.buffer
, ps
, depth
))
2301 /*******************************************************************
2302 Inits an LSA_R_ENUM_PRIVS structure.
2303 ********************************************************************/
2305 void init_lsa_r_enum_privs(LSA_R_ENUM_PRIVS
*out
, uint32 enum_context
,
2306 uint32 count
, LSA_PRIV_ENTRY
*entries
)
2308 DEBUG(5, ("init_lsa_r_enum_privs\n"));
2310 out
->enum_context
=enum_context
;
2313 if (entries
!=NULL
) {
2324 /*******************************************************************
2325 reads or writes a structure.
2326 ********************************************************************/
2327 BOOL
lsa_io_r_enum_privs(const char *desc
, LSA_R_ENUM_PRIVS
*out
, prs_struct
*ps
, int depth
)
2332 prs_debug(ps
, depth
, desc
, "lsa_io_r_enum_privs");
2338 if(!prs_uint32("enum_context", ps
, depth
, &out
->enum_context
))
2340 if(!prs_uint32("count", ps
, depth
, &out
->count
))
2342 if(!prs_uint32("ptr", ps
, depth
, &out
->ptr
))
2346 if(!prs_uint32("count1", ps
, depth
, &out
->count1
))
2349 if (UNMARSHALLING(ps
) && out
->count1
)
2350 if (!(out
->privs
= PRS_ALLOC_MEM(ps
, LSA_PRIV_ENTRY
, out
->count1
)))
2353 if (!lsa_io_priv_entries("", out
->privs
, out
->count1
, ps
, depth
))
2360 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2366 void init_lsa_priv_get_dispname(LSA_Q_PRIV_GET_DISPNAME
*trn
, POLICY_HND
*hnd
, const char *name
, uint16 lang_id
, uint16 lang_id_sys
)
2368 memcpy(&trn
->pol
, hnd
, sizeof(trn
->pol
));
2370 init_unistr2(&trn
->name
, name
, UNI_FLAGS_NONE
);
2371 init_uni_hdr(&trn
->hdr_name
, &trn
->name
);
2372 trn
->lang_id
= lang_id
;
2373 trn
->lang_id_sys
= lang_id_sys
;
2376 /*******************************************************************
2377 reads or writes a structure.
2378 ********************************************************************/
2379 BOOL
lsa_io_q_priv_get_dispname(const char *desc
, LSA_Q_PRIV_GET_DISPNAME
*in
, prs_struct
*ps
, int depth
)
2384 prs_debug(ps
, depth
, desc
, "lsa_io_q_priv_get_dispname");
2390 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
2393 if (!smb_io_unihdr("hdr_name", &in
->hdr_name
, ps
, depth
))
2396 if (!smb_io_unistr2("name", &in
->name
, in
->hdr_name
.buffer
, ps
, depth
))
2399 if(!prs_uint16("lang_id ", ps
, depth
, &in
->lang_id
))
2401 if(!prs_uint16("lang_id_sys", ps
, depth
, &in
->lang_id_sys
))
2407 /*******************************************************************
2408 reads or writes a structure.
2409 ********************************************************************/
2410 BOOL
lsa_io_r_priv_get_dispname(const char *desc
, LSA_R_PRIV_GET_DISPNAME
*out
, prs_struct
*ps
, int depth
)
2415 prs_debug(ps
, depth
, desc
, "lsa_io_r_priv_get_dispname");
2421 if (!prs_uint32("ptr_info", ps
, depth
, &out
->ptr_info
))
2425 if (!smb_io_unihdr("hdr_name", &out
->hdr_desc
, ps
, depth
))
2428 if (!smb_io_unistr2("desc", &out
->desc
, out
->hdr_desc
.buffer
, ps
, depth
))
2435 if(!prs_uint16("lang_id", ps
, depth
, &out
->lang_id
))
2440 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2447 initialise a LSA_Q_ENUM_ACCOUNTS structure
2449 void init_lsa_q_enum_accounts(LSA_Q_ENUM_ACCOUNTS
*trn
, POLICY_HND
*hnd
, uint32 enum_context
, uint32 pref_max_length
)
2451 memcpy(&trn
->pol
, hnd
, sizeof(trn
->pol
));
2453 trn
->enum_context
= enum_context
;
2454 trn
->pref_max_length
= pref_max_length
;
2457 /*******************************************************************
2458 reads or writes a structure.
2459 ********************************************************************/
2460 BOOL
lsa_io_q_enum_accounts(const char *desc
, LSA_Q_ENUM_ACCOUNTS
*in
, prs_struct
*ps
, int depth
)
2465 prs_debug(ps
, depth
, desc
, "lsa_io_q_enum_accounts");
2468 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
2471 if(!prs_uint32("enum_context ", ps
, depth
, &in
->enum_context
))
2473 if(!prs_uint32("pref_max_length", ps
, depth
, &in
->pref_max_length
))
2480 /*******************************************************************
2481 Inits an LSA_R_ENUM_PRIVS structure.
2482 ********************************************************************/
2484 void init_lsa_r_enum_accounts(LSA_R_ENUM_ACCOUNTS
*out
, uint32 enum_context
)
2486 DEBUG(5, ("init_lsa_r_enum_accounts\n"));
2488 out
->enum_context
=enum_context
;
2489 if (out
->enum_context
!=0) {
2490 out
->sids
.num_entries
=enum_context
;
2491 out
->sids
.ptr_sid_enum
=1;
2492 out
->sids
.num_entries2
=enum_context
;
2494 out
->sids
.num_entries
=0;
2495 out
->sids
.ptr_sid_enum
=0;
2496 out
->sids
.num_entries2
=0;
2500 /*******************************************************************
2501 reads or writes a structure.
2502 ********************************************************************/
2503 BOOL
lsa_io_r_enum_accounts(const char *desc
, LSA_R_ENUM_ACCOUNTS
*out
, prs_struct
*ps
, int depth
)
2508 prs_debug(ps
, depth
, desc
, "lsa_io_r_enum_accounts");
2514 if(!prs_uint32("enum_context", ps
, depth
, &out
->enum_context
))
2517 if (!lsa_io_sid_enum("sids", &out
->sids
, ps
, depth
))
2523 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2530 /*******************************************************************
2531 Reads or writes an LSA_Q_UNK_GET_CONNUSER structure.
2532 ********************************************************************/
2534 BOOL
lsa_io_q_unk_get_connuser(const char *desc
, LSA_Q_UNK_GET_CONNUSER
*in
, prs_struct
*ps
, int depth
)
2536 prs_debug(ps
, depth
, desc
, "lsa_io_q_unk_get_connuser");
2542 if(!prs_uint32("ptr_srvname", ps
, depth
, &in
->ptr_srvname
))
2545 if(!smb_io_unistr2("uni2_srvname", &in
->uni2_srvname
, in
->ptr_srvname
, ps
, depth
)) /* server name to be looked up */
2551 if(!prs_uint32("unk1", ps
, depth
, &in
->unk1
))
2553 if(!prs_uint32("unk2", ps
, depth
, &in
->unk2
))
2555 if(!prs_uint32("unk3", ps
, depth
, &in
->unk3
))
2558 /* Don't bother to read or write at present... */
2562 /*******************************************************************
2563 Reads or writes an LSA_R_UNK_GET_CONNUSER structure.
2564 ********************************************************************/
2566 BOOL
lsa_io_r_unk_get_connuser(const char *desc
, LSA_R_UNK_GET_CONNUSER
*out
, prs_struct
*ps
, int depth
)
2568 prs_debug(ps
, depth
, desc
, "lsa_io_r_unk_get_connuser");
2574 if(!prs_uint32("ptr_user_name", ps
, depth
, &out
->ptr_user_name
))
2576 if(!smb_io_unihdr("hdr_user_name", &out
->hdr_user_name
, ps
, depth
))
2578 if(!smb_io_unistr2("uni2_user_name", &out
->uni2_user_name
, out
->ptr_user_name
, ps
, depth
))
2584 if(!prs_uint32("unk1", ps
, depth
, &out
->unk1
))
2587 if(!prs_uint32("ptr_dom_name", ps
, depth
, &out
->ptr_dom_name
))
2589 if(!smb_io_unihdr("hdr_dom_name", &out
->hdr_dom_name
, ps
, depth
))
2591 if(!smb_io_unistr2("uni2_dom_name", &out
->uni2_dom_name
, out
->ptr_dom_name
, ps
, depth
))
2597 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2603 void init_lsa_q_create_account(LSA_Q_CREATEACCOUNT
*trn
, POLICY_HND
*hnd
, DOM_SID
*sid
, uint32 desired_access
)
2605 memcpy(&trn
->pol
, hnd
, sizeof(trn
->pol
));
2607 init_dom_sid2(&trn
->sid
, sid
);
2608 trn
->access
= desired_access
;
2612 /*******************************************************************
2613 Reads or writes an LSA_Q_CREATEACCOUNT structure.
2614 ********************************************************************/
2616 BOOL
lsa_io_q_create_account(const char *desc
, LSA_Q_CREATEACCOUNT
*out
, prs_struct
*ps
, int depth
)
2618 prs_debug(ps
, depth
, desc
, "lsa_io_q_create_account");
2624 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2627 if(!smb_io_dom_sid2("sid", &out
->sid
, ps
, depth
)) /* domain SID */
2630 if(!prs_uint32("access", ps
, depth
, &out
->access
))
2636 /*******************************************************************
2637 Reads or writes an LSA_R_CREATEACCOUNT structure.
2638 ********************************************************************/
2640 BOOL
lsa_io_r_create_account(const char *desc
, LSA_R_CREATEACCOUNT
*out
, prs_struct
*ps
, int depth
)
2642 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_account");
2648 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2651 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2658 void init_lsa_q_open_account(LSA_Q_OPENACCOUNT
*trn
, POLICY_HND
*hnd
, DOM_SID
*sid
, uint32 desired_access
)
2660 memcpy(&trn
->pol
, hnd
, sizeof(trn
->pol
));
2662 init_dom_sid2(&trn
->sid
, sid
);
2663 trn
->access
= desired_access
;
2666 /*******************************************************************
2667 Reads or writes an LSA_Q_OPENACCOUNT structure.
2668 ********************************************************************/
2670 BOOL
lsa_io_q_open_account(const char *desc
, LSA_Q_OPENACCOUNT
*out
, prs_struct
*ps
, int depth
)
2672 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_account");
2678 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2681 if(!smb_io_dom_sid2("sid", &out
->sid
, ps
, depth
)) /* domain SID */
2684 if(!prs_uint32("access", ps
, depth
, &out
->access
))
2690 /*******************************************************************
2691 Reads or writes an LSA_R_OPENACCOUNT structure.
2692 ********************************************************************/
2694 BOOL
lsa_io_r_open_account(const char *desc
, LSA_R_OPENACCOUNT
*out
, prs_struct
*ps
, int depth
)
2696 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_account");
2702 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2705 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2712 void init_lsa_q_enum_privsaccount(LSA_Q_ENUMPRIVSACCOUNT
*trn
, POLICY_HND
*hnd
)
2714 memcpy(&trn
->pol
, hnd
, sizeof(trn
->pol
));
2718 /*******************************************************************
2719 Reads or writes an LSA_Q_ENUMPRIVSACCOUNT structure.
2720 ********************************************************************/
2722 BOOL
lsa_io_q_enum_privsaccount(const char *desc
, LSA_Q_ENUMPRIVSACCOUNT
*out
, prs_struct
*ps
, int depth
)
2724 prs_debug(ps
, depth
, desc
, "lsa_io_q_enum_privsaccount");
2730 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2736 /*******************************************************************
2737 Reads or writes an LUID structure.
2738 ********************************************************************/
2740 static BOOL
lsa_io_luid(const char *desc
, LUID
*out
, prs_struct
*ps
, int depth
)
2742 prs_debug(ps
, depth
, desc
, "lsa_io_luid");
2748 if(!prs_uint32("low", ps
, depth
, &out
->low
))
2751 if(!prs_uint32("high", ps
, depth
, &out
->high
))
2757 /*******************************************************************
2758 Reads or writes an LUID_ATTR structure.
2759 ********************************************************************/
2761 static BOOL
lsa_io_luid_attr(const char *desc
, LUID_ATTR
*out
, prs_struct
*ps
, int depth
)
2763 prs_debug(ps
, depth
, desc
, "lsa_io_luid_attr");
2769 if (!lsa_io_luid(desc
, &out
->luid
, ps
, depth
))
2772 if(!prs_uint32("attr", ps
, depth
, &out
->attr
))
2778 /*******************************************************************
2779 Reads or writes an PRIVILEGE_SET structure.
2780 ********************************************************************/
2782 static BOOL
lsa_io_privilege_set(const char *desc
, PRIVILEGE_SET
*out
, prs_struct
*ps
, int depth
)
2786 prs_debug(ps
, depth
, desc
, "lsa_io_privilege_set");
2792 if(!prs_uint32("count", ps
, depth
, &dummy
))
2794 if(!prs_uint32("control", ps
, depth
, &out
->control
))
2797 for (i
=0; i
<out
->count
; i
++) {
2798 if (!lsa_io_luid_attr(desc
, &out
->set
[i
], ps
, depth
))
2805 NTSTATUS
init_lsa_r_enum_privsaccount(TALLOC_CTX
*mem_ctx
, LSA_R_ENUMPRIVSACCOUNT
*out
, LUID_ATTR
*set
, uint32 count
, uint32 control
)
2807 NTSTATUS ret
= NT_STATUS_OK
;
2812 if ( !NT_STATUS_IS_OK(ret
= privilege_set_init_by_ctx(mem_ctx
, &(out
->set
))) )
2815 out
->set
.count
= count
;
2817 if (!NT_STATUS_IS_OK(ret
= dup_luid_attr(out
->set
.mem_ctx
, &(out
->set
.set
), set
, count
)))
2820 DEBUG(10,("init_lsa_r_enum_privsaccount: %d privileges\n", out
->count
));
2825 /*******************************************************************
2826 Reads or writes an LSA_R_ENUMPRIVSACCOUNT structure.
2827 ********************************************************************/
2829 BOOL
lsa_io_r_enum_privsaccount(const char *desc
, LSA_R_ENUMPRIVSACCOUNT
*out
, prs_struct
*ps
, int depth
)
2831 prs_debug(ps
, depth
, desc
, "lsa_io_r_enum_privsaccount");
2837 if(!prs_uint32("ptr", ps
, depth
, &out
->ptr
))
2841 if(!prs_uint32("count", ps
, depth
, &out
->count
))
2844 /* malloc memory if unmarshalling here */
2846 if (UNMARSHALLING(ps
) && out
->count
!= 0) {
2847 if (!NT_STATUS_IS_OK(privilege_set_init_by_ctx(ps
->mem_ctx
, &(out
->set
))))
2850 if (!(out
->set
.set
= PRS_ALLOC_MEM(ps
,LUID_ATTR
,out
->count
)))
2855 if(!lsa_io_privilege_set(desc
, &out
->set
, ps
, depth
))
2859 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2867 /*******************************************************************
2868 Reads or writes an LSA_Q_GETSYSTEMACCOUNTstructure.
2869 ********************************************************************/
2871 BOOL
lsa_io_q_getsystemaccount(const char *desc
, LSA_Q_GETSYSTEMACCOUNT
*out
, prs_struct
*ps
, int depth
)
2873 prs_debug(ps
, depth
, desc
, "lsa_io_q_getsystemaccount");
2879 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2885 /*******************************************************************
2886 Reads or writes an LSA_R_GETSYSTEMACCOUNTstructure.
2887 ********************************************************************/
2889 BOOL
lsa_io_r_getsystemaccount(const char *desc
, LSA_R_GETSYSTEMACCOUNT
*out
, prs_struct
*ps
, int depth
)
2891 prs_debug(ps
, depth
, desc
, "lsa_io_r_getsystemaccount");
2897 if(!prs_uint32("access", ps
, depth
, &out
->access
))
2900 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2907 /*******************************************************************
2908 Reads or writes an LSA_Q_SETSYSTEMACCOUNT structure.
2909 ********************************************************************/
2911 BOOL
lsa_io_q_setsystemaccount(const char *desc
, LSA_Q_SETSYSTEMACCOUNT
*out
, prs_struct
*ps
, int depth
)
2913 prs_debug(ps
, depth
, desc
, "lsa_io_q_setsystemaccount");
2919 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2922 if(!prs_uint32("access", ps
, depth
, &out
->access
))
2928 /*******************************************************************
2929 Reads or writes an LSA_R_SETSYSTEMACCOUNT structure.
2930 ********************************************************************/
2932 BOOL
lsa_io_r_setsystemaccount(const char *desc
, LSA_R_SETSYSTEMACCOUNT
*out
, prs_struct
*ps
, int depth
)
2934 prs_debug(ps
, depth
, desc
, "lsa_io_r_setsystemaccount");
2940 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
2947 void init_lsa_string( LSA_STRING
*uni
, const char *string
)
2949 init_unistr2(&uni
->unistring
, string
, UNI_FLAGS_NONE
);
2950 init_uni_hdr(&uni
->hdr
, &uni
->unistring
);
2953 void init_lsa_q_lookup_priv_value(LSA_Q_LOOKUP_PRIV_VALUE
*q_u
, POLICY_HND
*hnd
, const char *name
)
2955 memcpy(&q_u
->pol
, hnd
, sizeof(q_u
->pol
));
2956 init_lsa_string( &q_u
->privname
, name
);
2959 BOOL
smb_io_lsa_string( const char *desc
, LSA_STRING
*string
, prs_struct
*ps
, int depth
)
2961 prs_debug(ps
, depth
, desc
, "smb_io_lsa_string");
2964 if(!smb_io_unihdr ("hdr", &string
->hdr
, ps
, depth
))
2966 if(!smb_io_unistr2("unistring", &string
->unistring
, string
->hdr
.buffer
, ps
, depth
))
2972 /*******************************************************************
2973 Reads or writes an LSA_Q_LOOKUP_PRIV_VALUE structure.
2974 ********************************************************************/
2976 BOOL
lsa_io_q_lookup_priv_value(const char *desc
, LSA_Q_LOOKUP_PRIV_VALUE
*out
, prs_struct
*ps
, int depth
)
2978 prs_debug(ps
, depth
, desc
, "lsa_io_q_lookup_priv_value");
2984 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
2986 if(!smb_io_lsa_string("privname", &out
->privname
, ps
, depth
))
2992 /*******************************************************************
2993 Reads or writes an LSA_R_LOOKUP_PRIV_VALUE structure.
2994 ********************************************************************/
2996 BOOL
lsa_io_r_lookup_priv_value(const char *desc
, LSA_R_LOOKUP_PRIV_VALUE
*out
, prs_struct
*ps
, int depth
)
2998 prs_debug(ps
, depth
, desc
, "lsa_io_r_lookup_priv_value");
3004 if(!lsa_io_luid("luid", &out
->luid
, ps
, depth
))
3007 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3014 /*******************************************************************
3015 Reads or writes an LSA_Q_ADDPRIVS structure.
3016 ********************************************************************/
3018 BOOL
lsa_io_q_addprivs(const char *desc
, LSA_Q_ADDPRIVS
*out
, prs_struct
*ps
, int depth
)
3020 prs_debug(ps
, depth
, desc
, "lsa_io_q_addprivs");
3026 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
3029 if(!prs_uint32("count", ps
, depth
, &out
->count
))
3032 if (UNMARSHALLING(ps
) && out
->count
!=0) {
3033 if (!NT_STATUS_IS_OK(privilege_set_init_by_ctx(ps
->mem_ctx
, &(out
->set
))))
3036 if (!(out
->set
.set
= PRS_ALLOC_MEM(ps
, LUID_ATTR
, out
->count
)))
3040 if(!lsa_io_privilege_set(desc
, &out
->set
, ps
, depth
))
3046 /*******************************************************************
3047 Reads or writes an LSA_R_ADDPRIVS structure.
3048 ********************************************************************/
3050 BOOL
lsa_io_r_addprivs(const char *desc
, LSA_R_ADDPRIVS
*out
, prs_struct
*ps
, int depth
)
3052 prs_debug(ps
, depth
, desc
, "lsa_io_r_addprivs");
3058 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3064 /*******************************************************************
3065 Reads or writes an LSA_Q_REMOVEPRIVS structure.
3066 ********************************************************************/
3068 BOOL
lsa_io_q_removeprivs(const char *desc
, LSA_Q_REMOVEPRIVS
*out
, prs_struct
*ps
, int depth
)
3070 prs_debug(ps
, depth
, desc
, "lsa_io_q_removeprivs");
3076 if(!smb_io_pol_hnd("pol", &out
->pol
, ps
, depth
))
3079 if(!prs_uint32("allrights", ps
, depth
, &out
->allrights
))
3082 if(!prs_uint32("ptr", ps
, depth
, &out
->ptr
))
3086 * JFM: I'm not sure at all if the count is inside the ptr
3087 * never seen one with ptr=0
3091 if(!prs_uint32("count", ps
, depth
, &out
->count
))
3094 if (UNMARSHALLING(ps
) && out
->count
!=0) {
3095 if (!NT_STATUS_IS_OK(privilege_set_init_by_ctx(ps
->mem_ctx
, &(out
->set
))))
3098 if (!(out
->set
.set
= PRS_ALLOC_MEM(ps
, LUID_ATTR
, out
->count
)))
3102 if(!lsa_io_privilege_set(desc
, &out
->set
, ps
, depth
))
3109 /*******************************************************************
3110 Reads or writes an LSA_R_REMOVEPRIVS structure.
3111 ********************************************************************/
3113 BOOL
lsa_io_r_removeprivs(const char *desc
, LSA_R_REMOVEPRIVS
*out
, prs_struct
*ps
, int depth
)
3115 prs_debug(ps
, depth
, desc
, "lsa_io_r_removeprivs");
3121 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3127 BOOL
policy_handle_is_valid(const POLICY_HND
*hnd
)
3129 POLICY_HND zero_pol
;
3131 ZERO_STRUCT(zero_pol
);
3132 return ((memcmp(&zero_pol
, hnd
, sizeof(POLICY_HND
)) == 0) ? False
: True
);
3135 /*******************************************************************
3136 Inits an LSA_Q_QUERY_INFO2 structure.
3137 ********************************************************************/
3139 void init_q_query2(LSA_Q_QUERY_INFO2
*in
, POLICY_HND
*hnd
, uint16 info_class
)
3141 DEBUG(5, ("init_q_query2\n"));
3143 memcpy(&in
->pol
, hnd
, sizeof(in
->pol
));
3145 in
->info_class
= info_class
;
3148 /*******************************************************************
3149 Reads or writes an LSA_Q_QUERY_DNSDOMINFO structure.
3150 ********************************************************************/
3152 BOOL
lsa_io_q_query_info2(const char *desc
, LSA_Q_QUERY_INFO2
*in
, prs_struct
*ps
, int depth
)
3154 prs_debug(ps
, depth
, desc
, "lsa_io_q_query_info2");
3160 if(!smb_io_pol_hnd("pol", &in
->pol
, ps
, depth
))
3163 if(!prs_uint16("info_class", ps
, depth
, &in
->info_class
))
3169 /*******************************************************************
3170 Reads or writes an LSA_R_QUERY_DNSDOMINFO structure.
3171 ********************************************************************/
3173 BOOL
lsa_io_r_query_info2(const char *desc
, LSA_R_QUERY_INFO2
*out
,
3174 prs_struct
*ps
, int depth
)
3176 prs_debug(ps
, depth
, desc
, "lsa_io_r_query_info2");
3182 if(!prs_uint32("dom_ptr", ps
, depth
, &out
->dom_ptr
))
3187 if(!lsa_io_query_info_ctr2("", ps
, depth
, &out
->ctr
))
3193 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3199 /*******************************************************************
3200 Inits an LSA_Q_ENUM_ACCT_RIGHTS structure.
3201 ********************************************************************/
3202 void init_q_enum_acct_rights(LSA_Q_ENUM_ACCT_RIGHTS
*in
,
3207 DEBUG(5, ("init_q_enum_acct_rights\n"));
3210 init_dom_sid2(&in
->sid
, sid
);
3213 /*******************************************************************
3214 ********************************************************************/
3215 NTSTATUS
init_r_enum_acct_rights( LSA_R_ENUM_ACCT_RIGHTS
*out
, PRIVILEGE_SET
*privileges
)
3219 const char **privname_array
= NULL
;
3222 for ( i
=0; i
<privileges
->count
; i
++ ) {
3223 privname
= luid_to_privilege_name( &privileges
->set
[i
].luid
);
3225 if ( !add_string_to_array( get_talloc_ctx(), privname
, &privname_array
, &num_priv
) )
3226 return NT_STATUS_NO_MEMORY
;
3231 out
->rights
= TALLOC_P( get_talloc_ctx(), UNISTR4_ARRAY
);
3233 return NT_STATUS_NO_MEMORY
;
3236 if ( !init_unistr4_array( out
->rights
, num_priv
, privname_array
) )
3237 return NT_STATUS_NO_MEMORY
;
3239 out
->count
= num_priv
;
3242 return NT_STATUS_OK
;
3245 /*******************************************************************
3246 reads or writes a LSA_Q_ENUM_ACCT_RIGHTS structure.
3247 ********************************************************************/
3248 BOOL
lsa_io_q_enum_acct_rights(const char *desc
, LSA_Q_ENUM_ACCT_RIGHTS
*in
, prs_struct
*ps
, int depth
)
3254 prs_debug(ps
, depth
, desc
, "lsa_io_q_enum_acct_rights");
3257 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
3260 if(!smb_io_dom_sid2("sid", &in
->sid
, ps
, depth
))
3267 /*******************************************************************
3268 reads or writes a LSA_R_ENUM_ACCT_RIGHTS structure.
3269 ********************************************************************/
3270 BOOL
lsa_io_r_enum_acct_rights(const char *desc
, LSA_R_ENUM_ACCT_RIGHTS
*out
, prs_struct
*ps
, int depth
)
3272 prs_debug(ps
, depth
, desc
, "lsa_io_r_enum_acct_rights");
3275 if(!prs_uint32("count ", ps
, depth
, &out
->count
))
3278 if ( !prs_pointer("rights", ps
, depth
, (void*)&out
->rights
, sizeof(UNISTR4_ARRAY
), (PRS_POINTER_CAST
)prs_unistr4_array
) )
3284 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3291 /*******************************************************************
3292 Inits an LSA_Q_ADD_ACCT_RIGHTS structure.
3293 ********************************************************************/
3294 void init_q_add_acct_rights( LSA_Q_ADD_ACCT_RIGHTS
*in
, POLICY_HND
*hnd
,
3295 DOM_SID
*sid
, uint32 count
, const char **rights
)
3297 DEBUG(5, ("init_q_add_acct_rights\n"));
3300 init_dom_sid2(&in
->sid
, sid
);
3302 in
->rights
= TALLOC_P( get_talloc_ctx(), UNISTR4_ARRAY
);
3304 smb_panic("init_q_add_acct_rights: talloc fail\n");
3307 init_unistr4_array( in
->rights
, count
, rights
);
3313 /*******************************************************************
3314 reads or writes a LSA_Q_ADD_ACCT_RIGHTS structure.
3315 ********************************************************************/
3316 BOOL
lsa_io_q_add_acct_rights(const char *desc
, LSA_Q_ADD_ACCT_RIGHTS
*in
, prs_struct
*ps
, int depth
)
3318 prs_debug(ps
, depth
, desc
, "lsa_io_q_add_acct_rights");
3321 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
3324 if(!smb_io_dom_sid2("sid", &in
->sid
, ps
, depth
))
3327 if(!prs_uint32("count", ps
, depth
, &in
->count
))
3330 if ( !prs_pointer("rights", ps
, depth
, (void*)&in
->rights
, sizeof(UNISTR4_ARRAY
), (PRS_POINTER_CAST
)prs_unistr4_array
) )
3336 /*******************************************************************
3337 reads or writes a LSA_R_ENUM_ACCT_RIGHTS structure.
3338 ********************************************************************/
3339 BOOL
lsa_io_r_add_acct_rights(const char *desc
, LSA_R_ADD_ACCT_RIGHTS
*out
, prs_struct
*ps
, int depth
)
3341 prs_debug(ps
, depth
, desc
, "lsa_io_r_add_acct_rights");
3344 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3350 /*******************************************************************
3351 Inits an LSA_Q_REMOVE_ACCT_RIGHTS structure.
3352 ********************************************************************/
3354 void init_q_remove_acct_rights(LSA_Q_REMOVE_ACCT_RIGHTS
*in
,
3359 const char **rights
)
3361 DEBUG(5, ("init_q_remove_acct_rights\n"));
3365 init_dom_sid2(&in
->sid
, sid
);
3367 in
->removeall
= removeall
;
3370 in
->rights
= TALLOC_P( get_talloc_ctx(), UNISTR4_ARRAY
);
3372 smb_panic("init_q_remove_acct_rights: talloc fail\n");
3375 init_unistr4_array( in
->rights
, count
, rights
);
3378 /*******************************************************************
3379 reads or writes a LSA_Q_REMOVE_ACCT_RIGHTS structure.
3380 ********************************************************************/
3382 BOOL
lsa_io_q_remove_acct_rights(const char *desc
, LSA_Q_REMOVE_ACCT_RIGHTS
*in
, prs_struct
*ps
, int depth
)
3384 prs_debug(ps
, depth
, desc
, "lsa_io_q_remove_acct_rights");
3387 if (!smb_io_pol_hnd("", &in
->pol
, ps
, depth
))
3390 if(!smb_io_dom_sid2("sid", &in
->sid
, ps
, depth
))
3393 if(!prs_uint32("removeall", ps
, depth
, &in
->removeall
))
3396 if(!prs_uint32("count", ps
, depth
, &in
->count
))
3399 if ( !prs_pointer("rights", ps
, depth
, (void*)&in
->rights
, sizeof(UNISTR4_ARRAY
), (PRS_POINTER_CAST
)prs_unistr4_array
) )
3405 /*******************************************************************
3406 reads or writes a LSA_R_ENUM_ACCT_RIGHTS structure.
3407 ********************************************************************/
3408 BOOL
lsa_io_r_remove_acct_rights(const char *desc
, LSA_R_REMOVE_ACCT_RIGHTS
*out
, prs_struct
*ps
, int depth
)
3410 prs_debug(ps
, depth
, desc
, "lsa_io_r_remove_acct_rights");
3413 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3419 /*******************************************************************
3420 Inits an LSA_Q_OPEN_TRUSTED_DOMAIN structure.
3421 ********************************************************************/
3423 void init_lsa_q_open_trusted_domain(LSA_Q_OPEN_TRUSTED_DOMAIN
*q
, POLICY_HND
*hnd
, DOM_SID
*sid
, uint32 desired_access
)
3425 memcpy(&q
->pol
, hnd
, sizeof(q
->pol
));
3427 init_dom_sid2(&q
->sid
, sid
);
3428 q
->access_mask
= desired_access
;
3431 /*******************************************************************
3432 ********************************************************************/
3434 #if 0 /* jerry, I think this not correct - gd */
3435 BOOL
lsa_io_q_open_trusted_domain(const char *desc
, LSA_Q_OPEN_TRUSTED_DOMAIN
*in
, prs_struct
*ps
, int depth
)
3437 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_trusted_domain");
3443 if (!smb_io_pol_hnd("", &in
->handle
, ps
, depth
))
3446 if(!prs_uint32("count", ps
, depth
, &in
->count
))
3449 if(!smb_io_dom_sid("sid", &in
->sid
, ps
, depth
))
3457 /*******************************************************************
3458 Inits an LSA_Q_OPEN_TRUSTED_DOMAIN_BY_NAME structure.
3459 ********************************************************************/
3461 void init_lsa_q_open_trusted_domain_by_name(LSA_Q_OPEN_TRUSTED_DOMAIN_BY_NAME
*q
,
3464 uint32 desired_access
)
3466 memcpy(&q
->pol
, hnd
, sizeof(q
->pol
));
3468 init_lsa_string(&q
->name
, name
);
3469 q
->access_mask
= desired_access
;
3472 /*******************************************************************
3473 ********************************************************************/
3476 /*******************************************************************
3477 Reads or writes an LSA_Q_OPEN_TRUSTED_DOMAIN_BY_NAME structure.
3478 ********************************************************************/
3480 BOOL
lsa_io_q_open_trusted_domain_by_name(const char *desc
, LSA_Q_OPEN_TRUSTED_DOMAIN_BY_NAME
*q_o
, prs_struct
*ps
, int depth
)
3482 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_trusted_domain_by_name");
3488 if(!smb_io_pol_hnd("pol", &q_o
->pol
, ps
, depth
))
3494 if(!smb_io_lsa_string("name", &q_o
->name
, ps
, depth
))
3500 if(!prs_uint32("access", ps
, depth
, &q_o
->access_mask
))
3506 /*******************************************************************
3507 Reads or writes an LSA_R_OPEN_TRUSTED_DOMAIN_BY_NAME structure.
3508 ********************************************************************/
3510 BOOL
lsa_io_r_open_trusted_domain_by_name(const char *desc
, LSA_R_OPEN_TRUSTED_DOMAIN_BY_NAME
*out
, prs_struct
*ps
, int depth
)
3512 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_trusted_domain_by_name");
3518 if (!smb_io_pol_hnd("handle", &out
->handle
, ps
, depth
))
3521 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3527 /*******************************************************************
3528 ********************************************************************/
3530 BOOL
lsa_io_q_open_trusted_domain(const char *desc
, LSA_Q_OPEN_TRUSTED_DOMAIN
*q_o
, prs_struct
*ps
, int depth
)
3532 prs_debug(ps
, depth
, desc
, "lsa_io_q_open_trusted_domain");
3538 if(!smb_io_pol_hnd("pol", &q_o
->pol
, ps
, depth
))
3541 if(!smb_io_dom_sid2("sid", &q_o
->sid
, ps
, depth
))
3544 if(!prs_uint32("access", ps
, depth
, &q_o
->access_mask
))
3550 /*******************************************************************
3551 Reads or writes an LSA_R_OPEN_TRUSTED_DOMAIN structure.
3552 ********************************************************************/
3554 BOOL
lsa_io_r_open_trusted_domain(const char *desc
, LSA_R_OPEN_TRUSTED_DOMAIN
*out
, prs_struct
*ps
, int depth
)
3556 prs_debug(ps
, depth
, desc
, "lsa_io_r_open_trusted_domain");
3562 if (!smb_io_pol_hnd("handle", &out
->handle
, ps
, depth
))
3565 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3571 /*******************************************************************
3572 ********************************************************************/
3574 BOOL
lsa_io_q_create_trusted_domain(const char *desc
, LSA_Q_CREATE_TRUSTED_DOMAIN
*in
, prs_struct
*ps
, int depth
)
3576 prs_debug(ps
, depth
, desc
, "lsa_io_q_create_trusted_domain");
3582 if(!smb_io_pol_hnd("", &in
->handle
, ps
, depth
))
3585 if(!prs_unistr4 ("secretname", ps
, depth
, &in
->secretname
))
3590 if(!prs_uint32("access", ps
, depth
, &in
->access
))
3596 /*******************************************************************
3597 ********************************************************************/
3599 BOOL
lsa_io_r_create_trusted_domain(const char *desc
, LSA_R_CREATE_TRUSTED_DOMAIN
*out
, prs_struct
*ps
, int depth
)
3601 prs_debug(ps
, depth
, desc
, "lsa_io_r_create_trusted_domain");
3607 if (!smb_io_pol_hnd("", &out
->handle
, ps
, depth
))
3610 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3616 /*******************************************************************
3617 ********************************************************************/
3619 BOOL
lsa_io_q_create_secret(const char *desc
, LSA_Q_CREATE_SECRET
*in
, prs_struct
*ps
, int depth
)
3621 prs_debug(ps
, depth
, desc
, "lsa_io_q_create_secret");
3627 if(!smb_io_pol_hnd("", &in
->handle
, ps
, depth
))
3630 if(!prs_unistr4 ("secretname", ps
, depth
, &in
->secretname
))
3635 if(!prs_uint32("access", ps
, depth
, &in
->access
))
3641 /*******************************************************************
3642 ********************************************************************/
3644 BOOL
lsa_io_r_create_secret(const char *desc
, LSA_R_CREATE_SECRET
*out
, prs_struct
*ps
, int depth
)
3646 prs_debug(ps
, depth
, desc
, "lsa_io_r_create_secret");
3652 if (!smb_io_pol_hnd("", &out
->handle
, ps
, depth
))
3655 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3663 /*******************************************************************
3664 ********************************************************************/
3666 static BOOL
lsa_io_data_blob( const char *desc
, prs_struct
*ps
, int depth
, LSA_DATA_BLOB
*blob
)
3668 prs_debug(ps
, depth
, desc
, "lsa_io_data_blob");
3671 if ( !prs_uint32("size", ps
, depth
, &blob
->size
) )
3673 if ( !prs_uint32("size", ps
, depth
, &blob
->size
) )
3676 if ( !prs_io_unistr2_p(desc
, ps
, depth
, &blob
->data
) )
3682 /*******************************************************************
3683 ********************************************************************/
3685 BOOL
lsa_io_q_set_secret(const char *desc
, LSA_Q_SET_SECRET
*in
, prs_struct
*ps
, int depth
)
3687 prs_debug(ps
, depth
, desc
, "lsa_io_q_set_secret");
3690 if ( !prs_align(ps
) )
3693 if ( !smb_io_pol_hnd("", &in
->handle
, ps
, depth
) )
3696 if ( !prs_pointer( "old_value", ps
, depth
, (void*)&in
->old_value
, sizeof(LSA_DATA_BLOB
), (PRS_POINTER_CAST
)lsa_io_data_blob
))
3699 if( !prs_align(ps
) )
3701 if ( !prs_pointer( "old_value", ps
, depth
, (void*)&in
->old_value
, sizeof(LSA_DATA_BLOB
), (PRS_POINTER_CAST
)lsa_io_data_blob
))
3708 /*******************************************************************
3709 ********************************************************************/
3711 BOOL
lsa_io_r_set_secret(const char *desc
, LSA_R_SET_SECRET
*out
, prs_struct
*ps
, int depth
)
3713 prs_debug(ps
, depth
, desc
, "lsa_io_r_set_secret");
3716 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3722 /*******************************************************************
3723 ********************************************************************/
3725 BOOL
lsa_io_q_delete_object(const char *desc
, LSA_Q_DELETE_OBJECT
*in
, prs_struct
*ps
, int depth
)
3727 prs_debug(ps
, depth
, desc
, "lsa_io_q_delete_object");
3733 if(!smb_io_pol_hnd("", &in
->handle
, ps
, depth
))
3739 /*******************************************************************
3740 ********************************************************************/
3742 BOOL
lsa_io_r_delete_object(const char *desc
, LSA_R_DELETE_OBJECT
*out
, prs_struct
*ps
, int depth
)
3744 prs_debug(ps
, depth
, desc
, "lsa_io_r_delete_object");
3747 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))
3753 /*******************************************************************
3754 Inits an LSA_Q_QUERY_TRUSTED_DOMAIN_INFO structure.
3755 ********************************************************************/
3757 void init_q_query_trusted_domain_info(LSA_Q_QUERY_TRUSTED_DOMAIN_INFO
*q
,
3758 POLICY_HND
*hnd
, uint16 info_class
)
3760 DEBUG(5, ("init_q_query_trusted_domain_info\n"));
3763 q
->info_class
= info_class
;
3766 /*******************************************************************
3767 Inits an LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_NAME structure.
3768 ********************************************************************/
3770 void init_q_query_trusted_domain_info_by_name(LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_NAME
*q
,
3771 POLICY_HND
*hnd
, uint16 info_class
,
3772 const char *dom_name
)
3774 DEBUG(5, ("init_q_query_trusted_domain_info_by_name\n"));
3777 init_lsa_string(&q
->domain_name
, dom_name
);
3778 q
->info_class
= info_class
;
3781 /*******************************************************************
3782 Inits an LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_SID structure.
3783 ********************************************************************/
3785 void init_q_query_trusted_domain_info_by_sid(LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_SID
*q
,
3786 POLICY_HND
*hnd
, uint16 info_class
,
3789 DEBUG(5, ("init_q_query_trusted_domain_info_by_sid\n"));
3792 init_dom_sid2(&q
->dom_sid
, dom_sid
);
3793 q
->info_class
= info_class
;
3796 /*******************************************************************
3797 Reads or writes an LSA_Q_QUERY_TRUSTED_DOMAIN_INFO structure.
3798 ********************************************************************/
3800 BOOL
lsa_io_q_query_trusted_domain_info(const char *desc
,
3801 LSA_Q_QUERY_TRUSTED_DOMAIN_INFO
*q_q
,
3802 prs_struct
*ps
, int depth
)
3804 prs_debug(ps
, depth
, desc
, "lsa_io_q_query_trusted_domain_info");
3810 if(!smb_io_pol_hnd("pol", &q_q
->pol
, ps
, depth
))
3813 if(!prs_uint16("info_class", ps
, depth
, &q_q
->info_class
))
3820 /*******************************************************************
3821 Reads or writes an LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_SID structure.
3822 ********************************************************************/
3824 BOOL
lsa_io_q_query_trusted_domain_info_by_sid(const char *desc
,
3825 LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_SID
*q_q
,
3826 prs_struct
*ps
, int depth
)
3828 prs_debug(ps
, depth
, desc
, "lsa_io_q_query_trusted_domain_info_by_sid");
3834 if(!smb_io_pol_hnd("pol", &q_q
->pol
, ps
, depth
))
3840 if(!smb_io_dom_sid2("dom_sid", &q_q
->dom_sid
, ps
, depth
))
3843 if(!prs_uint16("info_class", ps
, depth
, &q_q
->info_class
))
3849 /*******************************************************************
3850 Reads or writes an LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_NAME structure.
3851 ********************************************************************/
3853 BOOL
lsa_io_q_query_trusted_domain_info_by_name(const char *desc
,
3854 LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_NAME
*q_q
,
3855 prs_struct
*ps
, int depth
)
3857 prs_debug(ps
, depth
, desc
, "lsa_io_q_query_trusted_domain_info_by_name");
3863 if(!smb_io_pol_hnd("pol", &q_q
->pol
, ps
, depth
))
3869 if(!smb_io_lsa_string("domain_name", &q_q
->domain_name
, ps
, depth
))
3872 if(!prs_uint16("info_class", ps
, depth
, &q_q
->info_class
))
3878 /*******************************************************************
3879 ********************************************************************/
3881 static BOOL
smb_io_lsa_data_buf_hdr(const char *desc
, LSA_DATA_BUF_HDR
*buf_hdr
,
3882 prs_struct
*ps
, int depth
)
3884 prs_debug(ps
, depth
, desc
, "smb_io_lsa_data_buf_hdr");
3890 if(!prs_uint32("length", ps
, depth
, &buf_hdr
->length
))
3893 if(!prs_uint32("size", ps
, depth
, &buf_hdr
->size
))
3896 if (!prs_uint32("data_ptr", ps
, depth
, &buf_hdr
->data_ptr
))
3902 /*******************************************************************
3903 ********************************************************************/
3905 static BOOL
smb_io_lsa_data_buf(const char *desc
, LSA_DATA_BUF
*buf
,
3906 prs_struct
*ps
, int depth
, int length
, int size
)
3908 prs_debug(ps
, depth
, desc
, "smb_io_lsa_data_buf");
3911 if ( UNMARSHALLING(ps
) && length
) {
3912 if ( !(buf
->data
= PRS_ALLOC_MEM( ps
, uint8
, length
)) )
3916 if (!prs_uint32("size", ps
, depth
, &buf
->size
))
3919 if (!prs_uint32("offset", ps
, depth
, &buf
->offset
))
3922 if (!prs_uint32("length", ps
, depth
, &buf
->length
))
3925 if(!prs_uint8s(False
, "data", ps
, depth
, buf
->data
, length
))
3931 /*******************************************************************
3932 ********************************************************************/
3934 static BOOL
lsa_io_trustdom_query_1(const char *desc
, TRUSTED_DOMAIN_INFO_NAME
*name
,
3935 prs_struct
*ps
, int depth
)
3937 if (!smb_io_lsa_string("netbios_name", &name
->netbios_name
, ps
, depth
))
3943 /*******************************************************************
3944 ********************************************************************/
3946 static BOOL
lsa_io_trustdom_query_3(const char *desc
, TRUSTED_DOMAIN_INFO_POSIX_OFFSET
*posix
,
3947 prs_struct
*ps
, int depth
)
3949 if(!prs_uint32("posix_offset", ps
, depth
, &posix
->posix_offset
))
3955 /*******************************************************************
3956 ********************************************************************/
3958 static BOOL
lsa_io_trustdom_query_4(const char *desc
, TRUSTED_DOMAIN_INFO_PASSWORD
*password
,
3959 prs_struct
*ps
, int depth
)
3964 if(!prs_uint32("ptr_password", ps
, depth
, &password
->ptr_password
))
3967 if(!prs_uint32("ptr_old_password", ps
, depth
, &password
->ptr_old_password
))
3970 if (&password
->ptr_password
) {
3972 if (!smb_io_lsa_data_buf_hdr("password_hdr", &password
->password_hdr
, ps
, depth
))
3975 if (!smb_io_lsa_data_buf("password", &password
->password
, ps
, depth
,
3976 password
->password_hdr
.length
, password
->password_hdr
.size
))
3980 if (&password
->ptr_old_password
) {
3982 if (!smb_io_lsa_data_buf_hdr("old_password_hdr", &password
->old_password_hdr
, ps
, depth
))
3985 if (!smb_io_lsa_data_buf("old_password", &password
->old_password
, ps
, depth
,
3986 password
->old_password_hdr
.length
, password
->old_password_hdr
.size
))
3993 /*******************************************************************
3994 ********************************************************************/
3996 static BOOL
lsa_io_trustdom_query_6(const char *desc
, TRUSTED_DOMAIN_INFO_EX
*info_ex
,
3997 prs_struct
*ps
, int depth
)
4001 if (!smb_io_unihdr("domain_name_hdr", &info_ex
->domain_name
.hdr
, ps
, depth
))
4004 if (!smb_io_unihdr("netbios_name_hdr", &info_ex
->netbios_name
.hdr
, ps
, depth
))
4007 if (!prs_uint32("dom_sid_ptr", ps
, depth
, &dom_sid_ptr
))
4010 if (!prs_uint32("trust_direction", ps
, depth
, &info_ex
->trust_direction
))
4013 if (!prs_uint32("trust_type", ps
, depth
, &info_ex
->trust_type
))
4016 if (!prs_uint32("trust_attributes", ps
, depth
, &info_ex
->trust_attributes
))
4019 if (!smb_io_unistr2("domain_name_unistring", &info_ex
->domain_name
.unistring
, info_ex
->domain_name
.hdr
.buffer
, ps
, depth
))
4022 if (!smb_io_unistr2("netbios_name_unistring", &info_ex
->netbios_name
.unistring
, info_ex
->netbios_name
.hdr
.buffer
, ps
, depth
))
4025 if (!smb_io_dom_sid2("sid", &info_ex
->sid
, ps
, depth
))
4031 /*******************************************************************
4032 ********************************************************************/
4034 static BOOL
lsa_io_trustdom_query(const char *desc
, prs_struct
*ps
, int depth
, LSA_TRUSTED_DOMAIN_INFO
*info
)
4036 prs_debug(ps
, depth
, desc
, "lsa_io_trustdom_query");
4039 if(!prs_uint16("info_class", ps
, depth
, &info
->info_class
))
4045 switch (info
->info_class
) {
4047 if(!lsa_io_trustdom_query_1("name", &info
->name
, ps
, depth
))
4051 if(!lsa_io_trustdom_query_3("posix_offset", &info
->posix_offset
, ps
, depth
))
4055 if(!lsa_io_trustdom_query_4("password", &info
->password
, ps
, depth
))
4059 if(!lsa_io_trustdom_query_6("info_ex", &info
->info_ex
, ps
, depth
))
4063 DEBUG(0,("unsupported info-level: %d\n", info
->info_class
));
4070 /*******************************************************************
4071 Reads or writes an LSA_R_QUERY_TRUSTED_DOMAIN_INFO structure.
4072 ********************************************************************/
4074 BOOL
lsa_io_r_query_trusted_domain_info(const char *desc
,
4075 LSA_R_QUERY_TRUSTED_DOMAIN_INFO
*r_q
,
4076 prs_struct
*ps
, int depth
)
4081 prs_debug(ps
, depth
, desc
, "lsa_io_r_query_trusted_domain_info");
4084 if (!prs_pointer("trustdom", ps
, depth
, (void*)&r_q
->info
,
4085 sizeof(LSA_TRUSTED_DOMAIN_INFO
),
4086 (PRS_POINTER_CAST
)lsa_io_trustdom_query
) )
4092 if(!prs_ntstatus("status", ps
, depth
, &r_q
->status
))
4098 /*******************************************************************
4099 Inits an LSA_Q_QUERY_DOM_INFO_POLICY structure.
4100 ********************************************************************/
4102 void init_q_query_dom_info(LSA_Q_QUERY_DOM_INFO_POLICY
*in
, POLICY_HND
*hnd
, uint16 info_class
)
4104 DEBUG(5, ("init_q_query_dom_info\n"));
4106 memcpy(&in
->pol
, hnd
, sizeof(in
->pol
));
4108 in
->info_class
= info_class
;
4111 /*******************************************************************
4112 Reads or writes an LSA_Q_QUERY_DOM_INFO_POLICY structure.
4113 ********************************************************************/
4115 BOOL
lsa_io_q_query_dom_info(const char *desc
, LSA_Q_QUERY_DOM_INFO_POLICY
*in
, prs_struct
*ps
, int depth
)
4117 prs_debug(ps
, depth
, desc
, "lsa_io_q_query_dom_info");
4123 if(!smb_io_pol_hnd("pol", &in
->pol
, ps
, depth
))
4126 if(!prs_uint16("info_class", ps
, depth
, &in
->info_class
))
4132 /*******************************************************************
4133 Reads or writes an LSA_R_QUERY_DOM_INFO_POLICY structure.
4134 ********************************************************************/
4136 static BOOL
lsa_io_dominfo_query_3(const char *desc
, LSA_DOM_INFO_POLICY_KERBEROS
*krb_policy
,
4137 prs_struct
*ps
, int depth
)
4139 if (!prs_align_uint64(ps
))
4145 if (!prs_uint32("enforce_restrictions", ps
, depth
, &krb_policy
->enforce_restrictions
))
4148 if (!prs_align_uint64(ps
))
4151 if (!smb_io_nttime("service_tkt_lifetime", ps
, depth
, &krb_policy
->service_tkt_lifetime
))
4154 if (!prs_align_uint64(ps
))
4157 if (!smb_io_nttime("user_tkt_lifetime", ps
, depth
, &krb_policy
->user_tkt_lifetime
))
4160 if (!prs_align_uint64(ps
))
4163 if (!smb_io_nttime("user_tkt_renewaltime", ps
, depth
, &krb_policy
->user_tkt_renewaltime
))
4166 if (!prs_align_uint64(ps
))
4169 if (!smb_io_nttime("clock_skew", ps
, depth
, &krb_policy
->clock_skew
))
4172 if (!prs_align_uint64(ps
))
4175 if (!smb_io_nttime("unknown6", ps
, depth
, &krb_policy
->unknown6
))
4181 static BOOL
lsa_io_dom_info_query(const char *desc
, prs_struct
*ps
, int depth
, LSA_DOM_INFO_UNION
*info
)
4183 prs_debug(ps
, depth
, desc
, "lsa_io_dom_info_query");
4186 if(!prs_align_uint16(ps
))
4189 if(!prs_uint16("info_class", ps
, depth
, &info
->info_class
))
4192 switch (info
->info_class
) {
4194 if (!lsa_io_dominfo_query_3("krb_policy", &info
->krb_policy
, ps
, depth
))
4198 DEBUG(0,("unsupported info-level: %d\n", info
->info_class
));
4207 BOOL
lsa_io_r_query_dom_info(const char *desc
, LSA_R_QUERY_DOM_INFO_POLICY
*out
,
4208 prs_struct
*ps
, int depth
)
4210 prs_debug(ps
, depth
, desc
, "lsa_io_r_query_dom_info");
4213 if (!prs_pointer("dominfo", ps
, depth
, (void*)&out
->info
,
4214 sizeof(LSA_DOM_INFO_UNION
),
4215 (PRS_POINTER_CAST
)lsa_io_dom_info_query
) )
4218 if(!prs_ntstatus("status", ps
, depth
, &out
->status
))