c05b82ef1503a6b72c0c283c8cd33982608a00f3
[kai/samba.git] / source / smbd / password.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    Password and authentication handling
5    Copyright (C) Andrew Tridgell 1992-1998
6    
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.
11    
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.
16    
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.
20 */
21
22 #include "includes.h"
23
24 extern int DEBUGLEVEL;
25 extern int Protocol;
26
27 /* users from session setup */
28 static pstring session_users="";
29
30 extern pstring scope;
31 extern pstring global_myname;
32 extern fstring global_myworkgroup;
33
34 /* Data to do lanman1/2 password challenge. */
35 static unsigned char saved_challenge[8];
36 static BOOL challenge_sent=False;
37
38 /*******************************************************************
39 Get the next challenge value - no repeats.
40 ********************************************************************/
41 void generate_next_challenge(char *challenge)
42 {
43 #if 0
44         /* 
45          * Leave this ifdef'd out while we test
46          * the new crypto random number generator.
47          * JRA.
48          */
49         unsigned char buf[16];
50         static int counter = 0;
51         struct timeval tval;
52         int v1,v2;
53
54         /* get a sort-of random number */
55         GetTimeOfDay(&tval);
56         v1 = (counter++) + getpid() + tval.tv_sec;
57         v2 = (counter++) * getpid() + tval.tv_usec;
58         SIVAL(challenge,0,v1);
59         SIVAL(challenge,4,v2);
60
61         /* mash it up with md4 */
62         mdfour(buf, (unsigned char *)challenge, 8);
63 #else
64         unsigned char buf[8];
65
66         generate_random_buffer(buf,8,False);
67 #endif 
68         memcpy(saved_challenge, buf, 8);
69         memcpy(challenge,buf,8);
70         challenge_sent = True;
71 }
72
73 /*******************************************************************
74 set the last challenge sent, usually from a password server
75 ********************************************************************/
76 BOOL set_challenge(unsigned char *challenge)
77 {
78   memcpy(saved_challenge,challenge,8);
79   challenge_sent = True;
80   return(True);
81 }
82
83 /*******************************************************************
84 get the last challenge sent
85 ********************************************************************/
86 static BOOL last_challenge(unsigned char *challenge)
87 {
88   if (!challenge_sent) return(False);
89   memcpy(challenge,saved_challenge,8);
90   return(True);
91 }
92
93 /* this holds info on user ids that are already validated for this VC */
94 static user_struct *validated_users = NULL;
95 static int num_validated_users = 0;
96
97 /****************************************************************************
98 check if a uid has been validated, and return an pointer to the user_struct
99 if it has. NULL if not. vuid is biased by an offset. This allows us to
100 tell random client vuid's (normally zero) from valid vuids.
101 ****************************************************************************/
102 user_struct *get_valid_user_struct(uint16 vuid)
103 {
104   if (vuid == UID_FIELD_INVALID)
105     return NULL;
106   vuid -= VUID_OFFSET;
107   if ((vuid >= (uint16)num_validated_users) || 
108      (validated_users[vuid].uid == (uid_t)-1) || (validated_users[vuid].gid == (gid_t)-1))
109     return NULL;
110   return &validated_users[vuid];
111 }
112
113 /****************************************************************************
114 invalidate a uid
115 ****************************************************************************/
116 void invalidate_vuid(uint16 vuid)
117 {
118   user_struct *vuser = get_valid_user_struct(vuid);
119
120   if (vuser == NULL) return;
121
122   vuser->uid = (uid_t)-1;
123   vuser->gid = (gid_t)-1;
124
125   vuser->n_sids = 0;
126
127   /* same number of igroups as groups */
128   vuser->n_groups = 0;
129
130   if (vuser->groups)
131     free((char *)vuser->groups);
132
133   if (vuser->sids)
134     free((char *)vuser->sids);
135
136   vuser->sids    = NULL;
137   vuser->groups  = NULL;
138 }
139
140
141 /****************************************************************************
142 return a validated username
143 ****************************************************************************/
144 char *validated_username(uint16 vuid)
145 {
146   user_struct *vuser = get_valid_user_struct(vuid);
147   if (vuser == NULL)
148     return 0;
149   return(vuser->name);
150 }
151
152
153
154 /****************************************************************************
155 register a uid/name pair as being valid and that a valid password
156 has been given. vuid is biased by an offset. This allows us to
157 tell random client vuid's (normally zero) from valid vuids.
158 ****************************************************************************/
159 uint16 register_vuid(uid_t uid,gid_t gid, char *unix_name, char *requested_name, BOOL guest, uchar user_sess_key[16])
160 {
161   user_struct *vuser;
162   struct passwd *pwfile; /* for getting real name from passwd file */
163
164   /* Ensure no vuid gets registered in share level security. */
165   if(lp_security() == SEC_SHARE)
166     return UID_FIELD_INVALID;
167
168 #if 0
169   /*
170    * After observing MS-Exchange services writing to a Samba share
171    * I belive this code is incorrect. Each service does its own
172    * sessionsetup_and_X for the same user, and as each service shuts
173    * down, it does a user_logoff_and_X. As we are consolidating multiple
174    * sessionsetup_and_X's onto the same vuid here, when the first service
175    * shuts down, it invalidates all the open files for the other services.
176    * Hence I am removing this code and forcing each sessionsetup_and_X
177    * to get a new vuid.
178    * Jeremy Allison. (jallison@whistle.com).
179    */
180
181   int i;
182   for(i = 0; i < num_validated_users; i++) {
183     vuser = &validated_users[i];
184     if ( vuser->uid == uid )
185       return (uint16)(i + VUID_OFFSET); /* User already validated */
186   }
187 #endif
188
189   validated_users = (user_struct *)Realloc(validated_users,
190                            sizeof(user_struct)*
191                            (num_validated_users+1));
192   
193   if (!validated_users)
194     {
195       DEBUG(0,("Failed to realloc users struct!\n"));
196       num_validated_users = 0;
197       return UID_FIELD_INVALID;
198     }
199
200   vuser = &validated_users[num_validated_users];
201   num_validated_users++;
202
203   vuser->uid = uid;
204   vuser->gid = gid;
205   vuser->guest = guest;
206   fstrcpy(vuser->name,unix_name);
207   fstrcpy(vuser->requested_name,requested_name);
208   memcpy(vuser->dc.user_sess_key, user_sess_key, sizeof(vuser->dc.user_sess_key));
209
210   vuser->n_sids = 0;
211   vuser->sids   = NULL;
212
213   vuser->n_groups = 0;
214   vuser->groups  = NULL;
215
216   /* Find all the groups this uid is in and store them. 
217      Used by become_user() */
218   get_unixgroups(unix_name,uid,gid,
219                &vuser->n_groups,
220                &vuser->groups);
221
222   DEBUG(3,("uid %d registered to name %s\n",(int)uid,unix_name));
223
224   DEBUG(3, ("Clearing default real name\n"));
225   fstrcpy(vuser->real_name, "<Full Name>\0");
226   if (lp_unix_realname()) {
227     if ((pwfile=hashed_getpwnam(vuser->name))!= NULL)
228       {
229       DEBUG(3, ("User name: %s\tReal name: %s\n",vuser->name,pwfile->pw_gecos));
230       fstrcpy(vuser->real_name, pwfile->pw_gecos);
231       }
232   }
233
234   return (uint16)((num_validated_users - 1) + VUID_OFFSET);
235 }
236
237
238 /****************************************************************************
239 add a name to the session users list
240 ****************************************************************************/
241 void add_session_user(char *user)
242 {
243   fstring suser;
244   StrnCpy(suser,user,sizeof(suser)-1);
245
246   if (!Get_Pwnam(suser,True)) return;
247
248   if (suser && *suser && !in_list(suser,session_users,False))
249     {
250       if (strlen(suser) + strlen(session_users) + 2 >= sizeof(pstring))
251         DEBUG(1,("Too many session users??\n"));
252       else
253         {
254           pstrcat(session_users," ");
255           pstrcat(session_users,suser);
256         }
257     }
258 }
259
260
261 /****************************************************************************
262 update the encrypted smbpasswd file from the plaintext username and password
263 *****************************************************************************/
264 static BOOL update_smbpassword_file(char *user, char *password)
265 {
266         struct smb_passwd *smbpw;
267         BOOL ret;
268         
269         become_root(0);
270         smbpw = getsmbpwnam(user);
271         unbecome_root(0);
272         
273         if(smbpw == NULL) {
274                 DEBUG(0,("getsmbpwnam returned NULL\n"));
275                 return False;
276         }
277  
278         /* Here, the flag is one, because we want to ignore the
279            XXXXXXX'd out password */
280         ret = change_oem_password( smbpw, password, True);
281         if (ret == False) {
282                 DEBUG(3,("change_oem_password returned False\n"));
283         }
284
285         return ret;
286 }
287
288
289
290
291
292 /****************************************************************************
293 core of smb password checking routine.
294 ****************************************************************************/
295 BOOL smb_password_check(char *password, unsigned char *part_passwd, unsigned char *c8)
296 {
297   /* Finish the encryption of part_passwd. */
298   unsigned char p21[21];
299   unsigned char p24[24];
300
301   if (part_passwd == NULL)
302     DEBUG(10,("No password set - allowing access\n"));
303   /* No password set - always true ! */
304   if (part_passwd == NULL)
305     return 1;
306
307   memset(p21,'\0',21);
308   memcpy(p21,part_passwd,16);
309   E_P24(p21, c8, p24);
310 #if DEBUG_PASSWORD
311   {
312     int i;
313     DEBUG(100,("Part password (P16) was |"));
314     for(i = 0; i < 16; i++)
315       DEBUG(100,("%X ", (unsigned char)part_passwd[i]));
316     DEBUG(100,("|\n"));
317     DEBUG(100,("Password from client was |"));
318     for(i = 0; i < 24; i++)
319       DEBUG(100,("%X ", (unsigned char)password[i]));
320     DEBUG(100,("|\n"));
321     DEBUG(100,("Given challenge was |"));
322     for(i = 0; i < 8; i++)
323       DEBUG(100,("%X ", (unsigned char)c8[i]));
324     DEBUG(100,("|\n"));
325     DEBUG(100,("Value from encryption was |"));
326     for(i = 0; i < 24; i++)
327       DEBUG(100,("%X ", (unsigned char)p24[i]));
328     DEBUG(100,("|\n"));
329   }
330 #endif
331   return (memcmp(p24, password, 24) == 0);
332 }
333
334 /****************************************************************************
335  Do a specific test for an smb password being correct, given a smb_password and
336  the lanman and NT responses.
337 ****************************************************************************/
338 BOOL smb_password_ok(struct smb_passwd *smb_pass, uchar chal[8],
339                      uchar lm_pass[24], uchar nt_pass[24])
340 {
341         uchar challenge[8];
342
343         if (!lm_pass || !smb_pass) return(False);
344
345         DEBUG(4,("Checking SMB password for user %s\n", 
346                  smb_pass->unix_name));
347
348         if(smb_pass->acct_ctrl & ACB_DISABLED) {
349                 DEBUG(3,("account for user %s was disabled.\n", 
350                          smb_pass->unix_name));
351                 return(False);
352         }
353
354         if (chal == NULL)
355         {
356                 DEBUG(5,("use last SMBnegprot challenge\n"));
357                 if (!last_challenge(challenge))
358                 {
359                         DEBUG(1,("no challenge done - password failed\n"));
360                         return False;
361                 }
362         }
363         else
364         {
365                 DEBUG(5,("challenge received\n"));
366                 memcpy(challenge, chal, 8);
367         }
368
369         if ((Protocol >= PROTOCOL_NT1) && (smb_pass->smb_nt_passwd != NULL)) {
370                 /* We have the NT MD4 hash challenge available - see if we can
371                    use it (ie. does it exist in the smbpasswd file).
372                 */
373                 DEBUG(4,("smb_password_ok: Checking NT MD4 password\n"));
374                 if (smb_password_check((char *)nt_pass, 
375                                        (uchar *)smb_pass->smb_nt_passwd, 
376                                        challenge)) {
377                         DEBUG(4,("NT MD4 password check succeeded\n"));
378                         return(True);
379                 }
380                 DEBUG(4,("NT MD4 password check failed\n"));
381         }
382
383         /* Try against the lanman password. smb_pass->smb_passwd == NULL means
384            no password, allow access. */
385
386         DEBUG(4,("Checking LM MD4 password\n"));
387
388         if((smb_pass->smb_passwd == NULL) && 
389            (smb_pass->acct_ctrl & ACB_PWNOTREQ)) {
390                 DEBUG(4,("no password required for user %s\n",
391                          smb_pass->unix_name));
392                 return True;
393         }
394
395         if((smb_pass->smb_passwd != NULL) && 
396            smb_password_check((char *)lm_pass, 
397                               (uchar *)smb_pass->smb_passwd, challenge)) {
398                 DEBUG(4,("LM MD4 password check succeeded\n"));
399                 return(True);
400         }
401
402         DEBUG(4,("LM MD4 password check failed\n"));
403
404         return False;
405 }
406
407
408 /****************************************************************************
409 check if a username/password is OK assuming the password is a 24 byte
410 SMB hash
411 return True if the password is correct, False otherwise
412 ****************************************************************************/
413
414 BOOL pass_check_smb(char *user, char *domain,
415                 uchar *chal, uchar *lm_pwd, uchar *nt_pwd,
416                 struct passwd *pwd, uchar user_sess_key[16])
417 {
418         const struct passwd *pass;
419         struct smb_passwd *smb_pass;
420
421         if (!lm_pwd || !nt_pwd)
422         {
423                 return(False);
424         }
425
426         if (pwd != NULL && user == NULL)
427         {
428                 pass = (struct passwd *) pwd;
429                 user = pass->pw_name;
430         }
431         else
432         {
433                 pass = Get_Pwnam(user,True);
434         }
435
436         if (pass == NULL)
437         {
438                 DEBUG(3,("Couldn't find user %s\n",user));
439                 return(False);
440         }
441
442         smb_pass = getsmbpwnam(user);
443
444         if (smb_pass == NULL)
445         {
446                 DEBUG(3,("Couldn't find user %s in smb_passwd file.\n", user));
447                 return(False);
448         }
449
450         /* Quit if the account was disabled. */
451         if(smb_pass->acct_ctrl & ACB_DISABLED) {
452                 DEBUG(3,("account for user %s was disabled.\n", user));
453                 return(False);
454         }
455
456         /* Ensure the uid's match */
457         if (smb_pass->unix_uid != pass->pw_uid)
458         {
459                 DEBUG(3,("Error : UNIX and SMB uids in password files do not match !\n"));
460                 return(False);
461         }
462
463         if (lm_pwd[0] == '\0' && IS_BITS_SET_ALL(smb_pass->acct_ctrl, ACB_PWNOTREQ) && lp_null_passwords())
464         {
465                 DEBUG(3,("account for user %s has no password and null passwords are allowed.\n", smb_pass->unix_name));
466                 return(True);
467         }
468
469         if (smb_password_ok(smb_pass, chal, lm_pwd, nt_pwd))
470         {
471                 if (user_sess_key != NULL)
472                 {
473                         mdfour(user_sess_key, smb_pass->smb_nt_passwd, 16);
474 #ifdef DEBUG_PASSWORD
475                 DEBUG(100,("user session key: "));
476                 dump_data(100, user_sess_key, 16);
477 #endif
478                 }
479                 return(True);
480         }
481         
482         DEBUG(3,("Error smb_password_check failed\n"));
483         return False;
484 }
485
486 /****************************************************************************
487 check if a username/password pair is OK either via the system password
488 database or the encrypted SMB password database
489 return True if the password is correct, False otherwise
490 ****************************************************************************/
491 BOOL password_ok(char *user, char *password, int pwlen, struct passwd *pwd,
492                 uchar user_sess_key[16])
493 {
494         if (pwlen == 24 || (lp_encrypted_passwords() && (pwlen == 0) && lp_null_passwords()))
495         {
496                 /* if 24 bytes long assume it is an encrypted password */
497                 uchar challenge[8];
498
499                 if (!last_challenge(challenge))
500                 {
501                         DEBUG(0,("Error: challenge not done for user=%s\n", user));
502                         return False;
503                 }
504
505                 return pass_check_smb(user, global_myworkgroup,
506                                       challenge, (uchar *)password, (uchar *)password, pwd, user_sess_key);
507         } 
508
509         return pass_check(user, password, pwlen, pwd, 
510                           lp_update_encrypted() ? 
511                           update_smbpassword_file : NULL);
512 }
513
514 /****************************************************************************
515 check if a username is valid
516 ****************************************************************************/
517 BOOL user_ok(char *user,int snum)
518 {
519         pstring valid, invalid;
520         BOOL ret;
521
522         StrnCpy(valid, lp_valid_users(snum), sizeof(pstring));
523         StrnCpy(invalid, lp_invalid_users(snum), sizeof(pstring));
524
525         string_sub(valid,"%S",lp_servicename(snum));
526         string_sub(invalid,"%S",lp_servicename(snum));
527         
528         ret = !user_in_list(user,invalid);
529         
530         if (ret && valid && *valid) {
531                 ret = user_in_list(user,valid);
532         }
533
534         if (ret && lp_onlyuser(snum)) {
535                 char *user_list = lp_username(snum);
536                 string_sub(user_list,"%S",lp_servicename(snum));
537                 ret = user_in_list(user,user_list);
538         }
539
540         return(ret);
541 }
542
543
544
545
546 /****************************************************************************
547 validate a group username entry. Return the username or NULL
548 ****************************************************************************/
549 static char *validate_group(char *group,char *password,int pwlen,int snum,
550                                 uchar user_sess_key[16])
551 {
552 #if defined(HAVE_NETGROUP) && defined(HAVE_GETNETGRENT) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT)
553   {
554     char *host, *user, *domain;
555     setnetgrent(group);
556     while (getnetgrent(&host, &user, &domain)) {
557       if (user) {
558         if (user_ok(user, snum) && 
559             password_ok(user,password,pwlen,NULL, user_sess_key)) {
560           endnetgrent();
561           return(user);
562         }
563       }
564     }
565     endnetgrent();
566   }
567 #endif
568   
569 #ifdef HAVE_GETGRNAM 
570   {
571     struct group *gptr = (struct group *)getgrnam(group);
572     char **member;
573     if (gptr)
574       {
575         member = gptr->gr_mem;
576         while (member && *member)
577           {
578             static fstring name;
579             fstrcpy(name,*member);
580             if (user_ok(name,snum) &&
581                 password_ok(name,password,pwlen,NULL, user_sess_key))
582               return(&name[0]);
583             member++;
584           }
585 #ifdef GROUP_CHECK_PWENT
586         {
587           struct passwd *pwd;
588           static fstring tm;
589           
590           setpwent ();
591           while (pwd = getpwent ()) {
592             if (*(pwd->pw_passwd) && pwd->pw_gid == gptr->gr_gid) {
593               /* This Entry have PASSWORD and same GID then check pwd */
594               if (password_ok(NULL, password, pwlen, pwd, user_sess_key)) {
595                 fstrcpy(tm, pwd->pw_name);
596                 endpwent ();
597                 return tm;
598               }
599             }
600           }
601           endpwent ();
602         }
603 #endif /* GROUP_CHECK_PWENT */
604       }
605   }      
606 #endif
607   return(NULL);
608 }
609
610
611
612 /****************************************************************************
613 check for authority to login to a service with a given username/password
614 ****************************************************************************/
615 BOOL authorise_login(int snum,char *user,char *password, int pwlen, 
616                      BOOL *guest,BOOL *force,uint16 vuid)
617 {
618   BOOL ok = False;
619   
620   *guest = False;
621   
622 #if DEBUG_PASSWORD
623   DEBUG(100,("checking authorisation on user=%s pass=%s\n",user,password));
624 #endif
625
626   /* there are several possibilities:
627      1) login as the given user with given password
628      2) login as a previously registered username with the given password
629      3) login as a session list username with the given password
630      4) login as a previously validated user/password pair
631      5) login as the "user =" user with given password
632      6) login as the "user =" user with no password (guest connection)
633      7) login as guest user with no password
634
635      if the service is guest_only then steps 1 to 5 are skipped
636   */
637
638   if (GUEST_ONLY(snum)) *force = True;
639
640   if (!(GUEST_ONLY(snum) && GUEST_OK(snum)))
641     {
642
643       user_struct *vuser = get_valid_user_struct(vuid);
644
645       /* check the given username and password */
646       if (!ok && (*user) && user_ok(user,snum)) {
647         ok = password_ok(user,password, pwlen, NULL, vuser->dc.user_sess_key);
648         if (ok) DEBUG(3,("ACCEPTED: given username password ok\n"));
649       }
650
651       /* check for a previously registered guest username */
652       if (!ok && (vuser != 0) && vuser->guest) {          
653         if (user_ok(vuser->name,snum) &&
654             password_ok(vuser->name, password, pwlen, NULL, vuser->dc.user_sess_key)) {
655           fstrcpy(user, vuser->name);
656           vuser->guest = False;
657           DEBUG(3,("ACCEPTED: given password with registered user %s\n", user));
658           ok = True;
659         }
660       }
661
662
663       /* now check the list of session users */
664     if (!ok)
665     {
666       char *auser;
667       char *user_list = strdup(session_users);
668       if (!user_list) return(False);
669
670       for (auser=strtok(user_list,LIST_SEP); 
671            !ok && auser; 
672            auser = strtok(NULL,LIST_SEP))
673       {
674         fstring user2;
675         fstrcpy(user2,auser);
676         if (!user_ok(user2,snum)) continue;
677                   
678         if (password_ok(user2,password, pwlen, NULL, vuser->dc.user_sess_key)) {
679           ok = True;
680           fstrcpy(user,user2);
681           DEBUG(3,("ACCEPTED: session list username and given password ok\n"));
682         }
683       }
684       free(user_list);
685     }
686
687     /* check for a previously validated username/password pair */
688     if (!ok && (!lp_revalidate(snum) || lp_security() > SEC_SHARE) &&
689         (vuser != 0) && !vuser->guest &&
690         user_ok(vuser->name,snum)) {
691       fstrcpy(user,vuser->name);
692       *guest = False;
693       DEBUG(3,("ACCEPTED: validated uid ok as non-guest\n"));
694       ok = True;
695     }
696
697       /* check for a rhosts entry */
698       if (!ok && user_ok(user,snum) && check_hosts_equiv(user)) {
699         ok = True;
700         DEBUG(3,("ACCEPTED: hosts equiv or rhosts entry\n"));
701       }
702
703       /* check the user= fields and the given password */
704       if (!ok && lp_username(snum)) {
705         char *auser;
706         pstring user_list;
707         StrnCpy(user_list,lp_username(snum),sizeof(pstring));
708
709         string_sub(user_list,"%S",lp_servicename(snum));
710           
711         for (auser=strtok(user_list,LIST_SEP);
712              auser && !ok;
713              auser = strtok(NULL,LIST_SEP))
714           {
715             if (*auser == '@')
716               {
717                 auser = validate_group(auser+1,password,pwlen,snum, vuser->dc.user_sess_key);
718                 if (auser)
719                   {
720                     ok = True;
721                     fstrcpy(user,auser);
722                     DEBUG(3,("ACCEPTED: group username and given password ok\n"));
723                   }
724               }
725             else
726               {
727                 fstring user2;
728                 fstrcpy(user2,auser);
729                 if (user_ok(user2,snum) && 
730                     password_ok(user2,password,pwlen,NULL, vuser->dc.user_sess_key))
731                   {
732                     ok = True;
733                     fstrcpy(user,user2);
734                     DEBUG(3,("ACCEPTED: user list username and given password ok\n"));
735                   }
736               }
737           }
738       }      
739     } /* not guest only */
740
741   /* check for a normal guest connection */
742   if (!ok && GUEST_OK(snum))
743     {
744       fstring guestname;
745       StrnCpy(guestname,lp_guestaccount(snum),sizeof(guestname)-1);
746       if (Get_Pwnam(guestname,True))
747         {
748           fstrcpy(user,guestname);
749           ok = True;
750           DEBUG(3,("ACCEPTED: guest account and guest ok\n"));
751         }
752       else
753         DEBUG(0,("Invalid guest account %s??\n",guestname));
754       *guest = True;
755       *force = True;
756     }
757
758   if (ok && !user_ok(user,snum))
759     {
760       DEBUG(0,("rejected invalid user %s\n",user));
761       ok = False;
762     }
763
764   return(ok);
765 }
766
767
768 /****************************************************************************
769 read the a hosts.equiv or .rhosts file and check if it
770 allows this user from this machine
771 ****************************************************************************/
772 static BOOL check_user_equiv(char *user, char *remote, char *equiv_file)
773 {
774   pstring buf;
775   int plus_allowed = 1;
776   char *file_host;
777   char *file_user;
778   FILE *fp = sys_fopen(equiv_file, "r");
779   DEBUG(5, ("check_user_equiv %s %s %s\n", user, remote, equiv_file));
780   if (! fp) return False;
781   while(fgets(buf, sizeof(buf), fp)) 
782   {
783     trim_string(buf," "," ");
784
785     if (buf[0] != '#' && buf[0] != '\n') 
786     {
787       BOOL is_group = False;
788       int plus = 1;
789       char *bp = buf;
790       if (strcmp(buf, "NO_PLUS\n") == 0)
791       {
792         DEBUG(6, ("check_user_equiv NO_PLUS\n"));
793         plus_allowed = 0;
794       }
795       else {
796         if (buf[0] == '+') 
797         {
798           bp++;
799           if (*bp == '\n' && plus_allowed) 
800           {
801             /* a bare plus means everbody allowed */
802             DEBUG(6, ("check_user_equiv everybody allowed\n"));
803             fclose(fp);
804             return True;
805           }
806         }
807         else if (buf[0] == '-')
808         {
809           bp++;
810           plus = 0;
811         }
812         if (*bp == '@') 
813         {
814           is_group = True;
815           bp++;
816         }
817         file_host = strtok(bp, " \t\n");
818         file_user = strtok(NULL, " \t\n");
819         DEBUG(7, ("check_user_equiv %s %s\n", file_host ? file_host : "(null)", 
820                  file_user ? file_user : "(null)" ));
821         if (file_host && *file_host) 
822         {
823           BOOL host_ok = False;
824
825 #if defined(HAVE_NETGROUP) && defined(HAVE_YP_GET_DEFAULT_DOMAIN)
826           if (is_group)
827             {
828               static char *mydomain = NULL;
829               if (!mydomain)
830                 yp_get_default_domain(&mydomain);
831               if (mydomain && innetgr(file_host,remote,user,mydomain))
832                 host_ok = True;
833             }
834 #else
835           if (is_group)
836             {
837               DEBUG(1,("Netgroups not configured\n"));
838               continue;
839             }
840 #endif
841
842           /* is it this host */
843           /* the fact that remote has come from a call of gethostbyaddr
844            * means that it may have the fully qualified domain name
845            * so we could look up the file version to get it into
846            * a canonical form, but I would rather just type it
847            * in full in the equiv file
848            */
849           if (!host_ok && !is_group && strequal(remote, file_host))
850             host_ok = True;
851
852           if (!host_ok)
853             continue;
854
855           /* is it this user */
856           if (file_user == 0 || strequal(user, file_user)) 
857             {
858               fclose(fp);
859               DEBUG(5, ("check_user_equiv matched %s%s %s\n",
860                         (plus ? "+" : "-"), file_host,
861                         (file_user ? file_user : "")));
862               return (plus ? True : False);
863             }
864         }
865       }
866     }
867   }
868   fclose(fp);
869   return False;
870 }
871
872
873 /****************************************************************************
874 check for a possible hosts equiv or rhosts entry for the user
875 ****************************************************************************/
876 BOOL check_hosts_equiv(char *user)
877 {
878   char *fname = NULL;
879   pstring rhostsfile;
880   const struct passwd *pass = Get_Pwnam(user,True);
881
882   if (!pass) 
883     return(False);
884
885   fname = lp_hosts_equiv();
886
887   /* note: don't allow hosts.equiv on root */
888   if (fname && *fname && (pass->pw_uid != 0)) {
889           extern int Client;
890           if (check_user_equiv(user,client_name(Client),fname))
891                   return(True);
892   }
893   
894   if (lp_use_rhosts())
895     {
896       char *home = get_home_dir(user);
897       if (home) {
898               extern int Client;
899               slprintf(rhostsfile, sizeof(rhostsfile)-1, "%s/.rhosts", home);
900               if (check_user_equiv(user,client_name(Client),rhostsfile))
901                       return(True);
902       }
903     }
904
905   return(False);
906 }
907
908
909 /****************************************************************************
910 return the client state structure
911 ****************************************************************************/
912 struct cli_state *server_client(void)
913 {
914         static struct cli_state pw_cli;
915         return &pw_cli;
916 }
917
918 /****************************************************************************
919 support for server level security 
920 ****************************************************************************/
921 struct cli_state *server_cryptkey(void)
922 {
923         if (cli_connect_serverlist(server_client(), lp_passwordserver()))
924         {
925                 return server_client();
926         }
927         return NULL;
928 }
929
930 /****************************************************************************
931 validate a password with the password server
932 ****************************************************************************/
933 BOOL server_validate(char *user, char *domain, 
934                      char *pass, int passlen,
935                      char *ntpass, int ntpasslen)
936 {
937   struct cli_state *cli;
938   static unsigned char badpass[24];
939   static BOOL tested_password_server = False;
940   static BOOL bad_password_server = False;
941
942   cli = server_client();
943
944   if (!cli->initialised) {
945     DEBUG(1,("password server %s is not connected\n", cli->desthost));
946     return(False);
947   }  
948
949   if(badpass[0] == 0)
950     memset(badpass, 0x1f, sizeof(badpass));
951
952   if((passlen == sizeof(badpass)) && !memcmp(badpass, pass, passlen)) {
953     /* 
954      * Very unlikely, our random bad password is the same as the users
955      * password. */
956     memset(badpass, badpass[0]+1, sizeof(badpass));
957   }
958
959   /*
960    * Attempt a session setup with a totally incorrect password.
961    * If this succeeds with the guest bit *NOT* set then the password
962    * server is broken and is not correctly setting the guest bit. We
963    * need to detect this as some versions of NT4.x are broken. JRA.
964    */
965
966   if(!tested_password_server) {
967     if (cli_session_setup(cli, user, (char *)badpass, sizeof(badpass), 
968                               (char *)badpass, sizeof(badpass), domain)) {
969
970       /*
971        * We connected to the password server so we
972        * can say we've tested it.
973        */
974       tested_password_server = True;
975
976       if ((SVAL(cli->inbuf,smb_vwv2) & 1) == 0) {
977         DEBUG(0,("server_validate: password server %s allows users as non-guest \
978 with a bad password.\n", cli->desthost));
979         DEBUG(0,("server_validate: This is broken (and insecure) behaviour. Please do not \
980 use this machine as the password server.\n"));
981         cli_ulogoff(cli);
982
983         /*
984          * Password server has the bug.
985          */
986         bad_password_server = True;
987         return False;
988       }
989       cli_ulogoff(cli);
990     }
991   } else {
992
993     /*
994      * We have already tested the password server.
995      * Fail immediately if it has the bug.
996      */
997
998     if(bad_password_server) {
999       DEBUG(0,("server_validate: [1] password server %s allows users as non-guest \
1000 with a bad password.\n", cli->desthost));
1001       DEBUG(0,("server_validate: [1] This is broken (and insecure) behaviour. Please do not \
1002 use this machine as the password server.\n"));
1003       return False;
1004     }
1005   }
1006
1007   /*
1008    * Now we know the password server will correctly set the guest bit, or is
1009    * not guest enabled, we can try with the real password.
1010    */
1011
1012   if (!cli_session_setup(cli, user, pass, passlen, ntpass, ntpasslen, domain)) {
1013     DEBUG(1,("password server %s rejected the password\n", cli->desthost));
1014     return False;
1015   }
1016
1017   /* if logged in as guest then reject */
1018   if ((SVAL(cli->inbuf,smb_vwv2) & 1) != 0) {
1019     DEBUG(1,("password server %s gave us guest only\n", cli->desthost));
1020     cli_ulogoff(cli);
1021     return(False);
1022   }
1023
1024
1025   cli_ulogoff(cli);
1026
1027   return(True);
1028 }
1029
1030 /***********************************************************************
1031  Do the same as security=server, but using NT Domain calls and a session
1032  key from the workstation trust account password.
1033 ************************************************************************/
1034
1035 BOOL domain_client_validate( char *user, char *domain, 
1036                              char *smb_apasswd, int smb_apasslen, 
1037                              char *smb_ntpasswd, int smb_ntpasslen)
1038 {
1039         uint16 nt_pipe_fnum;
1040         unsigned char local_challenge[8];
1041         unsigned char local_lm_response[24];
1042         unsigned char local_nt_reponse[24];
1043         unsigned char trust_passwd[16];
1044         NET_ID_INFO_CTR ctr;
1045         NET_USER_INFO_3 info3;
1046         struct cli_state cli;
1047         uint32 smb_uid_low;
1048
1049         /* 
1050         * Check that the requested domain is not our own machine name.
1051         * If it is, we should never check the PDC here, we use our own local
1052         * password file.
1053         */
1054
1055         if(strequal( domain, global_myname))
1056         {
1057                 DEBUG(3,("domain_client_validate: Requested domain was for this machine.\n"));
1058                 return False;
1059         }
1060
1061         /*
1062         * Next, check that the passwords given were encrypted.
1063         */
1064
1065         if(((smb_apasslen  != 24) && (smb_apasslen  != 0)) || 
1066            ((smb_ntpasslen != 24) && (smb_ntpasslen != 0)))
1067         {
1068                 /*
1069                  * Not encrypted - do so.
1070                  */
1071
1072                 DEBUG(3,("domain_client_validate: User passwords not in encrypted format.\n"));
1073                 generate_random_buffer( local_challenge, 8, False);
1074                 SMBencrypt( (uchar *)smb_apasswd, local_challenge, local_lm_response);
1075                 SMBNTencrypt((uchar *)smb_ntpasswd, local_challenge, local_nt_reponse);
1076                 smb_apasslen = 24;
1077                 smb_ntpasslen = 24;
1078                 smb_apasswd = (char *)local_lm_response;
1079                 smb_ntpasswd = (char *)local_nt_reponse;
1080         }
1081         else
1082         {
1083                 /*
1084                  * Encrypted - get the challenge we sent for these
1085                  * responses.
1086                  */
1087
1088                 if (!last_challenge(local_challenge))
1089                 {
1090                         DEBUG(0,("domain_client_validate: no challenge done - password failed\n"));
1091                         return False;
1092                 }
1093         }
1094
1095         /*
1096          * Get the workstation trust account password.
1097          */
1098         if (!trust_get_passwd( trust_passwd, global_myworkgroup, global_myname))
1099         {
1100                 return False;
1101         }
1102
1103         /*
1104          * At this point, smb_apasswd points to the lanman response to
1105          * the challenge in local_challenge, and smb_ntpasswd points to
1106          * the NT response to the challenge in local_challenge. Ship
1107          * these over the secure channel to a domain controller and
1108          * see if they were valid.
1109          */
1110
1111         if (!cli_connect_serverlist(&cli, lp_passwordserver()))
1112         {
1113                 DEBUG(0,("domain_client_validate: Domain password server not available.\n"));
1114                 return False;
1115         }
1116
1117         /*
1118         * Ok - we have an anonymous connection to the IPC$ share.
1119         * Now start the NT Domain stuff :-).
1120         */
1121
1122         if(cli_nt_session_open(&cli, PIPE_NETLOGON, &nt_pipe_fnum) == False) {
1123         DEBUG(0,("domain_client_validate: unable to open the domain client session to \
1124         machine %s. Error was : %s.\n", cli.desthost, cli_errstr(&cli)));
1125         cli_nt_session_close(&cli, nt_pipe_fnum);
1126         cli_ulogoff(&cli);
1127         cli_shutdown(&cli);
1128         return False; 
1129         }
1130
1131         if(cli_nt_setup_creds(&cli, nt_pipe_fnum,
1132            cli.mach_acct, trust_passwd, SEC_CHAN_WKSTA) == False)
1133         {
1134                 DEBUG(0,("domain_client_validate: unable to setup the PDC credentials to machine \
1135                 %s. Error was : %s.\n", cli.desthost, cli_errstr(&cli)));
1136                 cli_nt_session_close(&cli, nt_pipe_fnum);
1137                 cli_ulogoff(&cli);
1138                 cli_shutdown(&cli);
1139                 return False;
1140         }
1141
1142         /* We really don't care what LUID we give the user. */
1143         generate_random_buffer( (unsigned char *)&smb_uid_low, 4, False);
1144
1145         if (!cli_nt_login_network(&cli, nt_pipe_fnum, domain, user, smb_uid_low, (char *)local_challenge,
1146         ((smb_apasslen != 0) ? smb_apasswd : NULL),
1147         ((smb_ntpasslen != 0) ? smb_ntpasswd : NULL),
1148         &ctr, &info3))
1149         {
1150                 DEBUG(0,("domain_client_validate: unable to validate password for user %s in domain \
1151                 %s to Domain controller %s. Error was %s.\n", user, domain, cli.desthost, cli_errstr(&cli)));
1152                 cli_nt_session_close(&cli, nt_pipe_fnum);
1153                 cli_ulogoff(&cli);
1154                 cli_shutdown(&cli);
1155                 return False;
1156         }
1157
1158         /*
1159          * Here, if we really want it, we have lots of info about the user in info3.
1160          * LKCLXXXX - really important to check things like "is this user acct
1161          * locked out / disabled" etc!!!!
1162          */
1163
1164 #if 0
1165         /* 
1166         * We don't actually need to do this - plus it fails currently with
1167         * NT_STATUS_INVALID_INFO_CLASS - we need to know *exactly* what to
1168         * send here. JRA.
1169         */
1170
1171         if (!cli_nt_logoff(&cli, nt_pipe_fnum, &ctr))
1172         {
1173                 DEBUG(0,("domain_client_validate: unable to log off user %s in domain \
1174                 %s to Domain controller %s. Error was %s.\n", user, domain, cli.desthost, cli_errstr(&cli)));        
1175                 cli_nt_session_close(&cli, nt_pipe_fnum);
1176                 cli_ulogoff(&cli);
1177                 cli_shutdown(&cli);
1178                 return False;
1179         }
1180 #endif /* 0 */
1181
1182         cli_nt_session_close(&cli, nt_pipe_fnum);
1183         cli_ulogoff(&cli);
1184         cli_shutdown(&cli);
1185         return True;
1186 }