networkstatus.c 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2017, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file networkstatus.c
  8. * \brief Functions and structures for handling networkstatus documents as a
  9. * client or as a directory cache.
  10. *
  11. * A consensus networkstatus object is created by the directory
  12. * authorities. It authenticates a set of network parameters--most
  13. * importantly, the list of all the relays in the network. This list
  14. * of relays is represented as an array of routerstatus_t objects.
  15. *
  16. * There are currently two flavors of consensus. With the older "NS"
  17. * flavor, each relay is associated with a digest of its router
  18. * descriptor. Tor instances that use this consensus keep the list of
  19. * router descriptors as routerinfo_t objects stored and managed in
  20. * routerlist.c. With the newer "microdesc" flavor, each relay is
  21. * associated with a digest of the microdescriptor that the authorities
  22. * made for it. These are stored and managed in microdesc.c. Information
  23. * about the router is divided between the the networkstatus and the
  24. * microdescriptor according to the general rule that microdescriptors
  25. * should hold information that changes much less frequently than the
  26. * information in the networkstatus.
  27. *
  28. * Modern clients use microdescriptor networkstatuses. Directory caches
  29. * need to keep both kinds of networkstatus document, so they can serve them.
  30. *
  31. * This module manages fetching, holding, storing, updating, and
  32. * validating networkstatus objects. The download-and-validate process
  33. * is slightly complicated by the fact that the keys you need to
  34. * validate a consensus are stored in the authority certificates, which
  35. * you might not have yet when you download the consensus.
  36. */
  37. #define NETWORKSTATUS_PRIVATE
  38. #include "or.h"
  39. #include "bridges.h"
  40. #include "channel.h"
  41. #include "circuitmux.h"
  42. #include "circuitmux_ewma.h"
  43. #include "circuitstats.h"
  44. #include "config.h"
  45. #include "connection.h"
  46. #include "connection_or.h"
  47. #include "consdiffmgr.h"
  48. #include "control.h"
  49. #include "directory.h"
  50. #include "dirserv.h"
  51. #include "dirvote.h"
  52. #include "entrynodes.h"
  53. #include "main.h"
  54. #include "microdesc.h"
  55. #include "networkstatus.h"
  56. #include "nodelist.h"
  57. #include "protover.h"
  58. #include "relay.h"
  59. #include "router.h"
  60. #include "routerlist.h"
  61. #include "routerparse.h"
  62. #include "scheduler.h"
  63. #include "shared_random.h"
  64. #include "transports.h"
  65. #include "torcert.h"
  66. #include "channelpadding.h"
  67. /** Map from lowercase nickname to identity digest of named server, if any. */
  68. static strmap_t *named_server_map = NULL;
  69. /** Map from lowercase nickname to (void*)1 for all names that are listed
  70. * as unnamed for some server in the consensus. */
  71. static strmap_t *unnamed_server_map = NULL;
  72. /** Most recently received and validated v3 "ns"-flavored consensus network
  73. * status. */
  74. STATIC networkstatus_t *current_ns_consensus = NULL;
  75. /** Most recently received and validated v3 "microdesc"-flavored consensus
  76. * network status. */
  77. STATIC networkstatus_t *current_md_consensus = NULL;
  78. /** A v3 consensus networkstatus that we've received, but which we don't
  79. * have enough certificates to be happy about. */
  80. typedef struct consensus_waiting_for_certs_t {
  81. /** The consensus itself. */
  82. networkstatus_t *consensus;
  83. /** The encoded version of the consensus, nul-terminated. */
  84. char *body;
  85. /** When did we set the current value of consensus_waiting_for_certs? If
  86. * this is too recent, we shouldn't try to fetch a new consensus for a
  87. * little while, to give ourselves time to get certificates for this one. */
  88. time_t set_at;
  89. /** Set to 1 if we've been holding on to it for so long we should maybe
  90. * treat it as being bad. */
  91. int dl_failed;
  92. } consensus_waiting_for_certs_t;
  93. /** An array, for each flavor of consensus we might want, of consensuses that
  94. * we have downloaded, but which we cannot verify due to having insufficient
  95. * authority certificates. */
  96. static consensus_waiting_for_certs_t
  97. consensus_waiting_for_certs[N_CONSENSUS_FLAVORS];
  98. /** A time before which we shouldn't try to replace the current consensus:
  99. * this will be at some point after the next consensus becomes valid, but
  100. * before the current consensus becomes invalid. */
  101. static time_t time_to_download_next_consensus[N_CONSENSUS_FLAVORS];
  102. /** Download status for the current consensus networkstatus. */
  103. static download_status_t consensus_dl_status[N_CONSENSUS_FLAVORS] =
  104. {
  105. { 0, 0, 0, DL_SCHED_CONSENSUS, DL_WANT_ANY_DIRSERVER,
  106. DL_SCHED_INCREMENT_FAILURE, DL_SCHED_RANDOM_EXPONENTIAL, 0, 0 },
  107. { 0, 0, 0, DL_SCHED_CONSENSUS, DL_WANT_ANY_DIRSERVER,
  108. DL_SCHED_INCREMENT_FAILURE, DL_SCHED_RANDOM_EXPONENTIAL, 0, 0 },
  109. };
  110. #define N_CONSENSUS_BOOTSTRAP_SCHEDULES 2
  111. #define CONSENSUS_BOOTSTRAP_SOURCE_AUTHORITY 0
  112. #define CONSENSUS_BOOTSTRAP_SOURCE_ANY_DIRSERVER 1
  113. /* Using DL_SCHED_INCREMENT_ATTEMPT on these schedules means that
  114. * download_status_increment_failure won't increment these entries.
  115. * However, any bootstrap connection failures that occur after we have
  116. * a valid consensus will count against the failure counts on the non-bootstrap
  117. * schedules. There should only be one of these, as all the others will have
  118. * been cancelled. (This doesn't seem to be a significant issue.) */
  119. static download_status_t
  120. consensus_bootstrap_dl_status[N_CONSENSUS_BOOTSTRAP_SCHEDULES] =
  121. {
  122. { 0, 0, 0, DL_SCHED_CONSENSUS, DL_WANT_AUTHORITY,
  123. DL_SCHED_INCREMENT_ATTEMPT, DL_SCHED_RANDOM_EXPONENTIAL, 0, 0 },
  124. /* During bootstrap, DL_WANT_ANY_DIRSERVER means "use fallbacks". */
  125. { 0, 0, 0, DL_SCHED_CONSENSUS, DL_WANT_ANY_DIRSERVER,
  126. DL_SCHED_INCREMENT_ATTEMPT, DL_SCHED_RANDOM_EXPONENTIAL, 0, 0 },
  127. };
  128. /** True iff we have logged a warning about this OR's version being older than
  129. * listed by the authorities. */
  130. static int have_warned_about_old_version = 0;
  131. /** True iff we have logged a warning about this OR's version being newer than
  132. * listed by the authorities. */
  133. static int have_warned_about_new_version = 0;
  134. static void routerstatus_list_update_named_server_map(void);
  135. static void update_consensus_bootstrap_multiple_downloads(
  136. time_t now,
  137. const or_options_t *options);
  138. static int networkstatus_check_required_protocols(const networkstatus_t *ns,
  139. int client_mode,
  140. char **warning_out);
  141. /** Forget that we've warned about anything networkstatus-related, so we will
  142. * give fresh warnings if the same behavior happens again. */
  143. void
  144. networkstatus_reset_warnings(void)
  145. {
  146. SMARTLIST_FOREACH(nodelist_get_list(), node_t *, node,
  147. node->name_lookup_warned = 0);
  148. have_warned_about_old_version = 0;
  149. have_warned_about_new_version = 0;
  150. }
  151. /** Reset the descriptor download failure count on all networkstatus docs, so
  152. * that we can retry any long-failed documents immediately.
  153. */
  154. void
  155. networkstatus_reset_download_failures(void)
  156. {
  157. int i;
  158. log_debug(LD_GENERAL,
  159. "In networkstatus_reset_download_failures()");
  160. for (i=0; i < N_CONSENSUS_FLAVORS; ++i)
  161. download_status_reset(&consensus_dl_status[i]);
  162. for (i=0; i < N_CONSENSUS_BOOTSTRAP_SCHEDULES; ++i)
  163. download_status_reset(&consensus_bootstrap_dl_status[i]);
  164. }
  165. /**
  166. * Read and and return the cached consensus of type <b>flavorname</b>. If
  167. * <b>unverified</b> is false, get the one we haven't verified. Return NULL if
  168. * the file isn't there. */
  169. static char *
  170. networkstatus_read_cached_consensus_impl(int flav,
  171. const char *flavorname,
  172. int unverified_consensus)
  173. {
  174. char buf[128];
  175. const char *prefix;
  176. if (unverified_consensus) {
  177. prefix = "unverified";
  178. } else {
  179. prefix = "cached";
  180. }
  181. if (flav == FLAV_NS) {
  182. tor_snprintf(buf, sizeof(buf), "%s-consensus", prefix);
  183. } else {
  184. tor_snprintf(buf, sizeof(buf), "%s-%s-consensus", prefix, flavorname);
  185. }
  186. char *filename = get_datadir_fname(buf);
  187. char *result = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
  188. tor_free(filename);
  189. return result;
  190. }
  191. /** Return a new string containing the current cached consensus of flavor
  192. * <b>flavorname</b>. */
  193. char *
  194. networkstatus_read_cached_consensus(const char *flavorname)
  195. {
  196. int flav = networkstatus_parse_flavor_name(flavorname);
  197. if (flav < 0)
  198. return NULL;
  199. return networkstatus_read_cached_consensus_impl(flav, flavorname, 0);
  200. }
  201. /** Read every cached v3 consensus networkstatus from the disk. */
  202. int
  203. router_reload_consensus_networkstatus(void)
  204. {
  205. const unsigned int flags = NSSET_FROM_CACHE | NSSET_DONT_DOWNLOAD_CERTS;
  206. int flav;
  207. /* FFFF Suppress warnings if cached consensus is bad? */
  208. for (flav = 0; flav < N_CONSENSUS_FLAVORS; ++flav) {
  209. const char *flavor = networkstatus_get_flavor_name(flav);
  210. char *s = networkstatus_read_cached_consensus_impl(flav, flavor, 0);
  211. if (s) {
  212. if (networkstatus_set_current_consensus(s, flavor, flags, NULL) < -1) {
  213. log_warn(LD_FS, "Couldn't load consensus %s networkstatus from cache",
  214. flavor);
  215. }
  216. tor_free(s);
  217. }
  218. s = networkstatus_read_cached_consensus_impl(flav, flavor, 1);
  219. if (s) {
  220. if (networkstatus_set_current_consensus(s, flavor,
  221. flags|NSSET_WAS_WAITING_FOR_CERTS,
  222. NULL)) {
  223. log_info(LD_FS, "Couldn't load unverified consensus %s networkstatus "
  224. "from cache", flavor);
  225. }
  226. tor_free(s);
  227. }
  228. }
  229. if (!networkstatus_get_latest_consensus()) {
  230. if (!named_server_map)
  231. named_server_map = strmap_new();
  232. if (!unnamed_server_map)
  233. unnamed_server_map = strmap_new();
  234. }
  235. update_certificate_downloads(time(NULL));
  236. routers_update_all_from_networkstatus(time(NULL), 3);
  237. update_microdescs_from_networkstatus(time(NULL));
  238. return 0;
  239. }
  240. /** Free all storage held by the vote_routerstatus object <b>rs</b>. */
  241. void
  242. vote_routerstatus_free(vote_routerstatus_t *rs)
  243. {
  244. vote_microdesc_hash_t *h, *next;
  245. if (!rs)
  246. return;
  247. tor_free(rs->version);
  248. tor_free(rs->protocols);
  249. tor_free(rs->status.exitsummary);
  250. for (h = rs->microdesc; h; h = next) {
  251. tor_free(h->microdesc_hash_line);
  252. next = h->next;
  253. tor_free(h);
  254. }
  255. tor_free(rs);
  256. }
  257. /** Free all storage held by the routerstatus object <b>rs</b>. */
  258. void
  259. routerstatus_free(routerstatus_t *rs)
  260. {
  261. if (!rs)
  262. return;
  263. tor_free(rs->exitsummary);
  264. tor_free(rs);
  265. }
  266. /** Free all storage held in <b>sig</b> */
  267. void
  268. document_signature_free(document_signature_t *sig)
  269. {
  270. tor_free(sig->signature);
  271. tor_free(sig);
  272. }
  273. /** Return a newly allocated copy of <b>sig</b> */
  274. document_signature_t *
  275. document_signature_dup(const document_signature_t *sig)
  276. {
  277. document_signature_t *r = tor_memdup(sig, sizeof(document_signature_t));
  278. if (r->signature)
  279. r->signature = tor_memdup(sig->signature, sig->signature_len);
  280. return r;
  281. }
  282. /** Free all storage held in <b>ns</b>. */
  283. void
  284. networkstatus_vote_free(networkstatus_t *ns)
  285. {
  286. if (!ns)
  287. return;
  288. tor_free(ns->client_versions);
  289. tor_free(ns->server_versions);
  290. tor_free(ns->recommended_client_protocols);
  291. tor_free(ns->recommended_relay_protocols);
  292. tor_free(ns->required_client_protocols);
  293. tor_free(ns->required_relay_protocols);
  294. if (ns->known_flags) {
  295. SMARTLIST_FOREACH(ns->known_flags, char *, c, tor_free(c));
  296. smartlist_free(ns->known_flags);
  297. }
  298. if (ns->weight_params) {
  299. SMARTLIST_FOREACH(ns->weight_params, char *, c, tor_free(c));
  300. smartlist_free(ns->weight_params);
  301. }
  302. if (ns->net_params) {
  303. SMARTLIST_FOREACH(ns->net_params, char *, c, tor_free(c));
  304. smartlist_free(ns->net_params);
  305. }
  306. if (ns->supported_methods) {
  307. SMARTLIST_FOREACH(ns->supported_methods, char *, c, tor_free(c));
  308. smartlist_free(ns->supported_methods);
  309. }
  310. if (ns->package_lines) {
  311. SMARTLIST_FOREACH(ns->package_lines, char *, c, tor_free(c));
  312. smartlist_free(ns->package_lines);
  313. }
  314. if (ns->voters) {
  315. SMARTLIST_FOREACH_BEGIN(ns->voters, networkstatus_voter_info_t *, voter) {
  316. tor_free(voter->nickname);
  317. tor_free(voter->address);
  318. tor_free(voter->contact);
  319. if (voter->sigs) {
  320. SMARTLIST_FOREACH(voter->sigs, document_signature_t *, sig,
  321. document_signature_free(sig));
  322. smartlist_free(voter->sigs);
  323. }
  324. tor_free(voter);
  325. } SMARTLIST_FOREACH_END(voter);
  326. smartlist_free(ns->voters);
  327. }
  328. authority_cert_free(ns->cert);
  329. if (ns->routerstatus_list) {
  330. if (ns->type == NS_TYPE_VOTE || ns->type == NS_TYPE_OPINION) {
  331. SMARTLIST_FOREACH(ns->routerstatus_list, vote_routerstatus_t *, rs,
  332. vote_routerstatus_free(rs));
  333. } else {
  334. SMARTLIST_FOREACH(ns->routerstatus_list, routerstatus_t *, rs,
  335. routerstatus_free(rs));
  336. }
  337. smartlist_free(ns->routerstatus_list);
  338. }
  339. digestmap_free(ns->desc_digest_map, NULL);
  340. if (ns->sr_info.commits) {
  341. SMARTLIST_FOREACH(ns->sr_info.commits, sr_commit_t *, c,
  342. sr_commit_free(c));
  343. smartlist_free(ns->sr_info.commits);
  344. }
  345. tor_free(ns->sr_info.previous_srv);
  346. tor_free(ns->sr_info.current_srv);
  347. memwipe(ns, 11, sizeof(*ns));
  348. tor_free(ns);
  349. }
  350. /** Return the voter info from <b>vote</b> for the voter whose identity digest
  351. * is <b>identity</b>, or NULL if no such voter is associated with
  352. * <b>vote</b>. */
  353. networkstatus_voter_info_t *
  354. networkstatus_get_voter_by_id(networkstatus_t *vote,
  355. const char *identity)
  356. {
  357. if (!vote || !vote->voters)
  358. return NULL;
  359. SMARTLIST_FOREACH(vote->voters, networkstatus_voter_info_t *, voter,
  360. if (fast_memeq(voter->identity_digest, identity, DIGEST_LEN))
  361. return voter);
  362. return NULL;
  363. }
  364. /** Check whether the signature <b>sig</b> is correctly signed with the
  365. * signing key in <b>cert</b>. Return -1 if <b>cert</b> doesn't match the
  366. * signing key; otherwise set the good_signature or bad_signature flag on
  367. * <b>voter</b>, and return 0. */
  368. int
  369. networkstatus_check_document_signature(const networkstatus_t *consensus,
  370. document_signature_t *sig,
  371. const authority_cert_t *cert)
  372. {
  373. char key_digest[DIGEST_LEN];
  374. const int dlen = sig->alg == DIGEST_SHA1 ? DIGEST_LEN : DIGEST256_LEN;
  375. char *signed_digest;
  376. size_t signed_digest_len;
  377. if (crypto_pk_get_digest(cert->signing_key, key_digest)<0)
  378. return -1;
  379. if (tor_memneq(sig->signing_key_digest, key_digest, DIGEST_LEN) ||
  380. tor_memneq(sig->identity_digest, cert->cache_info.identity_digest,
  381. DIGEST_LEN))
  382. return -1;
  383. if (authority_cert_is_blacklisted(cert)) {
  384. /* We implement blacklisting for authority signing keys by treating
  385. * all their signatures as always bad. That way we don't get into
  386. * crazy loops of dropping and re-fetching signatures. */
  387. log_warn(LD_DIR, "Ignoring a consensus signature made with deprecated"
  388. " signing key %s",
  389. hex_str(cert->signing_key_digest, DIGEST_LEN));
  390. sig->bad_signature = 1;
  391. return 0;
  392. }
  393. signed_digest_len = crypto_pk_keysize(cert->signing_key);
  394. signed_digest = tor_malloc(signed_digest_len);
  395. if (crypto_pk_public_checksig(cert->signing_key,
  396. signed_digest,
  397. signed_digest_len,
  398. sig->signature,
  399. sig->signature_len) < dlen ||
  400. tor_memneq(signed_digest, consensus->digests.d[sig->alg], dlen)) {
  401. log_warn(LD_DIR, "Got a bad signature on a networkstatus vote");
  402. sig->bad_signature = 1;
  403. } else {
  404. sig->good_signature = 1;
  405. }
  406. tor_free(signed_digest);
  407. return 0;
  408. }
  409. /** Given a v3 networkstatus consensus in <b>consensus</b>, check every
  410. * as-yet-unchecked signature on <b>consensus</b>. Return 1 if there is a
  411. * signature from every recognized authority on it, 0 if there are
  412. * enough good signatures from recognized authorities on it, -1 if we might
  413. * get enough good signatures by fetching missing certificates, and -2
  414. * otherwise. Log messages at INFO or WARN: if <b>warn</b> is over 1, warn
  415. * about every problem; if warn is at least 1, warn only if we can't get
  416. * enough signatures; if warn is negative, log nothing at all. */
  417. int
  418. networkstatus_check_consensus_signature(networkstatus_t *consensus,
  419. int warn)
  420. {
  421. int n_good = 0;
  422. int n_missing_key = 0, n_dl_failed_key = 0;
  423. int n_bad = 0;
  424. int n_unknown = 0;
  425. int n_no_signature = 0;
  426. int n_v3_authorities = get_n_authorities(V3_DIRINFO);
  427. int n_required = n_v3_authorities/2 + 1;
  428. smartlist_t *list_good = smartlist_new();
  429. smartlist_t *list_no_signature = smartlist_new();
  430. smartlist_t *need_certs_from = smartlist_new();
  431. smartlist_t *unrecognized = smartlist_new();
  432. smartlist_t *missing_authorities = smartlist_new();
  433. int severity;
  434. time_t now = time(NULL);
  435. tor_assert(consensus->type == NS_TYPE_CONSENSUS);
  436. SMARTLIST_FOREACH_BEGIN(consensus->voters, networkstatus_voter_info_t *,
  437. voter) {
  438. int good_here = 0;
  439. int bad_here = 0;
  440. int unknown_here = 0;
  441. int missing_key_here = 0, dl_failed_key_here = 0;
  442. SMARTLIST_FOREACH_BEGIN(voter->sigs, document_signature_t *, sig) {
  443. if (!sig->good_signature && !sig->bad_signature &&
  444. sig->signature) {
  445. /* we can try to check the signature. */
  446. int is_v3_auth = trusteddirserver_get_by_v3_auth_digest(
  447. sig->identity_digest) != NULL;
  448. authority_cert_t *cert =
  449. authority_cert_get_by_digests(sig->identity_digest,
  450. sig->signing_key_digest);
  451. tor_assert(tor_memeq(sig->identity_digest, voter->identity_digest,
  452. DIGEST_LEN));
  453. if (!is_v3_auth) {
  454. smartlist_add(unrecognized, voter);
  455. ++unknown_here;
  456. continue;
  457. } else if (!cert || cert->expires < now) {
  458. smartlist_add(need_certs_from, voter);
  459. ++missing_key_here;
  460. if (authority_cert_dl_looks_uncertain(sig->identity_digest))
  461. ++dl_failed_key_here;
  462. continue;
  463. }
  464. if (networkstatus_check_document_signature(consensus, sig, cert) < 0) {
  465. smartlist_add(need_certs_from, voter);
  466. ++missing_key_here;
  467. if (authority_cert_dl_looks_uncertain(sig->identity_digest))
  468. ++dl_failed_key_here;
  469. continue;
  470. }
  471. }
  472. if (sig->good_signature)
  473. ++good_here;
  474. else if (sig->bad_signature)
  475. ++bad_here;
  476. } SMARTLIST_FOREACH_END(sig);
  477. if (good_here) {
  478. ++n_good;
  479. smartlist_add(list_good, voter->nickname);
  480. } else if (bad_here) {
  481. ++n_bad;
  482. } else if (missing_key_here) {
  483. ++n_missing_key;
  484. if (dl_failed_key_here)
  485. ++n_dl_failed_key;
  486. } else if (unknown_here) {
  487. ++n_unknown;
  488. } else {
  489. ++n_no_signature;
  490. smartlist_add(list_no_signature, voter->nickname);
  491. }
  492. } SMARTLIST_FOREACH_END(voter);
  493. /* Now see whether we're missing any voters entirely. */
  494. SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
  495. dir_server_t *, ds,
  496. {
  497. if ((ds->type & V3_DIRINFO) &&
  498. !networkstatus_get_voter_by_id(consensus, ds->v3_identity_digest))
  499. smartlist_add(missing_authorities, ds);
  500. });
  501. if (warn > 1 || (warn >= 0 &&
  502. (n_good + n_missing_key - n_dl_failed_key < n_required))) {
  503. severity = LOG_WARN;
  504. } else {
  505. severity = LOG_INFO;
  506. }
  507. if (warn >= 0) {
  508. SMARTLIST_FOREACH(unrecognized, networkstatus_voter_info_t *, voter,
  509. {
  510. tor_log(severity, LD_DIR, "Consensus includes unrecognized authority "
  511. "'%s' at %s:%d (contact %s; identity %s)",
  512. voter->nickname, voter->address, (int)voter->dir_port,
  513. voter->contact?voter->contact:"n/a",
  514. hex_str(voter->identity_digest, DIGEST_LEN));
  515. });
  516. SMARTLIST_FOREACH(need_certs_from, networkstatus_voter_info_t *, voter,
  517. {
  518. tor_log(severity, LD_DIR, "Looks like we need to download a new "
  519. "certificate from authority '%s' at %s:%d (contact %s; "
  520. "identity %s)",
  521. voter->nickname, voter->address, (int)voter->dir_port,
  522. voter->contact?voter->contact:"n/a",
  523. hex_str(voter->identity_digest, DIGEST_LEN));
  524. });
  525. SMARTLIST_FOREACH(missing_authorities, dir_server_t *, ds,
  526. {
  527. tor_log(severity, LD_DIR, "Consensus does not include configured "
  528. "authority '%s' at %s:%d (identity %s)",
  529. ds->nickname, ds->address, (int)ds->dir_port,
  530. hex_str(ds->v3_identity_digest, DIGEST_LEN));
  531. });
  532. {
  533. char *joined;
  534. smartlist_t *sl = smartlist_new();
  535. char *tmp = smartlist_join_strings(list_good, " ", 0, NULL);
  536. smartlist_add_asprintf(sl,
  537. "A consensus needs %d good signatures from recognized "
  538. "authorities for us to accept it. This one has %d (%s).",
  539. n_required, n_good, tmp);
  540. tor_free(tmp);
  541. if (n_no_signature) {
  542. tmp = smartlist_join_strings(list_no_signature, " ", 0, NULL);
  543. smartlist_add_asprintf(sl,
  544. "%d (%s) of the authorities we know didn't sign it.",
  545. n_no_signature, tmp);
  546. tor_free(tmp);
  547. }
  548. if (n_unknown) {
  549. smartlist_add_asprintf(sl,
  550. "It has %d signatures from authorities we don't "
  551. "recognize.", n_unknown);
  552. }
  553. if (n_bad) {
  554. smartlist_add_asprintf(sl, "%d of the signatures on it didn't verify "
  555. "correctly.", n_bad);
  556. }
  557. if (n_missing_key) {
  558. smartlist_add_asprintf(sl,
  559. "We were unable to check %d of the signatures, "
  560. "because we were missing the keys.", n_missing_key);
  561. }
  562. joined = smartlist_join_strings(sl, " ", 0, NULL);
  563. tor_log(severity, LD_DIR, "%s", joined);
  564. tor_free(joined);
  565. SMARTLIST_FOREACH(sl, char *, c, tor_free(c));
  566. smartlist_free(sl);
  567. }
  568. }
  569. smartlist_free(list_good);
  570. smartlist_free(list_no_signature);
  571. smartlist_free(unrecognized);
  572. smartlist_free(need_certs_from);
  573. smartlist_free(missing_authorities);
  574. if (n_good == n_v3_authorities)
  575. return 1;
  576. else if (n_good >= n_required)
  577. return 0;
  578. else if (n_good + n_missing_key >= n_required)
  579. return -1;
  580. else
  581. return -2;
  582. }
  583. /** How far in the future do we allow a network-status to get before removing
  584. * it? (seconds) */
  585. #define NETWORKSTATUS_ALLOW_SKEW (24*60*60)
  586. /** Helper for bsearching a list of routerstatus_t pointers: compare a
  587. * digest in the key to the identity digest of a routerstatus_t. */
  588. int
  589. compare_digest_to_routerstatus_entry(const void *_key, const void **_member)
  590. {
  591. const char *key = _key;
  592. const routerstatus_t *rs = *_member;
  593. return tor_memcmp(key, rs->identity_digest, DIGEST_LEN);
  594. }
  595. /** Helper for bsearching a list of routerstatus_t pointers: compare a
  596. * digest in the key to the identity digest of a routerstatus_t. */
  597. int
  598. compare_digest_to_vote_routerstatus_entry(const void *_key,
  599. const void **_member)
  600. {
  601. const char *key = _key;
  602. const vote_routerstatus_t *vrs = *_member;
  603. return tor_memcmp(key, vrs->status.identity_digest, DIGEST_LEN);
  604. }
  605. /** As networkstatus_find_entry, but do not return a const pointer */
  606. routerstatus_t *
  607. networkstatus_vote_find_mutable_entry(networkstatus_t *ns, const char *digest)
  608. {
  609. return smartlist_bsearch(ns->routerstatus_list, digest,
  610. compare_digest_to_routerstatus_entry);
  611. }
  612. /** Return the entry in <b>ns</b> for the identity digest <b>digest</b>, or
  613. * NULL if none was found. */
  614. const routerstatus_t *
  615. networkstatus_vote_find_entry(networkstatus_t *ns, const char *digest)
  616. {
  617. return networkstatus_vote_find_mutable_entry(ns, digest);
  618. }
  619. /*XXXX MOVE make this static once functions are moved into this file. */
  620. /** Search the routerstatuses in <b>ns</b> for one whose identity digest is
  621. * <b>digest</b>. Return value and set *<b>found_out</b> as for
  622. * smartlist_bsearch_idx(). */
  623. int
  624. networkstatus_vote_find_entry_idx(networkstatus_t *ns,
  625. const char *digest, int *found_out)
  626. {
  627. return smartlist_bsearch_idx(ns->routerstatus_list, digest,
  628. compare_digest_to_routerstatus_entry,
  629. found_out);
  630. }
  631. /** As router_get_consensus_status_by_descriptor_digest, but does not return
  632. * a const pointer. */
  633. MOCK_IMPL(routerstatus_t *,
  634. router_get_mutable_consensus_status_by_descriptor_digest,(
  635. networkstatus_t *consensus,
  636. const char *digest))
  637. {
  638. if (!consensus)
  639. consensus = networkstatus_get_latest_consensus();
  640. if (!consensus)
  641. return NULL;
  642. if (!consensus->desc_digest_map) {
  643. digestmap_t *m = consensus->desc_digest_map = digestmap_new();
  644. SMARTLIST_FOREACH(consensus->routerstatus_list,
  645. routerstatus_t *, rs,
  646. {
  647. digestmap_set(m, rs->descriptor_digest, rs);
  648. });
  649. }
  650. return digestmap_get(consensus->desc_digest_map, digest);
  651. }
  652. /** Return the consensus view of the status of the router whose current
  653. * <i>descriptor</i> digest in <b>consensus</b> is <b>digest</b>, or NULL if
  654. * no such router is known. */
  655. const routerstatus_t *
  656. router_get_consensus_status_by_descriptor_digest(networkstatus_t *consensus,
  657. const char *digest)
  658. {
  659. return router_get_mutable_consensus_status_by_descriptor_digest(
  660. consensus, digest);
  661. }
  662. /** Return a smartlist of all router descriptor digests in a consensus */
  663. static smartlist_t *
  664. router_get_descriptor_digests_in_consensus(networkstatus_t *consensus)
  665. {
  666. smartlist_t *result = smartlist_new();
  667. digestmap_iter_t *i;
  668. const char *digest;
  669. void *rs;
  670. char *digest_tmp;
  671. for (i = digestmap_iter_init(consensus->desc_digest_map);
  672. !(digestmap_iter_done(i));
  673. i = digestmap_iter_next(consensus->desc_digest_map, i)) {
  674. digestmap_iter_get(i, &digest, &rs);
  675. digest_tmp = tor_malloc(DIGEST_LEN);
  676. memcpy(digest_tmp, digest, DIGEST_LEN);
  677. smartlist_add(result, digest_tmp);
  678. }
  679. return result;
  680. }
  681. /** Return a smartlist of all router descriptor digests in the current
  682. * consensus */
  683. MOCK_IMPL(smartlist_t *,
  684. router_get_descriptor_digests,(void))
  685. {
  686. smartlist_t *result = NULL;
  687. if (current_ns_consensus) {
  688. result =
  689. router_get_descriptor_digests_in_consensus(current_ns_consensus);
  690. }
  691. return result;
  692. }
  693. /** Given the digest of a router descriptor, return its current download
  694. * status, or NULL if the digest is unrecognized. */
  695. MOCK_IMPL(download_status_t *,
  696. router_get_dl_status_by_descriptor_digest,(const char *d))
  697. {
  698. routerstatus_t *rs;
  699. if (!current_ns_consensus)
  700. return NULL;
  701. if ((rs = router_get_mutable_consensus_status_by_descriptor_digest(
  702. current_ns_consensus, d)))
  703. return &rs->dl_status;
  704. return NULL;
  705. }
  706. /** As router_get_consensus_status_by_id, but do not return a const pointer */
  707. routerstatus_t *
  708. router_get_mutable_consensus_status_by_id(const char *digest)
  709. {
  710. const networkstatus_t *ns = networkstatus_get_latest_consensus();
  711. if (!ns)
  712. return NULL;
  713. smartlist_t *rslist = ns->routerstatus_list;
  714. return smartlist_bsearch(rslist, digest,
  715. compare_digest_to_routerstatus_entry);
  716. }
  717. /** Return the consensus view of the status of the router whose identity
  718. * digest is <b>digest</b>, or NULL if we don't know about any such router. */
  719. const routerstatus_t *
  720. router_get_consensus_status_by_id(const char *digest)
  721. {
  722. return router_get_mutable_consensus_status_by_id(digest);
  723. }
  724. /** Given a nickname (possibly verbose, possibly a hexadecimal digest), return
  725. * the corresponding routerstatus_t, or NULL if none exists. Warn the
  726. * user if <b>warn_if_unnamed</b> is set, and they have specified a router by
  727. * nickname, but the Named flag isn't set for that router. */
  728. const routerstatus_t *
  729. router_get_consensus_status_by_nickname(const char *nickname,
  730. int warn_if_unnamed)
  731. {
  732. const node_t *node = node_get_by_nickname(nickname, warn_if_unnamed);
  733. if (node)
  734. return node->rs;
  735. else
  736. return NULL;
  737. }
  738. /** Return the identity digest that's mapped to officially by
  739. * <b>nickname</b>. */
  740. const char *
  741. networkstatus_get_router_digest_by_nickname(const char *nickname)
  742. {
  743. if (!named_server_map)
  744. return NULL;
  745. return strmap_get_lc(named_server_map, nickname);
  746. }
  747. /** Return true iff <b>nickname</b> is disallowed from being the nickname
  748. * of any server. */
  749. int
  750. networkstatus_nickname_is_unnamed(const char *nickname)
  751. {
  752. if (!unnamed_server_map)
  753. return 0;
  754. return strmap_get_lc(unnamed_server_map, nickname) != NULL;
  755. }
  756. /** How frequently do directory authorities re-download fresh networkstatus
  757. * documents? */
  758. #define AUTHORITY_NS_CACHE_INTERVAL (10*60)
  759. /** How frequently do non-authority directory caches re-download fresh
  760. * networkstatus documents? */
  761. #define NONAUTHORITY_NS_CACHE_INTERVAL (60*60)
  762. /** Return true iff, given the options listed in <b>options</b>, <b>flavor</b>
  763. * is the flavor of a consensus networkstatus that we would like to fetch.
  764. *
  765. * For certificate fetches, use we_want_to_fetch_unknown_auth_certs, and
  766. * for serving fetched documents, use directory_caches_dir_info. */
  767. int
  768. we_want_to_fetch_flavor(const or_options_t *options, int flavor)
  769. {
  770. if (flavor < 0 || flavor > N_CONSENSUS_FLAVORS) {
  771. /* This flavor is crazy; we don't want it */
  772. /*XXXX handle unrecognized flavors later */
  773. return 0;
  774. }
  775. if (authdir_mode_v3(options) || directory_caches_dir_info(options)) {
  776. /* We want to serve all flavors to others, regardless if we would use
  777. * it ourselves. */
  778. return 1;
  779. }
  780. if (options->FetchUselessDescriptors) {
  781. /* In order to get all descriptors, we need to fetch all consensuses. */
  782. return 1;
  783. }
  784. /* Otherwise, we want the flavor only if we want to use it to build
  785. * circuits. */
  786. return flavor == usable_consensus_flavor();
  787. }
  788. /** Return true iff, given the options listed in <b>options</b>, we would like
  789. * to fetch and store unknown authority certificates.
  790. *
  791. * For consensus and descriptor fetches, use we_want_to_fetch_flavor, and
  792. * for serving fetched certificates, use directory_caches_unknown_auth_certs.
  793. */
  794. int
  795. we_want_to_fetch_unknown_auth_certs(const or_options_t *options)
  796. {
  797. if (authdir_mode_v3(options) ||
  798. directory_caches_unknown_auth_certs((options))) {
  799. /* We want to serve all certs to others, regardless if we would use
  800. * them ourselves. */
  801. return 1;
  802. }
  803. if (options->FetchUselessDescriptors) {
  804. /* Unknown certificates are definitely useless. */
  805. return 1;
  806. }
  807. /* Otherwise, don't fetch unknown certificates. */
  808. return 0;
  809. }
  810. /** How long will we hang onto a possibly live consensus for which we're
  811. * fetching certs before we check whether there is a better one? */
  812. #define DELAY_WHILE_FETCHING_CERTS (20*60)
  813. /** What is the minimum time we need to have waited fetching certs, before we
  814. * increment the consensus download schedule on failure? */
  815. #define MIN_DELAY_FOR_FETCH_CERT_STATUS_FAILURE (1*60)
  816. /* Check if a downloaded consensus flavor should still wait for certificates
  817. * to download now. If we decide not to wait, check if enough time has passed
  818. * to consider the certificate download failure a separate failure. If so,
  819. * fail dls.
  820. * If waiting for certificates to download, return 1. If not, return 0. */
  821. static int
  822. check_consensus_waiting_for_certs(int flavor, time_t now,
  823. download_status_t *dls)
  824. {
  825. consensus_waiting_for_certs_t *waiting;
  826. /* We should always have a known flavor, because we_want_to_fetch_flavor()
  827. * filters out unknown flavors. */
  828. tor_assert(flavor >= 0 && flavor < N_CONSENSUS_FLAVORS);
  829. waiting = &consensus_waiting_for_certs[flavor];
  830. if (waiting->consensus) {
  831. /* XXXX make sure this doesn't delay sane downloads. */
  832. if (waiting->set_at + DELAY_WHILE_FETCHING_CERTS > now &&
  833. waiting->consensus->valid_until > now) {
  834. return 1;
  835. } else {
  836. if (!waiting->dl_failed) {
  837. if (waiting->set_at + MIN_DELAY_FOR_FETCH_CERT_STATUS_FAILURE > now) {
  838. download_status_failed(dls, 0);
  839. }
  840. waiting->dl_failed=1;
  841. }
  842. }
  843. }
  844. return 0;
  845. }
  846. /** If we want to download a fresh consensus, launch a new download as
  847. * appropriate. */
  848. static void
  849. update_consensus_networkstatus_downloads(time_t now)
  850. {
  851. int i;
  852. const or_options_t *options = get_options();
  853. const int we_are_bootstrapping = networkstatus_consensus_is_bootstrapping(
  854. now);
  855. const int use_multi_conn =
  856. networkstatus_consensus_can_use_multiple_directories(options);
  857. if (should_delay_dir_fetches(options, NULL))
  858. return;
  859. for (i=0; i < N_CONSENSUS_FLAVORS; ++i) {
  860. /* XXXX need some way to download unknown flavors if we are caching. */
  861. const char *resource;
  862. networkstatus_t *c;
  863. int max_in_progress_conns = 1;
  864. if (! we_want_to_fetch_flavor(options, i))
  865. continue;
  866. c = networkstatus_get_latest_consensus_by_flavor(i);
  867. if (! (c && c->valid_after <= now && now <= c->valid_until)) {
  868. /* No live consensus? Get one now!*/
  869. time_to_download_next_consensus[i] = now;
  870. }
  871. if (time_to_download_next_consensus[i] > now)
  872. continue; /* Wait until the current consensus is older. */
  873. resource = networkstatus_get_flavor_name(i);
  874. /* Check if we already have enough connections in progress */
  875. if (we_are_bootstrapping && use_multi_conn) {
  876. max_in_progress_conns =
  877. options->ClientBootstrapConsensusMaxInProgressTries;
  878. }
  879. if (connection_dir_count_by_purpose_and_resource(
  880. DIR_PURPOSE_FETCH_CONSENSUS,
  881. resource)
  882. >= max_in_progress_conns) {
  883. continue;
  884. }
  885. /* Check if we want to launch another download for a usable consensus.
  886. * Only used during bootstrap. */
  887. if (we_are_bootstrapping && use_multi_conn
  888. && i == usable_consensus_flavor()) {
  889. /* Check if we're already downloading a usable consensus */
  890. if (networkstatus_consensus_is_already_downloading(resource))
  891. continue;
  892. /* Make multiple connections for a bootstrap consensus download. */
  893. update_consensus_bootstrap_multiple_downloads(now, options);
  894. } else {
  895. /* Check if we failed downloading a consensus too recently */
  896. int max_dl_tries = options->TestingConsensusMaxDownloadTries;
  897. /* Let's make sure we remembered to update consensus_dl_status */
  898. tor_assert(consensus_dl_status[i].schedule == DL_SCHED_CONSENSUS);
  899. if (!download_status_is_ready(&consensus_dl_status[i],
  900. now,
  901. max_dl_tries)) {
  902. continue;
  903. }
  904. /* Check if we're waiting for certificates to download */
  905. if (check_consensus_waiting_for_certs(i, now, &consensus_dl_status[i]))
  906. continue;
  907. /* Try the requested attempt */
  908. log_info(LD_DIR, "Launching %s standard networkstatus consensus "
  909. "download.", networkstatus_get_flavor_name(i));
  910. directory_get_from_dirserver(DIR_PURPOSE_FETCH_CONSENSUS,
  911. ROUTER_PURPOSE_GENERAL, resource,
  912. PDS_RETRY_IF_NO_SERVERS,
  913. consensus_dl_status[i].want_authority);
  914. }
  915. }
  916. }
  917. /** When we're bootstrapping, launch one or more consensus download
  918. * connections, if schedule indicates connection(s) should be made after now.
  919. * If is_authority, connect to an authority, otherwise, use a fallback
  920. * directory mirror.
  921. */
  922. static void
  923. update_consensus_bootstrap_attempt_downloads(
  924. time_t now,
  925. const or_options_t *options,
  926. download_status_t *dls,
  927. download_want_authority_t want_authority)
  928. {
  929. int use_fallbacks = networkstatus_consensus_can_use_extra_fallbacks(options);
  930. int max_dl_tries = options->ClientBootstrapConsensusMaxDownloadTries;
  931. if (!use_fallbacks) {
  932. max_dl_tries =
  933. options->ClientBootstrapConsensusAuthorityOnlyMaxDownloadTries;
  934. }
  935. const char *resource = networkstatus_get_flavor_name(
  936. usable_consensus_flavor());
  937. /* Let's make sure we remembered to update schedule */
  938. tor_assert(dls->schedule == DL_SCHED_CONSENSUS);
  939. /* Allow for multiple connections in the same second, if the schedule value
  940. * is 0. */
  941. while (download_status_is_ready(dls, now, max_dl_tries)) {
  942. log_info(LD_DIR, "Launching %s bootstrap %s networkstatus consensus "
  943. "download.", resource, (want_authority == DL_WANT_AUTHORITY
  944. ? "authority"
  945. : "mirror"));
  946. directory_get_from_dirserver(DIR_PURPOSE_FETCH_CONSENSUS,
  947. ROUTER_PURPOSE_GENERAL, resource,
  948. PDS_RETRY_IF_NO_SERVERS, want_authority);
  949. /* schedule the next attempt */
  950. download_status_increment_attempt(dls, resource, now);
  951. }
  952. }
  953. /** If we're bootstrapping, check the connection schedules and see if we want
  954. * to make additional, potentially concurrent, consensus download
  955. * connections.
  956. * Only call when bootstrapping, and when we want to make additional
  957. * connections. Only nodes that satisfy
  958. * networkstatus_consensus_can_use_multiple_directories make additional
  959. * connections.
  960. */
  961. static void
  962. update_consensus_bootstrap_multiple_downloads(time_t now,
  963. const or_options_t *options)
  964. {
  965. const int usable_flavor = usable_consensus_flavor();
  966. /* make sure we can use multiple connections */
  967. if (!networkstatus_consensus_can_use_multiple_directories(options)) {
  968. return;
  969. }
  970. /* Launch concurrent consensus download attempt(s) based on the mirror and
  971. * authority schedules. Try the mirror first - this makes it slightly more
  972. * likely that we'll connect to the fallback first, and then end the
  973. * authority connection attempt. */
  974. /* If a consensus download fails because it's waiting for certificates,
  975. * we'll fail both the authority and fallback schedules. This is better than
  976. * failing only one of the schedules, and having the other continue
  977. * unchecked.
  978. */
  979. /* If we don't have or can't use extra fallbacks, don't try them. */
  980. if (networkstatus_consensus_can_use_extra_fallbacks(options)) {
  981. download_status_t *dls_f =
  982. &consensus_bootstrap_dl_status[CONSENSUS_BOOTSTRAP_SOURCE_ANY_DIRSERVER];
  983. if (!check_consensus_waiting_for_certs(usable_flavor, now, dls_f)) {
  984. /* During bootstrap, DL_WANT_ANY_DIRSERVER means "use fallbacks". */
  985. update_consensus_bootstrap_attempt_downloads(now, options, dls_f,
  986. DL_WANT_ANY_DIRSERVER);
  987. }
  988. }
  989. /* Now try an authority. */
  990. download_status_t *dls_a =
  991. &consensus_bootstrap_dl_status[CONSENSUS_BOOTSTRAP_SOURCE_AUTHORITY];
  992. if (!check_consensus_waiting_for_certs(usable_flavor, now, dls_a)) {
  993. update_consensus_bootstrap_attempt_downloads(now, options, dls_a,
  994. DL_WANT_AUTHORITY);
  995. }
  996. }
  997. /** Called when an attempt to download a consensus fails: note that the
  998. * failure occurred, and possibly retry. */
  999. void
  1000. networkstatus_consensus_download_failed(int status_code, const char *flavname)
  1001. {
  1002. int flav = networkstatus_parse_flavor_name(flavname);
  1003. if (flav >= 0) {
  1004. tor_assert(flav < N_CONSENSUS_FLAVORS);
  1005. /* XXXX handle unrecognized flavors */
  1006. download_status_failed(&consensus_dl_status[flav], status_code);
  1007. /* Retry immediately, if appropriate. */
  1008. update_consensus_networkstatus_downloads(time(NULL));
  1009. }
  1010. }
  1011. /** How long do we (as a cache) wait after a consensus becomes non-fresh
  1012. * before trying to fetch another? */
  1013. #define CONSENSUS_MIN_SECONDS_BEFORE_CACHING 120
  1014. /** Update the time at which we'll consider replacing the current
  1015. * consensus of flavor <b>flav</b> */
  1016. static void
  1017. update_consensus_networkstatus_fetch_time_impl(time_t now, int flav)
  1018. {
  1019. const or_options_t *options = get_options();
  1020. networkstatus_t *c = networkstatus_get_latest_consensus_by_flavor(flav);
  1021. const char *flavor = networkstatus_get_flavor_name(flav);
  1022. if (! we_want_to_fetch_flavor(get_options(), flav))
  1023. return;
  1024. if (c && c->valid_after <= now && now <= c->valid_until) {
  1025. long dl_interval;
  1026. long interval = c->fresh_until - c->valid_after;
  1027. long min_sec_before_caching = CONSENSUS_MIN_SECONDS_BEFORE_CACHING;
  1028. time_t start;
  1029. if (min_sec_before_caching > interval/16) {
  1030. /* Usually we allow 2-minutes slop factor in case clocks get
  1031. desynchronized a little. If we're on a private network with
  1032. a crazy-fast voting interval, though, 2 minutes may be too
  1033. much. */
  1034. min_sec_before_caching = interval/16;
  1035. /* make sure we always delay by at least a second before caching */
  1036. if (min_sec_before_caching == 0) {
  1037. min_sec_before_caching = 1;
  1038. }
  1039. }
  1040. if (directory_fetches_dir_info_early(options)) {
  1041. /* We want to cache the next one at some point after this one
  1042. * is no longer fresh... */
  1043. start = (time_t)(c->fresh_until + min_sec_before_caching);
  1044. /* Some clients may need the consensus sooner than others. */
  1045. if (options->FetchDirInfoExtraEarly || authdir_mode_v3(options)) {
  1046. dl_interval = 60;
  1047. if (min_sec_before_caching + dl_interval > interval)
  1048. dl_interval = interval/2;
  1049. } else {
  1050. /* But only in the first half-interval after that. */
  1051. dl_interval = interval/2;
  1052. }
  1053. } else {
  1054. /* We're an ordinary client, a bridge, or a hidden service.
  1055. * Give all the caches enough time to download the consensus. */
  1056. start = (time_t)(c->fresh_until + (interval*3)/4);
  1057. /* But download the next one well before this one is expired. */
  1058. dl_interval = ((c->valid_until - start) * 7 )/ 8;
  1059. /* If we're a bridge user, make use of the numbers we just computed
  1060. * to choose the rest of the interval *after* them. */
  1061. if (directory_fetches_dir_info_later(options)) {
  1062. /* Give all the *clients* enough time to download the consensus. */
  1063. start = (time_t)(start + dl_interval + min_sec_before_caching);
  1064. /* But try to get it before ours actually expires. */
  1065. dl_interval = (c->valid_until - start) - min_sec_before_caching;
  1066. }
  1067. }
  1068. /* catch low dl_interval in crazy-fast networks */
  1069. if (dl_interval < 1)
  1070. dl_interval = 1;
  1071. /* catch late start in crazy-fast networks */
  1072. if (start+dl_interval >= c->valid_until)
  1073. start = c->valid_until - dl_interval - 1;
  1074. log_debug(LD_DIR,
  1075. "fresh_until: %ld start: %ld "
  1076. "dl_interval: %ld valid_until: %ld ",
  1077. (long)c->fresh_until, (long)start, dl_interval,
  1078. (long)c->valid_until);
  1079. /* We must not try to replace c while it's still fresh: */
  1080. tor_assert(c->fresh_until < start);
  1081. /* We must download the next one before c is invalid: */
  1082. tor_assert(start+dl_interval < c->valid_until);
  1083. time_to_download_next_consensus[flav] =
  1084. start + crypto_rand_int((int)dl_interval);
  1085. {
  1086. char tbuf1[ISO_TIME_LEN+1];
  1087. char tbuf2[ISO_TIME_LEN+1];
  1088. char tbuf3[ISO_TIME_LEN+1];
  1089. format_local_iso_time(tbuf1, c->fresh_until);
  1090. format_local_iso_time(tbuf2, c->valid_until);
  1091. format_local_iso_time(tbuf3, time_to_download_next_consensus[flav]);
  1092. log_info(LD_DIR, "Live %s consensus %s the most recent until %s and "
  1093. "will expire at %s; fetching the next one at %s.",
  1094. flavor, (c->fresh_until > now) ? "will be" : "was",
  1095. tbuf1, tbuf2, tbuf3);
  1096. }
  1097. } else {
  1098. time_to_download_next_consensus[flav] = now;
  1099. log_info(LD_DIR, "No live %s consensus; we should fetch one immediately.",
  1100. flavor);
  1101. }
  1102. }
  1103. /** Update the time at which we'll consider replacing the current
  1104. * consensus of flavor 'flavor' */
  1105. void
  1106. update_consensus_networkstatus_fetch_time(time_t now)
  1107. {
  1108. int i;
  1109. for (i = 0; i < N_CONSENSUS_FLAVORS; ++i) {
  1110. if (we_want_to_fetch_flavor(get_options(), i))
  1111. update_consensus_networkstatus_fetch_time_impl(now, i);
  1112. }
  1113. }
  1114. /** Return 1 if there's a reason we shouldn't try any directory
  1115. * fetches yet (e.g. we demand bridges and none are yet known).
  1116. * Else return 0.
  1117. * If we return 1 and <b>msg_out</b> is provided, set <b>msg_out</b>
  1118. * to an explanation of why directory fetches are delayed. (If we
  1119. * return 0, we set msg_out to NULL.)
  1120. */
  1121. int
  1122. should_delay_dir_fetches(const or_options_t *options, const char **msg_out)
  1123. {
  1124. if (msg_out) {
  1125. *msg_out = NULL;
  1126. }
  1127. if (options->DisableNetwork) {
  1128. if (msg_out) {
  1129. *msg_out = "DisableNetwork is set.";
  1130. }
  1131. log_info(LD_DIR, "Delaying dir fetches (DisableNetwork is set)");
  1132. return 1;
  1133. }
  1134. if (options->UseBridges) {
  1135. if (!any_bridge_descriptors_known()) {
  1136. if (msg_out) {
  1137. *msg_out = "No running bridges";
  1138. }
  1139. log_info(LD_DIR, "Delaying dir fetches (no running bridges known)");
  1140. return 1;
  1141. }
  1142. if (pt_proxies_configuration_pending()) {
  1143. if (msg_out) {
  1144. *msg_out = "Pluggable transport proxies still configuring";
  1145. }
  1146. log_info(LD_DIR, "Delaying dir fetches (pt proxies still configuring)");
  1147. return 1;
  1148. }
  1149. }
  1150. return 0;
  1151. }
  1152. /** Launch requests for networkstatus documents and authority certificates as
  1153. * appropriate. */
  1154. void
  1155. update_networkstatus_downloads(time_t now)
  1156. {
  1157. const or_options_t *options = get_options();
  1158. if (should_delay_dir_fetches(options, NULL))
  1159. return;
  1160. update_consensus_networkstatus_downloads(now);
  1161. update_certificate_downloads(now);
  1162. }
  1163. /** Launch requests as appropriate for missing directory authority
  1164. * certificates. */
  1165. void
  1166. update_certificate_downloads(time_t now)
  1167. {
  1168. int i;
  1169. for (i = 0; i < N_CONSENSUS_FLAVORS; ++i) {
  1170. if (consensus_waiting_for_certs[i].consensus)
  1171. authority_certs_fetch_missing(consensus_waiting_for_certs[i].consensus,
  1172. now, NULL);
  1173. }
  1174. if (current_ns_consensus)
  1175. authority_certs_fetch_missing(current_ns_consensus, now, NULL);
  1176. if (current_md_consensus)
  1177. authority_certs_fetch_missing(current_md_consensus, now, NULL);
  1178. }
  1179. /** Return 1 if we have a consensus but we don't have enough certificates
  1180. * to start using it yet. */
  1181. int
  1182. consensus_is_waiting_for_certs(void)
  1183. {
  1184. return consensus_waiting_for_certs[usable_consensus_flavor()].consensus
  1185. ? 1 : 0;
  1186. }
  1187. /** Look up the currently active (depending on bootstrap status) download
  1188. * status for this consensus flavor and return a pointer to it.
  1189. */
  1190. MOCK_IMPL(download_status_t *,
  1191. networkstatus_get_dl_status_by_flavor,(consensus_flavor_t flavor))
  1192. {
  1193. download_status_t *dl = NULL;
  1194. const int we_are_bootstrapping =
  1195. networkstatus_consensus_is_bootstrapping(time(NULL));
  1196. if ((int)flavor <= N_CONSENSUS_FLAVORS) {
  1197. dl = &((we_are_bootstrapping ?
  1198. consensus_bootstrap_dl_status : consensus_dl_status)[flavor]);
  1199. }
  1200. return dl;
  1201. }
  1202. /** Look up the bootstrap download status for this consensus flavor
  1203. * and return a pointer to it. */
  1204. MOCK_IMPL(download_status_t *,
  1205. networkstatus_get_dl_status_by_flavor_bootstrap,(consensus_flavor_t flavor))
  1206. {
  1207. download_status_t *dl = NULL;
  1208. if ((int)flavor <= N_CONSENSUS_FLAVORS) {
  1209. dl = &(consensus_bootstrap_dl_status[flavor]);
  1210. }
  1211. return dl;
  1212. }
  1213. /** Look up the running (non-bootstrap) download status for this consensus
  1214. * flavor and return a pointer to it. */
  1215. MOCK_IMPL(download_status_t *,
  1216. networkstatus_get_dl_status_by_flavor_running,(consensus_flavor_t flavor))
  1217. {
  1218. download_status_t *dl = NULL;
  1219. if ((int)flavor <= N_CONSENSUS_FLAVORS) {
  1220. dl = &(consensus_dl_status[flavor]);
  1221. }
  1222. return dl;
  1223. }
  1224. /** Return the most recent consensus that we have downloaded, or NULL if we
  1225. * don't have one. */
  1226. MOCK_IMPL(networkstatus_t *,
  1227. networkstatus_get_latest_consensus,(void))
  1228. {
  1229. if (we_use_microdescriptors_for_circuits(get_options()))
  1230. return current_md_consensus;
  1231. else
  1232. return current_ns_consensus;
  1233. }
  1234. /** Return the latest consensus we have whose flavor matches <b>f</b>, or NULL
  1235. * if we don't have one. */
  1236. MOCK_IMPL(networkstatus_t *,
  1237. networkstatus_get_latest_consensus_by_flavor,(consensus_flavor_t f))
  1238. {
  1239. if (f == FLAV_NS)
  1240. return current_ns_consensus;
  1241. else if (f == FLAV_MICRODESC)
  1242. return current_md_consensus;
  1243. else {
  1244. tor_assert(0);
  1245. return NULL;
  1246. }
  1247. }
  1248. /** Return the most recent consensus that we have downloaded, or NULL if it is
  1249. * no longer live. */
  1250. MOCK_IMPL(networkstatus_t *,
  1251. networkstatus_get_live_consensus,(time_t now))
  1252. {
  1253. networkstatus_t *ns = networkstatus_get_latest_consensus();
  1254. if (ns && networkstatus_is_live(ns, now))
  1255. return ns;
  1256. else
  1257. return NULL;
  1258. }
  1259. /** Given a consensus in <b>ns</b>, return true iff currently live and
  1260. * unexpired. */
  1261. int
  1262. networkstatus_is_live(const networkstatus_t *ns, time_t now)
  1263. {
  1264. return (ns->valid_after <= now && now <= ns->valid_until);
  1265. }
  1266. /** Determine if <b>consensus</b> is valid or expired recently enough that
  1267. * we can still use it.
  1268. *
  1269. * Return 1 if the consensus is reasonably live, or 0 if it is too old.
  1270. */
  1271. int
  1272. networkstatus_consensus_reasonably_live(const networkstatus_t *consensus,
  1273. time_t now)
  1274. {
  1275. if (BUG(!consensus))
  1276. return 0;
  1277. return networkstatus_valid_until_is_reasonably_live(consensus->valid_until,
  1278. now);
  1279. }
  1280. /** As networkstatus_consensus_reasonably_live, but takes a valid_until
  1281. * time rather than an entire consensus. */
  1282. int
  1283. networkstatus_valid_until_is_reasonably_live(time_t valid_until,
  1284. time_t now)
  1285. {
  1286. #define REASONABLY_LIVE_TIME (24*60*60)
  1287. return (now <= valid_until + REASONABLY_LIVE_TIME);
  1288. }
  1289. /* XXXX remove this in favor of get_live_consensus. But actually,
  1290. * leave something like it for bridge users, who need to not totally
  1291. * lose if they spend a while fetching a new consensus. */
  1292. /** As networkstatus_get_live_consensus(), but is way more tolerant of expired
  1293. * consensuses. */
  1294. networkstatus_t *
  1295. networkstatus_get_reasonably_live_consensus(time_t now, int flavor)
  1296. {
  1297. networkstatus_t *consensus =
  1298. networkstatus_get_latest_consensus_by_flavor(flavor);
  1299. if (consensus &&
  1300. consensus->valid_after <= now &&
  1301. networkstatus_consensus_reasonably_live(consensus, now))
  1302. return consensus;
  1303. else
  1304. return NULL;
  1305. }
  1306. /** Check if we need to download a consensus during tor's bootstrap phase.
  1307. * If we have no consensus, or our consensus is unusably old, return 1.
  1308. * As soon as we have received a consensus, return 0, even if we don't have
  1309. * enough certificates to validate it.
  1310. * If a fallback directory gives us a consensus we can never get certs for,
  1311. * check_consensus_waiting_for_certs() will wait 20 minutes before failing
  1312. * the cert downloads. After that, a new consensus will be fetched from a
  1313. * randomly chosen fallback. */
  1314. MOCK_IMPL(int,
  1315. networkstatus_consensus_is_bootstrapping,(time_t now))
  1316. {
  1317. /* If we have a validated, reasonably live consensus, we're not
  1318. * bootstrapping a consensus at all. */
  1319. if (networkstatus_get_reasonably_live_consensus(
  1320. now,
  1321. usable_consensus_flavor())) {
  1322. return 0;
  1323. }
  1324. /* If we have a consensus, but we're waiting for certificates,
  1325. * we're not waiting for a consensus download while bootstrapping. */
  1326. if (consensus_is_waiting_for_certs()) {
  1327. return 0;
  1328. }
  1329. /* If we have no consensus, or our consensus is very old, we are
  1330. * bootstrapping, and we need to download a consensus. */
  1331. return 1;
  1332. }
  1333. /** Check if we can use multiple directories for a consensus download.
  1334. * Only clients (including bridge relays, which act like clients) benefit
  1335. * from multiple simultaneous consensus downloads. */
  1336. int
  1337. networkstatus_consensus_can_use_multiple_directories(
  1338. const or_options_t *options)
  1339. {
  1340. /* If we are a client, bridge, bridge client, or hidden service */
  1341. return !public_server_mode(options);
  1342. }
  1343. /** Check if we can use fallback directory mirrors for a consensus download.
  1344. * If we have fallbacks and don't want to fetch from the authorities,
  1345. * we can use them. */
  1346. MOCK_IMPL(int,
  1347. networkstatus_consensus_can_use_extra_fallbacks,(const or_options_t *options))
  1348. {
  1349. /* The list length comparisons are a quick way to check if we have any
  1350. * non-authority fallback directories. If we ever have any authorities that
  1351. * aren't fallback directories, we will need to change this code. */
  1352. tor_assert(smartlist_len(router_get_fallback_dir_servers())
  1353. >= smartlist_len(router_get_trusted_dir_servers()));
  1354. /* If we don't fetch from the authorities, and we have additional mirrors,
  1355. * we can use them. */
  1356. return (!directory_fetches_from_authorities(options)
  1357. && (smartlist_len(router_get_fallback_dir_servers())
  1358. > smartlist_len(router_get_trusted_dir_servers())));
  1359. }
  1360. /* Is there a consensus fetch for flavor <b>resource</b> that's far
  1361. * enough along to be attached to a circuit? */
  1362. int
  1363. networkstatus_consensus_is_already_downloading(const char *resource)
  1364. {
  1365. int answer = 0;
  1366. /* First, get a list of all the dir conns that are fetching a consensus,
  1367. * fetching *this* consensus, and are in state "reading" (meaning they
  1368. * have already flushed their request onto the socks connection). */
  1369. smartlist_t *fetching_conns =
  1370. connection_dir_list_by_purpose_resource_and_state(
  1371. DIR_PURPOSE_FETCH_CONSENSUS, resource, DIR_CONN_STATE_CLIENT_READING);
  1372. /* Then, walk through each conn, to see if its linked socks connection
  1373. * is in an attached state. We have to check this separately, since with
  1374. * the optimistic data feature, fetches can send their request to the
  1375. * socks connection and go into state 'reading', even before they're
  1376. * attached to any circuit. */
  1377. SMARTLIST_FOREACH_BEGIN(fetching_conns, dir_connection_t *, dirconn) {
  1378. /* Do any of these other dir conns have a linked socks conn that is
  1379. * attached to a circuit already? */
  1380. connection_t *base = TO_CONN(dirconn);
  1381. if (base->linked_conn &&
  1382. base->linked_conn->type == CONN_TYPE_AP &&
  1383. !AP_CONN_STATE_IS_UNATTACHED(base->linked_conn->state)) {
  1384. answer = 1;
  1385. break; /* stop looping, because we know the answer will be yes */
  1386. }
  1387. } SMARTLIST_FOREACH_END(dirconn);
  1388. smartlist_free(fetching_conns);
  1389. return answer;
  1390. }
  1391. /** Given two router status entries for the same router identity, return 1 if
  1392. * if the contents have changed between them. Otherwise, return 0. */
  1393. static int
  1394. routerstatus_has_changed(const routerstatus_t *a, const routerstatus_t *b)
  1395. {
  1396. tor_assert(tor_memeq(a->identity_digest, b->identity_digest, DIGEST_LEN));
  1397. return strcmp(a->nickname, b->nickname) ||
  1398. fast_memneq(a->descriptor_digest, b->descriptor_digest, DIGEST_LEN) ||
  1399. a->addr != b->addr ||
  1400. a->or_port != b->or_port ||
  1401. a->dir_port != b->dir_port ||
  1402. a->is_authority != b->is_authority ||
  1403. a->is_exit != b->is_exit ||
  1404. a->is_stable != b->is_stable ||
  1405. a->is_fast != b->is_fast ||
  1406. a->is_flagged_running != b->is_flagged_running ||
  1407. a->is_named != b->is_named ||
  1408. a->is_unnamed != b->is_unnamed ||
  1409. a->is_valid != b->is_valid ||
  1410. a->is_possible_guard != b->is_possible_guard ||
  1411. a->is_bad_exit != b->is_bad_exit ||
  1412. a->is_hs_dir != b->is_hs_dir;
  1413. // XXXX this function needs a huge refactoring; it has gotten out
  1414. // XXXX of sync with routerstatus_t, and it will do so again.
  1415. }
  1416. /** Notify controllers of any router status entries that changed between
  1417. * <b>old_c</b> and <b>new_c</b>. */
  1418. static void
  1419. notify_control_networkstatus_changed(const networkstatus_t *old_c,
  1420. const networkstatus_t *new_c)
  1421. {
  1422. smartlist_t *changed;
  1423. if (old_c == new_c)
  1424. return;
  1425. /* tell the controller exactly which relays are still listed, as well
  1426. * as what they're listed as */
  1427. control_event_newconsensus(new_c);
  1428. if (!control_event_is_interesting(EVENT_NS))
  1429. return;
  1430. if (!old_c) {
  1431. control_event_networkstatus_changed(new_c->routerstatus_list);
  1432. return;
  1433. }
  1434. changed = smartlist_new();
  1435. SMARTLIST_FOREACH_JOIN(
  1436. old_c->routerstatus_list, const routerstatus_t *, rs_old,
  1437. new_c->routerstatus_list, const routerstatus_t *, rs_new,
  1438. tor_memcmp(rs_old->identity_digest,
  1439. rs_new->identity_digest, DIGEST_LEN),
  1440. smartlist_add(changed, (void*) rs_new)) {
  1441. if (routerstatus_has_changed(rs_old, rs_new))
  1442. smartlist_add(changed, (void*)rs_new);
  1443. } SMARTLIST_FOREACH_JOIN_END(rs_old, rs_new);
  1444. control_event_networkstatus_changed(changed);
  1445. smartlist_free(changed);
  1446. }
  1447. /* Called when the consensus has changed from old_c to new_c. */
  1448. static void
  1449. notify_networkstatus_changed(const networkstatus_t *old_c,
  1450. const networkstatus_t *new_c)
  1451. {
  1452. notify_control_networkstatus_changed(old_c, new_c);
  1453. scheduler_notify_networkstatus_changed(old_c, new_c);
  1454. }
  1455. /** Copy all the ancillary information (like router download status and so on)
  1456. * from <b>old_c</b> to <b>new_c</b>. */
  1457. static void
  1458. networkstatus_copy_old_consensus_info(networkstatus_t *new_c,
  1459. const networkstatus_t *old_c)
  1460. {
  1461. if (old_c == new_c)
  1462. return;
  1463. if (!old_c || !smartlist_len(old_c->routerstatus_list))
  1464. return;
  1465. SMARTLIST_FOREACH_JOIN(old_c->routerstatus_list, routerstatus_t *, rs_old,
  1466. new_c->routerstatus_list, routerstatus_t *, rs_new,
  1467. tor_memcmp(rs_old->identity_digest,
  1468. rs_new->identity_digest, DIGEST_LEN),
  1469. STMT_NIL) {
  1470. /* Okay, so we're looking at the same identity. */
  1471. rs_new->last_dir_503_at = rs_old->last_dir_503_at;
  1472. if (tor_memeq(rs_old->descriptor_digest, rs_new->descriptor_digest,
  1473. DIGEST256_LEN)) {
  1474. /* And the same descriptor too! */
  1475. memcpy(&rs_new->dl_status, &rs_old->dl_status,sizeof(download_status_t));
  1476. }
  1477. } SMARTLIST_FOREACH_JOIN_END(rs_old, rs_new);
  1478. }
  1479. #ifdef TOR_UNIT_TESTS
  1480. /**Accept a <b>flavor</b> consensus <b>c</b> without any additional
  1481. * validation. This is exclusively for unit tests.
  1482. * We copy any ancillary information from a pre-existing consensus
  1483. * and then free the current one and replace it with the newly
  1484. * provided instance. Returns -1 on unrecognized flavor, 0 otherwise.
  1485. */
  1486. int
  1487. networkstatus_set_current_consensus_from_ns(networkstatus_t *c,
  1488. const char *flavor)
  1489. {
  1490. int flav = networkstatus_parse_flavor_name(flavor);
  1491. switch (flav) {
  1492. case FLAV_NS:
  1493. if (current_ns_consensus) {
  1494. networkstatus_copy_old_consensus_info(c, current_ns_consensus);
  1495. networkstatus_vote_free(current_ns_consensus);
  1496. }
  1497. current_ns_consensus = c;
  1498. break;
  1499. case FLAV_MICRODESC:
  1500. if (current_md_consensus) {
  1501. networkstatus_copy_old_consensus_info(c, current_md_consensus);
  1502. networkstatus_vote_free(current_md_consensus);
  1503. }
  1504. current_md_consensus = c;
  1505. break;
  1506. }
  1507. return current_md_consensus ? 0 : -1;
  1508. }
  1509. #endif //TOR_UNIT_TESTS
  1510. /**
  1511. * Return true if any option is set in <b>options</b> to make us behave
  1512. * as a client.
  1513. *
  1514. * XXXX If we need this elsewhere at any point, we should make it nonstatic
  1515. * XXXX and move it into another file.
  1516. */
  1517. static int
  1518. any_client_port_set(const or_options_t *options)
  1519. {
  1520. return (options->SocksPort_set ||
  1521. options->TransPort_set ||
  1522. options->NATDPort_set ||
  1523. options->ControlPort_set ||
  1524. options->DNSPort_set ||
  1525. options->HTTPTunnelPort_set);
  1526. }
  1527. /**
  1528. * Helper for handle_missing_protocol_warning: handles either the
  1529. * client case (if <b>is_client</b> is set) or the server case otherwise.
  1530. */
  1531. static void
  1532. handle_missing_protocol_warning_impl(const networkstatus_t *c,
  1533. int is_client)
  1534. {
  1535. char *protocol_warning = NULL;
  1536. int should_exit = networkstatus_check_required_protocols(c,
  1537. is_client,
  1538. &protocol_warning);
  1539. if (protocol_warning) {
  1540. tor_log(should_exit ? LOG_ERR : LOG_WARN,
  1541. LD_GENERAL,
  1542. "%s", protocol_warning);
  1543. }
  1544. if (should_exit) {
  1545. tor_assert_nonfatal(protocol_warning);
  1546. }
  1547. tor_free(protocol_warning);
  1548. if (should_exit)
  1549. exit(1);
  1550. }
  1551. /** Called when we have received a networkstatus <b>c</b>. If there are
  1552. * any _required_ protocols we are missing, log an error and exit
  1553. * immediately. If there are any _recommended_ protocols we are missing,
  1554. * warn. */
  1555. static void
  1556. handle_missing_protocol_warning(const networkstatus_t *c,
  1557. const or_options_t *options)
  1558. {
  1559. const int is_server = server_mode(options);
  1560. const int is_client = any_client_port_set(options) || !is_server;
  1561. if (is_server)
  1562. handle_missing_protocol_warning_impl(c, 0);
  1563. if (is_client)
  1564. handle_missing_protocol_warning_impl(c, 1);
  1565. }
  1566. /** Try to replace the current cached v3 networkstatus with the one in
  1567. * <b>consensus</b>. If we don't have enough certificates to validate it,
  1568. * store it in consensus_waiting_for_certs and launch a certificate fetch.
  1569. *
  1570. * If flags & NSSET_FROM_CACHE, this networkstatus has come from the disk
  1571. * cache. If flags & NSSET_WAS_WAITING_FOR_CERTS, this networkstatus was
  1572. * already received, but we were waiting for certificates on it. If flags &
  1573. * NSSET_DONT_DOWNLOAD_CERTS, do not launch certificate downloads as needed.
  1574. * If flags & NSSET_ACCEPT_OBSOLETE, then we should be willing to take this
  1575. * consensus, even if it comes from many days in the past.
  1576. *
  1577. * If source_dir is non-NULL, it's the identity digest for a directory that
  1578. * we've just successfully retrieved a consensus or certificates from, so try
  1579. * it first to fetch any missing certificates.
  1580. *
  1581. * Return 0 on success, <0 on failure. On failure, caller should increment
  1582. * the failure count as appropriate.
  1583. *
  1584. * We return -1 for mild failures that don't need to be reported to the
  1585. * user, and -2 for more serious problems.
  1586. */
  1587. int
  1588. networkstatus_set_current_consensus(const char *consensus,
  1589. const char *flavor,
  1590. unsigned flags,
  1591. const char *source_dir)
  1592. {
  1593. networkstatus_t *c=NULL;
  1594. int r, result = -1;
  1595. time_t now = time(NULL);
  1596. const or_options_t *options = get_options();
  1597. char *unverified_fname = NULL, *consensus_fname = NULL;
  1598. int flav = networkstatus_parse_flavor_name(flavor);
  1599. const unsigned from_cache = flags & NSSET_FROM_CACHE;
  1600. const unsigned was_waiting_for_certs = flags & NSSET_WAS_WAITING_FOR_CERTS;
  1601. const unsigned dl_certs = !(flags & NSSET_DONT_DOWNLOAD_CERTS);
  1602. const unsigned accept_obsolete = flags & NSSET_ACCEPT_OBSOLETE;
  1603. const unsigned require_flavor = flags & NSSET_REQUIRE_FLAVOR;
  1604. const common_digests_t *current_digests = NULL;
  1605. consensus_waiting_for_certs_t *waiting = NULL;
  1606. time_t current_valid_after = 0;
  1607. int free_consensus = 1; /* Free 'c' at the end of the function */
  1608. int old_ewma_enabled;
  1609. int checked_protocols_already = 0;
  1610. if (flav < 0) {
  1611. /* XXXX we don't handle unrecognized flavors yet. */
  1612. log_warn(LD_BUG, "Unrecognized consensus flavor %s", flavor);
  1613. return -2;
  1614. }
  1615. /* Make sure it's parseable. */
  1616. c = networkstatus_parse_vote_from_string(consensus, NULL, NS_TYPE_CONSENSUS);
  1617. if (!c) {
  1618. log_warn(LD_DIR, "Unable to parse networkstatus consensus");
  1619. result = -2;
  1620. goto done;
  1621. }
  1622. if (from_cache && !was_waiting_for_certs) {
  1623. /* We previously stored this; check _now_ to make sure that version-kills
  1624. * really work. This happens even before we check signatures: we did so
  1625. * before when we stored this to disk. This does mean an attacker who can
  1626. * write to the datadir can make us not start: such an attacker could
  1627. * already harm us by replacing our guards, which would be worse. */
  1628. checked_protocols_already = 1;
  1629. handle_missing_protocol_warning(c, options);
  1630. }
  1631. if ((int)c->flavor != flav) {
  1632. /* This wasn't the flavor we thought we were getting. */
  1633. if (require_flavor) {
  1634. log_warn(LD_DIR, "Got consensus with unexpected flavor %s (wanted %s)",
  1635. networkstatus_get_flavor_name(c->flavor), flavor);
  1636. goto done;
  1637. }
  1638. flav = c->flavor;
  1639. flavor = networkstatus_get_flavor_name(flav);
  1640. }
  1641. if (flav != usable_consensus_flavor() &&
  1642. !we_want_to_fetch_flavor(options, flav)) {
  1643. /* This consensus is totally boring to us: we won't use it, we didn't want
  1644. * it, and we won't serve it. Drop it. */
  1645. goto done;
  1646. }
  1647. if (from_cache && !accept_obsolete &&
  1648. c->valid_until < now-OLD_ROUTER_DESC_MAX_AGE) {
  1649. log_info(LD_DIR, "Loaded an expired consensus. Discarding.");
  1650. goto done;
  1651. }
  1652. if (!strcmp(flavor, "ns")) {
  1653. consensus_fname = get_datadir_fname("cached-consensus");
  1654. unverified_fname = get_datadir_fname("unverified-consensus");
  1655. if (current_ns_consensus) {
  1656. current_digests = &current_ns_consensus->digests;
  1657. current_valid_after = current_ns_consensus->valid_after;
  1658. }
  1659. } else if (!strcmp(flavor, "microdesc")) {
  1660. consensus_fname = get_datadir_fname("cached-microdesc-consensus");
  1661. unverified_fname = get_datadir_fname("unverified-microdesc-consensus");
  1662. if (current_md_consensus) {
  1663. current_digests = &current_md_consensus->digests;
  1664. current_valid_after = current_md_consensus->valid_after;
  1665. }
  1666. } else {
  1667. cached_dir_t *cur;
  1668. char buf[128];
  1669. tor_snprintf(buf, sizeof(buf), "cached-%s-consensus", flavor);
  1670. consensus_fname = get_datadir_fname(buf);
  1671. tor_snprintf(buf, sizeof(buf), "unverified-%s-consensus", flavor);
  1672. unverified_fname = get_datadir_fname(buf);
  1673. cur = dirserv_get_consensus(flavor);
  1674. if (cur) {
  1675. current_digests = &cur->digests;
  1676. current_valid_after = cur->published;
  1677. }
  1678. }
  1679. if (current_digests &&
  1680. tor_memeq(&c->digests, current_digests, sizeof(c->digests))) {
  1681. /* We already have this one. That's a failure. */
  1682. log_info(LD_DIR, "Got a %s consensus we already have", flavor);
  1683. goto done;
  1684. }
  1685. if (current_valid_after && c->valid_after <= current_valid_after) {
  1686. /* We have a newer one. There's no point in accepting this one,
  1687. * even if it's great. */
  1688. log_info(LD_DIR, "Got a %s consensus at least as old as the one we have",
  1689. flavor);
  1690. goto done;
  1691. }
  1692. /* Make sure it's signed enough. */
  1693. if ((r=networkstatus_check_consensus_signature(c, 1))<0) {
  1694. if (r == -1) {
  1695. /* Okay, so it _might_ be signed enough if we get more certificates. */
  1696. if (!was_waiting_for_certs) {
  1697. log_info(LD_DIR,
  1698. "Not enough certificates to check networkstatus consensus");
  1699. }
  1700. if (!current_valid_after ||
  1701. c->valid_after > current_valid_after) {
  1702. waiting = &consensus_waiting_for_certs[flav];
  1703. networkstatus_vote_free(waiting->consensus);
  1704. tor_free(waiting->body);
  1705. waiting->consensus = c;
  1706. free_consensus = 0;
  1707. waiting->body = tor_strdup(consensus);
  1708. waiting->set_at = now;
  1709. waiting->dl_failed = 0;
  1710. if (!from_cache) {
  1711. write_str_to_file(unverified_fname, consensus, 0);
  1712. }
  1713. if (dl_certs)
  1714. authority_certs_fetch_missing(c, now, source_dir);
  1715. /* This case is not a success or a failure until we get the certs
  1716. * or fail to get the certs. */
  1717. result = 0;
  1718. } else {
  1719. /* Even if we had enough signatures, we'd never use this as the
  1720. * latest consensus. */
  1721. if (was_waiting_for_certs && from_cache)
  1722. if (unlink(unverified_fname) != 0) {
  1723. log_warn(LD_FS,
  1724. "Failed to unlink %s: %s",
  1725. unverified_fname, strerror(errno));
  1726. }
  1727. }
  1728. goto done;
  1729. } else {
  1730. /* This can never be signed enough: Kill it. */
  1731. if (!was_waiting_for_certs) {
  1732. log_warn(LD_DIR, "Not enough good signatures on networkstatus "
  1733. "consensus");
  1734. result = -2;
  1735. }
  1736. if (was_waiting_for_certs && (r < -1) && from_cache) {
  1737. if (unlink(unverified_fname) != 0) {
  1738. log_warn(LD_FS,
  1739. "Failed to unlink %s: %s",
  1740. unverified_fname, strerror(errno));
  1741. }
  1742. }
  1743. goto done;
  1744. }
  1745. }
  1746. if (!from_cache && flav == usable_consensus_flavor())
  1747. control_event_client_status(LOG_NOTICE, "CONSENSUS_ARRIVED");
  1748. if (!checked_protocols_already) {
  1749. handle_missing_protocol_warning(c, options);
  1750. }
  1751. /* Are we missing any certificates at all? */
  1752. if (r != 1 && dl_certs)
  1753. authority_certs_fetch_missing(c, now, source_dir);
  1754. const int is_usable_flavor = flav == usable_consensus_flavor();
  1755. if (is_usable_flavor) {
  1756. notify_networkstatus_changed(networkstatus_get_latest_consensus(), c);
  1757. }
  1758. if (flav == FLAV_NS) {
  1759. if (current_ns_consensus) {
  1760. networkstatus_copy_old_consensus_info(c, current_ns_consensus);
  1761. networkstatus_vote_free(current_ns_consensus);
  1762. /* Defensive programming : we should set current_ns_consensus very soon
  1763. * but we're about to call some stuff in the meantime, and leaving this
  1764. * dangling pointer around has proven to be trouble. */
  1765. current_ns_consensus = NULL;
  1766. }
  1767. current_ns_consensus = c;
  1768. free_consensus = 0; /* avoid free */
  1769. } else if (flav == FLAV_MICRODESC) {
  1770. if (current_md_consensus) {
  1771. networkstatus_copy_old_consensus_info(c, current_md_consensus);
  1772. networkstatus_vote_free(current_md_consensus);
  1773. /* more defensive programming */
  1774. current_md_consensus = NULL;
  1775. }
  1776. current_md_consensus = c;
  1777. free_consensus = 0; /* avoid free */
  1778. }
  1779. waiting = &consensus_waiting_for_certs[flav];
  1780. if (waiting->consensus &&
  1781. waiting->consensus->valid_after <= c->valid_after) {
  1782. networkstatus_vote_free(waiting->consensus);
  1783. waiting->consensus = NULL;
  1784. if (consensus != waiting->body)
  1785. tor_free(waiting->body);
  1786. else
  1787. waiting->body = NULL;
  1788. waiting->set_at = 0;
  1789. waiting->dl_failed = 0;
  1790. if (unlink(unverified_fname) != 0) {
  1791. log_warn(LD_FS,
  1792. "Failed to unlink %s: %s",
  1793. unverified_fname, strerror(errno));
  1794. }
  1795. }
  1796. if (is_usable_flavor) {
  1797. nodelist_set_consensus(c);
  1798. /* XXXXNM Microdescs: needs a non-ns variant. ???? NM*/
  1799. update_consensus_networkstatus_fetch_time(now);
  1800. dirvote_recalculate_timing(options, now);
  1801. routerstatus_list_update_named_server_map();
  1802. /* Update ewma and adjust policy if needed; first cache the old value */
  1803. old_ewma_enabled = cell_ewma_enabled();
  1804. /* Change the cell EWMA settings */
  1805. cell_ewma_set_scale_factor(options, c);
  1806. /* If we just enabled ewma, set the cmux policy on all active channels */
  1807. if (cell_ewma_enabled() && !old_ewma_enabled) {
  1808. channel_set_cmux_policy_everywhere(&ewma_policy);
  1809. } else if (!cell_ewma_enabled() && old_ewma_enabled) {
  1810. /* Turn it off everywhere */
  1811. channel_set_cmux_policy_everywhere(NULL);
  1812. }
  1813. /* XXXX this call might be unnecessary here: can changing the
  1814. * current consensus really alter our view of any OR's rate limits? */
  1815. connection_or_update_token_buckets(get_connection_array(), options);
  1816. circuit_build_times_new_consensus_params(
  1817. get_circuit_build_times_mutable(), c);
  1818. channelpadding_new_consensus_params(c);
  1819. }
  1820. /* Reset the failure count only if this consensus is actually valid. */
  1821. if (c->valid_after <= now && now <= c->valid_until) {
  1822. download_status_reset(&consensus_dl_status[flav]);
  1823. } else {
  1824. if (!from_cache)
  1825. download_status_failed(&consensus_dl_status[flav], 0);
  1826. }
  1827. if (we_want_to_fetch_flavor(options, flav)) {
  1828. dirserv_set_cached_consensus_networkstatus(consensus,
  1829. flavor,
  1830. &c->digests,
  1831. c->digest_sha3_as_signed,
  1832. c->valid_after);
  1833. if (dir_server_mode(get_options())) {
  1834. consdiffmgr_add_consensus(consensus, c);
  1835. }
  1836. }
  1837. if (!from_cache) {
  1838. write_str_to_file(consensus_fname, consensus, 0);
  1839. }
  1840. /** If a consensus appears more than this many seconds before its declared
  1841. * valid-after time, declare that our clock is skewed. */
  1842. #define EARLY_CONSENSUS_NOTICE_SKEW 60
  1843. if (now < c->valid_after - EARLY_CONSENSUS_NOTICE_SKEW) {
  1844. char tbuf[ISO_TIME_LEN+1];
  1845. char dbuf[64];
  1846. long delta = now - c->valid_after;
  1847. format_iso_time(tbuf, c->valid_after);
  1848. format_time_interval(dbuf, sizeof(dbuf), delta);
  1849. log_warn(LD_GENERAL, "Our clock is %s behind the time published in the "
  1850. "consensus network status document (%s UTC). Tor needs an "
  1851. "accurate clock to work correctly. Please check your time and "
  1852. "date settings!", dbuf, tbuf);
  1853. control_event_general_status(LOG_WARN,
  1854. "CLOCK_SKEW MIN_SKEW=%ld SOURCE=CONSENSUS", delta);
  1855. }
  1856. router_dir_info_changed();
  1857. result = 0;
  1858. done:
  1859. if (free_consensus)
  1860. networkstatus_vote_free(c);
  1861. tor_free(consensus_fname);
  1862. tor_free(unverified_fname);
  1863. return result;
  1864. }
  1865. /** Called when we have gotten more certificates: see whether we can
  1866. * now verify a pending consensus.
  1867. *
  1868. * If source_dir is non-NULL, it's the identity digest for a directory that
  1869. * we've just successfully retrieved certificates from, so try it first to
  1870. * fetch any missing certificates.
  1871. */
  1872. void
  1873. networkstatus_note_certs_arrived(const char *source_dir)
  1874. {
  1875. int i;
  1876. for (i=0; i<N_CONSENSUS_FLAVORS; ++i) {
  1877. consensus_waiting_for_certs_t *waiting = &consensus_waiting_for_certs[i];
  1878. if (!waiting->consensus)
  1879. continue;
  1880. if (networkstatus_check_consensus_signature(waiting->consensus, 0)>=0) {
  1881. char *waiting_body = waiting->body;
  1882. if (!networkstatus_set_current_consensus(
  1883. waiting_body,
  1884. networkstatus_get_flavor_name(i),
  1885. NSSET_WAS_WAITING_FOR_CERTS,
  1886. source_dir)) {
  1887. tor_free(waiting_body);
  1888. }
  1889. }
  1890. }
  1891. }
  1892. /** If the network-status list has changed since the last time we called this
  1893. * function, update the status of every routerinfo from the network-status
  1894. * list. If <b>dir_version</b> is 2, it's a v2 networkstatus that changed.
  1895. * If <b>dir_version</b> is 3, it's a v3 consensus that changed.
  1896. */
  1897. void
  1898. routers_update_all_from_networkstatus(time_t now, int dir_version)
  1899. {
  1900. routerlist_t *rl = router_get_routerlist();
  1901. networkstatus_t *consensus = networkstatus_get_reasonably_live_consensus(now,
  1902. FLAV_NS);
  1903. if (!consensus || dir_version < 3) /* nothing more we should do */
  1904. return;
  1905. /* calls router_dir_info_changed() when it's done -- more routers
  1906. * might be up or down now, which might affect whether there's enough
  1907. * directory info. */
  1908. routers_update_status_from_consensus_networkstatus(rl->routers, 0);
  1909. SMARTLIST_FOREACH(rl->routers, routerinfo_t *, ri,
  1910. ri->cache_info.routerlist_index = ri_sl_idx);
  1911. if (rl->old_routers)
  1912. signed_descs_update_status_from_consensus_networkstatus(rl->old_routers);
  1913. if (!have_warned_about_old_version) {
  1914. int is_server = server_mode(get_options());
  1915. version_status_t status;
  1916. const char *recommended = is_server ?
  1917. consensus->server_versions : consensus->client_versions;
  1918. status = tor_version_is_obsolete(VERSION, recommended);
  1919. if (status == VS_RECOMMENDED) {
  1920. log_info(LD_GENERAL, "The directory authorities say my version is ok.");
  1921. } else if (status == VS_EMPTY) {
  1922. log_info(LD_GENERAL,
  1923. "The directory authorities don't recommend any versions.");
  1924. } else if (status == VS_NEW || status == VS_NEW_IN_SERIES) {
  1925. if (!have_warned_about_new_version) {
  1926. log_notice(LD_GENERAL, "This version of Tor (%s) is newer than any "
  1927. "recommended version%s, according to the directory "
  1928. "authorities. Recommended versions are: %s",
  1929. VERSION,
  1930. status == VS_NEW_IN_SERIES ? " in its series" : "",
  1931. recommended);
  1932. have_warned_about_new_version = 1;
  1933. control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
  1934. "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
  1935. VERSION, "NEW", recommended);
  1936. }
  1937. } else {
  1938. log_warn(LD_GENERAL, "Please upgrade! "
  1939. "This version of Tor (%s) is %s, according to the directory "
  1940. "authorities. Recommended versions are: %s",
  1941. VERSION,
  1942. status == VS_OLD ? "obsolete" : "not recommended",
  1943. recommended);
  1944. have_warned_about_old_version = 1;
  1945. control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
  1946. "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
  1947. VERSION, status == VS_OLD ? "OBSOLETE" : "UNRECOMMENDED",
  1948. recommended);
  1949. }
  1950. }
  1951. }
  1952. /** Update our view of the list of named servers from the most recently
  1953. * retrieved networkstatus consensus. */
  1954. static void
  1955. routerstatus_list_update_named_server_map(void)
  1956. {
  1957. networkstatus_t *ns = networkstatus_get_latest_consensus();
  1958. if (!ns)
  1959. return;
  1960. strmap_free(named_server_map, tor_free_);
  1961. named_server_map = strmap_new();
  1962. strmap_free(unnamed_server_map, NULL);
  1963. unnamed_server_map = strmap_new();
  1964. smartlist_t *rslist = ns->routerstatus_list;
  1965. SMARTLIST_FOREACH_BEGIN(rslist, const routerstatus_t *, rs) {
  1966. if (rs->is_named) {
  1967. strmap_set_lc(named_server_map, rs->nickname,
  1968. tor_memdup(rs->identity_digest, DIGEST_LEN));
  1969. }
  1970. if (rs->is_unnamed) {
  1971. strmap_set_lc(unnamed_server_map, rs->nickname, (void*)1);
  1972. }
  1973. } SMARTLIST_FOREACH_END(rs);
  1974. }
  1975. /** Given a list <b>routers</b> of routerinfo_t *, update each status field
  1976. * according to our current consensus networkstatus. May re-order
  1977. * <b>routers</b>. */
  1978. void
  1979. routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
  1980. int reset_failures)
  1981. {
  1982. const or_options_t *options = get_options();
  1983. int authdir = authdir_mode_v3(options);
  1984. networkstatus_t *ns = networkstatus_get_latest_consensus();
  1985. if (!ns || !smartlist_len(ns->routerstatus_list))
  1986. return;
  1987. routers_sort_by_identity(routers);
  1988. SMARTLIST_FOREACH_JOIN(ns->routerstatus_list, routerstatus_t *, rs,
  1989. routers, routerinfo_t *, router,
  1990. tor_memcmp(rs->identity_digest,
  1991. router->cache_info.identity_digest, DIGEST_LEN),
  1992. {
  1993. }) {
  1994. /* Is it the same descriptor, or only the same identity? */
  1995. if (tor_memeq(router->cache_info.signed_descriptor_digest,
  1996. rs->descriptor_digest, DIGEST_LEN)) {
  1997. if (ns->valid_until > router->cache_info.last_listed_as_valid_until)
  1998. router->cache_info.last_listed_as_valid_until = ns->valid_until;
  1999. }
  2000. if (authdir) {
  2001. /* If we _are_ an authority, we should check whether this router
  2002. * is one that will cause us to need a reachability test. */
  2003. routerinfo_t *old_router =
  2004. router_get_mutable_by_digest(router->cache_info.identity_digest);
  2005. if (old_router != router) {
  2006. router->needs_retest_if_added =
  2007. dirserv_should_launch_reachability_test(router, old_router);
  2008. }
  2009. }
  2010. if (reset_failures) {
  2011. download_status_reset(&rs->dl_status);
  2012. }
  2013. } SMARTLIST_FOREACH_JOIN_END(rs, router);
  2014. router_dir_info_changed();
  2015. }
  2016. /** Given a list of signed_descriptor_t, update their fields (mainly, when
  2017. * they were last listed) from the most recent consensus. */
  2018. void
  2019. signed_descs_update_status_from_consensus_networkstatus(smartlist_t *descs)
  2020. {
  2021. networkstatus_t *ns = current_ns_consensus;
  2022. if (!ns)
  2023. return;
  2024. if (!ns->desc_digest_map) {
  2025. char dummy[DIGEST_LEN];
  2026. /* instantiates the digest map. */
  2027. memset(dummy, 0, sizeof(dummy));
  2028. router_get_consensus_status_by_descriptor_digest(ns, dummy);
  2029. }
  2030. SMARTLIST_FOREACH(descs, signed_descriptor_t *, d,
  2031. {
  2032. const routerstatus_t *rs = digestmap_get(ns->desc_digest_map,
  2033. d->signed_descriptor_digest);
  2034. if (rs) {
  2035. if (ns->valid_until > d->last_listed_as_valid_until)
  2036. d->last_listed_as_valid_until = ns->valid_until;
  2037. }
  2038. });
  2039. }
  2040. /** Generate networkstatus lines for a single routerstatus_t object, and
  2041. * return the result in a newly allocated string. Used only by controller
  2042. * interface (for now.) */
  2043. char *
  2044. networkstatus_getinfo_helper_single(const routerstatus_t *rs)
  2045. {
  2046. return routerstatus_format_entry(rs, NULL, NULL, NS_CONTROL_PORT, NULL);
  2047. }
  2048. /** Alloc and return a string describing routerstatuses for the most
  2049. * recent info of each router we know about that is of purpose
  2050. * <b>purpose_string</b>. Return NULL if unrecognized purpose.
  2051. *
  2052. * Right now this function is oriented toward listing bridges (you
  2053. * shouldn't use this for general-purpose routers, since those
  2054. * should be listed from the consensus, not from the routers list). */
  2055. char *
  2056. networkstatus_getinfo_by_purpose(const char *purpose_string, time_t now)
  2057. {
  2058. time_t cutoff = now - ROUTER_MAX_AGE_TO_PUBLISH;
  2059. char *answer;
  2060. routerlist_t *rl = router_get_routerlist();
  2061. smartlist_t *statuses;
  2062. uint8_t purpose = router_purpose_from_string(purpose_string);
  2063. routerstatus_t rs;
  2064. int bridge_auth = authdir_mode_bridge(get_options());
  2065. if (purpose == ROUTER_PURPOSE_UNKNOWN) {
  2066. log_info(LD_DIR, "Unrecognized purpose '%s' when listing router statuses.",
  2067. purpose_string);
  2068. return NULL;
  2069. }
  2070. statuses = smartlist_new();
  2071. SMARTLIST_FOREACH_BEGIN(rl->routers, routerinfo_t *, ri) {
  2072. node_t *node = node_get_mutable_by_id(ri->cache_info.identity_digest);
  2073. if (!node)
  2074. continue;
  2075. if (ri->cache_info.published_on < cutoff)
  2076. continue;
  2077. if (ri->purpose != purpose)
  2078. continue;
  2079. if (bridge_auth && ri->purpose == ROUTER_PURPOSE_BRIDGE)
  2080. dirserv_set_router_is_running(ri, now);
  2081. /* then generate and write out status lines for each of them */
  2082. set_routerstatus_from_routerinfo(&rs, node, ri, now, 0);
  2083. smartlist_add(statuses, networkstatus_getinfo_helper_single(&rs));
  2084. } SMARTLIST_FOREACH_END(ri);
  2085. answer = smartlist_join_strings(statuses, "", 0, NULL);
  2086. SMARTLIST_FOREACH(statuses, char *, cp, tor_free(cp));
  2087. smartlist_free(statuses);
  2088. return answer;
  2089. }
  2090. /** Write out router status entries for all our bridge descriptors. */
  2091. void
  2092. networkstatus_dump_bridge_status_to_file(time_t now)
  2093. {
  2094. char *status = networkstatus_getinfo_by_purpose("bridge", now);
  2095. const or_options_t *options = get_options();
  2096. char *fname = NULL;
  2097. char *thresholds = NULL;
  2098. char *published_thresholds_and_status = NULL;
  2099. char published[ISO_TIME_LEN+1];
  2100. const routerinfo_t *me = router_get_my_routerinfo();
  2101. char fingerprint[FINGERPRINT_LEN+1];
  2102. char *fingerprint_line = NULL;
  2103. if (me && crypto_pk_get_fingerprint(me->identity_pkey,
  2104. fingerprint, 0) >= 0) {
  2105. tor_asprintf(&fingerprint_line, "fingerprint %s\n", fingerprint);
  2106. } else {
  2107. log_warn(LD_BUG, "Error computing fingerprint for bridge status.");
  2108. }
  2109. format_iso_time(published, now);
  2110. dirserv_compute_bridge_flag_thresholds();
  2111. thresholds = dirserv_get_flag_thresholds_line();
  2112. tor_asprintf(&published_thresholds_and_status,
  2113. "published %s\nflag-thresholds %s\n%s%s",
  2114. published, thresholds, fingerprint_line ? fingerprint_line : "",
  2115. status);
  2116. tor_asprintf(&fname, "%s"PATH_SEPARATOR"networkstatus-bridges",
  2117. options->DataDirectory);
  2118. write_str_to_file(fname,published_thresholds_and_status,0);
  2119. tor_free(thresholds);
  2120. tor_free(published_thresholds_and_status);
  2121. tor_free(fname);
  2122. tor_free(status);
  2123. tor_free(fingerprint_line);
  2124. }
  2125. /* DOCDOC get_net_param_from_list */
  2126. static int32_t
  2127. get_net_param_from_list(smartlist_t *net_params, const char *param_name,
  2128. int32_t default_val, int32_t min_val, int32_t max_val)
  2129. {
  2130. int32_t res = default_val;
  2131. size_t name_len = strlen(param_name);
  2132. tor_assert(max_val > min_val);
  2133. tor_assert(min_val <= default_val);
  2134. tor_assert(max_val >= default_val);
  2135. SMARTLIST_FOREACH_BEGIN(net_params, const char *, p) {
  2136. if (!strcmpstart(p, param_name) && p[name_len] == '=') {
  2137. int ok=0;
  2138. long v = tor_parse_long(p+name_len+1, 10, INT32_MIN,
  2139. INT32_MAX, &ok, NULL);
  2140. if (ok) {
  2141. res = (int32_t) v;
  2142. break;
  2143. }
  2144. }
  2145. } SMARTLIST_FOREACH_END(p);
  2146. if (res < min_val) {
  2147. log_warn(LD_DIR, "Consensus parameter %s is too small. Got %d, raising to "
  2148. "%d.", param_name, res, min_val);
  2149. res = min_val;
  2150. } else if (res > max_val) {
  2151. log_warn(LD_DIR, "Consensus parameter %s is too large. Got %d, capping to "
  2152. "%d.", param_name, res, max_val);
  2153. res = max_val;
  2154. }
  2155. return res;
  2156. }
  2157. /** Return the value of a integer parameter from the networkstatus <b>ns</b>
  2158. * whose name is <b>param_name</b>. If <b>ns</b> is NULL, try loading the
  2159. * latest consensus ourselves. Return <b>default_val</b> if no latest
  2160. * consensus, or if it has no parameter called <b>param_name</b>.
  2161. * Make sure the value parsed from the consensus is at least
  2162. * <b>min_val</b> and at most <b>max_val</b> and raise/cap the parsed value
  2163. * if necessary. */
  2164. MOCK_IMPL(int32_t,
  2165. networkstatus_get_param, (const networkstatus_t *ns, const char *param_name,
  2166. int32_t default_val, int32_t min_val, int32_t max_val))
  2167. {
  2168. if (!ns) /* if they pass in null, go find it ourselves */
  2169. ns = networkstatus_get_latest_consensus();
  2170. if (!ns || !ns->net_params)
  2171. return default_val;
  2172. return get_net_param_from_list(ns->net_params, param_name,
  2173. default_val, min_val, max_val);
  2174. }
  2175. /**
  2176. * As networkstatus_get_param(), but check torrc_value before checking the
  2177. * consensus. If torrc_value is in-range, then return it instead of the
  2178. * value from the consensus.
  2179. */
  2180. int32_t
  2181. networkstatus_get_overridable_param(const networkstatus_t *ns,
  2182. int32_t torrc_value,
  2183. const char *param_name,
  2184. int32_t default_val,
  2185. int32_t min_val, int32_t max_val)
  2186. {
  2187. if (torrc_value >= min_val && torrc_value <= max_val)
  2188. return torrc_value;
  2189. else
  2190. return networkstatus_get_param(
  2191. ns, param_name, default_val, min_val, max_val);
  2192. }
  2193. /**
  2194. * Retrieve the consensus parameter that governs the
  2195. * fixed-point precision of our network balancing 'bandwidth-weights'
  2196. * (which are themselves integer consensus values). We divide them
  2197. * by this value and ensure they never exceed this value.
  2198. */
  2199. int
  2200. networkstatus_get_weight_scale_param(networkstatus_t *ns)
  2201. {
  2202. return networkstatus_get_param(ns, "bwweightscale",
  2203. BW_WEIGHT_SCALE,
  2204. BW_MIN_WEIGHT_SCALE,
  2205. BW_MAX_WEIGHT_SCALE);
  2206. }
  2207. /** Return the value of a integer bw weight parameter from the networkstatus
  2208. * <b>ns</b> whose name is <b>weight_name</b>. If <b>ns</b> is NULL, try
  2209. * loading the latest consensus ourselves. Return <b>default_val</b> if no
  2210. * latest consensus, or if it has no parameter called <b>weight_name</b>. */
  2211. int32_t
  2212. networkstatus_get_bw_weight(networkstatus_t *ns, const char *weight_name,
  2213. int32_t default_val)
  2214. {
  2215. int32_t param;
  2216. int max;
  2217. if (!ns) /* if they pass in null, go find it ourselves */
  2218. ns = networkstatus_get_latest_consensus();
  2219. if (!ns || !ns->weight_params)
  2220. return default_val;
  2221. max = networkstatus_get_weight_scale_param(ns);
  2222. param = get_net_param_from_list(ns->weight_params, weight_name,
  2223. default_val, -1,
  2224. BW_MAX_WEIGHT_SCALE);
  2225. if (param > max) {
  2226. log_warn(LD_DIR, "Value of consensus weight %s was too large, capping "
  2227. "to %d", weight_name, max);
  2228. param = max;
  2229. }
  2230. return param;
  2231. }
  2232. /** Return the name of the consensus flavor <b>flav</b> as used to identify
  2233. * the flavor in directory documents. */
  2234. const char *
  2235. networkstatus_get_flavor_name(consensus_flavor_t flav)
  2236. {
  2237. switch (flav) {
  2238. case FLAV_NS:
  2239. return "ns";
  2240. case FLAV_MICRODESC:
  2241. return "microdesc";
  2242. default:
  2243. tor_fragile_assert();
  2244. return "??";
  2245. }
  2246. }
  2247. /** Return the consensus_flavor_t value for the flavor called <b>flavname</b>,
  2248. * or -1 if the flavor is not recognized. */
  2249. int
  2250. networkstatus_parse_flavor_name(const char *flavname)
  2251. {
  2252. if (!strcmp(flavname, "ns"))
  2253. return FLAV_NS;
  2254. else if (!strcmp(flavname, "microdesc"))
  2255. return FLAV_MICRODESC;
  2256. else
  2257. return -1;
  2258. }
  2259. /** Return 0 if this routerstatus is obsolete, too new, isn't
  2260. * running, or otherwise not a descriptor that we would make any
  2261. * use of even if we had it. Else return 1. */
  2262. int
  2263. client_would_use_router(const routerstatus_t *rs, time_t now)
  2264. {
  2265. if (!rs->is_flagged_running) {
  2266. /* If we had this router descriptor, we wouldn't even bother using it.
  2267. * (Fetching and storing depends on by we_want_to_fetch_flavor().) */
  2268. return 0;
  2269. }
  2270. if (rs->published_on + OLD_ROUTER_DESC_MAX_AGE < now) {
  2271. /* We'd drop it immediately for being too old. */
  2272. return 0;
  2273. }
  2274. if (!routerstatus_version_supports_extend2_cells(rs, 1)) {
  2275. /* We'd ignore it because it doesn't support EXTEND2 cells.
  2276. * If we don't know the version, download the descriptor so we can
  2277. * check if it supports EXTEND2 cells and ntor. */
  2278. return 0;
  2279. }
  2280. return 1;
  2281. }
  2282. /** If <b>question</b> is a string beginning with "ns/" in a format the
  2283. * control interface expects for a GETINFO question, set *<b>answer</b> to a
  2284. * newly-allocated string containing networkstatus lines for the appropriate
  2285. * ORs. Return 0 on success, -1 on unrecognized question format. */
  2286. int
  2287. getinfo_helper_networkstatus(control_connection_t *conn,
  2288. const char *question, char **answer,
  2289. const char **errmsg)
  2290. {
  2291. const routerstatus_t *status;
  2292. (void) conn;
  2293. if (!networkstatus_get_latest_consensus()) {
  2294. *answer = tor_strdup("");
  2295. return 0;
  2296. }
  2297. if (!strcmp(question, "ns/all")) {
  2298. smartlist_t *statuses = smartlist_new();
  2299. SMARTLIST_FOREACH(networkstatus_get_latest_consensus()->routerstatus_list,
  2300. const routerstatus_t *, rs,
  2301. {
  2302. smartlist_add(statuses, networkstatus_getinfo_helper_single(rs));
  2303. });
  2304. *answer = smartlist_join_strings(statuses, "", 0, NULL);
  2305. SMARTLIST_FOREACH(statuses, char *, cp, tor_free(cp));
  2306. smartlist_free(statuses);
  2307. return 0;
  2308. } else if (!strcmpstart(question, "ns/id/")) {
  2309. char d[DIGEST_LEN];
  2310. const char *q = question + 6;
  2311. if (*q == '$')
  2312. ++q;
  2313. if (base16_decode(d, DIGEST_LEN, q, strlen(q)) != DIGEST_LEN) {
  2314. *errmsg = "Data not decodeable as hex";
  2315. return -1;
  2316. }
  2317. status = router_get_consensus_status_by_id(d);
  2318. } else if (!strcmpstart(question, "ns/name/")) {
  2319. status = router_get_consensus_status_by_nickname(question+8, 0);
  2320. } else if (!strcmpstart(question, "ns/purpose/")) {
  2321. *answer = networkstatus_getinfo_by_purpose(question+11, time(NULL));
  2322. return *answer ? 0 : -1;
  2323. } else if (!strcmp(question, "consensus/packages")) {
  2324. const networkstatus_t *ns = networkstatus_get_latest_consensus();
  2325. if (ns && ns->package_lines)
  2326. *answer = smartlist_join_strings(ns->package_lines, "\n", 0, NULL);
  2327. else
  2328. *errmsg = "No consensus available";
  2329. return *answer ? 0 : -1;
  2330. } else if (!strcmp(question, "consensus/valid-after") ||
  2331. !strcmp(question, "consensus/fresh-until") ||
  2332. !strcmp(question, "consensus/valid-until")) {
  2333. const networkstatus_t *ns = networkstatus_get_latest_consensus();
  2334. if (ns) {
  2335. time_t t;
  2336. if (!strcmp(question, "consensus/valid-after"))
  2337. t = ns->valid_after;
  2338. else if (!strcmp(question, "consensus/fresh-until"))
  2339. t = ns->fresh_until;
  2340. else
  2341. t = ns->valid_until;
  2342. char tbuf[ISO_TIME_LEN+1];
  2343. format_iso_time(tbuf, t);
  2344. *answer = tor_strdup(tbuf);
  2345. } else {
  2346. *errmsg = "No consensus available";
  2347. }
  2348. return *answer ? 0 : -1;
  2349. } else {
  2350. return 0;
  2351. }
  2352. if (status)
  2353. *answer = networkstatus_getinfo_helper_single(status);
  2354. return 0;
  2355. }
  2356. /** Check whether the networkstatus <b>ns</b> lists any protocol
  2357. * versions as "required" or "recommended" that we do not support. If
  2358. * so, set *<b>warning_out</b> to a newly allocated string describing
  2359. * the problem.
  2360. *
  2361. * Return 1 if we should exit, 0 if we should not. */
  2362. int
  2363. networkstatus_check_required_protocols(const networkstatus_t *ns,
  2364. int client_mode,
  2365. char **warning_out)
  2366. {
  2367. const char *func = client_mode ? "client" : "relay";
  2368. const char *required, *recommended;
  2369. char *missing = NULL;
  2370. tor_assert(warning_out);
  2371. if (client_mode) {
  2372. required = ns->required_client_protocols;
  2373. recommended = ns->recommended_client_protocols;
  2374. } else {
  2375. required = ns->required_relay_protocols;
  2376. recommended = ns->recommended_relay_protocols;
  2377. }
  2378. if (!protover_all_supported(required, &missing)) {
  2379. tor_asprintf(warning_out, "At least one protocol listed as required in "
  2380. "the consensus is not supported by this version of Tor. "
  2381. "You should upgrade. This version of Tor will not work as a "
  2382. "%s on the Tor network. The missing protocols are: %s",
  2383. func, missing);
  2384. tor_free(missing);
  2385. return 1;
  2386. }
  2387. if (! protover_all_supported(recommended, &missing)) {
  2388. tor_asprintf(warning_out, "At least one protocol listed as recommended in "
  2389. "the consensus is not supported by this version of Tor. "
  2390. "You should upgrade. This version of Tor will eventually "
  2391. "stop working as a %s on the Tor network. The missing "
  2392. "protocols are: %s",
  2393. func, missing);
  2394. tor_free(missing);
  2395. }
  2396. tor_assert_nonfatal(missing == NULL);
  2397. return 0;
  2398. }
  2399. /** Free all storage held locally in this module. */
  2400. void
  2401. networkstatus_free_all(void)
  2402. {
  2403. int i;
  2404. networkstatus_vote_free(current_ns_consensus);
  2405. networkstatus_vote_free(current_md_consensus);
  2406. current_md_consensus = current_ns_consensus = NULL;
  2407. for (i=0; i < N_CONSENSUS_FLAVORS; ++i) {
  2408. consensus_waiting_for_certs_t *waiting = &consensus_waiting_for_certs[i];
  2409. if (waiting->consensus) {
  2410. networkstatus_vote_free(waiting->consensus);
  2411. waiting->consensus = NULL;
  2412. }
  2413. tor_free(waiting->body);
  2414. }
  2415. strmap_free(named_server_map, tor_free_);
  2416. strmap_free(unnamed_server_map, NULL);
  2417. }