12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352 |
- const char networkstatus_c_id[] =
- "$Id$";
- #include "or.h"
- static digestmap_t *v2_download_status_map = NULL;
- static smartlist_t *networkstatus_v2_list = NULL;
- static int networkstatus_v2_list_has_changed = 0;
- static strmap_t *named_server_map = NULL;
- static networkstatus_vote_t *current_consensus = NULL;
- static networkstatus_vote_t *consensus_waiting_for_certs = NULL;
- static char *consensus_waiting_for_certs_body = NULL;
- static time_t last_networkstatus_download_attempted = 0;
- static time_t time_to_download_next_consensus = 0;
- static download_status_t consensus_dl_status = { 0, 0};
- static int have_warned_about_invalid_status = 0;
- static int have_warned_about_old_version = 0;
- static int have_warned_about_new_version = 0;
- static void download_status_map_update_from_v2_networkstatus(void);
- static void routerstatus_list_update_named_server_map(void);
- void
- networkstatus_reset_warnings(void)
- {
- if (current_consensus) {
- SMARTLIST_FOREACH(current_consensus->routerstatus_list,
- routerstatus_t *, rs,
- rs->name_lookup_warned = 0);
- }
- have_warned_about_invalid_status = 0;
- have_warned_about_old_version = 0;
- have_warned_about_new_version = 0;
- }
- void
- networkstatus_reset_download_failures(void)
- {
- const smartlist_t *networkstatus_v2_list = networkstatus_get_v2_list();
- SMARTLIST_FOREACH(networkstatus_v2_list, networkstatus_v2_t *, ns,
- SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
- {
- if (!router_get_by_descriptor_digest(rs->descriptor_digest))
- rs->need_to_mirror = 1;
- }));;
- download_status_reset(&consensus_dl_status);
- if (v2_download_status_map) {
- digestmap_iter_t *iter;
- digestmap_t *map = v2_download_status_map;
- const char *key;
- void *val;
- download_status_t *dls;
- for (iter = digestmap_iter_init(map); !digestmap_iter_done(iter);
- iter = digestmap_iter_next(map, iter) ) {
- digestmap_iter_get(iter, &key, &val);
- dls = val;
- download_status_reset(dls);
- }
- }
- }
- int
- router_reload_v2_networkstatus(void)
- {
- smartlist_t *entries;
- struct stat st;
- char *s;
- char *filename = get_datadir_fname("cached-status");
- if (!networkstatus_v2_list)
- networkstatus_v2_list = smartlist_create();
- entries = tor_listdir(filename);
- tor_free(filename);
- SMARTLIST_FOREACH(entries, const char *, fn, {
- char buf[DIGEST_LEN];
- if (strlen(fn) != HEX_DIGEST_LEN ||
- base16_decode(buf, sizeof(buf), fn, strlen(fn))) {
- log_info(LD_DIR,
- "Skipping cached-status file with unexpected name \"%s\"",fn);
- continue;
- }
- filename = get_datadir_fname2("cached-status", fn);
- s = read_file_to_str(filename, 0, &st);
- if (s) {
- if (router_set_networkstatus_v2(s, st.st_mtime, NS_FROM_CACHE,
- NULL)<0) {
- log_warn(LD_FS, "Couldn't load networkstatus from \"%s\"",filename);
- }
- tor_free(s);
- }
- tor_free(filename);
- });
- SMARTLIST_FOREACH(entries, char *, fn, tor_free(fn));
- smartlist_free(entries);
- networkstatus_v2_list_clean(time(NULL));
- routers_update_all_from_networkstatus(time(NULL));
- return 0;
- }
- int
- router_reload_consensus_networkstatus(void)
- {
- char *filename;
- char *s;
-
- filename = get_datadir_fname("cached-consensus");
- s = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
- if (s) {
- if (networkstatus_set_current_consensus(s, 1, 0)) {
- log_warn(LD_FS, "Couldn't load consensus networkstatus from \"%s\"",
- filename);
- }
- tor_free(s);
- }
- tor_free(filename);
- filename = get_datadir_fname("unverified-consensus");
- s = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
- if (s) {
- if (networkstatus_set_current_consensus(s, 1, 1)) {
- log_warn(LD_FS, "Couldn't load consensus networkstatus from \"%s\"",
- filename);
- }
- tor_free(s);
- }
- tor_free(filename);
- routers_update_all_from_networkstatus(time(NULL));
- return 0;
- }
- void
- routerstatus_free(routerstatus_t *rs)
- {
- tor_free(rs);
- }
- void
- networkstatus_v2_free(networkstatus_v2_t *ns)
- {
- tor_free(ns->source_address);
- tor_free(ns->contact);
- if (ns->signing_key)
- crypto_free_pk_env(ns->signing_key);
- tor_free(ns->client_versions);
- tor_free(ns->server_versions);
- if (ns->entries) {
- SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
- routerstatus_free(rs));
- smartlist_free(ns->entries);
- }
- tor_free(ns);
- }
- char *
- networkstatus_get_cache_filename(const char *identity_digest)
- {
- char fp[HEX_DIGEST_LEN+1];
- base16_encode(fp, HEX_DIGEST_LEN+1, identity_digest, DIGEST_LEN);
- return get_datadir_fname2("cached-status", fp);
- }
- static int
- _compare_networkstatus_v2_published_on(const void **_a, const void **_b)
- {
- const networkstatus_v2_t *a = *_a, *b = *_b;
- if (a->published_on < b->published_on)
- return -1;
- else if (a->published_on > b->published_on)
- return 1;
- else
- return 0;
- }
- static int
- add_networkstatus_to_cache(const char *s,
- networkstatus_source_t source,
- networkstatus_v2_t *ns)
- {
- if (source != NS_FROM_CACHE) {
- char *fn = networkstatus_get_cache_filename(ns->identity_digest);
- if (write_str_to_file(fn, s, 0)<0) {
- log_notice(LD_FS, "Couldn't write cached network status to \"%s\"", fn);
- }
- tor_free(fn);
- }
- if (dirserver_mode(get_options()))
- dirserv_set_cached_networkstatus_v2(s,
- ns->identity_digest,
- ns->published_on);
- return 0;
- }
- #define NETWORKSTATUS_ALLOW_SKEW (24*60*60)
- int
- router_set_networkstatus_v2(const char *s, time_t arrived_at,
- networkstatus_source_t source, smartlist_t *requested_fingerprints)
- {
- networkstatus_v2_t *ns;
- int i, found;
- time_t now;
- int skewed = 0;
- trusted_dir_server_t *trusted_dir = NULL;
- const char *source_desc = NULL;
- char fp[HEX_DIGEST_LEN+1];
- char published[ISO_TIME_LEN+1];
- if (!dirserver_mode(get_options()))
- return 0;
- ns = networkstatus_v2_parse_from_string(s);
- if (!ns) {
- log_warn(LD_DIR, "Couldn't parse network status.");
- return -1;
- }
- base16_encode(fp, HEX_DIGEST_LEN+1, ns->identity_digest, DIGEST_LEN);
- if (!(trusted_dir =
- router_get_trusteddirserver_by_digest(ns->identity_digest)) ||
- !(trusted_dir->type & V2_AUTHORITY)) {
- log_info(LD_DIR, "Network status was signed, but not by an authoritative "
- "directory we recognize.");
- if (!dirserver_mode(get_options())) {
- networkstatus_v2_free(ns);
- return 0;
- }
- source_desc = fp;
- } else {
- source_desc = trusted_dir->description;
- }
- now = time(NULL);
- if (arrived_at > now)
- arrived_at = now;
- ns->received_on = arrived_at;
- format_iso_time(published, ns->published_on);
- if (ns->published_on > now + NETWORKSTATUS_ALLOW_SKEW) {
- log_warn(LD_GENERAL, "Network status from %s was published in the future "
- "(%s GMT). Check your system clock! "
- "Not caching.",
- source_desc, published);
- control_event_general_status(LOG_WARN,
- "CLOCK_SKEW SOURCE=NETWORKSTATUS:%s:%d",
- ns->source_address, ns->source_dirport);
- skewed = 1;
- }
- if (!networkstatus_v2_list)
- networkstatus_v2_list = smartlist_create();
- if ( (source == NS_FROM_DIR_BY_FP || source == NS_FROM_DIR_ALL) &&
- router_digest_is_me(ns->identity_digest)) {
-
- networkstatus_v2_free(ns);
- return 0;
- }
- if (requested_fingerprints) {
- if (smartlist_string_isin(requested_fingerprints, fp)) {
- smartlist_string_remove(requested_fingerprints, fp);
- } else {
- if (source != NS_FROM_DIR_ALL) {
- char *requested =
- smartlist_join_strings(requested_fingerprints," ",0,NULL);
- log_warn(LD_DIR,
- "We received a network status with a fingerprint (%s) that we "
- "never requested. (We asked for: %s.) Dropping.",
- fp, requested);
- tor_free(requested);
- return 0;
- }
- }
- }
- if (!trusted_dir) {
- if (!skewed && dirserver_mode(get_options())) {
-
- log_info(LD_DIR,
- "We do not recognize authority (%s) but we are willing "
- "to cache it.", fp);
- add_networkstatus_to_cache(s, source, ns);
- networkstatus_v2_free(ns);
- }
- return 0;
- }
- found = 0;
- for (i=0; i < smartlist_len(networkstatus_v2_list); ++i) {
- networkstatus_v2_t *old_ns = smartlist_get(networkstatus_v2_list, i);
- if (!memcmp(old_ns->identity_digest, ns->identity_digest, DIGEST_LEN)) {
- if (!memcmp(old_ns->networkstatus_digest,
- ns->networkstatus_digest, DIGEST_LEN)) {
-
- networkstatus_v2_free(ns);
- tor_assert(trusted_dir);
- log_info(LD_DIR,
- "Not replacing network-status from %s (published %s); "
- "we already have it.",
- trusted_dir->description, published);
- if (old_ns->received_on < arrived_at) {
- if (source != NS_FROM_CACHE) {
- char *fn;
- fn = networkstatus_get_cache_filename(old_ns->identity_digest);
-
- touch_file(fn);
- tor_free(fn);
- }
- old_ns->received_on = arrived_at;
- }
- download_status_failed(&trusted_dir->v2_ns_dl_status, 0);
- return 0;
- } else if (old_ns->published_on >= ns->published_on) {
- char old_published[ISO_TIME_LEN+1];
- format_iso_time(old_published, old_ns->published_on);
- tor_assert(trusted_dir);
- log_info(LD_DIR,
- "Not replacing network-status from %s (published %s);"
- " we have a newer one (published %s) for this authority.",
- trusted_dir->description, published,
- old_published);
- networkstatus_v2_free(ns);
- download_status_failed(&trusted_dir->v2_ns_dl_status, 0);
- return 0;
- } else {
- networkstatus_v2_free(old_ns);
- smartlist_set(networkstatus_v2_list, i, ns);
- found = 1;
- break;
- }
- }
- }
- if (source != NS_FROM_CACHE && trusted_dir) {
- download_status_reset(&trusted_dir->v2_ns_dl_status);
- }
- if (!found)
- smartlist_add(networkstatus_v2_list, ns);
- SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
- {
- if (!router_get_by_descriptor_digest(rs->descriptor_digest))
- rs->need_to_mirror = 1;
- });
- log_info(LD_DIR, "Setting networkstatus %s %s (published %s)",
- source == NS_FROM_CACHE?"cached from":
- ((source == NS_FROM_DIR_BY_FP || source == NS_FROM_DIR_ALL) ?
- "downloaded from":"generated for"),
- trusted_dir->description, published);
- networkstatus_v2_list_has_changed = 1;
- router_dir_info_changed();
- smartlist_sort(networkstatus_v2_list,
- _compare_networkstatus_v2_published_on);
- if (!skewed)
- add_networkstatus_to_cache(s, source, ns);
- return 0;
- }
- void
- networkstatus_v2_list_clean(time_t now)
- {
- int i;
- if (!networkstatus_v2_list)
- return;
- for (i = 0; i < smartlist_len(networkstatus_v2_list); ++i) {
- networkstatus_v2_t *ns = smartlist_get(networkstatus_v2_list, i);
- char *fname = NULL;
- if (ns->published_on + MAX_NETWORKSTATUS_AGE > now)
- continue;
-
- smartlist_del(networkstatus_v2_list, i--);
- fname = networkstatus_get_cache_filename(ns->identity_digest);
- if (file_status(fname) == FN_FILE) {
- log_info(LD_DIR, "Removing too-old networkstatus in %s", fname);
- unlink(fname);
- }
- tor_free(fname);
- if (dirserver_mode(get_options())) {
- dirserv_set_cached_networkstatus_v2(NULL, ns->identity_digest, 0);
- }
- networkstatus_v2_free(ns);
- router_dir_info_changed();
- }
-
- dirserv_clear_old_networkstatuses(now - MAX_NETWORKSTATUS_AGE);
- dirserv_clear_old_v1_info(now);
- }
- static int
- _compare_digest_to_routerstatus_entry(const void *_key, const void **_member)
- {
- const char *key = _key;
- const routerstatus_t *rs = *_member;
- return memcmp(key, rs->identity_digest, DIGEST_LEN);
- }
- routerstatus_t *
- networkstatus_v2_find_entry(networkstatus_v2_t *ns, const char *digest)
- {
- return smartlist_bsearch(ns->entries, digest,
- _compare_digest_to_routerstatus_entry);
- }
- routerstatus_t *
- networkstatus_vote_find_entry(networkstatus_vote_t *ns, const char *digest)
- {
- return smartlist_bsearch(ns->routerstatus_list, digest,
- _compare_digest_to_routerstatus_entry);
- }
- const smartlist_t *
- networkstatus_get_v2_list(void)
- {
- if (!networkstatus_v2_list)
- networkstatus_v2_list = smartlist_create();
- return networkstatus_v2_list;
- }
- routerstatus_t *
- router_get_consensus_status_by_descriptor_digest(const char *digest)
- {
- if (!current_consensus) return NULL;
- if (!current_consensus->desc_digest_map) {
- digestmap_t * m = current_consensus->desc_digest_map = digestmap_new();
- SMARTLIST_FOREACH(current_consensus->routerstatus_list,
- routerstatus_t *, rs,
- {
- digestmap_set(m, rs->descriptor_digest, rs);
- });
- }
- return digestmap_get(current_consensus->desc_digest_map, digest);
- }
- download_status_t *
- router_get_dl_status_by_descriptor_digest(const char *d)
- {
- routerstatus_t *rs;
- if ((rs = router_get_consensus_status_by_descriptor_digest(d)))
- return &rs->dl_status;
- if (v2_download_status_map)
- return digestmap_get(v2_download_status_map, d);
- return NULL;
- }
- routerstatus_t *
- router_get_consensus_status_by_id(const char *digest)
- {
- if (!current_consensus)
- return NULL;
- return smartlist_bsearch(current_consensus->routerstatus_list, digest,
- _compare_digest_to_routerstatus_entry);
- }
- routerstatus_t *
- router_get_consensus_status_by_nickname(const char *nickname,
- int warn_if_unnamed)
- {
- char digest[DIGEST_LEN];
- routerstatus_t *best=NULL;
- smartlist_t *matches=NULL;
- const char *named_id=NULL;
- if (!current_consensus || !nickname)
- return NULL;
- if (nickname[0] == '$') {
- if (base16_decode(digest, DIGEST_LEN, nickname+1, strlen(nickname))<0)
- return NULL;
- return networkstatus_vote_find_entry(current_consensus, digest);
- } else if (strlen(nickname) == HEX_DIGEST_LEN &&
- (base16_decode(digest, DIGEST_LEN, nickname+1, strlen(nickname))==0)) {
- return networkstatus_vote_find_entry(current_consensus, digest);
- }
- if (named_server_map)
- named_id = strmap_get_lc(named_server_map, nickname);
- if (named_id)
- return networkstatus_vote_find_entry(current_consensus, named_id);
-
- matches = smartlist_create();
- SMARTLIST_FOREACH(current_consensus->routerstatus_list,
- routerstatus_t *, lrs,
- {
- if (!strcasecmp(lrs->nickname, nickname)) {
- if (lrs->is_named) {
- smartlist_free(matches);
- return lrs;
- } else {
- smartlist_add(matches, lrs);
- best = lrs;
- }
- }
- });
- if (smartlist_len(matches)>1 && warn_if_unnamed) {
- int any_unwarned=0;
- SMARTLIST_FOREACH(matches, routerstatus_t *, lrs,
- {
- if (! lrs->name_lookup_warned) {
- lrs->name_lookup_warned=1;
- any_unwarned=1;
- }
- });
- if (any_unwarned) {
- log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\","
- " but none is listed as named by the directory authorites. "
- "Choosing one arbitrarily.", nickname);
- }
- } else if (warn_if_unnamed && best && !best->name_lookup_warned) {
- char fp[HEX_DIGEST_LEN+1];
- base16_encode(fp, sizeof(fp),
- best->identity_digest, DIGEST_LEN);
- log_warn(LD_CONFIG,
- "When looking up a status, you specified a server \"%s\" by name, "
- "but the directory authorities do not have any key registered for "
- "this nickname -- so it could be used by any server, "
- "not just the one you meant. "
- "To make sure you get the same server in the future, refer to "
- "it by key, as \"$%s\".", nickname, fp);
- best->name_lookup_warned = 1;
- }
- smartlist_free(matches);
- return best;
- }
- const char *
- networkstatus_get_router_digest_by_nickname(const char *nickname)
- {
- if (!named_server_map)
- return NULL;
- return strmap_get_lc(named_server_map, nickname);
- }
- #define AUTHORITY_NS_CACHE_INTERVAL (5*60)
- #define NONAUTHORITY_NS_CACHE_INTERVAL (15*60)
- static void
- update_v2_networkstatus_cache_downloads(time_t now)
- {
- int authority = authdir_mode_v2(get_options());
- int interval =
- authority ? AUTHORITY_NS_CACHE_INTERVAL : NONAUTHORITY_NS_CACHE_INTERVAL;
- const smartlist_t *trusted_dir_servers = router_get_trusted_dir_servers();
- if (last_networkstatus_download_attempted + interval >= now)
- return;
- last_networkstatus_download_attempted = now;
- if (authority) {
-
- SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
- {
- char resource[HEX_DIGEST_LEN+6];
- if (!(ds->type & V2_AUTHORITY))
- continue;
- if (router_digest_is_me(ds->digest))
- continue;
- if (connection_get_by_type_addr_port_purpose(
- CONN_TYPE_DIR, ds->addr, ds->dir_port,
- DIR_PURPOSE_FETCH_NETWORKSTATUS)) {
-
-
- continue;
- }
- strlcpy(resource, "fp/", sizeof(resource));
- base16_encode(resource+3, sizeof(resource)-3, ds->digest, DIGEST_LEN);
- strlcat(resource, ".z", sizeof(resource));
- directory_initiate_command_routerstatus(
- &ds->fake_status, DIR_PURPOSE_FETCH_NETWORKSTATUS,
- ROUTER_PURPOSE_GENERAL,
- 0,
- resource,
- NULL, 0 );
- });
- } else {
-
-
- if (!connection_get_by_type_purpose(CONN_TYPE_DIR,
- DIR_PURPOSE_FETCH_NETWORKSTATUS))
- directory_get_from_dirserver(DIR_PURPOSE_FETCH_NETWORKSTATUS,
- ROUTER_PURPOSE_GENERAL, "all.z",1);
- }
- }
- static void
- update_consensus_networkstatus_downloads(time_t now)
- {
- or_options_t *options = get_options();
- if (!networkstatus_get_live_consensus(now))
- time_to_download_next_consensus = now;
- if (time_to_download_next_consensus > now)
- return;
- if (authdir_mode_v3(options))
- return;
-
- if (!download_status_is_ready(&consensus_dl_status, now, 8))
- return;
- if (connection_get_by_type_purpose(CONN_TYPE_DIR,
- DIR_PURPOSE_FETCH_CONSENSUS))
- return;
- directory_get_from_dirserver(DIR_PURPOSE_FETCH_CONSENSUS,
- ROUTER_PURPOSE_GENERAL, NULL, 1);
- }
- void
- networkstatus_consensus_download_failed(int status_code)
- {
- download_status_failed(&consensus_dl_status, status_code);
-
- update_consensus_networkstatus_downloads(time(NULL));
- }
- static void
- update_consensus_networkstatus_fetch_time(time_t now)
- {
- or_options_t *options = get_options();
-
- networkstatus_vote_t *c = networkstatus_get_live_consensus(now);
- if (c) {
- long dl_interval;
- long interval = c->fresh_until - c->valid_after;
- time_t start;
- if (dirserver_mode(options)) {
- start = c->fresh_until + 120;
- dl_interval = interval/2;
- } else {
- start = c->fresh_until + (interval*3)/4;
-
- dl_interval = (c->valid_until - start) * 7 / 8;
- }
- if (dl_interval < 1)
- dl_interval = 1;
-
- tor_assert(c->fresh_until < start);
-
- tor_assert(start+dl_interval < c->valid_until);
- time_to_download_next_consensus = start + crypto_rand_int(dl_interval);
- {
- char tbuf1[ISO_TIME_LEN+1];
- char tbuf2[ISO_TIME_LEN+1];
- char tbuf3[ISO_TIME_LEN+1];
- format_local_iso_time(tbuf1, c->fresh_until);
- format_local_iso_time(tbuf2, c->valid_until);
- format_local_iso_time(tbuf3, time_to_download_next_consensus);
- log_info(LD_DIR, "Live consensus %s the most recent until %s and will "
- "expire at %s; fetching the next one at %s.",
- (c->fresh_until > now) ? "will be" : "was",
- tbuf1, tbuf2, tbuf3);
- }
- } else {
- time_to_download_next_consensus = now;
- log_info(LD_DIR, "No live consensus; we should fetch one immediately.");
- }
- }
- int
- should_delay_dir_fetches(or_options_t *options)
- {
- if (options->UseBridges && !any_bridge_descriptors_known()) {
- log_info(LD_DIR, "delaying dir fetches");
- return 1;
- }
- return 0;
- }
- void
- update_networkstatus_downloads(time_t now)
- {
- or_options_t *options = get_options();
- if (should_delay_dir_fetches(options))
- return;
- if (dirserver_mode(options))
- update_v2_networkstatus_cache_downloads(now);
- update_consensus_networkstatus_downloads(now);
- if (consensus_waiting_for_certs)
- authority_certs_fetch_missing(consensus_waiting_for_certs, now);
- else
- authority_certs_fetch_missing(current_consensus, now);
- }
- networkstatus_v2_t *
- networkstatus_v2_get_by_digest(const char *digest)
- {
- SMARTLIST_FOREACH(networkstatus_v2_list, networkstatus_v2_t *, ns,
- {
- if (!memcmp(ns->identity_digest, digest, DIGEST_LEN))
- return ns;
- });
- return NULL;
- }
- networkstatus_vote_t *
- networkstatus_get_latest_consensus(void)
- {
- return current_consensus;
- }
- networkstatus_vote_t *
- networkstatus_get_live_consensus(time_t now)
- {
- if (current_consensus &&
- current_consensus->valid_after <= now &&
- now <= current_consensus->valid_until)
- return current_consensus;
- else
- return NULL;
- }
- static void
- networkstatus_copy_old_consensus_info(networkstatus_vote_t *new_c,
- const networkstatus_vote_t *old_c)
- {
- int idx = 0;
- const routerstatus_t *rs_old;
- if (old_c == new_c)
- return;
- if (!smartlist_len(old_c->routerstatus_list))
- return;
- rs_old = smartlist_get(old_c->routerstatus_list, idx);
- SMARTLIST_FOREACH(new_c->routerstatus_list, routerstatus_t *, rs_new,
- {
- int r;
- while ((r = memcmp(rs_old->identity_digest, rs_new->identity_digest,
- DIGEST_LEN))<0) {
- if (++idx == smartlist_len(old_c->routerstatus_list))
- goto done;
- rs_old = smartlist_get(old_c->routerstatus_list, idx);
- }
- if (r>0)
- continue;
- tor_assert(r==0);
-
- rs_new->name_lookup_warned = rs_old->name_lookup_warned;
- rs_new->last_dir_503_at = rs_old->last_dir_503_at;
- if (!memcmp(rs_old->descriptor_digest, rs_new->descriptor_digest,
- DIGEST_LEN)) {
-
- memcpy(&rs_new->dl_status, &rs_old->dl_status,sizeof(download_status_t));
- }
- });
- done:
- return;
- }
- int
- networkstatus_set_current_consensus(const char *consensus, int from_cache,
- int was_waiting_for_certs)
- {
- networkstatus_vote_t *c;
- int r, result=-1;
- time_t now = time(NULL);
- char *unverified_fname = NULL, *consensus_fname = NULL;
-
- c = networkstatus_parse_vote_from_string(consensus, NULL, 0);
- if (!c) {
- log_warn(LD_DIR, "Unable to parse networkstatus consensus");
- goto done;
- }
- consensus_fname = get_datadir_fname("cached-consensus");
- unverified_fname = get_datadir_fname("unverified-consensus");
-
- if ((r=networkstatus_check_consensus_signature(c, 1))<0) {
- if (r == -1 && !was_waiting_for_certs) {
-
- if (!was_waiting_for_certs)
- log_notice(LD_DIR, "Not enough certificates to check networkstatus "
- "consensus");
- if (!current_consensus ||
- c->valid_after > current_consensus->valid_after) {
- if (consensus_waiting_for_certs)
- networkstatus_vote_free(consensus_waiting_for_certs);
- tor_free(consensus_waiting_for_certs_body);
- consensus_waiting_for_certs = c;
- consensus_waiting_for_certs_body = tor_strdup(consensus);
-
- if (!from_cache) {
- write_str_to_file(unverified_fname, consensus, 0);
- }
- authority_certs_fetch_missing(c, now);
- } else {
-
- if (was_waiting_for_certs && from_cache)
- unlink(unverified_fname);
- }
- download_status_reset(&consensus_dl_status);
- result = 0;
- goto done;
- } else {
-
- if (!was_waiting_for_certs)
- log_warn(LD_DIR, "Not enough good signatures on networkstatus "
- "consensus");
- if (was_waiting_for_certs && from_cache)
- unlink(unverified_fname);
- networkstatus_vote_free(c);
- goto done;
- }
- }
- download_status_reset(&consensus_dl_status);
-
- if (r != 1)
- authority_certs_fetch_missing(c, now);
- if (current_consensus) {
- networkstatus_copy_old_consensus_info(c, current_consensus);
- networkstatus_vote_free(current_consensus);
- }
- if (consensus_waiting_for_certs &&
- consensus_waiting_for_certs->valid_after <= c->valid_after) {
- networkstatus_vote_free(consensus_waiting_for_certs);
- consensus_waiting_for_certs = NULL;
- if (consensus != consensus_waiting_for_certs_body)
- tor_free(consensus_waiting_for_certs_body);
- unlink(unverified_fname);
- }
- current_consensus = c;
- update_consensus_networkstatus_fetch_time(now);
- dirvote_recalculate_timing(get_options(), now);
- routerstatus_list_update_named_server_map();
- if (!from_cache) {
- write_str_to_file(consensus_fname, consensus, 0);
- }
- if (dirserver_mode(get_options()))
- dirserv_set_cached_networkstatus_v3(consensus, c->valid_after);
- router_dir_info_changed();
- result = 0;
- done:
- tor_free(consensus_fname);
- tor_free(unverified_fname);
- return result;
- }
- void
- networkstatus_note_certs_arrived(void)
- {
- if (consensus_waiting_for_certs) {
- if (networkstatus_check_consensus_signature(
- consensus_waiting_for_certs, 0)<0) {
- if (!networkstatus_set_current_consensus(
- consensus_waiting_for_certs_body, 0, 1)) {
- tor_free(consensus_waiting_for_certs_body);
- }
- }
- }
- }
- void
- routers_update_all_from_networkstatus(time_t now)
- {
- routerinfo_t *me;
- routerlist_t *rl = router_get_routerlist();
- networkstatus_vote_t *consensus = networkstatus_get_live_consensus(now);
- router_dir_info_changed();
- if (networkstatus_v2_list_has_changed)
- download_status_map_update_from_v2_networkstatus();
- if (!consensus)
- return;
- routers_update_status_from_consensus_networkstatus(rl->routers, 0);
- SMARTLIST_FOREACH(rl->routers, routerinfo_t *, ri,
- ri->routerlist_index = ri_sl_idx);
- if (rl->old_routers)
- signed_descs_update_status_from_consensus_networkstatus(rl->old_routers);
- entry_guards_compute_status();
- me = router_get_my_routerinfo();
- if (me && !have_warned_about_invalid_status) {
- routerstatus_t *rs = networkstatus_vote_find_entry(consensus,
- me->cache_info.identity_digest);
- if (!rs) {
- log_info(LD_GENERAL, "The latest consensus does not list us."
- "Are you misconfigured?");
- have_warned_about_invalid_status = 1;
- } else if (!rs->is_named) {
-
- log_info(LD_GENERAL, "The directory authorities do not recognize "
- "your nickname. Please consider sending your "
- "nickname and identity fingerprint to the tor-ops.");
- have_warned_about_invalid_status = 1;
- }
- }
- if (!have_warned_about_old_version) {
- int is_server = server_mode(get_options());
- version_status_t status;
- const char *recommended = is_server ?
- consensus->server_versions : consensus->client_versions;
- status = tor_version_is_obsolete(VERSION, recommended);
- if (status == VS_RECOMMENDED) {
- log_info(LD_GENERAL, "The directory authorities say my version is ok.");
- } else if (status == VS_NEW || status == VS_NEW_IN_SERIES) {
- if (!have_warned_about_new_version) {
- log_notice(LD_GENERAL, "This version of Tor (%s) is newer than any "
- "recommended version%s, according to the directory "
- "authorities. Recommended versions are: %s",
- VERSION,
- status == VS_NEW_IN_SERIES ? " in its series" : "",
- recommended);
- have_warned_about_new_version = 1;
- control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
- "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
- VERSION, "NEW", recommended);
- }
- } else {
- log_warn(LD_GENERAL, "Please upgrade! "
- "This version of Tor (%s) is %s, according to the directory "
- "authorities. Recommended versions are: %s",
- VERSION,
- status == VS_OLD ? "obsolete" : "not recommended",
- recommended);
- have_warned_about_old_version = 1;
- control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
- "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
- VERSION, status == VS_OLD ? "OLD" : "UNRECOMMENDED",
- recommended);
- }
- }
- }
- static void
- download_status_map_update_from_v2_networkstatus(void)
- {
- digestmap_t *dl_status;
- if (!networkstatus_v2_list)
- return;
- if (!v2_download_status_map)
- v2_download_status_map = digestmap_new();
- dl_status = digestmap_new();
- SMARTLIST_FOREACH(networkstatus_v2_list, networkstatus_v2_t *, ns,
- {
- SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
- {
- const char *d = rs->descriptor_digest;
- download_status_t *s;
- if (digestmap_get(dl_status, d))
- continue;
- if (!(s = digestmap_remove(v2_download_status_map, d))) {
- s = tor_malloc_zero(sizeof(download_status_t));
- }
- digestmap_set(dl_status, d, s);
- });
- });
- digestmap_free(v2_download_status_map, _tor_free);
- v2_download_status_map = dl_status;
- networkstatus_v2_list_has_changed = 0;
- }
- static void
- routerstatus_list_update_named_server_map(void)
- {
- if (!current_consensus)
- return;
- if (named_server_map)
- strmap_free(named_server_map, _tor_free);
- named_server_map = strmap_new();
- SMARTLIST_FOREACH(current_consensus->routerstatus_list, routerstatus_t *, rs,
- {
- if (rs->is_named) {
- strmap_set(named_server_map, rs->nickname,
- tor_memdup(rs->identity_digest, DIGEST_LEN));
- }
- });
- }
- void
- routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
- int reset_failures)
- {
- trusted_dir_server_t *ds;
- routerstatus_t *rs;
- or_options_t *options = get_options();
- int authdir = authdir_mode_v2(options) || authdir_mode_v3(options);
- int namingdir = authdir && options->NamingAuthoritativeDir;
- networkstatus_vote_t *ns = current_consensus;
- int idx;
- if (!ns || !smartlist_len(ns->routerstatus_list))
- return;
- routers_sort_by_identity(routers);
-
- idx = 0;
- rs = smartlist_get(ns->routerstatus_list, idx);
- SMARTLIST_FOREACH(routers, routerinfo_t *, router,
- {
- const char *digest = router->cache_info.identity_digest;
- int r;
- while ((r = memcmp(rs->identity_digest, digest, DIGEST_LEN))<0) {
- if (++idx == smartlist_len(ns->routerstatus_list)) {
-
- goto done;
- }
- rs = smartlist_get(ns->routerstatus_list, idx);
- }
- if (r>0) {
-
- if (!namingdir)
- router->is_named = 0;
- if (!authdir) {
- if (router->purpose == ROUTER_PURPOSE_GENERAL) {
- router->is_valid = router->is_running =
- router->is_fast = router->is_stable =
- router->is_possible_guard = router->is_exit =
- router->is_bad_exit = 0;
- }
- }
- continue;
- }
- tor_assert(r==0);
- ds = router_get_trusteddirserver_by_digest(digest);
- if (!namingdir) {
- if (rs->is_named && !strcasecmp(router->nickname, rs->nickname))
- router->is_named = 1;
- else
- router->is_named = 0;
- }
- if (!memcmp(router->cache_info.signed_descriptor_digest,
- rs->descriptor_digest, DIGEST_LEN)) {
- if (ns->valid_until > router->cache_info.last_listed_as_valid_until)
- router->cache_info.last_listed_as_valid_until = ns->valid_until;
- }
- if (!authdir) {
-
- router->is_valid = rs->is_valid;
- router->is_running = rs->is_running;
- router->is_fast = rs->is_fast;
- router->is_stable = rs->is_stable;
- router->is_possible_guard = rs->is_possible_guard;
- router->is_exit = rs->is_exit;
- router->is_bad_exit = rs->is_bad_exit;
- }
- if (router->is_running && ds) {
- download_status_reset(&ds->v2_ns_dl_status);
- }
- if (reset_failures) {
- download_status_reset(&rs->dl_status);
- }
- });
- done:
- router_dir_info_changed();
- }
- void
- signed_descs_update_status_from_consensus_networkstatus(smartlist_t *descs)
- {
- networkstatus_vote_t *ns = current_consensus;
- if (!ns)
- return;
- if (!ns->desc_digest_map) {
- char dummy[DIGEST_LEN];
-
- memset(dummy, 0, sizeof(dummy));
- router_get_consensus_status_by_descriptor_digest(dummy);
- }
- SMARTLIST_FOREACH(descs, signed_descriptor_t *, d,
- {
- routerstatus_t *rs = digestmap_get(ns->desc_digest_map,
- d->signed_descriptor_digest);
- if (rs) {
- if (ns->valid_until > d->last_listed_as_valid_until)
- d->last_listed_as_valid_until = ns->valid_until;
- }
- });
- }
- char *
- networkstatus_getinfo_helper_single(routerstatus_t *rs)
- {
- char buf[256];
- routerstatus_format_entry(buf, sizeof(buf), rs, NULL, 0);
- return tor_strdup(buf);
- }
- int
- getinfo_helper_networkstatus(control_connection_t *conn,
- const char *question, char **answer)
- {
- routerstatus_t *status;
- (void) conn;
- if (!current_consensus) {
- *answer = tor_strdup("");
- return 0;
- }
- if (!strcmp(question, "ns/all")) {
- smartlist_t *statuses = smartlist_create();
- SMARTLIST_FOREACH(current_consensus->routerstatus_list,
- routerstatus_t *, rs,
- {
- smartlist_add(statuses, networkstatus_getinfo_helper_single(rs));
- });
- *answer = smartlist_join_strings(statuses, "", 0, NULL);
- SMARTLIST_FOREACH(statuses, char *, cp, tor_free(cp));
- smartlist_free(statuses);
- return 0;
- } else if (!strcmpstart(question, "ns/id/")) {
- char d[DIGEST_LEN];
- if (base16_decode(d, DIGEST_LEN, question+6, strlen(question+6)))
- return -1;
- status = router_get_consensus_status_by_id(d);
- } else if (!strcmpstart(question, "ns/name/")) {
- status = router_get_consensus_status_by_nickname(question+8, 0);
- } else {
- return -1;
- }
- if (status) {
- *answer = networkstatus_getinfo_helper_single(status);
- }
- return 0;
- }
- void
- networkstatus_free_all(void)
- {
- if (networkstatus_v2_list) {
- SMARTLIST_FOREACH(networkstatus_v2_list, networkstatus_v2_t *, ns,
- networkstatus_v2_free(ns));
- smartlist_free(networkstatus_v2_list);
- networkstatus_v2_list = NULL;
- }
- if (current_consensus) {
- networkstatus_vote_free(current_consensus);
- current_consensus = NULL;
- }
- if (consensus_waiting_for_certs) {
- networkstatus_vote_free(current_consensus);
- current_consensus = NULL;
- }
- tor_free(consensus_waiting_for_certs_body);
- if (named_server_map) {
- strmap_free(named_server_map, _tor_free);
- }
- }
|