VERSION: Raise version number up to 3.3.5.
[Samba/bb.git] / source / libsmb / passchange.c
blobc7140a90482ce40d2f865305b46ccad457fa9c4e
1 /*
2 Unix SMB/CIFS implementation.
3 SMB client password change routine
4 Copyright (C) Andrew Tridgell 1994-1998
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
22 /*************************************************************
23 Change a password on a remote machine using IPC calls.
24 *************************************************************/
26 NTSTATUS remote_password_change(const char *remote_machine, const char *user_name,
27 const char *old_passwd, const char *new_passwd,
28 char **err_str)
30 struct nmb_name calling, called;
31 struct cli_state *cli;
32 struct rpc_pipe_client *pipe_hnd;
33 struct sockaddr_storage ss;
35 NTSTATUS result;
36 bool pass_must_change = False;
38 *err_str = NULL;
40 if(!resolve_name( remote_machine, &ss, 0x20)) {
41 if (asprintf(err_str, "Unable to find an IP address for machine "
42 "%s.\n", remote_machine) == -1) {
43 *err_str = NULL;
45 return NT_STATUS_UNSUCCESSFUL;
48 cli = cli_initialise();
49 if (!cli) {
50 return NT_STATUS_NO_MEMORY;
53 result = cli_connect(cli, remote_machine, &ss);
54 if (!NT_STATUS_IS_OK(result)) {
55 if (asprintf(err_str, "Unable to connect to SMB server on "
56 "machine %s. Error was : %s.\n",
57 remote_machine, nt_errstr(result))==-1) {
58 *err_str = NULL;
60 cli_shutdown(cli);
61 return result;
64 make_nmb_name(&calling, global_myname() , 0x0);
65 make_nmb_name(&called , remote_machine, 0x20);
67 if (!cli_session_request(cli, &calling, &called)) {
68 if (asprintf(err_str, "machine %s rejected the session setup. "
69 "Error was : %s.\n",
70 remote_machine, cli_errstr(cli)) == -1) {
71 *err_str = NULL;
73 result = cli_nt_error(cli);
74 cli_shutdown(cli);
75 return result;
78 cli->protocol = PROTOCOL_NT1;
80 if (!cli_negprot(cli)) {
81 if (asprintf(err_str, "machine %s rejected the negotiate "
82 "protocol. Error was : %s.\n",
83 remote_machine, cli_errstr(cli)) == -1) {
84 *err_str = NULL;
86 result = cli_nt_error(cli);
87 cli_shutdown(cli);
88 return result;
91 /* Given things like SMB signing, restrict anonymous and the like,
92 try an authenticated connection first */
93 result = cli_session_setup(cli, user_name,
94 old_passwd, strlen(old_passwd)+1,
95 old_passwd, strlen(old_passwd)+1, "");
97 if (!NT_STATUS_IS_OK(result)) {
99 /* Password must change or Password expired are the only valid
100 * error conditions here from where we can proceed, the rest like
101 * account locked out or logon failure will lead to errors later
102 * anyway */
104 if (!NT_STATUS_EQUAL(result, NT_STATUS_PASSWORD_MUST_CHANGE) &&
105 !NT_STATUS_EQUAL(result, NT_STATUS_PASSWORD_EXPIRED)) {
106 if (asprintf(err_str, "Could not connect to machine %s: "
107 "%s\n", remote_machine, cli_errstr(cli)) == -1) {
108 *err_str = NULL;
110 cli_shutdown(cli);
111 return result;
114 pass_must_change = True;
117 * We should connect as the anonymous user here, in case
118 * the server has "must change password" checked...
119 * Thanks to <Nicholas.S.Jenkins@cdc.com> for this fix.
122 result = cli_session_setup(cli, "", "", 0, "", 0, "");
124 if (!NT_STATUS_IS_OK(result)) {
125 if (asprintf(err_str, "machine %s rejected the session "
126 "setup. Error was : %s.\n",
127 remote_machine, cli_errstr(cli)) == -1) {
128 *err_str = NULL;
130 cli_shutdown(cli);
131 return result;
134 cli_init_creds(cli, "", "", NULL);
135 } else {
136 cli_init_creds(cli, user_name, "", old_passwd);
139 if (!cli_send_tconX(cli, "IPC$", "IPC", "", 1)) {
140 if (asprintf(err_str, "machine %s rejected the tconX on the IPC$ "
141 "share. Error was : %s.\n",
142 remote_machine, cli_errstr(cli)) == -1) {
143 *err_str = NULL;
145 result = cli_nt_error(cli);
146 cli_shutdown(cli);
147 return result;
150 /* Try not to give the password away too easily */
152 if (!pass_must_change) {
153 result = cli_rpc_pipe_open_ntlmssp(cli,
154 &ndr_table_samr.syntax_id,
155 PIPE_AUTH_LEVEL_PRIVACY,
156 "", /* what domain... ? */
157 user_name,
158 old_passwd,
159 &pipe_hnd);
160 } else {
162 * If the user password must be changed the ntlmssp bind will
163 * fail the same way as the session setup above did. The
164 * difference ist that with a pipe bind we don't get a good
165 * error message, the result will be that the rpc call below
166 * will just fail. So we do it anonymously, there's no other
167 * way.
169 result = cli_rpc_pipe_open_noauth(
170 cli, &ndr_table_samr.syntax_id, &pipe_hnd);
173 if (!NT_STATUS_IS_OK(result)) {
174 if (lp_client_lanman_auth()) {
175 /* Use the old RAP method. */
176 if (!cli_oem_change_password(cli, user_name, new_passwd, old_passwd)) {
177 if (asprintf(err_str, "machine %s rejected the "
178 "password change: Error was : %s.\n",
179 remote_machine, cli_errstr(cli)) == -1) {
180 *err_str = NULL;
182 result = cli_nt_error(cli);
183 cli_shutdown(cli);
184 return result;
186 } else {
187 if (asprintf(err_str, "SAMR connection to machine %s "
188 "failed. Error was %s, but LANMAN password "
189 "changed are disabled\n",
190 nt_errstr(result), remote_machine) == -1) {
191 *err_str = NULL;
193 result = cli_nt_error(cli);
194 cli_shutdown(cli);
195 return result;
199 result = rpccli_samr_chgpasswd_user2(pipe_hnd, talloc_tos(),
200 user_name, new_passwd, old_passwd);
201 if (NT_STATUS_IS_OK(result)) {
202 /* Great - it all worked! */
203 cli_shutdown(cli);
204 return NT_STATUS_OK;
206 } else if (!(NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED)
207 || NT_STATUS_EQUAL(result, NT_STATUS_UNSUCCESSFUL))) {
208 /* it failed, but for reasons such as wrong password, too short etc ... */
210 if (asprintf(err_str, "machine %s rejected the password change: "
211 "Error was : %s.\n",
212 remote_machine, get_friendly_nt_error_msg(result)) == -1) {
213 *err_str = NULL;
215 cli_shutdown(cli);
216 return result;
219 /* OK, that failed, so try again... */
220 TALLOC_FREE(pipe_hnd);
222 /* Try anonymous NTLMSSP... */
223 cli_init_creds(cli, "", "", NULL);
225 result = NT_STATUS_UNSUCCESSFUL;
227 /* OK, this is ugly, but... try an anonymous pipe. */
228 result = cli_rpc_pipe_open_noauth(cli, &ndr_table_samr.syntax_id,
229 &pipe_hnd);
231 if ( NT_STATUS_IS_OK(result) &&
232 (NT_STATUS_IS_OK(result = rpccli_samr_chgpasswd_user2(
233 pipe_hnd, talloc_tos(), user_name,
234 new_passwd, old_passwd)))) {
235 /* Great - it all worked! */
236 cli_shutdown(cli);
237 return NT_STATUS_OK;
238 } else {
239 if (!(NT_STATUS_EQUAL(result, NT_STATUS_ACCESS_DENIED)
240 || NT_STATUS_EQUAL(result, NT_STATUS_UNSUCCESSFUL))) {
241 /* it failed, but again it was due to things like new password too short */
243 if (asprintf(err_str, "machine %s rejected the "
244 "(anonymous) password change: Error was : "
245 "%s.\n", remote_machine,
246 get_friendly_nt_error_msg(result)) == -1) {
247 *err_str = NULL;
249 cli_shutdown(cli);
250 return result;
253 /* We have failed to change the user's password, and we think the server
254 just might not support SAMR password changes, so fall back */
256 if (lp_client_lanman_auth()) {
257 /* Use the old RAP method. */
258 if (cli_oem_change_password(cli, user_name, new_passwd, old_passwd)) {
259 /* SAMR failed, but the old LanMan protocol worked! */
261 cli_shutdown(cli);
262 return NT_STATUS_OK;
264 if (asprintf(err_str, "machine %s rejected the password "
265 "change: Error was : %s.\n",
266 remote_machine, cli_errstr(cli)) == -1) {
267 *err_str = NULL;
269 result = cli_nt_error(cli);
270 cli_shutdown(cli);
271 return result;
272 } else {
273 if (asprintf(err_str, "SAMR connection to machine %s "
274 "failed. Error was %s, but LANMAN password "
275 "changed are disabled\n",
276 nt_errstr(result), remote_machine) == -1) {
277 *err_str = NULL;
279 cli_shutdown(cli);
280 return NT_STATUS_UNSUCCESSFUL;