Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / auth / auth_domain.c
blobbedd318c3c3e5deaf29b7122694fdb74ca57ad84
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 extern BOOL global_machine_password_needs_changing;
29 /**
30 * Connect to a remote server for (inter)domain security authenticaion.
32 * @param cli the cli to return containing the active connection
33 * @param server either a machine name or text IP address to
34 * connect to.
35 * @param setup_creds_as domain account to setup credentials as
36 * @param sec_chan a switch value to distinguish between domain
37 * member and interdomain authentication
38 * @param trust_passwd the trust password to establish the
39 * credentials with.
41 **/
43 static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
44 const char *domain,
45 const char *dc_name,
46 struct in_addr dc_ip,
47 struct rpc_pipe_client **pipe_ret,
48 BOOL *retry)
50 NTSTATUS result;
51 struct rpc_pipe_client *netlogon_pipe = NULL;
53 *pipe_ret = NULL;
55 /* TODO: Send a SAMLOGON request to determine whether this is a valid
56 logonserver. We can avoid a 30-second timeout if the DC is down
57 if the SAMLOGON request fails as it is only over UDP. */
59 /* we use a mutex to prevent two connections at once - when a
60 Win2k PDC get two connections where one hasn't completed a
61 session setup yet it will send a TCP reset to the first
62 connection (tridge) */
65 * With NT4.x DC's *all* authentication must be serialized to avoid
66 * ACCESS_DENIED errors if 2 auths are done from the same machine. JRA.
69 if (!grab_server_mutex(dc_name)) {
70 return NT_STATUS_NO_LOGON_SERVERS;
73 /* Attempt connection */
74 *retry = True;
75 result = cli_full_connection(cli, global_myname(), dc_name, &dc_ip, 0,
76 "IPC$", "IPC", "", "", "", 0, Undefined, retry);
78 if (!NT_STATUS_IS_OK(result)) {
79 /* map to something more useful */
80 if (NT_STATUS_EQUAL(result, NT_STATUS_UNSUCCESSFUL)) {
81 result = NT_STATUS_NO_LOGON_SERVERS;
84 release_server_mutex();
85 return result;
89 * We now have an anonymous connection to IPC$ on the domain password server.
93 * Even if the connect succeeds we need to setup the netlogon
94 * pipe here. We do this as we may just have changed the domain
95 * account password on the PDC and yet we may be talking to
96 * a BDC that doesn't have this replicated yet. In this case
97 * a successful connect to a DC needs to take the netlogon connect
98 * into account also. This patch from "Bjart Kvarme" <bjart.kvarme@usit.uio.no>.
101 /* open the netlogon pipe. */
102 if (lp_client_schannel()) {
103 /* We also setup the creds chain in the open_schannel call. */
104 netlogon_pipe = cli_rpc_pipe_open_schannel(*cli, PI_NETLOGON,
105 PIPE_AUTH_LEVEL_PRIVACY, domain, &result);
106 } else {
107 netlogon_pipe = cli_rpc_pipe_open_noauth(*cli, PI_NETLOGON, &result);
110 if(!netlogon_pipe) {
111 DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
112 machine %s. Error was : %s.\n", dc_name, nt_errstr(result)));
113 cli_shutdown(*cli);
114 release_server_mutex();
115 return result;
118 if (!lp_client_schannel()) {
119 /* We need to set up a creds chain on an unauthenticated netlogon pipe. */
120 uint32 neg_flags = NETLOGON_NEG_AUTH2_FLAGS;
121 uint32 sec_chan_type = 0;
122 unsigned char machine_pwd[16];
124 if (!get_trust_pw(domain, machine_pwd, &sec_chan_type)) {
125 DEBUG(0, ("connect_to_domain_password_server: could not fetch "
126 "trust account password for domain '%s'\n",
127 domain));
128 cli_shutdown(*cli);
129 release_server_mutex();
130 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
133 result = rpccli_netlogon_setup_creds(netlogon_pipe,
134 dc_name, /* server name */
135 domain, /* domain */
136 global_myname(), /* client name */
137 global_myname(), /* machine account name */
138 machine_pwd,
139 sec_chan_type,
140 &neg_flags);
142 if (!NT_STATUS_IS_OK(result)) {
143 cli_shutdown(*cli);
144 release_server_mutex();
145 return result;
149 if(!netlogon_pipe) {
150 DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
151 machine %s. Error was : %s.\n", dc_name, cli_errstr(*cli)));
152 cli_shutdown(*cli);
153 release_server_mutex();
154 return NT_STATUS_NO_LOGON_SERVERS;
157 /* We exit here with the mutex *locked*. JRA */
159 *pipe_ret = netlogon_pipe;
161 return NT_STATUS_OK;
164 /***********************************************************************
165 Do the same as security=server, but using NT Domain calls and a session
166 key from the machine password. If the server parameter is specified
167 use it, otherwise figure out a server from the 'password server' param.
168 ************************************************************************/
170 static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx,
171 const auth_usersupplied_info *user_info,
172 const char *domain,
173 uchar chal[8],
174 auth_serversupplied_info **server_info,
175 const char *dc_name,
176 struct in_addr dc_ip)
179 NET_USER_INFO_3 info3;
180 struct cli_state *cli = NULL;
181 struct rpc_pipe_client *netlogon_pipe = NULL;
182 NTSTATUS nt_status = NT_STATUS_NO_LOGON_SERVERS;
183 int i;
184 BOOL retry = True;
187 * At this point, smb_apasswd points to the lanman response to
188 * the challenge in local_challenge, and smb_ntpasswd points to
189 * the NT response to the challenge in local_challenge. Ship
190 * these over the secure channel to a domain controller and
191 * see if they were valid.
194 /* rety loop for robustness */
196 for (i = 0; !NT_STATUS_IS_OK(nt_status) && retry && (i < 3); i++) {
197 nt_status = connect_to_domain_password_server(&cli,
198 domain,
199 dc_name,
200 dc_ip,
201 &netlogon_pipe,
202 &retry);
205 if ( !NT_STATUS_IS_OK(nt_status) ) {
206 DEBUG(0,("domain_client_validate: Domain password server not available.\n"));
207 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_ACCESS_DENIED)) {
208 return NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE;
210 return nt_status;
213 /* store a successful connection */
215 saf_store( domain, cli->desthost );
217 ZERO_STRUCT(info3);
220 * If this call succeeds, we now have lots of info about the user
221 * in the info3 structure.
224 nt_status = rpccli_netlogon_sam_network_logon(netlogon_pipe,
225 mem_ctx,
226 user_info->logon_parameters,/* flags such as 'allow workstation logon' */
227 dc_name, /* server name */
228 user_info->smb_name, /* user name logging on. */
229 user_info->domain, /* domain name */
230 user_info->wksta_name, /* workstation name */
231 chal, /* 8 byte challenge. */
232 user_info->lm_resp, /* lanman 24 byte response */
233 user_info->nt_resp, /* nt 24 byte response */
234 &info3); /* info3 out */
236 /* Let go as soon as possible so we avoid any potential deadlocks
237 with winbind lookup up users or groups. */
239 release_server_mutex();
241 if (!NT_STATUS_IS_OK(nt_status)) {
242 DEBUG(0,("domain_client_validate: unable to validate password "
243 "for user %s in domain %s to Domain controller %s. "
244 "Error was %s.\n", user_info->smb_name,
245 user_info->domain, dc_name,
246 nt_errstr(nt_status)));
248 /* map to something more useful */
249 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_UNSUCCESSFUL)) {
250 nt_status = NT_STATUS_NO_LOGON_SERVERS;
252 } else {
253 nt_status = make_server_info_info3(mem_ctx,
254 user_info->smb_name,
255 domain,
256 server_info,
257 &info3);
259 if (NT_STATUS_IS_OK(nt_status)) {
260 (*server_info)->was_mapped |= user_info->was_mapped;
263 netsamlogon_cache_store( user_info->smb_name, &info3 );
266 /* Note - once the cli stream is shutdown the mem_ctx used
267 to allocate the other_sids and gids structures has been deleted - so
268 these pointers are no longer valid..... */
270 cli_shutdown(cli);
271 return nt_status;
274 /****************************************************************************
275 Check for a valid username and password in security=domain mode.
276 ****************************************************************************/
278 static NTSTATUS check_ntdomain_security(const struct auth_context *auth_context,
279 void *my_private_data,
280 TALLOC_CTX *mem_ctx,
281 const auth_usersupplied_info *user_info,
282 auth_serversupplied_info **server_info)
284 NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
285 const char *domain = lp_workgroup();
286 fstring dc_name;
287 struct in_addr dc_ip;
289 if ( lp_server_role() != ROLE_DOMAIN_MEMBER ) {
290 DEBUG(0,("check_ntdomain_security: Configuration error! Cannot use "
291 "ntdomain auth method when not a member of a domain.\n"));
292 return NT_STATUS_NOT_IMPLEMENTED;
295 if (!user_info || !server_info || !auth_context) {
296 DEBUG(1,("check_ntdomain_security: Critical variables not present. Failing.\n"));
297 return NT_STATUS_INVALID_PARAMETER;
301 * Check that the requested domain is not our own machine name.
302 * If it is, we should never check the PDC here, we use our own local
303 * password file.
306 if(strequal(get_global_sam_name(), user_info->domain)) {
307 DEBUG(3,("check_ntdomain_security: Requested domain was for this machine.\n"));
308 return NT_STATUS_NOT_IMPLEMENTED;
311 /* we need our DC to send the net_sam_logon() request to */
313 if ( !get_dc_name(domain, NULL, dc_name, &dc_ip) ) {
314 DEBUG(5,("check_ntdomain_security: unable to locate a DC for domain %s\n",
315 user_info->domain));
316 return NT_STATUS_NO_LOGON_SERVERS;
319 nt_status = domain_client_validate(mem_ctx,
320 user_info,
321 domain,
322 (uchar *)auth_context->challenge.data,
323 server_info,
324 dc_name,
325 dc_ip);
327 return nt_status;
330 /* module initialisation */
331 static NTSTATUS auth_init_ntdomain(struct auth_context *auth_context, const char* param, auth_methods **auth_method)
333 if (!make_auth_methods(auth_context, auth_method)) {
334 return NT_STATUS_NO_MEMORY;
337 (*auth_method)->name = "ntdomain";
338 (*auth_method)->auth = check_ntdomain_security;
339 return NT_STATUS_OK;
343 /****************************************************************************
344 Check for a valid username and password in a trusted domain
345 ****************************************************************************/
347 static NTSTATUS check_trustdomain_security(const struct auth_context *auth_context,
348 void *my_private_data,
349 TALLOC_CTX *mem_ctx,
350 const auth_usersupplied_info *user_info,
351 auth_serversupplied_info **server_info)
353 NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
354 unsigned char trust_md4_password[16];
355 char *trust_password;
356 time_t last_change_time;
357 DOM_SID sid;
358 fstring dc_name;
359 struct in_addr dc_ip;
361 if (!user_info || !server_info || !auth_context) {
362 DEBUG(1,("check_trustdomain_security: Critical variables not present. Failing.\n"));
363 return NT_STATUS_INVALID_PARAMETER;
367 * Check that the requested domain is not our own machine name or domain name.
370 if( strequal(get_global_sam_name(), user_info->domain)) {
371 DEBUG(3,("check_trustdomain_security: Requested domain [%s] was for this machine.\n",
372 user_info->domain));
373 return NT_STATUS_NOT_IMPLEMENTED;
376 /* No point is bothering if this is not a trusted domain.
377 This return makes "map to guest = bad user" work again.
378 The logic is that if we know nothing about the domain, that
379 user is not known to us and does not exist */
381 if ( !is_trusted_domain( user_info->domain ) )
382 return NT_STATUS_NOT_IMPLEMENTED;
385 * Get the trusted account password for the trusted domain
386 * No need to become_root() as secrets_init() is done at startup.
389 if (!secrets_fetch_trusted_domain_password(user_info->domain, &trust_password,
390 &sid, &last_change_time)) {
391 DEBUG(0, ("check_trustdomain_security: could not fetch trust "
392 "account password for domain %s\n",
393 user_info->domain));
394 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
397 #ifdef DEBUG_PASSWORD
398 DEBUG(100, ("Trust password for domain %s is %s\n", user_info->domain,
399 trust_password));
400 #endif
401 E_md4hash(trust_password, trust_md4_password);
402 SAFE_FREE(trust_password);
404 #if 0
405 /* Test if machine password is expired and need to be changed */
406 if (time(NULL) > last_change_time + (time_t)lp_machine_password_timeout())
408 global_machine_password_needs_changing = True;
410 #endif
412 /* use get_dc_name() for consistency even through we know that it will be
413 a netbios name */
415 if ( !get_dc_name(user_info->domain, NULL, dc_name, &dc_ip) ) {
416 DEBUG(5,("check_trustdomain_security: unable to locate a DC for domain %s\n",
417 user_info->domain));
418 return NT_STATUS_NO_LOGON_SERVERS;
421 nt_status = domain_client_validate(mem_ctx,
422 user_info,
423 user_info->domain,
424 (uchar *)auth_context->challenge.data,
425 server_info,
426 dc_name,
427 dc_ip);
429 return nt_status;
432 /* module initialisation */
433 static NTSTATUS auth_init_trustdomain(struct auth_context *auth_context, const char* param, auth_methods **auth_method)
435 if (!make_auth_methods(auth_context, auth_method)) {
436 return NT_STATUS_NO_MEMORY;
439 (*auth_method)->name = "trustdomain";
440 (*auth_method)->auth = check_trustdomain_security;
441 return NT_STATUS_OK;
444 NTSTATUS auth_domain_init(void)
446 smb_register_auth(AUTH_INTERFACE_VERSION, "trustdomain", auth_init_trustdomain);
447 smb_register_auth(AUTH_INTERFACE_VERSION, "ntdomain", auth_init_ntdomain);
448 return NT_STATUS_OK;