r10908: Fix PIPE mismatch to make wbinfo -m work again
[Samba/nascimento.git] / source3 / rpc_client / cli_ds.c
blob9c7ad84062966d261fd93b45ce809529c5e1bbfd
1 /*
2 Unix SMB/CIFS implementation.
3 RPC pipe client
4 Copyright (C) Gerald Carter 2002,
5 Copyright (C) Jeremy Allison 2005.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 /* implementations of client side DsXXX() functions */
26 /********************************************************************
27 Get information about the server and directory services
28 ********************************************************************/
30 NTSTATUS rpccli_ds_getprimarydominfo(struct rpc_pipe_client *cli,
31 TALLOC_CTX *mem_ctx,
32 uint16 level, DS_DOMINFO_CTR *ctr)
34 prs_struct qbuf, rbuf;
35 DS_Q_GETPRIMDOMINFO q;
36 DS_R_GETPRIMDOMINFO r;
37 NTSTATUS result;
39 ZERO_STRUCT(q);
40 ZERO_STRUCT(r);
42 q.level = level;
44 CLI_DO_RPC( cli, mem_ctx, PI_LSARPC_DS, DS_GETPRIMDOMINFO,
45 q, r,
46 qbuf, rbuf,
47 ds_io_q_getprimdominfo,
48 ds_io_r_getprimdominfo,
49 NT_STATUS_UNSUCCESSFUL);
51 /* Return basic info - if we are requesting at info != 1 then
52 there could be trouble. */
54 result = r.status;
56 if ( r.ptr && ctr ) {
57 ctr->basic = TALLOC_P(mem_ctx, DSROLE_PRIMARY_DOMAIN_INFO_BASIC);
58 if (!ctr->basic)
59 goto done;
60 memcpy(ctr->basic, r.info.basic, sizeof(DSROLE_PRIMARY_DOMAIN_INFO_BASIC));
63 done:
65 return result;
68 /********************************************************************
69 Enumerate trusted domains in an AD forest
70 ********************************************************************/
72 NTSTATUS rpccli_ds_enum_domain_trusts(struct rpc_pipe_client *cli,
73 TALLOC_CTX *mem_ctx,
74 const char *server, uint32 flags,
75 struct ds_domain_trust **trusts,
76 uint32 *num_domains)
78 prs_struct qbuf, rbuf;
79 DS_Q_ENUM_DOM_TRUSTS q;
80 DS_R_ENUM_DOM_TRUSTS r;
81 NTSTATUS result;
83 ZERO_STRUCT(q);
84 ZERO_STRUCT(r);
86 init_q_ds_enum_domain_trusts( &q, server, flags );
88 CLI_DO_RPC( cli, mem_ctx, PI_NETLOGON, DS_ENUM_DOM_TRUSTS,
89 q, r,
90 qbuf, rbuf,
91 ds_io_q_enum_domain_trusts,
92 ds_io_r_enum_domain_trusts,
93 NT_STATUS_UNSUCCESSFUL);
95 result = r.status;
97 if ( NT_STATUS_IS_OK(result) ) {
98 int i;
100 *num_domains = r.num_domains;
101 *trusts = TALLOC_ARRAY(mem_ctx, struct ds_domain_trust, r.num_domains);
103 for ( i=0; i< *num_domains; i++ ) {
104 (*trusts)[i].flags = r.domains.trusts[i].flags;
105 (*trusts)[i].parent_index = r.domains.trusts[i].parent_index;
106 (*trusts)[i].trust_type = r.domains.trusts[i].trust_type;
107 (*trusts)[i].trust_attributes = r.domains.trusts[i].trust_attributes;
108 (*trusts)[i].guid = r.domains.trusts[i].guid;
110 if (r.domains.trusts[i].sid_ptr) {
111 sid_copy(&(*trusts)[i].sid, &r.domains.trusts[i].sid.sid);
112 } else {
113 ZERO_STRUCT((*trusts)[i].sid);
116 if (r.domains.trusts[i].netbios_ptr) {
117 (*trusts)[i].netbios_domain = unistr2_tdup( mem_ctx, &r.domains.trusts[i].netbios_domain );
118 } else {
119 (*trusts)[i].netbios_domain = NULL;
122 if (r.domains.trusts[i].dns_ptr) {
123 (*trusts)[i].dns_domain = unistr2_tdup( mem_ctx, &r.domains.trusts[i].dns_domain );
124 } else {
125 (*trusts)[i].dns_domain = NULL;
130 return result;