aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-12-15 21:30:57 +0000
committerNick Mathewson <nickm@torproject.org>2005-12-15 21:30:57 +0000
commit280c62314eff5c2e4bf266da02f9430ba937238b (patch)
tree6f9abc9ae64e5a64d0619686d1066c884a0c62a0
parent34890664333cf7087e7f03960b30b48af3259707 (diff)
downloadtor-280c62314eff5c2e4bf266da02f9430ba937238b.tar
tor-280c62314eff5c2e4bf266da02f9430ba937238b.tar.gz
Make clients look at the fast and stable flags in networkstatus, not at the bandwidth and uptime declared in the router descriptors.
svn:r5599
-rw-r--r--src/or/dirserv.c23
-rw-r--r--src/or/or.h2
-rw-r--r--src/or/routerlist.c7
3 files changed, 27 insertions, 5 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 760497259..7fe5bcab3 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -1219,6 +1219,23 @@ should_generate_v2_networkstatus(void)
the_v2_networkstatus_is_dirty + DIR_REGEN_SLACK_TIME < time(NULL);
}
+/** Return 1 if <b>router</b> is not suitable for these parameters, else 0.
+ * If <b>need_uptime</b> is non-zero, we require a minimum uptime.
+ * If <b>need_capacity</b> is non-zero, we require a minimum advertised
+ * bandwidth.
+ */
+static int
+dirserv_thinks_router_is_unreliable(routerinfo_t *router,
+ int need_uptime, int need_capacity)
+{
+ if (need_uptime && router->uptime < ROUTER_REQUIRED_MIN_UPTIME)
+ return 1;
+ if (need_capacity &&
+ router->bandwidthcapacity < ROUTER_REQUIRED_MIN_BANDWIDTH)
+ return 1;
+ return 0;
+}
+
/** For authoritative directories only: replace the contents of
* <b>the_v2_networkstatus</b> with a newly generated network status
* object. */
@@ -1309,8 +1326,8 @@ generate_v2_networkstatus(void)
SMARTLIST_FOREACH(rl->routers, routerinfo_t *, ri, {
int f_exit = router_is_general_exit(ri);
- int f_stable = !router_is_unreliable(ri, 1, 0);
- int f_fast = !router_is_unreliable(ri, 0, 1);
+ int f_stable = !dirserv_thinks_router_is_unreliable(ri, 1, 0);
+ int f_fast = !dirserv_thinks_router_is_unreliable(ri, 0, 1);
int f_running;
int f_authority = router_digest_is_trusted_dir(
ri->cache_info.identity_digest);
@@ -1324,6 +1341,8 @@ generate_v2_networkstatus(void)
char digest64[BASE64_DIGEST_LEN+1];
if (options->AuthoritativeDir) {
ri->is_running = dirserv_thinks_router_is_reachable(ri, now);
+ ri->is_fast = f_fast;
+ ri->is_stable = f_stable;
}
f_running = ri->is_running;
diff --git a/src/or/or.h b/src/or/or.h
index 7ea52148c..7250265c8 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -795,6 +795,8 @@ typedef struct {
*/
unsigned int is_named:1; /**< Do we believe the nickname that this OR gives
* us? */
+ unsigned int is_fast:1; /** Do we think this is a fast OR? */
+ unsigned int is_stable:1; /** Do we think this is a stable OR? */
unsigned int xx_is_recognized:1; /**< Temporary: do we think that this
* descriptor's digest is recognized?
*/
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 3fb8bbccf..8ebe6c2b2 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -716,10 +716,9 @@ router_find_exact_exit_enclave(const char *address, uint16_t port)
int
router_is_unreliable(routerinfo_t *router, int need_uptime, int need_capacity)
{
- if (need_uptime && router->uptime < ROUTER_REQUIRED_MIN_UPTIME)
+ if (need_uptime && !router->is_stable)
return 1;
- if (need_capacity &&
- router->bandwidthcapacity < ROUTER_REQUIRED_MIN_BANDWIDTH)
+ if (need_capacity && !router->is_fast)
return 1;
return 0;
}
@@ -3017,6 +3016,8 @@ routers_update_status_from_networkstatus(smartlist_t *routers,
/* If we're an authdir, don't believe others. */
router->is_verified = rs->status.is_valid;
router->is_running = rs->status.is_running;
+ router->is_fast = rs->status.is_fast;
+ router->is_stable = rs->is_stable;
}
if (router->is_running && ds) {
ds->n_networkstatus_failures = 0;