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/>.
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
,
30 struct nmb_name calling
, called
;
31 struct cli_state
*cli
;
32 struct rpc_pipe_client
*pipe_hnd
;
33 struct sockaddr_storage ss
;
36 bool pass_must_change
= False
;
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) {
45 return NT_STATUS_UNSUCCESSFUL
;
48 cli
= cli_initialise();
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) {
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. "
70 remote_machine
, cli_errstr(cli
)) == -1) {
73 result
= cli_nt_error(cli
);
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) {
86 result
= cli_nt_error(cli
);
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
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) {
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) {
134 cli_init_creds(cli
, "", "", NULL
);
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) {
145 result
= cli_nt_error(cli
);
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... ? */
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
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) {
182 result
= cli_nt_error(cli
);
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) {
193 result
= cli_nt_error(cli
);
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! */
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: "
212 remote_machine
, get_friendly_nt_error_msg(result
)) == -1) {
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
,
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! */
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) {
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! */
264 if (asprintf(err_str
, "machine %s rejected the password "
265 "change: Error was : %s.\n",
266 remote_machine
, cli_errstr(cli
)) == -1) {
269 result
= cli_nt_error(cli
);
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) {
280 return NT_STATUS_UNSUCCESSFUL
;