2 * Unix SMB/Netbios implementation.
4 * RPC Pipe client / server routines
5 * Copyright (C) Andrew Tridgell 1992-1997,
6 * Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
7 * Copyright (C) Paul Ashton 1997.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 static BOOL lsa_io_trans_names(char *desc, LSA_TRANS_NAME_ENUM *trn, prs_struct *ps, int depth);
28 /*******************************************************************
29 Inits a LSA_TRANS_NAME structure.
30 ********************************************************************/
32 void init_lsa_trans_name(LSA_TRANS_NAME *trn, UNISTR2 *uni_name,
33 uint16 sid_name_use, char *name, uint32 idx)
35 int len_name = strlen(name);
40 trn->sid_name_use = sid_name_use;
41 init_uni_hdr(&trn->hdr_name, len_name);
42 init_unistr2(uni_name, name, len_name);
43 trn->domain_idx = idx;
46 /*******************************************************************
47 Reads or writes a LSA_TRANS_NAME structure.
48 ********************************************************************/
50 static BOOL lsa_io_trans_name(char *desc, LSA_TRANS_NAME *trn, prs_struct *ps,
53 prs_debug(ps, depth, desc, "lsa_io_trans_name");
59 if(!prs_uint16("sid_name_use", ps, depth, &trn->sid_name_use))
64 if(!smb_io_unihdr ("hdr_name", &trn->hdr_name, ps, depth))
66 if(!prs_uint32("domain_idx ", ps, depth, &trn->domain_idx))
72 /*******************************************************************
73 Reads or writes a DOM_R_REF structure.
74 ********************************************************************/
76 static BOOL lsa_io_dom_r_ref(char *desc, DOM_R_REF *r_r, prs_struct *ps,
81 prs_debug(ps, depth, desc, "lsa_io_dom_r_ref");
87 if(!prs_uint32("num_ref_doms_1", ps, depth, &r_r->num_ref_doms_1)) /* num referenced domains? */
89 if(!prs_uint32("ptr_ref_dom ", ps, depth, &r_r->ptr_ref_dom)) /* undocumented buffer pointer. */
91 if(!prs_uint32("max_entries ", ps, depth, &r_r->max_entries)) /* 32 - max number of entries */
94 SMB_ASSERT_ARRAY(r_r->hdr_ref_dom, r_r->num_ref_doms_1);
96 if (r_r->ptr_ref_dom != 0) {
98 if(!prs_uint32("num_ref_doms_2", ps, depth, &r_r->num_ref_doms_2)) /* 4 - num referenced domains? */
101 SMB_ASSERT_ARRAY(r_r->ref_dom, r_r->num_ref_doms_2);
103 for (i = 0; i < r_r->num_ref_doms_1; i++) {
106 slprintf(t, sizeof(t) - 1, "dom_ref[%d] ", i);
107 if(!smb_io_unihdr(t, &r_r->hdr_ref_dom[i].hdr_dom_name, ps, depth))
110 slprintf(t, sizeof(t) - 1, "sid_ptr[%d] ", i);
111 if(!prs_uint32(t, ps, depth, &r_r->hdr_ref_dom[i].ptr_dom_sid))
115 for (i = 0; i < r_r->num_ref_doms_2; i++) {
118 if (r_r->hdr_ref_dom[i].hdr_dom_name.buffer != 0) {
119 slprintf(t, sizeof(t) - 1, "dom_ref[%d] ", i);
120 if(!smb_io_unistr2(t, &r_r->ref_dom[i].uni_dom_name, True, ps, depth)) /* domain name unicode string */
126 if (r_r->hdr_ref_dom[i].ptr_dom_sid != 0) {
127 slprintf(t, sizeof(t) - 1, "sid_ptr[%d] ", i);
128 if(!smb_io_dom_sid2(t, &r_r->ref_dom[i].ref_dom, ps, depth)) /* referenced domain SIDs */
137 /*******************************************************************
138 Inits an LSA_SEC_QOS structure.
139 ********************************************************************/
141 void init_lsa_sec_qos(LSA_SEC_QOS *qos, uint16 imp_lev, uint8 ctxt, uint8 eff,
144 DEBUG(5, ("init_lsa_sec_qos\n"));
146 qos->len = 0x0c; /* length of quality of service block, in bytes */
147 qos->sec_imp_level = imp_lev;
148 qos->sec_ctxt_mode = ctxt;
149 qos->effective_only = eff;
150 qos->unknown = unknown;
153 /*******************************************************************
154 Reads or writes an LSA_SEC_QOS structure.
155 ********************************************************************/
157 static BOOL lsa_io_sec_qos(char *desc, LSA_SEC_QOS *qos, prs_struct *ps,
162 prs_debug(ps, depth, desc, "lsa_io_obj_qos");
168 start = prs_offset(ps);
170 /* these pointers had _better_ be zero, because we don't know
173 if(!prs_uint32("len ", ps, depth, &qos->len)) /* 0x18 - length (in bytes) inc. the length field. */
175 if(!prs_uint16("sec_imp_level ", ps, depth, &qos->sec_imp_level ))
177 if(!prs_uint8 ("sec_ctxt_mode ", ps, depth, &qos->sec_ctxt_mode ))
179 if(!prs_uint8 ("effective_only", ps, depth, &qos->effective_only))
181 if(!prs_uint32("unknown ", ps, depth, &qos->unknown))
184 if (qos->len != prs_offset(ps) - start) {
185 DEBUG(3,("lsa_io_sec_qos: length %x does not match size %x\n",
186 qos->len, prs_offset(ps) - start));
193 /*******************************************************************
194 Inits an LSA_OBJ_ATTR structure.
195 ********************************************************************/
197 void init_lsa_obj_attr(LSA_OBJ_ATTR *attr, uint32 attributes, LSA_SEC_QOS *qos)
199 DEBUG(5, ("init_lsa_obj_attr\n"));
201 attr->len = 0x18; /* length of object attribute block, in bytes */
202 attr->ptr_root_dir = 0;
203 attr->ptr_obj_name = 0;
204 attr->attributes = attributes;
205 attr->ptr_sec_desc = 0;
208 attr->ptr_sec_qos = 1;
211 attr->ptr_sec_qos = 0;
212 attr->sec_qos = NULL;
216 /*******************************************************************
217 Reads or writes an LSA_OBJ_ATTR structure.
218 ********************************************************************/
220 static BOOL lsa_io_obj_attr(char *desc, LSA_OBJ_ATTR *attr, prs_struct *ps,
225 prs_debug(ps, depth, desc, "lsa_io_obj_attr");
231 start = prs_offset(ps);
233 /* these pointers had _better_ be zero, because we don't know
236 if(!prs_uint32("len ", ps, depth, &attr->len)) /* 0x18 - length (in bytes) inc. the length field. */
238 if(!prs_uint32("ptr_root_dir", ps, depth, &attr->ptr_root_dir)) /* 0 - root directory (pointer) */
240 if(!prs_uint32("ptr_obj_name", ps, depth, &attr->ptr_obj_name)) /* 0 - object name (pointer) */
242 if(!prs_uint32("attributes ", ps, depth, &attr->attributes)) /* 0 - attributes (undocumented) */
244 if(!prs_uint32("ptr_sec_desc", ps, depth, &attr->ptr_sec_desc)) /* 0 - security descriptior (pointer) */
246 if(!prs_uint32("ptr_sec_qos ", ps, depth, &attr->ptr_sec_qos )) /* security quality of service (pointer) */
249 /* code commented out as it's not necessary true (tested with hyena). JFM, 11/22/2001 */
251 if (attr->len != prs_offset(ps) - start) {
252 DEBUG(3,("lsa_io_obj_attr: length %x does not match size %x\n",
253 attr->len, prs_offset(ps) - start));
258 if (attr->ptr_sec_qos != 0 && attr->sec_qos != NULL) {
259 if(!lsa_io_sec_qos("sec_qos", attr->sec_qos, ps, depth))
267 /*******************************************************************
268 Inits an LSA_Q_OPEN_POL structure.
269 ********************************************************************/
271 void init_q_open_pol(LSA_Q_OPEN_POL *r_q, uint16 system_name,
272 uint32 attributes, uint32 desired_access,
275 DEBUG(5, ("init_open_pol: attr:%d da:%d\n", attributes,
278 r_q->ptr = 1; /* undocumented pointer */
281 r_q->des_access = desired_access;
283 r_q->system_name = system_name;
284 init_lsa_obj_attr(&r_q->attr, attributes, qos);
287 /*******************************************************************
288 Reads or writes an LSA_Q_OPEN_POL structure.
289 ********************************************************************/
291 BOOL lsa_io_q_open_pol(char *desc, LSA_Q_OPEN_POL *r_q, prs_struct *ps,
294 prs_debug(ps, depth, desc, "lsa_io_q_open_pol");
297 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
299 if(!prs_uint16("system_name", ps, depth, &r_q->system_name))
304 if(!lsa_io_obj_attr("", &r_q->attr, ps, depth))
307 if (r_q->attr.ptr_sec_qos == 0) {
308 if(!prs_uint32("des_access", ps, depth, &r_q->des_access))
315 /*******************************************************************
316 Reads or writes an LSA_R_OPEN_POL structure.
317 ********************************************************************/
319 BOOL lsa_io_r_open_pol(char *desc, LSA_R_OPEN_POL *r_p, prs_struct *ps,
322 prs_debug(ps, depth, desc, "lsa_io_r_open_pol");
325 if(!smb_io_pol_hnd("", &r_p->pol, ps, depth))
328 if(!prs_ntstatus("status", ps, depth, &r_p->status))
334 /*******************************************************************
335 Inits an LSA_Q_OPEN_POL2 structure.
336 ********************************************************************/
338 void init_q_open_pol2(LSA_Q_OPEN_POL2 *r_q, char *server_name,
339 uint32 attributes, uint32 desired_access,
342 DEBUG(5, ("init_q_open_pol2: attr:%d da:%d\n", attributes,
345 r_q->ptr = 1; /* undocumented pointer */
348 r_q->des_access = desired_access;
350 init_unistr2(&r_q->uni_server_name, server_name,
351 strlen(server_name) + 1);
353 init_lsa_obj_attr(&r_q->attr, attributes, qos);
356 /*******************************************************************
357 Reads or writes an LSA_Q_OPEN_POL2 structure.
358 ********************************************************************/
360 BOOL lsa_io_q_open_pol2(char *desc, LSA_Q_OPEN_POL2 *r_q, prs_struct *ps,
363 prs_debug(ps, depth, desc, "lsa_io_q_open_pol2");
366 if(!prs_uint32("ptr ", ps, depth, &r_q->ptr))
369 if(!smb_io_unistr2 ("", &r_q->uni_server_name, r_q->ptr, ps, depth))
371 if(!lsa_io_obj_attr("", &r_q->attr, ps, depth))
374 if (r_q->attr.ptr_sec_qos == 0) {
375 if(!prs_uint32("des_access", ps, depth, &r_q->des_access))
382 /*******************************************************************
383 Reads or writes an LSA_R_OPEN_POL2 structure.
384 ********************************************************************/
386 BOOL lsa_io_r_open_pol2(char *desc, LSA_R_OPEN_POL2 *r_p, prs_struct *ps,
389 prs_debug(ps, depth, desc, "lsa_io_r_open_pol2");
392 if(!smb_io_pol_hnd("", &r_p->pol, ps, depth))
395 if(!prs_ntstatus("status", ps, depth, &r_p->status))
401 /*******************************************************************
402 makes an LSA_Q_QUERY_SEC_OBJ structure.
403 ********************************************************************/
405 void init_q_query_sec_obj(LSA_Q_QUERY_SEC_OBJ *q_q, const POLICY_HND *hnd,
408 DEBUG(5, ("init_q_query_sec_obj\n"));
411 q_q->sec_info = sec_info;
416 /*******************************************************************
417 Reads or writes an LSA_Q_QUERY_SEC_OBJ structure.
418 ********************************************************************/
420 BOOL lsa_io_q_query_sec_obj(char *desc, LSA_Q_QUERY_SEC_OBJ *q_q,
421 prs_struct *ps, int depth)
423 prs_debug(ps, depth, desc, "lsa_io_q_query_sec_obj");
426 if (!smb_io_pol_hnd("", &q_q->pol, ps, depth))
429 if (!prs_uint32("sec_info", ps, depth, &q_q->sec_info))
435 /*******************************************************************
436 Reads or writes a LSA_R_QUERY_SEC_OBJ structure.
437 ********************************************************************/
439 BOOL lsa_io_r_query_sec_obj(char *desc, LSA_R_QUERY_SEC_OBJ *r_u,
440 prs_struct *ps, int depth)
442 prs_debug(ps, depth, desc, "lsa_io_r_query_sec_obj");
448 if (!prs_uint32("ptr", ps, depth, &r_u->ptr))
452 if (!sec_io_desc_buf("sec", &r_u->buf, ps, depth))
456 if (!prs_ntstatus("status", ps, depth, &r_u->status))
462 /*******************************************************************
463 Inits an LSA_Q_QUERY_INFO structure.
464 ********************************************************************/
466 void init_q_query(LSA_Q_QUERY_INFO *q_q, POLICY_HND *hnd, uint16 info_class)
468 DEBUG(5, ("init_q_query\n"));
470 memcpy(&q_q->pol, hnd, sizeof(q_q->pol));
472 q_q->info_class = info_class;
475 /*******************************************************************
476 Reads or writes an LSA_Q_QUERY_INFO structure.
477 ********************************************************************/
479 BOOL lsa_io_q_query(char *desc, LSA_Q_QUERY_INFO *q_q, prs_struct *ps,
482 prs_debug(ps, depth, desc, "lsa_io_q_query");
485 if(!smb_io_pol_hnd("", &q_q->pol, ps, depth))
488 if(!prs_uint16("info_class", ps, depth, &q_q->info_class))
494 /*******************************************************************
495 makes an LSA_Q_ENUM_TRUST_DOM structure.
496 ********************************************************************/
497 BOOL init_q_enum_trust_dom(LSA_Q_ENUM_TRUST_DOM * q_e, POLICY_HND *pol,
498 uint32 enum_context, uint32 preferred_len)
500 DEBUG(5, ("init_q_enum_trust_dom\n"));
503 q_e->enum_context = enum_context;
504 q_e->preferred_len = preferred_len;
509 /*******************************************************************
510 Reads or writes an LSA_Q_ENUM_TRUST_DOM structure.
511 ********************************************************************/
513 BOOL lsa_io_q_enum_trust_dom(char *desc, LSA_Q_ENUM_TRUST_DOM *q_e,
514 prs_struct *ps, int depth)
516 prs_debug(ps, depth, desc, "lsa_io_q_enum_trust_dom");
519 if(!smb_io_pol_hnd("", &q_e->pol, ps, depth))
522 if(!prs_uint32("enum_context ", ps, depth, &q_e->enum_context))
524 if(!prs_uint32("preferred_len", ps, depth, &q_e->preferred_len))
530 /*******************************************************************
531 Inits an LSA_R_ENUM_TRUST_DOM structure.
532 ********************************************************************/
534 void init_r_enum_trust_dom(TALLOC_CTX *ctx, LSA_R_ENUM_TRUST_DOM *r_e, uint32 enum_context,
535 char *domain_name, DOM_SID *domain_sid,
538 DEBUG(5, ("init_r_enum_trust_dom\n"));
540 r_e->enum_context = enum_context;
542 if (NT_STATUS_IS_OK(status)) {
543 int len_domain_name = strlen(domain_name) + 1;
545 r_e->num_domains = 1;
546 r_e->ptr_enum_domains = 1;
547 r_e->num_domains2 = 1;
549 if (!(r_e->hdr_domain_name = (UNIHDR2 *)talloc(ctx,sizeof(UNIHDR2))))
552 if (!(r_e->uni_domain_name = (UNISTR2 *)talloc(ctx,sizeof(UNISTR2))))
555 if (!(r_e->domain_sid = (DOM_SID2 *)talloc(ctx,sizeof(DOM_SID2))))
558 init_uni_hdr2(&r_e->hdr_domain_name[0], len_domain_name);
559 init_unistr2 (&r_e->uni_domain_name[0], domain_name,
561 init_dom_sid2(&r_e->domain_sid[0], domain_sid);
563 r_e->num_domains = 0;
564 r_e->ptr_enum_domains = 0;
567 r_e->status = status;
570 /*******************************************************************
571 Reads or writes an LSA_R_ENUM_TRUST_DOM structure.
572 ********************************************************************/
574 BOOL lsa_io_r_enum_trust_dom(char *desc, LSA_R_ENUM_TRUST_DOM *r_e,
575 prs_struct *ps, int depth)
577 prs_debug(ps, depth, desc, "lsa_io_r_enum_trust_dom");
580 if(!prs_uint32("enum_context ", ps, depth, &r_e->enum_context))
582 if(!prs_uint32("num_domains ", ps, depth, &r_e->num_domains))
584 if(!prs_uint32("ptr_enum_domains", ps, depth, &r_e->ptr_enum_domains))
587 if (r_e->ptr_enum_domains) {
590 if(!prs_uint32("num_domains2", ps, depth, &r_e->num_domains2))
593 num_domains = r_e->num_domains2;
595 if (UNMARSHALLING(ps)) {
596 if (!(r_e->hdr_domain_name = (UNIHDR2 *)prs_alloc_mem(ps,sizeof(UNIHDR2) * num_domains)))
599 if (!(r_e->uni_domain_name = (UNISTR2 *)prs_alloc_mem(ps,sizeof(UNISTR2) * num_domains)))
602 if (!(r_e->domain_sid = (DOM_SID2 *)prs_alloc_mem(ps,sizeof(DOM_SID2) * num_domains)))
606 for (i = 0; i < num_domains; i++) {
607 if(!smb_io_unihdr2 ("", &r_e->hdr_domain_name[i], ps,
612 for (i = 0; i < num_domains; i++) {
613 if(!smb_io_unistr2 ("", &r_e->uni_domain_name[i],
614 r_e->hdr_domain_name[i].buffer,
617 if(!smb_io_dom_sid2("", &r_e->domain_sid[i], ps,
623 if(!prs_ntstatus("status", ps, depth, &r_e->status))
629 /*******************************************************************
630 reads or writes a dom query structure.
631 ********************************************************************/
633 static BOOL lsa_io_dom_query(char *desc, DOM_QUERY *d_q, prs_struct *ps, int depth)
638 prs_debug(ps, depth, desc, "lsa_io_dom_query");
644 if(!prs_uint16("uni_dom_max_len", ps, depth, &d_q->uni_dom_max_len)) /* domain name string length * 2 */
646 if(!prs_uint16("uni_dom_str_len", ps, depth, &d_q->uni_dom_str_len)) /* domain name string length * 2 */
649 if(!prs_uint32("buffer_dom_name", ps, depth, &d_q->buffer_dom_name)) /* undocumented domain name string buffer pointer */
651 if(!prs_uint32("buffer_dom_sid ", ps, depth, &d_q->buffer_dom_sid)) /* undocumented domain SID string buffer pointer */
654 if(!smb_io_unistr2("unistr2", &d_q->uni_domain_name, d_q->buffer_dom_name, ps, depth)) /* domain name (unicode string) */
660 if (d_q->buffer_dom_sid != 0) {
661 if(!smb_io_dom_sid2("", &d_q->dom_sid, ps, depth)) /* domain SID */
664 memset((char *)&d_q->dom_sid, '\0', sizeof(d_q->dom_sid));
670 /*******************************************************************
671 reads or writes a structure.
672 ********************************************************************/
674 static BOOL lsa_io_dom_query_2(char *desc, DOM_QUERY_2 *d_q, prs_struct *ps, int depth)
681 prs_debug(ps, depth, desc, "lsa_io_dom_query_2");
687 if (!prs_uint32("auditing_enabled", ps, depth, &d_q->auditing_enabled))
689 if (!prs_uint32("ptr ", ps, depth, &ptr))
691 if (!prs_uint32("count1", ps, depth, &d_q->count1))
693 if (!prs_uint32("count2", ps, depth, &d_q->count2))
696 if (UNMARSHALLING(ps)) {
697 d_q->auditsettings = (uint32 *)talloc_zero(ps->mem_ctx, d_q->count2 * sizeof(uint32));
700 if (d_q->auditsettings == NULL) {
701 DEBUG(1, ("lsa_io_dom_query_2: NULL auditsettings!\n"));
705 if (!prs_uint32s(False, "auditsettings", ps, depth, d_q->auditsettings, d_q->count2))
711 /*******************************************************************
712 Reads or writes a dom query structure.
713 ********************************************************************/
715 static BOOL lsa_io_dom_query_3(char *desc, DOM_QUERY_3 *d_q, prs_struct *ps, int depth)
717 return lsa_io_dom_query("", d_q, ps, depth);
720 /*******************************************************************
721 Reads or writes a dom query structure.
722 ********************************************************************/
724 BOOL lsa_io_dom_query_5(char *desc, DOM_QUERY_5 *d_q, prs_struct *ps, int depth)
726 return lsa_io_dom_query("", d_q, ps, depth);
729 /*******************************************************************
730 Reads or writes a dom query structure.
731 ********************************************************************/
733 static BOOL lsa_io_dom_query_6(char *desc, DOM_QUERY_6 *d_q, prs_struct *ps, int depth)
738 prs_debug(ps, depth, desc, "lsa_io_dom_query_6");
741 if (!prs_uint16("server_role", ps, depth, &d_q->server_role))
747 /*******************************************************************
748 Reads or writes an LSA_R_QUERY_INFO structure.
749 ********************************************************************/
751 BOOL lsa_io_r_query(char *desc, LSA_R_QUERY_INFO *r_q, prs_struct *ps,
754 prs_debug(ps, depth, desc, "lsa_io_r_query");
757 if(!prs_uint32("undoc_buffer", ps, depth, &r_q->undoc_buffer))
760 if (r_q->undoc_buffer != 0) {
761 if(!prs_uint16("info_class", ps, depth, &r_q->info_class))
767 switch (r_q->info_class) {
769 if(!lsa_io_dom_query_2("", &r_q->dom.id2, ps, depth))
773 if(!lsa_io_dom_query_3("", &r_q->dom.id3, ps, depth))
777 if(!lsa_io_dom_query_5("", &r_q->dom.id5, ps, depth))
781 if(!lsa_io_dom_query_6("", &r_q->dom.id6, ps, depth))
793 if(!prs_ntstatus("status", ps, depth, &r_q->status))
799 /*******************************************************************
800 Inits a LSA_SID_ENUM structure.
801 ********************************************************************/
803 void init_lsa_sid_enum(TALLOC_CTX *mem_ctx, LSA_SID_ENUM *sen,
804 int num_entries, DOM_SID *sids)
808 DEBUG(5, ("init_lsa_sid_enum\n"));
810 sen->num_entries = num_entries;
811 sen->ptr_sid_enum = (num_entries != 0);
812 sen->num_entries2 = num_entries;
814 /* Allocate memory for sids and sid pointers */
816 if (num_entries == 0) return;
818 if ((sen->ptr_sid = (uint32 *)talloc_zero(mem_ctx, num_entries *
819 sizeof(uint32))) == NULL) {
820 DEBUG(3, ("init_lsa_sid_enum(): out of memory for ptr_sid\n"));
824 if ((sen->sid = (DOM_SID2 *)talloc_zero(mem_ctx, num_entries *
825 sizeof(DOM_SID2))) == NULL) {
826 DEBUG(3, ("init_lsa_sid_enum(): out of memory for sids\n"));
830 /* Copy across SIDs and SID pointers */
832 for (i = 0; i < num_entries; i++) {
834 init_dom_sid2(&sen->sid[i], &sids[i]);
838 /*******************************************************************
839 Reads or writes a LSA_SID_ENUM structure.
840 ********************************************************************/
842 static BOOL lsa_io_sid_enum(char *desc, LSA_SID_ENUM *sen, prs_struct *ps,
847 prs_debug(ps, depth, desc, "lsa_io_sid_enum");
853 if(!prs_uint32("num_entries ", ps, depth, &sen->num_entries))
855 if(!prs_uint32("ptr_sid_enum", ps, depth, &sen->ptr_sid_enum))
859 if the ptr is NULL, leave here. checked from a real w2k trace.
863 if (sen->ptr_sid_enum==0)
866 if(!prs_uint32("num_entries2", ps, depth, &sen->num_entries2))
869 /* Mallocate memory if we're unpacking from the wire */
871 if (UNMARSHALLING(ps)) {
872 if ((sen->ptr_sid = (uint32 *)prs_alloc_mem( ps,
873 sen->num_entries * sizeof(uint32))) == NULL) {
874 DEBUG(3, ("init_lsa_sid_enum(): out of memory for "
879 if ((sen->sid = (DOM_SID2 *)prs_alloc_mem( ps,
880 sen->num_entries * sizeof(DOM_SID2))) == NULL) {
881 DEBUG(3, ("init_lsa_sid_enum(): out of memory for "
887 for (i = 0; i < sen->num_entries; i++) {
890 slprintf(temp, sizeof(temp) - 1, "ptr_sid[%d]", i);
891 if(!prs_uint32(temp, ps, depth, &sen->ptr_sid[i])) {
896 for (i = 0; i < sen->num_entries; i++) {
899 slprintf(temp, sizeof(temp) - 1, "sid[%d]", i);
900 if(!smb_io_dom_sid2(temp, &sen->sid[i], ps, depth)) {
908 /*******************************************************************
909 Inits an LSA_R_ENUM_TRUST_DOM structure.
910 ********************************************************************/
912 void init_q_lookup_sids(TALLOC_CTX *mem_ctx, LSA_Q_LOOKUP_SIDS *q_l,
913 POLICY_HND *hnd, int num_sids, DOM_SID *sids,
916 DEBUG(5, ("init_r_enum_trust_dom\n"));
920 memcpy(&q_l->pol, hnd, sizeof(q_l->pol));
921 init_lsa_sid_enum(mem_ctx, &q_l->sids, num_sids, sids);
923 q_l->level.value = level;
926 /*******************************************************************
927 Reads or writes a LSA_Q_LOOKUP_SIDS structure.
928 ********************************************************************/
930 BOOL lsa_io_q_lookup_sids(char *desc, LSA_Q_LOOKUP_SIDS *q_s, prs_struct *ps,
933 prs_debug(ps, depth, desc, "lsa_io_q_lookup_sids");
939 if(!smb_io_pol_hnd("pol_hnd", &q_s->pol, ps, depth)) /* policy handle */
941 if(!lsa_io_sid_enum("sids ", &q_s->sids, ps, depth)) /* sids to be looked up */
943 if(!lsa_io_trans_names("names ", &q_s->names, ps, depth)) /* translated names */
945 if(!smb_io_lookup_level("switch ", &q_s->level, ps, depth)) /* lookup level */
948 if(!prs_uint32("mapped_count", ps, depth, &q_s->mapped_count))
954 /*******************************************************************
955 Reads or writes a structure.
956 ********************************************************************/
958 static BOOL lsa_io_trans_names(char *desc, LSA_TRANS_NAME_ENUM *trn,
959 prs_struct *ps, int depth)
963 prs_debug(ps, depth, desc, "lsa_io_trans_names");
969 if(!prs_uint32("num_entries ", ps, depth, &trn->num_entries))
971 if(!prs_uint32("ptr_trans_names", ps, depth, &trn->ptr_trans_names))
974 if (trn->ptr_trans_names != 0) {
975 if(!prs_uint32("num_entries2 ", ps, depth,
979 if (UNMARSHALLING(ps)) {
980 if ((trn->name = (LSA_TRANS_NAME *)
981 prs_alloc_mem(ps, trn->num_entries *
982 sizeof(LSA_TRANS_NAME))) == NULL) {
986 if ((trn->uni_name = (UNISTR2 *)
987 prs_alloc_mem(ps, trn->num_entries *
988 sizeof(UNISTR2))) == NULL) {
993 for (i = 0; i < trn->num_entries2; i++) {
995 slprintf(t, sizeof(t) - 1, "name[%d] ", i);
997 if(!lsa_io_trans_name(t, &trn->name[i], ps, depth)) /* translated name */
1001 for (i = 0; i < trn->num_entries2; i++) {
1003 slprintf(t, sizeof(t) - 1, "name[%d] ", i);
1005 if(!smb_io_unistr2(t, &trn->uni_name[i], trn->name[i].hdr_name.buffer, ps, depth))
1015 /*******************************************************************
1016 Reads or writes a structure.
1017 ********************************************************************/
1019 BOOL lsa_io_r_lookup_sids(char *desc, LSA_R_LOOKUP_SIDS *r_s,
1020 prs_struct *ps, int depth)
1022 prs_debug(ps, depth, desc, "lsa_io_r_lookup_sids");
1028 if(!prs_uint32("ptr_dom_ref", ps, depth, &r_s->ptr_dom_ref))
1031 if (r_s->ptr_dom_ref != 0)
1032 if(!lsa_io_dom_r_ref ("dom_ref", r_s->dom_ref, ps, depth)) /* domain reference info */
1035 if(!lsa_io_trans_names("names ", r_s->names, ps, depth)) /* translated names */
1041 if(!prs_uint32("mapped_count", ps, depth, &r_s->mapped_count))
1044 if(!prs_ntstatus("status ", ps, depth, &r_s->status))
1050 /*******************************************************************
1052 ********************************************************************/
1054 void init_q_lookup_names(TALLOC_CTX *mem_ctx, LSA_Q_LOOKUP_NAMES *q_l,
1055 POLICY_HND *hnd, int num_names, char **names)
1059 DEBUG(5, ("init_q_lookup_names\n"));
1064 q_l->num_entries = num_names;
1065 q_l->num_entries2 = num_names;
1066 q_l->lookup_level = 1;
1068 if ((q_l->uni_name = (UNISTR2 *)talloc_zero(
1069 mem_ctx, num_names * sizeof(UNISTR2))) == NULL) {
1070 DEBUG(3, ("init_q_lookup_names(): out of memory\n"));
1074 if ((q_l->hdr_name = (UNIHDR *)talloc_zero(
1075 mem_ctx, num_names * sizeof(UNIHDR))) == NULL) {
1076 DEBUG(3, ("init_q_lookup_names(): out of memory\n"));
1080 for (i = 0; i < num_names; i++) {
1081 char* name = names[i];
1082 int len = strlen(name);
1084 init_uni_hdr(&q_l->hdr_name[i], len);
1085 init_unistr2(&q_l->uni_name[i], name, len);
1089 /*******************************************************************
1090 reads or writes a structure.
1091 ********************************************************************/
1093 BOOL lsa_io_q_lookup_names(char *desc, LSA_Q_LOOKUP_NAMES *q_r,
1094 prs_struct *ps, int depth)
1098 prs_debug(ps, depth, desc, "lsa_io_q_lookup_names");
1104 if(!smb_io_pol_hnd("", &q_r->pol, ps, depth)) /* policy handle */
1109 if(!prs_uint32("num_entries ", ps, depth, &q_r->num_entries))
1111 if(!prs_uint32("num_entries2 ", ps, depth, &q_r->num_entries2))
1114 if (UNMARSHALLING(ps)) {
1115 if (q_r->num_entries) {
1116 if ((q_r->hdr_name = (UNIHDR *)prs_alloc_mem(ps,
1117 q_r->num_entries * sizeof(UNIHDR))) == NULL)
1119 if ((q_r->uni_name = (UNISTR2 *)prs_alloc_mem(ps,
1120 q_r->num_entries * sizeof(UNISTR2))) == NULL)
1125 for (i = 0; i < q_r->num_entries; i++) {
1128 if(!smb_io_unihdr("hdr_name", &q_r->hdr_name[i], ps, depth)) /* pointer names */
1132 for (i = 0; i < q_r->num_entries; i++) {
1135 if(!smb_io_unistr2("dom_name", &q_r->uni_name[i], q_r->hdr_name[i].buffer, ps, depth)) /* names to be looked up */
1141 if(!prs_uint32("num_trans_entries ", ps, depth, &q_r->num_trans_entries))
1143 if(!prs_uint32("ptr_trans_sids ", ps, depth, &q_r->ptr_trans_sids))
1145 if(!prs_uint32("lookup_level ", ps, depth, &q_r->lookup_level))
1147 if(!prs_uint32("mapped_count ", ps, depth, &q_r->mapped_count))
1153 /*******************************************************************
1154 reads or writes a structure.
1155 ********************************************************************/
1157 BOOL lsa_io_r_lookup_names(char *desc, LSA_R_LOOKUP_NAMES *r_r,
1158 prs_struct *ps, int depth)
1162 prs_debug(ps, depth, desc, "lsa_io_r_lookup_names");
1168 if(!prs_uint32("ptr_dom_ref", ps, depth, &r_r->ptr_dom_ref))
1171 if (r_r->ptr_dom_ref != 0)
1172 if(!lsa_io_dom_r_ref("", r_r->dom_ref, ps, depth))
1175 if(!prs_uint32("num_entries", ps, depth, &r_r->num_entries))
1177 if(!prs_uint32("ptr_entries", ps, depth, &r_r->ptr_entries))
1180 if (r_r->ptr_entries != 0) {
1181 if(!prs_uint32("num_entries2", ps, depth, &r_r->num_entries2))
1184 if (r_r->num_entries2 != r_r->num_entries) {
1189 if (UNMARSHALLING(ps)) {
1190 if ((r_r->dom_rid = (DOM_RID2 *)prs_alloc_mem(ps, r_r->num_entries2 * sizeof(DOM_RID2)))
1192 DEBUG(3, ("lsa_io_r_lookup_names(): out of memory\n"));
1197 for (i = 0; i < r_r->num_entries2; i++)
1198 if(!smb_io_dom_rid2("", &r_r->dom_rid[i], ps, depth)) /* domain RIDs being looked up */
1202 if(!prs_uint32("mapped_count", ps, depth, &r_r->mapped_count))
1205 if(!prs_ntstatus("status ", ps, depth, &r_r->status))
1212 /*******************************************************************
1213 Inits an LSA_Q_CLOSE structure.
1214 ********************************************************************/
1216 void init_lsa_q_close(LSA_Q_CLOSE *q_c, POLICY_HND *hnd)
1218 DEBUG(5, ("init_lsa_q_close\n"));
1220 memcpy(&q_c->pol, hnd, sizeof(q_c->pol));
1223 /*******************************************************************
1224 Reads or writes an LSA_Q_CLOSE structure.
1225 ********************************************************************/
1227 BOOL lsa_io_q_close(char *desc, LSA_Q_CLOSE *q_c, prs_struct *ps, int depth)
1229 prs_debug(ps, depth, desc, "lsa_io_q_close");
1232 if(!smb_io_pol_hnd("", &q_c->pol, ps, depth))
1238 /*******************************************************************
1239 Reads or writes an LSA_R_CLOSE structure.
1240 ********************************************************************/
1242 BOOL lsa_io_r_close(char *desc, LSA_R_CLOSE *r_c, prs_struct *ps, int depth)
1244 prs_debug(ps, depth, desc, "lsa_io_r_close");
1247 if(!smb_io_pol_hnd("", &r_c->pol, ps, depth))
1250 if(!prs_ntstatus("status", ps, depth, &r_c->status))
1256 /*******************************************************************
1257 Reads or writes an LSA_Q_OPEN_SECRET structure.
1258 ********************************************************************/
1260 BOOL lsa_io_q_open_secret(char *desc, LSA_Q_OPEN_SECRET *q_c, prs_struct *ps, int depth)
1262 prs_debug(ps, depth, desc, "lsa_io_q_open_secret");
1265 /* Don't bother to read or write at present... */
1269 /*******************************************************************
1270 Reads or writes an LSA_R_OPEN_SECRET structure.
1271 ********************************************************************/
1273 BOOL lsa_io_r_open_secret(char *desc, LSA_R_OPEN_SECRET *r_c, prs_struct *ps, int depth)
1275 prs_debug(ps, depth, desc, "lsa_io_r_open_secret");
1281 if(!prs_uint32("dummy1", ps, depth, &r_c->dummy1))
1283 if(!prs_uint32("dummy2", ps, depth, &r_c->dummy2))
1285 if(!prs_uint32("dummy3", ps, depth, &r_c->dummy3))
1287 if(!prs_uint32("dummy4", ps, depth, &r_c->dummy4))
1289 if(!prs_ntstatus("status", ps, depth, &r_c->status))
1295 /*******************************************************************
1296 Inits an LSA_Q_ENUM_PRIVS structure.
1297 ********************************************************************/
1299 void init_q_enum_privs(LSA_Q_ENUM_PRIVS *q_q, POLICY_HND *hnd, uint32 enum_context, uint32 pref_max_length)
1301 DEBUG(5, ("init_q_enum_privs\n"));
1303 memcpy(&q_q->pol, hnd, sizeof(q_q->pol));
1305 q_q->enum_context = enum_context;
1306 q_q->pref_max_length = pref_max_length;
1309 /*******************************************************************
1310 reads or writes a structure.
1311 ********************************************************************/
1312 BOOL lsa_io_q_enum_privs(char *desc, LSA_Q_ENUM_PRIVS *q_q, prs_struct *ps, int depth)
1317 prs_debug(ps, depth, desc, "lsa_io_q_enum_privs");
1320 if (!smb_io_pol_hnd("", &q_q->pol, ps, depth))
1323 if(!prs_uint32("enum_context ", ps, depth, &q_q->enum_context))
1325 if(!prs_uint32("pref_max_length", ps, depth, &q_q->pref_max_length))
1331 /*******************************************************************
1332 reads or writes a structure.
1333 ********************************************************************/
1334 static BOOL lsa_io_priv_entries(char *desc, LSA_PRIV_ENTRY *entries, uint32 count, prs_struct *ps, int depth)
1338 if (entries == NULL)
1341 prs_debug(ps, depth, desc, "lsa_io_priv_entries");
1347 for (i = 0; i < count; i++) {
1348 if (!smb_io_unihdr("", &entries[i].hdr_name, ps, depth))
1350 if(!prs_uint32("luid_low ", ps, depth, &entries[i].luid_low))
1352 if(!prs_uint32("luid_high", ps, depth, &entries[i].luid_high))
1356 for (i = 0; i < count; i++)
1357 if (!smb_io_unistr2("", &entries[i].name, entries[i].hdr_name.buffer, ps, depth))
1363 /*******************************************************************
1364 Inits an LSA_R_ENUM_PRIVS structure.
1365 ********************************************************************/
1367 void init_lsa_r_enum_privs(LSA_R_ENUM_PRIVS *r_u, uint32 enum_context,
1368 uint32 count, LSA_PRIV_ENTRY *entries)
1370 DEBUG(5, ("init_lsa_r_enum_privs\n"));
1372 r_u->enum_context=enum_context;
1375 if (entries!=NULL) {
1386 /*******************************************************************
1387 reads or writes a structure.
1388 ********************************************************************/
1389 BOOL lsa_io_r_enum_privs(char *desc, LSA_R_ENUM_PRIVS *r_q, prs_struct *ps, int depth)
1394 prs_debug(ps, depth, desc, "lsa_io_r_enum_privs");
1400 if(!prs_uint32("enum_context", ps, depth, &r_q->enum_context))
1402 if(!prs_uint32("count", ps, depth, &r_q->count))
1404 if(!prs_uint32("ptr", ps, depth, &r_q->ptr))
1408 if(!prs_uint32("count1", ps, depth, &r_q->count1))
1411 if (UNMARSHALLING(ps))
1412 if (!(r_q->privs = (LSA_PRIV_ENTRY *)prs_alloc_mem(ps, sizeof(LSA_PRIV_ENTRY) * r_q->count1)))
1415 if (!lsa_io_priv_entries("", r_q->privs, r_q->count1, ps, depth))
1422 if(!prs_ntstatus("status", ps, depth, &r_q->status))
1428 void init_lsa_priv_get_dispname(LSA_Q_PRIV_GET_DISPNAME *trn, POLICY_HND *hnd, char *name, uint16 lang_id, uint16 lang_id_sys)
1430 int len_name = strlen(name);
1435 memcpy(&trn->pol, hnd, sizeof(trn->pol));
1437 init_uni_hdr(&trn->hdr_name, len_name);
1438 init_unistr2(&trn->name, name, len_name);
1439 trn->lang_id = lang_id;
1440 trn->lang_id_sys = lang_id_sys;
1443 /*******************************************************************
1444 reads or writes a structure.
1445 ********************************************************************/
1446 BOOL lsa_io_q_priv_get_dispname(char *desc, LSA_Q_PRIV_GET_DISPNAME *q_q, prs_struct *ps, int depth)
1451 prs_debug(ps, depth, desc, "lsa_io_q_priv_get_dispname");
1457 if (!smb_io_pol_hnd("", &q_q->pol, ps, depth))
1460 if (!smb_io_unihdr("hdr_name", &q_q->hdr_name, ps, depth))
1463 if (!smb_io_unistr2("name", &q_q->name, q_q->hdr_name.buffer, ps, depth))
1466 if(!prs_uint16("lang_id ", ps, depth, &q_q->lang_id))
1468 if(!prs_uint16("lang_id_sys", ps, depth, &q_q->lang_id_sys))
1474 /*******************************************************************
1475 reads or writes a structure.
1476 ********************************************************************/
1477 BOOL lsa_io_r_priv_get_dispname(char *desc, LSA_R_PRIV_GET_DISPNAME *r_q, prs_struct *ps, int depth)
1482 prs_debug(ps, depth, desc, "lsa_io_r_priv_get_dispname");
1488 if (!prs_uint32("ptr_info", ps, depth, &r_q->ptr_info))
1492 if (!smb_io_unihdr("hdr_name", &r_q->hdr_desc, ps, depth))
1495 if (!smb_io_unistr2("desc", &r_q->desc, r_q->hdr_desc.buffer, ps, depth))
1502 if(!prs_uint16("lang_id", ps, depth, &r_q->lang_id))
1507 if(!prs_ntstatus("status", ps, depth, &r_q->status))
1513 void init_lsa_q_enum_accounts(LSA_Q_ENUM_ACCOUNTS *trn, POLICY_HND *hnd, uint32 enum_context, uint32 pref_max_length)
1515 memcpy(&trn->pol, hnd, sizeof(trn->pol));
1517 trn->enum_context = enum_context;
1518 trn->pref_max_length = pref_max_length;
1521 /*******************************************************************
1522 reads or writes a structure.
1523 ********************************************************************/
1524 BOOL lsa_io_q_enum_accounts(char *desc, LSA_Q_ENUM_ACCOUNTS *q_q, prs_struct *ps, int depth)
1529 prs_debug(ps, depth, desc, "lsa_io_q_enum_accounts");
1532 if (!smb_io_pol_hnd("", &q_q->pol, ps, depth))
1535 if(!prs_uint32("enum_context ", ps, depth, &q_q->enum_context))
1537 if(!prs_uint32("pref_max_length", ps, depth, &q_q->pref_max_length))
1543 /*******************************************************************
1544 Inits an LSA_R_ENUM_PRIVS structure.
1545 ********************************************************************/
1547 void init_lsa_r_enum_accounts(LSA_R_ENUM_ACCOUNTS *r_u, uint32 enum_context)
1549 DEBUG(5, ("init_lsa_r_enum_accounts\n"));
1551 r_u->enum_context=enum_context;
1552 if (r_u->enum_context!=0) {
1553 r_u->sids.num_entries=enum_context;
1554 r_u->sids.ptr_sid_enum=1;
1555 r_u->sids.num_entries2=enum_context;
1557 r_u->sids.num_entries=0;
1558 r_u->sids.ptr_sid_enum=0;
1559 r_u->sids.num_entries2=0;
1563 /*******************************************************************
1564 reads or writes a structure.
1565 ********************************************************************/
1566 BOOL lsa_io_r_enum_accounts(char *desc, LSA_R_ENUM_ACCOUNTS *r_q, prs_struct *ps, int depth)
1571 prs_debug(ps, depth, desc, "lsa_io_r_enum_accounts");
1577 if(!prs_uint32("enum_context", ps, depth, &r_q->enum_context))
1580 if (!lsa_io_sid_enum("sids", &r_q->sids, ps, depth))
1586 if(!prs_ntstatus("status", ps, depth, &r_q->status))
1593 /*******************************************************************
1594 Reads or writes an LSA_Q_UNK_GET_CONNUSER structure.
1595 ********************************************************************/
1597 BOOL lsa_io_q_unk_get_connuser(char *desc, LSA_Q_UNK_GET_CONNUSER *q_c, prs_struct *ps, int depth)
1599 prs_debug(ps, depth, desc, "lsa_io_q_unk_get_connuser");
1605 if(!prs_uint32("ptr_srvname", ps, depth, &q_c->ptr_srvname))
1608 if(!smb_io_unistr2("uni2_srvname", &q_c->uni2_srvname, q_c->ptr_srvname, ps, depth)) /* server name to be looked up */
1611 if(!prs_uint32("unk1", ps, depth, &q_c->unk1))
1613 if(!prs_uint32("unk2", ps, depth, &q_c->unk2))
1615 if(!prs_uint32("unk3", ps, depth, &q_c->unk3))
1618 /* Don't bother to read or write at present... */
1622 /*******************************************************************
1623 Reads or writes an LSA_R_UNK_GET_CONNUSER structure.
1624 ********************************************************************/
1626 BOOL lsa_io_r_unk_get_connuser(char *desc, LSA_R_UNK_GET_CONNUSER *r_c, prs_struct *ps, int depth)
1628 prs_debug(ps, depth, desc, "lsa_io_r_unk_get_connuser");
1634 if(!prs_uint32("ptr_user_name", ps, depth, &r_c->ptr_user_name))
1636 if(!smb_io_unihdr("hdr_user_name", &r_c->hdr_user_name, ps, depth))
1638 if(!smb_io_unistr2("uni2_user_name", &r_c->uni2_user_name, r_c->ptr_user_name, ps, depth))
1644 if(!prs_uint32("unk1", ps, depth, &r_c->unk1))
1647 if(!prs_uint32("ptr_dom_name", ps, depth, &r_c->ptr_dom_name))
1649 if(!smb_io_unihdr("hdr_dom_name", &r_c->hdr_dom_name, ps, depth))
1651 if(!smb_io_unistr2("uni2_dom_name", &r_c->uni2_dom_name, r_c->ptr_dom_name, ps, depth))
1657 if(!prs_ntstatus("status", ps, depth, &r_c->status))
1663 void init_lsa_q_open_account(LSA_Q_OPENACCOUNT *trn, POLICY_HND *hnd, DOM_SID *sid, uint32 access)
1665 memcpy(&trn->pol, hnd, sizeof(trn->pol));
1667 init_dom_sid2(&trn->sid, sid);
1668 trn->access = access;
1671 /*******************************************************************
1672 Reads or writes an LSA_Q_OPENACCOUNT structure.
1673 ********************************************************************/
1675 BOOL lsa_io_q_open_account(char *desc, LSA_Q_OPENACCOUNT *r_c, prs_struct *ps, int depth)
1677 prs_debug(ps, depth, desc, "lsa_io_q_open_account");
1683 if(!smb_io_pol_hnd("pol", &r_c->pol, ps, depth))
1686 if(!smb_io_dom_sid2("sid", &r_c->sid, ps, depth)) /* domain SID */
1689 if(!prs_uint32("access", ps, depth, &r_c->access))
1695 /*******************************************************************
1696 Reads or writes an LSA_R_OPENACCOUNT structure.
1697 ********************************************************************/
1699 BOOL lsa_io_r_open_account(char *desc, LSA_R_OPENACCOUNT *r_c, prs_struct *ps, int depth)
1701 prs_debug(ps, depth, desc, "lsa_io_r_open_account");
1707 if(!smb_io_pol_hnd("pol", &r_c->pol, ps, depth))
1710 if(!prs_ntstatus("status", ps, depth, &r_c->status))
1717 void init_lsa_q_enum_privsaccount(LSA_Q_ENUMPRIVSACCOUNT *trn, POLICY_HND *hnd)
1719 memcpy(&trn->pol, hnd, sizeof(trn->pol));
1723 /*******************************************************************
1724 Reads or writes an LSA_Q_ENUMPRIVSACCOUNT structure.
1725 ********************************************************************/
1727 BOOL lsa_io_q_enum_privsaccount(char *desc, LSA_Q_ENUMPRIVSACCOUNT *r_c, prs_struct *ps, int depth)
1729 prs_debug(ps, depth, desc, "lsa_io_q_enum_privsaccount");
1735 if(!smb_io_pol_hnd("pol", &r_c->pol, ps, depth))
1741 /*******************************************************************
1742 Reads or writes an LUID structure.
1743 ********************************************************************/
1745 BOOL lsa_io_luid(char *desc, LUID *r_c, prs_struct *ps, int depth)
1747 prs_debug(ps, depth, desc, "lsa_io_luid");
1753 if(!prs_uint32("low", ps, depth, &r_c->low))
1756 if(!prs_uint32("high", ps, depth, &r_c->high))
1762 /*******************************************************************
1763 Reads or writes an LUID_ATTR structure.
1764 ********************************************************************/
1766 BOOL lsa_io_luid_attr(char *desc, LUID_ATTR *r_c, prs_struct *ps, int depth)
1768 prs_debug(ps, depth, desc, "lsa_io_luid_attr");
1774 if (!lsa_io_luid(desc, &r_c->luid, ps, depth))
1777 if(!prs_uint32("attr", ps, depth, &r_c->attr))
1783 /*******************************************************************
1784 Reads or writes an PRIVILEGE_SET structure.
1785 ********************************************************************/
1787 BOOL lsa_io_privilege_set(char *desc, PRIVILEGE_SET *r_c, prs_struct *ps, int depth)
1791 prs_debug(ps, depth, desc, "lsa_io_privilege_set");
1797 if(!prs_uint32("count", ps, depth, &r_c->count))
1799 if(!prs_uint32("control", ps, depth, &r_c->control))
1802 for (i=0; i<r_c->count; i++) {
1803 if (!lsa_io_luid_attr(desc, &r_c->set[i], ps, depth))
1810 void init_lsa_r_enum_privsaccount(LSA_R_ENUMPRIVSACCOUNT *r_u, LUID_ATTR *set, uint32 count, uint32 control)
1815 r_u->set.count=count;
1816 r_u->set.control=control;
1819 /*******************************************************************
1820 Reads or writes an LSA_R_ENUMPRIVSACCOUNT structure.
1821 ********************************************************************/
1823 BOOL lsa_io_r_enum_privsaccount(char *desc, LSA_R_ENUMPRIVSACCOUNT *r_c, prs_struct *ps, int depth)
1825 prs_debug(ps, depth, desc, "lsa_io_r_enum_privsaccount");
1831 if(!prs_uint32("ptr", ps, depth, &r_c->ptr))
1835 if(!prs_uint32("count", ps, depth, &r_c->count))
1838 /* malloc memory if unmarshalling here */
1840 if (UNMARSHALLING(ps) && r_c->count!=0) {
1841 if (!(r_c->set.set = (LUID_ATTR *)prs_alloc_mem(ps,sizeof(LUID_ATTR) * r_c->count)))
1846 if(!lsa_io_privilege_set(desc, &r_c->set, ps, depth))
1850 if(!prs_ntstatus("status", ps, depth, &r_c->status))
1858 /*******************************************************************
1859 Reads or writes an LSA_Q_GETSYSTEMACCOUNTstructure.
1860 ********************************************************************/
1862 BOOL lsa_io_q_getsystemaccount(char *desc, LSA_Q_GETSYSTEMACCOUNT *r_c, prs_struct *ps, int depth)
1864 prs_debug(ps, depth, desc, "lsa_io_q_getsystemaccount");
1870 if(!smb_io_pol_hnd("pol", &r_c->pol, ps, depth))
1876 /*******************************************************************
1877 Reads or writes an LSA_R_GETSYSTEMACCOUNTstructure.
1878 ********************************************************************/
1880 BOOL lsa_io_r_getsystemaccount(char *desc, LSA_R_GETSYSTEMACCOUNT *r_c, prs_struct *ps, int depth)
1882 prs_debug(ps, depth, desc, "lsa_io_r_getsystemaccount");
1888 if(!prs_uint32("access", ps, depth, &r_c->access))
1891 if(!prs_ntstatus("status", ps, depth, &r_c->status))
1897 void init_lsa_q_lookupprivvalue(LSA_Q_LOOKUPPRIVVALUE *trn, POLICY_HND *hnd, char *name)
1899 int len_name = strlen(name);
1900 memcpy(&trn->pol, hnd, sizeof(trn->pol));
1905 init_uni_hdr(&trn->hdr_right, len_name);
1906 init_unistr2(&trn->uni2_right, name, len_name);
1909 /*******************************************************************
1910 Reads or writes an LSA_Q_LOOKUPPRIVVALUE structure.
1911 ********************************************************************/
1913 BOOL lsa_io_q_lookupprivvalue(char *desc, LSA_Q_LOOKUPPRIVVALUE *r_c, prs_struct *ps, int depth)
1915 prs_debug(ps, depth, desc, "lsa_io_q_lookupprivvalue");
1921 if(!smb_io_pol_hnd("pol", &r_c->pol, ps, depth))
1923 if(!smb_io_unihdr ("hdr_name", &r_c->hdr_right, ps, depth))
1925 if(!smb_io_unistr2("uni2_right", &r_c->uni2_right, r_c->hdr_right.buffer, ps, depth))
1931 /*******************************************************************
1932 Reads or writes an LSA_R_LOOKUPPRIVVALUE structure.
1933 ********************************************************************/
1935 BOOL lsa_io_r_lookupprivvalue(char *desc, LSA_R_LOOKUPPRIVVALUE *r_c, prs_struct *ps, int depth)
1937 prs_debug(ps, depth, desc, "lsa_io_r_lookupprivvalue");
1943 if(!lsa_io_luid("luid", &r_c->luid, ps, depth))
1946 if(!prs_ntstatus("status", ps, depth, &r_c->status))