[merge from APP_HEAD]
[Samba/gbeck.git] / source3 / auth / auth_domain.c
blobeebe647ec022f2b742289f91b481d5ec050258d4
1 /*
2 Unix SMB/CIFS implementation.
3 Authenticate against a remote domain
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Andrew Bartlett 2001
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_AUTH
27 BOOL global_machine_password_needs_changing = False;
29 extern userdom_struct current_user_info;
33 resolve the name of a DC in ways appropriate for an ADS domain mode
34 an ADS domain may not have Netbios enabled at all, so this is
35 quite different from the RPC case
36 Note that we ignore the 'server' parameter here. That has the effect of using
37 the 'ADS server' smb.conf parameter, which is what we really want anyway
39 static NTSTATUS ads_resolve_dc(fstring remote_machine,
40 struct in_addr *dest_ip)
42 ADS_STRUCT *ads;
43 ads = ads_init_simple();
44 if (!ads) {
45 return NT_STATUS_NO_LOGON_SERVERS;
48 DEBUG(4,("ads_resolve_dc: realm=%s\n", ads->config.realm));
50 ads->auth.flags |= ADS_AUTH_NO_BIND;
52 #ifdef HAVE_ADS
53 /* a full ads_connect() is actually overkill, as we don't srictly need
54 to do the SASL auth in order to get the info we need, but libads
55 doesn't offer a better way right now */
56 ads_connect(ads);
57 #endif
59 fstrcpy(remote_machine, ads->config.ldap_server_name);
60 strupper(remote_machine);
61 *dest_ip = ads->ldap_ip;
62 ads_destroy(&ads);
64 if (!*remote_machine || is_zero_ip(*dest_ip)) {
65 return NT_STATUS_NO_LOGON_SERVERS;
68 DEBUG(4,("ads_resolve_dc: using server='%s' IP=%s\n",
69 remote_machine, inet_ntoa(*dest_ip)));
71 return NT_STATUS_OK;
75 resolve the name of a DC in ways appropriate for RPC domain mode
76 this relies on the server supporting netbios and port 137 not being
77 firewalled
79 static NTSTATUS rpc_resolve_dc(const char *server,
80 fstring remote_machine,
81 struct in_addr *dest_ip)
83 if (is_ipaddress(server)) {
84 struct in_addr to_ip = *interpret_addr2(server);
86 /* we need to know the machines netbios name - this is a lousy
87 way to find it, but until we have a RPC call that does this
88 it will have to do */
89 if (!name_status_find("*", 0x20, 0x20, to_ip, remote_machine)) {
90 DEBUG(2, ("rpc_resolve_dc: Can't resolve name for IP %s\n", server));
91 return NT_STATUS_NO_LOGON_SERVERS;
94 *dest_ip = to_ip;
95 return NT_STATUS_OK;
98 fstrcpy(remote_machine, server);
99 strupper(remote_machine);
100 if (!resolve_name(remote_machine, dest_ip, 0x20)) {
101 DEBUG(1,("rpc_resolve_dc: Can't resolve address for %s\n",
102 remote_machine));
103 return NT_STATUS_NO_LOGON_SERVERS;
106 DEBUG(4,("rpc_resolve_dc: using server='%s' IP=%s\n",
107 remote_machine, inet_ntoa(*dest_ip)));
109 return NT_STATUS_OK;
113 * Connect to a remote server for domain security authenticaion.
115 * @param cli the cli to return containing the active connection
116 * @param server either a machine name or text IP address to
117 * connect to.
118 * @param trust_password the trust password to establish the
119 * credentials with.
123 static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
124 const char *server,
125 const char *setup_creds_as,
126 uint16 sec_chan,
127 const unsigned char *trust_passwd,
128 BOOL *retry)
130 struct in_addr dest_ip;
131 fstring remote_machine;
132 NTSTATUS result;
133 uint32 neg_flags = 0x000001ff;
135 *retry = False;
137 if (lp_security() == SEC_ADS)
138 result = ads_resolve_dc(remote_machine, &dest_ip);
139 else
140 result = rpc_resolve_dc(server, remote_machine, &dest_ip);
142 if (!NT_STATUS_IS_OK(result)) {
143 DEBUG(2,("connect_to_domain_password_server: unable to resolve DC: %s\n",
144 nt_errstr(result)));
145 return result;
148 if (ismyip(dest_ip)) {
149 DEBUG(1,("connect_to_domain_password_server: Password server loop - not using password server %s\n",
150 remote_machine));
151 return NT_STATUS_NO_LOGON_SERVERS;
154 /* TODO: Send a SAMLOGON request to determine whether this is a valid
155 logonserver. We can avoid a 30-second timeout if the DC is down
156 if the SAMLOGON request fails as it is only over UDP. */
158 /* we use a mutex to prevent two connections at once - when a
159 Win2k PDC get two connections where one hasn't completed a
160 session setup yet it will send a TCP reset to the first
161 connection (tridge) */
164 * With NT4.x DC's *all* authentication must be serialized to avoid
165 * ACCESS_DENIED errors if 2 auths are done from the same machine. JRA.
168 *retry = True;
170 if (!grab_server_mutex(server))
171 return NT_STATUS_NO_LOGON_SERVERS;
173 /* Attempt connection */
174 result = cli_full_connection(cli, global_myname(), remote_machine,
175 &dest_ip, 0, "IPC$", "IPC", "", "", "",0, retry);
177 if (!NT_STATUS_IS_OK(result)) {
178 release_server_mutex();
179 return result;
183 * We now have an anonymous connection to IPC$ on the domain password server.
187 * Even if the connect succeeds we need to setup the netlogon
188 * pipe here. We do this as we may just have changed the domain
189 * account password on the PDC and yet we may be talking to
190 * a BDC that doesn't have this replicated yet. In this case
191 * a successful connect to a DC needs to take the netlogon connect
192 * into account also. This patch from "Bjart Kvarme" <bjart.kvarme@usit.uio.no>.
195 if(cli_nt_session_open(*cli, PI_NETLOGON) == False) {
196 DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
197 machine %s. Error was : %s.\n", remote_machine, cli_errstr(*cli)));
198 cli_nt_session_close(*cli);
199 cli_ulogoff(*cli);
200 cli_shutdown(*cli);
201 release_server_mutex();
202 return NT_STATUS_NO_LOGON_SERVERS;
205 snprintf((*cli)->mach_acct, sizeof((*cli)->mach_acct) - 1, "%s$", setup_creds_as);
207 if (!(*cli)->mach_acct) {
208 release_server_mutex();
209 return NT_STATUS_NO_MEMORY;
212 result = cli_nt_setup_creds(*cli, sec_chan, trust_passwd, &neg_flags, 2);
214 if (!NT_STATUS_IS_OK(result)) {
215 DEBUG(0,("connect_to_domain_password_server: unable to setup the PDC credentials to machine \
216 %s. Error was : %s.\n", remote_machine, nt_errstr(result)));
217 cli_nt_session_close(*cli);
218 cli_ulogoff(*cli);
219 cli_shutdown(*cli);
220 release_server_mutex();
221 return result;
224 /* We exit here with the mutex *locked*. JRA */
226 return NT_STATUS_OK;
229 /***********************************************************************
230 Utility function to attempt a connection to an IP address of a DC.
231 ************************************************************************/
233 static NTSTATUS attempt_connect_to_dc(struct cli_state **cli,
234 const char *domain,
235 struct in_addr *ip,
236 const char *setup_creds_as,
237 uint16 sec_chan,
238 const unsigned char *trust_passwd)
240 NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
241 BOOL retry = True;
242 fstring dc_name;
243 int i;
246 * Ignore addresses we have already tried.
249 if (is_zero_ip(*ip))
250 return NT_STATUS_NO_LOGON_SERVERS;
252 if (!lookup_dc_name(global_myname(), domain, ip, dc_name))
253 return NT_STATUS_NO_LOGON_SERVERS;
255 for (i = 0; (!NT_STATUS_IS_OK(ret)) && retry && (i < 3); i++)
256 ret = connect_to_domain_password_server(cli, dc_name, setup_creds_as,
257 sec_chan, trust_passwd, &retry);
258 return ret;
261 /***********************************************************************
262 We have been asked to dynamically determine the IP addresses of
263 the PDC and BDC's for DOMAIN, and query them in turn.
264 ************************************************************************/
265 static NTSTATUS find_connect_pdc(struct cli_state **cli,
266 const char *domain,
267 const char *setup_creds_as,
268 uint16 sec_chan,
269 unsigned char *trust_passwd,
270 time_t last_change_time)
272 struct in_addr *ip_list = NULL;
273 int count = 0;
274 int i;
275 NTSTATUS nt_status = NT_STATUS_NO_LOGON_SERVERS;
276 time_t time_now = time(NULL);
277 BOOL use_pdc_only = False;
278 BOOL list_ordered;
281 * If the time the machine password has changed
282 * was less than an hour ago then we need to contact
283 * the PDC only, as we cannot be sure domain replication
284 * has yet taken place. Bug found by Gerald (way to go
285 * Gerald !). JRA.
288 if (time_now - last_change_time < 3600)
289 use_pdc_only = True;
291 if (use_pdc_only) {
292 struct in_addr pdc_ip;
294 if (!get_pdc_ip(domain, &pdc_ip))
295 return NT_STATUS_NO_LOGON_SERVERS;
297 if ((ip_list = (struct in_addr *)
298 malloc(sizeof(struct in_addr))) == NULL)
299 return NT_STATUS_NO_MEMORY;
301 ip_list[0] = pdc_ip;
302 count = 1;
304 } else {
305 if (!get_dc_list(domain, &ip_list, &count, &list_ordered))
306 return NT_STATUS_NO_LOGON_SERVERS;
310 * Firstly try and contact a PDC/BDC who has the same
311 * network address as any of our interfaces.
313 for(i = 0; i < count; i++) {
314 if( !list_ordered && !is_local_net(ip_list[i]) )
315 continue;
317 if(NT_STATUS_IS_OK(nt_status =
318 attempt_connect_to_dc(cli, domain,
319 &ip_list[i], setup_creds_as,
320 sec_chan, trust_passwd)))
321 break;
323 zero_ip(&ip_list[i]); /* Tried and failed. */
327 * Secondly try and contact a random PDC/BDC.
329 if(!NT_STATUS_IS_OK(nt_status)) {
330 i = (sys_random() % count);
332 if (!is_zero_ip(ip_list[i])) {
333 if (!NT_STATUS_IS_OK(nt_status =
334 attempt_connect_to_dc(cli, domain,
335 &ip_list[i], setup_creds_as,
336 sec_chan, trust_passwd)))
337 zero_ip(&ip_list[i]); /* Tried and failed. */
342 * Finally go through the IP list in turn, ignoring any addresses
343 * we have already tried.
345 if(!NT_STATUS_IS_OK(nt_status)) {
347 * Try and connect to any of the other IP addresses in the PDC/BDC list.
348 * Note that from a WINS server the #1 IP address is the PDC.
350 for(i = 0; i < count; i++) {
351 if (is_zero_ip(ip_list[i]))
352 continue;
354 if (NT_STATUS_IS_OK(nt_status = attempt_connect_to_dc(cli, domain,
355 &ip_list[i], setup_creds_as, sec_chan, trust_passwd)))
356 break;
360 SAFE_FREE(ip_list);
361 return nt_status;
364 /***********************************************************************
365 Do the same as security=server, but using NT Domain calls and a session
366 key from the machine password. If the server parameter is specified
367 use it, otherwise figure out a server from the 'password server' param.
368 ************************************************************************/
370 static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx,
371 const auth_usersupplied_info *user_info,
372 const char *domain,
373 uchar chal[8],
374 auth_serversupplied_info **server_info,
375 const char *server, const char *setup_creds_as,
376 uint16 sec_chan,
377 unsigned char trust_passwd[16],
378 time_t last_change_time)
380 fstring remote_machine;
381 NET_USER_INFO_3 info3;
382 struct cli_state *cli = NULL;
383 NTSTATUS nt_status = NT_STATUS_NO_LOGON_SERVERS;
386 * At this point, smb_apasswd points to the lanman response to
387 * the challenge in local_challenge, and smb_ntpasswd points to
388 * the NT response to the challenge in local_challenge. Ship
389 * these over the secure channel to a domain controller and
390 * see if they were valid.
393 while (!NT_STATUS_IS_OK(nt_status) &&
394 next_token(&server,remote_machine,LIST_SEP,sizeof(remote_machine))) {
395 if(lp_security() != SEC_ADS && strequal(remote_machine, "*")) {
396 nt_status = find_connect_pdc(&cli, domain, setup_creds_as, sec_chan, trust_passwd, last_change_time);
397 } else {
398 int i;
399 BOOL retry = True;
400 for (i = 0; !NT_STATUS_IS_OK(nt_status) && retry && (i < 3); i++)
401 nt_status = connect_to_domain_password_server(&cli, remote_machine, setup_creds_as,
402 sec_chan, trust_passwd, &retry);
406 if (!NT_STATUS_IS_OK(nt_status)) {
407 DEBUG(0,("domain_client_validate: Domain password server not available.\n"));
408 return nt_status;
411 ZERO_STRUCT(info3);
414 * If this call succeeds, we now have lots of info about the user
415 * in the info3 structure.
418 nt_status = cli_netlogon_sam_network_logon(cli, mem_ctx,
419 user_info->smb_name.str, user_info->domain.str,
420 user_info->wksta_name.str, chal,
421 user_info->lm_resp, user_info->nt_resp,
422 &info3);
424 if (!NT_STATUS_IS_OK(nt_status)) {
425 DEBUG(0,("domain_client_validate: unable to validate password "
426 "for user %s in domain %s to Domain controller %s. "
427 "Error was %s.\n", user_info->smb_name.str,
428 user_info->domain.str, cli->srv_name_slash,
429 nt_errstr(nt_status)));
430 } else {
431 nt_status = make_server_info_info3(mem_ctx, user_info->internal_username.str,
432 user_info->smb_name.str, domain, server_info, &info3);
433 #if 0
434 /* The stuff doesn't work right yet */
435 SMB_ASSERT(sizeof((*server_info)->session_key) == sizeof(info3.user_sess_key));
436 memcpy((*server_info)->session_key, info3.user_sess_key, sizeof((*server_info)->session_key)/* 16 */);
437 SamOEMhash((*server_info)->session_key, trust_passwd, sizeof((*server_info)->session_key));
438 #endif
440 uni_group_cache_store_netlogon(mem_ctx, &info3);
443 #if 0
445 * We don't actually need to do this - plus it fails currently with
446 * NT_STATUS_INVALID_INFO_CLASS - we need to know *exactly* what to
447 * send here. JRA.
450 if (NT_STATUS_IS_OK(status)) {
451 if(cli_nt_logoff(&cli, &ctr) == False) {
452 DEBUG(0,("domain_client_validate: unable to log off user %s in domain \
453 %s to Domain controller %s. Error was %s.\n", user, domain, remote_machine, cli_errstr(&cli)));
454 nt_status = NT_STATUS_LOGON_FAILURE;
457 #endif /* 0 */
459 /* Note - once the cli stream is shutdown the mem_ctx used
460 to allocate the other_sids and gids structures has been deleted - so
461 these pointers are no longer valid..... */
463 cli_nt_session_close(cli);
464 cli_ulogoff(cli);
465 cli_shutdown(cli);
466 release_server_mutex();
467 return nt_status;
470 /****************************************************************************
471 Check for a valid username and password in security=domain mode.
472 ****************************************************************************/
474 static NTSTATUS check_ntdomain_security(const struct auth_context *auth_context,
475 void *my_private_data,
476 TALLOC_CTX *mem_ctx,
477 const auth_usersupplied_info *user_info,
478 auth_serversupplied_info **server_info)
480 NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
481 char *password_server;
482 unsigned char trust_passwd[16];
483 time_t last_change_time;
484 const char *domain = lp_workgroup();
486 if (!user_info || !server_info || !auth_context) {
487 DEBUG(1,("check_ntdomain_security: Critical variables not present. Failing.\n"));
488 return NT_STATUS_INVALID_PARAMETER;
492 * Check that the requested domain is not our own machine name.
493 * If it is, we should never check the PDC here, we use our own local
494 * password file.
497 if(is_myname(user_info->domain.str)) {
498 DEBUG(3,("check_ntdomain_security: Requested domain was for this machine.\n"));
499 return NT_STATUS_LOGON_FAILURE;
503 * Get the machine account password for our primary domain
504 * No need to become_root() as secrets_init() is done at startup.
507 if (!secrets_fetch_trust_account_password(domain, trust_passwd, &last_change_time))
509 DEBUG(0, ("check_ntdomain_security: could not fetch trust account password for domain '%s'\n", domain));
510 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
513 /* Test if machine password has expired and needs to be changed */
514 if (lp_machine_password_timeout()) {
515 if (time(NULL) > (last_change_time +
516 lp_machine_password_timeout())) {
517 global_machine_password_needs_changing = True;
522 * Treat each name in the 'password server =' line as a potential
523 * PDC/BDC. Contact each in turn and try and authenticate.
526 password_server = lp_passwordserver();
528 nt_status = domain_client_validate(mem_ctx, user_info, domain,
529 (uchar *)auth_context->challenge.data,
530 server_info,
531 password_server, global_myname(), SEC_CHAN_WKSTA, trust_passwd, last_change_time);
532 return nt_status;
535 /* module initialisation */
536 NTSTATUS auth_init_ntdomain(struct auth_context *auth_context, const char* param, auth_methods **auth_method)
538 if (!make_auth_methods(auth_context, auth_method)) {
539 return NT_STATUS_NO_MEMORY;
542 (*auth_method)->name = "ntdomain";
543 (*auth_method)->auth = check_ntdomain_security;
544 return NT_STATUS_OK;
548 /****************************************************************************
549 Check for a valid username and password in a trusted domain
550 ****************************************************************************/
552 static NTSTATUS check_trustdomain_security(const struct auth_context *auth_context,
553 void *my_private_data,
554 TALLOC_CTX *mem_ctx,
555 const auth_usersupplied_info *user_info,
556 auth_serversupplied_info **server_info)
558 NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
559 unsigned char trust_md4_password[16];
560 char *trust_password;
561 time_t last_change_time;
562 DOM_SID sid;
564 if (!user_info || !server_info || !auth_context) {
565 DEBUG(1,("check_trustdomain_security: Critical variables not present. Failing.\n"));
566 return NT_STATUS_INVALID_PARAMETER;
570 * Check that the requested domain is not our own machine name.
571 * If it is, we should never check the PDC here, we use our own local
572 * password file.
575 if(is_myname(user_info->domain.str)) {
576 DEBUG(3,("check_trustdomain_security: Requested domain was for this machine.\n"));
577 return NT_STATUS_LOGON_FAILURE;
581 * Check that the requested domain is not our own domain,
582 * If it is, we should use our own local password file.
585 if(strequal(lp_workgroup(), (user_info->domain.str))) {
586 DEBUG(3,("check_trustdomain_security: Requested domain was for this domain.\n"));
587 return NT_STATUS_LOGON_FAILURE;
591 * Get the trusted account password for the trusted domain
592 * No need to become_root() as secrets_init() is done at startup.
595 if (!secrets_fetch_trusted_domain_password(user_info->domain.str, &trust_password, &sid, &last_change_time))
597 DEBUG(0, ("check_trustdomain_security: could not fetch trust account password for domain %s\n", user_info->domain.str));
598 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
601 #ifdef DEBUG_PASSWORD
602 DEBUG(100, ("Trust password for domain %s is %s\n", user_info->domain.str, trust_password));
603 #endif
604 E_md4hash(trust_password, trust_md4_password);
605 SAFE_FREE(trust_password);
607 #if 0
608 /* Test if machine password is expired and need to be changed */
609 if (time(NULL) > last_change_time + lp_machine_password_timeout())
611 global_machine_password_needs_changing = True;
613 #endif
615 nt_status = domain_client_validate(mem_ctx, user_info, user_info->domain.str,
616 (uchar *)auth_context->challenge.data,
617 server_info, "*" /* Do a lookup */,
618 lp_workgroup(), SEC_CHAN_DOMAIN, trust_md4_password, last_change_time);
620 return nt_status;
623 /* module initialisation */
624 NTSTATUS auth_init_trustdomain(struct auth_context *auth_context, const char* param, auth_methods **auth_method)
626 if (!make_auth_methods(auth_context, auth_method)) {
627 return NT_STATUS_NO_MEMORY;
630 (*auth_method)->name = "trustdomain";
631 (*auth_method)->auth = check_trustdomain_security;
632 return NT_STATUS_OK;