Blame SOURCES/Try-harder-to-avoid-password-change-replay-errors.patch

8874ae
From ad8e02485791023dcf66ef4612616f03895ceeb3 Mon Sep 17 00:00:00 2001
8874ae
From: Greg Hudson <ghudson@mit.edu>
8874ae
Date: Fri, 4 Mar 2022 00:45:00 -0500
8874ae
Subject: [PATCH] Try harder to avoid password change replay errors
8874ae
8874ae
Commit d7b3018d338fc9c989c3fa17505870f23c3759a8 (ticket 7905) changed
8874ae
change_set_password() to prefer TCP.  However, because UDP_LAST falls
8874ae
back to UDP after one second, we can still get a replay error due to a
8874ae
dropped packet, before the TCP layer has a chance to retry.
8874ae
8874ae
Instead, try k5_sendto() with NO_UDP, and only fall back to UDP after
8874ae
TCP fails completely without reaching a server.  In sendto_kdc.c,
8874ae
implement an ONLY_UDP transport strategy to allow the UDP fallback.
8874ae
8874ae
ticket: 9037
8874ae
---
8874ae
 src/lib/krb5/os/changepw.c   |  9 ++++++++-
8874ae
 src/lib/krb5/os/os-proto.h   |  1 +
8874ae
 src/lib/krb5/os/sendto_kdc.c | 12 ++++++++----
8874ae
 3 files changed, 17 insertions(+), 5 deletions(-)
8874ae
8874ae
diff --git a/src/lib/krb5/os/changepw.c b/src/lib/krb5/os/changepw.c
8874ae
index 9f968da7f..c59232586 100644
8874ae
--- a/src/lib/krb5/os/changepw.c
8874ae
+++ b/src/lib/krb5/os/changepw.c
8874ae
@@ -255,9 +255,16 @@ change_set_password(krb5_context context,
8874ae
     callback_info.pfn_cleanup = kpasswd_sendto_msg_cleanup;
8874ae
     krb5_free_data_contents(callback_ctx.context, &chpw_rep);
8874ae
 
8874ae
+    /* UDP retransmits may be seen as replays.  Only try UDP after other
8874ae
+     * transports fail completely. */
8874ae
     code = k5_sendto(callback_ctx.context, NULL, &creds->server->realm,
8874ae
-                     &sl, UDP_LAST, &callback_info, &chpw_rep,
8874ae
+                     &sl, NO_UDP, &callback_info, &chpw_rep,
8874ae
                      ss2sa(&remote_addr), &addrlen, NULL, NULL, NULL);
8874ae
+    if (code == KRB5_KDC_UNREACH) {
8874ae
+        code = k5_sendto(callback_ctx.context, NULL, &creds->server->realm,
8874ae
+                         &sl, ONLY_UDP, &callback_info, &chpw_rep,
8874ae
+                         ss2sa(&remote_addr), &addrlen, NULL, NULL, NULL);
8874ae
+    }
8874ae
     if (code)
8874ae
         goto cleanup;
8874ae
 
8874ae
diff --git a/src/lib/krb5/os/os-proto.h b/src/lib/krb5/os/os-proto.h
8874ae
index a985f2aec..91d2791ce 100644
8874ae
--- a/src/lib/krb5/os/os-proto.h
8874ae
+++ b/src/lib/krb5/os/os-proto.h
8874ae
@@ -49,6 +49,7 @@ typedef enum {
8874ae
     UDP_FIRST = 0,
8874ae
     UDP_LAST,
8874ae
     NO_UDP,
8874ae
+    ONLY_UDP
8874ae
 } k5_transport_strategy;
8874ae
 
8874ae
 /* A single server hostname or address. */
8874ae
diff --git a/src/lib/krb5/os/sendto_kdc.c b/src/lib/krb5/os/sendto_kdc.c
8874ae
index 0eedec175..c7f5d861a 100644
8874ae
--- a/src/lib/krb5/os/sendto_kdc.c
8874ae
+++ b/src/lib/krb5/os/sendto_kdc.c
8874ae
@@ -802,11 +802,14 @@ resolve_server(krb5_context context, const krb5_data *realm,
8874ae
     int err, result;
8874ae
     char portbuf[PORT_LENGTH];
8874ae
 
8874ae
-    /* Skip UDP entries if we don't want UDP. */
8874ae
+    /* Skip entries excluded by the strategy. */
8874ae
     if (strategy == NO_UDP && entry->transport == UDP)
8874ae
         return 0;
8874ae
+    if (strategy == ONLY_UDP && entry->transport != UDP &&
8874ae
+        entry->transport != TCP_OR_UDP)
8874ae
+        return 0;
8874ae
 
8874ae
-    transport = (strategy == UDP_FIRST) ? UDP : TCP;
8874ae
+    transport = (strategy == UDP_FIRST || strategy == ONLY_UDP) ? UDP : TCP;
8874ae
     if (entry->hostname == NULL) {
8874ae
         /* Added by a module, so transport is either TCP or UDP. */
8874ae
         ai.ai_socktype = socktype_for_transport(entry->transport);
8874ae
@@ -850,8 +853,9 @@ resolve_server(krb5_context context, const krb5_data *realm,
8874ae
     }
8874ae
 
8874ae
     /* For TCP_OR_UDP entries, add each address again with the non-preferred
8874ae
-     * transport, unless we are avoiding UDP.  Flag these as deferred. */
8874ae
-    if (retval == 0 && entry->transport == TCP_OR_UDP && strategy != NO_UDP) {
8874ae
+     * transport, if there is one.  Flag these as deferred. */
8874ae
+    if (retval == 0 && entry->transport == TCP_OR_UDP &&
8874ae
+        (strategy == UDP_FIRST || strategy == UDP_LAST)) {
8874ae
         transport = (strategy == UDP_FIRST) ? TCP : UDP;
8874ae
         for (a = addrs; a != 0 && retval == 0; a = a->ai_next) {
8874ae
             a->ai_socktype = socktype_for_transport(transport);
8874ae
-- 
8874ae
2.35.1
8874ae