str_list_free is not needed anymore
[Samba.git] / source3 / smbd / password.c
blob687b67950aa2295837083ca45676d2eaa9bba769
1 /*
2 Unix SMB/CIFS implementation.
3 Password and authentication handling
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 2007.
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 3 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, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
23 /* users from session setup */
24 static char *session_userlist = NULL;
25 /* workgroup from session setup. */
26 static char *session_workgroup = NULL;
28 /* this holds info on user ids that are already validated for this VC */
29 static user_struct *validated_users;
30 static int next_vuid = VUID_OFFSET;
31 static int num_validated_vuids;
33 enum server_allocated_state { SERVER_ALLOCATED_REQUIRED_YES,
34 SERVER_ALLOCATED_REQUIRED_NO,
35 SERVER_ALLOCATED_REQUIRED_ANY};
37 static user_struct *get_valid_user_struct_internal(uint16 vuid,
38 enum server_allocated_state server_allocated)
40 user_struct *usp;
41 int count=0;
43 if (vuid == UID_FIELD_INVALID)
44 return NULL;
46 for (usp=validated_users;usp;usp=usp->next,count++) {
47 if (vuid == usp->vuid) {
48 switch (server_allocated) {
49 case SERVER_ALLOCATED_REQUIRED_YES:
50 if (usp->server_info == NULL) {
51 continue;
53 break;
54 case SERVER_ALLOCATED_REQUIRED_NO:
55 if (usp->server_info != NULL) {
56 continue;
58 case SERVER_ALLOCATED_REQUIRED_ANY:
59 break;
61 if (count > 10) {
62 DLIST_PROMOTE(validated_users, usp);
64 return usp;
68 return NULL;
71 /****************************************************************************
72 Check if a uid has been validated, and return an pointer to the user_struct
73 if it has. NULL if not. vuid is biased by an offset. This allows us to
74 tell random client vuid's (normally zero) from valid vuids.
75 ****************************************************************************/
77 user_struct *get_valid_user_struct(uint16 vuid)
79 return get_valid_user_struct_internal(vuid,
80 SERVER_ALLOCATED_REQUIRED_YES);
83 bool is_partial_auth_vuid(uint16 vuid)
85 if (vuid == UID_FIELD_INVALID) {
86 return False;
88 return get_valid_user_struct_internal(vuid,
89 SERVER_ALLOCATED_REQUIRED_NO) ? True : False;
92 /****************************************************************************
93 Get the user struct of a partial NTLMSSP login
94 ****************************************************************************/
96 user_struct *get_partial_auth_user_struct(uint16 vuid)
98 return get_valid_user_struct_internal(vuid,
99 SERVER_ALLOCATED_REQUIRED_NO);
102 /****************************************************************************
103 Invalidate a uid.
104 ****************************************************************************/
106 void invalidate_vuid(uint16 vuid)
108 user_struct *vuser = NULL;
110 if (vuid == UID_FIELD_INVALID) {
111 return;
114 vuser = get_valid_user_struct_internal(vuid,
115 SERVER_ALLOCATED_REQUIRED_ANY);
116 if (vuser == NULL) {
117 return;
120 session_yield(vuser);
122 data_blob_free(&vuser->session_key);
124 DLIST_REMOVE(validated_users, vuser);
126 /* clear the vuid from the 'cache' on each connection, and
127 from the vuid 'owner' of connections */
128 conn_clear_vuid_cache(vuid);
130 TALLOC_FREE(vuser);
131 num_validated_vuids--;
134 /****************************************************************************
135 Invalidate all vuid entries for this process.
136 ****************************************************************************/
138 void invalidate_all_vuids(void)
140 user_struct *usp, *next=NULL;
142 for (usp=validated_users;usp;usp=next) {
143 next = usp->next;
144 invalidate_vuid(usp->vuid);
148 /****************************************************
149 Create a new partial auth user struct.
150 *****************************************************/
152 int register_initial_vuid(void)
154 user_struct *vuser;
156 /* Paranoia check. */
157 if(lp_security() == SEC_SHARE) {
158 smb_panic("register_initial_vuid: "
159 "Tried to register uid in security=share");
162 /* Limit allowed vuids to 16bits - VUID_OFFSET. */
163 if (num_validated_vuids >= 0xFFFF-VUID_OFFSET) {
164 return UID_FIELD_INVALID;
167 if((vuser = talloc_zero(NULL, user_struct)) == NULL) {
168 DEBUG(0,("register_initial_vuid: "
169 "Failed to talloc users struct!\n"));
170 return UID_FIELD_INVALID;
173 /* Allocate a free vuid. Yes this is a linear search... */
174 while( get_valid_user_struct_internal(next_vuid,
175 SERVER_ALLOCATED_REQUIRED_ANY) != NULL ) {
176 next_vuid++;
177 /* Check for vuid wrap. */
178 if (next_vuid == UID_FIELD_INVALID) {
179 next_vuid = VUID_OFFSET;
183 DEBUG(10,("register_initial_vuid: allocated vuid = %u\n",
184 (unsigned int)next_vuid ));
186 vuser->vuid = next_vuid;
189 * This happens in an unfinished NTLMSSP session setup. We
190 * need to allocate a vuid between the first and second calls
191 * to NTLMSSP.
193 next_vuid++;
194 num_validated_vuids++;
196 DLIST_ADD(validated_users, vuser);
197 return vuser->vuid;
201 * register that a valid login has been performed, establish 'session'.
202 * @param server_info The token returned from the authentication process.
203 * (now 'owned' by register_existing_vuid)
205 * @param session_key The User session key for the login session (now also
206 * 'owned' by register_existing_vuid)
208 * @param respose_blob The NT challenge-response, if available. (May be
209 * freed after this call)
211 * @param smb_name The untranslated name of the user
213 * @return Newly allocated vuid, biased by an offset. (This allows us to
214 * tell random client vuid's (normally zero) from valid vuids.)
218 int register_existing_vuid(uint16 vuid,
219 auth_serversupplied_info *server_info,
220 DATA_BLOB session_key,
221 DATA_BLOB response_blob,
222 const char *smb_name)
224 user_struct *vuser = get_partial_auth_user_struct(vuid);
225 if (!vuser) {
226 goto fail;
229 /* Use this to keep tabs on all our info from the authentication */
230 vuser->server_info = server_info;
232 /* Ensure that the server_info will disappear with
233 * the vuser it is now attached to */
235 talloc_steal(vuser, vuser->server_info);
237 /* the next functions should be done by a SID mapping system (SMS) as
238 * the new real sam db won't have reference to unix uids or gids
241 vuser->uid = server_info->uid;
242 vuser->gid = server_info->gid;
244 vuser->n_groups = server_info->n_groups;
245 if (vuser->n_groups) {
246 if (!(vuser->groups = (gid_t *)talloc_memdup(vuser,
247 server_info->groups,
248 sizeof(gid_t)*vuser->n_groups))) {
249 DEBUG(0,("register_existing_vuid: "
250 "failed to talloc_memdup vuser->groups\n"));
251 goto fail;
255 vuser->guest = server_info->guest;
256 fstrcpy(vuser->user.unix_name, server_info->unix_name);
258 /* This is a potentially untrusted username */
259 alpha_strcpy(vuser->user.smb_name, smb_name, ". _-$",
260 sizeof(vuser->user.smb_name));
262 fstrcpy(vuser->user.domain, pdb_get_domain(server_info->sam_account));
263 fstrcpy(vuser->user.full_name,
264 pdb_get_fullname(server_info->sam_account));
267 /* Keep the homedir handy */
268 const char *homedir =
269 pdb_get_homedir(server_info->sam_account);
270 const char *logon_script =
271 pdb_get_logon_script(server_info->sam_account);
273 if (!IS_SAM_DEFAULT(server_info->sam_account,
274 PDB_UNIXHOMEDIR)) {
275 const char *unix_homedir =
276 pdb_get_unix_homedir(server_info->sam_account);
277 if (unix_homedir) {
278 vuser->unix_homedir = unix_homedir;
280 } else {
281 struct passwd *passwd =
282 getpwnam_alloc(vuser, vuser->user.unix_name);
283 if (passwd) {
284 vuser->unix_homedir = passwd->pw_dir;
285 /* Ensure that the unix_homedir now
286 * belongs to vuser, so it goes away
287 * with it, not with passwd below: */
288 talloc_steal(vuser, vuser->unix_homedir);
289 TALLOC_FREE(passwd);
293 if (homedir) {
294 vuser->homedir = homedir;
296 if (logon_script) {
297 vuser->logon_script = logon_script;
300 vuser->session_key = session_key;
302 DEBUG(10,("register_existing_vuid: (%u,%u) %s %s %s guest=%d\n",
303 (unsigned int)vuser->uid,
304 (unsigned int)vuser->gid,
305 vuser->user.unix_name, vuser->user.smb_name,
306 vuser->user.domain, vuser->guest ));
308 DEBUG(3, ("register_existing_vuid: User name: %s\t"
309 "Real name: %s\n", vuser->user.unix_name,
310 vuser->user.full_name));
312 if (server_info->ptok) {
313 vuser->nt_user_token = dup_nt_token(vuser, server_info->ptok);
314 } else {
315 DEBUG(1, ("register_existing_vuid: server_info does not "
316 "contain a user_token - cannot continue\n"));
317 goto fail;
320 DEBUG(3,("register_existing_vuid: UNIX uid %d is UNIX user %s, "
321 "and will be vuid %u\n",
322 (int)vuser->uid,vuser->user.unix_name, vuser->vuid));
324 next_vuid++;
325 num_validated_vuids++;
327 if (!session_claim(vuser)) {
328 DEBUG(1, ("register_existing_vuid: Failed to claim session "
329 "for vuid=%d\n",
330 vuser->vuid));
331 goto fail;
334 /* Register a home dir service for this user if
335 (a) This is not a guest connection,
336 (b) we have a home directory defined
337 (c) there s not an existing static share by that name
338 If a share exists by this name (autoloaded or not) reuse it . */
340 vuser->homes_snum = -1;
341 if ( (!vuser->guest) && vuser->unix_homedir && *(vuser->unix_homedir)) {
342 int servicenumber = lp_servicenumber(vuser->user.unix_name);
343 if ( servicenumber == -1 ) {
344 DEBUG(3, ("Adding homes service for user '%s' using "
345 "home directory: '%s'\n",
346 vuser->user.unix_name, vuser->unix_homedir));
347 vuser->homes_snum =
348 add_home_service(vuser->user.unix_name,
349 vuser->user.unix_name,
350 vuser->unix_homedir);
351 } else {
352 DEBUG(3, ("Using static (or previously created) "
353 "service for user '%s'; path = '%s'\n",
354 vuser->user.unix_name,
355 lp_pathname(servicenumber) ));
356 vuser->homes_snum = servicenumber;
360 if (srv_is_signing_negotiated() && !vuser->guest &&
361 !srv_signing_started()) {
362 /* Try and turn on server signing on the first non-guest
363 * sessionsetup. */
364 srv_set_signing(vuser->session_key, response_blob);
367 /* fill in the current_user_info struct */
368 set_current_user_info( &vuser->user );
369 return vuser->vuid;
371 fail:
373 if (vuser) {
374 invalidate_vuid(vuid);
376 return UID_FIELD_INVALID;
379 /****************************************************************************
380 Add a name to the session users list.
381 ****************************************************************************/
383 void add_session_user(const char *user)
385 struct passwd *pw;
386 char *tmp;
388 pw = Get_Pwnam_alloc(talloc_tos(), user);
390 if (pw == NULL) {
391 return;
394 if (session_userlist == NULL) {
395 session_userlist = SMB_STRDUP(pw->pw_name);
396 goto done;
399 if (in_list(pw->pw_name,session_userlist,False) ) {
400 goto done;
403 if (strlen(session_userlist) > 128 * 1024) {
404 DEBUG(3,("add_session_user: session userlist already "
405 "too large.\n"));
406 goto done;
409 if (asprintf(&tmp, "%s %s", session_userlist, pw->pw_name) == -1) {
410 DEBUG(3, ("asprintf failed\n"));
411 goto done;
414 SAFE_FREE(session_userlist);
415 session_userlist = tmp;
416 done:
417 TALLOC_FREE(pw);
420 /****************************************************************************
421 In security=share mode we need to store the client workgroup, as that's
422 what Vista uses for the NTLMv2 calculation.
423 ****************************************************************************/
425 void add_session_workgroup(const char *workgroup)
427 if (session_workgroup) {
428 SAFE_FREE(session_workgroup);
430 session_workgroup = smb_xstrdup(workgroup);
433 /****************************************************************************
434 In security=share mode we need to return the client workgroup, as that's
435 what Vista uses for the NTLMv2 calculation.
436 ****************************************************************************/
438 const char *get_session_workgroup(void)
440 return session_workgroup;
443 /****************************************************************************
444 Check if a user is in a netgroup user list. If at first we don't succeed,
445 try lower case.
446 ****************************************************************************/
448 bool user_in_netgroup(const char *user, const char *ngname)
450 #ifdef HAVE_NETGROUP
451 static char *mydomain = NULL;
452 fstring lowercase_user;
454 if (mydomain == NULL)
455 yp_get_default_domain(&mydomain);
457 if(mydomain == NULL) {
458 DEBUG(5,("Unable to get default yp domain, "
459 "let's try without specifying it\n"));
462 DEBUG(5,("looking for user %s of domain %s in netgroup %s\n",
463 user, mydomain?mydomain:"(ANY)", ngname));
465 if (innetgr(ngname, NULL, user, mydomain)) {
466 DEBUG(5,("user_in_netgroup: Found\n"));
467 return (True);
468 } else {
471 * Ok, innetgr is case sensitive. Try once more with lowercase
472 * just in case. Attempt to fix #703. JRA.
475 fstrcpy(lowercase_user, user);
476 strlower_m(lowercase_user);
478 DEBUG(5,("looking for user %s of domain %s in netgroup %s\n",
479 lowercase_user, mydomain?mydomain:"(ANY)", ngname));
481 if (innetgr(ngname, NULL, lowercase_user, mydomain)) {
482 DEBUG(5,("user_in_netgroup: Found\n"));
483 return (True);
486 #endif /* HAVE_NETGROUP */
487 return False;
490 /****************************************************************************
491 Check if a user is in a user list - can check combinations of UNIX
492 and netgroup lists.
493 ****************************************************************************/
495 bool user_in_list(const char *user,const char **list)
497 if (!list || !*list)
498 return False;
500 DEBUG(10,("user_in_list: checking user %s in list\n", user));
502 while (*list) {
504 DEBUG(10,("user_in_list: checking user |%s| against |%s|\n",
505 user, *list));
508 * Check raw username.
510 if (strequal(user, *list))
511 return(True);
514 * Now check to see if any combination
515 * of UNIX and netgroups has been specified.
518 if(**list == '@') {
520 * Old behaviour. Check netgroup list
521 * followed by UNIX list.
523 if(user_in_netgroup(user, *list +1))
524 return True;
525 if(user_in_group(user, *list +1))
526 return True;
527 } else if (**list == '+') {
529 if((*(*list +1)) == '&') {
531 * Search UNIX list followed by netgroup.
533 if(user_in_group(user, *list +2))
534 return True;
535 if(user_in_netgroup(user, *list +2))
536 return True;
538 } else {
541 * Just search UNIX list.
544 if(user_in_group(user, *list +1))
545 return True;
548 } else if (**list == '&') {
550 if(*(*list +1) == '+') {
552 * Search netgroup list followed by UNIX list.
554 if(user_in_netgroup(user, *list +2))
555 return True;
556 if(user_in_group(user, *list +2))
557 return True;
558 } else {
560 * Just search netgroup list.
562 if(user_in_netgroup(user, *list +1))
563 return True;
567 list++;
569 return(False);
572 /****************************************************************************
573 Check if a username is valid.
574 ****************************************************************************/
576 static bool user_ok(const char *user, int snum)
578 char **valid, **invalid;
579 bool ret;
581 valid = invalid = NULL;
582 ret = True;
584 if (lp_invalid_users(snum)) {
585 str_list_copy(talloc_tos(), &invalid, lp_invalid_users(snum));
586 if (invalid &&
587 str_list_substitute(invalid, "%S", lp_servicename(snum))) {
589 /* This is used in sec=share only, so no current user
590 * around to pass to str_list_sub_basic() */
592 if ( invalid && str_list_sub_basic(invalid, "", "") ) {
593 ret = !user_in_list(user,
594 (const char **)invalid);
598 TALLOC_FREE(invalid);
600 if (ret && lp_valid_users(snum)) {
601 str_list_copy(talloc_tos(), &valid, lp_valid_users(snum));
602 if ( valid &&
603 str_list_substitute(valid, "%S", lp_servicename(snum)) ) {
605 /* This is used in sec=share only, so no current user
606 * around to pass to str_list_sub_basic() */
608 if ( valid && str_list_sub_basic(valid, "", "") ) {
609 ret = user_in_list(user, (const char **)valid);
613 TALLOC_FREE(valid);
615 if (ret && lp_onlyuser(snum)) {
616 char **user_list = str_list_make(
617 talloc_tos(), lp_username(snum), NULL);
618 if (user_list &&
619 str_list_substitute(user_list, "%S",
620 lp_servicename(snum))) {
621 ret = user_in_list(user, (const char **)user_list);
623 TALLOC_FREE(user_list);
626 return(ret);
629 /****************************************************************************
630 Validate a group username entry. Return the username or NULL.
631 ****************************************************************************/
633 static char *validate_group(char *group, DATA_BLOB password,int snum)
635 #ifdef HAVE_NETGROUP
637 char *host, *user, *domain;
638 setnetgrent(group);
639 while (getnetgrent(&host, &user, &domain)) {
640 if (user) {
641 if (user_ok(user, snum) &&
642 password_ok(user,password)) {
643 endnetgrent();
644 return(user);
648 endnetgrent();
650 #endif
652 #ifdef HAVE_GETGRENT
654 struct group *gptr;
655 setgrent();
656 while ((gptr = (struct group *)getgrent())) {
657 if (strequal(gptr->gr_name,group))
658 break;
662 * As user_ok can recurse doing a getgrent(), we must
663 * copy the member list onto the heap before
664 * use. Bug pointed out by leon@eatworms.swmed.edu.
667 if (gptr) {
668 char *member_list = NULL;
669 size_t list_len = 0;
670 char *member;
671 int i;
673 for(i = 0; gptr->gr_mem && gptr->gr_mem[i]; i++) {
674 list_len += strlen(gptr->gr_mem[i])+1;
676 list_len++;
678 member_list = (char *)SMB_MALLOC(list_len);
679 if (!member_list) {
680 endgrent();
681 return NULL;
684 *member_list = '\0';
685 member = member_list;
687 for(i = 0; gptr->gr_mem && gptr->gr_mem[i]; i++) {
688 size_t member_len = strlen(gptr->gr_mem[i])+1;
690 DEBUG(10,("validate_group: = gr_mem = "
691 "%s\n", gptr->gr_mem[i]));
693 safe_strcpy(member, gptr->gr_mem[i],
694 list_len - (member-member_list));
695 member += member_len;
698 endgrent();
700 member = member_list;
701 while (*member) {
702 if (user_ok(member,snum) &&
703 password_ok(member,password)) {
704 char *name = talloc_strdup(talloc_tos(),
705 member);
706 SAFE_FREE(member_list);
707 return name;
710 DEBUG(10,("validate_group = member = %s\n",
711 member));
713 member += strlen(member) + 1;
716 SAFE_FREE(member_list);
717 } else {
718 endgrent();
719 return NULL;
722 #endif
723 return(NULL);
726 /****************************************************************************
727 Check for authority to login to a service with a given username/password.
728 Note this is *NOT* used when logging on using sessionsetup_and_X.
729 ****************************************************************************/
731 bool authorise_login(int snum, fstring user, DATA_BLOB password,
732 bool *guest)
734 bool ok = False;
736 #ifdef DEBUG_PASSWORD
737 DEBUG(100,("authorise_login: checking authorisation on "
738 "user=%s pass=%s\n", user,password.data));
739 #endif
741 *guest = False;
743 /* there are several possibilities:
744 1) login as the given user with given password
745 2) login as a previously registered username with the given
746 password
747 3) login as a session list username with the given password
748 4) login as a previously validated user/password pair
749 5) login as the "user =" user with given password
750 6) login as the "user =" user with no password
751 (guest connection)
752 7) login as guest user with no password
754 if the service is guest_only then steps 1 to 5 are skipped
757 /* now check the list of session users */
758 if (!ok) {
759 char *auser;
760 char *user_list = NULL;
761 char *saveptr;
763 if ( session_userlist )
764 user_list = SMB_STRDUP(session_userlist);
765 else
766 user_list = SMB_STRDUP("");
768 if (!user_list)
769 return(False);
771 for (auser = strtok_r(user_list, LIST_SEP, &saveptr);
772 !ok && auser;
773 auser = strtok_r(NULL, LIST_SEP, &saveptr)) {
774 fstring user2;
775 fstrcpy(user2,auser);
776 if (!user_ok(user2,snum))
777 continue;
779 if (password_ok(user2,password)) {
780 ok = True;
781 fstrcpy(user,user2);
782 DEBUG(3,("authorise_login: ACCEPTED: session "
783 "list username (%s) and given "
784 "password ok\n", user));
788 SAFE_FREE(user_list);
791 /* check the user= fields and the given password */
792 if (!ok && lp_username(snum)) {
793 TALLOC_CTX *ctx = talloc_tos();
794 char *auser;
795 char *user_list = talloc_strdup(ctx, lp_username(snum));
796 char *saveptr;
798 if (!user_list) {
799 goto check_guest;
802 user_list = talloc_string_sub(ctx,
803 user_list,
804 "%S",
805 lp_servicename(snum));
807 if (!user_list) {
808 goto check_guest;
811 for (auser = strtok_r(user_list, LIST_SEP, &saveptr);
812 auser && !ok;
813 auser = strtok_r(NULL, LIST_SEP, &saveptr)) {
814 if (*auser == '@') {
815 auser = validate_group(auser+1,password,snum);
816 if (auser) {
817 ok = True;
818 fstrcpy(user,auser);
819 DEBUG(3,("authorise_login: ACCEPTED: "
820 "group username and given "
821 "password ok (%s)\n", user));
823 } else {
824 fstring user2;
825 fstrcpy(user2,auser);
826 if (user_ok(user2,snum) &&
827 password_ok(user2,password)) {
828 ok = True;
829 fstrcpy(user,user2);
830 DEBUG(3,("authorise_login: ACCEPTED: "
831 "user list username and "
832 "given password ok (%s)\n",
833 user));
839 check_guest:
841 /* check for a normal guest connection */
842 if (!ok && GUEST_OK(snum)) {
843 struct passwd *guest_pw;
844 fstring guestname;
845 fstrcpy(guestname,lp_guestaccount());
846 guest_pw = Get_Pwnam_alloc(talloc_tos(), guestname);
847 if (guest_pw != NULL) {
848 fstrcpy(user,guestname);
849 ok = True;
850 DEBUG(3,("authorise_login: ACCEPTED: guest account "
851 "and guest ok (%s)\n", user));
852 } else {
853 DEBUG(0,("authorise_login: Invalid guest account "
854 "%s??\n",guestname));
856 TALLOC_FREE(guest_pw);
857 *guest = True;
860 if (ok && !user_ok(user, snum)) {
861 DEBUG(0,("authorise_login: rejected invalid user %s\n",user));
862 ok = False;
865 return(ok);