[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r9203: If we only have a single nameserver, raise the threshold to (in tor/trunk: . doc src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r9203: If we only have a single nameserver, raise the threshold to (in tor/trunk: . doc src/or)
- From: nickm@xxxxxxxx
- Date: Thu, 28 Dec 2006 16:29:38 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Thu, 28 Dec 2006 16:29:46 -0500
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: nickm
Date: 2006-12-28 16:29:37 -0500 (Thu, 28 Dec 2006)
New Revision: 9203
Modified:
tor/trunk/
tor/trunk/ChangeLog
tor/trunk/doc/TODO
tor/trunk/src/or/dns.c
Log:
r11727@Kushana: nickm | 2006-12-28 16:27:17 -0500
If we only have a single nameserver, raise the threshold to decide that the nameserver is dead. (Another fumbling attempt to do something about bug 326.)
Property changes on: tor/trunk
___________________________________________________________________
svk:merge ticket from /tor/trunk [r11727] on c95137ef-5f19-0410-b913-86e773d04f59
Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog 2006-12-28 21:29:31 UTC (rev 9202)
+++ tor/trunk/ChangeLog 2006-12-28 21:29:37 UTC (rev 9203)
@@ -122,7 +122,9 @@
- Removed the supposedly misleading error message mentioned in Bug #294.
Patch from Matt Edman.
- Stop warning when a single nameserver fails: only warn when _all_ of
- our nameservers have failed. (Part of a solution to bug #326.)
+ our nameservers have failed. (Bug #326.)
+ - When we only have one nameserver, raise the threshold for deciding that
+ the nameserver is dead. (Also bug #326)
o Controller features:
- Have GETINFO dir/status/* work on hosts with DirPort disabled.
Modified: tor/trunk/doc/TODO
===================================================================
--- tor/trunk/doc/TODO 2006-12-28 21:29:31 UTC (rev 9202)
+++ tor/trunk/doc/TODO 2006-12-28 21:29:37 UTC (rev 9203)
@@ -113,18 +113,17 @@
o Bug 363: Warn and die if we can't find a nameserver and we're running a
server; don't fall back to 127.0.0.1.
o Re-check dns when we change IP addresses, rather than every 12 hours
- . Bug 326: Give fewer error messages from nameservers.
+ o Bug 326: Give fewer error messages from nameservers.
o Only warn when _all_ nameservers are down; otherwise info.
- - Increase timeout; what's industry standard?
- - Alternatively, raise timeout when nameserver dies but comes back
+ D Increase timeout; what's industry standard?
+ D Alternatively, raise timeout when nameserver dies but comes back
quickly?
- - Don't believe that our sole nameserver is dead? or, not until more
+ o Don't believe that our sole nameserver is dead? or, not until more
failures than it would take to think one of several nameservers was
dead?
- - easy: adjust global_max_nameserver_timeout / global_timeout.
X Possibly, don't warn until second retry of a nameserver gets no
answer?
- - warn if all of your nameservers go down and stay down for like
+ X warn if all of your nameservers go down and stay down for like
5 minutes.
R o Take out the '5 second' timeout from the socks detach schedule.
Modified: tor/trunk/src/or/dns.c
===================================================================
--- tor/trunk/src/or/dns.c 2006-12-28 21:29:31 UTC (rev 9202)
+++ tor/trunk/src/or/dns.c 2006-12-28 21:29:37 UTC (rev 9203)
@@ -216,7 +216,7 @@
resolv_conf_mtime = 0;
} else {
if (configure_nameservers(0) < 0)
- /* XXXX */
+ /* XXXX012 */
return;
}
#else
@@ -651,7 +651,7 @@
log_debug(LD_EXIT,"Connection (fd %d) found cached error for %s",
exitconn->_base.s,
escaped_safe_str(exitconn->_base.address));
- /* XXXX send back indication of failure for connect case? -NM*/
+ /* XXXX012 send back indication of failure for connect case? -NM*/
if (is_resolve)
send_resolved_cell(exitconn, oncirc, RESOLVED_TYPE_ERROR);
circ = circuit_get_by_edge_conn(exitconn);
@@ -853,7 +853,7 @@
if (outcome == DNS_RESOLVE_FAILED_TRANSIENT)
return;
- /* XXX This is dumb, but it seems to workaround a bug I can't find. We
+ /* XXXX012 This is dumb, but it seems to workaround a bug I can't find. We
* should nail this so we can cache reverse DNS answers. -NM */
if (is_reverse)
return;
@@ -1525,6 +1525,14 @@
}
#endif
+ if (evdns_count_nameservers() == 1) {
+ evdns_set_option("max-timeouts:", "16", DNS_OPTIONS_ALL);
+ evdns_set_option("timeout:", "10", DNS_OPTIONS_ALL);
+ } else {
+ evdns_set_option("max-timeouts:", "3", DNS_OPTIONS_ALL);
+ evdns_set_option("timeout:", "5", DNS_OPTIONS_ALL);
+ }
+
dns_servers_relaunch_checks();
nameservers_configured = 1;