2d68ff
From 7d93bda31ce0b4e0e22c6e464c9138800dcf8b1c Mon Sep 17 00:00:00 2001
2d68ff
From: Alexander Bokovoy <abokovoy@redhat.com>
2d68ff
Date: Fri, 26 Nov 2021 11:13:51 +0200
2d68ff
Subject: [PATCH] ipa-kdb: fix requester SID check according to MS-KILE and
2d68ff
 MS-SFU updates
2d68ff
2d68ff
New versions of MS-KILE and MS-SFU after Windows Server November 2021
2d68ff
security updates add PAC_REQUESTER_SID buffer check behavior:
2d68ff
2d68ff
 - PAC_REQUESTER_SID should only be added for TGT requests
2d68ff
2d68ff
 - if PAC_REQUESTER_SID is present, KDC must verify that the cname on
2d68ff
   the ticket resolves to the account with the same SID as the
2d68ff
   PAC_REQUESTER_SID. If it doesn't KDC must respond with
2d68ff
   KDC_ERR_TKT_REVOKED
2d68ff
2d68ff
Change requester SID check to skip exact check for non-local
2d68ff
PAC_REQUESTER_SID but harden to ensure it comes from the trusted domains
2d68ff
we know about.
2d68ff
2d68ff
If requester SID is the same as in PAC, we already do cname vs PAC SID
2d68ff
verification.
2d68ff
2d68ff
With these changes FreeIPA works against Windows Server 2019 with
2d68ff
November 2021 security fixes in cross-realm S4U2Self operations.
2d68ff
2d68ff
Fixes: https://pagure.io/freeipa/issue/9031
2d68ff
2d68ff
Signed-off-by: Alexander Bokovoy <abokovoy@redhat.com>
2d68ff
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
2d68ff
---
2d68ff
 daemons/ipa-kdb/ipa_kdb_mspac.c | 47 ++++++++++++++++++++++++---------
2d68ff
 1 file changed, 34 insertions(+), 13 deletions(-)
2d68ff
2d68ff
diff --git a/daemons/ipa-kdb/ipa_kdb_mspac.c b/daemons/ipa-kdb/ipa_kdb_mspac.c
2d68ff
index 538cfbba9..1b972c167 100644
2d68ff
--- a/daemons/ipa-kdb/ipa_kdb_mspac.c
2d68ff
+++ b/daemons/ipa-kdb/ipa_kdb_mspac.c
2d68ff
@@ -1697,7 +1697,7 @@ static krb5_error_code check_logon_info_consistent(krb5_context context,
2d68ff
                                       "local [%s], PAC [%s]",
2d68ff
                                       dom ? dom : "<failed to display>",
2d68ff
                                       sid ? sid : "<failed to display>");
2d68ff
-            return KRB5KDC_ERR_POLICY;
2d68ff
+            return KRB5KDC_ERR_TGT_REVOKED;
2d68ff
         }
2d68ff
     }
2d68ff
 
2d68ff
@@ -1709,7 +1709,7 @@ static krb5_error_code check_logon_info_consistent(krb5_context context,
2d68ff
     kerr = ipadb_get_principal(context, client_princ, flags, &client_actual);
2d68ff
     if (kerr != 0) {
2d68ff
         krb5_klog_syslog(LOG_ERR, "PAC issue: ipadb_get_principal failed.");
2d68ff
-        return KRB5KDC_ERR_POLICY;
2d68ff
+        return KRB5KDC_ERR_TGT_REVOKED;
2d68ff
     }
2d68ff
 
2d68ff
     ied = (struct ipadb_e_data *)client_actual->e_data;
2d68ff
@@ -1743,7 +1743,7 @@ static krb5_error_code check_logon_info_consistent(krb5_context context,
2d68ff
                                   "local [%s] vs PAC [%s]",
2d68ff
                                   local_sid ? local_sid : "<failed to display>",
2d68ff
                                   pac_sid ? pac_sid : "<failed to display>");
2d68ff
-        kerr = KRB5KDC_ERR_POLICY;
2d68ff
+        kerr = KRB5KDC_ERR_TGT_REVOKED;
2d68ff
         goto done;
2d68ff
     }
2d68ff
 
2d68ff
@@ -2005,22 +2005,43 @@ static krb5_error_code ipadb_check_logon_info(krb5_context context,
2d68ff
     /* Check that requester SID is the same as in the PAC entry */
2d68ff
     if (requester_sid != NULL) {
2d68ff
         struct dom_sid client_sid;
2d68ff
+        bool is_from_trusted_domain = false;
2d68ff
         kerr = ipadb_get_sid_from_pac(tmpctx, info.info, &client_sid);
2d68ff
         if (kerr) {
2d68ff
             goto done;
2d68ff
         }
2d68ff
         result = dom_sid_check(&client_sid, requester_sid, true);
2d68ff
         if (!result) {
2d68ff
-            /* memctx is freed by the caller */
2d68ff
-            char *pac_sid = dom_sid_string(tmpctx, &client_sid);
2d68ff
-            char *req_sid = dom_sid_string(tmpctx, requester_sid);
2d68ff
-            krb5_klog_syslog(LOG_ERR, "PAC issue: PAC has a SID "
2d68ff
-                                      "different from what PAC requester claims. "
2d68ff
-                                      "PAC [%s] vs PAC requester [%s]",
2d68ff
-                                      pac_sid ? pac_sid : "<failed to display>",
2d68ff
-                                      req_sid ? req_sid : "<failed to display>");
2d68ff
-            kerr = KRB5KDC_ERR_POLICY;
2d68ff
-            goto done;
2d68ff
+            struct ipadb_context *ipactx = ipadb_get_context(context);
2d68ff
+            if (!ipactx || !ipactx->mspac) {
2d68ff
+                return KRB5_KDB_DBNOTINITED;
2d68ff
+            }
2d68ff
+            /* In S4U case we might be dealing with the PAC issued by the trusted domain */
2d68ff
+            if (is_s4u && (ipactx->mspac->trusts != NULL)) {
2d68ff
+                /* Iterate through list of trusts and check if this SID belongs to
2d68ff
+                * one of the domains we trust */
2d68ff
+                for(int i = 0 ; i < ipactx->mspac->num_trusts ; i++) {
2d68ff
+                    result = dom_sid_check(&ipactx->mspac->trusts[i].domsid,
2d68ff
+                                           requester_sid, false);
2d68ff
+                    if (result) {
2d68ff
+                        is_from_trusted_domain = true;
2d68ff
+                        break;
2d68ff
+                    }
2d68ff
+                }
2d68ff
+            }
2d68ff
+
2d68ff
+            if (!is_from_trusted_domain) {
2d68ff
+                /* memctx is freed by the caller */
2d68ff
+                char *pac_sid = dom_sid_string(tmpctx, &client_sid);
2d68ff
+                char *req_sid = dom_sid_string(tmpctx, requester_sid);
2d68ff
+                krb5_klog_syslog(LOG_ERR, "PAC issue: PAC has a SID "
2d68ff
+                                        "different from what PAC requester claims. "
2d68ff
+                                        "PAC [%s] vs PAC requester [%s]",
2d68ff
+                                        pac_sid ? pac_sid : "<failed to display>",
2d68ff
+                                        req_sid ? req_sid : "<failed to display>");
2d68ff
+                kerr = KRB5KDC_ERR_TGT_REVOKED;
2d68ff
+                goto done;
2d68ff
+            }
2d68ff
         }
2d68ff
     }
2d68ff
 
2d68ff
-- 
2d68ff
2.31.1
2d68ff