summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5/krb5_child.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2013-10-08 18:25:20 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-10-17 13:40:54 +0200
commite30fbb81f5406ed8556df06288e97a39b54c843c (patch)
treeeceeda7918a7347e477bf3a0f77022ee107a486a /src/providers/krb5/krb5_child.c
parent3f422ba0a6c9e2606848256044a9d775e0236201 (diff)
downloadsssd-e30fbb81f5406ed8556df06288e97a39b54c843c.tar.gz
sssd-e30fbb81f5406ed8556df06288e97a39b54c843c.tar.xz
sssd-e30fbb81f5406ed8556df06288e97a39b54c843c.zip
KRB5: Return PAM_ACCT_EXPIRED when logging in as expired AD user
If an expired AD user logs in, the SSSD receives KRB5KDC_ERR_CLIENT_REVOKED from the KDC. This error code was not handled by the SSSD which resulted in System Error being returned to the PAM stack.
Diffstat (limited to 'src/providers/krb5/krb5_child.c')
-rw-r--r--src/providers/krb5/krb5_child.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c
index 16ab4dbbb..20fb76318 100644
--- a/src/providers/krb5/krb5_child.c
+++ b/src/providers/krb5/krb5_child.c
@@ -991,6 +991,9 @@ static errno_t map_krb5_error(krb5_error_code kerr)
case KRB5_REALM_CANT_RESOLVE:
return ERR_NETWORK_IO;
+ case KRB5KDC_ERR_CLIENT_REVOKED:
+ return ERR_ACCOUNT_EXPIRED;
+
case KRB5KDC_ERR_KEY_EXP:
return ERR_CREDS_EXPIRED;