From 2a8bf34ce7ad3e1c6e50126d395b10ece4ee5559 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 8 May 2008 22:18:56 +0000 Subject: [PATCH] DEVEL15-viced-avoid-infinite-loop-with-altaddr-unset-20080508 LICENSE IPL10 if we return leaving a non HOSTDELETED host while it does not have ALTADDR set, a loop can happen. avoid it by simply setting ALTADDR again when we're done, if we believe some addresses are still good this is fine. (cherry picked from commit e6c818f070022529c362e42dfed340f54b2fd26e) --- src/viced/host.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/viced/host.c b/src/viced/host.c index 031ee861a..0fcab929f 100644 --- a/src/viced/host.c +++ b/src/viced/host.c @@ -1565,6 +1565,7 @@ h_GetHost_r(struct rx_connection *tcon) */ removeAddress_r(host, haddr, hport); host->hostFlags &= ~HWHO_INPROGRESS; + host->hostFlags |= ALTADDR; h_Unlock_r(host); if (!held) h_Release_r(host); @@ -1600,6 +1601,7 @@ h_GetHost_r(struct rx_connection *tcon) removeAddress_r(host, host->host, host->port); } host->hostFlags &= ~HWHO_INPROGRESS; + host->hostFlags |= ALTADDR; h_Unlock_r(host); if (!held) h_Release_r(host); @@ -1669,6 +1671,7 @@ h_GetHost_r(struct rx_connection *tcon) afs_inet_ntoa_r(haddr, hoststr), ntohs(hport), code)); removeAddress_r(host, haddr, hport); host->hostFlags &= ~HWHO_INPROGRESS; + host->hostFlags |= ALTADDR; h_Unlock_r(host); if (!held) h_Release_r(host); -- 2.39.5