diff options
author | Sumit Bose <sbose@redhat.com> | 2017-06-02 11:17:18 +0200 |
---|---|---|
committer | Lukas Slebodnik <lslebodn@redhat.com> | 2017-06-03 17:33:38 +0200 |
commit | a5e134b22aa27ff6cd66a7ff47089788ebc098a1 (patch) | |
tree | 63e12bac78d7bab83363c05eb590a94246808941 | |
parent | b130adaa3934d0531aca0f32961ab8b4cc720820 (diff) | |
download | sssd-a5e134b22aa27ff6cd66a7ff47089788ebc098a1.tar.gz sssd-a5e134b22aa27ff6cd66a7ff47089788ebc098a1.tar.xz sssd-a5e134b22aa27ff6cd66a7ff47089788ebc098a1.zip |
IPA: Fix the PAM error code that auth code expects to start migration
Recent patches which adds support for PKINIT in krb5_child changed a
return code which is used to indicate to the IPA provider that password
migration should be tried.
With this patch krb5_child properly returns PAM_CRED_ERR as expected by
the IPA provider in this case.
Resolves:
https://pagure.io/SSSD/sssd/issue/3394
Reviewed-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
-rw-r--r-- | src/providers/krb5/krb5_child.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c index cbbc892be..3cd8bfba7 100644 --- a/src/providers/krb5/krb5_child.c +++ b/src/providers/krb5/krb5_child.c @@ -1540,6 +1540,17 @@ static krb5_error_code get_and_save_tgt(struct krb5_req *kr, if (kerr != 0) { KRB5_CHILD_DEBUG(SSSDBG_CRIT_FAILURE, kerr); + /* Special case for IPA password migration */ + if (kr->pd->cmd == SSS_PAM_AUTHENTICATE + && kerr == KRB5_PREAUTH_FAILED + && kr->pkinit_prompting == false + && kr->password_prompting == false + && kr->otp == false + && sss_authtok_get_type(kr->pd->authtok) + == SSS_AUTHTOK_TYPE_PASSWORD) { + return ERR_CREDS_INVALID; + } + /* If during authentication either the MIT Kerberos pkinit * pre-auth module is missing or no Smartcard is inserted and only * pkinit is available KRB5_PREAUTH_FAILED is returned. |