First part of bugfix for #5933
[Samba.git] / source / smbd / password.c
blob54f30687734c54348a4d98d4ec706b8c7027162e
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 if (vuser->auth_ntlmssp_state) {
123 auth_ntlmssp_end(&vuser->auth_ntlmssp_state);
126 DLIST_REMOVE(validated_users, vuser);
128 /* clear the vuid from the 'cache' on each connection, and
129 from the vuid 'owner' of connections */
130 conn_clear_vuid_caches(vuid);
132 TALLOC_FREE(vuser);
133 num_validated_vuids--;
136 /****************************************************************************
137 Invalidate all vuid entries for this process.
138 ****************************************************************************/
140 void invalidate_all_vuids(void)
142 user_struct *usp, *next=NULL;
144 for (usp=validated_users;usp;usp=next) {
145 next = usp->next;
146 invalidate_vuid(usp->vuid);
150 /****************************************************
151 Create a new partial auth user struct.
152 *****************************************************/
154 int register_initial_vuid(void)
156 user_struct *vuser;
158 /* Paranoia check. */
159 if(lp_security() == SEC_SHARE) {
160 smb_panic("register_initial_vuid: "
161 "Tried to register uid in security=share");
164 /* Limit allowed vuids to 16bits - VUID_OFFSET. */
165 if (num_validated_vuids >= 0xFFFF-VUID_OFFSET) {
166 return UID_FIELD_INVALID;
169 if((vuser = talloc_zero(NULL, user_struct)) == NULL) {
170 DEBUG(0,("register_initial_vuid: "
171 "Failed to talloc users struct!\n"));
172 return UID_FIELD_INVALID;
175 /* Allocate a free vuid. Yes this is a linear search... */
176 while( get_valid_user_struct_internal(next_vuid,
177 SERVER_ALLOCATED_REQUIRED_ANY) != NULL ) {
178 next_vuid++;
179 /* Check for vuid wrap. */
180 if (next_vuid == UID_FIELD_INVALID) {
181 next_vuid = VUID_OFFSET;
185 DEBUG(10,("register_initial_vuid: allocated vuid = %u\n",
186 (unsigned int)next_vuid ));
188 vuser->vuid = next_vuid;
191 * This happens in an unfinished NTLMSSP session setup. We
192 * need to allocate a vuid between the first and second calls
193 * to NTLMSSP.
195 next_vuid++;
196 num_validated_vuids++;
198 DLIST_ADD(validated_users, vuser);
199 return vuser->vuid;
202 static int register_homes_share(const char *username)
204 int result;
205 struct passwd *pwd;
207 result = lp_servicenumber(username);
208 if (result != -1) {
209 DEBUG(3, ("Using static (or previously created) service for "
210 "user '%s'; path = '%s'\n", username,
211 lp_pathname(result)));
212 return result;
215 pwd = getpwnam_alloc(talloc_tos(), username);
217 if ((pwd == NULL) || (pwd->pw_dir[0] == '\0')) {
218 DEBUG(3, ("No home directory defined for user '%s'\n",
219 username));
220 TALLOC_FREE(pwd);
221 return -1;
224 DEBUG(3, ("Adding homes service for user '%s' using home directory: "
225 "'%s'\n", username, pwd->pw_dir));
227 result = add_home_service(username, username, pwd->pw_dir);
229 TALLOC_FREE(pwd);
230 return result;
234 * register that a valid login has been performed, establish 'session'.
235 * @param server_info The token returned from the authentication process.
236 * (now 'owned' by register_existing_vuid)
238 * @param session_key The User session key for the login session (now also
239 * 'owned' by register_existing_vuid)
241 * @param respose_blob The NT challenge-response, if available. (May be
242 * freed after this call)
244 * @param smb_name The untranslated name of the user
246 * @return Newly allocated vuid, biased by an offset. (This allows us to
247 * tell random client vuid's (normally zero) from valid vuids.)
251 int register_existing_vuid(uint16 vuid,
252 auth_serversupplied_info *server_info,
253 DATA_BLOB response_blob,
254 const char *smb_name)
256 fstring tmp;
257 user_struct *vuser;
259 vuser = get_partial_auth_user_struct(vuid);
260 if (!vuser) {
261 goto fail;
264 /* Use this to keep tabs on all our info from the authentication */
265 vuser->server_info = talloc_move(vuser, &server_info);
267 /* This is a potentially untrusted username */
268 alpha_strcpy(tmp, smb_name, ". _-$", sizeof(tmp));
270 vuser->server_info->sanitized_username = talloc_strdup(
271 vuser->server_info, tmp);
273 DEBUG(10,("register_existing_vuid: (%u,%u) %s %s %s guest=%d\n",
274 (unsigned int)vuser->server_info->utok.uid,
275 (unsigned int)vuser->server_info->utok.gid,
276 vuser->server_info->unix_name,
277 vuser->server_info->sanitized_username,
278 pdb_get_domain(vuser->server_info->sam_account),
279 vuser->server_info->guest ));
281 DEBUG(3, ("register_existing_vuid: User name: %s\t"
282 "Real name: %s\n", vuser->server_info->unix_name,
283 pdb_get_fullname(vuser->server_info->sam_account)));
285 if (!vuser->server_info->ptok) {
286 DEBUG(1, ("register_existing_vuid: server_info does not "
287 "contain a user_token - cannot continue\n"));
288 goto fail;
291 DEBUG(3,("register_existing_vuid: UNIX uid %d is UNIX user %s, "
292 "and will be vuid %u\n", (int)vuser->server_info->utok.uid,
293 vuser->server_info->unix_name, vuser->vuid));
295 if (!session_claim(vuser)) {
296 DEBUG(1, ("register_existing_vuid: Failed to claim session "
297 "for vuid=%d\n",
298 vuser->vuid));
299 goto fail;
302 /* Register a home dir service for this user if
303 (a) This is not a guest connection,
304 (b) we have a home directory defined
305 (c) there s not an existing static share by that name
306 If a share exists by this name (autoloaded or not) reuse it . */
308 vuser->homes_snum = -1;
310 if (!vuser->server_info->guest) {
311 vuser->homes_snum = register_homes_share(
312 vuser->server_info->unix_name);
315 if (srv_is_signing_negotiated() && !vuser->server_info->guest &&
316 !srv_signing_started()) {
317 /* Try and turn on server signing on the first non-guest
318 * sessionsetup. */
319 srv_set_signing(vuser->server_info->user_session_key, response_blob);
322 /* fill in the current_user_info struct */
323 set_current_user_info(
324 vuser->server_info->sanitized_username,
325 vuser->server_info->unix_name,
326 pdb_get_fullname(vuser->server_info->sam_account),
327 pdb_get_domain(vuser->server_info->sam_account));
329 return vuser->vuid;
331 fail:
333 if (vuser) {
334 invalidate_vuid(vuid);
336 return UID_FIELD_INVALID;
339 /****************************************************************************
340 Add a name to the session users list.
341 ****************************************************************************/
343 void add_session_user(const char *user)
345 struct passwd *pw;
346 char *tmp;
348 pw = Get_Pwnam_alloc(talloc_tos(), user);
350 if (pw == NULL) {
351 return;
354 if (session_userlist == NULL) {
355 session_userlist = SMB_STRDUP(pw->pw_name);
356 goto done;
359 if (in_list(pw->pw_name,session_userlist,False) ) {
360 goto done;
363 if (strlen(session_userlist) > 128 * 1024) {
364 DEBUG(3,("add_session_user: session userlist already "
365 "too large.\n"));
366 goto done;
369 if (asprintf(&tmp, "%s %s", session_userlist, pw->pw_name) == -1) {
370 DEBUG(3, ("asprintf failed\n"));
371 goto done;
374 SAFE_FREE(session_userlist);
375 session_userlist = tmp;
376 done:
377 TALLOC_FREE(pw);
380 /****************************************************************************
381 In security=share mode we need to store the client workgroup, as that's
382 what Vista uses for the NTLMv2 calculation.
383 ****************************************************************************/
385 void add_session_workgroup(const char *workgroup)
387 if (session_workgroup) {
388 SAFE_FREE(session_workgroup);
390 session_workgroup = smb_xstrdup(workgroup);
393 /****************************************************************************
394 In security=share mode we need to return the client workgroup, as that's
395 what Vista uses for the NTLMv2 calculation.
396 ****************************************************************************/
398 const char *get_session_workgroup(void)
400 return session_workgroup;
403 /****************************************************************************
404 Check if a user is in a netgroup user list. If at first we don't succeed,
405 try lower case.
406 ****************************************************************************/
408 bool user_in_netgroup(const char *user, const char *ngname)
410 #ifdef HAVE_NETGROUP
411 static char *mydomain = NULL;
412 fstring lowercase_user;
414 if (mydomain == NULL)
415 yp_get_default_domain(&mydomain);
417 if(mydomain == NULL) {
418 DEBUG(5,("Unable to get default yp domain, "
419 "let's try without specifying it\n"));
422 DEBUG(5,("looking for user %s of domain %s in netgroup %s\n",
423 user, mydomain?mydomain:"(ANY)", ngname));
425 if (innetgr(ngname, NULL, user, mydomain)) {
426 DEBUG(5,("user_in_netgroup: Found\n"));
427 return (True);
428 } else {
431 * Ok, innetgr is case sensitive. Try once more with lowercase
432 * just in case. Attempt to fix #703. JRA.
435 fstrcpy(lowercase_user, user);
436 strlower_m(lowercase_user);
438 DEBUG(5,("looking for user %s of domain %s in netgroup %s\n",
439 lowercase_user, mydomain?mydomain:"(ANY)", ngname));
441 if (innetgr(ngname, NULL, lowercase_user, mydomain)) {
442 DEBUG(5,("user_in_netgroup: Found\n"));
443 return (True);
446 #endif /* HAVE_NETGROUP */
447 return False;
450 /****************************************************************************
451 Check if a user is in a user list - can check combinations of UNIX
452 and netgroup lists.
453 ****************************************************************************/
455 bool user_in_list(const char *user,const char **list)
457 if (!list || !*list)
458 return False;
460 DEBUG(10,("user_in_list: checking user %s in list\n", user));
462 while (*list) {
464 DEBUG(10,("user_in_list: checking user |%s| against |%s|\n",
465 user, *list));
468 * Check raw username.
470 if (strequal(user, *list))
471 return(True);
474 * Now check to see if any combination
475 * of UNIX and netgroups has been specified.
478 if(**list == '@') {
480 * Old behaviour. Check netgroup list
481 * followed by UNIX list.
483 if(user_in_netgroup(user, *list +1))
484 return True;
485 if(user_in_group(user, *list +1))
486 return True;
487 } else if (**list == '+') {
489 if((*(*list +1)) == '&') {
491 * Search UNIX list followed by netgroup.
493 if(user_in_group(user, *list +2))
494 return True;
495 if(user_in_netgroup(user, *list +2))
496 return True;
498 } else {
501 * Just search UNIX list.
504 if(user_in_group(user, *list +1))
505 return True;
508 } else if (**list == '&') {
510 if(*(*list +1) == '+') {
512 * Search netgroup list followed by UNIX list.
514 if(user_in_netgroup(user, *list +2))
515 return True;
516 if(user_in_group(user, *list +2))
517 return True;
518 } else {
520 * Just search netgroup list.
522 if(user_in_netgroup(user, *list +1))
523 return True;
527 list++;
529 return(False);
532 /****************************************************************************
533 Check if a username is valid.
534 ****************************************************************************/
536 static bool user_ok(const char *user, int snum)
538 char **valid, **invalid;
539 bool ret;
541 valid = invalid = NULL;
542 ret = True;
544 if (lp_invalid_users(snum)) {
545 str_list_copy(talloc_tos(), &invalid, lp_invalid_users(snum));
546 if (invalid &&
547 str_list_substitute(invalid, "%S", lp_servicename(snum))) {
549 /* This is used in sec=share only, so no current user
550 * around to pass to str_list_sub_basic() */
552 if ( invalid && str_list_sub_basic(invalid, "", "") ) {
553 ret = !user_in_list(user,
554 (const char **)invalid);
558 TALLOC_FREE(invalid);
560 if (ret && lp_valid_users(snum)) {
561 str_list_copy(talloc_tos(), &valid, lp_valid_users(snum));
562 if ( valid &&
563 str_list_substitute(valid, "%S", lp_servicename(snum)) ) {
565 /* This is used in sec=share only, so no current user
566 * around to pass to str_list_sub_basic() */
568 if ( valid && str_list_sub_basic(valid, "", "") ) {
569 ret = user_in_list(user, (const char **)valid);
573 TALLOC_FREE(valid);
575 if (ret && lp_onlyuser(snum)) {
576 char **user_list = str_list_make(
577 talloc_tos(), lp_username(snum), NULL);
578 if (user_list &&
579 str_list_substitute(user_list, "%S",
580 lp_servicename(snum))) {
581 ret = user_in_list(user, (const char **)user_list);
583 TALLOC_FREE(user_list);
586 return(ret);
589 /****************************************************************************
590 Validate a group username entry. Return the username or NULL.
591 ****************************************************************************/
593 static char *validate_group(char *group, DATA_BLOB password,int snum)
595 #ifdef HAVE_NETGROUP
597 char *host, *user, *domain;
598 setnetgrent(group);
599 while (getnetgrent(&host, &user, &domain)) {
600 if (user) {
601 if (user_ok(user, snum) &&
602 password_ok(user,password)) {
603 endnetgrent();
604 return(user);
608 endnetgrent();
610 #endif
612 #ifdef HAVE_GETGRENT
614 struct group *gptr;
615 setgrent();
616 while ((gptr = (struct group *)getgrent())) {
617 if (strequal(gptr->gr_name,group))
618 break;
622 * As user_ok can recurse doing a getgrent(), we must
623 * copy the member list onto the heap before
624 * use. Bug pointed out by leon@eatworms.swmed.edu.
627 if (gptr) {
628 char *member_list = NULL;
629 size_t list_len = 0;
630 char *member;
631 int i;
633 for(i = 0; gptr->gr_mem && gptr->gr_mem[i]; i++) {
634 list_len += strlen(gptr->gr_mem[i])+1;
636 list_len++;
638 member_list = (char *)SMB_MALLOC(list_len);
639 if (!member_list) {
640 endgrent();
641 return NULL;
644 *member_list = '\0';
645 member = member_list;
647 for(i = 0; gptr->gr_mem && gptr->gr_mem[i]; i++) {
648 size_t member_len = strlen(gptr->gr_mem[i])+1;
650 DEBUG(10,("validate_group: = gr_mem = "
651 "%s\n", gptr->gr_mem[i]));
653 safe_strcpy(member, gptr->gr_mem[i],
654 list_len - (member-member_list));
655 member += member_len;
658 endgrent();
660 member = member_list;
661 while (*member) {
662 if (user_ok(member,snum) &&
663 password_ok(member,password)) {
664 char *name = talloc_strdup(talloc_tos(),
665 member);
666 SAFE_FREE(member_list);
667 return name;
670 DEBUG(10,("validate_group = member = %s\n",
671 member));
673 member += strlen(member) + 1;
676 SAFE_FREE(member_list);
677 } else {
678 endgrent();
679 return NULL;
682 #endif
683 return(NULL);
686 /****************************************************************************
687 Check for authority to login to a service with a given username/password.
688 Note this is *NOT* used when logging on using sessionsetup_and_X.
689 ****************************************************************************/
691 bool authorise_login(int snum, fstring user, DATA_BLOB password,
692 bool *guest)
694 bool ok = False;
696 #ifdef DEBUG_PASSWORD
697 DEBUG(100,("authorise_login: checking authorisation on "
698 "user=%s pass=%s\n", user,password.data));
699 #endif
701 *guest = False;
703 /* there are several possibilities:
704 1) login as the given user with given password
705 2) login as a previously registered username with the given
706 password
707 3) login as a session list username with the given password
708 4) login as a previously validated user/password pair
709 5) login as the "user =" user with given password
710 6) login as the "user =" user with no password
711 (guest connection)
712 7) login as guest user with no password
714 if the service is guest_only then steps 1 to 5 are skipped
717 /* now check the list of session users */
718 if (!ok) {
719 char *auser;
720 char *user_list = NULL;
721 char *saveptr;
723 if ( session_userlist )
724 user_list = SMB_STRDUP(session_userlist);
725 else
726 user_list = SMB_STRDUP("");
728 if (!user_list)
729 return(False);
731 for (auser = strtok_r(user_list, LIST_SEP, &saveptr);
732 !ok && auser;
733 auser = strtok_r(NULL, LIST_SEP, &saveptr)) {
734 fstring user2;
735 fstrcpy(user2,auser);
736 if (!user_ok(user2,snum))
737 continue;
739 if (password_ok(user2,password)) {
740 ok = True;
741 fstrcpy(user,user2);
742 DEBUG(3,("authorise_login: ACCEPTED: session "
743 "list username (%s) and given "
744 "password ok\n", user));
748 SAFE_FREE(user_list);
751 /* check the user= fields and the given password */
752 if (!ok && lp_username(snum)) {
753 TALLOC_CTX *ctx = talloc_tos();
754 char *auser;
755 char *user_list = talloc_strdup(ctx, lp_username(snum));
756 char *saveptr;
758 if (!user_list) {
759 goto check_guest;
762 user_list = talloc_string_sub(ctx,
763 user_list,
764 "%S",
765 lp_servicename(snum));
767 if (!user_list) {
768 goto check_guest;
771 for (auser = strtok_r(user_list, LIST_SEP, &saveptr);
772 auser && !ok;
773 auser = strtok_r(NULL, LIST_SEP, &saveptr)) {
774 if (*auser == '@') {
775 auser = validate_group(auser+1,password,snum);
776 if (auser) {
777 ok = True;
778 fstrcpy(user,auser);
779 DEBUG(3,("authorise_login: ACCEPTED: "
780 "group username and given "
781 "password ok (%s)\n", user));
783 } else {
784 fstring user2;
785 fstrcpy(user2,auser);
786 if (user_ok(user2,snum) &&
787 password_ok(user2,password)) {
788 ok = True;
789 fstrcpy(user,user2);
790 DEBUG(3,("authorise_login: ACCEPTED: "
791 "user list username and "
792 "given password ok (%s)\n",
793 user));
799 check_guest:
801 /* check for a normal guest connection */
802 if (!ok && GUEST_OK(snum)) {
803 struct passwd *guest_pw;
804 fstring guestname;
805 fstrcpy(guestname,lp_guestaccount());
806 guest_pw = Get_Pwnam_alloc(talloc_tos(), guestname);
807 if (guest_pw != NULL) {
808 fstrcpy(user,guestname);
809 ok = True;
810 DEBUG(3,("authorise_login: ACCEPTED: guest account "
811 "and guest ok (%s)\n", user));
812 } else {
813 DEBUG(0,("authorise_login: Invalid guest account "
814 "%s??\n",guestname));
816 TALLOC_FREE(guest_pw);
817 *guest = True;
820 if (ok && !user_ok(user, snum)) {
821 DEBUG(0,("authorise_login: rejected invalid user %s\n",user));
822 ok = False;
825 return(ok);