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.
25 #define DBGC_CLASS DBGC_AUTH
27 BOOL global_machine_password_needs_changing
= False
;
29 extern pstring global_myname
;
30 extern userdom_struct current_user_info
;
34 resolve the name of a DC in ways appropriate for an ADS domain mode
35 an ADS domain may not have Netbios enabled at all, so this is
36 quite different from the RPC case
37 Note that we ignore the 'server' parameter here. That has the effect of using
38 the 'ADS server' smb.conf parameter, which is what we really want anyway
40 static NTSTATUS
ads_resolve_dc(fstring remote_machine
,
41 struct in_addr
*dest_ip
)
44 ads
= ads_init_simple();
46 return NT_STATUS_NO_LOGON_SERVERS
;
49 DEBUG(4,("ads_resolve_dc: realm=%s\n", ads
->config
.realm
));
51 ads
->auth
.flags
|= ADS_AUTH_NO_BIND
;
54 /* a full ads_connect() is actually overkill, as we don't srictly need
55 to do the SASL auth in order to get the info we need, but libads
56 doesn't offer a better way right now */
60 fstrcpy(remote_machine
, ads
->config
.ldap_server_name
);
61 strupper(remote_machine
);
62 *dest_ip
= ads
->ldap_ip
;
65 if (!*remote_machine
|| is_zero_ip(*dest_ip
)) {
66 return NT_STATUS_NO_LOGON_SERVERS
;
69 DEBUG(4,("ads_resolve_dc: using server='%s' IP=%s\n",
70 remote_machine
, inet_ntoa(*dest_ip
)));
76 resolve the name of a DC in ways appropriate for RPC domain mode
77 this relies on the server supporting netbios and port 137 not being
80 static NTSTATUS
rpc_resolve_dc(const char *server
,
81 fstring remote_machine
,
82 struct in_addr
*dest_ip
)
84 if (is_ipaddress(server
)) {
85 struct in_addr to_ip
= *interpret_addr2(server
);
87 /* we need to know the machines netbios name - this is a lousy
88 way to find it, but until we have a RPC call that does this
90 if (!name_status_find("*", 0x20, 0x20, to_ip
, remote_machine
)) {
91 DEBUG(2, ("rpc_resolve_dc: Can't resolve name for IP %s\n", server
));
92 return NT_STATUS_NO_LOGON_SERVERS
;
99 fstrcpy(remote_machine
, server
);
100 strupper(remote_machine
);
101 if (!resolve_name(remote_machine
, dest_ip
, 0x20)) {
102 DEBUG(1,("rpc_resolve_dc: Can't resolve address for %s\n",
104 return NT_STATUS_NO_LOGON_SERVERS
;
107 DEBUG(4,("rpc_resolve_dc: using server='%s' IP=%s\n",
108 remote_machine
, inet_ntoa(*dest_ip
)));
114 * Connect to a remote server for domain security authenticaion.
116 * @param cli the cli to return containing the active connection
117 * @param server either a machine name or text IP address to
119 * @param trust_password the trust password to establish the
124 static NTSTATUS
connect_to_domain_password_server(struct cli_state
**cli
,
126 const char *setup_creds_as
,
128 const unsigned char *trust_passwd
,
131 struct in_addr dest_ip
;
132 fstring remote_machine
;
134 uint32 neg_flags
= 0x000001ff;
138 if (lp_security() == SEC_ADS
)
139 result
= ads_resolve_dc(remote_machine
, &dest_ip
);
141 result
= rpc_resolve_dc(server
, remote_machine
, &dest_ip
);
143 if (!NT_STATUS_IS_OK(result
)) {
144 DEBUG(2,("connect_to_domain_password_server: unable to resolve DC: %s\n",
149 if (ismyip(dest_ip
)) {
150 DEBUG(1,("connect_to_domain_password_server: Password server loop - not using password server %s\n",
152 return NT_STATUS_NO_LOGON_SERVERS
;
155 /* TODO: Send a SAMLOGON request to determine whether this is a valid
156 logonserver. We can avoid a 30-second timeout if the DC is down
157 if the SAMLOGON request fails as it is only over UDP. */
159 /* we use a mutex to prevent two connections at once - when a
160 Win2k PDC get two connections where one hasn't completed a
161 session setup yet it will send a TCP reset to the first
162 connection (tridge) */
165 * With NT4.x DC's *all* authentication must be serialized to avoid
166 * ACCESS_DENIED errors if 2 auths are done from the same machine. JRA.
171 if (!grab_server_mutex(server
))
172 return NT_STATUS_NO_LOGON_SERVERS
;
174 /* Attempt connection */
175 result
= cli_full_connection(cli
, global_myname
, remote_machine
,
176 &dest_ip
, 0, "IPC$", "IPC", "", "", "",0, retry
);
178 if (!NT_STATUS_IS_OK(result
)) {
179 release_server_mutex();
184 * We now have an anonymous connection to IPC$ on the domain password server.
188 * Even if the connect succeeds we need to setup the netlogon
189 * pipe here. We do this as we may just have changed the domain
190 * account password on the PDC and yet we may be talking to
191 * a BDC that doesn't have this replicated yet. In this case
192 * a successful connect to a DC needs to take the netlogon connect
193 * into account also. This patch from "Bjart Kvarme" <bjart.kvarme@usit.uio.no>.
196 if(cli_nt_session_open(*cli
, PI_NETLOGON
) == False
) {
197 DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
198 machine %s. Error was : %s.\n", remote_machine
, cli_errstr(*cli
)));
199 cli_nt_session_close(*cli
);
202 release_server_mutex();
203 return NT_STATUS_NO_LOGON_SERVERS
;
206 snprintf((*cli
)->mach_acct
, sizeof((*cli
)->mach_acct
) - 1, "%s$", setup_creds_as
);
208 if (!(*cli
)->mach_acct
) {
209 release_server_mutex();
210 return NT_STATUS_NO_MEMORY
;
213 result
= cli_nt_setup_creds(*cli
, sec_chan
, trust_passwd
, &neg_flags
, 2);
215 if (!NT_STATUS_IS_OK(result
)) {
216 DEBUG(0,("connect_to_domain_password_server: unable to setup the PDC credentials to machine \
217 %s. Error was : %s.\n", remote_machine
, nt_errstr(result
)));
218 cli_nt_session_close(*cli
);
221 release_server_mutex();
225 /* We exit here with the mutex *locked*. JRA */
230 /***********************************************************************
231 Utility function to attempt a connection to an IP address of a DC.
232 ************************************************************************/
234 static NTSTATUS
attempt_connect_to_dc(struct cli_state
**cli
,
237 const char *setup_creds_as
,
239 const unsigned char *trust_passwd
)
241 NTSTATUS ret
= NT_STATUS_UNSUCCESSFUL
;
247 * Ignore addresses we have already tried.
251 return NT_STATUS_NO_LOGON_SERVERS
;
253 if (!lookup_dc_name(global_myname
, domain
, ip
, dc_name
))
254 return NT_STATUS_NO_LOGON_SERVERS
;
256 for (i
= 0; (!NT_STATUS_IS_OK(ret
)) && retry
&& (i
< 3); i
++)
257 ret
= connect_to_domain_password_server(cli
, dc_name
, setup_creds_as
,
258 sec_chan
, trust_passwd
, &retry
);
262 /***********************************************************************
263 We have been asked to dynamically determine the IP addresses of
264 the PDC and BDC's for DOMAIN, and query them in turn.
265 ************************************************************************/
266 static NTSTATUS
find_connect_pdc(struct cli_state
**cli
,
268 const char *setup_creds_as
,
270 unsigned char *trust_passwd
,
271 time_t last_change_time
)
273 struct in_addr
*ip_list
= NULL
;
276 NTSTATUS nt_status
= NT_STATUS_NO_LOGON_SERVERS
;
277 time_t time_now
= time(NULL
);
278 BOOL use_pdc_only
= False
;
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
288 if (time_now
- last_change_time
< 3600)
291 if (!get_dc_list(use_pdc_only
, domain
, &ip_list
, &count
))
292 return NT_STATUS_NO_LOGON_SERVERS
;
295 * Firstly try and contact a PDC/BDC who has the same
296 * network address as any of our interfaces.
298 for(i
= 0; i
< count
; i
++) {
299 if(!is_local_net(ip_list
[i
]))
302 if(NT_STATUS_IS_OK(nt_status
=
303 attempt_connect_to_dc(cli
, domain
,
304 &ip_list
[i
], setup_creds_as
,
305 sec_chan
, trust_passwd
)))
308 zero_ip(&ip_list
[i
]); /* Tried and failed. */
312 * Secondly try and contact a random PDC/BDC.
314 if(!NT_STATUS_IS_OK(nt_status
)) {
315 i
= (sys_random() % count
);
317 if (!is_zero_ip(ip_list
[i
])) {
318 if (!NT_STATUS_IS_OK(nt_status
=
319 attempt_connect_to_dc(cli
, domain
,
320 &ip_list
[i
], setup_creds_as
,
321 sec_chan
, trust_passwd
)))
322 zero_ip(&ip_list
[i
]); /* Tried and failed. */
327 * Finally go through the IP list in turn, ignoring any addresses
328 * we have already tried.
330 if(!NT_STATUS_IS_OK(nt_status
)) {
332 * Try and connect to any of the other IP addresses in the PDC/BDC list.
333 * Note that from a WINS server the #1 IP address is the PDC.
335 for(i
= 0; i
< count
; i
++) {
336 if (is_zero_ip(ip_list
[i
]))
339 if (NT_STATUS_IS_OK(nt_status
= attempt_connect_to_dc(cli
, domain
,
340 &ip_list
[i
], setup_creds_as
, sec_chan
, trust_passwd
)))
349 /***********************************************************************
350 Do the same as security=server, but using NT Domain calls and a session
351 key from the machine password. If the server parameter is specified
352 use it, otherwise figure out a server from the 'password server' param.
353 ************************************************************************/
355 static NTSTATUS
domain_client_validate(TALLOC_CTX
*mem_ctx
,
356 const auth_usersupplied_info
*user_info
,
359 auth_serversupplied_info
**server_info
,
360 char *server
, char *setup_creds_as
,
362 unsigned char trust_passwd
[16],
363 time_t last_change_time
)
365 fstring remote_machine
;
366 NET_USER_INFO_3 info3
;
367 struct cli_state
*cli
= NULL
;
368 NTSTATUS nt_status
= NT_STATUS_NO_LOGON_SERVERS
;
371 * At this point, smb_apasswd points to the lanman response to
372 * the challenge in local_challenge, and smb_ntpasswd points to
373 * the NT response to the challenge in local_challenge. Ship
374 * these over the secure channel to a domain controller and
375 * see if they were valid.
378 while (!NT_STATUS_IS_OK(nt_status
) &&
379 next_token(&server
,remote_machine
,LIST_SEP
,sizeof(remote_machine
))) {
380 if(lp_security() != SEC_ADS
&& strequal(remote_machine
, "*")) {
381 nt_status
= find_connect_pdc(&cli
, domain
, setup_creds_as
, sec_chan
, trust_passwd
, last_change_time
);
385 for (i
= 0; !NT_STATUS_IS_OK(nt_status
) && retry
&& (i
< 3); i
++)
386 nt_status
= connect_to_domain_password_server(&cli
, remote_machine
, setup_creds_as
,
387 sec_chan
, trust_passwd
, &retry
);
391 if (!NT_STATUS_IS_OK(nt_status
)) {
392 DEBUG(0,("domain_client_validate: Domain password server not available.\n"));
399 * If this call succeeds, we now have lots of info about the user
400 * in the info3 structure.
403 nt_status
= cli_netlogon_sam_network_logon(cli
, mem_ctx
,
404 user_info
->smb_name
.str
, user_info
->domain
.str
,
405 user_info
->wksta_name
.str
, chal
,
406 user_info
->lm_resp
, user_info
->nt_resp
,
409 if (!NT_STATUS_IS_OK(nt_status
)) {
410 DEBUG(0,("domain_client_validate: unable to validate password "
411 "for user %s in domain %s to Domain controller %s. "
412 "Error was %s.\n", user_info
->smb_name
.str
,
413 user_info
->domain
.str
, cli
->srv_name_slash
,
414 nt_errstr(nt_status
)));
416 nt_status
= make_server_info_info3(mem_ctx
, user_info
->internal_username
.str
,
417 user_info
->smb_name
.str
, domain
, server_info
, &info3
);
419 /* The stuff doesn't work right yet */
420 SMB_ASSERT(sizeof((*server_info
)->session_key
) == sizeof(info3
.user_sess_key
));
421 memcpy((*server_info
)->session_key
, info3
.user_sess_key
, sizeof((*server_info
)->session_key
)/* 16 */);
422 SamOEMhash((*server_info
)->session_key
, trust_passwd
, sizeof((*server_info
)->session_key
));
425 uni_group_cache_store_netlogon(mem_ctx
, &info3
);
430 * We don't actually need to do this - plus it fails currently with
431 * NT_STATUS_INVALID_INFO_CLASS - we need to know *exactly* what to
435 if (NT_STATUS_IS_OK(status
)) {
436 if(cli_nt_logoff(&cli
, &ctr
) == False
) {
437 DEBUG(0,("domain_client_validate: unable to log off user %s in domain \
438 %s to Domain controller %s. Error was %s.\n", user
, domain
, remote_machine
, cli_errstr(&cli
)));
439 nt_status
= NT_STATUS_LOGON_FAILURE
;
444 /* Note - once the cli stream is shutdown the mem_ctx used
445 to allocate the other_sids and gids structures has been deleted - so
446 these pointers are no longer valid..... */
448 cli_nt_session_close(cli
);
451 release_server_mutex();
455 /****************************************************************************
456 Check for a valid username and password in security=domain mode.
457 ****************************************************************************/
459 static NTSTATUS
check_ntdomain_security(const struct auth_context
*auth_context
,
460 void *my_private_data
,
462 const auth_usersupplied_info
*user_info
,
463 auth_serversupplied_info
**server_info
)
465 NTSTATUS nt_status
= NT_STATUS_LOGON_FAILURE
;
466 char *password_server
;
467 unsigned char trust_passwd
[16];
468 time_t last_change_time
;
469 char *domain
= lp_workgroup();
471 if (!user_info
|| !server_info
|| !auth_context
) {
472 DEBUG(1,("check_ntdomain_security: Critical variables not present. Failing.\n"));
473 return NT_STATUS_INVALID_PARAMETER
;
477 * Check that the requested domain is not our own machine name.
478 * If it is, we should never check the PDC here, we use our own local
482 if(is_netbios_alias_or_name(user_info
->domain
.str
)) {
483 DEBUG(3,("check_ntdomain_security: Requested domain was for this machine.\n"));
484 return NT_STATUS_LOGON_FAILURE
;
488 * Get the machine account password for our primary domain
489 * No need to become_root() as secrets_init() is done at startup.
492 if (!secrets_fetch_trust_account_password(domain
, trust_passwd
, &last_change_time
))
494 DEBUG(0, ("check_ntdomain_security: could not fetch trust account password for domain '%s'\n", domain
));
495 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
498 /* Test if machine password is expired and need to be changed */
499 if (time(NULL
) > last_change_time
+ lp_machine_password_timeout())
501 global_machine_password_needs_changing
= True
;
505 * Treat each name in the 'password server =' line as a potential
506 * PDC/BDC. Contact each in turn and try and authenticate.
509 password_server
= lp_passwordserver();
511 nt_status
= domain_client_validate(mem_ctx
, user_info
, domain
,
512 (uchar
*)auth_context
->challenge
.data
,
514 password_server
, global_myname
, SEC_CHAN_WKSTA
, trust_passwd
, last_change_time
);
518 /* module initialisation */
519 NTSTATUS
auth_init_ntdomain(struct auth_context
*auth_context
, const char* param
, auth_methods
**auth_method
)
521 if (!make_auth_methods(auth_context
, auth_method
)) {
522 return NT_STATUS_NO_MEMORY
;
525 (*auth_method
)->name
= "ntdomain";
526 (*auth_method
)->auth
= check_ntdomain_security
;
531 /****************************************************************************
532 Check for a valid username and password in a trusted domain
533 ****************************************************************************/
535 static NTSTATUS
check_trustdomain_security(const struct auth_context
*auth_context
,
536 void *my_private_data
,
538 const auth_usersupplied_info
*user_info
,
539 auth_serversupplied_info
**server_info
)
541 NTSTATUS nt_status
= NT_STATUS_LOGON_FAILURE
;
542 unsigned char trust_md4_password
[16];
543 char *trust_password
;
544 time_t last_change_time
;
547 if (!user_info
|| !server_info
|| !auth_context
) {
548 DEBUG(1,("check_trustdomain_security: Critical variables not present. Failing.\n"));
549 return NT_STATUS_INVALID_PARAMETER
;
553 * Check that the requested domain is not our own machine name.
554 * If it is, we should never check the PDC here, we use our own local
558 if(is_netbios_alias_or_name(user_info
->domain
.str
)) {
559 DEBUG(3,("check_trustdomain_security: Requested domain was for this machine.\n"));
560 return NT_STATUS_LOGON_FAILURE
;
564 * Check that the requested domain is not our own domain,
565 * If it is, we should use our own local password file.
568 if(strequal(lp_workgroup(), (user_info
->domain
.str
))) {
569 DEBUG(3,("check_trustdomain_security: Requested domain was for this domain.\n"));
570 return NT_STATUS_LOGON_FAILURE
;
574 * Get the trusted account password for the trusted domain
575 * No need to become_root() as secrets_init() is done at startup.
578 if (!secrets_fetch_trusted_domain_password(user_info
->domain
.str
, &trust_password
, &sid
, &last_change_time
))
580 DEBUG(0, ("check_trustdomain_security: could not fetch trust account password for domain %s\n", user_info
->domain
.str
));
581 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
584 #ifdef DEBUG_PASSWORD
585 DEBUG(100, ("Trust password for domain %s is %s\n", user_info
->domain
.str
, trust_password
));
587 E_md4hash(trust_password
, trust_md4_password
);
588 SAFE_FREE(trust_password
);
591 /* Test if machine password is expired and need to be changed */
592 if (time(NULL
) > last_change_time
+ lp_machine_password_timeout())
594 global_machine_password_needs_changing
= True
;
598 nt_status
= domain_client_validate(mem_ctx
, user_info
, user_info
->domain
.str
,
599 (uchar
*)auth_context
->challenge
.data
,
600 server_info
, "*" /* Do a lookup */,
601 lp_workgroup(), SEC_CHAN_DOMAIN
, trust_md4_password
, last_change_time
);
606 /* module initialisation */
607 NTSTATUS
auth_init_trustdomain(struct auth_context
*auth_context
, const char* param
, auth_methods
**auth_method
)
609 if (!make_auth_methods(auth_context
, auth_method
)) {
610 return NT_STATUS_NO_MEMORY
;
613 (*auth_method
)->name
= "trustdomain";
614 (*auth_method
)->auth
= check_trustdomain_security
;