r21585: Start syncing the monster that will become 3.0.25pre1
[Samba.git] / source / rpc_client / cli_lsarpc.c
blob97d8326ede4d5c876f480861be49a297e9e58ad2
1 /*
2 Unix SMB/CIFS implementation.
3 RPC pipe client
4 Copyright (C) Tim Potter 2000-2001,
5 Copyright (C) Andrew Tridgell 1992-1997,2000,
6 Copyright (C) Rafal Szczesniak 2002
7 Copyright (C) Jeremy Allison 2005.
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.
24 #include "includes.h"
26 /** @defgroup lsa LSA - Local Security Architecture
27 * @ingroup rpc_client
29 * @{
30 **/
32 /**
33 * @file cli_lsarpc.c
35 * RPC client routines for the LSA RPC pipe. LSA means "local
36 * security authority", which is half of a password database.
37 **/
39 /** Open a LSA policy handle
41 * @param cli Handle on an initialised SMB connection */
43 NTSTATUS rpccli_lsa_open_policy(struct rpc_pipe_client *cli,
44 TALLOC_CTX *mem_ctx,
45 BOOL sec_qos, uint32 des_access,
46 POLICY_HND *pol)
48 prs_struct qbuf, rbuf;
49 LSA_Q_OPEN_POL q;
50 LSA_R_OPEN_POL r;
51 LSA_SEC_QOS qos;
52 NTSTATUS result;
54 ZERO_STRUCT(q);
55 ZERO_STRUCT(r);
57 /* Initialise input parameters */
59 if (sec_qos) {
60 init_lsa_sec_qos(&qos, 2, 1, 0);
61 init_q_open_pol(&q, '\\', 0, des_access, &qos);
62 } else {
63 init_q_open_pol(&q, '\\', 0, des_access, NULL);
66 /* Marshall data and send request */
68 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_OPENPOLICY,
69 q, r,
70 qbuf, rbuf,
71 lsa_io_q_open_pol,
72 lsa_io_r_open_pol,
73 NT_STATUS_UNSUCCESSFUL );
75 /* Return output parameters */
77 result = r.status;
79 if (NT_STATUS_IS_OK(result)) {
80 *pol = r.pol;
81 #ifdef __INSURE__
82 pol->marker = MALLOC(1);
83 #endif
86 return result;
89 /** Open a LSA policy handle
91 * @param cli Handle on an initialised SMB connection
94 NTSTATUS rpccli_lsa_open_policy2(struct rpc_pipe_client *cli,
95 TALLOC_CTX *mem_ctx, BOOL sec_qos,
96 uint32 des_access, POLICY_HND *pol)
98 prs_struct qbuf, rbuf;
99 LSA_Q_OPEN_POL2 q;
100 LSA_R_OPEN_POL2 r;
101 LSA_SEC_QOS qos;
102 NTSTATUS result;
103 char *srv_name_slash = talloc_asprintf(mem_ctx, "\\\\%s", cli->cli->desthost);
105 ZERO_STRUCT(q);
106 ZERO_STRUCT(r);
108 if (sec_qos) {
109 init_lsa_sec_qos(&qos, 2, 1, 0);
110 init_q_open_pol2(&q, srv_name_slash, 0, des_access, &qos);
111 } else {
112 init_q_open_pol2(&q, srv_name_slash, 0, des_access, NULL);
115 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_OPENPOLICY2,
116 q, r,
117 qbuf, rbuf,
118 lsa_io_q_open_pol2,
119 lsa_io_r_open_pol2,
120 NT_STATUS_UNSUCCESSFUL );
122 /* Return output parameters */
124 result = r.status;
126 if (NT_STATUS_IS_OK(result)) {
127 *pol = r.pol;
128 #ifdef __INSURE__
129 pol->marker = (char *)malloc(1);
130 #endif
133 return result;
136 /** Close a LSA policy handle */
138 NTSTATUS rpccli_lsa_close(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
139 POLICY_HND *pol)
141 prs_struct qbuf, rbuf;
142 LSA_Q_CLOSE q;
143 LSA_R_CLOSE r;
144 NTSTATUS result;
146 ZERO_STRUCT(q);
147 ZERO_STRUCT(r);
149 init_lsa_q_close(&q, pol);
151 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_CLOSE,
152 q, r,
153 qbuf, rbuf,
154 lsa_io_q_close,
155 lsa_io_r_close,
156 NT_STATUS_UNSUCCESSFUL );
158 /* Return output parameters */
160 result = r.status;
162 if (NT_STATUS_IS_OK(result)) {
163 #ifdef __INSURE__
164 SAFE_FREE(pol->marker);
165 #endif
166 *pol = r.pol;
169 return result;
172 /** Lookup a list of sids */
174 NTSTATUS rpccli_lsa_lookup_sids(struct rpc_pipe_client *cli,
175 TALLOC_CTX *mem_ctx,
176 POLICY_HND *pol, int num_sids,
177 const DOM_SID *sids,
178 char ***domains, char ***names, uint32 **types)
180 prs_struct qbuf, rbuf;
181 LSA_Q_LOOKUP_SIDS q;
182 LSA_R_LOOKUP_SIDS r;
183 DOM_R_REF ref;
184 LSA_TRANS_NAME_ENUM t_names;
185 NTSTATUS result = NT_STATUS_OK;
186 int i;
188 ZERO_STRUCT(q);
189 ZERO_STRUCT(r);
191 init_q_lookup_sids(mem_ctx, &q, pol, num_sids, sids, 1);
193 ZERO_STRUCT(ref);
194 ZERO_STRUCT(t_names);
196 r.dom_ref = &ref;
197 r.names = &t_names;
199 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_LOOKUPSIDS,
200 q, r,
201 qbuf, rbuf,
202 lsa_io_q_lookup_sids,
203 lsa_io_r_lookup_sids,
204 NT_STATUS_UNSUCCESSFUL );
206 if (!NT_STATUS_IS_OK(r.status) &&
207 NT_STATUS_V(r.status) != NT_STATUS_V(STATUS_SOME_UNMAPPED)) {
209 /* An actual error occured */
210 result = r.status;
212 goto done;
215 /* Return output parameters */
217 if (r.mapped_count == 0) {
218 result = NT_STATUS_NONE_MAPPED;
219 goto done;
222 if (!((*domains) = TALLOC_ARRAY(mem_ctx, char *, num_sids))) {
223 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
224 result = NT_STATUS_NO_MEMORY;
225 goto done;
228 if (!((*names) = TALLOC_ARRAY(mem_ctx, char *, num_sids))) {
229 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
230 result = NT_STATUS_NO_MEMORY;
231 goto done;
234 if (!((*types) = TALLOC_ARRAY(mem_ctx, uint32, num_sids))) {
235 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
236 result = NT_STATUS_NO_MEMORY;
237 goto done;
240 for (i = 0; i < num_sids; i++) {
241 fstring name, dom_name;
242 uint32 dom_idx = t_names.name[i].domain_idx;
244 /* Translate optimised name through domain index array */
246 if (dom_idx != 0xffffffff) {
248 rpcstr_pull_unistr2_fstring(
249 dom_name, &ref.ref_dom[dom_idx].uni_dom_name);
250 rpcstr_pull_unistr2_fstring(
251 name, &t_names.uni_name[i]);
253 (*names)[i] = talloc_strdup(mem_ctx, name);
254 (*domains)[i] = talloc_strdup(mem_ctx, dom_name);
255 (*types)[i] = t_names.name[i].sid_name_use;
257 if (((*names)[i] == NULL) || ((*domains)[i] == NULL)) {
258 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
259 result = NT_STATUS_UNSUCCESSFUL;
260 goto done;
263 } else {
264 (*names)[i] = NULL;
265 (*domains)[i] = NULL;
266 (*types)[i] = SID_NAME_UNKNOWN;
270 done:
272 return result;
275 /** Lookup a list of names */
277 NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli,
278 TALLOC_CTX *mem_ctx,
279 POLICY_HND *pol, int num_names,
280 const char **names,
281 const char ***dom_names,
282 DOM_SID **sids,
283 uint32 **types)
285 prs_struct qbuf, rbuf;
286 LSA_Q_LOOKUP_NAMES q;
287 LSA_R_LOOKUP_NAMES r;
288 DOM_R_REF ref;
289 NTSTATUS result;
290 int i;
292 ZERO_STRUCT(q);
293 ZERO_STRUCT(r);
295 ZERO_STRUCT(ref);
296 r.dom_ref = &ref;
298 init_q_lookup_names(mem_ctx, &q, pol, num_names, names);
300 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_LOOKUPNAMES,
301 q, r,
302 qbuf, rbuf,
303 lsa_io_q_lookup_names,
304 lsa_io_r_lookup_names,
305 NT_STATUS_UNSUCCESSFUL);
307 result = r.status;
309 if (!NT_STATUS_IS_OK(result) && NT_STATUS_V(result) !=
310 NT_STATUS_V(STATUS_SOME_UNMAPPED)) {
312 /* An actual error occured */
314 goto done;
317 /* Return output parameters */
319 if (r.mapped_count == 0) {
320 result = NT_STATUS_NONE_MAPPED;
321 goto done;
324 if (!((*sids = TALLOC_ARRAY(mem_ctx, DOM_SID, num_names)))) {
325 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
326 result = NT_STATUS_NO_MEMORY;
327 goto done;
330 if (!((*types = TALLOC_ARRAY(mem_ctx, uint32, num_names)))) {
331 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
332 result = NT_STATUS_NO_MEMORY;
333 goto done;
336 if (dom_names != NULL) {
337 *dom_names = TALLOC_ARRAY(mem_ctx, const char *, num_names);
338 if (*dom_names == NULL) {
339 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
340 result = NT_STATUS_NO_MEMORY;
341 goto done;
345 for (i = 0; i < num_names; i++) {
346 DOM_RID *t_rids = r.dom_rid;
347 uint32 dom_idx = t_rids[i].rid_idx;
348 uint32 dom_rid = t_rids[i].rid;
349 DOM_SID *sid = &(*sids)[i];
351 /* Translate optimised sid through domain index array */
353 if (dom_idx == 0xffffffff) {
354 /* Nothing to do, this is unknown */
355 ZERO_STRUCTP(sid);
356 (*types)[i] = SID_NAME_UNKNOWN;
357 continue;
360 sid_copy(sid, &ref.ref_dom[dom_idx].ref_dom.sid);
362 if (dom_rid != 0xffffffff) {
363 sid_append_rid(sid, dom_rid);
366 (*types)[i] = t_rids[i].type;
368 if (dom_names == NULL) {
369 continue;
372 (*dom_names)[i] = rpcstr_pull_unistr2_talloc(
373 *dom_names, &ref.ref_dom[dom_idx].uni_dom_name);
376 done:
378 return result;
381 NTSTATUS rpccli_lsa_query_info_policy_new(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
382 POLICY_HND *pol, uint16 info_class,
383 LSA_INFO_CTR *ctr)
385 prs_struct qbuf, rbuf;
386 LSA_Q_QUERY_INFO q;
387 LSA_R_QUERY_INFO r;
388 NTSTATUS result;
390 ZERO_STRUCT(q);
391 ZERO_STRUCT(r);
393 init_q_query(&q, pol, info_class);
395 CLI_DO_RPC(cli, mem_ctx, PI_LSARPC, LSA_QUERYINFOPOLICY,
396 q, r,
397 qbuf, rbuf,
398 lsa_io_q_query,
399 lsa_io_r_query,
400 NT_STATUS_UNSUCCESSFUL);
402 result = r.status;
404 if (!NT_STATUS_IS_OK(result)) {
405 goto done;
408 done:
410 *ctr = r.ctr;
412 return result;
415 NTSTATUS rpccli_lsa_query_info_policy2_new(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
416 POLICY_HND *pol, uint16 info_class,
417 LSA_INFO_CTR2 *ctr)
419 prs_struct qbuf, rbuf;
420 LSA_Q_QUERY_INFO2 q;
421 LSA_R_QUERY_INFO2 r;
422 NTSTATUS result;
424 ZERO_STRUCT(q);
425 ZERO_STRUCT(r);
427 init_q_query2(&q, pol, info_class);
429 CLI_DO_RPC(cli, mem_ctx, PI_LSARPC, LSA_QUERYINFO2,
430 q, r,
431 qbuf, rbuf,
432 lsa_io_q_query_info2,
433 lsa_io_r_query_info2,
434 NT_STATUS_UNSUCCESSFUL);
436 result = r.status;
438 if (!NT_STATUS_IS_OK(result)) {
439 goto done;
442 done:
444 *ctr = r.ctr;
446 return result;
451 /** Query info policy
453 * @param domain_sid - returned remote server's domain sid */
455 NTSTATUS rpccli_lsa_query_info_policy(struct rpc_pipe_client *cli,
456 TALLOC_CTX *mem_ctx,
457 POLICY_HND *pol, uint16 info_class,
458 char **domain_name, DOM_SID **domain_sid)
460 prs_struct qbuf, rbuf;
461 LSA_Q_QUERY_INFO q;
462 LSA_R_QUERY_INFO r;
463 NTSTATUS result;
465 ZERO_STRUCT(q);
466 ZERO_STRUCT(r);
468 init_q_query(&q, pol, info_class);
470 CLI_DO_RPC(cli, mem_ctx, PI_LSARPC, LSA_QUERYINFOPOLICY,
471 q, r,
472 qbuf, rbuf,
473 lsa_io_q_query,
474 lsa_io_r_query,
475 NT_STATUS_UNSUCCESSFUL);
477 result = r.status;
479 if (!NT_STATUS_IS_OK(result)) {
480 goto done;
483 /* Return output parameters */
485 switch (info_class) {
487 case 3:
488 if (domain_name && (r.ctr.info.id3.buffer_dom_name != 0)) {
489 *domain_name = unistr2_tdup(mem_ctx,
490 &r.ctr.info.id3.
491 uni_domain_name);
492 if (!*domain_name) {
493 return NT_STATUS_NO_MEMORY;
497 if (domain_sid && (r.ctr.info.id3.buffer_dom_sid != 0)) {
498 *domain_sid = TALLOC_P(mem_ctx, DOM_SID);
499 if (!*domain_sid) {
500 return NT_STATUS_NO_MEMORY;
502 sid_copy(*domain_sid, &r.ctr.info.id3.dom_sid.sid);
505 break;
507 case 5:
509 if (domain_name && (r.ctr.info.id5.buffer_dom_name != 0)) {
510 *domain_name = unistr2_tdup(mem_ctx,
511 &r.ctr.info.id5.
512 uni_domain_name);
513 if (!*domain_name) {
514 return NT_STATUS_NO_MEMORY;
518 if (domain_sid && (r.ctr.info.id5.buffer_dom_sid != 0)) {
519 *domain_sid = TALLOC_P(mem_ctx, DOM_SID);
520 if (!*domain_sid) {
521 return NT_STATUS_NO_MEMORY;
523 sid_copy(*domain_sid, &r.ctr.info.id5.dom_sid.sid);
525 break;
527 default:
528 DEBUG(3, ("unknown info class %d\n", info_class));
529 break;
532 done:
534 return result;
537 /** Query info policy2
539 * @param domain_name - returned remote server's domain name
540 * @param dns_name - returned remote server's dns domain name
541 * @param forest_name - returned remote server's forest name
542 * @param domain_guid - returned remote server's domain guid
543 * @param domain_sid - returned remote server's domain sid */
545 NTSTATUS rpccli_lsa_query_info_policy2(struct rpc_pipe_client *cli,
546 TALLOC_CTX *mem_ctx,
547 POLICY_HND *pol, uint16 info_class,
548 char **domain_name, char **dns_name,
549 char **forest_name,
550 struct GUID **domain_guid,
551 DOM_SID **domain_sid)
553 prs_struct qbuf, rbuf;
554 LSA_Q_QUERY_INFO2 q;
555 LSA_R_QUERY_INFO2 r;
556 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
558 if (info_class != 12)
559 goto done;
561 ZERO_STRUCT(q);
562 ZERO_STRUCT(r);
564 init_q_query2(&q, pol, info_class);
566 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_QUERYINFO2,
567 q, r,
568 qbuf, rbuf,
569 lsa_io_q_query_info2,
570 lsa_io_r_query_info2,
571 NT_STATUS_UNSUCCESSFUL);
573 result = r.status;
575 if (!NT_STATUS_IS_OK(result)) {
576 goto done;
579 /* Return output parameters */
581 ZERO_STRUCTP(domain_guid);
583 if (domain_name && r.ctr.info.id12.hdr_nb_dom_name.buffer) {
584 *domain_name = unistr2_tdup(mem_ctx,
585 &r.ctr.info.id12
586 .uni_nb_dom_name);
587 if (!*domain_name) {
588 return NT_STATUS_NO_MEMORY;
591 if (dns_name && r.ctr.info.id12.hdr_dns_dom_name.buffer) {
592 *dns_name = unistr2_tdup(mem_ctx,
593 &r.ctr.info.id12
594 .uni_dns_dom_name);
595 if (!*dns_name) {
596 return NT_STATUS_NO_MEMORY;
599 if (forest_name && r.ctr.info.id12.hdr_forest_name.buffer) {
600 *forest_name = unistr2_tdup(mem_ctx,
601 &r.ctr.info.id12
602 .uni_forest_name);
603 if (!*forest_name) {
604 return NT_STATUS_NO_MEMORY;
608 if (domain_guid) {
609 *domain_guid = TALLOC_P(mem_ctx, struct GUID);
610 if (!*domain_guid) {
611 return NT_STATUS_NO_MEMORY;
613 memcpy(*domain_guid,
614 &r.ctr.info.id12.dom_guid,
615 sizeof(struct GUID));
618 if (domain_sid && r.ctr.info.id12.ptr_dom_sid != 0) {
619 *domain_sid = TALLOC_P(mem_ctx, DOM_SID);
620 if (!*domain_sid) {
621 return NT_STATUS_NO_MEMORY;
623 sid_copy(*domain_sid,
624 &r.ctr.info.id12.dom_sid.sid);
627 done:
629 return result;
632 NTSTATUS rpccli_lsa_set_info_policy(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
633 POLICY_HND *pol, uint16 info_class,
634 LSA_INFO_CTR ctr)
636 prs_struct qbuf, rbuf;
637 LSA_Q_SET_INFO q;
638 LSA_R_SET_INFO r;
639 NTSTATUS result;
641 ZERO_STRUCT(q);
642 ZERO_STRUCT(r);
644 init_q_set(&q, pol, info_class, ctr);
646 CLI_DO_RPC(cli, mem_ctx, PI_LSARPC, LSA_SETINFOPOLICY,
647 q, r,
648 qbuf, rbuf,
649 lsa_io_q_set,
650 lsa_io_r_set,
651 NT_STATUS_UNSUCCESSFUL);
653 result = r.status;
655 if (!NT_STATUS_IS_OK(result)) {
656 goto done;
659 /* Return output parameters */
661 done:
663 return result;
668 * Enumerate list of trusted domains
670 * @param cli client state (cli_state) structure of the connection
671 * @param mem_ctx memory context
672 * @param pol opened lsa policy handle
673 * @param enum_ctx enumeration context ie. index of first returned domain entry
674 * @param pref_num_domains preferred max number of entries returned in one response
675 * @param num_domains total number of trusted domains returned by response
676 * @param domain_names returned trusted domain names
677 * @param domain_sids returned trusted domain sids
679 * @return nt status code of response
682 NTSTATUS rpccli_lsa_enum_trust_dom(struct rpc_pipe_client *cli,
683 TALLOC_CTX *mem_ctx,
684 POLICY_HND *pol, uint32 *enum_ctx,
685 uint32 *num_domains,
686 char ***domain_names, DOM_SID **domain_sids)
688 prs_struct qbuf, rbuf;
689 LSA_Q_ENUM_TRUST_DOM in;
690 LSA_R_ENUM_TRUST_DOM out;
691 int i;
692 fstring tmp;
694 ZERO_STRUCT(in);
695 ZERO_STRUCT(out);
697 /* 64k is enough for about 2000 trusted domains */
699 init_q_enum_trust_dom(&in, pol, *enum_ctx, 0x10000);
701 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_ENUMTRUSTDOM,
702 in, out,
703 qbuf, rbuf,
704 lsa_io_q_enum_trust_dom,
705 lsa_io_r_enum_trust_dom,
706 NT_STATUS_UNSUCCESSFUL );
709 /* check for an actual error */
711 if ( !NT_STATUS_IS_OK(out.status)
712 && !NT_STATUS_EQUAL(out.status, NT_STATUS_NO_MORE_ENTRIES)
713 && !NT_STATUS_EQUAL(out.status, STATUS_MORE_ENTRIES) )
715 return out.status;
718 /* Return output parameters */
720 *num_domains = out.count;
721 *enum_ctx = out.enum_context;
723 if ( out.count ) {
725 /* Allocate memory for trusted domain names and sids */
727 if ( !(*domain_names = TALLOC_ARRAY(mem_ctx, char *, out.count)) ) {
728 DEBUG(0, ("cli_lsa_enum_trust_dom(): out of memory\n"));
729 return NT_STATUS_NO_MEMORY;
732 if ( !(*domain_sids = TALLOC_ARRAY(mem_ctx, DOM_SID, out.count)) ) {
733 DEBUG(0, ("cli_lsa_enum_trust_dom(): out of memory\n"));
734 return NT_STATUS_NO_MEMORY;
737 /* Copy across names and sids */
739 for (i = 0; i < out.count; i++) {
741 rpcstr_pull( tmp, out.domlist->domains[i].name.string->buffer,
742 sizeof(tmp), out.domlist->domains[i].name.length, 0);
743 (*domain_names)[i] = talloc_strdup(mem_ctx, tmp);
745 sid_copy(&(*domain_sids)[i], &out.domlist->domains[i].sid->sid );
749 return out.status;
752 /** Enumerate privileges*/
754 NTSTATUS rpccli_lsa_enum_privilege(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
755 POLICY_HND *pol, uint32 *enum_context, uint32 pref_max_length,
756 uint32 *count, char ***privs_name, uint32 **privs_high, uint32 **privs_low)
758 prs_struct qbuf, rbuf;
759 LSA_Q_ENUM_PRIVS q;
760 LSA_R_ENUM_PRIVS r;
761 NTSTATUS result;
762 int i;
764 ZERO_STRUCT(q);
765 ZERO_STRUCT(r);
767 init_q_enum_privs(&q, pol, *enum_context, pref_max_length);
769 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_ENUM_PRIVS,
770 q, r,
771 qbuf, rbuf,
772 lsa_io_q_enum_privs,
773 lsa_io_r_enum_privs,
774 NT_STATUS_UNSUCCESSFUL);
776 result = r.status;
778 if (!NT_STATUS_IS_OK(result)) {
779 goto done;
782 /* Return output parameters */
784 *enum_context = r.enum_context;
785 *count = r.count;
787 if (!((*privs_name = TALLOC_ARRAY(mem_ctx, char *, r.count)))) {
788 DEBUG(0, ("(cli_lsa_enum_privilege): out of memory\n"));
789 result = NT_STATUS_UNSUCCESSFUL;
790 goto done;
793 if (!((*privs_high = TALLOC_ARRAY(mem_ctx, uint32, r.count)))) {
794 DEBUG(0, ("(cli_lsa_enum_privilege): out of memory\n"));
795 result = NT_STATUS_UNSUCCESSFUL;
796 goto done;
799 if (!((*privs_low = TALLOC_ARRAY(mem_ctx, uint32, r.count)))) {
800 DEBUG(0, ("(cli_lsa_enum_privilege): out of memory\n"));
801 result = NT_STATUS_UNSUCCESSFUL;
802 goto done;
805 for (i = 0; i < r.count; i++) {
806 fstring name;
808 rpcstr_pull_unistr2_fstring( name, &r.privs[i].name);
810 (*privs_name)[i] = talloc_strdup(mem_ctx, name);
812 (*privs_high)[i] = r.privs[i].luid_high;
813 (*privs_low)[i] = r.privs[i].luid_low;
816 done:
818 return result;
821 /** Get privilege name */
823 NTSTATUS rpccli_lsa_get_dispname(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
824 POLICY_HND *pol, const char *name,
825 uint16 lang_id, uint16 lang_id_sys,
826 fstring description, uint16 *lang_id_desc)
828 prs_struct qbuf, rbuf;
829 LSA_Q_PRIV_GET_DISPNAME q;
830 LSA_R_PRIV_GET_DISPNAME r;
831 NTSTATUS result;
833 ZERO_STRUCT(q);
834 ZERO_STRUCT(r);
836 init_lsa_priv_get_dispname(&q, pol, name, lang_id, lang_id_sys);
838 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_PRIV_GET_DISPNAME,
839 q, r,
840 qbuf, rbuf,
841 lsa_io_q_priv_get_dispname,
842 lsa_io_r_priv_get_dispname,
843 NT_STATUS_UNSUCCESSFUL);
845 result = r.status;
847 if (!NT_STATUS_IS_OK(result)) {
848 goto done;
851 /* Return output parameters */
853 rpcstr_pull_unistr2_fstring(description , &r.desc);
854 *lang_id_desc = r.lang_id;
856 done:
858 return result;
861 /** Enumerate list of SIDs */
863 NTSTATUS rpccli_lsa_enum_sids(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
864 POLICY_HND *pol, uint32 *enum_ctx, uint32 pref_max_length,
865 uint32 *num_sids, DOM_SID **sids)
867 prs_struct qbuf, rbuf;
868 LSA_Q_ENUM_ACCOUNTS q;
869 LSA_R_ENUM_ACCOUNTS r;
870 NTSTATUS result;
871 int i;
873 ZERO_STRUCT(q);
874 ZERO_STRUCT(r);
876 init_lsa_q_enum_accounts(&q, pol, *enum_ctx, pref_max_length);
878 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_ENUM_ACCOUNTS,
879 q, r,
880 qbuf, rbuf,
881 lsa_io_q_enum_accounts,
882 lsa_io_r_enum_accounts,
883 NT_STATUS_UNSUCCESSFUL);
885 result = r.status;
887 if (!NT_STATUS_IS_OK(result)) {
888 goto done;
891 if (r.sids.num_entries==0)
892 goto done;
894 /* Return output parameters */
896 *sids = TALLOC_ARRAY(mem_ctx, DOM_SID, r.sids.num_entries);
897 if (!*sids) {
898 DEBUG(0, ("(cli_lsa_enum_sids): out of memory\n"));
899 result = NT_STATUS_UNSUCCESSFUL;
900 goto done;
903 /* Copy across names and sids */
905 for (i = 0; i < r.sids.num_entries; i++) {
906 sid_copy(&(*sids)[i], &r.sids.sid[i].sid);
909 *num_sids= r.sids.num_entries;
910 *enum_ctx = r.enum_context;
912 done:
914 return result;
917 /** Create a LSA user handle
919 * @param cli Handle on an initialised SMB connection
921 * FIXME: The code is actually identical to open account
922 * TODO: Check and code what the function should exactly do
924 * */
926 NTSTATUS rpccli_lsa_create_account(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
927 POLICY_HND *dom_pol, DOM_SID *sid, uint32 desired_access,
928 POLICY_HND *user_pol)
930 prs_struct qbuf, rbuf;
931 LSA_Q_CREATEACCOUNT q;
932 LSA_R_CREATEACCOUNT r;
933 NTSTATUS result;
935 ZERO_STRUCT(q);
936 ZERO_STRUCT(r);
938 /* Initialise input parameters */
940 init_lsa_q_create_account(&q, dom_pol, sid, desired_access);
942 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_CREATEACCOUNT,
943 q, r,
944 qbuf, rbuf,
945 lsa_io_q_create_account,
946 lsa_io_r_create_account,
947 NT_STATUS_UNSUCCESSFUL);
949 /* Return output parameters */
951 result = r.status;
953 if (NT_STATUS_IS_OK(result)) {
954 *user_pol = r.pol;
957 return result;
960 /** Open a LSA user handle
962 * @param cli Handle on an initialised SMB connection */
964 NTSTATUS rpccli_lsa_open_account(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
965 POLICY_HND *dom_pol, DOM_SID *sid, uint32 des_access,
966 POLICY_HND *user_pol)
968 prs_struct qbuf, rbuf;
969 LSA_Q_OPENACCOUNT q;
970 LSA_R_OPENACCOUNT r;
971 NTSTATUS result;
973 ZERO_STRUCT(q);
974 ZERO_STRUCT(r);
976 /* Initialise input parameters */
978 init_lsa_q_open_account(&q, dom_pol, sid, des_access);
980 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_OPENACCOUNT,
981 q, r,
982 qbuf, rbuf,
983 lsa_io_q_open_account,
984 lsa_io_r_open_account,
985 NT_STATUS_UNSUCCESSFUL);
987 /* Return output parameters */
989 result = r.status;
991 if (NT_STATUS_IS_OK(result)) {
992 *user_pol = r.pol;
995 return result;
998 /** Enumerate user privileges
1000 * @param cli Handle on an initialised SMB connection */
1002 NTSTATUS rpccli_lsa_enum_privsaccount(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1003 POLICY_HND *pol, uint32 *count, LUID_ATTR **set)
1005 prs_struct qbuf, rbuf;
1006 LSA_Q_ENUMPRIVSACCOUNT q;
1007 LSA_R_ENUMPRIVSACCOUNT r;
1008 NTSTATUS result;
1009 int i;
1011 ZERO_STRUCT(q);
1012 ZERO_STRUCT(r);
1014 /* Initialise input parameters */
1016 init_lsa_q_enum_privsaccount(&q, pol);
1018 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_ENUMPRIVSACCOUNT,
1019 q, r,
1020 qbuf, rbuf,
1021 lsa_io_q_enum_privsaccount,
1022 lsa_io_r_enum_privsaccount,
1023 NT_STATUS_UNSUCCESSFUL);
1025 /* Return output parameters */
1027 result = r.status;
1029 if (!NT_STATUS_IS_OK(result)) {
1030 goto done;
1033 if (r.count == 0)
1034 goto done;
1036 if (!((*set = TALLOC_ARRAY(mem_ctx, LUID_ATTR, r.count)))) {
1037 DEBUG(0, ("(cli_lsa_enum_privsaccount): out of memory\n"));
1038 result = NT_STATUS_UNSUCCESSFUL;
1039 goto done;
1042 for (i=0; i<r.count; i++) {
1043 (*set)[i].luid.low = r.set.set[i].luid.low;
1044 (*set)[i].luid.high = r.set.set[i].luid.high;
1045 (*set)[i].attr = r.set.set[i].attr;
1048 *count=r.count;
1049 done:
1051 return result;
1054 /** Get a privilege value given its name */
1056 NTSTATUS rpccli_lsa_lookup_priv_value(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1057 POLICY_HND *pol, const char *name, LUID *luid)
1059 prs_struct qbuf, rbuf;
1060 LSA_Q_LOOKUP_PRIV_VALUE q;
1061 LSA_R_LOOKUP_PRIV_VALUE r;
1062 NTSTATUS result;
1064 ZERO_STRUCT(q);
1065 ZERO_STRUCT(r);
1067 /* Marshall data and send request */
1069 init_lsa_q_lookup_priv_value(&q, pol, name);
1071 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_LOOKUPPRIVVALUE,
1072 q, r,
1073 qbuf, rbuf,
1074 lsa_io_q_lookup_priv_value,
1075 lsa_io_r_lookup_priv_value,
1076 NT_STATUS_UNSUCCESSFUL);
1078 result = r.status;
1080 if (!NT_STATUS_IS_OK(result)) {
1081 goto done;
1084 /* Return output parameters */
1086 (*luid).low=r.luid.low;
1087 (*luid).high=r.luid.high;
1089 done:
1091 return result;
1094 /** Query LSA security object */
1096 NTSTATUS rpccli_lsa_query_secobj(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1097 POLICY_HND *pol, uint32 sec_info,
1098 SEC_DESC_BUF **psdb)
1100 prs_struct qbuf, rbuf;
1101 LSA_Q_QUERY_SEC_OBJ q;
1102 LSA_R_QUERY_SEC_OBJ r;
1103 NTSTATUS result;
1105 ZERO_STRUCT(q);
1106 ZERO_STRUCT(r);
1108 /* Marshall data and send request */
1110 init_q_query_sec_obj(&q, pol, sec_info);
1112 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_QUERYSECOBJ,
1113 q, r,
1114 qbuf, rbuf,
1115 lsa_io_q_query_sec_obj,
1116 lsa_io_r_query_sec_obj,
1117 NT_STATUS_UNSUCCESSFUL);
1119 result = r.status;
1121 if (!NT_STATUS_IS_OK(result)) {
1122 goto done;
1125 /* Return output parameters */
1127 if (psdb)
1128 *psdb = r.buf;
1130 done:
1132 return result;
1136 /* Enumerate account rights This is similar to enum_privileges but
1137 takes a SID directly, avoiding the open_account call.
1140 NTSTATUS rpccli_lsa_enum_account_rights(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1141 POLICY_HND *pol, DOM_SID *sid,
1142 uint32 *count, char ***priv_names)
1144 prs_struct qbuf, rbuf;
1145 LSA_Q_ENUM_ACCT_RIGHTS q;
1146 LSA_R_ENUM_ACCT_RIGHTS r;
1147 NTSTATUS result;
1148 int i;
1149 fstring *privileges;
1150 char **names;
1152 ZERO_STRUCT(q);
1153 ZERO_STRUCT(r);
1155 /* Marshall data and send request */
1156 init_q_enum_acct_rights(&q, pol, 2, sid);
1158 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_ENUMACCTRIGHTS,
1159 q, r,
1160 qbuf, rbuf,
1161 lsa_io_q_enum_acct_rights,
1162 lsa_io_r_enum_acct_rights,
1163 NT_STATUS_UNSUCCESSFUL);
1165 result = r.status;
1167 if (!NT_STATUS_IS_OK(result)) {
1168 goto done;
1171 *count = r.count;
1172 if (! *count) {
1173 goto done;
1177 privileges = TALLOC_ARRAY( mem_ctx, fstring, *count );
1178 names = TALLOC_ARRAY( mem_ctx, char *, *count );
1180 if ((privileges == NULL) || (names == NULL)) {
1181 TALLOC_FREE(privileges);
1182 TALLOC_FREE(names);
1183 return NT_STATUS_NO_MEMORY;
1186 for ( i=0; i<*count; i++ ) {
1187 UNISTR4 *uni_string = &r.rights->strings[i];
1189 if ( !uni_string->string )
1190 continue;
1192 rpcstr_pull( privileges[i], uni_string->string->buffer, sizeof(privileges[i]), -1, STR_TERMINATE );
1194 /* now copy to the return array */
1195 names[i] = talloc_strdup( mem_ctx, privileges[i] );
1198 *priv_names = names;
1200 done:
1202 return result;
1207 /* add account rights to an account. */
1209 NTSTATUS rpccli_lsa_add_account_rights(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1210 POLICY_HND *pol, DOM_SID sid,
1211 uint32 count, const char **privs_name)
1213 prs_struct qbuf, rbuf;
1214 LSA_Q_ADD_ACCT_RIGHTS q;
1215 LSA_R_ADD_ACCT_RIGHTS r;
1216 NTSTATUS result;
1218 ZERO_STRUCT(q);
1219 ZERO_STRUCT(r);
1221 /* Marshall data and send request */
1222 init_q_add_acct_rights(&q, pol, &sid, count, privs_name);
1224 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_ADDACCTRIGHTS,
1225 q, r,
1226 qbuf, rbuf,
1227 lsa_io_q_add_acct_rights,
1228 lsa_io_r_add_acct_rights,
1229 NT_STATUS_UNSUCCESSFUL);
1231 result = r.status;
1233 if (!NT_STATUS_IS_OK(result)) {
1234 goto done;
1236 done:
1238 return result;
1242 /* remove account rights for an account. */
1244 NTSTATUS rpccli_lsa_remove_account_rights(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1245 POLICY_HND *pol, DOM_SID sid, BOOL removeall,
1246 uint32 count, const char **privs_name)
1248 prs_struct qbuf, rbuf;
1249 LSA_Q_REMOVE_ACCT_RIGHTS q;
1250 LSA_R_REMOVE_ACCT_RIGHTS r;
1251 NTSTATUS result;
1253 ZERO_STRUCT(q);
1254 ZERO_STRUCT(r);
1256 /* Marshall data and send request */
1257 init_q_remove_acct_rights(&q, pol, &sid, removeall?1:0, count, privs_name);
1259 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_REMOVEACCTRIGHTS,
1260 q, r,
1261 qbuf, rbuf,
1262 lsa_io_q_remove_acct_rights,
1263 lsa_io_r_remove_acct_rights,
1264 NT_STATUS_UNSUCCESSFUL);
1266 result = r.status;
1268 if (!NT_STATUS_IS_OK(result)) {
1269 goto done;
1271 done:
1273 return result;
1277 #if 0
1279 /** An example of how to use the routines in this file. Fetch a DOMAIN
1280 sid. Does complete cli setup / teardown anonymously. */
1282 BOOL fetch_domain_sid( char *domain, char *remote_machine, DOM_SID *psid)
1284 extern pstring global_myname;
1285 struct cli_state cli;
1286 NTSTATUS result;
1287 POLICY_HND lsa_pol;
1288 BOOL ret = False;
1290 ZERO_STRUCT(cli);
1291 if(cli_initialise(&cli) == False) {
1292 DEBUG(0,("fetch_domain_sid: unable to initialize client connection.\n"));
1293 return False;
1296 if(!resolve_name( remote_machine, &cli.dest_ip, 0x20)) {
1297 DEBUG(0,("fetch_domain_sid: Can't resolve address for %s\n", remote_machine));
1298 goto done;
1301 if (!cli_connect(&cli, remote_machine, &cli.dest_ip)) {
1302 DEBUG(0,("fetch_domain_sid: unable to connect to SMB server on \
1303 machine %s. Error was : %s.\n", remote_machine, cli_errstr(&cli) ));
1304 goto done;
1307 if (!attempt_netbios_session_request(&cli, global_myname, remote_machine, &cli.dest_ip)) {
1308 DEBUG(0,("fetch_domain_sid: machine %s rejected the NetBIOS session request.\n",
1309 remote_machine));
1310 goto done;
1313 cli.protocol = PROTOCOL_NT1;
1315 if (!cli_negprot(&cli)) {
1316 DEBUG(0,("fetch_domain_sid: machine %s rejected the negotiate protocol. \
1317 Error was : %s.\n", remote_machine, cli_errstr(&cli) ));
1318 goto done;
1321 if (cli.protocol != PROTOCOL_NT1) {
1322 DEBUG(0,("fetch_domain_sid: machine %s didn't negotiate NT protocol.\n",
1323 remote_machine));
1324 goto done;
1328 * Do an anonymous session setup.
1331 if (!cli_session_setup(&cli, "", "", 0, "", 0, "")) {
1332 DEBUG(0,("fetch_domain_sid: machine %s rejected the session setup. \
1333 Error was : %s.\n", remote_machine, cli_errstr(&cli) ));
1334 goto done;
1337 if (!(cli.sec_mode & NEGOTIATE_SECURITY_USER_LEVEL)) {
1338 DEBUG(0,("fetch_domain_sid: machine %s isn't in user level security mode\n",
1339 remote_machine));
1340 goto done;
1343 if (!cli_send_tconX(&cli, "IPC$", "IPC", "", 1)) {
1344 DEBUG(0,("fetch_domain_sid: machine %s rejected the tconX on the IPC$ share. \
1345 Error was : %s.\n", remote_machine, cli_errstr(&cli) ));
1346 goto done;
1349 /* Fetch domain sid */
1351 if (!cli_nt_session_open(&cli, PI_LSARPC)) {
1352 DEBUG(0, ("fetch_domain_sid: Error connecting to SAM pipe\n"));
1353 goto done;
1356 result = cli_lsa_open_policy(&cli, cli.mem_ctx, True, SEC_RIGHTS_QUERY_VALUE, &lsa_pol);
1357 if (!NT_STATUS_IS_OK(result)) {
1358 DEBUG(0, ("fetch_domain_sid: Error opening lsa policy handle. %s\n",
1359 nt_errstr(result) ));
1360 goto done;
1363 result = cli_lsa_query_info_policy(&cli, cli.mem_ctx, &lsa_pol, 5, domain, psid);
1364 if (!NT_STATUS_IS_OK(result)) {
1365 DEBUG(0, ("fetch_domain_sid: Error querying lsa policy handle. %s\n",
1366 nt_errstr(result) ));
1367 goto done;
1370 ret = True;
1372 done:
1374 cli_shutdown(&cli);
1375 return ret;
1378 #endif
1380 NTSTATUS rpccli_lsa_open_trusted_domain(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1381 POLICY_HND *pol, DOM_SID *dom_sid, uint32 access_mask,
1382 POLICY_HND *trustdom_pol)
1384 prs_struct qbuf, rbuf;
1385 LSA_Q_OPEN_TRUSTED_DOMAIN q;
1386 LSA_R_OPEN_TRUSTED_DOMAIN r;
1387 NTSTATUS result;
1389 ZERO_STRUCT(q);
1390 ZERO_STRUCT(r);
1392 /* Initialise input parameters */
1394 init_lsa_q_open_trusted_domain(&q, pol, dom_sid, access_mask);
1396 /* Marshall data and send request */
1398 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_OPENTRUSTDOM,
1399 q, r,
1400 qbuf, rbuf,
1401 lsa_io_q_open_trusted_domain,
1402 lsa_io_r_open_trusted_domain,
1403 NT_STATUS_UNSUCCESSFUL);
1405 /* Return output parameters */
1407 result = r.status;
1409 if (NT_STATUS_IS_OK(result)) {
1410 *trustdom_pol = r.handle;
1413 return result;
1416 NTSTATUS rpccli_lsa_query_trusted_domain_info(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1417 POLICY_HND *pol,
1418 uint16 info_class,
1419 LSA_TRUSTED_DOMAIN_INFO **info)
1421 prs_struct qbuf, rbuf;
1422 LSA_Q_QUERY_TRUSTED_DOMAIN_INFO q;
1423 LSA_R_QUERY_TRUSTED_DOMAIN_INFO r;
1424 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1426 ZERO_STRUCT(q);
1427 ZERO_STRUCT(r);
1429 /* Marshall data and send request */
1431 init_q_query_trusted_domain_info(&q, pol, info_class);
1433 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_QUERYTRUSTDOMINFO,
1434 q, r,
1435 qbuf, rbuf,
1436 lsa_io_q_query_trusted_domain_info,
1437 lsa_io_r_query_trusted_domain_info,
1438 NT_STATUS_UNSUCCESSFUL);
1440 result = r.status;
1442 if (!NT_STATUS_IS_OK(result)) {
1443 goto done;
1446 *info = r.info;
1448 done:
1449 return result;
1452 NTSTATUS rpccli_lsa_open_trusted_domain_by_name(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1453 POLICY_HND *pol, const char *name, uint32 access_mask,
1454 POLICY_HND *trustdom_pol)
1456 prs_struct qbuf, rbuf;
1457 LSA_Q_OPEN_TRUSTED_DOMAIN_BY_NAME q;
1458 LSA_R_OPEN_TRUSTED_DOMAIN_BY_NAME r;
1459 NTSTATUS result;
1461 ZERO_STRUCT(q);
1462 ZERO_STRUCT(r);
1464 /* Initialise input parameters */
1466 init_lsa_q_open_trusted_domain_by_name(&q, pol, name, access_mask);
1468 /* Marshall data and send request */
1470 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_OPENTRUSTDOMBYNAME,
1471 q, r,
1472 qbuf, rbuf,
1473 lsa_io_q_open_trusted_domain_by_name,
1474 lsa_io_r_open_trusted_domain_by_name,
1475 NT_STATUS_UNSUCCESSFUL);
1477 /* Return output parameters */
1479 result = r.status;
1481 if (NT_STATUS_IS_OK(result)) {
1482 *trustdom_pol = r.handle;
1485 return result;
1489 NTSTATUS rpccli_lsa_query_trusted_domain_info_by_sid(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1490 POLICY_HND *pol,
1491 uint16 info_class, DOM_SID *dom_sid,
1492 LSA_TRUSTED_DOMAIN_INFO **info)
1494 prs_struct qbuf, rbuf;
1495 LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_SID q;
1496 LSA_R_QUERY_TRUSTED_DOMAIN_INFO r;
1497 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1499 ZERO_STRUCT(q);
1500 ZERO_STRUCT(r);
1502 /* Marshall data and send request */
1504 init_q_query_trusted_domain_info_by_sid(&q, pol, info_class, dom_sid);
1506 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_QUERYTRUSTDOMINFOBYSID,
1507 q, r,
1508 qbuf, rbuf,
1509 lsa_io_q_query_trusted_domain_info_by_sid,
1510 lsa_io_r_query_trusted_domain_info,
1511 NT_STATUS_UNSUCCESSFUL);
1513 result = r.status;
1515 if (!NT_STATUS_IS_OK(result)) {
1516 goto done;
1519 *info = r.info;
1521 done:
1523 return result;
1526 NTSTATUS rpccli_lsa_query_trusted_domain_info_by_name(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1527 POLICY_HND *pol,
1528 uint16 info_class, const char *domain_name,
1529 LSA_TRUSTED_DOMAIN_INFO **info)
1531 prs_struct qbuf, rbuf;
1532 LSA_Q_QUERY_TRUSTED_DOMAIN_INFO_BY_NAME q;
1533 LSA_R_QUERY_TRUSTED_DOMAIN_INFO r;
1534 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1536 ZERO_STRUCT(q);
1537 ZERO_STRUCT(r);
1539 /* Marshall data and send request */
1541 init_q_query_trusted_domain_info_by_name(&q, pol, info_class, domain_name);
1543 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_QUERYTRUSTDOMINFOBYNAME,
1544 q, r,
1545 qbuf, rbuf,
1546 lsa_io_q_query_trusted_domain_info_by_name,
1547 lsa_io_r_query_trusted_domain_info,
1548 NT_STATUS_UNSUCCESSFUL);
1550 result = r.status;
1552 if (!NT_STATUS_IS_OK(result)) {
1553 goto done;
1556 *info = r.info;
1558 done:
1560 return result;
1563 NTSTATUS cli_lsa_query_domain_info_policy(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1564 POLICY_HND *pol,
1565 uint16 info_class, LSA_DOM_INFO_UNION **info)
1567 prs_struct qbuf, rbuf;
1568 LSA_Q_QUERY_DOM_INFO_POLICY q;
1569 LSA_R_QUERY_DOM_INFO_POLICY r;
1570 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1572 ZERO_STRUCT(q);
1573 ZERO_STRUCT(r);
1575 /* Marshall data and send request */
1577 init_q_query_dom_info(&q, pol, info_class);
1579 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC, LSA_QUERYDOMINFOPOL,
1580 q, r,
1581 qbuf, rbuf,
1582 lsa_io_q_query_dom_info,
1583 lsa_io_r_query_dom_info,
1584 NT_STATUS_UNSUCCESSFUL);
1586 result = r.status;
1588 if (!NT_STATUS_IS_OK(result)) {
1589 goto done;
1592 *info = r.info;
1594 done:
1595 return result;