2fd17e1fa4abecad437fa018f3695b952562ea36
[ira/wip.git] / source3 / libsmb / domain_client_validate.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    Authenticate against a remote domain
5    Copyright (C) Andrew Tridgell 1992-1998
6    Copyright (C) Andrew Bartlett 2001
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25 extern struct in_addr ipzero;
26
27 extern pstring global_myname;
28
29 /***********************************************************************
30  Connect to a remote machine for domain security authentication
31  given a name or IP address.
32  ***********************************************************************/
33
34 static BOOL connect_to_domain_password_server(struct cli_state *pcli, 
35                                               char *server, unsigned char *trust_passwd)
36 {
37         struct in_addr dest_ip;
38         fstring remote_machine;
39         NTSTATUS result;
40
41         if(cli_initialise(pcli) == NULL) {
42                 DEBUG(0,("connect_to_domain_password_server: unable to initialize client connection.\n"));
43                 return False;
44         }
45
46         if (is_ipaddress(server)) {
47                 struct in_addr to_ip;
48           
49                 /* we shouldn't have 255.255.255.255 forthe IP address of 
50                    a password server anyways */
51                 if ((to_ip.s_addr=inet_addr(server)) == 0xFFFFFFFF) {
52                         DEBUG (0,("connect_to_domain_password_server: inet_addr(%s) returned 0xFFFFFFFF!\n", server));
53                         return False;
54                 }
55
56                 if (!name_status_find("*", 0x20, 0x20, to_ip, remote_machine)) {
57                         DEBUG(0, ("connect_to_domain_password_server: Can't "
58                                   "resolve name for IP %s\n", server));
59                         return False;
60                 }
61         } else {
62                 fstrcpy(remote_machine, server);
63         }
64
65         standard_sub_basic(remote_machine);
66         strupper(remote_machine);
67
68         if(!resolve_name( remote_machine, &dest_ip, 0x20)) {
69                 DEBUG(1,("connect_to_domain_password_server: Can't resolve address for %s\n", remote_machine));
70                 cli_shutdown(pcli);
71                 return False;
72         }
73   
74         if (ismyip(dest_ip)) {
75                 DEBUG(1,("connect_to_domain_password_server: Password server loop - not using password server %s\n",
76                          remote_machine));
77                 cli_shutdown(pcli);
78                 return False;
79         }
80   
81         if (!cli_connect(pcli, remote_machine, &dest_ip)) {
82                 DEBUG(0,("connect_to_domain_password_server: unable to connect to SMB server on \
83 machine %s. Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
84                 cli_shutdown(pcli);
85                 return False;
86         }
87   
88         if (!attempt_netbios_session_request(pcli, global_myname, remote_machine, &dest_ip)) {
89                 DEBUG(0,("connect_to_password_server: machine %s rejected the NetBIOS \
90 session request. Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
91                 return False;
92         }
93   
94         pcli->protocol = PROTOCOL_NT1;
95
96         if (!cli_negprot(pcli)) {
97                 DEBUG(0,("connect_to_domain_password_server: machine %s rejected the negotiate protocol. \
98 Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
99                 cli_shutdown(pcli);
100                 return False;
101         }
102
103         if (pcli->protocol != PROTOCOL_NT1) {
104                 DEBUG(0,("connect_to_domain_password_server: machine %s didn't negotiate NT protocol.\n",
105                          remote_machine));
106                 cli_shutdown(pcli);
107                 return False;
108         }
109
110         /*
111          * Do an anonymous session setup.
112          */
113
114         if (!cli_session_setup(pcli, "", "", 0, "", 0, "")) {
115                 DEBUG(0,("connect_to_domain_password_server: machine %s rejected the session setup. \
116 Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
117                 cli_shutdown(pcli);
118                 return False;
119         }
120
121         if (!(pcli->sec_mode & 1)) {
122                 DEBUG(1,("connect_to_domain_password_server: machine %s isn't in user level security mode\n",
123                          remote_machine));
124                 cli_shutdown(pcli);
125                 return False;
126         }
127
128         if (!cli_send_tconX(pcli, "IPC$", "IPC", "", 1)) {
129                 DEBUG(0,("connect_to_domain_password_server: machine %s rejected the tconX on the IPC$ share. \
130 Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
131                 cli_shutdown(pcli);
132                 return False;
133         }
134
135         /*
136          * We now have an anonymous connection to IPC$ on the domain password server.
137          */
138
139         /*
140          * Even if the connect succeeds we need to setup the netlogon
141          * pipe here. We do this as we may just have changed the domain
142          * account password on the PDC and yet we may be talking to
143          * a BDC that doesn't have this replicated yet. In this case
144          * a successful connect to a DC needs to take the netlogon connect
145          * into account also. This patch from "Bjart Kvarme" <bjart.kvarme@usit.uio.no>.
146          */
147
148         if(cli_nt_session_open(pcli, PIPE_NETLOGON) == False) {
149                 DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
150 machine %s. Error was : %s.\n", remote_machine, cli_errstr(pcli)));
151                 cli_nt_session_close(pcli);
152                 cli_ulogoff(pcli);
153                 cli_shutdown(pcli);
154                 return False;
155         }
156
157         result = cli_nt_setup_creds(pcli, trust_passwd);
158
159         if (!NT_STATUS_IS_OK(result)) {
160                 DEBUG(0,("connect_to_domain_password_server: unable to setup the PDC credentials to machine \
161 %s. Error was : %s.\n", remote_machine, get_nt_error_msg(result)));
162                 cli_nt_session_close(pcli);
163                 cli_ulogoff(pcli);
164                 cli_shutdown(pcli);
165                 return(False);
166         }
167
168         return True;
169 }
170
171 /***********************************************************************
172  Utility function to attempt a connection to an IP address of a DC.
173 ************************************************************************/
174
175 static BOOL attempt_connect_to_dc(struct cli_state *pcli, struct in_addr *ip, 
176                                   unsigned char *trust_passwd)
177 {
178         fstring dc_name;
179
180         /*
181          * Ignore addresses we have already tried.
182          */
183
184         if (ip_equal(ipzero, *ip))
185                 return False;
186
187         if (!lookup_pdc_name(global_myname, lp_workgroup(), ip, dc_name))
188                 return False;
189
190         return connect_to_domain_password_server(pcli, dc_name, trust_passwd);
191 }
192
193 /***********************************************************************
194  We have been asked to dynamcially determine the IP addresses of
195  the PDC and BDC's for this DOMAIN, and query them in turn.
196 ************************************************************************/
197 static BOOL find_connect_pdc(struct cli_state *pcli, 
198                              unsigned char *trust_passwd, 
199                              time_t last_change_time)
200 {
201         struct in_addr *ip_list = NULL;
202         int count = 0;
203         int i;
204         BOOL connected_ok = False;
205         time_t time_now = time(NULL);
206         BOOL use_pdc_only = False;
207
208         /*
209          * If the time the machine password has changed
210          * was less than an hour ago then we need to contact
211          * the PDC only, as we cannot be sure domain replication
212          * has yet taken place. Bug found by Gerald (way to go
213          * Gerald !). JRA.
214          */
215
216         if (time_now - last_change_time < 3600)
217                 use_pdc_only = True;
218
219         if (!get_dc_list(use_pdc_only, lp_workgroup(), &ip_list, &count))
220                 return False;
221
222         /*
223          * Firstly try and contact a PDC/BDC who has the same
224          * network address as any of our interfaces.
225          */
226         for(i = 0; i < count; i++) {
227                 if(!is_local_net(ip_list[i]))
228                         continue;
229
230                 if((connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd))) 
231                         break;
232                 
233                 ip_list[i] = ipzero; /* Tried and failed. */
234         }
235
236         /*
237          * Secondly try and contact a random PDC/BDC.
238          */
239         if(!connected_ok) {
240                 i = (sys_random() % count);
241
242                 if (!(connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd)))
243                         ip_list[i] = ipzero; /* Tried and failed. */
244         }
245
246         /*
247          * Finally go through the IP list in turn, ignoring any addresses
248          * we have already tried.
249          */
250         if(!connected_ok) {
251                 /*
252                  * Try and connect to any of the other IP addresses in the PDC/BDC list.
253                  * Note that from a WINS server the #1 IP address is the PDC.
254                  */
255                 for(i = 0; i < count; i++) {
256                         if((connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd)))
257                                 break;
258                 }
259         }
260
261         SAFE_FREE(ip_list);
262
263
264         return connected_ok;
265 }
266
267 /***********************************************************************
268  Do the same as security=server, but using NT Domain calls and a session
269  key from the machine password.  If the server parameter is specified
270  use it, otherwise figure out a server from the 'password server' param.
271 ************************************************************************/
272
273 NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info, 
274                               auth_serversupplied_info **server_info, 
275                               char *server, unsigned char *trust_passwd,
276                               time_t last_change_time)
277 {
278         fstring remote_machine;
279         NET_ID_INFO_CTR ctr;
280         NET_USER_INFO_3 info3;
281         struct cli_state cli;
282         uint32 smb_uid_low;
283         BOOL connected_ok = False;
284         NTSTATUS status;
285         struct passwd *pass;
286
287         /* 
288          * Check that the requested domain is not our own machine name.
289          * If it is, we should never check the PDC here, we use our own local
290          * password file.
291          */
292
293         if(strequal(user_info->domain.str, global_myname)) {
294                 DEBUG(3,("domain_client_validate: Requested domain was for this machine.\n"));
295                 return NT_STATUS_LOGON_FAILURE;
296         }
297
298         /*
299          * At this point, smb_apasswd points to the lanman response to
300          * the challenge in local_challenge, and smb_ntpasswd points to
301          * the NT response to the challenge in local_challenge. Ship
302          * these over the secure channel to a domain controller and
303          * see if they were valid.
304          */
305
306         ZERO_STRUCT(cli);
307
308         while (!connected_ok &&
309                next_token(&server,remote_machine,LIST_SEP,sizeof(remote_machine))) {
310                 if(strequal(remote_machine, "*")) {
311                         connected_ok = find_connect_pdc(&cli, trust_passwd, last_change_time);
312                 } else {
313                         connected_ok = connect_to_domain_password_server(&cli, remote_machine, trust_passwd);
314                 }
315         }
316
317         if (!connected_ok) {
318                 DEBUG(0,("domain_client_validate: Domain password server not available.\n"));
319                 cli_shutdown(&cli);
320                 return NT_STATUS_LOGON_FAILURE;
321         }
322
323         /* We really don't care what LUID we give the user. */
324         generate_random_buffer( (unsigned char *)&smb_uid_low, 4, False);
325
326         ZERO_STRUCT(info3);
327
328         /*
329          * If this call succeeds, we now have lots of info about the user
330          * in the info3 structure.  
331          */
332
333         status = cli_nt_login_network(&cli, user_info, smb_uid_low, 
334                                       &ctr, &info3);
335         
336         if (!NT_STATUS_IS_OK(status)) {
337                 DEBUG(0,("domain_client_validate: unable to validate password "
338                          "for user %s in domain %s to Domain controller %s. "
339                          "Error was %s.\n", user_info->smb_name.str,
340                          user_info->domain.str, cli.srv_name_slash, 
341                          get_nt_error_msg(status)));
342         } else {
343                 char *dom_user;
344
345                 /* Check DOMAIN\username first to catch winbind users, then
346                    just the username for local users. */
347
348                 asprintf(&dom_user, "%s%s%s", user_info->domain.str,
349                          lp_winbind_separator(),
350                          user_info->internal_username.str);
351
352                 if (!(pass = Get_Pwnam(dom_user)))
353                         pass = Get_Pwnam(user_info->internal_username.str);
354
355                 free(dom_user);
356
357                 if (pass) {
358                         make_server_info_pw(server_info, pass);
359                         if (!server_info) {
360                                 status = NT_STATUS_NO_MEMORY;
361                         }
362                 } else {
363                         status = NT_STATUS_NO_SUCH_USER;
364                 }
365         }
366
367         /* Store the user group information in the server_info returned to the caller. */
368         
369         if (NT_STATUS_IS_OK(status) && (info3.num_groups2 != 0)) {
370                 DOM_SID domain_sid;
371                 int i;
372                 NT_USER_TOKEN *ptok;
373                 auth_serversupplied_info *pserver_info = *server_info;
374
375                 if ((pserver_info->ptok = malloc( sizeof(NT_USER_TOKEN) ) ) == NULL) {
376                         DEBUG(0, ("domain_client_validate: out of memory allocating rid group membership\n"));
377                         status = NT_STATUS_NO_MEMORY;
378                         free_server_info(server_info);
379                         goto done;
380                 }
381
382                 ptok = pserver_info->ptok;
383                 ptok->num_sids = (size_t)info3.num_groups2;
384
385                 if ((ptok->user_sids = (DOM_SID *)malloc( sizeof(DOM_SID) * ptok->num_sids )) == NULL) {
386                         DEBUG(0, ("domain_client_validate: Out of memory allocating group SIDS\n"));
387                         status = NT_STATUS_NO_MEMORY;
388                         free_server_info(server_info);
389                         goto done;
390                 }
391  
392                 if (!secrets_fetch_domain_sid(lp_workgroup(), &domain_sid)) {
393                         DEBUG(0, ("domain_client_validate: unable to fetch domain sid.\n"));
394                         status = NT_STATUS_NO_MEMORY;
395                         free_server_info(server_info);
396                         goto done;
397                 }
398  
399                 for (i = 0; i < ptok->num_sids; i++) {
400                         sid_copy(&ptok->user_sids[i], &domain_sid);
401                         sid_append_rid(&ptok->user_sids[i], info3.gids[i].g_rid);
402                 }
403         }
404
405 #if 0
406         /* 
407          * We don't actually need to do this - plus it fails currently with
408          * NT_STATUS_INVALID_INFO_CLASS - we need to know *exactly* what to
409          * send here. JRA.
410          */
411
412         if (NT_STATUS_IS_OK(status)) {
413                 if(cli_nt_logoff(&cli, &ctr) == False) {
414                         DEBUG(0,("domain_client_validate: unable to log off user %s in domain \
415 %s to Domain controller %s. Error was %s.\n", user, domain, remote_machine, cli_errstr(&cli)));        
416                         status = NT_STATUS_LOGON_FAILURE;
417                 }
418         }
419 #endif /* 0 */
420
421   done:
422
423         /* Note - once the cli stream is shutdown the mem_ctx used
424            to allocate the other_sids and gids structures has been deleted - so
425            these pointers are no longer valid..... */
426
427         cli_nt_session_close(&cli);
428         cli_ulogoff(&cli);
429         cli_shutdown(&cli);
430         return status;
431 }