]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix idle timeout for connected TCP sockets
authorMichał Kępień <michal@isc.org>
Thu, 30 Jul 2020 08:58:39 +0000 (10:58 +0200)
committerMichał Kępień <michal@isc.org>
Thu, 30 Jul 2020 08:58:39 +0000 (10:58 +0200)
When named acting as a resolver connects to an authoritative server over
TCP, it sets the idle timeout for that connection to 20 seconds.  This
fixed timeout was picked back when the default processing timeout for
each client query was hardcoded to 30 seconds.  Commit
000a8970f840a0c27c5cc404826853c4674362ac made this processing timeout
configurable through "resolver-query-timeout" and decreased its default
value to 10 seconds, but the idle TCP timeout was not adjusted to
reflect that change.  As a result, with the current defaults in effect,
a single hung TCP connection will consistently cause the resolution
process for a given query to time out.

Set the idle timeout for connected TCP sockets to half of the client
query processing timeout configured for a resolver.  This allows named
to handle hung TCP connections more robustly and prevents the timeout
mismatch issue from resurfacing in the future if the default is ever
changed again.

lib/dns/resolver.c

index 8aa78191e870cacd823a9f2e41b9b6e51d82d33d..893eb340d2142f5d305e44feb168d26b94f78eee 100644 (file)
@@ -3012,12 +3012,15 @@ resquery_connected(isc_task_t *task, isc_event_t *event) {
                case ISC_R_SUCCESS:
 
                        /*
-                        * Extend the idle timer for TCP.  20 seconds
-                        * should be long enough for a TCP connection to be
-                        * established, a single DNS request to be sent,
-                        * and the response received.
+                        * Extend the idle timer for TCP.  Half of
+                        * "resolver-query-timeout" will hopefully be long
+                        * enough for a TCP connection to be established, a
+                        * single DNS request to be sent, and the response
+                        * received.
                         */
-                       isc_interval_set(&interval, 20, 0);
+                       isc_interval_set(&interval,
+                                        fctx->res->query_timeout / 1000 / 2,
+                                        0);
                        result = fctx_startidletimer(query->fctx, &interval);
                        if (result != ISC_R_SUCCESS) {
                                FCTXTRACE("query canceled: idle timer failed; "