2 Unix SMB/CIFS implementation.
3 Password and authentication handling
4 Copyright (C) Andrew Bartlett 2001-2002
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 #include "../lib/tsocket/tsocket.h"
24 extern struct auth_context
*negprot_global_auth_context
;
25 extern bool global_encrypted_passwords_negotiated
;
28 #define DBGC_CLASS DBGC_AUTH
30 /****************************************************************************
31 COMPATIBILITY INTERFACES:
32 ***************************************************************************/
34 /****************************************************************************
35 check if a username/password is OK assuming the password is in plaintext
36 return True if the password is correct, False otherwise
37 ****************************************************************************/
39 NTSTATUS
check_plaintext_password(const char *smb_name
,
40 const struct tsocket_address
*remote_address
,
41 DATA_BLOB plaintext_blob
,
42 struct auth_serversupplied_info
**server_info
)
44 struct auth_context
*plaintext_auth_context
= NULL
;
45 struct auth_usersupplied_info
*user_info
= NULL
;
49 nt_status
= make_auth_context_subsystem(talloc_tos(),
50 &plaintext_auth_context
);
51 if (!NT_STATUS_IS_OK(nt_status
)) {
55 plaintext_auth_context
->get_ntlm_challenge(plaintext_auth_context
,
58 if (!make_user_info_for_reply(&user_info
,
59 smb_name
, lp_workgroup(),
63 return NT_STATUS_NO_MEMORY
;
66 nt_status
= plaintext_auth_context
->check_ntlm_password(plaintext_auth_context
,
67 user_info
, server_info
);
69 TALLOC_FREE(plaintext_auth_context
);
70 free_user_info(&user_info
);
74 static NTSTATUS
pass_check_smb(struct auth_context
*actx
,
77 const struct tsocket_address
*remote_address
,
83 struct auth_serversupplied_info
*server_info
= NULL
;
84 struct auth_usersupplied_info
*user_info
= NULL
;
86 return NT_STATUS_INTERNAL_ERROR
;
88 make_user_info_for_reply_enc(&user_info
, smb_name
,
93 nt_status
= actx
->check_ntlm_password(actx
, user_info
, &server_info
);
94 free_user_info(&user_info
);
95 TALLOC_FREE(server_info
);
99 /****************************************************************************
100 check if a username/password pair is ok via the auth subsystem.
101 return True if the password is correct, False otherwise
102 ****************************************************************************/
104 bool password_ok(struct auth_context
*actx
, bool global_encrypted
,
105 const char *session_workgroup
,
106 const char *smb_name
,
107 const struct tsocket_address
*remote_address
,
108 DATA_BLOB password_blob
)
111 DATA_BLOB null_password
= data_blob_null
;
112 bool encrypted
= (global_encrypted
&& (password_blob
.length
== 24 || password_blob
.length
> 46));
116 * The password could be either NTLM or plain LM. Try NTLM first,
117 * but fall-through as required.
118 * Vista sends NTLMv2 here - we need to try the client given workgroup.
120 if (session_workgroup
) {
121 if (NT_STATUS_IS_OK(pass_check_smb(actx
,
129 if (NT_STATUS_IS_OK(pass_check_smb(actx
,
139 if (NT_STATUS_IS_OK(pass_check_smb(actx
,
148 if (NT_STATUS_IS_OK(pass_check_smb(actx
,
157 struct auth_serversupplied_info
*server_info
= NULL
;
158 NTSTATUS nt_status
= check_plaintext_password(smb_name
,
162 TALLOC_FREE(server_info
);
163 if (NT_STATUS_IS_OK(nt_status
)) {