2 Unix SMB/CIFS implementation.
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.
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
,
32 uint16 level
, DS_DOMINFO_CTR
*ctr
)
34 prs_struct qbuf
, rbuf
;
35 DS_Q_GETPRIMDOMINFO q
;
36 DS_R_GETPRIMDOMINFO r
;
44 CLI_DO_RPC( cli
, mem_ctx
, PI_LSARPC_DS
, DS_GETPRIMDOMINFO
,
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. */
57 ctr
->basic
= TALLOC_P(mem_ctx
, DSROLE_PRIMARY_DOMAIN_INFO_BASIC
);
60 memcpy(ctr
->basic
, r
.info
.basic
, sizeof(DSROLE_PRIMARY_DOMAIN_INFO_BASIC
));
68 /********************************************************************
69 Enumerate trusted domains in an AD forest
70 ********************************************************************/
72 NTSTATUS
rpccli_ds_enum_domain_trusts(struct rpc_pipe_client
*cli
,
74 const char *server
, uint32 flags
,
75 struct ds_domain_trust
**trusts
,
78 prs_struct qbuf
, rbuf
;
79 DS_Q_ENUM_DOM_TRUSTS q
;
80 DS_R_ENUM_DOM_TRUSTS r
;
86 init_q_ds_enum_domain_trusts( &q
, server
, flags
);
88 CLI_DO_RPC( cli
, mem_ctx
, PI_NETLOGON
, DS_ENUM_DOM_TRUSTS
,
91 ds_io_q_enum_domain_trusts
,
92 ds_io_r_enum_domain_trusts
,
93 NT_STATUS_UNSUCCESSFUL
);
97 if ( NT_STATUS_IS_OK(result
) ) {
100 *num_domains
= r
.num_domains
;
102 *trusts
= TALLOC_ARRAY(mem_ctx
, struct ds_domain_trust
, r
.num_domains
);
104 if (*trusts
== NULL
) {
105 return NT_STATUS_NO_MEMORY
;
111 for ( i
=0; i
< *num_domains
; i
++ ) {
112 (*trusts
)[i
].flags
= r
.domains
.trusts
[i
].flags
;
113 (*trusts
)[i
].parent_index
= r
.domains
.trusts
[i
].parent_index
;
114 (*trusts
)[i
].trust_type
= r
.domains
.trusts
[i
].trust_type
;
115 (*trusts
)[i
].trust_attributes
= r
.domains
.trusts
[i
].trust_attributes
;
116 (*trusts
)[i
].guid
= r
.domains
.trusts
[i
].guid
;
118 if (r
.domains
.trusts
[i
].sid_ptr
) {
119 sid_copy(&(*trusts
)[i
].sid
, &r
.domains
.trusts
[i
].sid
.sid
);
121 ZERO_STRUCT((*trusts
)[i
].sid
);
124 if (r
.domains
.trusts
[i
].netbios_ptr
) {
125 (*trusts
)[i
].netbios_domain
= unistr2_tdup( mem_ctx
, &r
.domains
.trusts
[i
].netbios_domain
);
127 (*trusts
)[i
].netbios_domain
= NULL
;
130 if (r
.domains
.trusts
[i
].dns_ptr
) {
131 (*trusts
)[i
].dns_domain
= unistr2_tdup( mem_ctx
, &r
.domains
.trusts
[i
].dns_domain
);
133 (*trusts
)[i
].dns_domain
= NULL
;