backport those three log messages
[tor.git] / src / or / routerlist.c
blob24d829e9d63747291328107bc00e30ad4eb9d0a2
1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
4 /* See LICENSE for licensing information */
5 /* $Id$ */
6 const char routerlist_c_id[] =
7 "$Id$";
9 /**
10 * \file routerlist.c
11 * \brief Code to
12 * maintain and access the global list of routerinfos for known
13 * servers.
14 **/
16 #include "or.h"
18 /****************************************************************************/
20 /* static function prototypes */
21 static routerstatus_t *router_pick_directory_server_impl(int requireother,
22 int fascistfirewall,
23 int prefer_tunnel,
24 int for_v2_directory);
25 static routerstatus_t *router_pick_trusteddirserver_impl(
26 authority_type_t type, int requireother,
27 int fascistfirewall, int prefer_tunnel);
28 static void mark_all_trusteddirservers_up(void);
29 static int router_nickname_matches(routerinfo_t *router, const char *nickname);
30 static void routerstatus_list_update_from_networkstatus(time_t now);
31 static void local_routerstatus_free(local_routerstatus_t *rs);
32 static void trusted_dir_server_free(trusted_dir_server_t *ds);
33 static void update_networkstatus_cache_downloads(time_t now);
34 static void update_networkstatus_client_downloads(time_t now);
35 static int signed_desc_digest_is_recognized(signed_descriptor_t *desc);
36 static void routerlist_assert_ok(routerlist_t *rl);
37 static int have_tried_downloading_all_statuses(int n_failures);
38 static routerstatus_t *networkstatus_find_entry(networkstatus_t *ns,
39 const char *digest);
40 static local_routerstatus_t *router_get_combined_status_by_nickname(
41 const char *nickname,
42 int warn_if_unnamed);
43 static void update_router_have_minimum_dir_info(void);
44 static void router_dir_info_changed(void);
46 /****************************************************************************/
48 /** Global list of a trusted_dir_server_t object for each trusted directory
49 * server. */
50 static smartlist_t *trusted_dir_servers = NULL;
52 /** Global list of all of the routers that we know about. */
53 static routerlist_t *routerlist = NULL;
55 /** Global list of all of the current network_status documents that we know
56 * about. This list is kept sorted by published_on. */
57 static smartlist_t *networkstatus_list = NULL;
59 /** Global list of local_routerstatus_t for each router, known or unknown.
60 * Kept sorted by digest. */
61 static smartlist_t *routerstatus_list = NULL;
63 /** Map from lowercase nickname to digest of named server, if any. */
64 static strmap_t *named_server_map = NULL;
66 /** True iff any member of networkstatus_list has changed since the last time
67 * we called routerstatus_list_update_from_networkstatus(). */
68 static int networkstatus_list_has_changed = 0;
70 /** True iff any element of routerstatus_list has changed since the last
71 * time we called routers_update_all_from_networkstatus().*/
72 static int routerstatus_list_has_changed = 0;
74 /** List of strings for nicknames we've already warned about and that are
75 * still unknown / unavailable. */
76 static smartlist_t *warned_nicknames = NULL;
78 /** List of strings for nicknames or fingerprints we've already warned about
79 * and that are still conflicted. */
80 static smartlist_t *warned_conflicts = NULL;
82 /** The last time we tried to download any routerdesc, or 0 for "never". We
83 * use this to rate-limit download attempts when the number of routerdescs to
84 * download is low. */
85 static time_t last_routerdesc_download_attempted = 0;
87 /** The last time we tried to download a networkstatus, or 0 for "never". We
88 * use this to rate-limit download attempts for directory caches (including
89 * mirrors). Clients don't use this now. */
90 static time_t last_networkstatus_download_attempted = 0;
92 /** True iff we have logged a warning about this OR not being valid or
93 * not being named. */
94 static int have_warned_about_invalid_status = 0;
95 /** True iff we have logged a warning about this OR's version being older than
96 * listed by the authorities */
97 static int have_warned_about_old_version = 0;
98 /** True iff we have logged a warning about this OR's version being newer than
99 * listed by the authorities */
100 static int have_warned_about_new_version = 0;
102 /** Return the number of v2 directory authorities */
103 static INLINE int
104 get_n_v2_authorities(void)
106 int n = 0;
107 if (!trusted_dir_servers)
108 return 0;
109 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
110 if (ds->is_v2_authority)
111 ++n);
112 return n;
115 /** Repopulate our list of network_status_t objects from the list cached on
116 * disk. Return 0 on success, -1 on failure. */
118 router_reload_networkstatus(void)
120 char filename[512];
121 smartlist_t *entries;
122 struct stat st;
123 char *s;
124 tor_assert(get_options()->DataDirectory);
125 if (!networkstatus_list)
126 networkstatus_list = smartlist_create();
128 tor_snprintf(filename,sizeof(filename),"%s/cached-status",
129 get_options()->DataDirectory);
130 entries = tor_listdir(filename);
131 SMARTLIST_FOREACH(entries, const char *, fn, {
132 char buf[DIGEST_LEN];
133 if (strlen(fn) != HEX_DIGEST_LEN ||
134 base16_decode(buf, sizeof(buf), fn, strlen(fn))) {
135 log_info(LD_DIR,
136 "Skipping cached-status file with unexpected name \"%s\"",fn);
137 continue;
139 tor_snprintf(filename,sizeof(filename),"%s/cached-status/%s",
140 get_options()->DataDirectory, fn);
141 s = read_file_to_str(filename, 0, &st);
142 if (s) {
143 if (router_set_networkstatus(s, st.st_mtime, NS_FROM_CACHE, NULL)<0) {
144 log_warn(LD_FS, "Couldn't load networkstatus from \"%s\"",filename);
146 tor_free(s);
149 SMARTLIST_FOREACH(entries, char *, fn, tor_free(fn));
150 smartlist_free(entries);
151 networkstatus_list_clean(time(NULL));
152 routers_update_all_from_networkstatus();
153 return 0;
156 /* Router descriptor storage.
158 * Routerdescs are stored in a big file, named "cached-routers". As new
159 * routerdescs arrive, we append them to a journal file named
160 * "cached-routers.new".
162 * From time to time, we replace "cached-routers" with a new file containing
163 * only the live, non-superseded descriptors, and clear cached-routers.new.
165 * On startup, we read both files.
168 /** The size of the router log, in bytes. */
169 static size_t router_journal_len = 0;
170 /** The size of the router store, in bytes. */
171 static size_t router_store_len = 0;
172 /** Total bytes dropped since last rebuild. */
173 static size_t router_bytes_dropped = 0;
175 /** Helper: return 1 iff the router log is so big we want to rebuild the
176 * store. */
177 static int
178 router_should_rebuild_store(void)
180 if (router_store_len > (1<<16))
181 return (router_journal_len > router_store_len / 2 ||
182 router_bytes_dropped > router_store_len / 2);
183 else
184 return router_journal_len > (1<<15);
187 /** Add the <b>len</b>-type router descriptor in <b>s</b> to the router
188 * journal; change its saved_location to SAVED_IN_JOURNAL and set its
189 * offset appropriately. */
190 static int
191 router_append_to_journal(signed_descriptor_t *desc)
193 or_options_t *options = get_options();
194 size_t fname_len = strlen(options->DataDirectory)+32;
195 char *fname = tor_malloc(fname_len);
196 const char *body = signed_descriptor_get_body(desc);
197 size_t len = desc->signed_descriptor_len;
199 tor_snprintf(fname, fname_len, "%s/cached-routers.new",
200 options->DataDirectory);
202 tor_assert(len == strlen(body));
204 if (append_bytes_to_file(fname, body, len, 1)) {
205 log_warn(LD_FS, "Unable to store router descriptor");
206 tor_free(fname);
207 return -1;
209 desc->saved_location = SAVED_IN_JOURNAL;
210 desc->saved_offset = router_journal_len;
212 tor_free(fname);
213 router_journal_len += len;
214 return 0;
217 /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
218 * signed_descriptor_t* in *<b>a</b> is older, the same age as, or newer than
219 * the signed_descriptor_t* in *<b>b</b>. */
220 static int
221 _compare_old_routers_by_age(const void **_a, const void **_b)
223 const signed_descriptor_t *r1 = *_a, *r2 = *_b;
224 return r1->published_on - r2->published_on;
227 /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
228 * routerinfo_t* in *<b>a</b> is older, the same age as, or newer than
229 * the routerinfo_t* in *<b>b</b>. */
230 static int
231 _compare_routers_by_age(const void **_a, const void **_b)
233 const routerinfo_t *r1 = *_a, *r2 = *_b;
234 return r1->cache_info.published_on - r2->cache_info.published_on;
237 /** If the journal is too long, or if <b>force</b> is true, then atomically
238 * replace the router store with the routers currently in our routerlist, and
239 * clear the journal. Return 0 on success, -1 on failure.
241 static int
242 router_rebuild_store(int force)
244 size_t len = 0;
245 or_options_t *options;
246 size_t fname_len;
247 smartlist_t *chunk_list = NULL;
248 char *fname = NULL, *fname_tmp = NULL;
249 int r = -1, i;
250 off_t offset = 0;
251 smartlist_t *old_routers, *routers;
253 if (!force && !router_should_rebuild_store())
254 return 0;
255 if (!routerlist)
256 return 0;
258 /* Don't save deadweight. */
259 routerlist_remove_old_routers();
261 log_info(LD_DIR, "Rebuilding router descriptor cache");
263 options = get_options();
264 fname_len = strlen(options->DataDirectory)+32;
265 fname = tor_malloc(fname_len);
266 fname_tmp = tor_malloc(fname_len);
267 tor_snprintf(fname, fname_len, "%s/cached-routers", options->DataDirectory);
268 tor_snprintf(fname_tmp, fname_len, "%s/cached-routers.tmp",
269 options->DataDirectory);
271 chunk_list = smartlist_create();
273 old_routers = smartlist_create();
274 smartlist_add_all(old_routers, routerlist->old_routers);
275 smartlist_sort(old_routers, _compare_old_routers_by_age);
276 routers = smartlist_create();
277 smartlist_add_all(routers, routerlist->routers);
278 smartlist_sort(routers, _compare_routers_by_age);
279 for (i = 0; i < 2; ++i) {
280 /* We sort the routers by age to enhance locality on disk. */
281 smartlist_t *lst = (i == 0) ? old_routers : routers;
282 /* Now, add the appropriate members to chunk_list */
283 SMARTLIST_FOREACH(lst, void *, ptr,
285 signed_descriptor_t *sd = (i==0) ?
286 ((signed_descriptor_t*)ptr): &((routerinfo_t*)ptr)->cache_info;
287 sized_chunk_t *c;
288 const char *body = signed_descriptor_get_body(sd);
289 if (!body) {
290 log_warn(LD_BUG, "Bug! No descriptor available for router.");
291 goto done;
293 c = tor_malloc(sizeof(sized_chunk_t));
294 c->bytes = body;
295 c->len = sd->signed_descriptor_len;
296 smartlist_add(chunk_list, c);
299 if (write_chunks_to_file(fname_tmp, chunk_list, 1)<0) {
300 log_warn(LD_FS, "Error writing router store to disk.");
301 goto done;
303 /* Our mmap is now invalid. */
304 if (routerlist->mmap_descriptors) {
305 tor_munmap_file(routerlist->mmap_descriptors);
307 if (replace_file(fname_tmp, fname)<0) {
308 log_warn(LD_FS, "Error replacing old router store.");
309 goto done;
312 routerlist->mmap_descriptors = tor_mmap_file(fname);
313 if (! routerlist->mmap_descriptors)
314 log_warn(LD_FS, "Unable to mmap new descriptor file at '%s'.",fname);
316 offset = 0;
317 for (i = 0; i < 2; ++i) {
318 smartlist_t *lst = (i == 0) ? old_routers : routers;
319 SMARTLIST_FOREACH(lst, void *, ptr,
321 signed_descriptor_t *sd = (i==0) ?
322 ((signed_descriptor_t*)ptr): &((routerinfo_t*)ptr)->cache_info;
324 sd->saved_location = SAVED_IN_CACHE;
325 if (routerlist->mmap_descriptors) {
326 tor_free(sd->signed_descriptor_body); // sets it to null
327 sd->saved_offset = offset;
329 offset += sd->signed_descriptor_len;
330 signed_descriptor_get_body(sd);
334 tor_snprintf(fname, fname_len, "%s/cached-routers.new",
335 options->DataDirectory);
337 write_str_to_file(fname, "", 1);
339 r = 0;
340 router_store_len = len;
341 router_journal_len = 0;
342 router_bytes_dropped = 0;
343 done:
344 smartlist_free(old_routers);
345 smartlist_free(routers);
346 tor_free(fname);
347 SMARTLIST_FOREACH(chunk_list, sized_chunk_t *, c, tor_free(c));
348 smartlist_free(chunk_list);
349 return r;
352 /** Load all cached router descriptors from the store. Return 0 on success and
353 * -1 on failure.
356 router_reload_router_list(void)
358 or_options_t *options = get_options();
359 size_t fname_len = strlen(options->DataDirectory)+32;
360 char *fname = tor_malloc(fname_len), *contents = NULL;
362 if (!routerlist)
363 router_get_routerlist(); /* mallocs and inits it in place */
365 router_journal_len = router_store_len = 0;
367 tor_snprintf(fname, fname_len, "%s/cached-routers", options->DataDirectory);
369 if (routerlist->mmap_descriptors) /* get rid of it first */
370 tor_munmap_file(routerlist->mmap_descriptors);
372 routerlist->mmap_descriptors = tor_mmap_file(fname);
373 if (routerlist->mmap_descriptors) {
374 router_store_len = routerlist->mmap_descriptors->size;
375 router_load_routers_from_string(routerlist->mmap_descriptors->data,
376 SAVED_IN_CACHE, NULL);
379 tor_snprintf(fname, fname_len, "%s/cached-routers.new",
380 options->DataDirectory);
381 if (file_status(fname) == FN_FILE)
382 contents = read_file_to_str(fname, RFTS_BIN|RFTS_IGNORE_MISSING, NULL);
383 if (contents) {
384 router_load_routers_from_string(contents,
385 SAVED_IN_JOURNAL, NULL);
386 tor_free(contents);
389 tor_free(fname);
391 if (router_journal_len) {
392 /* Always clear the journal on startup.*/
393 router_rebuild_store(1);
394 } else {
395 /* Don't cache expired routers. (This is in an else because
396 * router_rebuild_store() also calls remove_old_routers().) */
397 routerlist_remove_old_routers();
400 return 0;
403 /** Return a smartlist containing a list of trusted_dir_server_t * for all
404 * known trusted dirservers. Callers must not modify the list or its
405 * contents.
407 smartlist_t *
408 router_get_trusted_dir_servers(void)
410 if (!trusted_dir_servers)
411 trusted_dir_servers = smartlist_create();
413 return trusted_dir_servers;
416 /** Try to find a running dirserver. If there are no running dirservers
417 * in our routerlist and <b>retry_if_no_servers</b> is non-zero,
418 * set all the authoritative ones as running again, and pick one;
419 * if there are then no dirservers at all in our routerlist,
420 * reload the routerlist and try one last time. If for_runningrouters is
421 * true, then only pick a dirserver that can answer runningrouters queries
422 * (that is, a trusted dirserver, or one running 0.0.9rc5-cvs or later).
423 * Don't pick an authority if any non-authority is viable.
424 * Other args are as in router_pick_directory_server_impl().
426 routerstatus_t *
427 router_pick_directory_server(int requireother,
428 int fascistfirewall,
429 int for_v2_directory,
430 int retry_if_no_servers)
432 routerstatus_t *choice;
433 int prefer_tunnel = get_options()->PreferTunneledDirConns;
435 if (!routerlist)
436 return NULL;
438 choice = router_pick_directory_server_impl(requireother, fascistfirewall,
439 prefer_tunnel, for_v2_directory);
440 if (choice || !retry_if_no_servers)
441 return choice;
443 log_info(LD_DIR,
444 "No reachable router entries for dirservers. "
445 "Trying them all again.");
446 /* mark all authdirservers as up again */
447 mark_all_trusteddirservers_up();
448 /* try again */
449 choice = router_pick_directory_server_impl(requireother, fascistfirewall,
450 prefer_tunnel, for_v2_directory);
451 if (choice)
452 return choice;
454 log_info(LD_DIR,"Still no %s router entries. Reloading and trying again.",
455 fascistfirewall ? "reachable" : "known");
456 if (router_reload_router_list()) {
457 return NULL;
459 /* give it one last try */
460 choice = router_pick_directory_server_impl(requireother, fascistfirewall,
461 prefer_tunnel, for_v2_directory);
462 return choice;
465 /** Return the trusted_dir_server_t for the directory authority whose identity
466 * key hashes to <b>digest</b>, or NULL if no such authority is known.
468 trusted_dir_server_t *
469 router_get_trusteddirserver_by_digest(const char *digest)
471 if (!trusted_dir_servers)
472 return NULL;
474 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
476 if (!memcmp(ds->digest, digest, DIGEST_LEN))
477 return ds;
480 return NULL;
483 /** Try to find a running trusted dirserver. If there are no running
484 * trusted dirservers and <b>retry_if_no_servers</b> is non-zero,
485 * set them all as running again, and try again.
486 * If <b>need_v1_authority</b> is set, return only trusted servers
487 * that are authorities for the V1 directory protocol.
488 * Other args are as in router_pick_trusteddirserver_impl().
490 routerstatus_t *
491 router_pick_trusteddirserver(authority_type_t type,
492 int requireother,
493 int fascistfirewall,
494 int retry_if_no_servers)
496 routerstatus_t *choice;
497 int prefer_tunnel = get_options()->PreferTunneledDirConns;
499 choice = router_pick_trusteddirserver_impl(type, requireother,
500 fascistfirewall, prefer_tunnel);
501 if (choice || !retry_if_no_servers)
502 return choice;
504 log_info(LD_DIR,
505 "No trusted dirservers are reachable. Trying them all again.");
506 mark_all_trusteddirservers_up();
507 return router_pick_trusteddirserver_impl(type, requireother,
508 fascistfirewall, prefer_tunnel);
511 /** How long do we avoid using a directory server after it's given us a 503? */
512 #define DIR_503_TIMEOUT (60*60)
514 /** Pick a random running valid directory server/mirror from our
515 * routerlist. Don't pick an authority if any non-authorities are viable.
516 * If <b>fascistfirewall</b>, make sure the router we pick is allowed
517 * by our firewall options.
518 * If <b>requireother</b>, it cannot be us. If <b>for_v2_directory</b>,
519 * choose a directory server new enough to support the v2 directory
520 * functionality.
521 * If <b>prefer_tunnel</b>, choose a directory server that is reachable
522 * and supports BEGIN_DIR cells, if possible.
523 * Try to avoid using servers that are overloaded (have returned 503
524 * recently).
526 static routerstatus_t *
527 router_pick_directory_server_impl(int requireother, int fascistfirewall,
528 int prefer_tunnel, int for_v2_directory)
530 routerstatus_t *result;
531 smartlist_t *direct, *tunnel;
532 smartlist_t *trusted_direct, *trusted_tunnel;
533 smartlist_t *overloaded_direct, *overloaded_tunnel;
534 time_t now = time(NULL);
536 if (!routerstatus_list)
537 return NULL;
539 direct = smartlist_create();
540 tunnel = smartlist_create();
541 trusted_direct = smartlist_create();
542 trusted_tunnel = smartlist_create();
543 overloaded_direct = smartlist_create();
544 overloaded_tunnel = smartlist_create();
546 /* Find all the running dirservers we know about. */
547 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, _local_status,
549 routerstatus_t *status = &(_local_status->status);
550 int is_trusted;
551 int is_overloaded = _local_status->last_dir_503_at + DIR_503_TIMEOUT > now;
552 if (!status->is_running || !status->dir_port || !status->is_valid)
553 continue;
554 if (status->is_bad_directory)
555 continue;
556 if (requireother && router_digest_is_me(status->identity_digest))
557 continue;
558 is_trusted = router_digest_is_trusted_dir(status->identity_digest);
559 if (for_v2_directory && !(status->is_v2_dir || is_trusted))
560 continue;
561 if (fascistfirewall &&
562 prefer_tunnel &&
563 status->version_supports_begindir &&
564 router_get_by_digest(status->identity_digest) &&
565 fascist_firewall_allows_address_or(status->addr, status->or_port))
566 smartlist_add(is_trusted ? trusted_tunnel :
567 is_overloaded ? overloaded_tunnel : tunnel, status);
568 else if (!fascistfirewall || (fascistfirewall &&
569 fascist_firewall_allows_address_dir(status->addr,
570 status->dir_port)))
571 smartlist_add(is_trusted ? trusted_direct :
572 is_overloaded ? overloaded_direct : direct, status);
575 if (smartlist_len(tunnel)) {
576 result = routerstatus_sl_choose_by_bandwidth(tunnel);
577 } else if (smartlist_len(overloaded_tunnel)) {
578 result = routerstatus_sl_choose_by_bandwidth(overloaded_tunnel);
579 } else if (smartlist_len(trusted_tunnel)) {
580 /* FFFF We don't distinguish between trusteds and overloaded trusteds
581 * yet. Maybe one day we should. */
582 /* FFFF We also don't load balance over authorities yet. I think this
583 * is a feature, but it could easily be a bug. -RD */
584 result = smartlist_choose(trusted_tunnel);
585 } else if (smartlist_len(direct)) {
586 result = routerstatus_sl_choose_by_bandwidth(direct);
587 } else if (smartlist_len(overloaded_direct)) {
588 result = routerstatus_sl_choose_by_bandwidth(overloaded_direct);
589 } else {
590 result = smartlist_choose(trusted_direct);
592 smartlist_free(direct);
593 smartlist_free(tunnel);
594 smartlist_free(trusted_direct);
595 smartlist_free(trusted_tunnel);
596 smartlist_free(overloaded_direct);
597 smartlist_free(overloaded_tunnel);
598 return result;
601 /** Choose randomly from among the trusted dirservers that are up. If
602 * <b>fascistfirewall</b>, make sure the port we pick is allowed by our
603 * firewall options. If <b>requireother</b>, it cannot be us. If
604 * <b>need_v1_authority</b>, choose a trusted authority for the v1 directory
605 * system.
607 static routerstatus_t *
608 router_pick_trusteddirserver_impl(authority_type_t type,
609 int requireother, int fascistfirewall,
610 int prefer_tunnel)
612 smartlist_t *direct, *tunnel;
613 smartlist_t *overloaded_direct, *overloaded_tunnel;
614 routerinfo_t *me = router_get_my_routerinfo();
615 routerstatus_t *result;
616 time_t now = time(NULL);
618 direct = smartlist_create();
619 tunnel = smartlist_create();
620 overloaded_direct = smartlist_create();
621 overloaded_tunnel = smartlist_create();
623 if (!trusted_dir_servers)
624 return NULL;
626 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, d,
628 int is_overloaded =
629 d->fake_status.last_dir_503_at + DIR_503_TIMEOUT > now;
630 if (!d->is_running) continue;
631 if (type == V1_AUTHORITY && !d->is_v1_authority)
632 continue;
633 if (type == V2_AUTHORITY && !d->is_v2_authority)
634 continue;
635 if (type == HIDSERV_AUTHORITY && !d->is_hidserv_authority)
636 continue;
637 if (requireother && me && router_digest_is_me(d->digest))
638 continue;
640 if (fascistfirewall &&
641 prefer_tunnel &&
642 d->or_port &&
643 router_get_by_digest(d->digest) &&
644 fascist_firewall_allows_address_or(d->addr, d->or_port))
645 smartlist_add(is_overloaded ? overloaded_tunnel : tunnel,
646 &d->fake_status.status);
647 else if (!fascistfirewall || (fascistfirewall &&
648 fascist_firewall_allows_address_dir(d->addr,
649 d->dir_port)))
650 smartlist_add(is_overloaded ? overloaded_direct : direct,
651 &d->fake_status.status);
654 if (smartlist_len(tunnel)) {
655 result = smartlist_choose(tunnel);
656 } else if (smartlist_len(overloaded_tunnel)) {
657 result = smartlist_choose(overloaded_tunnel);
658 } else if (smartlist_len(direct)) {
659 result = smartlist_choose(direct);
660 } else {
661 result = smartlist_choose(overloaded_direct);
664 smartlist_free(direct);
665 smartlist_free(tunnel);
666 smartlist_free(overloaded_direct);
667 smartlist_free(overloaded_tunnel);
668 return result;
671 /** Go through and mark the authoritative dirservers as up. */
672 static void
673 mark_all_trusteddirservers_up(void)
675 if (routerlist) {
676 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
677 if (router_digest_is_trusted_dir(router->cache_info.identity_digest) &&
678 router->dir_port > 0) {
679 router->is_running = 1;
682 if (trusted_dir_servers) {
683 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, dir,
685 local_routerstatus_t *rs;
686 dir->is_running = 1;
687 dir->n_networkstatus_failures = 0;
688 dir->fake_status.last_dir_503_at = 0;
689 rs = router_get_combined_status_by_digest(dir->digest);
690 if (rs && !rs->status.is_running) {
691 rs->status.is_running = 1;
692 rs->last_dir_503_at = 0;
693 control_event_networkstatus_changed_single(rs);
697 last_networkstatus_download_attempted = 0;
698 router_dir_info_changed();
701 /** Reset all internal variables used to count failed downloads of network
702 * status objects. */
703 void
704 router_reset_status_download_failures(void)
706 mark_all_trusteddirservers_up();
709 /** Look through the routerlist and identify routers that
710 * advertise the same /16 network address as <b>router</b>.
711 * Add each of them to <b>sl</b>.
713 static void
714 routerlist_add_network_family(smartlist_t *sl, routerinfo_t *router)
716 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, r,
718 if (router != r &&
719 (router->addr & 0xffff0000) == (r->addr & 0xffff0000))
720 smartlist_add(sl, r);
724 /** Add all the family of <b>router</b> to the smartlist <b>sl</b>.
725 * This is used to make sure we don't pick siblings in a single path.
727 void
728 routerlist_add_family(smartlist_t *sl, routerinfo_t *router)
730 routerinfo_t *r;
731 config_line_t *cl;
732 or_options_t *options = get_options();
734 /* First, add any routers with similar network addresses. */
735 if (options->EnforceDistinctSubnets)
736 routerlist_add_network_family(sl, router);
738 if (!router->declared_family)
739 return;
741 /* Add every r such that router declares familyness with r, and r
742 * declares familyhood with router. */
743 SMARTLIST_FOREACH(router->declared_family, const char *, n,
745 if (!(r = router_get_by_nickname(n, 0)))
746 continue;
747 if (!r->declared_family)
748 continue;
749 SMARTLIST_FOREACH(r->declared_family, const char *, n2,
751 if (router_nickname_matches(router, n2))
752 smartlist_add(sl, r);
756 /* If the user declared any families locally, honor those too. */
757 for (cl = get_options()->NodeFamilies; cl; cl = cl->next) {
758 if (router_nickname_is_in_list(router, cl->value)) {
759 add_nickname_list_to_smartlist(sl, cl->value, 0);
764 /** Given a (possibly NULL) comma-and-whitespace separated list of nicknames,
765 * see which nicknames in <b>list</b> name routers in our routerlist, and add
766 * the routerinfos for those routers to <b>sl</b>. If <b>must_be_running</b>,
767 * only include routers that we think are running.
768 * Warn if any non-Named routers are specified by nickname.
770 void
771 add_nickname_list_to_smartlist(smartlist_t *sl, const char *list,
772 int must_be_running)
774 routerinfo_t *router;
775 smartlist_t *nickname_list;
776 int have_dir_info = router_have_minimum_dir_info();
778 if (!list)
779 return; /* nothing to do */
780 tor_assert(sl);
782 nickname_list = smartlist_create();
783 if (!warned_nicknames)
784 warned_nicknames = smartlist_create();
786 smartlist_split_string(nickname_list, list, ",",
787 SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
789 SMARTLIST_FOREACH(nickname_list, const char *, nick, {
790 int warned;
791 if (!is_legal_nickname_or_hexdigest(nick)) {
792 log_warn(LD_CONFIG, "Nickname '%s' is misformed; skipping", nick);
793 continue;
795 router = router_get_by_nickname(nick, 1);
796 warned = smartlist_string_isin(warned_nicknames, nick);
797 if (router) {
798 if (!must_be_running || router->is_running) {
799 smartlist_add(sl,router);
801 } else if (!router_get_combined_status_by_nickname(nick,1)) {
802 if (!warned) {
803 log_fn(have_dir_info ? LOG_WARN : LOG_INFO, LD_CONFIG,
804 "Nickname list includes '%s' which isn't a known router.",nick);
805 smartlist_add(warned_nicknames, tor_strdup(nick));
809 SMARTLIST_FOREACH(nickname_list, char *, nick, tor_free(nick));
810 smartlist_free(nickname_list);
813 /** Return 1 iff any member of the (possibly NULL) comma-separated list
814 * <b>list</b> is an acceptable nickname or hexdigest for <b>router</b>. Else
815 * return 0.
818 router_nickname_is_in_list(routerinfo_t *router, const char *list)
820 smartlist_t *nickname_list;
821 int v = 0;
823 if (!list)
824 return 0; /* definitely not */
825 tor_assert(router);
827 nickname_list = smartlist_create();
828 smartlist_split_string(nickname_list, list, ",",
829 SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
830 SMARTLIST_FOREACH(nickname_list, const char *, cp,
831 if (router_nickname_matches(router, cp)) {v=1;break;});
832 SMARTLIST_FOREACH(nickname_list, char *, cp, tor_free(cp));
833 smartlist_free(nickname_list);
834 return v;
837 /** Add every suitable router from our routerlist to <b>sl</b>, so that
838 * we can pick a node for a circuit.
840 static void
841 router_add_running_routers_to_smartlist(smartlist_t *sl, int allow_invalid,
842 int need_uptime, int need_capacity,
843 int need_guard)
845 if (!routerlist)
846 return;
848 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
850 if (router->is_running &&
851 router->purpose == ROUTER_PURPOSE_GENERAL &&
852 (router->is_valid || allow_invalid) &&
853 !router_is_unreliable(router, need_uptime,
854 need_capacity, need_guard)) {
855 /* If it's running, and it's suitable according to the
856 * other flags we had in mind */
857 smartlist_add(sl, router);
862 /** Look through the routerlist until we find a router that has my key.
863 Return it. */
864 routerinfo_t *
865 routerlist_find_my_routerinfo(void)
867 if (!routerlist)
868 return NULL;
870 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
872 if (router_is_me(router))
873 return router;
875 return NULL;
878 /** Find a router that's up, that has this IP address, and
879 * that allows exit to this address:port, or return NULL if there
880 * isn't a good one.
882 routerinfo_t *
883 router_find_exact_exit_enclave(const char *address, uint16_t port)
885 uint32_t addr;
886 struct in_addr in;
888 if (!tor_inet_aton(address, &in))
889 return NULL; /* it's not an IP already */
890 addr = ntohl(in.s_addr);
892 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
894 if (router->is_running &&
895 router->addr == addr &&
896 compare_addr_to_addr_policy(addr, port, router->exit_policy) ==
897 ADDR_POLICY_ACCEPTED)
898 return router;
900 return NULL;
903 /** Return 1 if <b>router</b> is not suitable for these parameters, else 0.
904 * If <b>need_uptime</b> is non-zero, we require a minimum uptime.
905 * If <b>need_capacity</b> is non-zero, we require a minimum advertised
906 * bandwidth.
907 * If <b>need_guard</b>, we require that the router is a possible entry guard.
910 router_is_unreliable(routerinfo_t *router, int need_uptime,
911 int need_capacity, int need_guard)
913 if (need_uptime && !router->is_stable)
914 return 1;
915 if (need_capacity && !router->is_fast)
916 return 1;
917 if (need_guard && !router->is_possible_guard)
918 return 1;
919 return 0;
922 /** Return the smaller of the router's configured BandwidthRate
923 * and its advertised capacity. */
924 uint32_t
925 router_get_advertised_bandwidth(routerinfo_t *router)
927 if (router->bandwidthcapacity < router->bandwidthrate)
928 return router->bandwidthcapacity;
929 return router->bandwidthrate;
932 /** Do not weight any declared bandwidth more than this much when picking
933 * routers by bandwidth. */
934 #define MAX_BELIEVABLE_BANDWIDTH 1500000 /* 1.5 MB/sec */
936 /** Helper function:
937 * choose a random element of smartlist <b>sl</b>, weighted by
938 * the advertised bandwidth of each element.
940 * If <b>statuses</b> is zero, then <b>sl</b> is a list of
941 * routerinfo_t's. Otherwise it's a list of routerstatus_t's.
943 * If <b>for_exit</b>, we're picking an exit node: consider all nodes'
944 * bandwidth equally regardless of their Exit status. If not <b>for_exit</b>,
945 * we're picking a non-exit node: weight exit-node's bandwidth downwards
946 * depending on the smallness of the fraction of Exit-to-total bandwidth.
948 static void *
949 smartlist_choose_by_bandwidth(smartlist_t *sl, int for_exit, int statuses)
951 int i;
952 routerinfo_t *router;
953 routerstatus_t *status;
954 int32_t *bandwidths;
955 int is_exit;
956 uint64_t total_nonexit_bw = 0, total_exit_bw = 0, total_bw = 0;
957 uint64_t rand_bw, tmp;
958 double exit_weight;
959 int n_unknown = 0;
961 /* First count the total bandwidth weight, and make a list
962 * of each value. <0 means "unknown; no routerinfo." We use the
963 * bits of negative values to remember whether the router was fast (-x)&1
964 * and whether it was an exit (-x)&2. Yes, it's a hack. */
965 bandwidths = tor_malloc(sizeof(int32_t)*smartlist_len(sl));
967 /* Iterate over all the routerinfo_t or routerstatus_t, and */
968 for (i = 0; i < smartlist_len(sl); ++i) {
969 /* first, learn what bandwidth we think i has */
970 int is_known = 1;
971 int32_t flags = 0;
972 uint32_t this_bw = 0;
973 if (statuses) {
974 /* need to extract router info */
975 status = smartlist_get(sl, i);
976 router = router_get_by_digest(status->identity_digest);
977 is_exit = status->is_exit;
978 if (router) {
979 this_bw = router_get_advertised_bandwidth(router);
980 } else { /* guess */
981 is_known = 0;
982 flags = status->is_fast ? 1 : 0;
983 flags |= is_exit ? 2 : 0;
985 } else {
986 router = smartlist_get(sl, i);
987 is_exit = router->is_exit;
988 this_bw = router_get_advertised_bandwidth(router);
990 /* if they claim something huge, don't believe it */
991 if (this_bw > MAX_BELIEVABLE_BANDWIDTH)
992 this_bw = MAX_BELIEVABLE_BANDWIDTH;
993 if (is_known) {
994 bandwidths[i] = (int32_t) this_bw; // safe since MAX_BELIEVABLE<INT32_MAX
995 if (is_exit)
996 total_exit_bw += this_bw;
997 else
998 total_nonexit_bw += this_bw;
999 } else {
1000 ++n_unknown;
1001 bandwidths[i] = -flags;
1005 /* Now, fill in the unknown values. */
1006 if (n_unknown) {
1007 int32_t avg_fast, avg_slow;
1008 if (total_exit_bw+total_nonexit_bw) {
1009 /* if there's some bandwidth, there's at least one known router,
1010 * so no worries about div by 0 here */
1011 int n_known = smartlist_len(sl)-n_unknown;
1012 avg_fast = avg_slow = (int32_t)
1013 ((total_exit_bw+total_nonexit_bw)/((uint64_t) n_known));
1014 } else {
1015 avg_fast = 40000;
1016 avg_slow = 20000;
1018 for (i=0; i<smartlist_len(sl); ++i) {
1019 int32_t bw = bandwidths[i];
1020 if (bw>=0)
1021 continue;
1022 is_exit = ((-bw)&2);
1023 bandwidths[i] = ((-bw)&1) ? avg_fast : avg_slow;
1024 if (is_exit)
1025 total_exit_bw += bandwidths[i];
1026 else
1027 total_nonexit_bw += bandwidths[i];
1031 /* If there's no bandwidth at all, pick at random. */
1032 if (!(total_exit_bw+total_nonexit_bw)) {
1033 tor_free(bandwidths);
1034 return smartlist_choose(sl);
1037 /* Figure out how to weight exits. */
1038 if (for_exit) {
1039 /* If we're choosing an exit node, exit bandwidth counts fully. */
1040 exit_weight = 1.0;
1041 total_bw = total_exit_bw + total_nonexit_bw;
1042 } else if (total_exit_bw < total_nonexit_bw / 2) {
1043 /* If we're choosing a relay and exits are greatly outnumbered, ignore
1044 * them. */
1045 exit_weight = 0.0;
1046 total_bw = total_nonexit_bw;
1047 } else {
1048 /* If we're choosing a relay and exits aren't outnumbered use the formula
1049 * from path-spec. */
1050 uint64_t leftover = (total_exit_bw - total_nonexit_bw / 2);
1051 exit_weight = U64_TO_DBL(leftover) /
1052 U64_TO_DBL(leftover + total_nonexit_bw);
1053 total_bw = total_nonexit_bw +
1054 DBL_TO_U64(exit_weight * U64_TO_DBL(total_exit_bw));
1057 log_debug(LD_CIRC, "Total bw = "U64_FORMAT", total exit bw = "U64_FORMAT
1058 ", total nonexit bw = "U64_FORMAT", exit weight = %lf "
1059 "(for exit == %d)",
1060 U64_PRINTF_ARG(total_bw), U64_PRINTF_ARG(total_exit_bw),
1061 U64_PRINTF_ARG(total_nonexit_bw), exit_weight, for_exit);
1064 /* Almost done: choose a random value from the bandwidth weights. */
1065 rand_bw = crypto_rand_uint64(total_bw);
1067 /* Last, count through sl until we get to the element we picked */
1068 tmp = 0;
1069 for (i=0; i < smartlist_len(sl); i++) {
1070 if (statuses) {
1071 status = smartlist_get(sl, i);
1072 is_exit = status->is_exit;
1073 } else {
1074 router = smartlist_get(sl, i);
1075 is_exit = router->is_exit;
1077 if (is_exit)
1078 tmp += ((uint64_t)(bandwidths[i] * exit_weight));
1079 else
1080 tmp += bandwidths[i];
1081 if (tmp >= rand_bw)
1082 break;
1084 tor_free(bandwidths);
1085 return smartlist_get(sl, i);
1088 /** Choose a random element of router list <b>sl</b>, weighted by
1089 * the advertised bandwidth of each router.
1091 routerinfo_t *
1092 routerlist_sl_choose_by_bandwidth(smartlist_t *sl, int for_exit)
1094 return smartlist_choose_by_bandwidth(sl, for_exit, 0);
1097 /** Choose a random element of status list <b>sl</b>, weighted by
1098 * the advertised bandwidth of each status.
1100 routerstatus_t *
1101 routerstatus_sl_choose_by_bandwidth(smartlist_t *sl)
1103 return smartlist_choose_by_bandwidth(sl, 1, 1);
1106 /** Return a random running router from the routerlist. If any node
1107 * named in <b>preferred</b> is available, pick one of those. Never
1108 * pick a node named in <b>excluded</b>, or whose routerinfo is in
1109 * <b>excludedsmartlist</b>, even if they are the only nodes
1110 * available. If <b>strict</b> is true, never pick any node besides
1111 * those in <b>preferred</b>.
1112 * If <b>need_uptime</b> is non-zero and any router has more than
1113 * a minimum uptime, return one of those.
1114 * If <b>need_capacity</b> is non-zero, weight your choice by the
1115 * advertised capacity of each router.
1116 * If ! <b>allow_invalid</b>, consider only Valid routers.
1117 * If <b>need_guard</b>, consider only Guard routers.
1118 * If <b>weight_for_exit</b>, we weight bandwidths as if picking an exit node,
1119 * otherwise we weight bandwidths for picking a relay node (that is, possibly
1120 * discounting exit nodes).
1122 routerinfo_t *
1123 router_choose_random_node(const char *preferred,
1124 const char *excluded,
1125 smartlist_t *excludedsmartlist,
1126 int need_uptime, int need_capacity,
1127 int need_guard,
1128 int allow_invalid, int strict,
1129 int weight_for_exit)
1131 smartlist_t *sl, *excludednodes;
1132 routerinfo_t *choice = NULL;
1134 excludednodes = smartlist_create();
1135 add_nickname_list_to_smartlist(excludednodes,excluded,0);
1137 /* Try the preferred nodes first. Ignore need_uptime and need_capacity
1138 * and need_guard, since the user explicitly asked for these nodes. */
1139 if (preferred) {
1140 sl = smartlist_create();
1141 add_nickname_list_to_smartlist(sl,preferred,1);
1142 smartlist_subtract(sl,excludednodes);
1143 if (excludedsmartlist)
1144 smartlist_subtract(sl,excludedsmartlist);
1145 choice = smartlist_choose(sl);
1146 smartlist_free(sl);
1148 if (!choice && !strict) {
1149 /* Then give up on our preferred choices: any node
1150 * will do that has the required attributes. */
1151 sl = smartlist_create();
1152 router_add_running_routers_to_smartlist(sl, allow_invalid,
1153 need_uptime, need_capacity,
1154 need_guard);
1155 smartlist_subtract(sl,excludednodes);
1156 if (excludedsmartlist)
1157 smartlist_subtract(sl,excludedsmartlist);
1159 if (need_capacity)
1160 choice = routerlist_sl_choose_by_bandwidth(sl, weight_for_exit);
1161 else
1162 choice = smartlist_choose(sl);
1164 smartlist_free(sl);
1165 if (!choice && (need_uptime || need_capacity || need_guard)) {
1166 /* try once more -- recurse but with fewer restrictions. */
1167 log_info(LD_CIRC,
1168 "We couldn't find any live%s%s%s routers; falling back "
1169 "to list of all routers.",
1170 need_capacity?", fast":"",
1171 need_uptime?", stable":"",
1172 need_guard?", guard":"");
1173 choice = router_choose_random_node(
1174 NULL, excluded, excludedsmartlist,
1175 0, 0, 0, allow_invalid, 0, weight_for_exit);
1178 smartlist_free(excludednodes);
1179 if (!choice) {
1180 if (strict) {
1181 log_warn(LD_CIRC, "All preferred nodes were down when trying to choose "
1182 "node, and the Strict[...]Nodes option is set. Failing.");
1183 } else {
1184 log_warn(LD_CIRC,
1185 "No available nodes when trying to choose node. Failing.");
1188 return choice;
1191 /** Return true iff the digest of <b>router</b>'s identity key,
1192 * encoded in hexadecimal, matches <b>hexdigest</b> (which is
1193 * optionally prefixed with a single dollar sign). Return false if
1194 * <b>hexdigest</b> is malformed, or it doesn't match. */
1195 static INLINE int
1196 router_hex_digest_matches(routerinfo_t *router, const char *hexdigest)
1198 char digest[DIGEST_LEN];
1199 size_t len;
1200 tor_assert(hexdigest);
1201 if (hexdigest[0] == '$')
1202 ++hexdigest;
1204 len = strlen(hexdigest);
1205 if (len < HEX_DIGEST_LEN)
1206 return 0;
1207 else if (len > HEX_DIGEST_LEN &&
1208 (hexdigest[HEX_DIGEST_LEN] == '=' ||
1209 hexdigest[HEX_DIGEST_LEN] == '~')) {
1210 if (strcasecmp(hexdigest+HEX_DIGEST_LEN+1, router->nickname))
1211 return 0;
1212 if (hexdigest[HEX_DIGEST_LEN] == '=' && !router->is_named)
1213 return 0;
1216 if (base16_decode(digest, DIGEST_LEN, hexdigest, HEX_DIGEST_LEN)<0)
1217 return 0;
1218 return (!memcmp(digest, router->cache_info.identity_digest, DIGEST_LEN));
1221 /** Return true if <b>router</b>'s nickname matches <b>nickname</b>
1222 * (case-insensitive), or if <b>router's</b> identity key digest
1223 * matches a hexadecimal value stored in <b>nickname</b>. Return
1224 * false otherwise. */
1225 static int
1226 router_nickname_matches(routerinfo_t *router, const char *nickname)
1228 if (nickname[0]!='$' && !strcasecmp(router->nickname, nickname))
1229 return 1;
1230 return router_hex_digest_matches(router, nickname);
1233 /** Return the router in our routerlist whose (case-insensitive)
1234 * nickname or (case-sensitive) hexadecimal key digest is
1235 * <b>nickname</b>. Return NULL if no such router is known.
1237 routerinfo_t *
1238 router_get_by_nickname(const char *nickname, int warn_if_unnamed)
1240 int maybedigest;
1241 char digest[DIGEST_LEN];
1242 routerinfo_t *best_match=NULL;
1243 int n_matches = 0;
1244 char *named_digest = NULL;
1246 tor_assert(nickname);
1247 if (!routerlist)
1248 return NULL;
1249 if (nickname[0] == '$')
1250 return router_get_by_hexdigest(nickname);
1251 if (!strcasecmp(nickname, UNNAMED_ROUTER_NICKNAME))
1252 return NULL;
1253 if (server_mode(get_options()) &&
1254 !strcasecmp(nickname, get_options()->Nickname))
1255 return router_get_my_routerinfo();
1257 maybedigest = (strlen(nickname) >= HEX_DIGEST_LEN) &&
1258 (base16_decode(digest,DIGEST_LEN,nickname,HEX_DIGEST_LEN) == 0);
1260 if (named_server_map &&
1261 (named_digest = strmap_get_lc(named_server_map, nickname))) {
1262 return digestmap_get(routerlist->identity_map, named_digest);
1265 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
1267 if (!strcasecmp(router->nickname, nickname)) {
1268 ++n_matches;
1269 if (n_matches <= 1 || router->is_running)
1270 best_match = router;
1271 } else if (maybedigest &&
1272 !memcmp(digest, router->cache_info.identity_digest, DIGEST_LEN)
1274 if (router_hex_digest_matches(router, nickname))
1275 return router;
1276 else
1277 best_match = router; // XXXX NM not exactly right.
1281 if (best_match) {
1282 if (warn_if_unnamed && n_matches > 1) {
1283 smartlist_t *fps = smartlist_create();
1284 int any_unwarned = 0;
1285 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
1287 local_routerstatus_t *rs;
1288 char *desc;
1289 size_t dlen;
1290 char fp[HEX_DIGEST_LEN+1];
1291 if (strcasecmp(router->nickname, nickname))
1292 continue;
1293 rs = router_get_combined_status_by_digest(
1294 router->cache_info.identity_digest);
1295 if (rs && !rs->name_lookup_warned) {
1296 rs->name_lookup_warned = 1;
1297 any_unwarned = 1;
1299 base16_encode(fp, sizeof(fp),
1300 router->cache_info.identity_digest, DIGEST_LEN);
1301 dlen = 32 + HEX_DIGEST_LEN + strlen(router->address);
1302 desc = tor_malloc(dlen);
1303 tor_snprintf(desc, dlen, "\"$%s\" for the one at %s:%d",
1304 fp, router->address, router->or_port);
1305 smartlist_add(fps, desc);
1307 if (any_unwarned) {
1308 char *alternatives = smartlist_join_strings(fps, "; ",0,NULL);
1309 log_warn(LD_CONFIG,
1310 "There are multiple matches for the nickname \"%s\","
1311 " but none is listed as named by the directory authorities. "
1312 "Choosing one arbitrarily. If you meant one in particular, "
1313 "you should say %s.", nickname, alternatives);
1314 tor_free(alternatives);
1316 SMARTLIST_FOREACH(fps, char *, cp, tor_free(cp));
1317 smartlist_free(fps);
1318 } else if (warn_if_unnamed) {
1319 local_routerstatus_t *rs = router_get_combined_status_by_digest(
1320 best_match->cache_info.identity_digest);
1321 if (rs && !rs->name_lookup_warned) {
1322 char fp[HEX_DIGEST_LEN+1];
1323 base16_encode(fp, sizeof(fp),
1324 best_match->cache_info.identity_digest, DIGEST_LEN);
1325 log_warn(LD_CONFIG, "You specified a server \"%s\" by name, but this "
1326 "name is not registered, so it could be used by any server, "
1327 "not just the one you meant. "
1328 "To make sure you get the same server in the future, refer to "
1329 "it by key, as \"$%s\".", nickname, fp);
1330 rs->name_lookup_warned = 1;
1333 return best_match;
1336 return NULL;
1339 /** Try to find a routerinfo for <b>digest</b>. If we don't have one,
1340 * return 1. If we do, ask tor_version_as_new_as() for the answer.
1343 router_digest_version_as_new_as(const char *digest, const char *cutoff)
1345 routerinfo_t *router = router_get_by_digest(digest);
1346 if (!router)
1347 return 1;
1348 return tor_version_as_new_as(router->platform, cutoff);
1351 /** Return true iff <b>digest</b> is the digest of the identity key of
1352 * a trusted directory. */
1354 router_digest_is_trusted_dir(const char *digest)
1356 if (!trusted_dir_servers)
1357 return 0;
1358 if (get_options()->AuthoritativeDir &&
1359 router_digest_is_me(digest))
1360 return 1;
1361 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ent,
1362 if (!memcmp(digest, ent->digest, DIGEST_LEN)) return 1);
1363 return 0;
1366 /** Return the router in our routerlist whose hexadecimal key digest
1367 * is <b>hexdigest</b>. Return NULL if no such router is known. */
1368 routerinfo_t *
1369 router_get_by_hexdigest(const char *hexdigest)
1371 char digest[DIGEST_LEN];
1372 size_t len;
1373 routerinfo_t *ri;
1375 tor_assert(hexdigest);
1376 if (!routerlist)
1377 return NULL;
1378 if (hexdigest[0]=='$')
1379 ++hexdigest;
1380 len = strlen(hexdigest);
1381 if (len < HEX_DIGEST_LEN ||
1382 base16_decode(digest,DIGEST_LEN,hexdigest,HEX_DIGEST_LEN) < 0)
1383 return NULL;
1385 ri = router_get_by_digest(digest);
1387 if (len > HEX_DIGEST_LEN) {
1388 if (hexdigest[HEX_DIGEST_LEN] == '=') {
1389 if (strcasecmp(ri->nickname, hexdigest+HEX_DIGEST_LEN+1) ||
1390 !ri->is_named)
1391 return NULL;
1392 } else if (hexdigest[HEX_DIGEST_LEN] == '~') {
1393 if (strcasecmp(ri->nickname, hexdigest+HEX_DIGEST_LEN+1))
1394 return NULL;
1395 } else {
1396 return NULL;
1400 return ri;
1403 /** Return the router in our routerlist whose 20-byte key digest
1404 * is <b>digest</b>. Return NULL if no such router is known. */
1405 routerinfo_t *
1406 router_get_by_digest(const char *digest)
1408 tor_assert(digest);
1410 if (!routerlist) return NULL;
1412 // routerlist_assert_ok(routerlist);
1414 return digestmap_get(routerlist->identity_map, digest);
1417 /** Return the router in our routerlist whose 20-byte descriptor
1418 * is <b>digest</b>. Return NULL if no such router is known. */
1419 signed_descriptor_t *
1420 router_get_by_descriptor_digest(const char *digest)
1422 tor_assert(digest);
1424 if (!routerlist) return NULL;
1426 return digestmap_get(routerlist->desc_digest_map, digest);
1429 /** Return a pointer to the signed textual representation of a descriptor.
1430 * The returned string is not guaranteed to be NUL-terminated: the string's
1431 * length will be in desc-\>signed_descriptor_len. */
1432 const char *
1433 signed_descriptor_get_body(signed_descriptor_t *desc)
1435 const char *r;
1436 size_t len = desc->signed_descriptor_len;
1437 tor_assert(len > 32);
1438 if (desc->saved_location == SAVED_IN_CACHE && routerlist &&
1439 routerlist->mmap_descriptors) {
1440 tor_assert(desc->saved_offset + len <= routerlist->mmap_descriptors->size);
1441 r = routerlist->mmap_descriptors->data + desc->saved_offset;
1442 } else {
1443 r = desc->signed_descriptor_body;
1445 tor_assert(r);
1446 tor_assert(!memcmp("router ", r, 7));
1447 #if 0
1448 tor_assert(!memcmp("\n-----END SIGNATURE-----\n",
1449 r + len - 25, 25));
1450 #endif
1452 return r;
1455 /** Return the current list of all known routers. */
1456 routerlist_t *
1457 router_get_routerlist(void)
1459 if (!routerlist) {
1460 routerlist = tor_malloc_zero(sizeof(routerlist_t));
1461 routerlist->routers = smartlist_create();
1462 routerlist->old_routers = smartlist_create();
1463 routerlist->identity_map = digestmap_new();
1464 routerlist->desc_digest_map = digestmap_new();
1466 return routerlist;
1469 /** Free all storage held by <b>router</b>. */
1470 void
1471 routerinfo_free(routerinfo_t *router)
1473 if (!router)
1474 return;
1476 tor_free(router->cache_info.signed_descriptor_body);
1477 tor_free(router->address);
1478 tor_free(router->nickname);
1479 tor_free(router->platform);
1480 tor_free(router->contact_info);
1481 if (router->onion_pkey)
1482 crypto_free_pk_env(router->onion_pkey);
1483 if (router->identity_pkey)
1484 crypto_free_pk_env(router->identity_pkey);
1485 if (router->declared_family) {
1486 SMARTLIST_FOREACH(router->declared_family, char *, s, tor_free(s));
1487 smartlist_free(router->declared_family);
1489 addr_policy_free(router->exit_policy);
1490 tor_free(router);
1493 /** Release storage held by <b>sd</b>. */
1494 static void
1495 signed_descriptor_free(signed_descriptor_t *sd)
1497 tor_free(sd->signed_descriptor_body);
1498 tor_free(sd);
1501 /** Extract a signed_descriptor_t from a routerinfo, and free the routerinfo.
1503 static signed_descriptor_t *
1504 signed_descriptor_from_routerinfo(routerinfo_t *ri)
1506 signed_descriptor_t *sd = tor_malloc_zero(sizeof(signed_descriptor_t));
1507 memcpy(sd, &(ri->cache_info), sizeof(signed_descriptor_t));
1508 ri->cache_info.signed_descriptor_body = NULL;
1509 routerinfo_free(ri);
1510 return sd;
1513 /** Free all storage held by a routerlist <b>rl</b> */
1514 void
1515 routerlist_free(routerlist_t *rl)
1517 tor_assert(rl);
1518 digestmap_free(rl->identity_map, NULL);
1519 digestmap_free(rl->desc_digest_map, NULL);
1520 SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r,
1521 routerinfo_free(r));
1522 SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd,
1523 signed_descriptor_free(sd));
1524 smartlist_free(rl->routers);
1525 smartlist_free(rl->old_routers);
1526 if (routerlist->mmap_descriptors)
1527 tor_munmap_file(routerlist->mmap_descriptors);
1528 tor_free(rl);
1530 router_dir_info_changed();
1533 void
1534 dump_routerlist_mem_usage(int severity)
1536 uint64_t livedescs = 0;
1537 uint64_t olddescs = 0;
1538 if (!routerlist)
1539 return;
1540 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, r,
1541 livedescs += r->cache_info.signed_descriptor_len);
1542 SMARTLIST_FOREACH(routerlist->old_routers, signed_descriptor_t *, sd,
1543 olddescs += sd->signed_descriptor_len);
1545 log(severity, LD_GENERAL,
1546 "In %d live descriptors: "U64_FORMAT" bytes. "
1547 "In %d old descriptors: "U64_FORMAT" bytes.",
1548 smartlist_len(routerlist->routers), U64_PRINTF_ARG(livedescs),
1549 smartlist_len(routerlist->old_routers), U64_PRINTF_ARG(olddescs));
1552 /** Return the greatest number of routerdescs we'll hold for any given router.
1554 static int
1555 max_descriptors_per_router(void)
1557 int n_authorities = get_n_v2_authorities();
1558 return (n_authorities < 5) ? 5 : n_authorities;
1561 /** Return non-zero if we have a lot of extra descriptors in our
1562 * routerlist, and should get rid of some of them. Else return 0.
1564 * We should be careful to not return true too eagerly, since we
1565 * could churn. By using "+1" below, we make sure this function
1566 * only returns true at most every smartlist_len(rl-\>routers)
1567 * new descriptors.
1569 static INLINE int
1570 routerlist_is_overfull(routerlist_t *rl)
1572 return smartlist_len(rl->old_routers) >
1573 smartlist_len(rl->routers)*(max_descriptors_per_router()+1);
1576 static INLINE int
1577 _routerlist_find_elt(smartlist_t *sl, void *ri, int idx)
1579 if (idx < 0 || smartlist_get(sl, idx) != ri) {
1580 idx = -1;
1581 SMARTLIST_FOREACH(sl, routerinfo_t *, r,
1582 if (r == ri) {
1583 idx = r_sl_idx;
1584 break;
1587 return idx;
1590 /** Insert an item <b>ri</b> into the routerlist <b>rl</b>, updating indices
1591 * as needed. */
1592 static void
1593 routerlist_insert(routerlist_t *rl, routerinfo_t *ri)
1595 digestmap_set(rl->identity_map, ri->cache_info.identity_digest, ri);
1596 digestmap_set(rl->desc_digest_map, ri->cache_info.signed_descriptor_digest,
1597 &(ri->cache_info));
1598 smartlist_add(rl->routers, ri);
1599 ri->routerlist_index = smartlist_len(rl->routers) - 1;
1600 router_dir_info_changed();
1601 // routerlist_assert_ok(rl);
1604 /** If we're a directory cache and routerlist <b>rl</b> doesn't have
1605 * a copy of router <b>ri</b> yet, add it to the list of old (not
1606 * recommended but still served) descriptors. Else free it. */
1607 static void
1608 routerlist_insert_old(routerlist_t *rl, routerinfo_t *ri)
1610 if (get_options()->DirPort &&
1611 !digestmap_get(rl->desc_digest_map,
1612 ri->cache_info.signed_descriptor_digest)) {
1613 signed_descriptor_t *sd = signed_descriptor_from_routerinfo(ri);
1614 digestmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
1615 smartlist_add(rl->old_routers, sd);
1616 } else {
1617 routerinfo_free(ri);
1619 // routerlist_assert_ok(rl);
1622 /** Remove an item <b>ri</b> from the routerlist <b>rl</b>, updating indices
1623 * as needed. If <b>idx</b> is nonnegative and smartlist_get(rl-&gt;routers,
1624 * idx) == ri, we don't need to do a linear search over the list to decide
1625 * which to remove. We fill the gap in rl-&gt;routers with a later element in
1626 * the list, if any exists. <b>ri</b> is freed. */
1627 void
1628 routerlist_remove(routerlist_t *rl, routerinfo_t *ri, int idx, int make_old)
1630 routerinfo_t *ri_tmp;
1631 idx = _routerlist_find_elt(rl->routers, ri, idx);
1632 if (idx < 0)
1633 return;
1634 ri->routerlist_index = -1;
1635 smartlist_del(rl->routers, idx);
1636 if (idx < smartlist_len(rl->routers)) {
1637 routerinfo_t *r = smartlist_get(rl->routers, idx);
1638 r->routerlist_index = idx;
1641 ri_tmp = digestmap_remove(rl->identity_map, ri->cache_info.identity_digest);
1642 router_dir_info_changed();
1643 tor_assert(ri_tmp == ri);
1644 if (make_old && get_options()->DirPort) {
1645 signed_descriptor_t *sd;
1646 sd = signed_descriptor_from_routerinfo(ri);
1647 smartlist_add(rl->old_routers, sd);
1648 digestmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
1649 } else {
1650 ri_tmp = digestmap_remove(rl->desc_digest_map,
1651 ri->cache_info.signed_descriptor_digest);
1652 tor_assert(ri_tmp == ri);
1653 router_bytes_dropped += ri->cache_info.signed_descriptor_len;
1654 routerinfo_free(ri);
1656 // routerlist_assert_ok(rl);
1659 static void
1660 routerlist_remove_old(routerlist_t *rl, signed_descriptor_t *sd, int idx)
1662 signed_descriptor_t *sd_tmp;
1663 idx = _routerlist_find_elt(rl->old_routers, sd, idx);
1664 if (idx < 0)
1665 return;
1666 smartlist_del(rl->old_routers, idx);
1667 sd_tmp = digestmap_remove(rl->desc_digest_map,
1668 sd->signed_descriptor_digest);
1669 tor_assert(sd_tmp == sd);
1670 router_bytes_dropped += sd->signed_descriptor_len;
1671 signed_descriptor_free(sd);
1672 // routerlist_assert_ok(rl);
1675 /** Remove <b>ri_old</b> from the routerlist <b>rl</b>, and replace it with
1676 * <b>ri_new</b>, updating all index info. If <b>idx</b> is nonnegative and
1677 * smartlist_get(rl-&gt;routers, idx) == ri, we don't need to do a linear
1678 * search over the list to decide which to remove. We put ri_new in the same
1679 * index as ri_old, if possible. ri is freed as appropriate. */
1680 static void
1681 routerlist_replace(routerlist_t *rl, routerinfo_t *ri_old,
1682 routerinfo_t *ri_new, int idx, int make_old)
1684 tor_assert(ri_old != ri_new);
1685 idx = _routerlist_find_elt(rl->routers, ri_old, idx);
1686 router_dir_info_changed();
1687 if (idx >= 0) {
1688 smartlist_set(rl->routers, idx, ri_new);
1689 ri_old->routerlist_index = -1;
1690 ri_new->routerlist_index = idx;
1691 } else {
1692 log_warn(LD_BUG, "Appending entry from routerlist_replace.");
1693 routerlist_insert(rl, ri_new);
1694 return;
1696 if (memcmp(ri_old->cache_info.identity_digest,
1697 ri_new->cache_info.identity_digest, DIGEST_LEN)) {
1698 /* digests don't match; digestmap_set won't replace */
1699 digestmap_remove(rl->identity_map, ri_old->cache_info.identity_digest);
1701 digestmap_set(rl->identity_map, ri_new->cache_info.identity_digest, ri_new);
1702 digestmap_set(rl->desc_digest_map,
1703 ri_new->cache_info.signed_descriptor_digest, &(ri_new->cache_info));
1705 if (make_old && get_options()->DirPort) {
1706 signed_descriptor_t *sd = signed_descriptor_from_routerinfo(ri_old);
1707 smartlist_add(rl->old_routers, sd);
1708 digestmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
1709 } else {
1710 if (memcmp(ri_old->cache_info.signed_descriptor_digest,
1711 ri_new->cache_info.signed_descriptor_digest,
1712 DIGEST_LEN)) {
1713 /* digests don't match; digestmap_set didn't replace */
1714 digestmap_remove(rl->desc_digest_map,
1715 ri_old->cache_info.signed_descriptor_digest);
1717 routerinfo_free(ri_old);
1719 // routerlist_assert_ok(rl);
1722 /** Free all memory held by the routerlist module. */
1723 void
1724 routerlist_free_all(void)
1726 if (routerlist)
1727 routerlist_free(routerlist);
1728 routerlist = NULL;
1729 if (warned_nicknames) {
1730 SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp));
1731 smartlist_free(warned_nicknames);
1732 warned_nicknames = NULL;
1734 if (warned_conflicts) {
1735 SMARTLIST_FOREACH(warned_conflicts, char *, cp, tor_free(cp));
1736 smartlist_free(warned_conflicts);
1737 warned_conflicts = NULL;
1739 if (trusted_dir_servers) {
1740 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
1741 trusted_dir_server_free(ds));
1742 smartlist_free(trusted_dir_servers);
1743 trusted_dir_servers = NULL;
1745 if (networkstatus_list) {
1746 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
1747 networkstatus_free(ns));
1748 smartlist_free(networkstatus_list);
1749 networkstatus_list = NULL;
1751 if (routerstatus_list) {
1752 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
1753 local_routerstatus_free(rs));
1754 smartlist_free(routerstatus_list);
1755 routerstatus_list = NULL;
1757 if (named_server_map) {
1758 strmap_free(named_server_map, _tor_free);
1762 /** Free all storage held by the routerstatus object <b>rs</b>. */
1763 void
1764 routerstatus_free(routerstatus_t *rs)
1766 tor_free(rs);
1769 /** Free all storage held by the local_routerstatus object <b>rs</b>. */
1770 static void
1771 local_routerstatus_free(local_routerstatus_t *rs)
1773 tor_free(rs);
1776 /** Free all storage held by the networkstatus object <b>ns</b>. */
1777 void
1778 networkstatus_free(networkstatus_t *ns)
1780 tor_free(ns->source_address);
1781 tor_free(ns->contact);
1782 if (ns->signing_key)
1783 crypto_free_pk_env(ns->signing_key);
1784 tor_free(ns->client_versions);
1785 tor_free(ns->server_versions);
1786 if (ns->entries) {
1787 SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
1788 routerstatus_free(rs));
1789 smartlist_free(ns->entries);
1791 tor_free(ns);
1794 /** Forget that we have issued any router-related warnings, so that we'll
1795 * warn again if we see the same errors. */
1796 void
1797 routerlist_reset_warnings(void)
1799 if (!warned_nicknames)
1800 warned_nicknames = smartlist_create();
1801 SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp));
1802 smartlist_clear(warned_nicknames); /* now the list is empty. */
1804 if (!warned_conflicts)
1805 warned_conflicts = smartlist_create();
1806 SMARTLIST_FOREACH(warned_conflicts, char *, cp, tor_free(cp));
1807 smartlist_clear(warned_conflicts); /* now the list is empty. */
1809 if (!routerstatus_list)
1810 routerstatus_list = smartlist_create();
1811 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
1812 rs->name_lookup_warned = 0);
1814 have_warned_about_invalid_status = 0;
1815 have_warned_about_old_version = 0;
1816 have_warned_about_new_version = 0;
1819 /** Mark the router with ID <b>digest</b> as running or non-running
1820 * in our routerlist. */
1821 void
1822 router_set_status(const char *digest, int up)
1824 routerinfo_t *router;
1825 local_routerstatus_t *status;
1826 tor_assert(digest);
1828 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, d,
1829 if (!memcmp(d->digest, digest, DIGEST_LEN))
1830 d->is_running = up);
1832 router = router_get_by_digest(digest);
1833 if (router) {
1834 log_debug(LD_DIR,"Marking router '%s' as %s.",
1835 router->nickname, up ? "up" : "down");
1836 if (!up && router_is_me(router) && !we_are_hibernating())
1837 log_warn(LD_NET, "We just marked ourself as down. Are your external "
1838 "addresses reachable?");
1839 router->is_running = up;
1841 status = router_get_combined_status_by_digest(digest);
1842 if (status && status->status.is_running != up) {
1843 status->status.is_running = up;
1844 control_event_networkstatus_changed_single(status);
1846 router_dir_info_changed();
1849 /** Add <b>router</b> to the routerlist, if we don't already have it. Replace
1850 * older entries (if any) with the same key. Note: Callers should not hold
1851 * their pointers to <b>router</b> if this function fails; <b>router</b>
1852 * will either be inserted into the routerlist or freed.
1854 * Returns >= 0 if the router was added; less than 0 if it was not.
1856 * If we're returning non-zero, then assign to *<b>msg</b> a static string
1857 * describing the reason for not liking the routerinfo.
1859 * If the return value is less than -1, there was a problem with the
1860 * routerinfo. If the return value is equal to -1, then the routerinfo was
1861 * fine, but out-of-date. If the return value is equal to 1, the
1862 * routerinfo was accepted, but we should notify the generator of the
1863 * descriptor using the message *<b>msg</b>.
1865 * If <b>from_cache</b>, this descriptor came from our disk cache. If
1866 * <b>from_fetch</b>, we received it in response to a request we made.
1867 * (If both are false, that means it was uploaded to us as an auth dir
1868 * server or via the controller.)
1870 * This function should be called *after*
1871 * routers_update_status_from_networkstatus; subsequently, you should call
1872 * router_rebuild_store and control_event_descriptors_changed.
1875 router_add_to_routerlist(routerinfo_t *router, const char **msg,
1876 int from_cache, int from_fetch)
1878 const char *id_digest;
1879 int authdir = get_options()->AuthoritativeDir;
1880 int authdir_believes_valid = 0;
1881 routerinfo_t *old_router;
1883 tor_assert(msg);
1885 if (!routerlist)
1886 router_get_routerlist();
1887 if (!networkstatus_list)
1888 networkstatus_list = smartlist_create();
1890 id_digest = router->cache_info.identity_digest;
1892 /* Make sure that we haven't already got this exact descriptor. */
1893 if (digestmap_get(routerlist->desc_digest_map,
1894 router->cache_info.signed_descriptor_digest)) {
1895 log_info(LD_DIR,
1896 "Dropping descriptor that we already have for router '%s'",
1897 router->nickname);
1898 *msg = "Router descriptor was not new.";
1899 routerinfo_free(router);
1900 return -1;
1903 if (routerlist_is_overfull(routerlist))
1904 routerlist_remove_old_routers();
1906 if (authdir) {
1907 if (authdir_wants_to_reject_router(router, msg,
1908 !from_cache && !from_fetch)) {
1909 tor_assert(*msg);
1910 routerinfo_free(router);
1911 return -2;
1913 authdir_believes_valid = router->is_valid;
1914 } else if (from_fetch) {
1915 /* Only check the descriptor digest against the network statuses when
1916 * we are receiving in response to a fetch. */
1918 if (!signed_desc_digest_is_recognized(&router->cache_info)) {
1919 /* We asked for it, so some networkstatus must have listed it when we
1920 * did. Save it if we're a cache in case somebody else asks for it. */
1921 log_info(LD_DIR,
1922 "Received a no-longer-recognized descriptor for router '%s'",
1923 router->nickname);
1924 *msg = "Router descriptor is not referenced by any network-status.";
1926 /* Only journal this desc if we'll be serving it. */
1927 if (!from_cache && get_options()->DirPort)
1928 router_append_to_journal(&router->cache_info);
1929 routerlist_insert_old(routerlist, router);
1930 return -1;
1934 /* We no longer need a router with this descriptor digest. */
1935 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
1937 routerstatus_t *rs =
1938 networkstatus_find_entry(ns, router->cache_info.identity_digest);
1939 if (rs && !memcmp(rs->descriptor_digest,
1940 router->cache_info.signed_descriptor_digest,
1941 DIGEST_LEN))
1942 rs->need_to_mirror = 0;
1945 /* If we have a router with the same identity key, choose the newer one. */
1946 old_router = digestmap_get(routerlist->identity_map,
1947 router->cache_info.identity_digest);
1948 if (old_router) {
1949 int pos = old_router->routerlist_index;
1950 tor_assert(smartlist_get(routerlist->routers, pos) == old_router);
1952 if (router->cache_info.published_on <=
1953 old_router->cache_info.published_on) {
1954 /* Same key, but old */
1955 log_debug(LD_DIR, "Skipping not-new descriptor for router '%s'",
1956 router->nickname);
1957 /* Only journal this desc if we'll be serving it. */
1958 if (!from_cache && get_options()->DirPort)
1959 router_append_to_journal(&router->cache_info);
1960 routerlist_insert_old(routerlist, router);
1961 *msg = "Router descriptor was not new.";
1962 return -1;
1963 } else {
1964 /* Same key, new. */
1965 int unreachable = 0;
1966 log_debug(LD_DIR, "Replacing entry for router '%s/%s' [%s]",
1967 router->nickname, old_router->nickname,
1968 hex_str(id_digest,DIGEST_LEN));
1969 if (router->addr == old_router->addr &&
1970 router->or_port == old_router->or_port) {
1971 /* these carry over when the address and orport are unchanged.*/
1972 router->last_reachable = old_router->last_reachable;
1973 router->testing_since = old_router->testing_since;
1974 router->num_unreachable_notifications =
1975 old_router->num_unreachable_notifications;
1977 if (authdir && !from_cache && !from_fetch &&
1978 router_have_minimum_dir_info() &&
1979 dirserv_thinks_router_is_blatantly_unreachable(router,
1980 time(NULL))) {
1981 if (router->num_unreachable_notifications >= 3) {
1982 unreachable = 1;
1983 log_notice(LD_DIR, "Notifying server '%s' that it's unreachable. "
1984 "(ContactInfo '%s', platform '%s').",
1985 router->nickname,
1986 router->contact_info ? router->contact_info : "",
1987 router->platform ? router->platform : "");
1988 } else {
1989 log_info(LD_DIR,"'%s' may be unreachable -- the %d previous "
1990 "descriptors were thought to be unreachable.",
1991 router->nickname, router->num_unreachable_notifications);
1992 router->num_unreachable_notifications++;
1995 routerlist_replace(routerlist, old_router, router, pos, 1);
1996 if (!from_cache) {
1997 router_append_to_journal(&router->cache_info);
1999 directory_set_dirty();
2000 *msg = unreachable ? "Dirserver believes your ORPort is unreachable" :
2001 authdir_believes_valid ? "Valid server updated" :
2002 ("Invalid server updated. (This dirserver is marking your "
2003 "server as unapproved.)");
2004 return unreachable ? 1 : 0;
2008 /* We haven't seen a router with this identity before. Add it to the end of
2009 * the list. */
2010 routerlist_insert(routerlist, router);
2011 if (!from_cache)
2012 router_append_to_journal(&router->cache_info);
2013 directory_set_dirty();
2014 return 0;
2017 /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
2018 * signed_descriptor_t* in *<b>a</b> has an identity digest preceding, equal
2019 * to, or later than that of *<b>b</b>. */
2020 static int
2021 _compare_old_routers_by_identity(const void **_a, const void **_b)
2023 int i;
2024 const signed_descriptor_t *r1 = *_a, *r2 = *_b;
2025 if ((i = memcmp(r1->identity_digest, r2->identity_digest, DIGEST_LEN)))
2026 return i;
2027 return r1->published_on - r2->published_on;
2030 /** Internal type used to represent how long an old descriptor was valid,
2031 * where it appeared in the list of old descriptors, and whether it's extra
2032 * old. Used only by routerlist_remove_old_cached_routers_with_id(). */
2033 struct duration_idx_t {
2034 int duration;
2035 int idx;
2036 int old;
2039 /** Sorting helper: compare two duration_idx_t by their duration. */
2040 static int
2041 _compare_duration_idx(const void *_d1, const void *_d2)
2043 const struct duration_idx_t *d1 = _d1;
2044 const struct duration_idx_t *d2 = _d2;
2045 return d1->duration - d2->duration;
2048 /** The range <b>lo</b> through <b>hi</b> inclusive of routerlist->old_routers
2049 * must contain routerinfo_t with the same identity and with publication time
2050 * in ascending order. Remove members from this range until there are no more
2051 * than max_descriptors_per_router() remaining. Start by removing the oldest
2052 * members from before <b>cutoff</b>, then remove members which were current
2053 * for the lowest amount of time. The order of members of old_routers at
2054 * indices <b>lo</b> or higher may be changed.
2056 static void
2057 routerlist_remove_old_cached_routers_with_id(time_t cutoff, int lo, int hi,
2058 digestmap_t *retain)
2060 int i, n = hi-lo+1, n_extra;
2061 int n_rmv = 0;
2062 struct duration_idx_t *lifespans;
2063 uint8_t *rmv, *must_keep;
2064 smartlist_t *lst = routerlist->old_routers;
2065 #if 1
2066 const char *ident;
2067 tor_assert(hi < smartlist_len(lst));
2068 tor_assert(lo <= hi);
2069 ident = ((signed_descriptor_t*)smartlist_get(lst, lo))->identity_digest;
2070 for (i = lo+1; i <= hi; ++i) {
2071 signed_descriptor_t *r = smartlist_get(lst, i);
2072 tor_assert(!memcmp(ident, r->identity_digest, DIGEST_LEN));
2074 #endif
2076 /* Check whether we need to do anything at all. */
2077 n_extra = n - max_descriptors_per_router();
2078 if (n_extra <= 0)
2079 return;
2081 lifespans = tor_malloc_zero(sizeof(struct duration_idx_t)*n);
2082 rmv = tor_malloc_zero(sizeof(uint8_t)*n);
2083 must_keep = tor_malloc_zero(sizeof(uint8_t)*n);
2084 /* Set lifespans to contain the lifespan and index of each server. */
2085 /* Set rmv[i-lo]=1 if we're going to remove a server for being too old. */
2086 for (i = lo; i <= hi; ++i) {
2087 signed_descriptor_t *r = smartlist_get(lst, i);
2088 signed_descriptor_t *r_next;
2089 lifespans[i-lo].idx = i;
2090 if (retain && digestmap_get(retain, r->signed_descriptor_digest)) {
2091 must_keep[i-lo] = 1;
2093 if (i < hi) {
2094 r_next = smartlist_get(lst, i+1);
2095 tor_assert(r->published_on <= r_next->published_on);
2096 lifespans[i-lo].duration = (r_next->published_on - r->published_on);
2097 } else {
2098 r_next = NULL;
2099 lifespans[i-lo].duration = INT_MAX;
2101 if (!must_keep[i-lo] && r->published_on < cutoff && n_rmv < n_extra) {
2102 ++n_rmv;
2103 lifespans[i-lo].old = 1;
2104 rmv[i-lo] = 1;
2108 if (n_rmv < n_extra) {
2110 * We aren't removing enough servers for being old. Sort lifespans by
2111 * the duration of liveness, and remove the ones we're not already going to
2112 * remove based on how long they were alive.
2114 qsort(lifespans, n, sizeof(struct duration_idx_t), _compare_duration_idx);
2115 for (i = 0; i < n && n_rmv < n_extra; ++i) {
2116 if (!must_keep[lifespans[i].idx-lo] && !lifespans[i].old) {
2117 rmv[lifespans[i].idx-lo] = 1;
2118 ++n_rmv;
2123 for (i = hi; i >= lo; --i) {
2124 if (rmv[i-lo])
2125 routerlist_remove_old(routerlist, smartlist_get(lst, i), i);
2127 tor_free(must_keep);
2128 tor_free(rmv);
2129 tor_free(lifespans);
2132 /** Deactivate any routers from the routerlist that are more than
2133 * ROUTER_MAX_AGE seconds old and not recommended by any networkstatuses;
2134 * remove old routers from the list of cached routers if we have too many.
2136 void
2137 routerlist_remove_old_routers(void)
2139 int i, hi=-1;
2140 const char *cur_id = NULL;
2141 time_t now = time(NULL);
2142 time_t cutoff;
2143 routerinfo_t *router;
2144 signed_descriptor_t *sd;
2145 digestmap_t *retain;
2146 if (!routerlist || !networkstatus_list)
2147 return;
2149 retain = digestmap_new();
2150 cutoff = now - OLD_ROUTER_DESC_MAX_AGE;
2151 /* Build a list of all the descriptors that _anybody_ recommends. */
2152 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
2154 /* XXXX The inner loop here gets pretty expensive, and actually shows up
2155 * on some profiles. It may be the reason digestmap_set shows up in
2156 * profiles too. If instead we kept a per-descriptor digest count of
2157 * how many networkstatuses recommended each descriptor, and changed
2158 * that only when the networkstatuses changed, that would be a speed
2159 * improvement, possibly 1-4% if it also removes digestmap_set from the
2160 * profile. Not worth it for 0.1.2.x, though. The new directory
2161 * system will obsolete this whole thing in 0.2.0.x. */
2162 SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
2163 if (rs->published_on >= cutoff)
2164 digestmap_set(retain, rs->descriptor_digest, (void*)1));
2167 /* If we have a bunch of networkstatuses, we should consider pruning current
2168 * routers that are too old and that nobody recommends. (If we don't have
2169 * enough networkstatuses, then we should get more before we decide to kill
2170 * routers.) */
2171 if (smartlist_len(networkstatus_list) > get_n_v2_authorities() / 2) {
2172 cutoff = now - ROUTER_MAX_AGE;
2173 /* Remove too-old unrecommended members of routerlist->routers. */
2174 for (i = 0; i < smartlist_len(routerlist->routers); ++i) {
2175 router = smartlist_get(routerlist->routers, i);
2176 if (router->cache_info.published_on <= cutoff &&
2177 !digestmap_get(retain,router->cache_info.signed_descriptor_digest)) {
2178 /* Too old: remove it. (If we're a cache, just move it into
2179 * old_routers.) */
2180 log_info(LD_DIR,
2181 "Forgetting obsolete (too old) routerinfo for router '%s'",
2182 router->nickname);
2183 routerlist_remove(routerlist, router, i--, 1);
2188 /* Remove far-too-old members of routerlist->old_routers. */
2189 cutoff = now - OLD_ROUTER_DESC_MAX_AGE;
2190 for (i = 0; i < smartlist_len(routerlist->old_routers); ++i) {
2191 sd = smartlist_get(routerlist->old_routers, i);
2192 if (sd->published_on <= cutoff &&
2193 !digestmap_get(retain, sd->signed_descriptor_digest)) {
2194 /* Too old. Remove it. */
2195 routerlist_remove_old(routerlist, sd, i--);
2199 /* Now we might have to look at routerlist->old_routers for extraneous
2200 * members. (We'd keep all the members if we could, but we need to save
2201 * space.) First, check whether we have too many router descriptors, total.
2202 * We're okay with having too many for some given router, so long as the
2203 * total number doesn't approach max_descriptors_per_router()*len(router).
2205 if (smartlist_len(routerlist->old_routers) <
2206 smartlist_len(routerlist->routers) * (max_descriptors_per_router() - 1))
2207 goto done;
2209 smartlist_sort(routerlist->old_routers, _compare_old_routers_by_identity);
2211 /* Iterate through the list from back to front, so when we remove descriptors
2212 * we don't mess up groups we haven't gotten to. */
2213 for (i = smartlist_len(routerlist->old_routers)-1; i >= 0; --i) {
2214 signed_descriptor_t *r = smartlist_get(routerlist->old_routers, i);
2215 if (!cur_id) {
2216 cur_id = r->identity_digest;
2217 hi = i;
2219 if (memcmp(cur_id, r->identity_digest, DIGEST_LEN)) {
2220 routerlist_remove_old_cached_routers_with_id(cutoff, i+1, hi, retain);
2221 cur_id = r->identity_digest;
2222 hi = i;
2225 if (hi>=0)
2226 routerlist_remove_old_cached_routers_with_id(cutoff, 0, hi, retain);
2227 routerlist_assert_ok(routerlist);
2229 done:
2230 digestmap_free(retain, NULL);
2234 * Code to parse a single router descriptor and insert it into the
2235 * routerlist. Return -1 if the descriptor was ill-formed; 0 if the
2236 * descriptor was well-formed but could not be added; and 1 if the
2237 * descriptor was added.
2239 * If we don't add it and <b>msg</b> is not NULL, then assign to
2240 * *<b>msg</b> a static string describing the reason for refusing the
2241 * descriptor.
2243 * This is used only by the controller.
2246 router_load_single_router(const char *s, uint8_t purpose, const char **msg)
2248 routerinfo_t *ri;
2249 int r;
2250 smartlist_t *lst;
2251 tor_assert(msg);
2252 *msg = NULL;
2254 if (!(ri = router_parse_entry_from_string(s, NULL, 1))) {
2255 log_warn(LD_DIR, "Error parsing router descriptor; dropping.");
2256 *msg = "Couldn't parse router descriptor.";
2257 return -1;
2259 ri->purpose = purpose;
2260 if (router_is_me(ri)) {
2261 log_warn(LD_DIR, "Router's identity key matches mine; dropping.");
2262 *msg = "Router's identity key matches mine.";
2263 routerinfo_free(ri);
2264 return 0;
2267 lst = smartlist_create();
2268 smartlist_add(lst, ri);
2269 routers_update_status_from_networkstatus(lst, 0);
2271 if ((r=router_add_to_routerlist(ri, msg, 0, 0))<0) {
2272 /* we've already assigned to *msg now, and ri is already freed */
2273 tor_assert(*msg);
2274 if (r < -1)
2275 log_warn(LD_DIR, "Couldn't add router to list: %s Dropping.", *msg);
2276 smartlist_free(lst);
2277 return 0;
2278 } else {
2279 control_event_descriptors_changed(lst);
2280 smartlist_free(lst);
2281 log_debug(LD_DIR, "Added router to list");
2282 return 1;
2286 /** Given a string <b>s</b> containing some routerdescs, parse it and put the
2287 * routers into our directory. If saved_location is SAVED_NOWHERE, the routers
2288 * are in response to a query to the network: cache them by adding them to
2289 * the journal.
2291 * If <b>requested_fingerprints</b> is provided, it must contain a list of
2292 * uppercased identity fingerprints. Do not update any router whose
2293 * fingerprint is not on the list; after updating a router, remove its
2294 * fingerprint from the list.
2296 void
2297 router_load_routers_from_string(const char *s, saved_location_t saved_location,
2298 smartlist_t *requested_fingerprints)
2300 smartlist_t *routers = smartlist_create(), *changed = smartlist_create();
2301 char fp[HEX_DIGEST_LEN+1];
2302 const char *msg;
2303 int from_cache = (saved_location != SAVED_NOWHERE);
2305 router_parse_list_from_string(&s, routers, saved_location);
2307 routers_update_status_from_networkstatus(routers, !from_cache);
2309 log_info(LD_DIR, "%d elements to add", smartlist_len(routers));
2311 SMARTLIST_FOREACH(routers, routerinfo_t *, ri,
2313 base16_encode(fp, sizeof(fp), ri->cache_info.signed_descriptor_digest,
2314 DIGEST_LEN);
2315 if (requested_fingerprints) {
2316 if (smartlist_string_isin(requested_fingerprints, fp)) {
2317 smartlist_string_remove(requested_fingerprints, fp);
2318 } else {
2319 char *requested =
2320 smartlist_join_strings(requested_fingerprints," ",0,NULL);
2321 log_warn(LD_DIR,
2322 "We received a router descriptor with a fingerprint (%s) "
2323 "that we never requested. (We asked for: %s.) Dropping.",
2324 fp, requested);
2325 tor_free(requested);
2326 routerinfo_free(ri);
2327 continue;
2331 if (router_add_to_routerlist(ri, &msg, from_cache, !from_cache) >= 0)
2332 smartlist_add(changed, ri);
2335 if (smartlist_len(changed))
2336 control_event_descriptors_changed(changed);
2338 routerlist_assert_ok(routerlist);
2339 router_rebuild_store(0);
2341 smartlist_free(routers);
2342 smartlist_free(changed);
2345 /** Helper: return a newly allocated string containing the name of the filename
2346 * where we plan to cache the network status with the given identity digest. */
2347 char *
2348 networkstatus_get_cache_filename(const char *identity_digest)
2350 const char *datadir = get_options()->DataDirectory;
2351 size_t len = strlen(datadir)+64;
2352 char fp[HEX_DIGEST_LEN+1];
2353 char *fn = tor_malloc(len+1);
2354 base16_encode(fp, HEX_DIGEST_LEN+1, identity_digest, DIGEST_LEN);
2355 tor_snprintf(fn, len, "%s/cached-status/%s",datadir,fp);
2356 return fn;
2359 /** Helper for smartlist_sort: Compare two networkstatus objects by
2360 * publication date. */
2361 static int
2362 _compare_networkstatus_published_on(const void **_a, const void **_b)
2364 const networkstatus_t *a = *_a, *b = *_b;
2365 if (a->published_on < b->published_on)
2366 return -1;
2367 else if (a->published_on > b->published_on)
2368 return 1;
2369 else
2370 return 0;
2373 /** Add the parsed neworkstatus in <b>ns</b> (with original document in
2374 * <b>s</b> to the disk cache (and the in-memory directory server cache) as
2375 * appropriate. */
2376 static int
2377 add_networkstatus_to_cache(const char *s,
2378 networkstatus_source_t source,
2379 networkstatus_t *ns)
2381 if (source != NS_FROM_CACHE) {
2382 char *fn = networkstatus_get_cache_filename(ns->identity_digest);
2383 if (write_str_to_file(fn, s, 0)<0) {
2384 log_notice(LD_FS, "Couldn't write cached network status to \"%s\"", fn);
2386 tor_free(fn);
2389 if (get_options()->DirPort)
2390 dirserv_set_cached_networkstatus_v2(s,
2391 ns->identity_digest,
2392 ns->published_on);
2394 return 0;
2397 /** How far in the future do we allow a network-status to get before removing
2398 * it? (seconds) */
2399 #define NETWORKSTATUS_ALLOW_SKEW (24*60*60)
2401 /** Given a string <b>s</b> containing a network status that we received at
2402 * <b>arrived_at</b> from <b>source</b>, try to parse it, see if we want to
2403 * store it, and put it into our cache as necessary.
2405 * If <b>source</b> is NS_FROM_DIR or NS_FROM_CACHE, do not replace our
2406 * own networkstatus_t (if we're an authoritative directory server).
2408 * If <b>source</b> is NS_FROM_CACHE, do not write our networkstatus_t to the
2409 * cache.
2411 * If <b>requested_fingerprints</b> is provided, it must contain a list of
2412 * uppercased identity fingerprints. Do not update any networkstatus whose
2413 * fingerprint is not on the list; after updating a networkstatus, remove its
2414 * fingerprint from the list.
2416 * Return 0 on success, -1 on failure.
2418 * Callers should make sure that routers_update_all_from_networkstatus() is
2419 * invoked after this function succeeds.
2422 router_set_networkstatus(const char *s, time_t arrived_at,
2423 networkstatus_source_t source, smartlist_t *requested_fingerprints)
2425 networkstatus_t *ns;
2426 int i, found;
2427 time_t now;
2428 int skewed = 0;
2429 trusted_dir_server_t *trusted_dir = NULL;
2430 const char *source_desc = NULL;
2431 char fp[HEX_DIGEST_LEN+1];
2432 char published[ISO_TIME_LEN+1];
2434 ns = networkstatus_parse_from_string(s);
2435 if (!ns) {
2436 log_warn(LD_DIR, "Couldn't parse network status.");
2437 return -1;
2439 base16_encode(fp, HEX_DIGEST_LEN+1, ns->identity_digest, DIGEST_LEN);
2440 if (!(trusted_dir =
2441 router_get_trusteddirserver_by_digest(ns->identity_digest)) ||
2442 !trusted_dir->is_v2_authority) {
2443 log_info(LD_DIR, "Network status was signed, but not by an authoritative "
2444 "directory we recognize.");
2445 if (!get_options()->DirPort) {
2446 networkstatus_free(ns);
2447 return 0;
2449 source_desc = fp;
2450 } else {
2451 source_desc = trusted_dir->description;
2453 now = time(NULL);
2454 if (arrived_at > now)
2455 arrived_at = now;
2457 ns->received_on = arrived_at;
2459 format_iso_time(published, ns->published_on);
2461 if (ns->published_on > now + NETWORKSTATUS_ALLOW_SKEW) {
2462 log_warn(LD_GENERAL, "Network status from %s was published in the future "
2463 "(%s GMT). Somebody is skewed here: check your clock. "
2464 "Not caching.",
2465 source_desc, published);
2466 control_event_general_status(LOG_WARN,
2467 "CLOCK_SKEW SOURCE=NETWORKSTATUS:%s:%d",
2468 ns->source_address, ns->source_dirport);
2469 skewed = 1;
2472 if (!networkstatus_list)
2473 networkstatus_list = smartlist_create();
2475 if ( (source == NS_FROM_DIR_BY_FP || source == NS_FROM_DIR_ALL) &&
2476 router_digest_is_me(ns->identity_digest)) {
2477 /* Don't replace our own networkstatus when we get it from somebody else.*/
2478 networkstatus_free(ns);
2479 return 0;
2482 if (requested_fingerprints) {
2483 if (smartlist_string_isin(requested_fingerprints, fp)) {
2484 smartlist_string_remove(requested_fingerprints, fp);
2485 } else {
2486 char *requested =
2487 smartlist_join_strings(requested_fingerprints," ",0,NULL);
2488 if (source != NS_FROM_DIR_ALL) {
2489 log_warn(LD_DIR,
2490 "We received a network status with a fingerprint (%s) that we "
2491 "never requested. (We asked for: %s.) Dropping.",
2492 fp, requested);
2493 tor_free(requested);
2494 return 0;
2499 if (!trusted_dir) {
2500 if (!skewed && get_options()->DirPort) {
2501 /* We got a non-trusted networkstatus, and we're a directory cache.
2502 * This means that we asked an authority, and it told us about another
2503 * authority we didn't recognize. */
2504 log_info(LD_DIR,
2505 "We do not recognize authority (%s) but we are willing "
2506 "to cache it", fp);
2507 add_networkstatus_to_cache(s, source, ns);
2508 networkstatus_free(ns);
2510 return 0;
2513 if (source != NS_FROM_CACHE && trusted_dir)
2514 trusted_dir->n_networkstatus_failures = 0;
2516 found = 0;
2517 for (i=0; i < smartlist_len(networkstatus_list); ++i) {
2518 networkstatus_t *old_ns = smartlist_get(networkstatus_list, i);
2520 if (!memcmp(old_ns->identity_digest, ns->identity_digest, DIGEST_LEN)) {
2521 if (!memcmp(old_ns->networkstatus_digest,
2522 ns->networkstatus_digest, DIGEST_LEN)) {
2523 /* Same one we had before. */
2524 networkstatus_free(ns);
2525 log_info(LD_DIR,
2526 "Not replacing network-status from %s (published %s); "
2527 "we already have it.",
2528 trusted_dir->description, published);
2529 if (old_ns->received_on < arrived_at) {
2530 if (source != NS_FROM_CACHE) {
2531 char *fn;
2532 fn = networkstatus_get_cache_filename(old_ns->identity_digest);
2533 /* We use mtime to tell when it arrived, so update that. */
2534 touch_file(fn);
2535 tor_free(fn);
2537 old_ns->received_on = arrived_at;
2539 return 0;
2540 } else if (old_ns->published_on >= ns->published_on) {
2541 char old_published[ISO_TIME_LEN+1];
2542 format_iso_time(old_published, old_ns->published_on);
2543 log_info(LD_DIR,
2544 "Not replacing network-status from %s (published %s);"
2545 " we have a newer one (published %s) for this authority.",
2546 trusted_dir->description, published,
2547 old_published);
2548 networkstatus_free(ns);
2549 return 0;
2550 } else {
2551 networkstatus_free(old_ns);
2552 smartlist_set(networkstatus_list, i, ns);
2553 found = 1;
2554 break;
2559 if (!found)
2560 smartlist_add(networkstatus_list, ns);
2562 SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
2564 if (!router_get_by_descriptor_digest(rs->descriptor_digest))
2565 rs->need_to_mirror = 1;
2568 log_info(LD_DIR, "Setting networkstatus %s %s (published %s)",
2569 source == NS_FROM_CACHE?"cached from":
2570 ((source == NS_FROM_DIR_BY_FP || source == NS_FROM_DIR_ALL) ?
2571 "downloaded from":"generated for"),
2572 trusted_dir->description, published);
2573 networkstatus_list_has_changed = 1;
2574 router_dir_info_changed();
2576 smartlist_sort(networkstatus_list, _compare_networkstatus_published_on);
2578 if (!skewed)
2579 add_networkstatus_to_cache(s, source, ns);
2581 networkstatus_list_update_recent(now);
2583 return 0;
2586 /** How old do we allow a network-status to get before removing it
2587 * completely? */
2588 #define MAX_NETWORKSTATUS_AGE (10*24*60*60)
2589 /** Remove all very-old network_status_t objects from memory and from the
2590 * disk cache. */
2591 void
2592 networkstatus_list_clean(time_t now)
2594 int i;
2595 if (!networkstatus_list)
2596 return;
2598 for (i = 0; i < smartlist_len(networkstatus_list); ++i) {
2599 networkstatus_t *ns = smartlist_get(networkstatus_list, i);
2600 char *fname = NULL;
2601 if (ns->published_on + MAX_NETWORKSTATUS_AGE > now)
2602 continue;
2603 /* Okay, this one is too old. Remove it from the list, and delete it
2604 * from the cache. */
2605 smartlist_del(networkstatus_list, i--);
2606 fname = networkstatus_get_cache_filename(ns->identity_digest);
2607 if (file_status(fname) == FN_FILE) {
2608 log_info(LD_DIR, "Removing too-old networkstatus in %s", fname);
2609 unlink(fname);
2611 tor_free(fname);
2612 if (get_options()->DirPort) {
2613 dirserv_set_cached_networkstatus_v2(NULL, ns->identity_digest, 0);
2615 networkstatus_free(ns);
2616 router_dir_info_changed();
2619 /* And now go through the directory cache for any cached untrusted
2620 * networkstatuses and other network info. */
2621 dirserv_clear_old_networkstatuses(now - MAX_NETWORKSTATUS_AGE);
2622 dirserv_clear_old_v1_info(now);
2625 /** Helper for bsearching a list of routerstatus_t pointers.*/
2626 static int
2627 _compare_digest_to_routerstatus_entry(const void *_key, const void **_member)
2629 const char *key = _key;
2630 const routerstatus_t *rs = *_member;
2631 return memcmp(key, rs->identity_digest, DIGEST_LEN);
2634 /** Return the entry in <b>ns</b> for the identity digest <b>digest</b>, or
2635 * NULL if none was found. */
2636 static routerstatus_t *
2637 networkstatus_find_entry(networkstatus_t *ns, const char *digest)
2639 return smartlist_bsearch(ns->entries, digest,
2640 _compare_digest_to_routerstatus_entry);
2643 /** Return the consensus view of the status of the router whose digest is
2644 * <b>digest</b>, or NULL if we don't know about any such router. */
2645 local_routerstatus_t *
2646 router_get_combined_status_by_digest(const char *digest)
2648 if (!routerstatus_list)
2649 return NULL;
2650 return smartlist_bsearch(routerstatus_list, digest,
2651 _compare_digest_to_routerstatus_entry);
2654 /** Given a nickname (possibly verbose, possibly a hexadecimal digest), return
2655 * the corresponding local_routerstatus_t, or NULL if none exists. Warn the
2656 * user if <b>warn_if_unnamed</b> is set, and they have specified a router by
2657 * nickname, but the Named flag isn't set for that router. */
2658 static local_routerstatus_t *
2659 router_get_combined_status_by_nickname(const char *nickname,
2660 int warn_if_unnamed)
2662 char digest[DIGEST_LEN];
2663 local_routerstatus_t *best=NULL;
2664 smartlist_t *matches=NULL;
2666 if (!routerstatus_list || !nickname)
2667 return NULL;
2669 if (nickname[0] == '$') {
2670 if (base16_decode(digest, DIGEST_LEN, nickname+1, strlen(nickname))<0)
2671 return NULL;
2672 return router_get_combined_status_by_digest(digest);
2673 } else if (strlen(nickname) == HEX_DIGEST_LEN &&
2674 (base16_decode(digest, DIGEST_LEN, nickname+1, strlen(nickname))==0)) {
2675 return router_get_combined_status_by_digest(digest);
2678 matches = smartlist_create();
2679 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, lrs,
2681 if (!strcasecmp(lrs->status.nickname, nickname)) {
2682 if (lrs->status.is_named) {
2683 smartlist_free(matches);
2684 return lrs;
2685 } else {
2686 smartlist_add(matches, lrs);
2687 best = lrs;
2692 if (smartlist_len(matches)>1 && warn_if_unnamed) {
2693 int any_unwarned=0;
2694 SMARTLIST_FOREACH(matches, local_routerstatus_t *, lrs,
2696 if (! lrs->name_lookup_warned) {
2697 lrs->name_lookup_warned=1;
2698 any_unwarned=1;
2701 if (any_unwarned) {
2702 log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\","
2703 " but none is listed as named by the directory authorites. "
2704 "Choosing one arbitrarily.", nickname);
2706 } else if (warn_if_unnamed && best && !best->name_lookup_warned) {
2707 char fp[HEX_DIGEST_LEN+1];
2708 base16_encode(fp, sizeof(fp),
2709 best->status.identity_digest, DIGEST_LEN);
2710 log_warn(LD_CONFIG,
2711 "When looking up a status, you specified a server \"%s\" by name, "
2712 "but the directory authorities do not have any key registered for "
2713 "this nickname -- so it could be used by any server, "
2714 "not just the one you meant. "
2715 "To make sure you get the same server in the future, refer to "
2716 "it by key, as \"$%s\".", nickname, fp);
2717 best->name_lookup_warned = 1;
2719 smartlist_free(matches);
2720 return best;
2723 /** Find a routerstatus_t that corresponds to <b>hexdigest</b>, if
2724 * any. Prefer ones that belong to authorities. */
2725 routerstatus_t *
2726 routerstatus_get_by_hexdigest(const char *hexdigest)
2728 char digest[DIGEST_LEN];
2729 local_routerstatus_t *rs;
2730 trusted_dir_server_t *ds;
2732 if (strlen(hexdigest) < HEX_DIGEST_LEN ||
2733 base16_decode(digest,DIGEST_LEN,hexdigest,HEX_DIGEST_LEN) < 0)
2734 return NULL;
2735 if ((ds = router_get_trusteddirserver_by_digest(digest)))
2736 return &(ds->fake_status.status);
2737 if ((rs = router_get_combined_status_by_digest(digest)))
2738 return &(rs->status);
2739 return NULL;
2742 /** Return true iff any networkstatus includes a descriptor whose digest
2743 * is that of <b>desc</b>. */
2744 static int
2745 signed_desc_digest_is_recognized(signed_descriptor_t *desc)
2747 routerstatus_t *rs;
2748 if (!networkstatus_list)
2749 return 0;
2751 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
2753 if (!(rs = networkstatus_find_entry(ns, desc->identity_digest)))
2754 continue;
2755 if (!memcmp(rs->descriptor_digest,
2756 desc->signed_descriptor_digest, DIGEST_LEN))
2757 return 1;
2759 return 0;
2762 /** How frequently do directory authorities re-download fresh networkstatus
2763 * documents? */
2764 #define AUTHORITY_NS_CACHE_INTERVAL (5*60)
2766 /** How frequently do non-authority directory caches re-download fresh
2767 * networkstatus documents? */
2768 #define NONAUTHORITY_NS_CACHE_INTERVAL (15*60)
2770 /** We are a directory server, and so cache network_status documents.
2771 * Initiate downloads as needed to update them. For authorities, this means
2772 * asking each trusted directory for its network-status. For caches, this
2773 * means asking a random authority for all network-statuses.
2775 static void
2776 update_networkstatus_cache_downloads(time_t now)
2778 int authority = authdir_mode(get_options());
2779 int interval =
2780 authority ? AUTHORITY_NS_CACHE_INTERVAL : NONAUTHORITY_NS_CACHE_INTERVAL;
2782 if (last_networkstatus_download_attempted + interval >= now)
2783 return;
2784 if (!trusted_dir_servers)
2785 return;
2787 last_networkstatus_download_attempted = now;
2789 if (authority) {
2790 /* An authority launches a separate connection for everybody. */
2791 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
2793 char resource[HEX_DIGEST_LEN+6]; /* fp/hexdigit.z\0 */
2794 if (!ds->is_v2_authority)
2795 continue;
2796 if (router_digest_is_me(ds->digest))
2797 continue;
2798 if (connection_get_by_type_addr_port_purpose(
2799 CONN_TYPE_DIR, ds->addr, ds->dir_port,
2800 DIR_PURPOSE_FETCH_NETWORKSTATUS)) {
2801 /* We are already fetching this one. */
2802 continue;
2804 strlcpy(resource, "fp/", sizeof(resource));
2805 base16_encode(resource+3, sizeof(resource)-3, ds->digest, DIGEST_LEN);
2806 strlcat(resource, ".z", sizeof(resource));
2807 directory_initiate_command_routerstatus(
2808 &ds->fake_status.status, DIR_PURPOSE_FETCH_NETWORKSTATUS,
2809 0, /* Not private */
2810 resource,
2811 NULL, 0 /* No payload. */);
2813 } else {
2814 /* A non-authority cache launches one connection to a random authority. */
2815 /* (Check whether we're currently fetching network-status objects.) */
2816 if (!connection_get_by_type_purpose(CONN_TYPE_DIR,
2817 DIR_PURPOSE_FETCH_NETWORKSTATUS))
2818 directory_get_from_dirserver(DIR_PURPOSE_FETCH_NETWORKSTATUS,"all.z",1);
2822 /** How long (in seconds) does a client wait after getting a network status
2823 * before downloading the next in sequence? */
2824 #define NETWORKSTATUS_CLIENT_DL_INTERVAL (30*60)
2825 /** How many times do we allow a networkstatus download to fail before we
2826 * assume that the authority isn't publishing? */
2827 #define NETWORKSTATUS_N_ALLOWABLE_FAILURES 3
2828 /** We are not a directory cache or authority. Update our network-status list
2829 * by launching a new directory fetch for enough network-status documents "as
2830 * necessary". See function comments for implementation details.
2832 static void
2833 update_networkstatus_client_downloads(time_t now)
2835 int n_live = 0, n_dirservers, n_running_dirservers, needed = 0;
2836 int fetch_latest = 0;
2837 int most_recent_idx = -1;
2838 trusted_dir_server_t *most_recent = NULL;
2839 time_t most_recent_received = 0;
2840 char *resource, *cp;
2841 size_t resource_len;
2842 smartlist_t *missing;
2844 if (connection_get_by_type_purpose(CONN_TYPE_DIR,
2845 DIR_PURPOSE_FETCH_NETWORKSTATUS))
2846 return;
2848 /* This is a little tricky. We want to download enough network-status
2849 * objects so that we have all of them under
2850 * NETWORKSTATUS_MAX_AGE publication time. We want to download a new
2851 * *one* if the most recent one's publication time is under
2852 * NETWORKSTATUS_CLIENT_DL_INTERVAL.
2854 if (!get_n_v2_authorities())
2855 return;
2856 n_dirservers = n_running_dirservers = 0;
2857 missing = smartlist_create();
2858 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
2860 networkstatus_t *ns = networkstatus_get_by_digest(ds->digest);
2861 if (!ds->is_v2_authority)
2862 continue;
2863 ++n_dirservers;
2864 if (ds->n_networkstatus_failures > NETWORKSTATUS_N_ALLOWABLE_FAILURES)
2865 continue;
2866 ++n_running_dirservers;
2867 if (ns && ns->published_on > now-NETWORKSTATUS_MAX_AGE)
2868 ++n_live;
2869 else
2870 smartlist_add(missing, ds->digest);
2871 if (ns && (!most_recent || ns->received_on > most_recent_received)) {
2872 most_recent_idx = ds_sl_idx; /* magic variable from FOREACH */
2873 most_recent = ds;
2874 most_recent_received = ns->received_on;
2878 /* Also, download at least 1 every NETWORKSTATUS_CLIENT_DL_INTERVAL. */
2879 if (!smartlist_len(missing) &&
2880 most_recent_received < now-NETWORKSTATUS_CLIENT_DL_INTERVAL) {
2881 log_info(LD_DIR, "Our most recent network-status document (from %s) "
2882 "is %d seconds old; downloading another.",
2883 most_recent?most_recent->description:"nobody",
2884 (int)(now-most_recent_received));
2885 fetch_latest = 1;
2886 needed = 1;
2887 } else if (smartlist_len(missing)) {
2888 log_info(LD_DIR, "For %d/%d running directory servers, we have %d live"
2889 " network-status documents. Downloading %d.",
2890 n_running_dirservers, n_dirservers, n_live,
2891 smartlist_len(missing));
2892 needed = smartlist_len(missing);
2893 } else {
2894 smartlist_free(missing);
2895 return;
2898 /* If no networkstatus was found, choose a dirserver at random as "most
2899 * recent". */
2900 if (most_recent_idx<0)
2901 most_recent_idx = crypto_rand_int(n_dirservers);
2903 if (fetch_latest) {
2904 int i;
2905 int n_failed = 0;
2906 for (i = most_recent_idx + 1; 1; ++i) {
2907 trusted_dir_server_t *ds;
2908 if (i >= n_dirservers)
2909 i = 0;
2910 ds = smartlist_get(trusted_dir_servers, i);
2911 if (! ds->is_v2_authority)
2912 continue;
2913 if (n_failed < n_dirservers &&
2914 ds->n_networkstatus_failures > NETWORKSTATUS_N_ALLOWABLE_FAILURES) {
2915 ++n_failed;
2916 continue;
2918 smartlist_add(missing, ds->digest);
2919 break;
2923 /* Build a request string for all the resources we want. */
2924 resource_len = smartlist_len(missing) * (HEX_DIGEST_LEN+1) + 6;
2925 resource = tor_malloc(resource_len);
2926 memcpy(resource, "fp/", 3);
2927 cp = resource+3;
2928 smartlist_sort_digests(missing);
2929 needed = smartlist_len(missing);
2930 SMARTLIST_FOREACH(missing, const char *, d,
2932 base16_encode(cp, HEX_DIGEST_LEN+1, d, DIGEST_LEN);
2933 cp += HEX_DIGEST_LEN;
2934 --needed;
2935 if (needed)
2936 *cp++ = '+';
2938 memcpy(cp, ".z", 3);
2939 directory_get_from_dirserver(DIR_PURPOSE_FETCH_NETWORKSTATUS, resource, 1);
2940 tor_free(resource);
2941 smartlist_free(missing);
2944 /** Launch requests for networkstatus documents as appropriate. */
2945 void
2946 update_networkstatus_downloads(time_t now)
2948 or_options_t *options = get_options();
2949 if (options->DirPort)
2950 update_networkstatus_cache_downloads(now);
2951 else
2952 update_networkstatus_client_downloads(now);
2955 /** Return 1 if all running sufficiently-stable routers will reject
2956 * addr:port, return 0 if any might accept it. */
2958 router_exit_policy_all_routers_reject(uint32_t addr, uint16_t port,
2959 int need_uptime)
2961 addr_policy_result_t r;
2962 if (!routerlist) return 1;
2964 SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
2966 if (router->is_running &&
2967 !router_is_unreliable(router, need_uptime, 0, 0)) {
2968 r = compare_addr_to_addr_policy(addr, port, router->exit_policy);
2969 if (r != ADDR_POLICY_REJECTED && r != ADDR_POLICY_PROBABLY_REJECTED)
2970 return 0; /* this one could be ok. good enough. */
2973 return 1; /* all will reject. */
2976 /** Return true iff <b>router</b> does not permit exit streams.
2979 router_exit_policy_rejects_all(routerinfo_t *router)
2981 return compare_addr_to_addr_policy(0, 0, router->exit_policy)
2982 == ADDR_POLICY_REJECTED;
2985 /** Add to the list of authorized directory servers one at
2986 * <b>address</b>:<b>port</b>, with identity key <b>digest</b>. If
2987 * <b>address</b> is NULL, add ourself. */
2988 void
2989 add_trusted_dir_server(const char *nickname, const char *address,
2990 uint16_t dir_port, uint16_t or_port,
2991 const char *digest, int is_v1_authority,
2992 int is_v2_authority, int is_hidserv_authority)
2994 trusted_dir_server_t *ent;
2995 uint32_t a;
2996 char *hostname = NULL;
2997 size_t dlen;
2998 if (!trusted_dir_servers)
2999 trusted_dir_servers = smartlist_create();
3001 if (!address) { /* The address is us; we should guess. */
3002 if (resolve_my_address(LOG_WARN, get_options(), &a, &hostname) < 0) {
3003 log_warn(LD_CONFIG,
3004 "Couldn't find a suitable address when adding ourself as a "
3005 "trusted directory server.");
3006 return;
3008 } else {
3009 if (tor_lookup_hostname(address, &a)) {
3010 log_warn(LD_CONFIG,
3011 "Unable to lookup address for directory server at '%s'",
3012 address);
3013 return;
3015 hostname = tor_strdup(address);
3016 a = ntohl(a);
3019 ent = tor_malloc_zero(sizeof(trusted_dir_server_t));
3020 ent->nickname = nickname ? tor_strdup(nickname) : NULL;
3021 ent->address = hostname;
3022 ent->addr = a;
3023 ent->dir_port = dir_port;
3024 ent->or_port = or_port;
3025 ent->is_running = 1;
3026 ent->is_v1_authority = is_v1_authority;
3027 ent->is_v2_authority = is_v2_authority;
3028 ent->is_hidserv_authority = is_hidserv_authority;
3029 memcpy(ent->digest, digest, DIGEST_LEN);
3031 dlen = 64 + strlen(hostname) + (nickname?strlen(nickname):0);
3032 ent->description = tor_malloc(dlen);
3033 if (nickname)
3034 tor_snprintf(ent->description, dlen, "directory server \"%s\" at %s:%d",
3035 nickname, hostname, (int)dir_port);
3036 else
3037 tor_snprintf(ent->description, dlen, "directory server at %s:%d",
3038 hostname, (int)dir_port);
3040 ent->fake_status.status.addr = ent->addr;
3041 memcpy(ent->fake_status.status.identity_digest, digest, DIGEST_LEN);
3042 if (nickname)
3043 strlcpy(ent->fake_status.status.nickname, nickname,
3044 sizeof(ent->fake_status.status.nickname));
3045 else
3046 ent->fake_status.status.nickname[0] = '\0';
3047 ent->fake_status.status.dir_port = ent->dir_port;
3048 ent->fake_status.status.or_port = ent->or_port;
3050 smartlist_add(trusted_dir_servers, ent);
3051 router_dir_info_changed();
3054 /** Free storage held in <b>ds</b> */
3055 static void
3056 trusted_dir_server_free(trusted_dir_server_t *ds)
3058 tor_free(ds->nickname);
3059 tor_free(ds->description);
3060 tor_free(ds->address);
3061 tor_free(ds);
3064 /** Remove all members from the list of trusted dir servers. */
3065 void
3066 clear_trusted_dir_servers(void)
3068 if (trusted_dir_servers) {
3069 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ent,
3070 trusted_dir_server_free(ent));
3071 smartlist_clear(trusted_dir_servers);
3072 } else {
3073 trusted_dir_servers = smartlist_create();
3075 router_dir_info_changed();
3078 /** Return 1 if any trusted dir server supports v1 directories,
3079 * else return 0. */
3081 any_trusted_dir_is_v1_authority(void)
3083 if (trusted_dir_servers)
3084 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ent,
3085 if (ent->is_v1_authority) return 1);
3086 return 0;
3089 /** Return the network status with a given identity digest. */
3090 networkstatus_t *
3091 networkstatus_get_by_digest(const char *digest)
3093 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
3095 if (!memcmp(ns->identity_digest, digest, DIGEST_LEN))
3096 return ns;
3098 return NULL;
3101 /** We believe networkstatuses more recent than this when they tell us that
3102 * our server is broken, invalid, obsolete, etc. */
3103 #define SELF_OPINION_INTERVAL (90*60)
3105 /** Result of checking whether a version is recommended. */
3106 typedef struct combined_version_status_t {
3107 /** How many networkstatuses claim to know about versions? */
3108 int n_versioning;
3109 /** What do the majority of networkstatuses believe about this version? */
3110 version_status_t consensus;
3111 /** How many networkstatuses constitute the majority? */
3112 int n_concurring;
3113 } combined_version_status_t;
3115 /** Return a string naming the versions of Tor recommended by
3116 * more than half the versioning networkstatuses. */
3117 static char *
3118 compute_recommended_versions(time_t now, int client,
3119 const char *my_version,
3120 combined_version_status_t *status_out)
3122 int n_seen;
3123 char *current;
3124 smartlist_t *combined, *recommended;
3125 int n_versioning, n_recommending;
3126 char *result;
3127 /** holds the compromise status taken among all non-recommending
3128 * authorities */
3129 version_status_t consensus = VS_RECOMMENDED;
3130 (void) now; /* right now, we consider *all* statuses, regardless of age. */
3132 tor_assert(my_version);
3133 tor_assert(status_out);
3135 memset(status_out, 0, sizeof(combined_version_status_t));
3137 if (!networkstatus_list)
3138 return tor_strdup("<none>");
3140 combined = smartlist_create();
3141 n_versioning = n_recommending = 0;
3142 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
3144 const char *vers;
3145 smartlist_t *versions;
3146 version_status_t status;
3147 if (! ns->recommends_versions)
3148 continue;
3149 n_versioning++;
3150 vers = client ? ns->client_versions : ns->server_versions;
3151 if (!vers)
3152 continue;
3153 versions = smartlist_create();
3154 smartlist_split_string(versions, vers, ",",
3155 SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
3156 sort_version_list(versions, 1);
3157 smartlist_add_all(combined, versions);
3158 smartlist_free(versions);
3160 /* now, check _our_ version */
3161 status = tor_version_is_obsolete(my_version, vers);
3162 if (status == VS_RECOMMENDED)
3163 n_recommending++;
3164 consensus = version_status_join(status, consensus);
3167 sort_version_list(combined, 0);
3169 current = NULL;
3170 n_seen = 0;
3171 recommended = smartlist_create();
3172 SMARTLIST_FOREACH(combined, char *, cp,
3174 if (current && !strcmp(cp, current)) {
3175 ++n_seen;
3176 } else {
3177 if (n_seen > n_versioning/2 && current)
3178 smartlist_add(recommended, current);
3179 n_seen = 0;
3180 current = cp;
3183 if (n_seen > n_versioning/2 && current)
3184 smartlist_add(recommended, current);
3186 result = smartlist_join_strings(recommended, ", ", 0, NULL);
3188 SMARTLIST_FOREACH(combined, char *, cp, tor_free(cp));
3189 smartlist_free(combined);
3190 smartlist_free(recommended);
3192 status_out->n_versioning = n_versioning;
3193 if (n_recommending > n_versioning/2) {
3194 status_out->consensus = VS_RECOMMENDED;
3195 status_out->n_concurring = n_recommending;
3196 } else {
3197 status_out->consensus = consensus;
3198 status_out->n_concurring = n_versioning - n_recommending;
3201 return result;
3204 /** How many times do we have to fail at getting a networkstatus we can't find
3205 * before we're willing to believe it's okay to set up router statuses? */
3206 #define N_NS_ATTEMPTS_TO_SET_ROUTERS 4
3207 /** How many times do we have to fail at getting a networkstatus we can't find
3208 * before we're willing to believe it's okay to check our version? */
3209 #define N_NS_ATTEMPTS_TO_CHECK_VERSION 4
3211 /** If the network-status list has changed since the last time we called this
3212 * function, update the status of every routerinfo from the network-status
3213 * list.
3215 void
3216 routers_update_all_from_networkstatus(void)
3218 routerinfo_t *me;
3219 time_t now;
3220 if (!routerlist || !networkstatus_list ||
3221 (!networkstatus_list_has_changed && !routerstatus_list_has_changed))
3222 return;
3224 router_dir_info_changed();
3226 now = time(NULL);
3227 if (networkstatus_list_has_changed)
3228 routerstatus_list_update_from_networkstatus(now);
3230 routers_update_status_from_networkstatus(routerlist->routers, 0);
3232 me = router_get_my_routerinfo();
3233 if (me && !have_warned_about_invalid_status &&
3234 have_tried_downloading_all_statuses(N_NS_ATTEMPTS_TO_SET_ROUTERS)) {
3235 int n_recent = 0, n_listing = 0, n_valid = 0, n_named = 0, n_naming = 0;
3236 routerstatus_t *rs;
3237 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
3239 if (ns->received_on + SELF_OPINION_INTERVAL < now)
3240 continue;
3241 ++n_recent;
3242 if (ns->binds_names)
3243 ++n_naming;
3244 if (!(rs = networkstatus_find_entry(ns, me->cache_info.identity_digest)))
3245 continue;
3246 ++n_listing;
3247 if (rs->is_valid)
3248 ++n_valid;
3249 if (rs->is_named)
3250 ++n_named;
3253 if (n_listing) {
3254 if (n_valid <= n_listing/2) {
3255 log_info(LD_GENERAL,
3256 "%d/%d recent statements from directory authorities list us "
3257 "as unapproved. Are you misconfigured?",
3258 n_listing-n_valid, n_listing);
3259 have_warned_about_invalid_status = 1;
3260 } else if (n_naming && !n_named) {
3261 log_info(LD_GENERAL, "0/%d name-binding directory authorities "
3262 "recognize your nickname. Please consider sending your "
3263 "nickname and identity fingerprint to the tor-ops.",
3264 n_naming);
3265 have_warned_about_invalid_status = 1;
3270 entry_guards_compute_status();
3272 if (!have_warned_about_old_version &&
3273 have_tried_downloading_all_statuses(N_NS_ATTEMPTS_TO_CHECK_VERSION)) {
3274 combined_version_status_t st;
3275 int is_server = server_mode(get_options());
3276 char *recommended;
3278 recommended = compute_recommended_versions(now, !is_server, VERSION, &st);
3280 if (st.n_versioning) {
3281 if (st.consensus == VS_RECOMMENDED) {
3282 log_info(LD_GENERAL, "%d/%d statements from version-listing "
3283 "directory authorities say my version is ok.",
3284 st.n_concurring, st.n_versioning);
3285 } else if (st.consensus == VS_NEW || st.consensus == VS_NEW_IN_SERIES) {
3286 if (!have_warned_about_new_version) {
3287 log_notice(LD_GENERAL, "This version of Tor (%s) is newer than any "
3288 "recommended version%s, according to %d/%d version-listing "
3289 "network statuses. Versions recommended by more than %d "
3290 "authorit%s are: %s",
3291 VERSION,
3292 st.consensus == VS_NEW_IN_SERIES ? " in its series" : "",
3293 st.n_concurring, st.n_versioning, st.n_versioning/2,
3294 st.n_versioning/2 > 1 ? "ies" : "y", recommended);
3295 have_warned_about_new_version = 1;
3296 control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
3297 "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
3298 VERSION, "NEW", recommended);
3300 } else {
3301 log_warn(LD_GENERAL, "Please upgrade! "
3302 "This version of Tor (%s) is %s, according to %d/%d version-"
3303 "listing network statuses. Versions recommended by "
3304 "at least %d authorit%s are: %s",
3305 VERSION,
3306 st.consensus == VS_OLD ? "obsolete" : "not recommended",
3307 st.n_concurring, st.n_versioning, st.n_versioning/2,
3308 st.n_versioning/2 > 1 ? "ies" : "y", recommended);
3309 have_warned_about_old_version = 1;
3310 control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
3311 "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
3312 VERSION, st.consensus == VS_OLD ? "OLD" : "UNRECOMMENDED",
3313 recommended);
3316 tor_free(recommended);
3319 routerstatus_list_has_changed = 0;
3322 /** Allow any network-status newer than this to influence our view of who's
3323 * running. */
3324 #define DEFAULT_RUNNING_INTERVAL (60*60)
3325 /** If possible, always allow at least this many network-statuses to influence
3326 * our view of who's running. */
3327 #define MIN_TO_INFLUENCE_RUNNING 3
3329 /** Change the is_recent field of each member of networkstatus_list so that
3330 * all members more recent than DEFAULT_RUNNING_INTERVAL are recent, and
3331 * at least the MIN_TO_INFLUENCE_RUNNING most recent members are recent, and no
3332 * others are recent. Set networkstatus_list_has_changed if anything happened.
3334 void
3335 networkstatus_list_update_recent(time_t now)
3337 int n_statuses, n_recent, changed, i;
3338 char published[ISO_TIME_LEN+1];
3340 if (!networkstatus_list)
3341 return;
3343 n_statuses = smartlist_len(networkstatus_list);
3344 n_recent = 0;
3345 changed = 0;
3346 for (i=n_statuses-1; i >= 0; --i) {
3347 networkstatus_t *ns = smartlist_get(networkstatus_list, i);
3348 trusted_dir_server_t *ds =
3349 router_get_trusteddirserver_by_digest(ns->identity_digest);
3350 const char *src = ds?ds->description:ns->source_address;
3351 if (n_recent < MIN_TO_INFLUENCE_RUNNING ||
3352 ns->published_on + DEFAULT_RUNNING_INTERVAL > now) {
3353 if (!ns->is_recent) {
3354 format_iso_time(published, ns->published_on);
3355 log_info(LD_DIR,
3356 "Networkstatus from %s (published %s) is now \"recent\"",
3357 src, published);
3358 changed = 1;
3360 ns->is_recent = 1;
3361 ++n_recent;
3362 } else {
3363 if (ns->is_recent) {
3364 format_iso_time(published, ns->published_on);
3365 log_info(LD_DIR,
3366 "Networkstatus from %s (published %s) is "
3367 "no longer \"recent\"",
3368 src, published);
3369 changed = 1;
3370 ns->is_recent = 0;
3374 if (changed) {
3375 networkstatus_list_has_changed = 1;
3376 router_dir_info_changed();
3380 /** Helper for routerstatus_list_update_from_networkstatus: remember how many
3381 * authorities recommend a given descriptor digest. */
3382 typedef struct {
3383 routerstatus_t *rs;
3384 int count;
3385 } desc_digest_count_t;
3387 /** Update our view of router status (as stored in routerstatus_list) from the
3388 * current set of network status documents (as stored in networkstatus_list).
3389 * Do nothing unless the network status list has changed since the last time
3390 * this function was called.
3392 static void
3393 routerstatus_list_update_from_networkstatus(time_t now)
3395 or_options_t *options = get_options();
3396 int n_trusted, n_statuses, n_recent = 0, n_naming = 0;
3397 int n_listing_bad_exits = 0, n_listing_bad_directories = 0;
3398 int i, j, warned;
3399 int *index, *size;
3400 networkstatus_t **networkstatus;
3401 smartlist_t *result, *changed_list;
3402 strmap_t *name_map;
3403 char conflict[DIGEST_LEN]; /* Sentinel value */
3404 desc_digest_count_t *digest_counts = NULL;
3406 /* compute which network statuses will have a vote now */
3407 networkstatus_list_update_recent(now);
3408 router_dir_info_changed();
3410 if (!networkstatus_list_has_changed)
3411 return;
3412 if (!networkstatus_list)
3413 networkstatus_list = smartlist_create();
3414 if (!routerstatus_list)
3415 routerstatus_list = smartlist_create();
3416 if (!trusted_dir_servers)
3417 trusted_dir_servers = smartlist_create();
3418 if (!warned_conflicts)
3419 warned_conflicts = smartlist_create();
3421 n_statuses = smartlist_len(networkstatus_list);
3422 n_trusted = get_n_v2_authorities();
3424 if (n_statuses <= n_trusted/2) {
3425 /* Not enough statuses to adjust status. */
3426 log_info(LD_DIR,
3427 "Not enough statuses to update router status list. (%d/%d)",
3428 n_statuses, n_trusted);
3429 return;
3432 log_info(LD_DIR, "Rebuilding router status list.");
3434 index = tor_malloc(sizeof(int)*n_statuses);
3435 size = tor_malloc(sizeof(int)*n_statuses);
3436 networkstatus = tor_malloc(sizeof(networkstatus_t *)*n_statuses);
3437 for (i = 0; i < n_statuses; ++i) {
3438 index[i] = 0;
3439 networkstatus[i] = smartlist_get(networkstatus_list, i);
3440 size[i] = smartlist_len(networkstatus[i]->entries);
3441 if (networkstatus[i]->binds_names)
3442 ++n_naming;
3443 if (networkstatus[i]->is_recent)
3444 ++n_recent;
3445 if (networkstatus[i]->lists_bad_exits)
3446 ++n_listing_bad_exits;
3447 if (networkstatus[i]->lists_bad_directories)
3448 ++n_listing_bad_directories;
3451 /** Iterate over all entries in all networkstatuses, and build
3452 * name_map as a map from lc nickname to identity digest. If there
3453 * is a conflict on that nickname, map the lc nickname to conflict.
3455 name_map = strmap_new();
3456 /* Clear the global map... */
3457 if (named_server_map)
3458 strmap_free(named_server_map, _tor_free);
3459 named_server_map = strmap_new();
3460 memset(conflict, 0xff, sizeof(conflict));
3461 for (i = 0; i < n_statuses; ++i) {
3462 if (!networkstatus[i]->binds_names)
3463 continue;
3464 SMARTLIST_FOREACH(networkstatus[i]->entries, routerstatus_t *, rs,
3466 const char *other_digest;
3467 if (!rs->is_named)
3468 continue;
3469 other_digest = strmap_get_lc(name_map, rs->nickname);
3470 warned = smartlist_string_isin(warned_conflicts, rs->nickname);
3471 if (!other_digest) {
3472 strmap_set_lc(name_map, rs->nickname, rs->identity_digest);
3473 strmap_set_lc(named_server_map, rs->nickname,
3474 tor_memdup(rs->identity_digest, DIGEST_LEN));
3475 if (warned)
3476 smartlist_string_remove(warned_conflicts, rs->nickname);
3477 } else if (memcmp(other_digest, rs->identity_digest, DIGEST_LEN) &&
3478 other_digest != conflict) {
3479 if (!warned) {
3480 char *d;
3481 int should_warn = options->DirPort && options->AuthoritativeDir;
3482 char fp1[HEX_DIGEST_LEN+1];
3483 char fp2[HEX_DIGEST_LEN+1];
3484 base16_encode(fp1, sizeof(fp1), other_digest, DIGEST_LEN);
3485 base16_encode(fp2, sizeof(fp2), rs->identity_digest, DIGEST_LEN);
3486 log_fn(should_warn ? LOG_WARN : LOG_INFO, LD_DIR,
3487 "Naming authorities disagree about which key goes with %s. "
3488 "($%s vs $%s)",
3489 rs->nickname, fp1, fp2);
3490 strmap_set_lc(name_map, rs->nickname, conflict);
3491 d = strmap_remove_lc(named_server_map, rs->nickname);
3492 tor_free(d);
3493 smartlist_add(warned_conflicts, tor_strdup(rs->nickname));
3495 } else {
3496 if (warned)
3497 smartlist_string_remove(warned_conflicts, rs->nickname);
3502 result = smartlist_create();
3503 changed_list = smartlist_create();
3504 digest_counts = tor_malloc_zero(sizeof(desc_digest_count_t)*n_statuses);
3506 /* Iterate through all of the sorted routerstatus lists in lockstep.
3507 * Invariants:
3508 * - For 0 <= i < n_statuses: index[i] is an index into
3509 * networkstatus[i]->entries, which has size[i] elements.
3510 * - For i1, i2, j such that 0 <= i1 < n_statuses, 0 <= i2 < n_statues, 0 <=
3511 * j < index[i1]: networkstatus[i1]->entries[j]->identity_digest <
3512 * networkstatus[i2]->entries[index[i2]]->identity_digest.
3514 * (That is, the indices are always advanced past lower digest before
3515 * higher.)
3517 while (1) {
3518 int n_running=0, n_named=0, n_valid=0, n_listing=0;
3519 int n_v2_dir=0, n_fast=0, n_stable=0, n_exit=0, n_guard=0, n_bad_exit=0;
3520 int n_bad_directory=0;
3521 int n_version_known=0, n_supports_begindir=0;
3522 int n_desc_digests=0, highest_count=0;
3523 const char *the_name = NULL;
3524 local_routerstatus_t *rs_out, *rs_old;
3525 routerstatus_t *rs, *most_recent;
3526 networkstatus_t *ns;
3527 const char *lowest = NULL;
3529 /* Find out which of the digests appears first. */
3530 for (i = 0; i < n_statuses; ++i) {
3531 if (index[i] < size[i]) {
3532 rs = smartlist_get(networkstatus[i]->entries, index[i]);
3533 if (!lowest || memcmp(rs->identity_digest, lowest, DIGEST_LEN)<0)
3534 lowest = rs->identity_digest;
3537 if (!lowest) {
3538 /* We're out of routers. Great! */
3539 break;
3541 /* Okay. The routers at networkstatus[i]->entries[index[i]] whose digests
3542 * match "lowest" are next in order. Iterate over them, incrementing those
3543 * index[i] as we go. */
3544 for (i = 0; i < n_statuses; ++i) {
3545 if (index[i] >= size[i])
3546 continue;
3547 ns = networkstatus[i];
3548 rs = smartlist_get(ns->entries, index[i]);
3549 if (memcmp(rs->identity_digest, lowest, DIGEST_LEN))
3550 continue;
3551 /* At this point, we know that we're looking at a routersatus with
3552 * identity "lowest".
3554 ++index[i];
3555 ++n_listing;
3556 /* Should we name this router? Only if all the names from naming
3557 * authorities match. */
3558 if (rs->is_named && ns->binds_names) {
3559 if (!the_name)
3560 the_name = rs->nickname;
3561 if (!strcasecmp(rs->nickname, the_name)) {
3562 ++n_named;
3563 } else if (strcmp(the_name,"**mismatch**")) {
3564 char hd[HEX_DIGEST_LEN+1];
3565 base16_encode(hd, HEX_DIGEST_LEN+1, rs->identity_digest, DIGEST_LEN);
3566 if (! smartlist_string_isin(warned_conflicts, hd)) {
3567 log_warn(LD_DIR,
3568 "Naming authorities disagree about nicknames for $%s "
3569 "(\"%s\" vs \"%s\")",
3570 hd, the_name, rs->nickname);
3571 smartlist_add(warned_conflicts, tor_strdup(hd));
3573 the_name = "**mismatch**";
3576 /* Keep a running count of how often which descriptor digests
3577 * appear. */
3578 for (j = 0; j < n_desc_digests; ++j) {
3579 if (!memcmp(rs->descriptor_digest,
3580 digest_counts[j].rs->descriptor_digest, DIGEST_LEN)) {
3581 if (++digest_counts[j].count > highest_count)
3582 highest_count = digest_counts[j].count;
3583 goto found;
3586 digest_counts[n_desc_digests].rs = rs;
3587 digest_counts[n_desc_digests].count = 1;
3588 if (!highest_count)
3589 highest_count = 1;
3590 ++n_desc_digests;
3591 found:
3592 /* Now tally up the easily-tallied flags. */
3593 if (rs->is_valid)
3594 ++n_valid;
3595 if (rs->is_running && ns->is_recent)
3596 ++n_running;
3597 if (rs->is_exit)
3598 ++n_exit;
3599 if (rs->is_fast)
3600 ++n_fast;
3601 if (rs->is_possible_guard)
3602 ++n_guard;
3603 if (rs->is_stable)
3604 ++n_stable;
3605 if (rs->is_v2_dir)
3606 ++n_v2_dir;
3607 if (rs->is_bad_exit)
3608 ++n_bad_exit;
3609 if (rs->is_bad_directory)
3610 ++n_bad_directory;
3611 if (rs->version_known)
3612 ++n_version_known;
3613 if (rs->version_supports_begindir)
3614 ++n_supports_begindir;
3616 /* Go over the descriptor digests and figure out which descriptor we
3617 * want. */
3618 most_recent = NULL;
3619 for (i = 0; i < n_desc_digests; ++i) {
3620 /* If any digest appears twice or more, ignore those that don't.*/
3621 if (highest_count >= 2 && digest_counts[i].count < 2)
3622 continue;
3623 if (!most_recent ||
3624 digest_counts[i].rs->published_on > most_recent->published_on)
3625 most_recent = digest_counts[i].rs;
3627 rs_out = tor_malloc_zero(sizeof(local_routerstatus_t));
3628 memcpy(&rs_out->status, most_recent, sizeof(routerstatus_t));
3629 /* Copy status info about this router, if we had any before. */
3630 if ((rs_old = router_get_combined_status_by_digest(lowest))) {
3631 if (!memcmp(rs_out->status.descriptor_digest,
3632 most_recent->descriptor_digest, DIGEST_LEN)) {
3633 rs_out->n_download_failures = rs_old->n_download_failures;
3634 rs_out->next_attempt_at = rs_old->next_attempt_at;
3636 rs_out->name_lookup_warned = rs_old->name_lookup_warned;
3637 rs_out->last_dir_503_at = rs_old->last_dir_503_at;
3639 smartlist_add(result, rs_out);
3640 log_debug(LD_DIR, "Router '%s' is listed by %d/%d directories, "
3641 "named by %d/%d, validated by %d/%d, and %d/%d recent "
3642 "directories think it's running.",
3643 rs_out->status.nickname,
3644 n_listing, n_statuses, n_named, n_naming, n_valid, n_statuses,
3645 n_running, n_recent);
3646 rs_out->status.is_named = 0;
3647 if (the_name && strcmp(the_name, "**mismatch**") && n_named > 0) {
3648 const char *d = strmap_get_lc(name_map, the_name);
3649 if (d && d != conflict)
3650 rs_out->status.is_named = 1;
3651 if (smartlist_string_isin(warned_conflicts, rs_out->status.nickname))
3652 smartlist_string_remove(warned_conflicts, rs_out->status.nickname);
3654 if (rs_out->status.is_named)
3655 strlcpy(rs_out->status.nickname, the_name,
3656 sizeof(rs_out->status.nickname));
3657 rs_out->status.is_valid = n_valid > n_statuses/2;
3658 rs_out->status.is_running = n_running > n_recent/2;
3659 rs_out->status.is_exit = n_exit > n_statuses/2;
3660 rs_out->status.is_fast = n_fast > n_statuses/2;
3661 rs_out->status.is_possible_guard = n_guard > n_statuses/2;
3662 rs_out->status.is_stable = n_stable > n_statuses/2;
3663 rs_out->status.is_v2_dir = n_v2_dir > n_statuses/2;
3664 rs_out->status.is_bad_exit = n_bad_exit > n_listing_bad_exits/2;
3665 rs_out->status.is_bad_directory =
3666 n_bad_directory > n_listing_bad_directories/2;
3667 rs_out->status.version_known = n_version_known > 0;
3668 rs_out->status.version_supports_begindir =
3669 n_supports_begindir > n_version_known/2;
3670 if (!rs_old || memcmp(rs_old, rs_out, sizeof(local_routerstatus_t)))
3671 smartlist_add(changed_list, rs_out);
3673 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
3674 local_routerstatus_free(rs));
3676 smartlist_free(routerstatus_list);
3677 routerstatus_list = result;
3679 tor_free(networkstatus);
3680 tor_free(index);
3681 tor_free(size);
3682 tor_free(digest_counts);
3683 strmap_free(name_map, NULL);
3685 networkstatus_list_has_changed = 0;
3686 routerstatus_list_has_changed = 1;
3688 control_event_networkstatus_changed(changed_list);
3689 smartlist_free(changed_list);
3692 /** Given a list <b>routers</b> of routerinfo_t *, update each routers's
3693 * is_named, is_valid, and is_running fields according to our current
3694 * networkstatus_t documents. */
3695 void
3696 routers_update_status_from_networkstatus(smartlist_t *routers,
3697 int reset_failures)
3699 trusted_dir_server_t *ds;
3700 local_routerstatus_t *rs;
3701 or_options_t *options = get_options();
3702 int authdir = options->AuthoritativeDir;
3703 int namingdir = options->AuthoritativeDir &&
3704 options->NamingAuthoritativeDir;
3706 if (!routerstatus_list)
3707 return;
3709 SMARTLIST_FOREACH(routers, routerinfo_t *, router,
3711 const char *digest = router->cache_info.identity_digest;
3712 rs = router_get_combined_status_by_digest(digest);
3713 ds = router_get_trusteddirserver_by_digest(digest);
3715 if (!rs)
3716 continue;
3718 if (!namingdir)
3719 router->is_named = rs->status.is_named;
3721 if (!authdir) {
3722 /* If we're not an authdir, believe others. */
3723 router->is_valid = rs->status.is_valid;
3724 router->is_running = rs->status.is_running;
3725 router->is_fast = rs->status.is_fast;
3726 router->is_stable = rs->status.is_stable;
3727 router->is_possible_guard = rs->status.is_possible_guard;
3728 router->is_exit = rs->status.is_exit;
3729 router->is_bad_exit = rs->status.is_bad_exit;
3731 if (router->is_running && ds) {
3732 ds->n_networkstatus_failures = 0;
3734 if (reset_failures) {
3735 rs->n_download_failures = 0;
3736 rs->next_attempt_at = 0;
3739 router_dir_info_changed();
3742 /** For every router descriptor we are currently downloading by descriptor
3743 * digest, set result[d] to 1. */
3744 static void
3745 list_pending_descriptor_downloads(digestmap_t *result)
3747 const char *prefix = "d/";
3748 size_t p_len = strlen(prefix);
3749 int i, n_conns;
3750 connection_t **carray;
3751 smartlist_t *tmp = smartlist_create();
3753 tor_assert(result);
3754 get_connection_array(&carray, &n_conns);
3756 for (i = 0; i < n_conns; ++i) {
3757 connection_t *conn = carray[i];
3758 if (conn->type == CONN_TYPE_DIR &&
3759 conn->purpose == DIR_PURPOSE_FETCH_SERVERDESC &&
3760 !conn->marked_for_close) {
3761 const char *resource = TO_DIR_CONN(conn)->requested_resource;
3762 if (!strcmpstart(resource, prefix))
3763 dir_split_resource_into_fingerprints(resource + p_len,
3764 tmp, NULL, 1, 0);
3767 SMARTLIST_FOREACH(tmp, char *, d,
3769 digestmap_set(result, d, (void*)1);
3770 tor_free(d);
3772 smartlist_free(tmp);
3775 /** Launch downloads for all the descriptors whose digests are listed
3776 * as digests[i] for lo <= i < hi. (Lo and hi may be out of range.)
3777 * If <b>source</b> is given, download from <b>source</b>; otherwise,
3778 * download from an appropriate random directory server.
3780 static void
3781 initiate_descriptor_downloads(routerstatus_t *source,
3782 smartlist_t *digests,
3783 int lo, int hi)
3785 int i, n = hi-lo;
3786 char *resource, *cp;
3787 size_t r_len;
3788 if (n <= 0)
3789 return;
3790 if (lo < 0)
3791 lo = 0;
3792 if (hi > smartlist_len(digests))
3793 hi = smartlist_len(digests);
3795 r_len = 8 + (HEX_DIGEST_LEN+1)*n;
3796 cp = resource = tor_malloc(r_len);
3797 memcpy(cp, "d/", 2);
3798 cp += 2;
3799 for (i = lo; i < hi; ++i) {
3800 base16_encode(cp, r_len-(cp-resource),
3801 smartlist_get(digests,i), DIGEST_LEN);
3802 cp += HEX_DIGEST_LEN;
3803 *cp++ = '+';
3805 memcpy(cp-1, ".z", 3);
3807 if (source) {
3808 /* We know which authority we want. */
3809 directory_initiate_command_routerstatus(source,
3810 DIR_PURPOSE_FETCH_SERVERDESC,
3811 0, /* not private */
3812 resource, NULL, 0);
3813 } else {
3814 directory_get_from_dirserver(DIR_PURPOSE_FETCH_SERVERDESC,
3815 resource,
3818 tor_free(resource);
3821 /** Clients don't download any descriptor this recent, since it will probably
3822 * not have propageted to enough caches. */
3823 #define ESTIMATED_PROPAGATION_TIME (10*60)
3825 /** Return 0 if this routerstatus is obsolete, too new, isn't
3826 * running, or otherwise not a descriptor that we would make any
3827 * use of even if we had it. Else return 1. */
3828 static INLINE int
3829 client_would_use_router(routerstatus_t *rs, time_t now, or_options_t *options)
3831 if (!rs->is_running && !options->FetchUselessDescriptors) {
3832 /* If we had this router descriptor, we wouldn't even bother using it.
3833 * But, if we want to have a complete list, fetch it anyway. */
3834 return 0;
3836 if (rs->published_on + ESTIMATED_PROPAGATION_TIME > now) {
3837 /* Most caches probably don't have this descriptor yet. */
3838 return 0;
3840 return 1;
3843 /** Return new list of ID fingerprints for routers that we (as a client) would
3844 * like to download.
3846 static smartlist_t *
3847 router_list_client_downloadable(void)
3849 int n_downloadable = 0;
3850 smartlist_t *downloadable = smartlist_create();
3851 digestmap_t *downloading;
3852 time_t now = time(NULL);
3853 /* these are just used for logging */
3854 int n_not_ready = 0, n_in_progress = 0, n_uptodate = 0, n_wouldnt_use = 0;
3855 or_options_t *options = get_options();
3857 if (!routerstatus_list)
3858 return downloadable;
3860 downloading = digestmap_new();
3861 list_pending_descriptor_downloads(downloading);
3863 routerstatus_list_update_from_networkstatus(now);
3864 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
3866 routerinfo_t *ri;
3867 if (router_get_by_descriptor_digest(rs->status.descriptor_digest)) {
3868 /* We have the 'best' descriptor for this router. */
3869 ++n_uptodate;
3870 } else if (!client_would_use_router(&rs->status, now, options)) {
3871 /* We wouldn't want this descriptor even if we got it. */
3872 ++n_wouldnt_use;
3873 } else if (digestmap_get(downloading, rs->status.descriptor_digest)) {
3874 /* We're downloading this one now. */
3875 ++n_in_progress;
3876 } else if ((ri = router_get_by_digest(rs->status.identity_digest)) &&
3877 ri->cache_info.published_on > rs->status.published_on) {
3878 /* Oddly, we have a descriptor more recent than the 'best' one, but it
3879 was once best. So that's okay. */
3880 ++n_uptodate;
3881 } else if (rs->next_attempt_at > now) {
3882 /* We failed too recently to try again. */
3883 ++n_not_ready;
3884 } else {
3885 /* Okay, time to try it. */
3886 smartlist_add(downloadable, rs->status.descriptor_digest);
3887 ++n_downloadable;
3891 #if 0
3892 log_info(LD_DIR,
3893 "%d router descriptors are downloadable. "
3894 "%d are in progress. %d are up-to-date. "
3895 "%d are non-useful. %d failed too recently to retry.",
3896 n_downloadable, n_in_progress, n_uptodate,
3897 n_wouldnt_use, n_not_ready);
3898 #endif
3900 digestmap_free(downloading, NULL);
3901 return downloadable;
3904 /** Initiate new router downloads as needed, using the strategy for
3905 * non-directory-servers.
3907 * We don't launch any downloads if there are fewer than MAX_DL_TO_DELAY
3908 * descriptors to get and less than MAX_CLIENT_INTERVAL_WITHOUT_REQUEST
3909 * seconds have passed.
3911 * Otherwise, we ask for all descriptors that we think are different from what
3912 * we have, and that we don't currently have an in-progress download attempt
3913 * for. */
3914 static void
3915 update_router_descriptor_client_downloads(time_t now)
3917 /** Max amount of hashes to download per request.
3918 * Since squid does not like URLs >= 4096 bytes we limit it to 96.
3919 * 4096 - strlen(http://255.255.255.255/tor/server/d/.z) == 4058
3920 * 4058/41 (40 for the hash and 1 for the + that separates them) => 98
3921 * So use 96 because it's a nice number.
3923 #define MAX_DL_PER_REQUEST 96
3924 /** Don't split our requests so finely that we are requesting fewer than
3925 * this number per server. */
3926 #define MIN_DL_PER_REQUEST 4
3927 /** To prevent a single screwy cache from confusing us by selective reply,
3928 * try to split our requests into at least this this many requests. */
3929 #define MIN_REQUESTS 3
3930 /** If we want fewer than this many descriptors, wait until we
3931 * want more, or until MAX_CLIENT_INTERVAL_WITHOUT_REQUEST has
3932 * passed. */
3933 #define MAX_DL_TO_DELAY 16
3934 /** When directory clients have only a few servers to request, they batch
3935 * them until they have more, or until this amount of time has passed. */
3936 #define MAX_CLIENT_INTERVAL_WITHOUT_REQUEST (10*60)
3937 smartlist_t *downloadable = NULL;
3938 int should_delay, n_downloadable;
3939 or_options_t *options = get_options();
3941 if (options->DirPort) {
3942 log_warn(LD_BUG,
3943 "Called router_descriptor_client_downloads() on a dir mirror?");
3946 if (rep_hist_circbuilding_dormant(now)) {
3947 log_info(LD_CIRC, "Skipping descriptor downloads: we haven't needed "
3948 "any circuits lately.");
3949 return;
3952 if (networkstatus_list &&
3953 smartlist_len(networkstatus_list) <= get_n_v2_authorities()/2) {
3954 log_info(LD_DIR,
3955 "Not enough networkstatus documents to launch requests.");
3956 return;
3959 downloadable = router_list_client_downloadable();
3960 n_downloadable = smartlist_len(downloadable);
3961 if (n_downloadable >= MAX_DL_TO_DELAY) {
3962 log_debug(LD_DIR,
3963 "There are enough downloadable routerdescs to launch requests.");
3964 should_delay = 0;
3965 } else if (n_downloadable == 0) {
3966 // log_debug(LD_DIR, "No routerdescs need to be downloaded.");
3967 should_delay = 1;
3968 } else {
3969 should_delay = (last_routerdesc_download_attempted +
3970 MAX_CLIENT_INTERVAL_WITHOUT_REQUEST) > now;
3971 if (!should_delay) {
3972 if (last_routerdesc_download_attempted) {
3973 log_info(LD_DIR,
3974 "There are not many downloadable routerdescs, but we've "
3975 "been waiting long enough (%d seconds). Downloading.",
3976 (int)(now-last_routerdesc_download_attempted));
3977 } else {
3978 log_info(LD_DIR,
3979 "There are not many downloadable routerdescs, but we haven't "
3980 "tried downloading descriptors recently. Downloading.");
3985 if (! should_delay) {
3986 int i, n_per_request;
3987 n_per_request = (n_downloadable+MIN_REQUESTS-1) / MIN_REQUESTS;
3988 if (n_per_request > MAX_DL_PER_REQUEST)
3989 n_per_request = MAX_DL_PER_REQUEST;
3990 if (n_per_request < MIN_DL_PER_REQUEST)
3991 n_per_request = MIN_DL_PER_REQUEST;
3993 log_info(LD_DIR,
3994 "Launching %d request%s for %d router%s, %d at a time",
3995 (n_downloadable+n_per_request-1)/n_per_request,
3996 n_downloadable>n_per_request?"s":"",
3997 n_downloadable, n_downloadable>1?"s":"", n_per_request);
3998 smartlist_sort_digests(downloadable);
3999 for (i=0; i < n_downloadable; i += n_per_request) {
4000 initiate_descriptor_downloads(NULL, downloadable, i, i+n_per_request);
4002 last_routerdesc_download_attempted = now;
4004 smartlist_free(downloadable);
4007 /** Launch downloads for router status as needed, using the strategy used by
4008 * authorities and caches: download every descriptor we don't have but would
4009 * serve, from a random authority that lists it. */
4010 static void
4011 update_router_descriptor_cache_downloads(time_t now)
4013 smartlist_t **downloadable; /* For each authority, what can we dl from it? */
4014 smartlist_t **download_from; /* ... and, what will we dl from it? */
4015 digestmap_t *map; /* Which descs are in progress, or assigned? */
4016 int i, j, n;
4017 int n_download;
4018 or_options_t *options = get_options();
4019 (void) now;
4021 if (!options->DirPort) {
4022 log_warn(LD_BUG, "Called update_router_descriptor_cache_downloads() "
4023 "on a non-dir-mirror?");
4026 if (!networkstatus_list || !smartlist_len(networkstatus_list))
4027 return;
4029 map = digestmap_new();
4030 n = smartlist_len(networkstatus_list);
4032 downloadable = tor_malloc_zero(sizeof(smartlist_t*) * n);
4033 download_from = tor_malloc_zero(sizeof(smartlist_t*) * n);
4035 /* Set map[d]=1 for the digest of every descriptor that we are currently
4036 * downloading. */
4037 list_pending_descriptor_downloads(map);
4039 /* For the digest of every descriptor that we don't have, and that we aren't
4040 * downloading, add d to downloadable[i] if the i'th networkstatus knows
4041 * about that descriptor, and we haven't already failed to get that
4042 * descriptor from the corresponding authority.
4044 n_download = 0;
4045 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
4047 smartlist_t *dl;
4048 dl = downloadable[ns_sl_idx] = smartlist_create();
4049 download_from[ns_sl_idx] = smartlist_create();
4050 if (ns->published_on + MAX_NETWORKSTATUS_AGE+10*60 < now) {
4051 /* Don't download if the networkstatus is almost ancient. */
4052 /* Actually, I suspect what's happening here is that we ask
4053 * for the descriptor when we have a given networkstatus,
4054 * and then we get a newer networkstatus, and then we receive
4055 * the descriptor. Having a networkstatus actually expire is
4056 * probably a rare event, and we'll probably be happiest if
4057 * we take this clause out. -RD */
4058 continue;
4060 SMARTLIST_FOREACH(ns->entries, routerstatus_t * , rs,
4062 if (!rs->need_to_mirror)
4063 continue;
4064 if (router_get_by_descriptor_digest(rs->descriptor_digest)) {
4065 log_warn(LD_BUG,
4066 "Bug: We have a router descriptor, but need_to_mirror=1.");
4067 rs->need_to_mirror = 0;
4068 continue;
4070 if (options->AuthoritativeDir && dirserv_would_reject_router(rs)) {
4071 rs->need_to_mirror = 0;
4072 continue;
4074 if (digestmap_get(map, rs->descriptor_digest)) {
4075 /* We're downloading it already. */
4076 continue;
4077 } else {
4078 /* We could download it from this guy. */
4079 smartlist_add(dl, rs->descriptor_digest);
4080 ++n_download;
4085 /* At random, assign descriptors to authorities such that:
4086 * - if d is a member of some downloadable[x], d is a member of some
4087 * download_from[y]. (Everything we want to download, we try to download
4088 * from somebody.)
4089 * - If d is a member of download_from[y], d is a member of downloadable[y].
4090 * (We only try to download descriptors from authorities who claim to have
4091 * them.)
4092 * - No d is a member of download_from[x] and download_from[y] s.t. x != y.
4093 * (We don't try to download anything from two authorities concurrently.)
4095 while (n_download) {
4096 int which_ns = crypto_rand_int(n);
4097 smartlist_t *dl = downloadable[which_ns];
4098 int idx;
4099 char *d;
4100 if (!smartlist_len(dl))
4101 continue;
4102 idx = crypto_rand_int(smartlist_len(dl));
4103 d = smartlist_get(dl, idx);
4104 if (! digestmap_get(map, d)) {
4105 smartlist_add(download_from[which_ns], d);
4106 digestmap_set(map, d, (void*) 1);
4108 smartlist_del(dl, idx);
4109 --n_download;
4112 /* Now, we can actually launch our requests. */
4113 for (i=0; i<n; ++i) {
4114 networkstatus_t *ns = smartlist_get(networkstatus_list, i);
4115 trusted_dir_server_t *ds =
4116 router_get_trusteddirserver_by_digest(ns->identity_digest);
4117 smartlist_t *dl = download_from[i];
4118 if (!ds) {
4119 log_warn(LD_BUG, "Networkstatus with no corresponding authority!");
4120 continue;
4122 if (! smartlist_len(dl))
4123 continue;
4124 log_info(LD_DIR, "Requesting %d descriptors from authority \"%s\"",
4125 smartlist_len(dl), ds->nickname);
4126 for (j=0; j < smartlist_len(dl); j += MAX_DL_PER_REQUEST) {
4127 initiate_descriptor_downloads(&(ds->fake_status.status), dl, j,
4128 j+MAX_DL_PER_REQUEST);
4132 for (i=0; i<n; ++i) {
4133 smartlist_free(download_from[i]);
4134 smartlist_free(downloadable[i]);
4136 tor_free(download_from);
4137 tor_free(downloadable);
4138 digestmap_free(map,NULL);
4141 /** Launch downloads for router status as needed. */
4142 void
4143 update_router_descriptor_downloads(time_t now)
4145 or_options_t *options = get_options();
4146 if (options->DirPort) {
4147 update_router_descriptor_cache_downloads(now);
4148 } else {
4149 update_router_descriptor_client_downloads(now);
4153 /** Return the number of routerstatus_t in <b>entries</b> that we'd actually
4154 * use. */
4155 static int
4156 routerstatus_count_usable_entries(smartlist_t *entries)
4158 int count = 0;
4159 time_t now = time(NULL);
4160 or_options_t *options = get_options();
4161 SMARTLIST_FOREACH(entries, routerstatus_t *, rs,
4162 if (client_would_use_router(rs, now, options)) count++);
4163 return count;
4166 /** True iff, the last time we checked whether we had enough directory info
4167 * to build circuits, the answer was "yes". */
4168 static int have_min_dir_info = 0;
4169 /** True iff enough has changed since the last time we checked whether we had
4170 * enough directory info to build circuits that our old answer can no longer
4171 * be trusted. */
4172 static int need_to_update_have_min_dir_info = 1;
4174 /** Return true iff we have enough networkstatus and router information to
4175 * start building circuits. Right now, this means "more than half the
4176 * networkstatus documents, and at least 1/4 of expected routers." */
4177 //XXX should consider whether we have enough exiting nodes here.
4179 router_have_minimum_dir_info(void)
4181 if (PREDICT(need_to_update_have_min_dir_info, 0)) {
4182 update_router_have_minimum_dir_info();
4183 need_to_update_have_min_dir_info = 0;
4185 return have_min_dir_info;
4188 /** Called when our internal view of the directory has changed. This can be
4189 * when the authorities change, networkstatuses change, the list of routerdescs
4190 * changes, or number of running routers changes.
4192 static void
4193 router_dir_info_changed(void)
4195 need_to_update_have_min_dir_info = 1;
4198 /** Change the value of have_min_dir_info, setting it true iff we have enough
4199 * network and router information to build circuits. Clear the value of
4200 * need_to_update_have_min_dir_info. */
4201 static void
4202 update_router_have_minimum_dir_info(void)
4204 int tot = 0, num_running = 0;
4205 int n_ns, n_authorities, res, avg;
4206 time_t now = time(NULL);
4207 if (!networkstatus_list || !routerlist) {
4208 res = 0;
4209 goto done;
4211 routerlist_remove_old_routers();
4212 networkstatus_list_clean(now);
4214 n_authorities = get_n_v2_authorities();
4215 n_ns = smartlist_len(networkstatus_list);
4216 if (n_ns<=n_authorities/2) {
4217 log_info(LD_DIR,
4218 "We have %d of %d network statuses, and we want "
4219 "more than %d.", n_ns, n_authorities, n_authorities/2);
4220 res = 0;
4221 goto done;
4223 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
4224 tot += routerstatus_count_usable_entries(ns->entries));
4225 avg = tot / n_ns;
4226 if (!routerstatus_list)
4227 routerstatus_list = smartlist_create();
4228 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
4230 if (rs->status.is_running)
4231 num_running++;
4233 res = smartlist_len(routerlist->routers) >= (avg/4) && num_running > 2;
4234 done:
4235 if (res && !have_min_dir_info) {
4236 log(LOG_NOTICE, LD_DIR,
4237 "We now have enough directory information to build circuits.");
4238 control_event_client_status(LOG_NOTICE, "ENOUGH_DIR_INFO");
4240 if (!res && have_min_dir_info) {
4241 log(LOG_NOTICE, LD_DIR,"Our directory information is no longer up-to-date "
4242 "enough to build circuits.%s",
4243 num_running > 2 ? "" : " (Not enough servers seem reachable -- "
4244 "is your network connection down?)");
4245 control_event_client_status(LOG_NOTICE, "NOT_ENOUGH_DIR_INFO");
4247 have_min_dir_info = res;
4250 /** Return true iff we have downloaded, or attempted to download at least
4251 * n_failures times, a network status for each authority. */
4252 static int
4253 have_tried_downloading_all_statuses(int n_failures)
4255 if (!trusted_dir_servers)
4256 return 0;
4258 SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
4260 if (!ds->is_v2_authority)
4261 continue;
4262 /* If we don't have the status, and we haven't failed to get the status,
4263 * we haven't tried to get the status. */
4264 if (!networkstatus_get_by_digest(ds->digest) &&
4265 ds->n_networkstatus_failures <= n_failures)
4266 return 0;
4269 return 1;
4272 /** Reset the descriptor download failure count on all routers, so that we
4273 * can retry any long-failed routers immediately.
4275 void
4276 router_reset_descriptor_download_failures(void)
4278 if (!routerstatus_list)
4279 return;
4280 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
4282 rs->n_download_failures = 0;
4283 rs->next_attempt_at = 0;
4285 tor_assert(networkstatus_list);
4286 SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
4287 SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
4289 if (!router_get_by_descriptor_digest(rs->descriptor_digest))
4290 rs->need_to_mirror = 1;
4291 }));
4292 last_routerdesc_download_attempted = 0;
4295 /** Any changes in a router descriptor's publication time larger than this are
4296 * automatically non-cosmetic. */
4297 #define ROUTER_MAX_COSMETIC_TIME_DIFFERENCE (12*60*60)
4299 /** We allow uptime to vary from how much it ought to be by this much. */
4300 #define ROUTER_ALLOW_UPTIME_DRIFT (6*60*60)
4302 /** Return true iff the only differences between r1 and r2 are such that
4303 * would not cause a recent (post 0.1.1.6) dirserver to republish.
4306 router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2)
4308 time_t r1pub, r2pub;
4309 int time_difference;
4310 tor_assert(r1 && r2);
4312 /* r1 should be the one that was published first. */
4313 if (r1->cache_info.published_on > r2->cache_info.published_on) {
4314 routerinfo_t *ri_tmp = r2;
4315 r2 = r1;
4316 r1 = ri_tmp;
4319 /* If any key fields differ, they're different. */
4320 if (strcasecmp(r1->address, r2->address) ||
4321 strcasecmp(r1->nickname, r2->nickname) ||
4322 r1->or_port != r2->or_port ||
4323 r1->dir_port != r2->dir_port ||
4324 crypto_pk_cmp_keys(r1->onion_pkey, r2->onion_pkey) ||
4325 crypto_pk_cmp_keys(r1->identity_pkey, r2->identity_pkey) ||
4326 strcasecmp(r1->platform, r2->platform) ||
4327 (r1->contact_info && !r2->contact_info) || /* contact_info is optional */
4328 (!r1->contact_info && r2->contact_info) ||
4329 (r1->contact_info && r2->contact_info &&
4330 strcasecmp(r1->contact_info, r2->contact_info)) ||
4331 r1->is_hibernating != r2->is_hibernating ||
4332 r1->has_old_dnsworkers != r2->has_old_dnsworkers ||
4333 cmp_addr_policies(r1->exit_policy, r2->exit_policy))
4334 return 0;
4335 if ((r1->declared_family == NULL) != (r2->declared_family == NULL))
4336 return 0;
4337 if (r1->declared_family && r2->declared_family) {
4338 int i, n;
4339 if (smartlist_len(r1->declared_family)!=smartlist_len(r2->declared_family))
4340 return 0;
4341 n = smartlist_len(r1->declared_family);
4342 for (i=0; i < n; ++i) {
4343 if (strcasecmp(smartlist_get(r1->declared_family, i),
4344 smartlist_get(r2->declared_family, i)))
4345 return 0;
4349 /* Did bandwidth change a lot? */
4350 if ((r1->bandwidthcapacity < r2->bandwidthcapacity/2) ||
4351 (r2->bandwidthcapacity < r1->bandwidthcapacity/2))
4352 return 0;
4354 /* Did more than 12 hours pass? */
4355 if (r1->cache_info.published_on + ROUTER_MAX_COSMETIC_TIME_DIFFERENCE
4356 < r2->cache_info.published_on)
4357 return 0;
4359 /* Did uptime fail to increase by approximately the amount we would think,
4360 * give or take some slop? */
4361 r1pub = r1->cache_info.published_on;
4362 r2pub = r2->cache_info.published_on;
4363 time_difference = abs(r2->uptime - (r1->uptime + (r2pub - r1pub)));
4364 if (time_difference > ROUTER_ALLOW_UPTIME_DRIFT &&
4365 time_difference > r1->uptime * .05 &&
4366 time_difference > r2->uptime * .05)
4367 return 0;
4369 /* Otherwise, the difference is cosmetic. */
4370 return 1;
4373 /** Generate networkstatus lines for a single routerstatus_t object, and
4374 * return the result in a newly allocated string. Used only by controller
4375 * interface (for now.) */
4376 /* XXXX This should eventually merge into generate_v2_networkstatus() */
4377 char *
4378 networkstatus_getinfo_helper_single(routerstatus_t *rs)
4380 char buf[192];
4381 int r;
4382 struct in_addr in;
4384 int f_authority;
4385 char published[ISO_TIME_LEN+1];
4386 char ipaddr[INET_NTOA_BUF_LEN];
4387 char identity64[BASE64_DIGEST_LEN+1];
4388 char digest64[BASE64_DIGEST_LEN+1];
4390 format_iso_time(published, rs->published_on);
4391 digest_to_base64(identity64, rs->identity_digest);
4392 digest_to_base64(digest64, rs->descriptor_digest);
4393 in.s_addr = htonl(rs->addr);
4394 tor_inet_ntoa(&in, ipaddr, sizeof(ipaddr));
4396 f_authority = router_digest_is_trusted_dir(rs->identity_digest);
4398 r = tor_snprintf(buf, sizeof(buf),
4399 "r %s %s %s %s %s %d %d\n"
4400 "s%s%s%s%s%s%s%s%s%s%s\n",
4401 rs->nickname,
4402 identity64,
4403 digest64,
4404 published,
4405 ipaddr,
4406 (int)rs->or_port,
4407 (int)rs->dir_port,
4409 f_authority?" Authority":"",
4410 rs->is_bad_exit?" BadExit":"",
4411 rs->is_exit?" Exit":"",
4412 rs->is_fast?" Fast":"",
4413 rs->is_possible_guard?" Guard":"",
4414 rs->is_named?" Named":"",
4415 rs->is_stable?" Stable":"",
4416 rs->is_running?" Running":"",
4417 rs->is_valid?" Valid":"",
4418 rs->is_v2_dir?" V2Dir":"");
4419 if (r<0)
4420 log_warn(LD_BUG, "Not enough space in buffer.");
4422 return tor_strdup(buf);
4425 /** If <b>question</b> is a string beginning with "ns/" in a format the
4426 * control interface expects for a GETINFO question, set *<b>answer</b> to a
4427 * newly-allocated string containing networkstatus lines for the appropriate
4428 * ORs. Return 0 on success, -1 on unrecognized question format. */
4430 getinfo_helper_networkstatus(control_connection_t *conn,
4431 const char *question, char **answer)
4433 local_routerstatus_t *status;
4434 (void) conn;
4436 if (!routerstatus_list) {
4437 *answer = tor_strdup("");
4438 return 0;
4441 if (!strcmp(question, "ns/all")) {
4442 smartlist_t *statuses = smartlist_create();
4443 SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, lrs,
4445 routerstatus_t *rs = &(lrs->status);
4446 smartlist_add(statuses, networkstatus_getinfo_helper_single(rs));
4448 *answer = smartlist_join_strings(statuses, "", 0, NULL);
4449 SMARTLIST_FOREACH(statuses, char *, cp, tor_free(cp));
4450 smartlist_free(statuses);
4451 return 0;
4452 } else if (!strcmpstart(question, "ns/id/")) {
4453 char d[DIGEST_LEN];
4455 if (base16_decode(d, DIGEST_LEN, question+6, strlen(question+6)))
4456 return -1;
4457 status = router_get_combined_status_by_digest(d);
4458 } else if (!strcmpstart(question, "ns/name/")) {
4459 status = router_get_combined_status_by_nickname(question+8, 0);
4460 } else {
4461 return -1;
4464 if (status) {
4465 *answer = networkstatus_getinfo_helper_single(&status->status);
4467 return 0;
4470 /** Assert that the internal representation of <b>rl</b> is
4471 * self-consistent. */
4472 static void
4473 routerlist_assert_ok(routerlist_t *rl)
4475 digestmap_iter_t *iter;
4476 routerinfo_t *r2;
4477 signed_descriptor_t *sd2;
4478 if (!routerlist)
4479 return;
4480 SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r,
4482 r2 = digestmap_get(rl->identity_map, r->cache_info.identity_digest);
4483 tor_assert(r == r2);
4484 sd2 = digestmap_get(rl->desc_digest_map,
4485 r->cache_info.signed_descriptor_digest);
4486 tor_assert(&(r->cache_info) == sd2);
4487 tor_assert(r->routerlist_index == r_sl_idx);
4489 SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd,
4491 r2 = digestmap_get(rl->identity_map, sd->identity_digest);
4492 tor_assert(sd != &(r2->cache_info));
4493 sd2 = digestmap_get(rl->desc_digest_map, sd->signed_descriptor_digest);
4494 tor_assert(sd == sd2);
4496 iter = digestmap_iter_init(rl->identity_map);
4497 while (!digestmap_iter_done(iter)) {
4498 const char *d;
4499 void *_r;
4500 routerinfo_t *r;
4501 digestmap_iter_get(iter, &d, &_r);
4502 r = _r;
4503 tor_assert(!memcmp(r->cache_info.identity_digest, d, DIGEST_LEN));
4504 iter = digestmap_iter_next(rl->identity_map, iter);
4506 iter = digestmap_iter_init(rl->desc_digest_map);
4507 while (!digestmap_iter_done(iter)) {
4508 const char *d;
4509 void *_sd;
4510 signed_descriptor_t *sd;
4511 digestmap_iter_get(iter, &d, &_sd);
4512 sd = _sd;
4513 tor_assert(!memcmp(sd->signed_descriptor_digest, d, DIGEST_LEN));
4514 iter = digestmap_iter_next(rl->desc_digest_map, iter);
4518 /** Allocate and return a new string representing the contact info
4519 * and platform string for <b>router</b>,
4520 * surrounded by quotes and using standard C escapes.
4522 * THIS FUNCTION IS NOT REENTRANT. Don't call it from outside the main
4523 * thread. Also, each call invalidates the last-returned value, so don't
4524 * try log_warn(LD_GENERAL, "%s %s", esc_router_info(a), esc_router_info(b));
4526 const char *
4527 esc_router_info(routerinfo_t *router)
4529 static char *info;
4530 char *esc_contact, *esc_platform;
4531 size_t len;
4532 if (info)
4533 tor_free(info);
4535 esc_contact = esc_for_log(router->contact_info);
4536 esc_platform = esc_for_log(router->platform);
4538 len = strlen(esc_contact)+strlen(esc_platform)+32;
4539 info = tor_malloc(len);
4540 tor_snprintf(info, len, "Contact %s, Platform %s", esc_contact,
4541 esc_platform);
4542 tor_free(esc_contact);
4543 tor_free(esc_platform);
4545 return info;