s4/heimdal_build: use GetTimeOfDay macro instead of gettimeofday
[Samba/ita.git] / source3 / libsmb / trusts_util.c
blobe122937d6e7a7ad16e082353975345479a0b9145
1 /*
2 * Unix SMB/CIFS implementation.
3 * Routines to operate on various trust relationships
4 * Copyright (C) Andrew Bartlett 2001
5 * Copyright (C) Rafal Szczesniak 2003
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 3 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, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "../libcli/auth/libcli_auth.h"
23 #include "../librpc/gen_ndr/cli_lsa.h"
24 #include "rpc_client/cli_lsarpc.h"
25 #include "rpc_client/cli_netlogon.h"
26 #include "../librpc/gen_ndr/ndr_netlogon.h"
27 #include "secrets.h"
29 /*********************************************************
30 Change the domain password on the PDC.
31 Store the password ourselves, but use the supplied password
32 Caller must have already setup the connection to the NETLOGON pipe
33 **********************************************************/
35 NTSTATUS trust_pw_change_and_store_it(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
36 const char *domain,
37 const char *account_name,
38 unsigned char orig_trust_passwd_hash[16],
39 enum netr_SchannelType sec_channel_type)
41 unsigned char new_trust_passwd_hash[16];
42 char *new_trust_passwd;
43 NTSTATUS nt_status;
45 switch (sec_channel_type) {
46 case SEC_CHAN_WKSTA:
47 case SEC_CHAN_DOMAIN:
48 break;
49 default:
50 return NT_STATUS_NOT_SUPPORTED;
53 /* Create a random machine account password */
54 new_trust_passwd = generate_random_str(mem_ctx, DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
56 if (new_trust_passwd == NULL) {
57 DEBUG(0, ("talloc_strdup failed\n"));
58 return NT_STATUS_NO_MEMORY;
61 E_md4hash(new_trust_passwd, new_trust_passwd_hash);
63 nt_status = rpccli_netlogon_set_trust_password(cli, mem_ctx,
64 account_name,
65 orig_trust_passwd_hash,
66 new_trust_passwd,
67 new_trust_passwd_hash,
68 sec_channel_type);
70 if (NT_STATUS_IS_OK(nt_status)) {
71 DEBUG(3,("%s : trust_pw_change_and_store_it: Changed password.\n",
72 current_timestring(talloc_tos(), False)));
74 * Return the result of trying to write the new password
75 * back into the trust account file.
78 switch (sec_channel_type) {
80 case SEC_CHAN_WKSTA:
81 if (!secrets_store_machine_password(new_trust_passwd, domain, sec_channel_type)) {
82 nt_status = NT_STATUS_UNSUCCESSFUL;
84 break;
86 case SEC_CHAN_DOMAIN: {
87 char *pwd;
88 struct dom_sid sid;
89 time_t pass_last_set_time;
91 /* we need to get the sid first for the
92 * pdb_set_trusteddom_pw call */
94 if (!pdb_get_trusteddom_pw(domain, &pwd, &sid, &pass_last_set_time)) {
95 nt_status = NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE;
97 if (!pdb_set_trusteddom_pw(domain, new_trust_passwd, &sid)) {
98 nt_status = NT_STATUS_INTERNAL_DB_CORRUPTION;
100 break;
102 default:
103 break;
107 return nt_status;
110 /*********************************************************
111 Change the domain password on the PDC.
112 Do most of the legwork ourselfs. Caller must have
113 already setup the connection to the NETLOGON pipe
114 **********************************************************/
116 NTSTATUS trust_pw_find_change_and_store_it(struct rpc_pipe_client *cli,
117 TALLOC_CTX *mem_ctx,
118 const char *domain)
120 unsigned char old_trust_passwd_hash[16];
121 enum netr_SchannelType sec_channel_type = SEC_CHAN_NULL;
122 const char *account_name;
124 if (!get_trust_pw_hash(domain, old_trust_passwd_hash, &account_name,
125 &sec_channel_type)) {
126 DEBUG(0, ("could not fetch domain secrets for domain %s!\n", domain));
127 return NT_STATUS_UNSUCCESSFUL;
130 return trust_pw_change_and_store_it(cli, mem_ctx, domain,
131 account_name,
132 old_trust_passwd_hash,
133 sec_channel_type);
136 /*********************************************************************
137 Enumerate the list of trusted domains from a DC
138 *********************************************************************/
140 bool enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain,
141 char ***domain_names, uint32 *num_domains,
142 struct dom_sid **sids )
144 struct policy_handle pol;
145 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
146 fstring dc_name;
147 struct sockaddr_storage dc_ss;
148 uint32 enum_ctx = 0;
149 struct cli_state *cli = NULL;
150 struct rpc_pipe_client *lsa_pipe = NULL;
151 bool retry;
152 struct lsa_DomainList dom_list;
153 int i;
155 *domain_names = NULL;
156 *num_domains = 0;
157 *sids = NULL;
159 /* lookup a DC first */
161 if ( !get_dc_name(domain, NULL, dc_name, &dc_ss) ) {
162 DEBUG(3,("enumerate_domain_trusts: can't locate a DC for domain %s\n",
163 domain));
164 return False;
167 /* setup the anonymous connection */
169 result = cli_full_connection( &cli, global_myname(), dc_name, &dc_ss, 0, "IPC$", "IPC",
170 "", "", "", 0, Undefined, &retry);
171 if ( !NT_STATUS_IS_OK(result) )
172 goto done;
174 /* open the LSARPC_PIPE */
176 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc.syntax_id,
177 &lsa_pipe);
178 if (!NT_STATUS_IS_OK(result)) {
179 goto done;
182 /* get a handle */
184 result = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, True,
185 LSA_POLICY_VIEW_LOCAL_INFORMATION, &pol);
186 if ( !NT_STATUS_IS_OK(result) )
187 goto done;
189 /* Lookup list of trusted domains */
191 result = rpccli_lsa_EnumTrustDom(lsa_pipe, mem_ctx,
192 &pol,
193 &enum_ctx,
194 &dom_list,
195 (uint32_t)-1);
196 if ( !NT_STATUS_IS_OK(result) )
197 goto done;
199 *num_domains = dom_list.count;
201 *domain_names = TALLOC_ZERO_ARRAY(mem_ctx, char *, *num_domains);
202 if (!*domain_names) {
203 result = NT_STATUS_NO_MEMORY;
204 goto done;
207 *sids = TALLOC_ZERO_ARRAY(mem_ctx, struct dom_sid, *num_domains);
208 if (!*sids) {
209 result = NT_STATUS_NO_MEMORY;
210 goto done;
213 for (i=0; i< *num_domains; i++) {
214 (*domain_names)[i] = CONST_DISCARD(char *, dom_list.domains[i].name.string);
215 (*sids)[i] = *dom_list.domains[i].sid;
218 done:
219 /* cleanup */
220 if (cli) {
221 DEBUG(10,("enumerate_domain_trusts: shutting down connection...\n"));
222 cli_shutdown( cli );
225 return NT_STATUS_IS_OK(result);
228 NTSTATUS change_trust_account_password( const char *domain, const char *remote_machine)
230 NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
231 struct sockaddr_storage pdc_ss;
232 fstring dc_name;
233 struct cli_state *cli = NULL;
234 struct rpc_pipe_client *netlogon_pipe = NULL;
236 DEBUG(5,("change_trust_account_password: Attempting to change trust account password in domain %s....\n",
237 domain));
239 if (remote_machine == NULL || !strcmp(remote_machine, "*")) {
240 /* Use the PDC *only* for this */
242 if ( !get_pdc_ip(domain, &pdc_ss) ) {
243 DEBUG(0,("Can't get IP for PDC for domain %s\n", domain));
244 goto failed;
247 if ( !name_status_find( domain, 0x1b, 0x20, &pdc_ss, dc_name) )
248 goto failed;
249 } else {
250 /* supoport old deprecated "smbpasswd -j DOMAIN -r MACHINE" behavior */
251 fstrcpy( dc_name, remote_machine );
254 /* if this next call fails, then give up. We can't do
255 password changes on BDC's --jerry */
257 if (!NT_STATUS_IS_OK(cli_full_connection(&cli, global_myname(), dc_name,
258 NULL, 0,
259 "IPC$", "IPC",
260 "", "",
261 "", 0, Undefined, NULL))) {
262 DEBUG(0,("modify_trust_password: Connection to %s failed!\n", dc_name));
263 nt_status = NT_STATUS_UNSUCCESSFUL;
264 goto failed;
268 * Ok - we have an anonymous connection to the IPC$ share.
269 * Now start the NT Domain stuff :-).
272 /* Shouldn't we open this with schannel ? JRA. */
274 nt_status = cli_rpc_pipe_open_noauth(
275 cli, &ndr_table_netlogon.syntax_id, &netlogon_pipe);
276 if (!NT_STATUS_IS_OK(nt_status)) {
277 DEBUG(0,("modify_trust_password: unable to open the domain client session to machine %s. Error was : %s.\n",
278 dc_name, nt_errstr(nt_status)));
279 cli_shutdown(cli);
280 cli = NULL;
281 goto failed;
284 nt_status = trust_pw_find_change_and_store_it(
285 netlogon_pipe, netlogon_pipe, domain);
287 cli_shutdown(cli);
288 cli = NULL;
290 failed:
291 if (!NT_STATUS_IS_OK(nt_status)) {
292 DEBUG(0,("%s : change_trust_account_password: Failed to change password for domain %s.\n",
293 current_timestring(talloc_tos(), False), domain));
295 else
296 DEBUG(5,("change_trust_account_password: sucess!\n"));
298 return nt_status;