examples/VFS: fix skel_transparent.c in reference to shadow_copy changes
[Samba/gebeck_regimport.git] / source3 / auth / auth_ntlmssp.c
blob1fecc0988ea2e662b03b114a8ea8df8ffff532ff
1 /*
2 Unix SMB/Netbios implementation.
3 Version 3.0
4 handle NLTMSSP, server side
6 Copyright (C) Andrew Tridgell 2001
7 Copyright (C) Andrew Bartlett 2001-2003
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "auth.h"
25 #include "../libcli/auth/ntlmssp.h"
26 #include "ntlmssp_wrap.h"
27 #include "../librpc/gen_ndr/netlogon.h"
28 #include "smbd/smbd.h"
30 NTSTATUS auth_ntlmssp_steal_session_info(TALLOC_CTX *mem_ctx,
31 struct auth_ntlmssp_state *auth_ntlmssp_state,
32 struct auth_serversupplied_info **session_info)
34 NTSTATUS nt_status = create_local_token(mem_ctx,
35 auth_ntlmssp_state->server_info,
36 &auth_ntlmssp_state->ntlmssp_state->session_key,
37 session_info);
39 if (!NT_STATUS_IS_OK(nt_status)) {
40 DEBUG(10, ("create_local_token failed: %s\n",
41 nt_errstr(nt_status)));
43 return nt_status;
46 /**
47 * Return the challenge as determined by the authentication subsystem
48 * @return an 8 byte random challenge
51 static NTSTATUS auth_ntlmssp_get_challenge(const struct ntlmssp_state *ntlmssp_state,
52 uint8_t chal[8])
54 struct auth_ntlmssp_state *auth_ntlmssp_state =
55 (struct auth_ntlmssp_state *)ntlmssp_state->callback_private;
56 auth_ntlmssp_state->auth_context->get_ntlm_challenge(
57 auth_ntlmssp_state->auth_context, chal);
58 return NT_STATUS_OK;
61 /**
62 * Some authentication methods 'fix' the challenge, so we may not be able to set it
64 * @return If the effective challenge used by the auth subsystem may be modified
66 static bool auth_ntlmssp_may_set_challenge(const struct ntlmssp_state *ntlmssp_state)
68 struct auth_ntlmssp_state *auth_ntlmssp_state =
69 (struct auth_ntlmssp_state *)ntlmssp_state->callback_private;
70 struct auth_context *auth_context = auth_ntlmssp_state->auth_context;
72 return auth_context->challenge_may_be_modified;
75 /**
76 * NTLM2 authentication modifies the effective challenge,
77 * @param challenge The new challenge value
79 static NTSTATUS auth_ntlmssp_set_challenge(struct ntlmssp_state *ntlmssp_state, DATA_BLOB *challenge)
81 struct auth_ntlmssp_state *auth_ntlmssp_state =
82 (struct auth_ntlmssp_state *)ntlmssp_state->callback_private;
83 struct auth_context *auth_context = auth_ntlmssp_state->auth_context;
85 SMB_ASSERT(challenge->length == 8);
87 auth_context->challenge = data_blob_talloc(auth_context,
88 challenge->data, challenge->length);
90 auth_context->challenge_set_by = "NTLMSSP callback (NTLM2)";
92 DEBUG(5, ("auth_context challenge set by %s\n", auth_context->challenge_set_by));
93 DEBUG(5, ("challenge is: \n"));
94 dump_data(5, auth_context->challenge.data, auth_context->challenge.length);
95 return NT_STATUS_OK;
98 /**
99 * Check the password on an NTLMSSP login.
101 * Return the session keys used on the connection.
104 static NTSTATUS auth_ntlmssp_check_password(struct ntlmssp_state *ntlmssp_state, TALLOC_CTX *mem_ctx,
105 DATA_BLOB *session_key, DATA_BLOB *lm_session_key)
107 struct auth_ntlmssp_state *auth_ntlmssp_state =
108 (struct auth_ntlmssp_state *)ntlmssp_state->callback_private;
109 struct auth_usersupplied_info *user_info = NULL;
110 NTSTATUS nt_status;
111 bool username_was_mapped;
113 /* the client has given us its machine name (which we otherwise would not get on port 445).
114 we need to possibly reload smb.conf if smb.conf includes depend on the machine name */
116 set_remote_machine_name(auth_ntlmssp_state->ntlmssp_state->client.netbios_name, True);
118 /* setup the string used by %U */
119 /* sub_set_smb_name checks for weird internally */
120 sub_set_smb_name(auth_ntlmssp_state->ntlmssp_state->user);
122 reload_services(smbd_messaging_context(), -1, True);
124 nt_status = make_user_info_map(&user_info,
125 auth_ntlmssp_state->ntlmssp_state->user,
126 auth_ntlmssp_state->ntlmssp_state->domain,
127 auth_ntlmssp_state->ntlmssp_state->client.netbios_name,
128 auth_ntlmssp_state->ntlmssp_state->lm_resp.data ? &auth_ntlmssp_state->ntlmssp_state->lm_resp : NULL,
129 auth_ntlmssp_state->ntlmssp_state->nt_resp.data ? &auth_ntlmssp_state->ntlmssp_state->nt_resp : NULL,
130 NULL, NULL, NULL,
131 AUTH_PASSWORD_RESPONSE);
133 if (!NT_STATUS_IS_OK(nt_status)) {
134 return nt_status;
137 user_info->logon_parameters = MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT | MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT;
139 nt_status = auth_ntlmssp_state->auth_context->check_ntlm_password(auth_ntlmssp_state->auth_context,
140 user_info, &auth_ntlmssp_state->server_info);
142 username_was_mapped = user_info->was_mapped;
144 free_user_info(&user_info);
146 if (!NT_STATUS_IS_OK(nt_status)) {
147 return nt_status;
150 auth_ntlmssp_state->server_info->nss_token |= username_was_mapped;
152 /* Clear out the session keys, and pass them to the caller.
153 * They will not be used in this form again - instead the
154 * NTLMSSP code will decide on the final correct session key,
155 * and put it back here at the end of
156 * auth_ntlmssp_steal_server_info */
157 if (auth_ntlmssp_state->server_info->session_key.length) {
158 DEBUG(10, ("Got NT session key of length %u\n",
159 (unsigned int)auth_ntlmssp_state->server_info->session_key.length));
160 *session_key = auth_ntlmssp_state->server_info->session_key;
161 talloc_steal(mem_ctx, auth_ntlmssp_state->server_info->session_key.data);
162 auth_ntlmssp_state->server_info->session_key = data_blob_null;
164 if (auth_ntlmssp_state->server_info->lm_session_key.length) {
165 DEBUG(10, ("Got LM session key of length %u\n",
166 (unsigned int)auth_ntlmssp_state->server_info->lm_session_key.length));
167 *lm_session_key = auth_ntlmssp_state->server_info->lm_session_key;
168 talloc_steal(mem_ctx, auth_ntlmssp_state->server_info->lm_session_key.data);
169 auth_ntlmssp_state->server_info->lm_session_key = data_blob_null;
171 return nt_status;
174 static int auth_ntlmssp_state_destructor(void *ptr);
176 NTSTATUS auth_ntlmssp_start(struct auth_ntlmssp_state **auth_ntlmssp_state)
178 NTSTATUS nt_status;
179 bool is_standalone;
180 const char *netbios_name;
181 const char *netbios_domain;
182 const char *dns_name;
183 char *dns_domain;
184 struct auth_ntlmssp_state *ans;
185 struct auth_context *auth_context;
187 if ((enum server_role)lp_server_role() == ROLE_STANDALONE) {
188 is_standalone = true;
189 } else {
190 is_standalone = false;
193 netbios_name = lp_netbios_name();
194 netbios_domain = lp_workgroup();
195 /* This should be a 'netbios domain -> DNS domain' mapping */
196 dns_domain = get_mydnsdomname(talloc_tos());
197 if (dns_domain) {
198 strlower_m(dns_domain);
200 dns_name = get_mydnsfullname();
202 ans = talloc_zero(NULL, struct auth_ntlmssp_state);
203 if (!ans) {
204 DEBUG(0,("auth_ntlmssp_start: talloc failed!\n"));
205 return NT_STATUS_NO_MEMORY;
208 nt_status = ntlmssp_server_start(ans,
209 is_standalone,
210 netbios_name,
211 netbios_domain,
212 dns_name,
213 dns_domain,
214 &ans->ntlmssp_state);
215 if (!NT_STATUS_IS_OK(nt_status)) {
216 return nt_status;
219 nt_status = make_auth_context_subsystem(talloc_tos(), &auth_context);
220 if (!NT_STATUS_IS_OK(nt_status)) {
221 return nt_status;
223 ans->auth_context = talloc_steal(ans, auth_context);
225 ans->ntlmssp_state->callback_private = ans;
226 ans->ntlmssp_state->get_challenge = auth_ntlmssp_get_challenge;
227 ans->ntlmssp_state->may_set_challenge = auth_ntlmssp_may_set_challenge;
228 ans->ntlmssp_state->set_challenge = auth_ntlmssp_set_challenge;
229 ans->ntlmssp_state->check_password = auth_ntlmssp_check_password;
231 talloc_set_destructor((TALLOC_CTX *)ans, auth_ntlmssp_state_destructor);
233 *auth_ntlmssp_state = ans;
234 return NT_STATUS_OK;
237 static int auth_ntlmssp_state_destructor(void *ptr)
239 struct auth_ntlmssp_state *ans;
241 ans = talloc_get_type(ptr, struct auth_ntlmssp_state);
243 TALLOC_FREE(ans->server_info);
244 TALLOC_FREE(ans->ntlmssp_state);
245 return 0;