2 Unix SMB/CIFS implementation.
4 Winbind daemon - pam auth funcions
6 Copyright (C) Andrew Tridgell 2000
7 Copyright (C) Tim Potter 2001
8 Copyright (C) Andrew Bartlett 2001-2002
9 Copyright (C) Guenther Deschner 2005
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "../libcli/auth/libcli_auth.h"
28 #include "../librpc/gen_ndr/ndr_samr_c.h"
29 #include "rpc_client/cli_pipe.h"
30 #include "rpc_client/cli_samr.h"
31 #include "../librpc/gen_ndr/ndr_netlogon.h"
32 #include "rpc_client/cli_netlogon.h"
34 #include "../lib/crypto/arcfour.h"
35 #include "../libcli/security/security.h"
37 #include "../librpc/gen_ndr/krb5pac.h"
38 #include "passdb/machine_sid.h"
40 #include "../lib/tsocket/tsocket.h"
41 #include "auth/kerberos/pac_utils.h"
42 #include "auth/gensec/gensec.h"
43 #include "librpc/crypto/gse_krb5.h"
44 #include "lib/afs/afs_funcs.h"
45 #include "libsmb/samlogon_cache.h"
48 #define DBGC_CLASS DBGC_WINBIND
50 #define LOGON_KRB5_FAIL_CLOCK_SKEW 0x02000000
52 static NTSTATUS
append_info3_as_txt(TALLOC_CTX
*mem_ctx
,
53 struct winbindd_response
*resp
,
54 struct netr_SamInfo3
*info3
)
59 resp
->data
.auth
.info3
.logon_time
=
60 nt_time_to_unix(info3
->base
.logon_time
);
61 resp
->data
.auth
.info3
.logoff_time
=
62 nt_time_to_unix(info3
->base
.logoff_time
);
63 resp
->data
.auth
.info3
.kickoff_time
=
64 nt_time_to_unix(info3
->base
.kickoff_time
);
65 resp
->data
.auth
.info3
.pass_last_set_time
=
66 nt_time_to_unix(info3
->base
.last_password_change
);
67 resp
->data
.auth
.info3
.pass_can_change_time
=
68 nt_time_to_unix(info3
->base
.allow_password_change
);
69 resp
->data
.auth
.info3
.pass_must_change_time
=
70 nt_time_to_unix(info3
->base
.force_password_change
);
72 resp
->data
.auth
.info3
.logon_count
= info3
->base
.logon_count
;
73 resp
->data
.auth
.info3
.bad_pw_count
= info3
->base
.bad_password_count
;
75 resp
->data
.auth
.info3
.user_rid
= info3
->base
.rid
;
76 resp
->data
.auth
.info3
.group_rid
= info3
->base
.primary_gid
;
77 sid_to_fstring(resp
->data
.auth
.info3
.dom_sid
, info3
->base
.domain_sid
);
79 resp
->data
.auth
.info3
.num_groups
= info3
->base
.groups
.count
;
80 resp
->data
.auth
.info3
.user_flgs
= info3
->base
.user_flags
;
82 resp
->data
.auth
.info3
.acct_flags
= info3
->base
.acct_flags
;
83 resp
->data
.auth
.info3
.num_other_sids
= info3
->sidcount
;
85 fstrcpy(resp
->data
.auth
.info3
.user_name
,
86 info3
->base
.account_name
.string
);
87 fstrcpy(resp
->data
.auth
.info3
.full_name
,
88 info3
->base
.full_name
.string
);
89 fstrcpy(resp
->data
.auth
.info3
.logon_script
,
90 info3
->base
.logon_script
.string
);
91 fstrcpy(resp
->data
.auth
.info3
.profile_path
,
92 info3
->base
.profile_path
.string
);
93 fstrcpy(resp
->data
.auth
.info3
.home_dir
,
94 info3
->base
.home_directory
.string
);
95 fstrcpy(resp
->data
.auth
.info3
.dir_drive
,
96 info3
->base
.home_drive
.string
);
98 fstrcpy(resp
->data
.auth
.info3
.logon_srv
,
99 info3
->base
.logon_server
.string
);
100 fstrcpy(resp
->data
.auth
.info3
.logon_dom
,
101 info3
->base
.logon_domain
.string
);
103 ex
= talloc_strdup(mem_ctx
, "");
104 NT_STATUS_HAVE_NO_MEMORY(ex
);
106 for (i
=0; i
< info3
->base
.groups
.count
; i
++) {
107 ex
= talloc_asprintf_append_buffer(ex
, "0x%08X:0x%08X\n",
108 info3
->base
.groups
.rids
[i
].rid
,
109 info3
->base
.groups
.rids
[i
].attributes
);
110 NT_STATUS_HAVE_NO_MEMORY(ex
);
113 for (i
=0; i
< info3
->sidcount
; i
++) {
116 sid
= dom_sid_string(mem_ctx
, info3
->sids
[i
].sid
);
117 NT_STATUS_HAVE_NO_MEMORY(sid
);
119 ex
= talloc_asprintf_append_buffer(ex
, "%s:0x%08X\n",
121 info3
->sids
[i
].attributes
);
122 NT_STATUS_HAVE_NO_MEMORY(ex
);
127 resp
->extra_data
.data
= ex
;
128 resp
->length
+= talloc_get_size(ex
);
133 static NTSTATUS
append_info3_as_ndr(TALLOC_CTX
*mem_ctx
,
134 struct winbindd_response
*resp
,
135 struct netr_SamInfo3
*info3
)
138 enum ndr_err_code ndr_err
;
140 ndr_err
= ndr_push_struct_blob(&blob
, mem_ctx
, info3
,
141 (ndr_push_flags_fn_t
)ndr_push_netr_SamInfo3
);
142 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
143 DEBUG(0,("append_info3_as_ndr: failed to append\n"));
144 return ndr_map_error2ntstatus(ndr_err
);
147 resp
->extra_data
.data
= blob
.data
;
148 resp
->length
+= blob
.length
;
153 static NTSTATUS
append_unix_username(TALLOC_CTX
*mem_ctx
,
154 struct winbindd_response
*resp
,
155 const struct netr_SamInfo3
*info3
,
156 const char *name_domain
,
157 const char *name_user
)
159 /* We've been asked to return the unix username, per
160 'winbind use default domain' settings and the like */
162 const char *nt_username
, *nt_domain
;
164 nt_domain
= talloc_strdup(mem_ctx
, info3
->base
.logon_domain
.string
);
166 /* If the server didn't give us one, just use the one
168 nt_domain
= name_domain
;
171 nt_username
= talloc_strdup(mem_ctx
, info3
->base
.account_name
.string
);
173 /* If the server didn't give us one, just use the one
175 nt_username
= name_user
;
178 fill_domain_username(resp
->data
.auth
.unix_username
,
179 nt_domain
, nt_username
, true);
181 DEBUG(5, ("Setting unix username to [%s]\n",
182 resp
->data
.auth
.unix_username
));
187 static NTSTATUS
append_afs_token(TALLOC_CTX
*mem_ctx
,
188 struct winbindd_response
*resp
,
189 const struct netr_SamInfo3
*info3
,
190 const char *name_domain
,
191 const char *name_user
)
193 char *afsname
= NULL
;
197 afsname
= talloc_strdup(mem_ctx
, lp_afs_username_map());
198 if (afsname
== NULL
) {
199 return NT_STATUS_NO_MEMORY
;
202 afsname
= talloc_string_sub(mem_ctx
,
203 lp_afs_username_map(),
205 afsname
= talloc_string_sub(mem_ctx
, afsname
,
207 afsname
= talloc_string_sub(mem_ctx
, afsname
,
211 struct dom_sid user_sid
;
214 sid_compose(&user_sid
, info3
->base
.domain_sid
,
216 sid_to_fstring(sidstr
, &user_sid
);
217 afsname
= talloc_string_sub(mem_ctx
, afsname
,
221 if (afsname
== NULL
) {
222 return NT_STATUS_NO_MEMORY
;
225 if (!strlower_m(afsname
)) {
226 return NT_STATUS_INVALID_PARAMETER
;
229 DEBUG(10, ("Generating token for user %s\n", afsname
));
231 cell
= strchr(afsname
, '@');
234 return NT_STATUS_NO_MEMORY
;
240 token
= afs_createtoken_str(afsname
, cell
);
244 resp
->extra_data
.data
= talloc_strdup(mem_ctx
, token
);
245 if (resp
->extra_data
.data
== NULL
) {
246 return NT_STATUS_NO_MEMORY
;
248 resp
->length
+= strlen((const char *)resp
->extra_data
.data
)+1;
253 static NTSTATUS
check_info3_in_group(struct netr_SamInfo3
*info3
,
254 const char *group_sid
)
256 * Check whether a user belongs to a group or list of groups.
258 * @param mem_ctx talloc memory context.
259 * @param info3 user information, including group membership info.
260 * @param group_sid One or more groups , separated by commas.
262 * @return NT_STATUS_OK on success,
263 * NT_STATUS_LOGON_FAILURE if the user does not belong,
264 * or other NT_STATUS_IS_ERR(status) for other kinds of failure.
267 struct dom_sid
*require_membership_of_sid
;
268 uint32_t num_require_membership_of_sid
;
273 struct security_token
*token
;
274 TALLOC_CTX
*frame
= talloc_stackframe();
277 /* Parse the 'required group' SID */
279 if (!group_sid
|| !group_sid
[0]) {
280 /* NO sid supplied, all users may access */
285 token
= talloc_zero(talloc_tos(), struct security_token
);
287 DEBUG(0, ("talloc failed\n"));
289 return NT_STATUS_NO_MEMORY
;
292 num_require_membership_of_sid
= 0;
293 require_membership_of_sid
= NULL
;
297 while (next_token_talloc(talloc_tos(), &p
, &req_sid
, ",")) {
298 if (!string_to_sid(&sid
, req_sid
)) {
299 DEBUG(0, ("check_info3_in_group: could not parse %s "
300 "as a SID!", req_sid
));
302 return NT_STATUS_INVALID_PARAMETER
;
305 status
= add_sid_to_array(talloc_tos(), &sid
,
306 &require_membership_of_sid
,
307 &num_require_membership_of_sid
);
308 if (!NT_STATUS_IS_OK(status
)) {
309 DEBUG(0, ("add_sid_to_array failed\n"));
315 status
= sid_array_from_info3(talloc_tos(), info3
,
319 if (!NT_STATUS_IS_OK(status
)) {
324 if (!NT_STATUS_IS_OK(status
= add_aliases(get_global_sam_sid(),
326 || !NT_STATUS_IS_OK(status
= add_aliases(&global_sid_Builtin
,
328 DEBUG(3, ("could not add aliases: %s\n",
334 security_token_debug(DBGC_CLASS
, 10, token
);
336 for (i
=0; i
<num_require_membership_of_sid
; i
++) {
337 DEBUG(10, ("Checking SID %s\n", sid_string_dbg(
338 &require_membership_of_sid
[i
])));
339 if (nt_token_check_sid(&require_membership_of_sid
[i
],
341 DEBUG(10, ("Access ok\n"));
347 /* Do not distinguish this error from a wrong username/pw */
350 return NT_STATUS_LOGON_FAILURE
;
353 struct winbindd_domain
*find_auth_domain(uint8_t flags
,
354 const char *domain_name
)
356 struct winbindd_domain
*domain
;
359 domain
= find_domain_from_name_noinit(domain_name
);
360 if (domain
== NULL
) {
361 DEBUG(3, ("Authentication for domain [%s] refused "
362 "as it is not a trusted domain\n",
368 if (strequal(domain_name
, get_global_sam_name())) {
369 return find_domain_from_name_noinit(domain_name
);
372 /* we can auth against trusted domains */
373 if (flags
& WBFLAG_PAM_CONTACT_TRUSTDOM
) {
374 domain
= find_domain_from_name_noinit(domain_name
);
375 if (domain
== NULL
) {
376 DEBUG(3, ("Authentication for domain [%s] skipped "
377 "as it is not a trusted domain\n",
384 return find_our_domain();
387 static void fake_password_policy(struct winbindd_response
*r
,
388 const struct netr_SamBaseInfo
*bi
)
390 NTTIME min_password_age
;
391 NTTIME max_password_age
;
393 if (bi
->allow_password_change
> bi
->last_password_change
) {
394 min_password_age
= bi
->allow_password_change
-
395 bi
->last_password_change
;
397 min_password_age
= 0;
400 if (bi
->force_password_change
> bi
->last_password_change
) {
401 max_password_age
= bi
->force_password_change
-
402 bi
->last_password_change
;
404 max_password_age
= 0;
407 r
->data
.auth
.policy
.min_length_password
= 0;
408 r
->data
.auth
.policy
.password_history
= 0;
409 r
->data
.auth
.policy
.password_properties
= 0;
410 r
->data
.auth
.policy
.expire
=
411 nt_time_to_unix_abs(&max_password_age
);
412 r
->data
.auth
.policy
.min_passwordage
=
413 nt_time_to_unix_abs(&min_password_age
);
416 static void fill_in_password_policy(struct winbindd_response
*r
,
417 const struct samr_DomInfo1
*p
)
419 r
->data
.auth
.policy
.min_length_password
=
420 p
->min_password_length
;
421 r
->data
.auth
.policy
.password_history
=
422 p
->password_history_length
;
423 r
->data
.auth
.policy
.password_properties
=
424 p
->password_properties
;
425 r
->data
.auth
.policy
.expire
=
426 nt_time_to_unix_abs((const NTTIME
*)&(p
->max_password_age
));
427 r
->data
.auth
.policy
.min_passwordage
=
428 nt_time_to_unix_abs((const NTTIME
*)&(p
->min_password_age
));
431 static NTSTATUS
fillup_password_policy(struct winbindd_domain
*domain
,
432 struct winbindd_response
*response
)
434 TALLOC_CTX
*frame
= talloc_stackframe();
436 struct samr_DomInfo1 password_policy
;
438 if ( !winbindd_can_contact_domain( domain
) ) {
439 DEBUG(5,("fillup_password_policy: No inbound trust to "
440 "contact domain %s\n", domain
->name
));
441 status
= NT_STATUS_NOT_SUPPORTED
;
445 status
= wb_cache_password_policy(domain
, talloc_tos(),
447 if (NT_STATUS_IS_ERR(status
)) {
451 fill_in_password_policy(response
, &password_policy
);
458 static NTSTATUS
get_max_bad_attempts_from_lockout_policy(struct winbindd_domain
*domain
,
460 uint16_t *lockout_threshold
)
462 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
463 struct samr_DomInfo12 lockout_policy
;
465 *lockout_threshold
= 0;
467 status
= wb_cache_lockout_policy(domain
, mem_ctx
, &lockout_policy
);
468 if (NT_STATUS_IS_ERR(status
)) {
472 *lockout_threshold
= lockout_policy
.lockout_threshold
;
477 static NTSTATUS
get_pwd_properties(struct winbindd_domain
*domain
,
479 uint32_t *password_properties
)
481 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
482 struct samr_DomInfo1 password_policy
;
484 *password_properties
= 0;
486 status
= wb_cache_password_policy(domain
, mem_ctx
, &password_policy
);
487 if (NT_STATUS_IS_ERR(status
)) {
491 *password_properties
= password_policy
.password_properties
;
498 static const char *generate_krb5_ccache(TALLOC_CTX
*mem_ctx
,
501 const char **user_ccache_file
)
503 /* accept FILE and WRFILE as krb5_cc_type from the client and then
504 * build the full ccname string based on the user's uid here -
507 const char *gen_cc
= NULL
;
510 if (strequal(type
, "FILE")) {
511 gen_cc
= talloc_asprintf(
512 mem_ctx
, "FILE:/tmp/krb5cc_%d", uid
);
514 if (strequal(type
, "WRFILE")) {
515 gen_cc
= talloc_asprintf(
516 mem_ctx
, "WRFILE:/tmp/krb5cc_%d", uid
);
518 if (strequal(type
, "KEYRING")) {
519 gen_cc
= talloc_asprintf(
520 mem_ctx
, "KEYRING:persistent:%d", uid
);
523 if (strnequal(type
, "FILE:/", 6) ||
524 strnequal(type
, "WRFILE:/", 8) ||
525 strnequal(type
, "DIR:/", 5)) {
527 /* we allow only one "%u" substitution */
531 p
= strchr(type
, '%');
536 if (p
!= NULL
&& *p
== 'u' && strchr(p
, '%') == NULL
) {
537 char uid_str
[sizeof("18446744073709551615")];
539 snprintf(uid_str
, sizeof(uid_str
), "%u", uid
);
541 gen_cc
= talloc_string_sub2(mem_ctx
,
545 /* remove_unsafe_characters */
549 /* allow_trailing_dollar */
556 *user_ccache_file
= gen_cc
;
558 if (gen_cc
== NULL
) {
559 gen_cc
= talloc_strdup(mem_ctx
, "MEMORY:winbindd_pam_ccache");
561 if (gen_cc
== NULL
) {
562 DEBUG(0,("out of memory\n"));
566 DEBUG(10, ("using ccache: %s%s\n", gen_cc
,
567 (*user_ccache_file
== NULL
) ? " (internal)":""));
574 uid_t
get_uid_from_request(struct winbindd_request
*request
)
578 uid
= request
->data
.auth
.uid
;
580 if (uid
== (uid_t
)-1) {
581 DEBUG(1,("invalid uid: '%u'\n", (unsigned int)uid
));
587 /**********************************************************************
588 Authenticate a user with a clear text password using Kerberos and fill up
590 **********************************************************************/
592 static NTSTATUS
winbindd_raw_kerberos_login(TALLOC_CTX
*mem_ctx
,
593 struct winbindd_domain
*domain
,
596 const char *krb5_cc_type
,
598 struct netr_SamInfo3
**info3
,
602 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
603 krb5_error_code krb5_ret
;
604 const char *cc
= NULL
;
605 const char *principal_s
= NULL
;
606 const char *service
= NULL
;
608 fstring name_domain
, name_user
;
609 time_t ticket_lifetime
= 0;
610 time_t renewal_until
= 0;
612 time_t time_offset
= 0;
613 const char *user_ccache_file
;
614 struct PAC_LOGON_INFO
*logon_info
= NULL
;
615 struct PAC_DATA
*pac_data
= NULL
;
616 struct PAC_DATA_CTR
*pac_data_ctr
= NULL
;
617 const char *local_service
;
619 struct netr_SamInfo3
*info3_copy
= NULL
;
623 if (domain
->alt_name
== NULL
) {
624 return NT_STATUS_INVALID_PARAMETER
;
628 * prepare a krb5_cc_cache string for the user */
631 DEBUG(0,("no valid uid\n"));
634 cc
= generate_krb5_ccache(mem_ctx
,
639 return NT_STATUS_NO_MEMORY
;
644 * get kerberos properties */
646 if (domain
->private_data
) {
647 ads
= (ADS_STRUCT
*)domain
->private_data
;
648 time_offset
= ads
->auth
.time_offset
;
653 * do kerberos auth and setup ccache as the user */
655 parse_domain_user(user
, name_domain
, name_user
);
657 realm
= talloc_strdup(mem_ctx
, domain
->alt_name
);
659 return NT_STATUS_NO_MEMORY
;
662 if (!strupper_m(realm
)) {
663 return NT_STATUS_INVALID_PARAMETER
;
666 principal_s
= talloc_asprintf(mem_ctx
, "%s@%s", name_user
, realm
);
667 if (principal_s
== NULL
) {
668 return NT_STATUS_NO_MEMORY
;
671 service
= talloc_asprintf(mem_ctx
, "%s/%s@%s", KRB5_TGS_NAME
, realm
, realm
);
672 if (service
== NULL
) {
673 return NT_STATUS_NO_MEMORY
;
676 local_service
= talloc_asprintf(mem_ctx
, "%s$@%s",
677 lp_netbios_name(), lp_realm());
678 if (local_service
== NULL
) {
679 return NT_STATUS_NO_MEMORY
;
683 /* if this is a user ccache, we need to act as the user to let the krb5
684 * library handle the chown, etc. */
686 /************************ ENTERING NON-ROOT **********************/
688 if (user_ccache_file
!= NULL
) {
689 set_effective_uid(uid
);
690 DEBUG(10,("winbindd_raw_kerberos_login: uid is %d\n", uid
));
693 result
= kerberos_return_pac(mem_ctx
,
702 WINBINDD_PAM_AUTH_KRB5_RENEW_TIME
,
706 if (user_ccache_file
!= NULL
) {
707 gain_root_privilege();
710 /************************ RETURNED TO ROOT **********************/
712 if (!NT_STATUS_IS_OK(result
)) {
716 if (pac_data_ctr
== NULL
) {
720 pac_data
= pac_data_ctr
->pac_data
;
721 if (pac_data
== NULL
) {
725 for (i
=0; i
< pac_data
->num_buffers
; i
++) {
727 if (pac_data
->buffers
[i
].type
!= PAC_TYPE_LOGON_INFO
) {
731 logon_info
= pac_data
->buffers
[i
].info
->logon_info
.info
;
733 return NT_STATUS_INVALID_PARAMETER
;
739 if (logon_info
== NULL
) {
740 DEBUG(10,("Missing logon_info in ticket of %s\n",
742 return NT_STATUS_INVALID_PARAMETER
;
745 DEBUG(10,("winbindd_raw_kerberos_login: winbindd validated ticket of %s\n",
748 result
= create_info3_from_pac_logon_info(mem_ctx
, logon_info
, &info3_copy
);
749 if (!NT_STATUS_IS_OK(result
)) {
753 /* if we had a user's ccache then return that string for the pam
756 if (user_ccache_file
!= NULL
) {
758 fstrcpy(krb5ccname
, user_ccache_file
);
760 result
= add_ccache_to_list(principal_s
,
772 if (!NT_STATUS_IS_OK(result
)) {
773 DEBUG(10,("winbindd_raw_kerberos_login: failed to add ccache to list: %s\n",
778 /* need to delete the memory cred cache, it is not used anymore */
780 krb5_ret
= ads_kdestroy(cc
);
782 DEBUG(3,("winbindd_raw_kerberos_login: "
783 "could not destroy krb5 credential cache: "
784 "%s\n", error_message(krb5_ret
)));
793 * Do not delete an existing valid credential cache, if the user
794 * e.g. enters a wrong password
796 if ((strequal(krb5_cc_type
, "FILE") || strequal(krb5_cc_type
, "WRFILE"))
797 && user_ccache_file
!= NULL
) {
801 /* we could have created a new credential cache with a valid tgt in it
802 * but we werent able to get or verify the service ticket for this
803 * local host and therefor didn't get the PAC, we need to remove that
804 * cache entirely now */
806 krb5_ret
= ads_kdestroy(cc
);
808 DEBUG(3,("winbindd_raw_kerberos_login: "
809 "could not destroy krb5 credential cache: "
810 "%s\n", error_message(krb5_ret
)));
813 if (!NT_STATUS_IS_OK(remove_ccache(user
))) {
814 DEBUG(3,("winbindd_raw_kerberos_login: "
815 "could not remove ccache for user %s\n",
821 return NT_STATUS_NOT_SUPPORTED
;
822 #endif /* HAVE_KRB5 */
825 /****************************************************************
826 ****************************************************************/
828 bool check_request_flags(uint32_t flags
)
830 uint32_t flags_edata
= WBFLAG_PAM_AFS_TOKEN
|
831 WBFLAG_PAM_INFO3_TEXT
|
832 WBFLAG_PAM_INFO3_NDR
;
834 if ( ( (flags
& flags_edata
) == WBFLAG_PAM_AFS_TOKEN
) ||
835 ( (flags
& flags_edata
) == WBFLAG_PAM_INFO3_NDR
) ||
836 ( (flags
& flags_edata
) == WBFLAG_PAM_INFO3_TEXT
)||
837 !(flags
& flags_edata
) ) {
841 DEBUG(1, ("check_request_flags: invalid request flags[0x%08X]\n",
847 /****************************************************************
848 ****************************************************************/
850 NTSTATUS
append_auth_data(TALLOC_CTX
*mem_ctx
,
851 struct winbindd_response
*resp
,
852 uint32_t request_flags
,
853 struct netr_SamInfo3
*info3
,
854 const char *name_domain
,
855 const char *name_user
)
859 if (request_flags
& WBFLAG_PAM_USER_SESSION_KEY
) {
860 memcpy(resp
->data
.auth
.user_session_key
,
862 sizeof(resp
->data
.auth
.user_session_key
)
866 if (request_flags
& WBFLAG_PAM_LMKEY
) {
867 memcpy(resp
->data
.auth
.first_8_lm_hash
,
868 info3
->base
.LMSessKey
.key
,
869 sizeof(resp
->data
.auth
.first_8_lm_hash
)
873 if (request_flags
& WBFLAG_PAM_UNIX_NAME
) {
874 result
= append_unix_username(mem_ctx
, resp
,
875 info3
, name_domain
, name_user
);
876 if (!NT_STATUS_IS_OK(result
)) {
877 DEBUG(10,("Failed to append Unix Username: %s\n",
883 /* currently, anything from here on potentially overwrites extra_data. */
885 if (request_flags
& WBFLAG_PAM_INFO3_NDR
) {
886 result
= append_info3_as_ndr(mem_ctx
, resp
, info3
);
887 if (!NT_STATUS_IS_OK(result
)) {
888 DEBUG(10,("Failed to append INFO3 (NDR): %s\n",
894 if (request_flags
& WBFLAG_PAM_INFO3_TEXT
) {
895 result
= append_info3_as_txt(mem_ctx
, resp
, info3
);
896 if (!NT_STATUS_IS_OK(result
)) {
897 DEBUG(10,("Failed to append INFO3 (TXT): %s\n",
903 if (request_flags
& WBFLAG_PAM_AFS_TOKEN
) {
904 result
= append_afs_token(mem_ctx
, resp
,
905 info3
, name_domain
, name_user
);
906 if (!NT_STATUS_IS_OK(result
)) {
907 DEBUG(10,("Failed to append AFS token: %s\n",
916 static NTSTATUS
winbindd_dual_pam_auth_cached(struct winbindd_domain
*domain
,
917 struct winbindd_cli_state
*state
,
918 struct netr_SamInfo3
**info3
)
920 NTSTATUS result
= NT_STATUS_LOGON_FAILURE
;
921 uint16_t max_allowed_bad_attempts
;
922 fstring name_domain
, name_user
;
924 enum lsa_SidType type
;
925 uchar new_nt_pass
[NT_HASH_LEN
];
926 const uint8_t *cached_nt_pass
;
927 const uint8_t *cached_salt
;
928 struct netr_SamInfo3
*my_info3
;
929 time_t kickoff_time
, must_change_time
;
930 bool password_good
= false;
932 struct winbindd_tdc_domain
*tdc_domain
= NULL
;
939 DEBUG(10,("winbindd_dual_pam_auth_cached\n"));
941 /* Parse domain and username */
943 parse_domain_user(state
->request
->data
.auth
.user
, name_domain
, name_user
);
946 if (!lookup_cached_name(name_domain
,
950 DEBUG(10,("winbindd_dual_pam_auth_cached: no such user in the cache\n"));
951 return NT_STATUS_NO_SUCH_USER
;
954 if (type
!= SID_NAME_USER
) {
955 DEBUG(10,("winbindd_dual_pam_auth_cached: not a user (%s)\n", sid_type_lookup(type
)));
956 return NT_STATUS_LOGON_FAILURE
;
959 result
= winbindd_get_creds(domain
,
965 if (!NT_STATUS_IS_OK(result
)) {
966 DEBUG(10,("winbindd_dual_pam_auth_cached: failed to get creds: %s\n", nt_errstr(result
)));
972 E_md4hash(state
->request
->data
.auth
.pass
, new_nt_pass
);
974 dump_data_pw("new_nt_pass", new_nt_pass
, NT_HASH_LEN
);
975 dump_data_pw("cached_nt_pass", cached_nt_pass
, NT_HASH_LEN
);
977 dump_data_pw("cached_salt", cached_salt
, NT_HASH_LEN
);
981 /* In this case we didn't store the nt_hash itself,
982 but the MD5 combination of salt + nt_hash. */
983 uchar salted_hash
[NT_HASH_LEN
];
984 E_md5hash(cached_salt
, new_nt_pass
, salted_hash
);
986 password_good
= (memcmp(cached_nt_pass
, salted_hash
,
989 /* Old cached cred - direct store of nt_hash (bad bad bad !). */
990 password_good
= (memcmp(cached_nt_pass
, new_nt_pass
,
996 /* User *DOES* know the password, update logon_time and reset
999 my_info3
->base
.user_flags
|= NETLOGON_CACHED_ACCOUNT
;
1001 if (my_info3
->base
.acct_flags
& ACB_AUTOLOCK
) {
1002 return NT_STATUS_ACCOUNT_LOCKED_OUT
;
1005 if (my_info3
->base
.acct_flags
& ACB_DISABLED
) {
1006 return NT_STATUS_ACCOUNT_DISABLED
;
1009 if (my_info3
->base
.acct_flags
& ACB_WSTRUST
) {
1010 return NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT
;
1013 if (my_info3
->base
.acct_flags
& ACB_SVRTRUST
) {
1014 return NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT
;
1017 if (my_info3
->base
.acct_flags
& ACB_DOMTRUST
) {
1018 return NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT
;
1021 if (!(my_info3
->base
.acct_flags
& ACB_NORMAL
)) {
1022 DEBUG(0,("winbindd_dual_pam_auth_cached: whats wrong with that one?: 0x%08x\n",
1023 my_info3
->base
.acct_flags
));
1024 return NT_STATUS_LOGON_FAILURE
;
1027 kickoff_time
= nt_time_to_unix(my_info3
->base
.kickoff_time
);
1028 if (kickoff_time
!= 0 && time(NULL
) > kickoff_time
) {
1029 return NT_STATUS_ACCOUNT_EXPIRED
;
1032 must_change_time
= nt_time_to_unix(my_info3
->base
.force_password_change
);
1033 if (must_change_time
!= 0 && must_change_time
< time(NULL
)) {
1034 /* we allow grace logons when the password has expired */
1035 my_info3
->base
.user_flags
|= NETLOGON_GRACE_LOGON
;
1036 /* return NT_STATUS_PASSWORD_EXPIRED; */
1041 if ((state
->request
->flags
& WBFLAG_PAM_KRB5
) &&
1042 ((tdc_domain
= wcache_tdc_fetch_domain(state
->mem_ctx
, name_domain
)) != NULL
) &&
1043 ((tdc_domain
->trust_type
& LSA_TRUST_TYPE_UPLEVEL
) ||
1044 /* used to cope with the case winbindd starting without network. */
1045 !strequal(tdc_domain
->domain_name
, tdc_domain
->dns_name
))) {
1048 const char *cc
= NULL
;
1050 const char *principal_s
= NULL
;
1051 const char *service
= NULL
;
1052 const char *user_ccache_file
;
1054 if (domain
->alt_name
== NULL
) {
1055 return NT_STATUS_INVALID_PARAMETER
;
1058 uid
= get_uid_from_request(state
->request
);
1060 DEBUG(0,("winbindd_dual_pam_auth_cached: invalid uid\n"));
1061 return NT_STATUS_INVALID_PARAMETER
;
1064 cc
= generate_krb5_ccache(state
->mem_ctx
,
1065 state
->request
->data
.auth
.krb5_cc_type
,
1066 state
->request
->data
.auth
.uid
,
1069 return NT_STATUS_NO_MEMORY
;
1072 realm
= talloc_strdup(state
->mem_ctx
, domain
->alt_name
);
1073 if (realm
== NULL
) {
1074 return NT_STATUS_NO_MEMORY
;
1077 if (!strupper_m(realm
)) {
1078 return NT_STATUS_INVALID_PARAMETER
;
1081 principal_s
= talloc_asprintf(state
->mem_ctx
, "%s@%s", name_user
, realm
);
1082 if (principal_s
== NULL
) {
1083 return NT_STATUS_NO_MEMORY
;
1086 service
= talloc_asprintf(state
->mem_ctx
, "%s/%s@%s", KRB5_TGS_NAME
, realm
, realm
);
1087 if (service
== NULL
) {
1088 return NT_STATUS_NO_MEMORY
;
1091 if (user_ccache_file
!= NULL
) {
1093 fstrcpy(state
->response
->data
.auth
.krb5ccname
,
1096 result
= add_ccache_to_list(principal_s
,
1099 state
->request
->data
.auth
.user
,
1100 state
->request
->data
.auth
.pass
,
1104 time(NULL
) + lp_winbind_cache_time(),
1105 time(NULL
) + WINBINDD_PAM_AUTH_KRB5_RENEW_TIME
,
1108 if (!NT_STATUS_IS_OK(result
)) {
1109 DEBUG(10,("winbindd_dual_pam_auth_cached: failed "
1110 "to add ccache to list: %s\n",
1111 nt_errstr(result
)));
1115 #endif /* HAVE_KRB5 */
1117 /* FIXME: we possibly should handle logon hours as well (does xp when
1118 * offline?) see auth/auth_sam.c:sam_account_ok for details */
1120 unix_to_nt_time(&my_info3
->base
.logon_time
, time(NULL
));
1121 my_info3
->base
.bad_password_count
= 0;
1123 result
= winbindd_update_creds_by_info3(domain
,
1124 state
->request
->data
.auth
.user
,
1125 state
->request
->data
.auth
.pass
,
1127 if (!NT_STATUS_IS_OK(result
)) {
1128 DEBUG(1,("winbindd_dual_pam_auth_cached: failed to update creds: %s\n",
1129 nt_errstr(result
)));
1133 return NT_STATUS_OK
;
1137 /* User does *NOT* know the correct password, modify info3 accordingly, but only if online */
1138 if (domain
->online
== false) {
1142 /* failure of this is not critical */
1143 result
= get_max_bad_attempts_from_lockout_policy(domain
, state
->mem_ctx
, &max_allowed_bad_attempts
);
1144 if (!NT_STATUS_IS_OK(result
)) {
1145 DEBUG(10,("winbindd_dual_pam_auth_cached: failed to get max_allowed_bad_attempts. "
1146 "Won't be able to honour account lockout policies\n"));
1149 /* increase counter */
1150 my_info3
->base
.bad_password_count
++;
1152 if (max_allowed_bad_attempts
== 0) {
1157 if (my_info3
->base
.bad_password_count
>= max_allowed_bad_attempts
) {
1159 uint32_t password_properties
;
1161 result
= get_pwd_properties(domain
, state
->mem_ctx
, &password_properties
);
1162 if (!NT_STATUS_IS_OK(result
)) {
1163 DEBUG(10,("winbindd_dual_pam_auth_cached: failed to get password properties.\n"));
1166 if ((my_info3
->base
.rid
!= DOMAIN_RID_ADMINISTRATOR
) ||
1167 (password_properties
& DOMAIN_PASSWORD_LOCKOUT_ADMINS
)) {
1168 my_info3
->base
.acct_flags
|= ACB_AUTOLOCK
;
1173 result
= winbindd_update_creds_by_info3(domain
,
1174 state
->request
->data
.auth
.user
,
1178 if (!NT_STATUS_IS_OK(result
)) {
1179 DEBUG(0,("winbindd_dual_pam_auth_cached: failed to update creds %s\n",
1180 nt_errstr(result
)));
1183 return NT_STATUS_LOGON_FAILURE
;
1186 static NTSTATUS
winbindd_dual_pam_auth_kerberos(struct winbindd_domain
*domain
,
1187 struct winbindd_cli_state
*state
,
1188 struct netr_SamInfo3
**info3
)
1190 struct winbindd_domain
*contact_domain
;
1191 fstring name_domain
, name_user
;
1194 DEBUG(10,("winbindd_dual_pam_auth_kerberos\n"));
1196 /* Parse domain and username */
1198 parse_domain_user(state
->request
->data
.auth
.user
, name_domain
, name_user
);
1200 /* what domain should we contact? */
1203 if (!(contact_domain
= find_domain_from_name(name_domain
))) {
1204 DEBUG(3, ("Authentication for domain for [%s] -> [%s]\\[%s] failed as %s is not a trusted domain\n",
1205 state
->request
->data
.auth
.user
, name_domain
, name_user
, name_domain
));
1206 result
= NT_STATUS_NO_SUCH_USER
;
1211 if (is_myname(name_domain
)) {
1212 DEBUG(3, ("Authentication for domain %s (local domain to this server) not supported at this stage\n", name_domain
));
1213 result
= NT_STATUS_NO_SUCH_USER
;
1217 contact_domain
= find_domain_from_name(name_domain
);
1218 if (contact_domain
== NULL
) {
1219 DEBUG(3, ("Authentication for domain for [%s] -> [%s]\\[%s] failed as %s is not a trusted domain\n",
1220 state
->request
->data
.auth
.user
, name_domain
, name_user
, name_domain
));
1222 result
= NT_STATUS_NO_SUCH_USER
;
1227 if (contact_domain
->initialized
&&
1228 contact_domain
->active_directory
) {
1232 if (!contact_domain
->initialized
) {
1233 init_dc_connection(contact_domain
, false);
1236 if (!contact_domain
->active_directory
) {
1237 DEBUG(3,("krb5 auth requested but domain is not Active Directory\n"));
1238 return NT_STATUS_INVALID_LOGON_TYPE
;
1241 result
= winbindd_raw_kerberos_login(
1242 state
->mem_ctx
, contact_domain
,
1243 state
->request
->data
.auth
.user
,
1244 state
->request
->data
.auth
.pass
,
1245 state
->request
->data
.auth
.krb5_cc_type
,
1246 get_uid_from_request(state
->request
),
1247 info3
, state
->response
->data
.auth
.krb5ccname
);
1252 static NTSTATUS
winbindd_dual_auth_passdb(TALLOC_CTX
*mem_ctx
,
1253 uint32_t logon_parameters
,
1254 const char *domain
, const char *user
,
1255 const DATA_BLOB
*challenge
,
1256 const DATA_BLOB
*lm_resp
,
1257 const DATA_BLOB
*nt_resp
,
1259 uint8_t *pauthoritative
,
1260 struct netr_SamInfo3
**pinfo3
)
1262 struct auth_context
*auth_context
;
1263 struct auth_serversupplied_info
*server_info
;
1264 struct auth_usersupplied_info
*user_info
= NULL
;
1265 struct tsocket_address
*local
;
1266 struct netr_SamInfo3
*info3
;
1270 TALLOC_CTX
*frame
= talloc_stackframe();
1273 * We are authoritative by default
1275 *pauthoritative
= 1;
1277 rc
= tsocket_address_inet_from_strings(frame
,
1284 return NT_STATUS_NO_MEMORY
;
1288 * TODO: We should get the service description passed in from
1289 * the winbind client, so we can have "smb2", "squid" or "samr" logged
1292 status
= make_user_info(frame
, &user_info
, user
, user
, domain
, domain
,
1293 lp_netbios_name(), local
, local
,
1295 lm_resp
, nt_resp
, NULL
, NULL
,
1296 NULL
, AUTH_PASSWORD_RESPONSE
);
1297 if (!NT_STATUS_IS_OK(status
)) {
1298 DEBUG(10, ("make_user_info failed: %s\n", nt_errstr(status
)));
1303 user_info
->logon_parameters
= logon_parameters
;
1305 /* We don't want any more mapping of the username */
1306 user_info
->mapped_state
= True
;
1308 /* We don't want to come back to winbindd or to do PAM account checks */
1309 user_info
->flags
|= USER_INFO_INFO3_AND_NO_AUTHZ
;
1312 user_info
->flags
|= USER_INFO_INTERACTIVE_LOGON
;
1315 status
= make_auth3_context_for_winbind(frame
, &auth_context
);
1316 if (!NT_STATUS_IS_OK(status
)) {
1317 DBG_ERR("make_auth3_context_for_winbind failed: %s\n",
1323 ok
= auth3_context_set_challenge(auth_context
,
1324 challenge
->data
, "fixed");
1327 return NT_STATUS_NO_MEMORY
;
1330 status
= auth_check_ntlm_password(mem_ctx
,
1335 if (!NT_STATUS_IS_OK(status
)) {
1340 info3
= talloc_zero(mem_ctx
, struct netr_SamInfo3
);
1341 if (info3
== NULL
) {
1343 return NT_STATUS_NO_MEMORY
;
1346 status
= serverinfo_to_SamInfo3(server_info
, info3
);
1347 if (!NT_STATUS_IS_OK(status
)) {
1350 DEBUG(0, ("serverinfo_to_SamInfo3 failed: %s\n",
1351 nt_errstr(status
)));
1356 DEBUG(10, ("Authenticaticating user %s\\%s returned %s\n", domain
,
1357 user
, nt_errstr(status
)));
1362 static NTSTATUS
winbind_samlogon_retry_loop(struct winbindd_domain
*domain
,
1363 TALLOC_CTX
*mem_ctx
,
1364 uint32_t logon_parameters
,
1365 const char *username
,
1366 const char *password
,
1367 const char *domainname
,
1368 const char *workstation
,
1369 const uint8_t chal
[8],
1370 DATA_BLOB lm_response
,
1371 DATA_BLOB nt_response
,
1373 uint8_t *authoritative
,
1375 struct netr_SamInfo3
**info3
)
1378 int netr_attempts
= 0;
1383 struct rpc_pipe_client
*netlogon_pipe
;
1385 ZERO_STRUCTP(info3
);
1388 result
= cm_connect_netlogon(domain
, &netlogon_pipe
);
1390 if (NT_STATUS_EQUAL(result
,
1391 NT_STATUS_CANT_ACCESS_DOMAIN_INFO
)) {
1393 * This means we don't have a trust account.
1396 result
= NT_STATUS_NO_SUCH_USER
;
1400 if (!NT_STATUS_IS_OK(result
)) {
1401 DEBUG(3,("Could not open handle to NETLOGON pipe "
1402 "(error: %s, attempts: %d)\n",
1403 nt_errstr(result
), netr_attempts
));
1405 /* After the first retry always close the connection */
1406 if (netr_attempts
> 0) {
1407 DEBUG(3, ("This is again a problem for this "
1408 "particular call, forcing the close "
1409 "of this connection\n"));
1410 invalidate_cm_connection(domain
);
1413 /* After the second retry failover to the next DC */
1414 if (netr_attempts
> 1) {
1416 * If the netlogon server is not reachable then
1417 * it is possible that the DC is rebuilding
1418 * sysvol and shutdown netlogon for that time.
1419 * We should failover to the next dc.
1421 DEBUG(3, ("This is the third problem for this "
1422 "particular call, adding DC to the "
1423 "negative cache list\n"));
1424 add_failed_connection_entry(domain
->name
,
1427 saf_delete(domain
->name
);
1430 /* Only allow 3 retries */
1431 if (netr_attempts
< 3) {
1432 DEBUG(3, ("The connection to netlogon "
1433 "failed, retrying\n"));
1441 if (domain
->conn
.netlogon_creds
== NULL
) {
1442 DBG_NOTICE("No security credentials available for "
1443 "domain [%s]\n", domainname
);
1444 result
= NT_STATUS_CANT_ACCESS_DOMAIN_INFO
;
1445 } else if (interactive
) {
1446 result
= rpccli_netlogon_password_logon(domain
->conn
.netlogon_creds
,
1447 netlogon_pipe
->binding_handle
,
1454 NetlogonInteractiveInformation
,
1459 result
= rpccli_netlogon_network_logon(domain
->conn
.netlogon_creds
,
1460 netlogon_pipe
->binding_handle
,
1475 * we increment this after the "feature negotiation"
1476 * for can_do_samlogon_ex and can_do_validation6
1480 /* We have to try a second time as cm_connect_netlogon
1481 might not yet have noticed that the DC has killed
1484 if (!rpccli_is_connected(netlogon_pipe
)) {
1489 /* if we get access denied, a possible cause was that we had
1490 and open connection to the DC, but someone changed our
1491 machine account password out from underneath us using 'net
1492 rpc changetrustpw' */
1494 if ( NT_STATUS_EQUAL(result
, NT_STATUS_ACCESS_DENIED
) ) {
1495 DEBUG(1,("winbind_samlogon_retry_loop: sam_logon returned "
1496 "ACCESS_DENIED. Maybe the DC has Restrict "
1497 "NTLM set or the trust account "
1498 "password was changed and we didn't know it. "
1499 "Killing connections to domain %s\n",
1501 invalidate_cm_connection(domain
);
1505 if (NT_STATUS_EQUAL(result
, NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
)) {
1507 * Got DCERPC_FAULT_OP_RNG_ERROR for SamLogon
1508 * (no Ex). This happens against old Samba
1509 * DCs, if LogonSamLogonEx() fails with an error
1510 * e.g. NT_STATUS_NO_SUCH_USER or NT_STATUS_WRONG_PASSWORD.
1512 * The server will log something like this:
1513 * api_net_sam_logon_ex: Failed to marshall NET_R_SAM_LOGON_EX.
1515 * This sets the whole connection into a fault_state mode
1516 * and all following request get NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE.
1518 * This also happens to our retry with LogonSamLogonWithFlags()
1519 * and LogonSamLogon().
1521 * In order to recover from this situation, we need to
1522 * drop the connection.
1524 invalidate_cm_connection(domain
);
1525 result
= NT_STATUS_LOGON_FAILURE
;
1529 } while ( (attempts
< 2) && retry
);
1531 if (NT_STATUS_EQUAL(result
, NT_STATUS_IO_TIMEOUT
)) {
1532 DEBUG(3,("winbind_samlogon_retry_loop: sam_network_logon(ex) "
1533 "returned NT_STATUS_IO_TIMEOUT after the retry."
1534 "Killing connections to domain %s\n",
1536 invalidate_cm_connection(domain
);
1541 static NTSTATUS
winbindd_dual_pam_auth_samlogon(TALLOC_CTX
*mem_ctx
,
1542 struct winbindd_domain
*domain
,
1545 uint32_t request_flags
,
1546 struct netr_SamInfo3
**info3
)
1552 unsigned char local_nt_response
[24];
1553 fstring name_domain
, name_user
;
1555 struct netr_SamInfo3
*my_info3
= NULL
;
1556 uint8_t authoritative
= 0;
1561 DEBUG(10,("winbindd_dual_pam_auth_samlogon\n"));
1563 /* Parse domain and username */
1565 parse_domain_user(user
, name_domain
, name_user
);
1568 * We check against domain->name instead of
1569 * name_domain, as find_auth_domain() ->
1570 * find_domain_from_name_noinit() already decided
1571 * that we are in a child for the correct domain.
1573 * name_domain can also be lp_realm()
1574 * we need to check against domain->name.
1576 if (strequal(domain
->name
, get_global_sam_name())) {
1577 DATA_BLOB chal_blob
= data_blob_const(chal
, sizeof(chal
));
1579 /* do password magic */
1581 generate_random_buffer(chal
, sizeof(chal
));
1583 if (lp_client_ntlmv2_auth()) {
1584 DATA_BLOB server_chal
;
1585 DATA_BLOB names_blob
;
1586 server_chal
= data_blob_const(chal
, 8);
1588 /* note that the 'workgroup' here is for the local
1589 machine. The 'server name' must match the
1590 'workstation' passed to the actual SamLogon call.
1592 names_blob
= NTLMv2_generate_names_blob(
1593 mem_ctx
, lp_netbios_name(), lp_workgroup());
1595 if (!SMBNTLMv2encrypt(mem_ctx
, name_user
, name_domain
,
1599 &lm_resp
, &nt_resp
, NULL
, NULL
)) {
1600 data_blob_free(&names_blob
);
1601 DEBUG(0, ("winbindd_pam_auth: SMBNTLMv2encrypt() failed!\n"));
1602 result
= NT_STATUS_NO_MEMORY
;
1605 data_blob_free(&names_blob
);
1607 lm_resp
= data_blob_null
;
1608 SMBNTencrypt(pass
, chal
, local_nt_response
);
1610 nt_resp
= data_blob_talloc(mem_ctx
, local_nt_response
,
1611 sizeof(local_nt_response
));
1614 result
= winbindd_dual_auth_passdb(
1615 mem_ctx
, 0, name_domain
, name_user
,
1616 &chal_blob
, &lm_resp
, &nt_resp
,
1617 true, /* interactive */
1622 * We need to try the remote NETLOGON server if this is
1623 * not authoritative (for example on the RODC).
1625 if (authoritative
!= 0) {
1630 /* check authentication loop */
1632 result
= winbind_samlogon_retry_loop(domain
,
1640 data_blob_null
, data_blob_null
,
1641 true, /* interactive */
1645 if (!NT_STATUS_IS_OK(result
)) {
1649 /* handle the case where a NT4 DC does not fill in the acct_flags in
1650 * the samlogon reply info3. When accurate info3 is required by the
1651 * caller, we look up the account flags ourselves - gd */
1653 if ((request_flags
& WBFLAG_PAM_INFO3_TEXT
) &&
1654 NT_STATUS_IS_OK(result
) && (my_info3
->base
.acct_flags
== 0)) {
1656 struct rpc_pipe_client
*samr_pipe
;
1657 struct policy_handle samr_domain_handle
, user_pol
;
1658 union samr_UserInfo
*info
= NULL
;
1659 NTSTATUS status_tmp
, result_tmp
;
1660 uint32_t acct_flags
;
1661 struct dcerpc_binding_handle
*b
;
1663 status_tmp
= cm_connect_sam(domain
, mem_ctx
, false,
1664 &samr_pipe
, &samr_domain_handle
);
1666 if (!NT_STATUS_IS_OK(status_tmp
)) {
1667 DEBUG(3, ("could not open handle to SAMR pipe: %s\n",
1668 nt_errstr(status_tmp
)));
1672 b
= samr_pipe
->binding_handle
;
1674 status_tmp
= dcerpc_samr_OpenUser(b
, mem_ctx
,
1675 &samr_domain_handle
,
1676 MAXIMUM_ALLOWED_ACCESS
,
1681 if (!NT_STATUS_IS_OK(status_tmp
)) {
1682 DEBUG(3, ("could not open user handle on SAMR pipe: %s\n",
1683 nt_errstr(status_tmp
)));
1686 if (!NT_STATUS_IS_OK(result_tmp
)) {
1687 DEBUG(3, ("could not open user handle on SAMR pipe: %s\n",
1688 nt_errstr(result_tmp
)));
1692 status_tmp
= dcerpc_samr_QueryUserInfo(b
, mem_ctx
,
1698 if (!NT_STATUS_IS_OK(status_tmp
)) {
1699 DEBUG(3, ("could not query user info on SAMR pipe: %s\n",
1700 nt_errstr(status_tmp
)));
1701 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result_tmp
);
1704 if (!NT_STATUS_IS_OK(result_tmp
)) {
1705 DEBUG(3, ("could not query user info on SAMR pipe: %s\n",
1706 nt_errstr(result_tmp
)));
1707 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result_tmp
);
1711 acct_flags
= info
->info16
.acct_flags
;
1713 if (acct_flags
== 0) {
1714 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result_tmp
);
1718 my_info3
->base
.acct_flags
= acct_flags
;
1720 DEBUG(10,("successfully retrieved acct_flags 0x%x\n", acct_flags
));
1722 dcerpc_samr_Close(b
, mem_ctx
, &user_pol
, &result_tmp
);
1730 enum winbindd_result
winbindd_dual_pam_auth(struct winbindd_domain
*domain
,
1731 struct winbindd_cli_state
*state
)
1733 NTSTATUS result
= NT_STATUS_LOGON_FAILURE
;
1734 NTSTATUS krb5_result
= NT_STATUS_OK
;
1735 fstring name_domain
, name_user
;
1737 fstring domain_user
;
1738 struct netr_SamInfo3
*info3
= NULL
;
1739 NTSTATUS name_map_status
= NT_STATUS_UNSUCCESSFUL
;
1741 /* Ensure null termination */
1742 state
->request
->data
.auth
.user
[sizeof(state
->request
->data
.auth
.user
)-1]='\0';
1744 /* Ensure null termination */
1745 state
->request
->data
.auth
.pass
[sizeof(state
->request
->data
.auth
.pass
)-1]='\0';
1747 DEBUG(3, ("[%5lu]: dual pam auth %s\n", (unsigned long)state
->pid
,
1748 state
->request
->data
.auth
.user
));
1750 /* Parse domain and username */
1752 name_map_status
= normalize_name_unmap(state
->mem_ctx
,
1753 state
->request
->data
.auth
.user
,
1756 /* If the name normalization didnt' actually do anything,
1757 just use the original name */
1759 if (!NT_STATUS_IS_OK(name_map_status
) &&
1760 !NT_STATUS_EQUAL(name_map_status
, NT_STATUS_FILE_RENAMED
))
1762 mapped_user
= state
->request
->data
.auth
.user
;
1765 parse_domain_user(mapped_user
, name_domain
, name_user
);
1767 if ( mapped_user
!= state
->request
->data
.auth
.user
) {
1768 fstr_sprintf( domain_user
, "%s%c%s", name_domain
,
1769 *lp_winbind_separator(),
1771 strlcpy( state
->request
->data
.auth
.user
, domain_user
,
1772 sizeof(state
->request
->data
.auth
.user
));
1775 if (!domain
->online
) {
1776 result
= NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
;
1777 if (domain
->startup
) {
1778 /* Logons are very important to users. If we're offline and
1779 we get a request within the first 30 seconds of startup,
1780 try very hard to find a DC and go online. */
1782 DEBUG(10,("winbindd_dual_pam_auth: domain: %s offline and auth "
1783 "request in startup mode.\n", domain
->name
));
1785 winbindd_flush_negative_conn_cache(domain
);
1786 result
= init_dc_connection(domain
, false);
1790 DEBUG(10,("winbindd_dual_pam_auth: domain: %s last was %s\n", domain
->name
, domain
->online
? "online":"offline"));
1792 /* Check for Kerberos authentication */
1793 if (domain
->online
&& (state
->request
->flags
& WBFLAG_PAM_KRB5
)) {
1795 result
= winbindd_dual_pam_auth_kerberos(domain
, state
, &info3
);
1796 /* save for later */
1797 krb5_result
= result
;
1800 if (NT_STATUS_IS_OK(result
)) {
1801 DEBUG(10,("winbindd_dual_pam_auth_kerberos succeeded\n"));
1802 goto process_result
;
1804 DEBUG(10,("winbindd_dual_pam_auth_kerberos failed: %s\n", nt_errstr(result
)));
1807 if (NT_STATUS_EQUAL(result
, NT_STATUS_NO_LOGON_SERVERS
) ||
1808 NT_STATUS_EQUAL(result
, NT_STATUS_IO_TIMEOUT
) ||
1809 NT_STATUS_EQUAL(result
, NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
)) {
1810 DEBUG(10,("winbindd_dual_pam_auth_kerberos setting domain to offline\n"));
1811 set_domain_offline( domain
);
1815 /* there are quite some NT_STATUS errors where there is no
1816 * point in retrying with a samlogon, we explictly have to take
1817 * care not to increase the bad logon counter on the DC */
1819 if (NT_STATUS_EQUAL(result
, NT_STATUS_ACCOUNT_DISABLED
) ||
1820 NT_STATUS_EQUAL(result
, NT_STATUS_ACCOUNT_EXPIRED
) ||
1821 NT_STATUS_EQUAL(result
, NT_STATUS_ACCOUNT_LOCKED_OUT
) ||
1822 NT_STATUS_EQUAL(result
, NT_STATUS_INVALID_LOGON_HOURS
) ||
1823 NT_STATUS_EQUAL(result
, NT_STATUS_INVALID_WORKSTATION
) ||
1824 NT_STATUS_EQUAL(result
, NT_STATUS_LOGON_FAILURE
) ||
1825 NT_STATUS_EQUAL(result
, NT_STATUS_NO_SUCH_USER
) ||
1826 NT_STATUS_EQUAL(result
, NT_STATUS_PASSWORD_EXPIRED
) ||
1827 NT_STATUS_EQUAL(result
, NT_STATUS_PASSWORD_MUST_CHANGE
) ||
1828 NT_STATUS_EQUAL(result
, NT_STATUS_WRONG_PASSWORD
)) {
1832 if (state
->request
->flags
& WBFLAG_PAM_FALLBACK_AFTER_KRB5
) {
1833 DEBUG(3,("falling back to samlogon\n"));
1841 /* Check for Samlogon authentication */
1842 if (domain
->online
) {
1843 result
= winbindd_dual_pam_auth_samlogon(
1844 state
->mem_ctx
, domain
,
1845 state
->request
->data
.auth
.user
,
1846 state
->request
->data
.auth
.pass
,
1847 state
->request
->flags
,
1850 if (NT_STATUS_IS_OK(result
)) {
1851 DEBUG(10,("winbindd_dual_pam_auth_samlogon succeeded\n"));
1852 /* add the Krb5 err if we have one */
1853 if ( NT_STATUS_EQUAL(krb5_result
, NT_STATUS_TIME_DIFFERENCE_AT_DC
) ) {
1854 info3
->base
.user_flags
|= LOGON_KRB5_FAIL_CLOCK_SKEW
;
1856 goto process_result
;
1859 DEBUG(10,("winbindd_dual_pam_auth_samlogon failed: %s\n",
1860 nt_errstr(result
)));
1862 if (NT_STATUS_EQUAL(result
, NT_STATUS_NO_LOGON_SERVERS
) ||
1863 NT_STATUS_EQUAL(result
, NT_STATUS_IO_TIMEOUT
) ||
1864 NT_STATUS_EQUAL(result
, NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
))
1866 DEBUG(10,("winbindd_dual_pam_auth_samlogon setting domain to offline\n"));
1867 set_domain_offline( domain
);
1871 if (domain
->online
) {
1872 /* We're still online - fail. */
1878 /* Check for Cached logons */
1879 if (!domain
->online
&& (state
->request
->flags
& WBFLAG_PAM_CACHED_LOGIN
) &&
1880 lp_winbind_offline_logon()) {
1882 result
= winbindd_dual_pam_auth_cached(domain
, state
, &info3
);
1884 if (NT_STATUS_IS_OK(result
)) {
1885 DEBUG(10,("winbindd_dual_pam_auth_cached succeeded\n"));
1886 goto process_result
;
1888 DEBUG(10,("winbindd_dual_pam_auth_cached failed: %s\n", nt_errstr(result
)));
1895 if (NT_STATUS_IS_OK(result
)) {
1897 struct dom_sid user_sid
;
1899 /* In all codepaths where result == NT_STATUS_OK info3 must have
1900 been initialized. */
1902 result
= NT_STATUS_INTERNAL_ERROR
;
1906 sid_compose(&user_sid
, info3
->base
.domain_sid
,
1909 if (info3
->base
.full_name
.string
== NULL
) {
1910 struct netr_SamInfo3
*cached_info3
;
1912 cached_info3
= netsamlogon_cache_get(state
->mem_ctx
,
1914 if (cached_info3
!= NULL
&&
1915 cached_info3
->base
.full_name
.string
!= NULL
) {
1916 info3
->base
.full_name
.string
=
1917 talloc_strdup(info3
,
1918 cached_info3
->base
.full_name
.string
);
1921 /* this might fail so we don't check the return code */
1922 wcache_query_user_fullname(domain
,
1925 &info3
->base
.full_name
.string
);
1929 wcache_invalidate_samlogon(find_domain_from_name(name_domain
),
1931 netsamlogon_cache_store(name_user
, info3
);
1933 /* save name_to_sid info as early as possible (only if
1934 this is our primary domain so we don't invalidate
1935 the cache entry by storing the seq_num for the wrong
1937 if ( domain
->primary
) {
1938 cache_name2sid(domain
, name_domain
, name_user
,
1939 SID_NAME_USER
, &user_sid
);
1942 /* Check if the user is in the right group */
1944 result
= check_info3_in_group(
1946 state
->request
->data
.auth
.require_membership_of_sid
);
1947 if (!NT_STATUS_IS_OK(result
)) {
1948 DEBUG(3, ("User %s is not in the required group (%s), so plaintext authentication is rejected\n",
1949 state
->request
->data
.auth
.user
,
1950 state
->request
->data
.auth
.require_membership_of_sid
));
1954 result
= append_auth_data(state
->mem_ctx
, state
->response
,
1955 state
->request
->flags
, info3
,
1956 name_domain
, name_user
);
1957 if (!NT_STATUS_IS_OK(result
)) {
1961 if ((state
->request
->flags
& WBFLAG_PAM_CACHED_LOGIN
)
1962 && lp_winbind_offline_logon()) {
1964 result
= winbindd_store_creds(domain
,
1965 state
->request
->data
.auth
.user
,
1966 state
->request
->data
.auth
.pass
,
1970 if (state
->request
->flags
& WBFLAG_PAM_GET_PWD_POLICY
) {
1972 * WBFLAG_PAM_GET_PWD_POLICY is not used within
1973 * any Samba caller anymore.
1975 * We just fake this based on the effective values
1976 * for the user, for legacy callers.
1978 fake_password_policy(state
->response
, &info3
->base
);
1981 result
= NT_STATUS_OK
;
1985 /* give us a more useful (more correct?) error code */
1986 if ((NT_STATUS_EQUAL(result
, NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
) ||
1987 (NT_STATUS_EQUAL(result
, NT_STATUS_UNSUCCESSFUL
)))) {
1988 result
= NT_STATUS_NO_LOGON_SERVERS
;
1991 set_auth_errors(state
->response
, result
);
1993 DEBUG(NT_STATUS_IS_OK(result
) ? 5 : 2, ("Plain-text authentication for user %s returned %s (PAM: %d)\n",
1994 state
->request
->data
.auth
.user
,
1995 state
->response
->data
.auth
.nt_status_string
,
1996 state
->response
->data
.auth
.pam_error
));
1998 return NT_STATUS_IS_OK(result
) ? WINBINDD_OK
: WINBINDD_ERROR
;
2001 NTSTATUS
winbind_dual_SamLogon(struct winbindd_domain
*domain
,
2002 TALLOC_CTX
*mem_ctx
,
2003 uint32_t logon_parameters
,
2004 const char *name_user
,
2005 const char *name_domain
,
2006 const char *workstation
,
2007 const uint8_t chal
[8],
2008 DATA_BLOB lm_response
,
2009 DATA_BLOB nt_response
,
2010 uint8_t *authoritative
,
2012 struct netr_SamInfo3
**info3
)
2017 * We check against domain->name instead of
2018 * name_domain, as find_auth_domain() ->
2019 * find_domain_from_name_noinit() already decided
2020 * that we are in a child for the correct domain.
2022 * name_domain can also be lp_realm()
2023 * we need to check against domain->name.
2025 if (strequal(domain
->name
, get_global_sam_name())) {
2026 DATA_BLOB chal_blob
= data_blob_const(
2029 result
= winbindd_dual_auth_passdb(
2032 name_domain
, name_user
,
2033 &chal_blob
, &lm_response
, &nt_response
,
2034 false, /* interactive */
2039 * We need to try the remote NETLOGON server if this is
2040 * not authoritative.
2042 if (*authoritative
!= 0) {
2044 goto process_result
;
2048 result
= winbind_samlogon_retry_loop(domain
,
2052 NULL
, /* password */
2054 /* Bug #3248 - found by Stefan Burkei. */
2055 workstation
, /* We carefully set this above so use it... */
2059 false, /* interactive */
2063 if (!NT_STATUS_IS_OK(result
)) {
2069 if (NT_STATUS_IS_OK(result
)) {
2070 struct dom_sid user_sid
;
2072 sid_compose(&user_sid
, (*info3
)->base
.domain_sid
,
2073 (*info3
)->base
.rid
);
2075 if ((*info3
)->base
.full_name
.string
== NULL
) {
2076 struct netr_SamInfo3
*cached_info3
;
2078 cached_info3
= netsamlogon_cache_get(mem_ctx
,
2080 if (cached_info3
!= NULL
&&
2081 cached_info3
->base
.full_name
.string
!= NULL
) {
2082 (*info3
)->base
.full_name
.string
=
2083 talloc_strdup(*info3
,
2084 cached_info3
->base
.full_name
.string
);
2087 /* this might fail so we don't check the return code */
2088 wcache_query_user_fullname(domain
,
2091 &(*info3
)->base
.full_name
.string
);
2095 wcache_invalidate_samlogon(find_domain_from_name(name_domain
),
2097 netsamlogon_cache_store(name_user
, *info3
);
2102 /* give us a more useful (more correct?) error code */
2103 if ((NT_STATUS_EQUAL(result
, NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND
) ||
2104 (NT_STATUS_EQUAL(result
, NT_STATUS_UNSUCCESSFUL
)))) {
2105 result
= NT_STATUS_NO_LOGON_SERVERS
;
2108 DEBUG(NT_STATUS_IS_OK(result
) ? 5 : 2,
2109 ("NTLM CRAP authentication for user [%s]\\[%s] returned %s\n",
2112 nt_errstr(result
)));
2117 enum winbindd_result
winbindd_dual_pam_auth_crap(struct winbindd_domain
*domain
,
2118 struct winbindd_cli_state
*state
)
2121 struct netr_SamInfo3
*info3
= NULL
;
2122 const char *name_user
= NULL
;
2123 const char *name_domain
= NULL
;
2124 const char *workstation
;
2125 uint8_t authoritative
;
2128 DATA_BLOB lm_resp
, nt_resp
;
2130 /* This is child-only, so no check for privileged access is needed
2133 /* Ensure null termination */
2134 state
->request
->data
.auth_crap
.user
[sizeof(state
->request
->data
.auth_crap
.user
)-1]=0;
2135 state
->request
->data
.auth_crap
.domain
[sizeof(state
->request
->data
.auth_crap
.domain
)-1]=0;
2137 name_user
= state
->request
->data
.auth_crap
.user
;
2138 name_domain
= state
->request
->data
.auth_crap
.domain
;
2139 workstation
= state
->request
->data
.auth_crap
.workstation
;
2141 DEBUG(3, ("[%5lu]: pam auth crap domain: %s user: %s\n", (unsigned long)state
->pid
,
2142 name_domain
, name_user
));
2144 if (state
->request
->data
.auth_crap
.lm_resp_len
> sizeof(state
->request
->data
.auth_crap
.lm_resp
)
2145 || state
->request
->data
.auth_crap
.nt_resp_len
> sizeof(state
->request
->data
.auth_crap
.nt_resp
)) {
2146 if (!(state
->request
->flags
& WBFLAG_BIG_NTLMV2_BLOB
) ||
2147 state
->request
->extra_len
!= state
->request
->data
.auth_crap
.nt_resp_len
) {
2148 DEBUG(0, ("winbindd_pam_auth_crap: invalid password length %u/%u\n",
2149 state
->request
->data
.auth_crap
.lm_resp_len
,
2150 state
->request
->data
.auth_crap
.nt_resp_len
));
2151 result
= NT_STATUS_INVALID_PARAMETER
;
2156 lm_resp
= data_blob_talloc(state
->mem_ctx
, state
->request
->data
.auth_crap
.lm_resp
,
2157 state
->request
->data
.auth_crap
.lm_resp_len
);
2159 if (state
->request
->flags
& WBFLAG_BIG_NTLMV2_BLOB
) {
2160 nt_resp
= data_blob_talloc(state
->mem_ctx
,
2161 state
->request
->extra_data
.data
,
2162 state
->request
->data
.auth_crap
.nt_resp_len
);
2164 nt_resp
= data_blob_talloc(state
->mem_ctx
,
2165 state
->request
->data
.auth_crap
.nt_resp
,
2166 state
->request
->data
.auth_crap
.nt_resp_len
);
2169 result
= winbind_dual_SamLogon(domain
,
2171 state
->request
->data
.auth_crap
.logon_parameters
,
2174 /* Bug #3248 - found by Stefan Burkei. */
2175 workstation
, /* We carefully set this above so use it... */
2176 state
->request
->data
.auth_crap
.chal
,
2182 if (!NT_STATUS_IS_OK(result
)) {
2183 state
->response
->data
.auth
.authoritative
= authoritative
;
2187 if (NT_STATUS_IS_OK(result
)) {
2188 /* Check if the user is in the right group */
2190 result
= check_info3_in_group(
2192 state
->request
->data
.auth_crap
.require_membership_of_sid
);
2193 if (!NT_STATUS_IS_OK(result
)) {
2194 DEBUG(3, ("User %s is not in the required group (%s), so "
2195 "crap authentication is rejected\n",
2196 state
->request
->data
.auth_crap
.user
,
2197 state
->request
->data
.auth_crap
.require_membership_of_sid
));
2201 result
= append_auth_data(state
->mem_ctx
, state
->response
,
2202 state
->request
->flags
, info3
,
2203 name_domain
, name_user
);
2204 if (!NT_STATUS_IS_OK(result
)) {
2211 if (state
->request
->flags
& WBFLAG_PAM_NT_STATUS_SQUASH
) {
2212 result
= nt_status_squash(result
);
2215 set_auth_errors(state
->response
, result
);
2217 return NT_STATUS_IS_OK(result
) ? WINBINDD_OK
: WINBINDD_ERROR
;
2220 enum winbindd_result
winbindd_dual_pam_chauthtok(struct winbindd_domain
*contact_domain
,
2221 struct winbindd_cli_state
*state
)
2224 char *newpass
= NULL
;
2225 struct policy_handle dom_pol
;
2226 struct rpc_pipe_client
*cli
= NULL
;
2227 bool got_info
= false;
2228 struct samr_DomInfo1
*info
= NULL
;
2229 struct userPwdChangeFailureInformation
*reject
= NULL
;
2230 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
2231 fstring domain
, user
;
2232 struct dcerpc_binding_handle
*b
= NULL
;
2234 ZERO_STRUCT(dom_pol
);
2236 DEBUG(3, ("[%5lu]: dual pam chauthtok %s\n", (unsigned long)state
->pid
,
2237 state
->request
->data
.auth
.user
));
2239 if (!parse_domain_user(state
->request
->data
.chauthtok
.user
, domain
, user
)) {
2243 /* Change password */
2245 oldpass
= state
->request
->data
.chauthtok
.oldpass
;
2246 newpass
= state
->request
->data
.chauthtok
.newpass
;
2248 /* Initialize reject reason */
2249 state
->response
->data
.auth
.reject_reason
= Undefined
;
2251 /* Get sam handle */
2253 result
= cm_connect_sam(contact_domain
, state
->mem_ctx
, true, &cli
,
2255 if (!NT_STATUS_IS_OK(result
)) {
2256 DEBUG(1, ("could not get SAM handle on DC for %s\n", domain
));
2260 b
= cli
->binding_handle
;
2262 result
= rpccli_samr_chgpasswd_user3(cli
, state
->mem_ctx
,
2269 /* Windows 2003 returns NT_STATUS_PASSWORD_RESTRICTION */
2271 if (NT_STATUS_EQUAL(result
, NT_STATUS_PASSWORD_RESTRICTION
) ) {
2273 fill_in_password_policy(state
->response
, info
);
2275 state
->response
->data
.auth
.reject_reason
=
2276 reject
->extendedFailureReason
;
2281 /* atm the pidl generated rpccli_samr_ChangePasswordUser3 function will
2282 * return with NT_STATUS_BUFFER_TOO_SMALL for w2k dcs as w2k just
2283 * returns with 4byte error code (NT_STATUS_NOT_SUPPORTED) which is too
2284 * short to comply with the samr_ChangePasswordUser3 idl - gd */
2286 /* only fallback when the chgpasswd_user3 call is not supported */
2287 if (NT_STATUS_EQUAL(result
, NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
) ||
2288 NT_STATUS_EQUAL(result
, NT_STATUS_NOT_SUPPORTED
) ||
2289 NT_STATUS_EQUAL(result
, NT_STATUS_BUFFER_TOO_SMALL
) ||
2290 NT_STATUS_EQUAL(result
, NT_STATUS_NOT_IMPLEMENTED
)) {
2292 DEBUG(10,("Password change with chgpasswd_user3 failed with: %s, retrying chgpasswd_user2\n",
2293 nt_errstr(result
)));
2295 result
= rpccli_samr_chgpasswd_user2(cli
, state
->mem_ctx
, user
, newpass
, oldpass
);
2297 /* Windows 2000 returns NT_STATUS_ACCOUNT_RESTRICTION.
2298 Map to the same status code as Windows 2003. */
2300 if ( NT_STATUS_EQUAL(NT_STATUS_ACCOUNT_RESTRICTION
, result
) ) {
2301 result
= NT_STATUS_PASSWORD_RESTRICTION
;
2307 if (NT_STATUS_IS_OK(result
)
2308 && (state
->request
->flags
& WBFLAG_PAM_CACHED_LOGIN
)
2309 && lp_winbind_offline_logon()) {
2310 result
= winbindd_update_creds_by_name(contact_domain
, user
,
2312 /* Again, this happens when we login from gdm or xdm
2313 * and the password expires, *BUT* cached crendentials
2314 * doesn't exist. winbindd_update_creds_by_name()
2315 * returns NT_STATUS_NO_SUCH_USER.
2316 * This is not a failure.
2319 if (NT_STATUS_EQUAL(result
, NT_STATUS_NO_SUCH_USER
)) {
2320 result
= NT_STATUS_OK
;
2323 if (!NT_STATUS_IS_OK(result
)) {
2324 DEBUG(10, ("Failed to store creds: %s\n",
2325 nt_errstr(result
)));
2326 goto process_result
;
2330 if (!NT_STATUS_IS_OK(result
) && !got_info
&& contact_domain
) {
2332 NTSTATUS policy_ret
;
2334 policy_ret
= fillup_password_policy(
2335 contact_domain
, state
->response
);
2337 /* failure of this is non critical, it will just provide no
2338 * additional information to the client why the change has
2339 * failed - Guenther */
2341 if (!NT_STATUS_IS_OK(policy_ret
)) {
2342 DEBUG(10,("Failed to get password policies: %s\n", nt_errstr(policy_ret
)));
2343 goto process_result
;
2349 if (strequal(contact_domain
->name
, get_global_sam_name())) {
2350 /* FIXME: internal rpc pipe does not cache handles yet */
2352 if (is_valid_policy_hnd(&dom_pol
)) {
2354 dcerpc_samr_Close(b
, state
->mem_ctx
, &dom_pol
, &_result
);
2360 set_auth_errors(state
->response
, result
);
2362 DEBUG(NT_STATUS_IS_OK(result
) ? 5 : 2,
2363 ("Password change for user [%s]\\[%s] returned %s (PAM: %d)\n",
2366 state
->response
->data
.auth
.nt_status_string
,
2367 state
->response
->data
.auth
.pam_error
));
2369 return NT_STATUS_IS_OK(result
) ? WINBINDD_OK
: WINBINDD_ERROR
;
2372 enum winbindd_result
winbindd_dual_pam_logoff(struct winbindd_domain
*domain
,
2373 struct winbindd_cli_state
*state
)
2375 NTSTATUS result
= NT_STATUS_NOT_SUPPORTED
;
2377 DEBUG(3, ("[%5lu]: pam dual logoff %s\n", (unsigned long)state
->pid
,
2378 state
->request
->data
.logoff
.user
));
2380 if (!(state
->request
->flags
& WBFLAG_PAM_KRB5
)) {
2381 result
= NT_STATUS_OK
;
2382 goto process_result
;
2385 if (state
->request
->data
.logoff
.krb5ccname
[0] == '\0') {
2386 result
= NT_STATUS_OK
;
2387 goto process_result
;
2392 if (state
->request
->data
.logoff
.uid
== (uid_t
)-1) {
2393 DEBUG(0,("winbindd_pam_logoff: invalid uid\n"));
2394 goto process_result
;
2397 /* what we need here is to find the corresponding krb5 ccache name *we*
2398 * created for a given username and destroy it */
2400 if (!ccache_entry_exists(state
->request
->data
.logoff
.user
)) {
2401 result
= NT_STATUS_OK
;
2402 DEBUG(10,("winbindd_pam_logoff: no entry found.\n"));
2403 goto process_result
;
2406 if (!ccache_entry_identical(state
->request
->data
.logoff
.user
,
2407 state
->request
->data
.logoff
.uid
,
2408 state
->request
->data
.logoff
.krb5ccname
)) {
2409 DEBUG(0,("winbindd_pam_logoff: cached entry differs.\n"));
2410 goto process_result
;
2413 result
= remove_ccache(state
->request
->data
.logoff
.user
);
2414 if (!NT_STATUS_IS_OK(result
)) {
2415 DEBUG(0,("winbindd_pam_logoff: failed to remove ccache: %s\n",
2416 nt_errstr(result
)));
2417 goto process_result
;
2421 * Remove any mlock'ed memory creds in the child
2422 * we might be using for krb5 ticket renewal.
2425 winbindd_delete_memory_creds(state
->request
->data
.logoff
.user
);
2428 result
= NT_STATUS_NOT_SUPPORTED
;
2434 set_auth_errors(state
->response
, result
);
2436 return NT_STATUS_IS_OK(result
) ? WINBINDD_OK
: WINBINDD_ERROR
;
2439 /* Change user password with auth crap*/
2441 enum winbindd_result
winbindd_dual_pam_chng_pswd_auth_crap(struct winbindd_domain
*domainSt
, struct winbindd_cli_state
*state
)
2444 DATA_BLOB new_nt_password
;
2445 DATA_BLOB old_nt_hash_enc
;
2446 DATA_BLOB new_lm_password
;
2447 DATA_BLOB old_lm_hash_enc
;
2448 fstring domain
,user
;
2449 struct policy_handle dom_pol
;
2450 struct winbindd_domain
*contact_domain
= domainSt
;
2451 struct rpc_pipe_client
*cli
= NULL
;
2452 struct dcerpc_binding_handle
*b
= NULL
;
2454 ZERO_STRUCT(dom_pol
);
2456 /* Ensure null termination */
2457 state
->request
->data
.chng_pswd_auth_crap
.user
[
2458 sizeof(state
->request
->data
.chng_pswd_auth_crap
.user
)-1]=0;
2459 state
->request
->data
.chng_pswd_auth_crap
.domain
[
2460 sizeof(state
->request
->data
.chng_pswd_auth_crap
.domain
)-1]=0;
2464 DEBUG(3, ("[%5lu]: pam change pswd auth crap domain: %s user: %s\n",
2465 (unsigned long)state
->pid
,
2466 state
->request
->data
.chng_pswd_auth_crap
.domain
,
2467 state
->request
->data
.chng_pswd_auth_crap
.user
));
2469 if (lp_winbind_offline_logon()) {
2470 DEBUG(0,("Refusing password change as winbind offline logons are enabled. "));
2471 DEBUGADD(0,("Changing passwords here would risk inconsistent logons\n"));
2472 result
= NT_STATUS_ACCESS_DENIED
;
2476 if (*state
->request
->data
.chng_pswd_auth_crap
.domain
) {
2477 fstrcpy(domain
,state
->request
->data
.chng_pswd_auth_crap
.domain
);
2479 parse_domain_user(state
->request
->data
.chng_pswd_auth_crap
.user
,
2483 DEBUG(3,("no domain specified with username (%s) - "
2485 state
->request
->data
.chng_pswd_auth_crap
.user
));
2486 result
= NT_STATUS_NO_SUCH_USER
;
2491 if (!*domain
&& lp_winbind_use_default_domain()) {
2492 fstrcpy(domain
,lp_workgroup());
2496 fstrcpy(user
, state
->request
->data
.chng_pswd_auth_crap
.user
);
2499 DEBUG(3, ("[%5lu]: pam auth crap domain: %s user: %s\n",
2500 (unsigned long)state
->pid
, domain
, user
));
2502 /* Change password */
2503 new_nt_password
= data_blob_const(
2504 state
->request
->data
.chng_pswd_auth_crap
.new_nt_pswd
,
2505 state
->request
->data
.chng_pswd_auth_crap
.new_nt_pswd_len
);
2507 old_nt_hash_enc
= data_blob_const(
2508 state
->request
->data
.chng_pswd_auth_crap
.old_nt_hash_enc
,
2509 state
->request
->data
.chng_pswd_auth_crap
.old_nt_hash_enc_len
);
2511 if(state
->request
->data
.chng_pswd_auth_crap
.new_lm_pswd_len
> 0) {
2512 new_lm_password
= data_blob_const(
2513 state
->request
->data
.chng_pswd_auth_crap
.new_lm_pswd
,
2514 state
->request
->data
.chng_pswd_auth_crap
.new_lm_pswd_len
);
2516 old_lm_hash_enc
= data_blob_const(
2517 state
->request
->data
.chng_pswd_auth_crap
.old_lm_hash_enc
,
2518 state
->request
->data
.chng_pswd_auth_crap
.old_lm_hash_enc_len
);
2520 new_lm_password
= data_blob_null
;
2521 old_lm_hash_enc
= data_blob_null
;
2524 /* Get sam handle */
2526 result
= cm_connect_sam(contact_domain
, state
->mem_ctx
, true, &cli
, &dom_pol
);
2527 if (!NT_STATUS_IS_OK(result
)) {
2528 DEBUG(1, ("could not get SAM handle on DC for %s\n", domain
));
2532 b
= cli
->binding_handle
;
2534 result
= rpccli_samr_chng_pswd_auth_crap(
2535 cli
, state
->mem_ctx
, user
, new_nt_password
, old_nt_hash_enc
,
2536 new_lm_password
, old_lm_hash_enc
);
2540 if (strequal(contact_domain
->name
, get_global_sam_name())) {
2541 /* FIXME: internal rpc pipe does not cache handles yet */
2543 if (is_valid_policy_hnd(&dom_pol
)) {
2545 dcerpc_samr_Close(b
, state
->mem_ctx
, &dom_pol
, &_result
);
2551 set_auth_errors(state
->response
, result
);
2553 DEBUG(NT_STATUS_IS_OK(result
) ? 5 : 2,
2554 ("Password change for user [%s]\\[%s] returned %s (PAM: %d)\n",
2556 state
->response
->data
.auth
.nt_status_string
,
2557 state
->response
->data
.auth
.pam_error
));
2559 return NT_STATUS_IS_OK(result
) ? WINBINDD_OK
: WINBINDD_ERROR
;
2563 static NTSTATUS
extract_pac_vrfy_sigs(TALLOC_CTX
*mem_ctx
, DATA_BLOB pac_blob
,
2564 struct PAC_LOGON_INFO
**logon_info
)
2566 krb5_context krbctx
= NULL
;
2567 krb5_error_code k5ret
;
2569 krb5_kt_cursor cursor
;
2570 krb5_keytab_entry entry
;
2571 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2574 ZERO_STRUCT(cursor
);
2576 k5ret
= krb5_init_context(&krbctx
);
2578 DEBUG(1, ("Failed to initialize kerberos context: %s\n",
2579 error_message(k5ret
)));
2580 status
= krb5_to_nt_status(k5ret
);
2584 k5ret
= gse_krb5_get_server_keytab(krbctx
, &keytab
);
2586 DEBUG(1, ("Failed to get keytab: %s\n",
2587 error_message(k5ret
)));
2588 status
= krb5_to_nt_status(k5ret
);
2592 k5ret
= krb5_kt_start_seq_get(krbctx
, keytab
, &cursor
);
2594 DEBUG(1, ("Failed to start seq: %s\n",
2595 error_message(k5ret
)));
2596 status
= krb5_to_nt_status(k5ret
);
2600 k5ret
= krb5_kt_next_entry(krbctx
, keytab
, &entry
, &cursor
);
2601 while (k5ret
== 0) {
2602 status
= kerberos_pac_logon_info(mem_ctx
, pac_blob
,
2604 KRB5_KT_KEY(&entry
), NULL
, 0,
2606 if (NT_STATUS_IS_OK(status
)) {
2609 k5ret
= smb_krb5_kt_free_entry(krbctx
, &entry
);
2610 k5ret
= krb5_kt_next_entry(krbctx
, keytab
, &entry
, &cursor
);
2613 k5ret
= krb5_kt_end_seq_get(krbctx
, keytab
, &cursor
);
2615 DEBUG(1, ("Failed to end seq: %s\n",
2616 error_message(k5ret
)));
2619 k5ret
= krb5_kt_close(krbctx
, keytab
);
2621 DEBUG(1, ("Failed to close keytab: %s\n",
2622 error_message(k5ret
)));
2625 krb5_free_context(krbctx
);
2630 NTSTATUS
winbindd_pam_auth_pac_send(struct winbindd_cli_state
*state
,
2631 struct netr_SamInfo3
**info3
)
2633 struct winbindd_request
*req
= state
->request
;
2635 struct PAC_LOGON_INFO
*logon_info
= NULL
;
2636 struct netr_SamInfo3
*info3_copy
= NULL
;
2639 pac_blob
= data_blob_const(req
->extra_data
.data
, req
->extra_len
);
2640 result
= extract_pac_vrfy_sigs(state
->mem_ctx
, pac_blob
, &logon_info
);
2641 if (!NT_STATUS_IS_OK(result
) &&
2642 !NT_STATUS_EQUAL(result
, NT_STATUS_ACCESS_DENIED
)) {
2643 DEBUG(1, ("Error during PAC signature verification: %s\n",
2644 nt_errstr(result
)));
2650 * Signature verification succeeded, we can
2651 * trust the PAC and prime the netsamlogon
2652 * and name2sid caches. DO NOT DO THIS
2653 * in the signature verification failed
2656 struct winbindd_domain
*domain
= NULL
;
2658 result
= create_info3_from_pac_logon_info(state
->mem_ctx
,
2661 if (!NT_STATUS_IS_OK(result
)) {
2664 netsamlogon_cache_store(NULL
, info3_copy
);
2667 * We're in the parent here, so find the child
2668 * pointer from the PAC domain name.
2670 domain
= find_domain_from_name_noinit(
2671 info3_copy
->base
.logon_domain
.string
);
2672 if (domain
&& domain
->primary
) {
2673 struct dom_sid user_sid
;
2675 sid_compose(&user_sid
,
2676 info3_copy
->base
.domain_sid
,
2677 info3_copy
->base
.rid
);
2679 cache_name2sid_trusted(domain
,
2680 info3_copy
->base
.logon_domain
.string
,
2681 info3_copy
->base
.account_name
.string
,
2685 DBG_INFO("PAC for user %s\%s SID %s primed cache\n",
2686 info3_copy
->base
.logon_domain
.string
,
2687 info3_copy
->base
.account_name
.string
,
2688 sid_string_dbg(&user_sid
));
2692 /* Try without signature verification */
2693 result
= kerberos_pac_logon_info(state
->mem_ctx
, pac_blob
, NULL
,
2694 NULL
, NULL
, NULL
, 0,
2696 if (!NT_STATUS_IS_OK(result
)) {
2697 DEBUG(10, ("Could not extract PAC: %s\n",
2698 nt_errstr(result
)));
2703 * Don't strictly need to copy here,
2704 * but it makes it explicit we're
2705 * returning a copy talloc'ed off
2706 * the state->mem_ctx.
2708 info3_copy
= copy_netr_SamInfo3(state
->mem_ctx
,
2709 &logon_info
->info3
);
2710 if (info3_copy
== NULL
) {
2711 return NT_STATUS_NO_MEMORY
;
2716 *info3
= info3_copy
;
2718 return NT_STATUS_OK
;
2720 #else /* HAVE_KRB5 */
2721 NTSTATUS
winbindd_pam_auth_pac_send(struct winbindd_cli_state
*state
,
2722 struct netr_SamInfo3
**info3
)
2724 return NT_STATUS_NO_SUCH_USER
;
2726 #endif /* HAVE_KRB5 */