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

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