diff options
author | Günther Deschner <gd@samba.org> | 2006-02-07 17:55:17 +0000 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2006-02-07 17:55:17 +0000 |
commit | 936fdec183e9f9b4d3890f95e4e903243ba731ef (patch) | |
tree | eb3d11c147c064d0dad349e82d2a2eb4e7e390ba /source/nsswitch/winbindd_pam.c | |
parent | d72b91e691bc45a2c4cc5bdd42014144e3064de9 (diff) | |
download | samba-936fdec183e9f9b4d3890f95e4e903243ba731ef.tar.gz samba-936fdec183e9f9b4d3890f95e4e903243ba731ef.tar.xz samba-936fdec183e9f9b4d3890f95e4e903243ba731ef.zip |
r13377: Fix from Volker: Make offline authentication work with NT4 as well
(handle no ACB_NORMAL flag and save name2sid as early as possible).
Guenther
Diffstat (limited to 'source/nsswitch/winbindd_pam.c')
-rw-r--r-- | source/nsswitch/winbindd_pam.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/source/nsswitch/winbindd_pam.c b/source/nsswitch/winbindd_pam.c index fc8d0885fc9..264134570a7 100644 --- a/source/nsswitch/winbindd_pam.c +++ b/source/nsswitch/winbindd_pam.c @@ -734,13 +734,17 @@ NTSTATUS winbindd_dual_pam_auth_cached(struct winbindd_domain *domain, if (my_info3->acct_flags & ACB_DOMTRUST) { return NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT; } - +#if 0 + /* The info3 acct_flags in NT4's samlogon reply don't have + * ACB_NORMAL set. Disable this paranoia check until we + * can research this more - Guenther */ + if (!(my_info3->acct_flags & ACB_NORMAL)) { DEBUG(10,("winbindd_dual_pam_auth_cached: whats wrong with that one?: 0x%08x\n", my_info3->acct_flags)); return NT_STATUS_LOGON_FAILURE; } - +#endif kickoff_time = nt_time_to_unix(&my_info3->kickoff_time); if (kickoff_time != 0 && time(NULL) > kickoff_time) { return NT_STATUS_ACCOUNT_EXPIRED; @@ -1116,9 +1120,15 @@ process_result: if (NT_STATUS_IS_OK(result)) { + DOM_SID user_sid; + netsamlogon_cache_store(name_user, info3); wcache_invalidate_samlogon(find_domain_from_name(name_domain), info3); + /* save name_to_sid info as early as possible */ + sid_compose(&user_sid, &info3->dom_sid.sid, info3->user_rid); + cache_name2sid(domain, name_domain, name_user, SID_NAME_USER, &user_sid); + /* Check if the user is in the right group */ if (!NT_STATUS_IS_OK(result = check_info3_in_group(state->mem_ctx, info3, |