s3-shadow-copy2: Fix dir/@GMT-2012.10.15-13.48.43 form of paths
[Samba.git] / source3 / auth / auth.c
blob6d1192ededddb1131e43a50a2b2b571e4e3919a6
1 /*
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/>.
20 #include "includes.h"
21 #include "auth.h"
22 #include "../lib/tsocket/tsocket.h"
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_AUTH
27 static_decl_auth;
29 static struct auth_init_function_entry *auth_backends = NULL;
31 static struct auth_init_function_entry *auth_find_backend_entry(const char *name);
33 NTSTATUS smb_register_auth(int version, const char *name, auth_init_function init)
35 struct auth_init_function_entry *entry = auth_backends;
37 if (version != AUTH_INTERFACE_VERSION) {
38 DEBUG(0,("Can't register auth_method!\n"
39 "You tried to register an auth module with AUTH_INTERFACE_VERSION %d, while this version of samba uses %d\n",
40 version,AUTH_INTERFACE_VERSION));
41 return NT_STATUS_OBJECT_TYPE_MISMATCH;
44 if (!name || !init) {
45 return NT_STATUS_INVALID_PARAMETER;
48 DEBUG(5,("Attempting to register auth backend %s\n", name));
50 if (auth_find_backend_entry(name)) {
51 DEBUG(0,("There already is an auth method registered with the name %s!\n", name));
52 return NT_STATUS_OBJECT_NAME_COLLISION;
55 entry = SMB_XMALLOC_P(struct auth_init_function_entry);
56 entry->name = smb_xstrdup(name);
57 entry->init = init;
59 DLIST_ADD(auth_backends, entry);
60 DEBUG(5,("Successfully added auth method '%s'\n", name));
61 return NT_STATUS_OK;
64 static struct auth_init_function_entry *auth_find_backend_entry(const char *name)
66 struct auth_init_function_entry *entry = auth_backends;
68 while(entry) {
69 if (strcmp(entry->name, name)==0) return entry;
70 entry = entry->next;
73 return NULL;
76 /****************************************************************************
77 Try to get a challenge out of the various authentication modules.
78 Returns a const char of length 8 bytes.
79 ****************************************************************************/
81 NTSTATUS auth_get_ntlm_challenge(struct auth_context *auth_context,
82 uint8_t chal[8])
84 uchar tmp[8];
87 if (auth_context->challenge.length) {
88 DEBUG(5, ("get_ntlm_challenge (auth subsystem): returning previous challenge by module %s (normal)\n",
89 auth_context->challenge_set_by));
90 memcpy(chal, auth_context->challenge.data, 8);
91 return NT_STATUS_OK;
94 generate_random_buffer(tmp, sizeof(tmp));
95 auth_context->challenge = data_blob_talloc(auth_context,
96 tmp, sizeof(tmp));
98 auth_context->challenge_set_by = "random";
100 memcpy(chal, auth_context->challenge.data, 8);
101 return NT_STATUS_OK;
106 * Check user is in correct domain (if required)
108 * @param user Only used to fill in the debug message
110 * @param domain The domain to be verified
112 * @return True if the user can connect with that domain,
113 * False otherwise.
116 static bool check_domain_match(const char *user, const char *domain)
119 * If we aren't serving to trusted domains, we must make sure that
120 * the validation request comes from an account in the same domain
121 * as the Samba server
124 if (!lp_allow_trusted_domains() &&
125 !(strequal("", domain) ||
126 strequal(lp_workgroup(), domain) ||
127 is_myname(domain))) {
128 DEBUG(1, ("check_domain_match: Attempt to connect as user %s from domain %s denied.\n", user, domain));
129 return False;
130 } else {
131 return True;
136 * Check a user's Plaintext, LM or NTLM password.
138 * Check a user's password, as given in the user_info struct and return various
139 * interesting details in the server_info struct.
141 * This function does NOT need to be in a become_root()/unbecome_root() pair
142 * as it makes the calls itself when needed.
144 * The return value takes precedence over the contents of the server_info
145 * struct. When the return is other than NT_STATUS_OK the contents
146 * of that structure is undefined.
148 * @param user_info Contains the user supplied components, including the passwords.
149 * Must be created with make_user_info() or one of its wrappers.
151 * @param auth_context Supplies the challenges and some other data.
152 * Must be created with make_auth_context(), and the challenges should be
153 * filled in, either at creation or by calling the challenge geneation
154 * function auth_get_challenge().
156 * @param server_info If successful, contains information about the authentication,
157 * including a struct samu struct describing the user.
159 * @return An NTSTATUS with NT_STATUS_OK or an appropriate error.
163 NTSTATUS auth_check_ntlm_password(TALLOC_CTX *mem_ctx,
164 const struct auth_context *auth_context,
165 const struct auth_usersupplied_info *user_info,
166 struct auth_serversupplied_info **pserver_info)
168 /* if all the modules say 'not for me' this is reasonable */
169 NTSTATUS nt_status = NT_STATUS_NO_SUCH_USER;
170 const char *unix_username;
171 auth_methods *auth_method;
173 if (user_info == NULL || auth_context == NULL || pserver_info == NULL) {
174 return NT_STATUS_LOGON_FAILURE;
177 DEBUG(3, ("check_ntlm_password: Checking password for unmapped user [%s]\\[%s]@[%s] with the new password interface\n",
178 user_info->client.domain_name, user_info->client.account_name, user_info->workstation_name));
180 DEBUG(3, ("check_ntlm_password: mapped user is: [%s]\\[%s]@[%s]\n",
181 user_info->mapped.domain_name, user_info->mapped.account_name, user_info->workstation_name));
183 if (auth_context->challenge.length != 8) {
184 DEBUG(0, ("check_ntlm_password: Invalid challenge stored for this auth context - cannot continue\n"));
185 return NT_STATUS_LOGON_FAILURE;
188 if (auth_context->challenge_set_by)
189 DEBUG(10, ("check_ntlm_password: auth_context challenge created by %s\n",
190 auth_context->challenge_set_by));
192 DEBUG(10, ("challenge is: \n"));
193 dump_data(5, auth_context->challenge.data, auth_context->challenge.length);
195 #ifdef DEBUG_PASSWORD
196 DEBUG(100, ("user_info has passwords of length %d and %d\n",
197 (int)user_info->password.response.lanman.length, (int)user_info->password.response.nt.length));
198 DEBUG(100, ("lm:\n"));
199 dump_data(100, user_info->password.response.lanman.data, user_info->password.response.lanman.length);
200 DEBUG(100, ("nt:\n"));
201 dump_data(100, user_info->password.response.nt.data, user_info->password.response.nt.length);
202 #endif
204 /* This needs to be sorted: If it doesn't match, what should we do? */
205 if (!check_domain_match(user_info->client.account_name, user_info->mapped.domain_name))
206 return NT_STATUS_LOGON_FAILURE;
208 for (auth_method = auth_context->auth_method_list;auth_method; auth_method = auth_method->next) {
209 struct auth_serversupplied_info *server_info;
210 TALLOC_CTX *tmp_ctx;
211 NTSTATUS result;
213 if (user_info->flags & USER_INFO_LOCAL_SAM_ONLY
214 && !(auth_method->flags & AUTH_METHOD_LOCAL_SAM)) {
215 continue;
218 tmp_ctx = talloc_named(mem_ctx,
220 "%s authentication for user %s\\%s",
221 auth_method->name,
222 user_info->mapped.domain_name,
223 user_info->client.account_name);
225 result = auth_method->auth(auth_context,
226 auth_method->private_data,
227 tmp_ctx,
228 user_info,
229 &server_info);
231 /* check if the module did anything */
232 if ( NT_STATUS_V(result) == NT_STATUS_V(NT_STATUS_NOT_IMPLEMENTED) ) {
233 DEBUG(10,("check_ntlm_password: %s had nothing to say\n", auth_method->name));
234 TALLOC_FREE(tmp_ctx);
235 continue;
238 nt_status = result;
240 if (NT_STATUS_IS_OK(nt_status)) {
241 DEBUG(3, ("check_ntlm_password: %s authentication for user [%s] succeeded\n",
242 auth_method->name, user_info->client.account_name));
243 } else {
244 DEBUG(5, ("check_ntlm_password: %s authentication for user [%s] FAILED with error %s\n",
245 auth_method->name, user_info->client.account_name, nt_errstr(nt_status)));
248 if (NT_STATUS_IS_OK(nt_status)) {
249 *pserver_info = talloc_steal(mem_ctx, server_info);
250 TALLOC_FREE(tmp_ctx);
251 break;
254 TALLOC_FREE(tmp_ctx);
257 /* successful authentication */
259 if (NT_STATUS_IS_OK(nt_status)) {
260 unix_username = (*pserver_info)->unix_name;
262 /* We skip doing this step if the caller asked us not to */
263 if (!(user_info->flags & USER_INFO_INFO3_AND_NO_AUTHZ)
264 && !(*pserver_info)->guest) {
265 const char *rhost;
267 if (tsocket_address_is_inet(user_info->remote_host, "ip")) {
268 rhost = tsocket_address_inet_addr_string(user_info->remote_host,
269 talloc_tos());
270 if (rhost == NULL) {
271 return NT_STATUS_NO_MEMORY;
273 } else {
274 rhost = "127.0.0.1";
277 /* We might not be root if we are an RPC call */
278 become_root();
279 nt_status = smb_pam_accountcheck(unix_username,
280 rhost);
281 unbecome_root();
283 if (NT_STATUS_IS_OK(nt_status)) {
284 DEBUG(5, ("check_ntlm_password: PAM Account for user [%s] succeeded\n",
285 unix_username));
286 } else {
287 DEBUG(3, ("check_ntlm_password: PAM Account for user [%s] FAILED with error %s\n",
288 unix_username, nt_errstr(nt_status)));
292 if (NT_STATUS_IS_OK(nt_status)) {
293 DEBUG((*pserver_info)->guest ? 5 : 2,
294 ("check_ntlm_password: %sauthentication for user [%s] -> [%s] -> [%s] succeeded\n",
295 (*pserver_info)->guest ? "guest " : "",
296 user_info->client.account_name,
297 user_info->mapped.account_name,
298 unix_username));
301 return nt_status;
304 /* failed authentication; check for guest lapping */
306 DEBUG(2, ("check_ntlm_password: Authentication for user [%s] -> [%s] FAILED with error %s\n",
307 user_info->client.account_name, user_info->mapped.account_name,
308 nt_errstr(nt_status)));
309 ZERO_STRUCTP(pserver_info);
311 return nt_status;
314 /***************************************************************************
315 Clear out a auth_context, and destroy the attached TALLOC_CTX
316 ***************************************************************************/
318 static int auth_context_destructor(void *ptr)
320 struct auth_context *ctx = talloc_get_type(ptr, struct auth_context);
321 struct auth_methods *am;
324 /* Free private data of context's authentication methods */
325 for (am = ctx->auth_method_list; am; am = am->next) {
326 TALLOC_FREE(am->private_data);
329 return 0;
332 /***************************************************************************
333 Make a auth_info struct
334 ***************************************************************************/
336 static NTSTATUS make_auth_context(TALLOC_CTX *mem_ctx,
337 struct auth_context **auth_context)
339 struct auth_context *ctx;
341 ctx = talloc_zero(mem_ctx, struct auth_context);
342 if (!ctx) {
343 DEBUG(0,("make_auth_context: talloc failed!\n"));
344 return NT_STATUS_NO_MEMORY;
347 talloc_set_destructor((TALLOC_CTX *)ctx, auth_context_destructor);
349 *auth_context = ctx;
350 return NT_STATUS_OK;
353 bool load_auth_module(struct auth_context *auth_context,
354 const char *module, auth_methods **ret)
356 static bool initialised_static_modules = False;
358 struct auth_init_function_entry *entry;
359 char *module_name = smb_xstrdup(module);
360 char *module_params = NULL;
361 char *p;
362 bool good = False;
364 /* Initialise static modules if not done so yet */
365 if(!initialised_static_modules) {
366 static_init_auth;
367 initialised_static_modules = True;
370 DEBUG(5,("load_auth_module: Attempting to find an auth method to match %s\n",
371 module));
373 p = strchr(module_name, ':');
374 if (p) {
375 *p = 0;
376 module_params = p+1;
377 trim_char(module_params, ' ', ' ');
380 trim_char(module_name, ' ', ' ');
382 entry = auth_find_backend_entry(module_name);
384 if (entry == NULL) {
385 if (NT_STATUS_IS_OK(smb_probe_module("auth", module_name))) {
386 entry = auth_find_backend_entry(module_name);
390 if (entry != NULL) {
391 if (!NT_STATUS_IS_OK(entry->init(auth_context, module_params, ret))) {
392 DEBUG(0,("load_auth_module: auth method %s did not correctly init\n",
393 module_name));
394 } else {
395 DEBUG(5,("load_auth_module: auth method %s has a valid init\n",
396 module_name));
397 good = True;
399 } else {
400 DEBUG(0,("load_auth_module: can't find auth method %s!\n", module_name));
403 SAFE_FREE(module_name);
404 return good;
407 /***************************************************************************
408 Make a auth_info struct for the auth subsystem
409 ***************************************************************************/
411 static NTSTATUS make_auth_context_text_list(TALLOC_CTX *mem_ctx,
412 struct auth_context **auth_context,
413 char **text_list)
415 auth_methods *list = NULL;
416 auth_methods *t, *method = NULL;
417 NTSTATUS nt_status;
419 if (!text_list) {
420 DEBUG(2,("make_auth_context_text_list: No auth method list!?\n"));
421 return NT_STATUS_UNSUCCESSFUL;
424 nt_status = make_auth_context(mem_ctx, auth_context);
426 if (!NT_STATUS_IS_OK(nt_status)) {
427 return nt_status;
430 for (;*text_list; text_list++) {
431 if (load_auth_module(*auth_context, *text_list, &t)) {
432 DLIST_ADD_END(list, t, auth_methods *);
436 (*auth_context)->auth_method_list = list;
438 /* Look for the first module to provide a prepare_gensec and
439 * make_auth4_context hook, and set that if provided */
440 for (method = (*auth_context)->auth_method_list; method; method = method->next) {
441 if (method->prepare_gensec && method->make_auth4_context) {
442 (*auth_context)->prepare_gensec = method->prepare_gensec;
443 (*auth_context)->make_auth4_context = method->make_auth4_context;
444 break;
447 return NT_STATUS_OK;
450 /***************************************************************************
451 Make a auth_context struct for the auth subsystem
452 ***************************************************************************/
454 NTSTATUS make_auth_context_subsystem(TALLOC_CTX *mem_ctx,
455 struct auth_context **auth_context)
457 char **auth_method_list = NULL;
458 NTSTATUS nt_status;
460 if (lp_auth_methods()
461 && !(auth_method_list = str_list_copy(talloc_tos(),
462 lp_auth_methods()))) {
463 return NT_STATUS_NO_MEMORY;
466 if (auth_method_list == NULL) {
467 switch (lp_server_role())
469 case ROLE_DOMAIN_MEMBER:
470 DEBUG(5,("Making default auth method list for server role = 'domain member'\n"));
471 auth_method_list = str_list_make_v3(
472 talloc_tos(), "guest sam winbind:ntdomain",
473 NULL);
474 break;
475 case ROLE_DOMAIN_BDC:
476 case ROLE_DOMAIN_PDC:
477 DEBUG(5,("Making default auth method list for DC\n"));
478 auth_method_list = str_list_make_v3(
479 talloc_tos(),
480 "guest sam winbind:trustdomain",
481 NULL);
482 break;
483 case ROLE_STANDALONE:
484 DEBUG(5,("Making default auth method list for server role = 'standalone server', encrypt passwords = yes\n"));
485 if (lp_encrypt_passwords()) {
486 auth_method_list = str_list_make_v3(
487 talloc_tos(), "guest sam",
488 NULL);
489 } else {
490 DEBUG(5,("Making default auth method list for server role = 'standalone server', encrypt passwords = no\n"));
491 auth_method_list = str_list_make_v3(
492 talloc_tos(), "guest unix", NULL);
494 break;
495 case ROLE_ACTIVE_DIRECTORY_DC:
496 DEBUG(5,("Making default auth method list for server role = 'active directory domain controller'\n"));
497 auth_method_list = str_list_make_v3(
498 talloc_tos(),
499 "samba4",
500 NULL);
501 break;
502 default:
503 DEBUG(5,("Unknown auth method!\n"));
504 return NT_STATUS_UNSUCCESSFUL;
506 } else {
507 DEBUG(5,("Using specified auth order\n"));
510 nt_status = make_auth_context_text_list(mem_ctx, auth_context,
511 auth_method_list);
513 TALLOC_FREE(auth_method_list);
514 return nt_status;
517 /***************************************************************************
518 Make a auth_info struct with a fixed challenge
519 ***************************************************************************/
521 NTSTATUS make_auth_context_fixed(TALLOC_CTX *mem_ctx,
522 struct auth_context **auth_context,
523 uchar chal[8])
525 NTSTATUS nt_status;
526 nt_status = make_auth_context_subsystem(mem_ctx, auth_context);
527 if (!NT_STATUS_IS_OK(nt_status)) {
528 return nt_status;
531 (*auth_context)->challenge = data_blob_talloc(*auth_context, chal, 8);
532 (*auth_context)->challenge_set_by = "fixed";
533 return nt_status;