credentials: Initialize krb5 client to retrieve creds from ccache
authorSamuel Cabrero <scabrero@suse.de>
Wed, 27 Mar 2019 16:07:05 +0000 (17:07 +0100)
committerJeremy Allison <jra@samba.org>
Mon, 29 Apr 2019 18:10:09 +0000 (18:10 +0000)
MIT kerberos require krb5_creds.client to be initialized to match
krb5_creds.server with the cached credentials.

Signed-off-by: Samuel Cabrero <scabrero@suse.de>
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
auth/credentials/credentials_krb5.c

index d8ca6d9711588396f67ca521efa8124f1e034e74..901c573c6559e4a63cb6768b05f16b9f5769a6c6 100644 (file)
@@ -406,6 +406,21 @@ _PUBLIC_ bool cli_credentials_failed_kerberos_login(struct cli_credentials *cred
                return false;
        }
 
+       /* MIT kerberos requires creds.client to match against cached
+        * credentials */
+       ret = krb5_cc_get_principal(ccc->smb_krb5_context->krb5_context,
+                                   ccc->ccache,
+                                   &creds.client);
+       if (ret != 0) {
+               krb5_free_cred_contents(ccc->smb_krb5_context->krb5_context,
+                                       &creds);
+               DBG_ERR("krb5_cc_get_principal failed: %s\n",
+                       smb_get_krb5_error_message(
+                               ccc->smb_krb5_context->krb5_context,
+                               ret, ccc));
+               return false;
+       }
+
        ret = krb5_cc_retrieve_cred(ccc->smb_krb5_context->krb5_context, ccc->ccache, KRB5_TC_MATCH_SRV_NAMEONLY, &creds, &creds2);
        if (ret != 0) {
                /* don't retry - we didn't find these credentials to remove */