docs: remove extra spaces in synopsis of dbwrap_tool
[Samba.git] / source3 / libsmb / trusts_util.c
blobb38aec648beddaed7c0858880fea1fff4bb853d2
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 "../libcli/auth/netlogon_creds_cli.h"
24 #include "rpc_client/cli_netlogon.h"
25 #include "rpc_client/cli_pipe.h"
26 #include "../librpc/gen_ndr/ndr_netlogon.h"
27 #include "secrets.h"
28 #include "passdb.h"
29 #include "libsmb/libsmb.h"
30 #include "source3/include/messages.h"
31 #include "source3/include/g_lock.h"
33 /*********************************************************
34 Change the domain password on the PDC.
35 Do most of the legwork ourselfs. Caller must have
36 already setup the connection to the NETLOGON pipe
37 **********************************************************/
39 struct trust_pw_change_state {
40 struct g_lock_ctx *g_ctx;
41 char *g_lock_key;
44 static int trust_pw_change_state_destructor(struct trust_pw_change_state *state)
46 g_lock_unlock(state->g_ctx, state->g_lock_key);
47 return 0;
50 NTSTATUS trust_pw_change(struct netlogon_creds_cli_context *context,
51 struct messaging_context *msg_ctx,
52 struct dcerpc_binding_handle *b,
53 const char *domain,
54 bool force)
56 TALLOC_CTX *frame = talloc_stackframe();
57 struct trust_pw_change_state *state;
58 struct samr_Password current_nt_hash;
59 const struct samr_Password *previous_nt_hash = NULL;
60 enum netr_SchannelType sec_channel_type = SEC_CHAN_NULL;
61 const char *account_name;
62 char *new_trust_passwd;
63 char *pwd;
64 struct dom_sid sid;
65 time_t pass_last_set_time;
66 struct timeval g_timeout = { 0, };
67 int timeout = 0;
68 struct timeval tv = { 0, };
69 NTSTATUS status;
71 state = talloc_zero(frame, struct trust_pw_change_state);
72 if (state == NULL) {
73 TALLOC_FREE(frame);
74 return NT_STATUS_NO_MEMORY;
77 state->g_ctx = g_lock_ctx_init(state, msg_ctx);
78 if (state->g_ctx == NULL) {
79 TALLOC_FREE(frame);
80 return NT_STATUS_NO_MEMORY;
83 state->g_lock_key = talloc_asprintf(state,
84 "trust_password_change_%s",
85 domain);
86 if (state->g_lock_key == NULL) {
87 TALLOC_FREE(frame);
88 return NT_STATUS_NO_MEMORY;
91 g_timeout = timeval_current_ofs(10, 0);
92 status = g_lock_lock(state->g_ctx,
93 state->g_lock_key,
94 G_LOCK_WRITE, g_timeout);
95 if (!NT_STATUS_IS_OK(status)) {
96 DEBUG(1, ("could not get g_lock on [%s]!\n",
97 state->g_lock_key));
98 TALLOC_FREE(frame);
99 return status;
102 talloc_set_destructor(state, trust_pw_change_state_destructor);
104 if (!get_trust_pw_hash(domain, current_nt_hash.hash,
105 &account_name,
106 &sec_channel_type)) {
107 DEBUG(0, ("could not fetch domain secrets for domain %s!\n", domain));
108 TALLOC_FREE(frame);
109 return NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE;
112 switch (sec_channel_type) {
113 case SEC_CHAN_WKSTA:
114 pwd = secrets_fetch_machine_password(domain,
115 &pass_last_set_time,
116 NULL);
117 if (pwd == NULL) {
118 TALLOC_FREE(frame);
119 return NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE;
121 break;
122 case SEC_CHAN_DOMAIN:
123 if (!pdb_get_trusteddom_pw(domain, &pwd, &sid, &pass_last_set_time)) {
124 TALLOC_FREE(frame);
125 return NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE;
127 break;
128 default:
129 TALLOC_FREE(frame);
130 return NT_STATUS_NOT_SUPPORTED;
133 timeout = lp_machine_password_timeout();
134 if (timeout == 0) {
135 if (!force) {
136 DEBUG(10,("machine password never expires\n"));
137 TALLOC_FREE(frame);
138 return NT_STATUS_OK;
142 tv.tv_sec = pass_last_set_time;
143 DEBUG(10, ("password last changed %s\n",
144 timeval_string(talloc_tos(), &tv, false)));
145 tv.tv_sec += timeout;
146 DEBUGADD(10, ("password valid until %s\n",
147 timeval_string(talloc_tos(), &tv, false)));
149 if (!force && !timeval_expired(&tv)) {
150 TALLOC_FREE(frame);
151 return NT_STATUS_OK;
154 /* Create a random machine account password */
155 new_trust_passwd = generate_random_password(frame,
156 DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH,
157 DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
158 if (new_trust_passwd == NULL) {
159 DEBUG(0, ("generate_random_password failed\n"));
160 TALLOC_FREE(frame);
161 return NT_STATUS_NO_MEMORY;
164 status = netlogon_creds_cli_auth(context, b,
165 current_nt_hash,
166 previous_nt_hash);
167 if (!NT_STATUS_IS_OK(status)) {
168 TALLOC_FREE(frame);
169 return status;
172 status = netlogon_creds_cli_ServerPasswordSet(context, b,
173 new_trust_passwd, NULL);
174 if (!NT_STATUS_IS_OK(status)) {
175 TALLOC_FREE(frame);
176 return status;
179 DEBUG(3,("%s : trust_pw_change_and_store_it: Changed password.\n",
180 current_timestring(talloc_tos(), False)));
183 * Return the result of trying to write the new password
184 * back into the trust account file.
187 switch (sec_channel_type) {
189 case SEC_CHAN_WKSTA:
190 if (!secrets_store_machine_password(new_trust_passwd, domain, sec_channel_type)) {
191 TALLOC_FREE(frame);
192 return NT_STATUS_INTERNAL_DB_CORRUPTION;
194 break;
196 case SEC_CHAN_DOMAIN:
198 * we need to get the sid first for the
199 * pdb_set_trusteddom_pw call
201 if (!pdb_set_trusteddom_pw(domain, new_trust_passwd, &sid)) {
202 TALLOC_FREE(frame);
203 return NT_STATUS_INTERNAL_DB_CORRUPTION;
205 break;
207 default:
208 break;
211 TALLOC_FREE(frame);
212 return NT_STATUS_OK;