]> git.ipfire.org Git - thirdparty/systemd.git/commit
resolved: transaction - exponentially increase retry timeouts
authorTom Gundersen <teg@jklm.no>
Tue, 28 Jul 2015 00:32:24 +0000 (02:32 +0200)
committerTom Gundersen <teg@jklm.no>
Mon, 3 Aug 2015 12:06:58 +0000 (14:06 +0200)
commit9df3ba6c6cb65eecec06f39dfe85a3596cedac4e
tree48ed4bc61722465155aef8e7bc3cfd95e4307d57
parent240b589b143311fda721701312ec15021e96caf9
resolved: transaction - exponentially increase retry timeouts

Rather than fixing this to 5s for unicast DNS and 1s for LLMNR, start
at a tenth of those values and increase exponentially until the old
values are reached. For LLMNR the recommended timeout for IEEE802
networks (which basically means all of the ones we care about) is 100ms,
so that should be uncontroversial. For unicast DNS I have found no
recommended value. However, it seems vastly more likely that hitting a
500ms timeout is casued by a packet loss, rather than the RTT genuinely
being greater than 500ms, so taking this as a startnig value seems
reasonable to me.

In the common case this greatly reduces the latency due to normal packet
loss. Moreover, once we get support for probing for features, this means
that we can send more packets before degrading the feature level whilst
still allowing us to settle on the correct feature level in a reasonable
timeframe.

The timeouts are tracked per server (or per scope for the multicast
protocols), and once a server (or scope) receives a successfull package
the timeout is reset. We also track the largest RTT for the given
server/scope, and always start our timouts at twice the largest
observed RTT.
src/resolve/resolved-dns-scope.c
src/resolve/resolved-dns-scope.h
src/resolve/resolved-dns-server.c
src/resolve/resolved-dns-server.h
src/resolve/resolved-dns-transaction.c
src/resolve/resolved-dns-transaction.h