From ac85128159ba0c68b193a739493678e037c58697 Mon Sep 17 00:00:00 2001 From: Pavel Březina Date: Wed, 30 Jan 2013 13:45:27 +0100 Subject: krb: recreate ccache if it was deleted https://fedorahosted.org/sssd/ticket/1512 If directory where a ccache file was stored was missing and user was still logged in, we erroneously considered the ccache file still active. Thus the ccache file was not recreated and user was unable to login. --- src/providers/krb5/krb5_utils.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/providers/krb5') diff --git a/src/providers/krb5/krb5_utils.c b/src/providers/krb5/krb5_utils.c index f99b0f99f..c0019a08a 100644 --- a/src/providers/krb5/krb5_utils.c +++ b/src/providers/krb5/krb5_utils.c @@ -769,8 +769,15 @@ cc_residual_is_used(uid_t uid, const char *ccname, ret = lstat(ccname, &stat_buf); - if (ret == -1 && errno != ENOENT) { + if (ret == -1) { ret = errno; + if (ret == ENOENT) { + DEBUG(SSSDBG_FUNC_DATA, ("Cache file [%s] does not exists, " + "it will be recreated\n", ccname)); + *result = false; + return EOK; + } + DEBUG(SSSDBG_OP_FAILURE, ("stat failed [%d][%s].\n", ret, strerror(ret))); return ret; -- cgit