nodelist.c 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  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 nodelist.c
  8. *
  9. * \brief Structures and functions for tracking what we know about the routers
  10. * on the Tor network, and correlating information from networkstatus,
  11. * routerinfo, and microdescs.
  12. *
  13. * The key structure here is node_t: that's the canonical way to refer
  14. * to a Tor relay that we might want to build a circuit through. Every
  15. * node_t has either a routerinfo_t, or a routerstatus_t from the current
  16. * networkstatus consensus. If it has a routerstatus_t, it will also
  17. * need to have a microdesc_t before you can use it for circuits.
  18. *
  19. * The nodelist_t is a global singleton that maps identities to node_t
  20. * objects. Access them with the node_get_*() functions. The nodelist_t
  21. * is maintained by calls throughout the codebase
  22. *
  23. * Generally, other code should not have to reach inside a node_t to
  24. * see what information it has. Instead, you should call one of the
  25. * many accessor functions that works on a generic node_t. If there
  26. * isn't one that does what you need, it's better to make such a function,
  27. * and then use it.
  28. *
  29. * For historical reasons, some of the functions that select a node_t
  30. * from the list of all usable node_t objects are in the routerlist.c
  31. * module, since they originally selected a routerinfo_t. (TODO: They
  32. * should move!)
  33. *
  34. * (TODO: Perhaps someday we should abstract the remaining ways of
  35. * talking about a relay to also be node_t instances. Those would be
  36. * routerstatus_t as used for directory requests, and dir_server_t as
  37. * used for authorities and fallback directories.)
  38. */
  39. #include "or.h"
  40. #include "address.h"
  41. #include "config.h"
  42. #include "control.h"
  43. #include "dirserv.h"
  44. #include "entrynodes.h"
  45. #include "geoip.h"
  46. #include "hs_common.h"
  47. #include "main.h"
  48. #include "microdesc.h"
  49. #include "networkstatus.h"
  50. #include "nodelist.h"
  51. #include "policies.h"
  52. #include "protover.h"
  53. #include "rendservice.h"
  54. #include "router.h"
  55. #include "routerlist.h"
  56. #include "routerparse.h"
  57. #include "routerset.h"
  58. #include "torcert.h"
  59. #include <string.h>
  60. static void nodelist_drop_node(node_t *node, int remove_from_ht);
  61. static void node_free(node_t *node);
  62. /** count_usable_descriptors counts descriptors with these flag(s)
  63. */
  64. typedef enum {
  65. /* All descriptors regardless of flags */
  66. USABLE_DESCRIPTOR_ALL = 0,
  67. /* Only descriptors with the Exit flag */
  68. USABLE_DESCRIPTOR_EXIT_ONLY = 1
  69. } usable_descriptor_t;
  70. static void count_usable_descriptors(int *num_present,
  71. int *num_usable,
  72. smartlist_t *descs_out,
  73. const networkstatus_t *consensus,
  74. time_t now,
  75. routerset_t *in_set,
  76. usable_descriptor_t exit_only);
  77. static void update_router_have_minimum_dir_info(void);
  78. static double get_frac_paths_needed_for_circs(const or_options_t *options,
  79. const networkstatus_t *ns);
  80. /** A nodelist_t holds a node_t object for every router we're "willing to use
  81. * for something". Specifically, it should hold a node_t for every node that
  82. * is currently in the routerlist, or currently in the consensus we're using.
  83. */
  84. typedef struct nodelist_t {
  85. /* A list of all the nodes. */
  86. smartlist_t *nodes;
  87. /* Hash table to map from node ID digest to node. */
  88. HT_HEAD(nodelist_map, node_t) nodes_by_id;
  89. /* Hash table to map from node Ed25519 ID to node.
  90. *
  91. * Whenever a node's routerinfo or microdescriptor is about to change,
  92. * you should remove it from this map with node_remove_from_ed25519_map().
  93. * Whenever a node's routerinfo or microdescriptor has just chaned,
  94. * you should add it to this map with node_add_to_ed25519_map().
  95. */
  96. HT_HEAD(nodelist_ed_map, node_t) nodes_by_ed_id;
  97. } nodelist_t;
  98. static inline unsigned int
  99. node_id_hash(const node_t *node)
  100. {
  101. return (unsigned) siphash24g(node->identity, DIGEST_LEN);
  102. }
  103. static inline unsigned int
  104. node_id_eq(const node_t *node1, const node_t *node2)
  105. {
  106. return tor_memeq(node1->identity, node2->identity, DIGEST_LEN);
  107. }
  108. HT_PROTOTYPE(nodelist_map, node_t, ht_ent, node_id_hash, node_id_eq)
  109. HT_GENERATE2(nodelist_map, node_t, ht_ent, node_id_hash, node_id_eq,
  110. 0.6, tor_reallocarray_, tor_free_)
  111. static inline unsigned int
  112. node_ed_id_hash(const node_t *node)
  113. {
  114. return (unsigned) siphash24g(node->ed25519_id.pubkey, ED25519_PUBKEY_LEN);
  115. }
  116. static inline unsigned int
  117. node_ed_id_eq(const node_t *node1, const node_t *node2)
  118. {
  119. return ed25519_pubkey_eq(&node1->ed25519_id, &node2->ed25519_id);
  120. }
  121. HT_PROTOTYPE(nodelist_ed_map, node_t, ed_ht_ent, node_ed_id_hash,
  122. node_ed_id_eq)
  123. HT_GENERATE2(nodelist_ed_map, node_t, ed_ht_ent, node_ed_id_hash,
  124. node_ed_id_eq, 0.6, tor_reallocarray_, tor_free_)
  125. /** The global nodelist. */
  126. static nodelist_t *the_nodelist=NULL;
  127. /** Create an empty nodelist if we haven't done so already. */
  128. static void
  129. init_nodelist(void)
  130. {
  131. if (PREDICT_UNLIKELY(the_nodelist == NULL)) {
  132. the_nodelist = tor_malloc_zero(sizeof(nodelist_t));
  133. HT_INIT(nodelist_map, &the_nodelist->nodes_by_id);
  134. HT_INIT(nodelist_ed_map, &the_nodelist->nodes_by_ed_id);
  135. the_nodelist->nodes = smartlist_new();
  136. }
  137. }
  138. /** As node_get_by_id, but returns a non-const pointer */
  139. node_t *
  140. node_get_mutable_by_id(const char *identity_digest)
  141. {
  142. node_t search, *node;
  143. if (PREDICT_UNLIKELY(the_nodelist == NULL))
  144. return NULL;
  145. memcpy(&search.identity, identity_digest, DIGEST_LEN);
  146. node = HT_FIND(nodelist_map, &the_nodelist->nodes_by_id, &search);
  147. return node;
  148. }
  149. /** As node_get_by_ed25519_id, but returns a non-const pointer */
  150. node_t *
  151. node_get_mutable_by_ed25519_id(const ed25519_public_key_t *ed_id)
  152. {
  153. node_t search, *node;
  154. if (PREDICT_UNLIKELY(the_nodelist == NULL))
  155. return NULL;
  156. if (BUG(ed_id == NULL) || BUG(ed25519_public_key_is_zero(ed_id)))
  157. return NULL;
  158. memcpy(&search.ed25519_id, ed_id, sizeof(search.ed25519_id));
  159. node = HT_FIND(nodelist_ed_map, &the_nodelist->nodes_by_ed_id, &search);
  160. return node;
  161. }
  162. /** Return the node_t whose identity is <b>identity_digest</b>, or NULL
  163. * if no such node exists. */
  164. MOCK_IMPL(const node_t *,
  165. node_get_by_id,(const char *identity_digest))
  166. {
  167. return node_get_mutable_by_id(identity_digest);
  168. }
  169. /** Return the node_t whose ed25519 identity is <b>ed_id</b>, or NULL
  170. * if no such node exists. */
  171. MOCK_IMPL(const node_t *,
  172. node_get_by_ed25519_id,(const ed25519_public_key_t *ed_id))
  173. {
  174. return node_get_mutable_by_ed25519_id(ed_id);
  175. }
  176. /** Internal: return the node_t whose identity_digest is
  177. * <b>identity_digest</b>. If none exists, create a new one, add it to the
  178. * nodelist, and return it.
  179. *
  180. * Requires that the nodelist be initialized.
  181. */
  182. static node_t *
  183. node_get_or_create(const char *identity_digest)
  184. {
  185. node_t *node;
  186. if ((node = node_get_mutable_by_id(identity_digest)))
  187. return node;
  188. node = tor_malloc_zero(sizeof(node_t));
  189. memcpy(node->identity, identity_digest, DIGEST_LEN);
  190. HT_INSERT(nodelist_map, &the_nodelist->nodes_by_id, node);
  191. smartlist_add(the_nodelist->nodes, node);
  192. node->nodelist_idx = smartlist_len(the_nodelist->nodes) - 1;
  193. node->hsdir_index = tor_malloc_zero(sizeof(hsdir_index_t));
  194. node->country = -1;
  195. return node;
  196. }
  197. /** Remove <b>node</b> from the ed25519 map (if it present), and
  198. * set its ed25519_id field to zero. */
  199. static int
  200. node_remove_from_ed25519_map(node_t *node)
  201. {
  202. tor_assert(the_nodelist);
  203. tor_assert(node);
  204. if (ed25519_public_key_is_zero(&node->ed25519_id)) {
  205. return 0;
  206. }
  207. int rv = 0;
  208. node_t *search =
  209. HT_FIND(nodelist_ed_map, &the_nodelist->nodes_by_ed_id, node);
  210. if (BUG(search != node)) {
  211. goto clear_and_return;
  212. }
  213. search = HT_REMOVE(nodelist_ed_map, &the_nodelist->nodes_by_ed_id, node);
  214. tor_assert(search == node);
  215. rv = 1;
  216. clear_and_return:
  217. memset(&node->ed25519_id, 0, sizeof(node->ed25519_id));
  218. return rv;
  219. }
  220. /** If <b>node</b> has an ed25519 id, and it is not already in the ed25519 id
  221. * map, set its ed25519_id field, and add it to the ed25519 map.
  222. */
  223. static int
  224. node_add_to_ed25519_map(node_t *node)
  225. {
  226. tor_assert(the_nodelist);
  227. tor_assert(node);
  228. if (! ed25519_public_key_is_zero(&node->ed25519_id)) {
  229. return 0;
  230. }
  231. const ed25519_public_key_t *key = node_get_ed25519_id(node);
  232. if (!key) {
  233. return 0;
  234. }
  235. node_t *old;
  236. memcpy(&node->ed25519_id, key, sizeof(node->ed25519_id));
  237. old = HT_FIND(nodelist_ed_map, &the_nodelist->nodes_by_ed_id, node);
  238. if (BUG(old)) {
  239. /* XXXX order matters here, and this may mean that authorities aren't
  240. * pinning. */
  241. if (old != node)
  242. memset(&node->ed25519_id, 0, sizeof(node->ed25519_id));
  243. return 0;
  244. }
  245. HT_INSERT(nodelist_ed_map, &the_nodelist->nodes_by_ed_id, node);
  246. return 1;
  247. }
  248. /* For a given <b>node</b> for the consensus <b>ns</b>, set the hsdir index
  249. * for the node, both current and next if possible. This can only fails if the
  250. * node_t ed25519 identity key can't be found which would be a bug. */
  251. static void
  252. node_set_hsdir_index(node_t *node, const networkstatus_t *ns)
  253. {
  254. time_t now = approx_time();
  255. const ed25519_public_key_t *node_identity_pk;
  256. uint8_t *next_hsdir_index_srv = NULL, *current_hsdir_index_srv = NULL;
  257. uint64_t next_time_period_num, current_time_period_num;
  258. tor_assert(node);
  259. tor_assert(ns);
  260. if (!networkstatus_is_live(ns, now)) {
  261. log_info(LD_GENERAL, "Not setting hsdir index with a non-live consensus.");
  262. goto done;
  263. }
  264. node_identity_pk = node_get_ed25519_id(node);
  265. if (node_identity_pk == NULL) {
  266. log_debug(LD_GENERAL, "ed25519 identity public key not found when "
  267. "trying to build the hsdir indexes for node %s",
  268. node_describe(node));
  269. goto done;
  270. }
  271. /* Get the current and next time period number, we might use them both. */
  272. current_time_period_num = hs_get_time_period_num(now);
  273. next_time_period_num = hs_get_next_time_period_num(now);
  274. if (hs_overlap_mode_is_active(ns, now)) {
  275. /* We are in overlap mode, this means that our consensus has just cycled
  276. * from current SRV to previous SRV so for the _next_ upcoming time
  277. * period, we have to use the current SRV and use the previous SRV for the
  278. * current time period. If the current or previous SRV can't be found, the
  279. * disaster one is returned. */
  280. next_hsdir_index_srv = hs_get_current_srv(next_time_period_num, ns);
  281. /* The following can be confusing so again, in overlap mode, we use our
  282. * previous SRV for our _current_ hsdir index. */
  283. current_hsdir_index_srv = hs_get_previous_srv(current_time_period_num, ns);
  284. } else {
  285. /* If NOT in overlap mode, we only need to compute the current hsdir index
  286. * for the ongoing time period and thus the current SRV. If it can't be
  287. * found, the disaster one is returned. */
  288. current_hsdir_index_srv = hs_get_current_srv(current_time_period_num, ns);
  289. }
  290. /* Build the current hsdir index. */
  291. hs_build_hsdir_index(node_identity_pk, current_hsdir_index_srv,
  292. current_time_period_num, node->hsdir_index->current);
  293. if (next_hsdir_index_srv) {
  294. /* Build the next hsdir index if we have a next SRV that we can use. */
  295. hs_build_hsdir_index(node_identity_pk, next_hsdir_index_srv,
  296. next_time_period_num, node->hsdir_index->next);
  297. } else {
  298. memset(node->hsdir_index->next, 0, sizeof(node->hsdir_index->next));
  299. }
  300. done:
  301. tor_free(current_hsdir_index_srv);
  302. tor_free(next_hsdir_index_srv);
  303. return;
  304. }
  305. /** Called when a node's address changes. */
  306. static void
  307. node_addrs_changed(node_t *node)
  308. {
  309. node->last_reachable = node->last_reachable6 = 0;
  310. node->country = -1;
  311. }
  312. /** Add <b>ri</b> to an appropriate node in the nodelist. If we replace an
  313. * old routerinfo, and <b>ri_old_out</b> is not NULL, set *<b>ri_old_out</b>
  314. * to the previous routerinfo.
  315. */
  316. node_t *
  317. nodelist_set_routerinfo(routerinfo_t *ri, routerinfo_t **ri_old_out)
  318. {
  319. node_t *node;
  320. const char *id_digest;
  321. int had_router = 0;
  322. tor_assert(ri);
  323. init_nodelist();
  324. id_digest = ri->cache_info.identity_digest;
  325. node = node_get_or_create(id_digest);
  326. node_remove_from_ed25519_map(node);
  327. if (node->ri) {
  328. if (!routers_have_same_or_addrs(node->ri, ri)) {
  329. node_addrs_changed(node);
  330. }
  331. had_router = 1;
  332. if (ri_old_out)
  333. *ri_old_out = node->ri;
  334. } else {
  335. if (ri_old_out)
  336. *ri_old_out = NULL;
  337. }
  338. node->ri = ri;
  339. node_add_to_ed25519_map(node);
  340. if (node->country == -1)
  341. node_set_country(node);
  342. if (authdir_mode(get_options()) && !had_router) {
  343. const char *discard=NULL;
  344. uint32_t status = dirserv_router_get_status(ri, &discard, LOG_INFO);
  345. dirserv_set_node_flags_from_authoritative_status(node, status);
  346. }
  347. /* Setting the HSDir index requires the ed25519 identity key which can
  348. * only be found either in the ri or md. This is why this is called here.
  349. * Only nodes supporting HSDir=2 protocol version needs this index. */
  350. if (node->rs && node->rs->supports_v3_hsdir) {
  351. node_set_hsdir_index(node,
  352. networkstatus_get_latest_consensus());
  353. }
  354. return node;
  355. }
  356. /** Set the appropriate node_t to use <b>md</b> as its microdescriptor.
  357. *
  358. * Called when a new microdesc has arrived and the usable consensus flavor
  359. * is "microdesc".
  360. **/
  361. node_t *
  362. nodelist_add_microdesc(microdesc_t *md)
  363. {
  364. networkstatus_t *ns =
  365. networkstatus_get_latest_consensus_by_flavor(FLAV_MICRODESC);
  366. const routerstatus_t *rs;
  367. node_t *node;
  368. if (ns == NULL)
  369. return NULL;
  370. init_nodelist();
  371. /* Microdescriptors don't carry an identity digest, so we need to figure
  372. * it out by looking up the routerstatus. */
  373. rs = router_get_consensus_status_by_descriptor_digest(ns, md->digest);
  374. if (rs == NULL)
  375. return NULL;
  376. node = node_get_mutable_by_id(rs->identity_digest);
  377. if (node) {
  378. node_remove_from_ed25519_map(node);
  379. if (node->md)
  380. node->md->held_by_nodes--;
  381. node->md = md;
  382. md->held_by_nodes++;
  383. /* Setting the HSDir index requires the ed25519 identity key which can
  384. * only be found either in the ri or md. This is why this is called here.
  385. * Only nodes supporting HSDir=2 protocol version needs this index. */
  386. if (rs->supports_v3_hsdir) {
  387. node_set_hsdir_index(node, ns);
  388. }
  389. node_add_to_ed25519_map(node);
  390. }
  391. return node;
  392. }
  393. /** Tell the nodelist that the current usable consensus is <b>ns</b>.
  394. * This makes the nodelist change all of the routerstatus entries for
  395. * the nodes, drop nodes that no longer have enough info to get used,
  396. * and grab microdescriptors into nodes as appropriate.
  397. */
  398. void
  399. nodelist_set_consensus(networkstatus_t *ns)
  400. {
  401. const or_options_t *options = get_options();
  402. int authdir = authdir_mode_v3(options);
  403. init_nodelist();
  404. if (ns->flavor == FLAV_MICRODESC)
  405. (void) get_microdesc_cache(); /* Make sure it exists first. */
  406. SMARTLIST_FOREACH(the_nodelist->nodes, node_t *, node,
  407. node->rs = NULL);
  408. SMARTLIST_FOREACH_BEGIN(ns->routerstatus_list, routerstatus_t *, rs) {
  409. node_t *node = node_get_or_create(rs->identity_digest);
  410. node->rs = rs;
  411. if (ns->flavor == FLAV_MICRODESC) {
  412. if (node->md == NULL ||
  413. tor_memneq(node->md->digest,rs->descriptor_digest,DIGEST256_LEN)) {
  414. node_remove_from_ed25519_map(node);
  415. if (node->md)
  416. node->md->held_by_nodes--;
  417. node->md = microdesc_cache_lookup_by_digest256(NULL,
  418. rs->descriptor_digest);
  419. if (node->md)
  420. node->md->held_by_nodes++;
  421. node_add_to_ed25519_map(node);
  422. }
  423. }
  424. if (rs->supports_v3_hsdir) {
  425. node_set_hsdir_index(node, ns);
  426. }
  427. node_set_country(node);
  428. /* If we're not an authdir, believe others. */
  429. if (!authdir) {
  430. node->is_valid = rs->is_valid;
  431. node->is_running = rs->is_flagged_running;
  432. node->is_fast = rs->is_fast;
  433. node->is_stable = rs->is_stable;
  434. node->is_possible_guard = rs->is_possible_guard;
  435. node->is_exit = rs->is_exit;
  436. node->is_bad_exit = rs->is_bad_exit;
  437. node->is_hs_dir = rs->is_hs_dir;
  438. node->ipv6_preferred = 0;
  439. if (fascist_firewall_prefer_ipv6_orport(options) &&
  440. (tor_addr_is_null(&rs->ipv6_addr) == 0 ||
  441. (node->md && tor_addr_is_null(&node->md->ipv6_addr) == 0)))
  442. node->ipv6_preferred = 1;
  443. }
  444. } SMARTLIST_FOREACH_END(rs);
  445. nodelist_purge();
  446. if (! authdir) {
  447. SMARTLIST_FOREACH_BEGIN(the_nodelist->nodes, node_t *, node) {
  448. /* We have no routerstatus for this router. Clear flags so we can skip
  449. * it, maybe.*/
  450. if (!node->rs) {
  451. tor_assert(node->ri); /* if it had only an md, or nothing, purge
  452. * would have removed it. */
  453. if (node->ri->purpose == ROUTER_PURPOSE_GENERAL) {
  454. /* Clear all flags. */
  455. node->is_valid = node->is_running = node->is_hs_dir =
  456. node->is_fast = node->is_stable =
  457. node->is_possible_guard = node->is_exit =
  458. node->is_bad_exit = node->ipv6_preferred = 0;
  459. }
  460. }
  461. } SMARTLIST_FOREACH_END(node);
  462. }
  463. }
  464. /** Helper: return true iff a node has a usable amount of information*/
  465. static inline int
  466. node_is_usable(const node_t *node)
  467. {
  468. return (node->rs) || (node->ri);
  469. }
  470. /** Tell the nodelist that <b>md</b> is no longer a microdescriptor for the
  471. * node with <b>identity_digest</b>. */
  472. void
  473. nodelist_remove_microdesc(const char *identity_digest, microdesc_t *md)
  474. {
  475. node_t *node = node_get_mutable_by_id(identity_digest);
  476. if (node && node->md == md) {
  477. node->md = NULL;
  478. md->held_by_nodes--;
  479. if (! node_get_ed25519_id(node)) {
  480. node_remove_from_ed25519_map(node);
  481. }
  482. }
  483. }
  484. /** Tell the nodelist that <b>ri</b> is no longer in the routerlist. */
  485. void
  486. nodelist_remove_routerinfo(routerinfo_t *ri)
  487. {
  488. node_t *node = node_get_mutable_by_id(ri->cache_info.identity_digest);
  489. if (node && node->ri == ri) {
  490. node->ri = NULL;
  491. if (! node_is_usable(node)) {
  492. nodelist_drop_node(node, 1);
  493. node_free(node);
  494. }
  495. }
  496. }
  497. /** Remove <b>node</b> from the nodelist. (Asserts that it was there to begin
  498. * with.) */
  499. static void
  500. nodelist_drop_node(node_t *node, int remove_from_ht)
  501. {
  502. node_t *tmp;
  503. int idx;
  504. if (remove_from_ht) {
  505. tmp = HT_REMOVE(nodelist_map, &the_nodelist->nodes_by_id, node);
  506. tor_assert(tmp == node);
  507. }
  508. node_remove_from_ed25519_map(node);
  509. idx = node->nodelist_idx;
  510. tor_assert(idx >= 0);
  511. tor_assert(node == smartlist_get(the_nodelist->nodes, idx));
  512. smartlist_del(the_nodelist->nodes, idx);
  513. if (idx < smartlist_len(the_nodelist->nodes)) {
  514. tmp = smartlist_get(the_nodelist->nodes, idx);
  515. tmp->nodelist_idx = idx;
  516. }
  517. node->nodelist_idx = -1;
  518. }
  519. /** Return a newly allocated smartlist of the nodes that have <b>md</b> as
  520. * their microdescriptor. */
  521. smartlist_t *
  522. nodelist_find_nodes_with_microdesc(const microdesc_t *md)
  523. {
  524. smartlist_t *result = smartlist_new();
  525. if (the_nodelist == NULL)
  526. return result;
  527. SMARTLIST_FOREACH_BEGIN(the_nodelist->nodes, node_t *, node) {
  528. if (node->md == md) {
  529. smartlist_add(result, node);
  530. }
  531. } SMARTLIST_FOREACH_END(node);
  532. return result;
  533. }
  534. /** Release storage held by <b>node</b> */
  535. static void
  536. node_free(node_t *node)
  537. {
  538. if (!node)
  539. return;
  540. if (node->md)
  541. node->md->held_by_nodes--;
  542. tor_assert(node->nodelist_idx == -1);
  543. tor_free(node->hsdir_index);
  544. tor_free(node);
  545. }
  546. /** Remove all entries from the nodelist that don't have enough info to be
  547. * usable for anything. */
  548. void
  549. nodelist_purge(void)
  550. {
  551. node_t **iter;
  552. if (PREDICT_UNLIKELY(the_nodelist == NULL))
  553. return;
  554. /* Remove the non-usable nodes. */
  555. for (iter = HT_START(nodelist_map, &the_nodelist->nodes_by_id); iter; ) {
  556. node_t *node = *iter;
  557. if (node->md && !node->rs) {
  558. /* An md is only useful if there is an rs. */
  559. node->md->held_by_nodes--;
  560. node->md = NULL;
  561. }
  562. if (node_is_usable(node)) {
  563. iter = HT_NEXT(nodelist_map, &the_nodelist->nodes_by_id, iter);
  564. } else {
  565. iter = HT_NEXT_RMV(nodelist_map, &the_nodelist->nodes_by_id, iter);
  566. nodelist_drop_node(node, 0);
  567. node_free(node);
  568. }
  569. }
  570. nodelist_assert_ok();
  571. }
  572. /** Release all storage held by the nodelist. */
  573. void
  574. nodelist_free_all(void)
  575. {
  576. if (PREDICT_UNLIKELY(the_nodelist == NULL))
  577. return;
  578. HT_CLEAR(nodelist_map, &the_nodelist->nodes_by_id);
  579. HT_CLEAR(nodelist_ed_map, &the_nodelist->nodes_by_ed_id);
  580. SMARTLIST_FOREACH_BEGIN(the_nodelist->nodes, node_t *, node) {
  581. node->nodelist_idx = -1;
  582. node_free(node);
  583. } SMARTLIST_FOREACH_END(node);
  584. smartlist_free(the_nodelist->nodes);
  585. tor_free(the_nodelist);
  586. }
  587. /** Check that the nodelist is internally consistent, and consistent with
  588. * the directory info it's derived from.
  589. */
  590. void
  591. nodelist_assert_ok(void)
  592. {
  593. routerlist_t *rl = router_get_routerlist();
  594. networkstatus_t *ns = networkstatus_get_latest_consensus();
  595. digestmap_t *dm;
  596. if (!the_nodelist)
  597. return;
  598. dm = digestmap_new();
  599. /* every routerinfo in rl->routers should be in the nodelist. */
  600. if (rl) {
  601. SMARTLIST_FOREACH_BEGIN(rl->routers, routerinfo_t *, ri) {
  602. const node_t *node = node_get_by_id(ri->cache_info.identity_digest);
  603. tor_assert(node && node->ri == ri);
  604. tor_assert(fast_memeq(ri->cache_info.identity_digest,
  605. node->identity, DIGEST_LEN));
  606. tor_assert(! digestmap_get(dm, node->identity));
  607. digestmap_set(dm, node->identity, (void*)node);
  608. } SMARTLIST_FOREACH_END(ri);
  609. }
  610. /* every routerstatus in ns should be in the nodelist */
  611. if (ns) {
  612. SMARTLIST_FOREACH_BEGIN(ns->routerstatus_list, routerstatus_t *, rs) {
  613. const node_t *node = node_get_by_id(rs->identity_digest);
  614. tor_assert(node && node->rs == rs);
  615. tor_assert(fast_memeq(rs->identity_digest, node->identity, DIGEST_LEN));
  616. digestmap_set(dm, node->identity, (void*)node);
  617. if (ns->flavor == FLAV_MICRODESC) {
  618. /* If it's a microdesc consensus, every entry that has a
  619. * microdescriptor should be in the nodelist.
  620. */
  621. microdesc_t *md =
  622. microdesc_cache_lookup_by_digest256(NULL, rs->descriptor_digest);
  623. tor_assert(md == node->md);
  624. if (md)
  625. tor_assert(md->held_by_nodes >= 1);
  626. }
  627. } SMARTLIST_FOREACH_END(rs);
  628. }
  629. /* The nodelist should have no other entries, and its entries should be
  630. * well-formed. */
  631. SMARTLIST_FOREACH_BEGIN(the_nodelist->nodes, node_t *, node) {
  632. tor_assert(digestmap_get(dm, node->identity) != NULL);
  633. tor_assert(node_sl_idx == node->nodelist_idx);
  634. } SMARTLIST_FOREACH_END(node);
  635. /* Every node listed with an ed25519 identity should be listed by that
  636. * identity.
  637. */
  638. SMARTLIST_FOREACH_BEGIN(the_nodelist->nodes, node_t *, node) {
  639. if (!ed25519_public_key_is_zero(&node->ed25519_id)) {
  640. tor_assert(node == node_get_by_ed25519_id(&node->ed25519_id));
  641. }
  642. } SMARTLIST_FOREACH_END(node);
  643. node_t **idx;
  644. HT_FOREACH(idx, nodelist_ed_map, &the_nodelist->nodes_by_ed_id) {
  645. node_t *node = *idx;
  646. tor_assert(node == node_get_by_ed25519_id(&node->ed25519_id));
  647. }
  648. tor_assert((long)smartlist_len(the_nodelist->nodes) ==
  649. (long)HT_SIZE(&the_nodelist->nodes_by_id));
  650. tor_assert((long)smartlist_len(the_nodelist->nodes) >=
  651. (long)HT_SIZE(&the_nodelist->nodes_by_ed_id));
  652. digestmap_free(dm, NULL);
  653. }
  654. /** Return a list of a node_t * for every node we know about. The caller
  655. * MUST NOT modify the list. (You can set and clear flags in the nodes if
  656. * you must, but you must not add or remove nodes.) */
  657. MOCK_IMPL(smartlist_t *,
  658. nodelist_get_list,(void))
  659. {
  660. init_nodelist();
  661. return the_nodelist->nodes;
  662. }
  663. /** Given a hex-encoded nickname of the format DIGEST, $DIGEST, $DIGEST=name,
  664. * or $DIGEST~name, return the node with the matching identity digest and
  665. * nickname (if any). Return NULL if no such node exists, or if <b>hex_id</b>
  666. * is not well-formed. DOCDOC flags */
  667. const node_t *
  668. node_get_by_hex_id(const char *hex_id, unsigned flags)
  669. {
  670. char digest_buf[DIGEST_LEN];
  671. char nn_buf[MAX_NICKNAME_LEN+1];
  672. char nn_char='\0';
  673. (void) flags; // XXXX
  674. if (hex_digest_nickname_decode(hex_id, digest_buf, &nn_char, nn_buf)==0) {
  675. const node_t *node = node_get_by_id(digest_buf);
  676. if (!node)
  677. return NULL;
  678. if (nn_char == '=') {
  679. /* "=" indicates a Named relay, but there aren't any of those now. */
  680. return NULL;
  681. }
  682. return node;
  683. }
  684. return NULL;
  685. }
  686. /** Given a nickname (possibly verbose, possibly a hexadecimal digest), return
  687. * the corresponding node_t, or NULL if none exists. Warn the user if they
  688. * have specified a router by nickname, unless the NNF_NO_WARN_UNNAMED bit is
  689. * set in <b>flags</b>. */
  690. MOCK_IMPL(const node_t *,
  691. node_get_by_nickname,(const char *nickname, unsigned flags))
  692. {
  693. const int warn_if_unnamed = !(flags & NNF_NO_WARN_UNNAMED);
  694. if (!the_nodelist)
  695. return NULL;
  696. /* Handle these cases: DIGEST, $DIGEST, $DIGEST=name, $DIGEST~name. */
  697. {
  698. const node_t *node;
  699. if ((node = node_get_by_hex_id(nickname, flags)) != NULL)
  700. return node;
  701. }
  702. if (!strcasecmp(nickname, UNNAMED_ROUTER_NICKNAME))
  703. return NULL;
  704. /* Okay, so if we get here, the nickname is just a nickname. Is there
  705. * a binding for it in the consensus? */
  706. {
  707. const char *named_id =
  708. networkstatus_get_router_digest_by_nickname(nickname);
  709. if (named_id)
  710. return node_get_by_id(named_id);
  711. }
  712. /* Is it marked as owned-by-someone-else? */
  713. if (networkstatus_nickname_is_unnamed(nickname)) {
  714. log_info(LD_GENERAL, "The name %s is listed as Unnamed: there is some "
  715. "router that holds it, but not one listed in the current "
  716. "consensus.", escaped(nickname));
  717. return NULL;
  718. }
  719. /* Okay, so the name is not canonical for anybody. */
  720. {
  721. smartlist_t *matches = smartlist_new();
  722. const node_t *choice = NULL;
  723. SMARTLIST_FOREACH_BEGIN(the_nodelist->nodes, node_t *, node) {
  724. if (!strcasecmp(node_get_nickname(node), nickname))
  725. smartlist_add(matches, node);
  726. } SMARTLIST_FOREACH_END(node);
  727. if (smartlist_len(matches)>1 && warn_if_unnamed) {
  728. int any_unwarned = 0;
  729. SMARTLIST_FOREACH_BEGIN(matches, node_t *, node) {
  730. if (!node->name_lookup_warned) {
  731. node->name_lookup_warned = 1;
  732. any_unwarned = 1;
  733. }
  734. } SMARTLIST_FOREACH_END(node);
  735. if (any_unwarned) {
  736. log_warn(LD_CONFIG, "There are multiple matches for the name %s, "
  737. "but none is listed as Named in the directory consensus. "
  738. "Choosing one arbitrarily.", nickname);
  739. }
  740. } else if (smartlist_len(matches)==1 && warn_if_unnamed) {
  741. char fp[HEX_DIGEST_LEN+1];
  742. node_t *node = smartlist_get(matches, 0);
  743. if (! node->name_lookup_warned) {
  744. base16_encode(fp, sizeof(fp), node->identity, DIGEST_LEN);
  745. log_warn(LD_CONFIG,
  746. "You specified a relay \"%s\" by name, but nicknames can be "
  747. "used by any relay, not just the one you meant. "
  748. "To make sure you get the same relay in the future, refer "
  749. "to it by key, as \"$%s\".", nickname, fp);
  750. node->name_lookup_warned = 1;
  751. }
  752. }
  753. if (smartlist_len(matches))
  754. choice = smartlist_get(matches, 0);
  755. smartlist_free(matches);
  756. return choice;
  757. }
  758. }
  759. /** Return the Ed25519 identity key for the provided node, or NULL if it
  760. * doesn't have one. */
  761. const ed25519_public_key_t *
  762. node_get_ed25519_id(const node_t *node)
  763. {
  764. const ed25519_public_key_t *ri_pk = NULL;
  765. const ed25519_public_key_t *md_pk = NULL;
  766. if (node->ri) {
  767. if (node->ri->cache_info.signing_key_cert) {
  768. ri_pk = &node->ri->cache_info.signing_key_cert->signing_key;
  769. if (BUG(ed25519_public_key_is_zero(ri_pk)))
  770. ri_pk = NULL;
  771. }
  772. }
  773. if (node->md) {
  774. if (node->md->ed25519_identity_pkey) {
  775. md_pk = node->md->ed25519_identity_pkey;
  776. }
  777. }
  778. if (ri_pk && md_pk) {
  779. if (ed25519_pubkey_eq(ri_pk, md_pk)) {
  780. return ri_pk;
  781. } else {
  782. log_warn(LD_GENERAL, "Inconsistent ed25519 identities in the nodelist");
  783. return NULL;
  784. }
  785. } else if (ri_pk) {
  786. return ri_pk;
  787. } else {
  788. return md_pk;
  789. }
  790. }
  791. /** Return true iff this node's Ed25519 identity matches <b>id</b>.
  792. * (An absent Ed25519 identity matches NULL or zero.) */
  793. int
  794. node_ed25519_id_matches(const node_t *node, const ed25519_public_key_t *id)
  795. {
  796. const ed25519_public_key_t *node_id = node_get_ed25519_id(node);
  797. if (node_id == NULL || ed25519_public_key_is_zero(node_id)) {
  798. return id == NULL || ed25519_public_key_is_zero(id);
  799. } else {
  800. return id && ed25519_pubkey_eq(node_id, id);
  801. }
  802. }
  803. /** Return true iff <b>node</b> supports authenticating itself
  804. * by ed25519 ID during the link handshake in a way that we can understand
  805. * when we probe it. */
  806. int
  807. node_supports_ed25519_link_authentication(const node_t *node)
  808. {
  809. /* XXXX Oh hm. What if some day in the future there are link handshake
  810. * versions that aren't 3 but which are ed25519 */
  811. if (! node_get_ed25519_id(node))
  812. return 0;
  813. if (node->ri) {
  814. const char *protos = node->ri->protocol_list;
  815. if (protos == NULL)
  816. return 0;
  817. return protocol_list_supports_protocol(protos, PRT_LINKAUTH, 3);
  818. }
  819. if (node->rs) {
  820. return node->rs->supports_ed25519_link_handshake;
  821. }
  822. tor_assert_nonfatal_unreached_once();
  823. return 0;
  824. }
  825. /** Return true iff <b>node</b> supports the hidden service directory version
  826. * 3 protocol (proposal 224). */
  827. int
  828. node_supports_v3_hsdir(const node_t *node)
  829. {
  830. tor_assert(node);
  831. if (node->rs) {
  832. return node->rs->supports_v3_hsdir;
  833. }
  834. if (node->ri) {
  835. if (node->ri->protocol_list == NULL) {
  836. return 0;
  837. }
  838. /* Bug #22447 forces us to filter on tor version:
  839. * If platform is a Tor version, and older than 0.3.0.8, return False.
  840. * Else, obey the protocol list. */
  841. if (node->ri->platform) {
  842. if (!strcmpstart(node->ri->platform, "Tor ") &&
  843. !tor_version_as_new_as(node->ri->platform, "0.3.0.8")) {
  844. return 0;
  845. }
  846. }
  847. return protocol_list_supports_protocol(node->ri->protocol_list,
  848. PRT_HSDIR, PROTOVER_HSDIR_V3);
  849. }
  850. tor_assert_nonfatal_unreached_once();
  851. return 0;
  852. }
  853. /** Return true iff <b>node</b> supports ed25519 authentication as an hidden
  854. * service introduction point.*/
  855. int
  856. node_supports_ed25519_hs_intro(const node_t *node)
  857. {
  858. tor_assert(node);
  859. if (node->rs) {
  860. return node->rs->supports_ed25519_hs_intro;
  861. }
  862. if (node->ri) {
  863. if (node->ri->protocol_list == NULL) {
  864. return 0;
  865. }
  866. return protocol_list_supports_protocol(node->ri->protocol_list,
  867. PRT_HSINTRO, PROTOVER_HS_INTRO_V3);
  868. }
  869. tor_assert_nonfatal_unreached_once();
  870. return 0;
  871. }
  872. /** Return the RSA ID key's SHA1 digest for the provided node. */
  873. const uint8_t *
  874. node_get_rsa_id_digest(const node_t *node)
  875. {
  876. tor_assert(node);
  877. return (const uint8_t*)node->identity;
  878. }
  879. /** Return the nickname of <b>node</b>, or NULL if we can't find one. */
  880. const char *
  881. node_get_nickname(const node_t *node)
  882. {
  883. tor_assert(node);
  884. if (node->rs)
  885. return node->rs->nickname;
  886. else if (node->ri)
  887. return node->ri->nickname;
  888. else
  889. return NULL;
  890. }
  891. /** Return true iff <b>node</b> appears to be a directory authority or
  892. * directory cache */
  893. int
  894. node_is_dir(const node_t *node)
  895. {
  896. if (node->rs) {
  897. routerstatus_t * rs = node->rs;
  898. /* This is true if supports_tunnelled_dir_requests is true which
  899. * indicates that we support directory request tunnelled or through the
  900. * DirPort. */
  901. return rs->is_v2_dir;
  902. } else if (node->ri) {
  903. routerinfo_t * ri = node->ri;
  904. /* Both tunnelled request is supported or DirPort is set. */
  905. return ri->supports_tunnelled_dir_requests;
  906. } else {
  907. return 0;
  908. }
  909. }
  910. /** Return true iff <b>node</b> has either kind of usable descriptor -- that
  911. * is, a routerdescriptor or a microdescriptor. */
  912. int
  913. node_has_descriptor(const node_t *node)
  914. {
  915. return (node->ri ||
  916. (node->rs && node->md));
  917. }
  918. /** Return the router_purpose of <b>node</b>. */
  919. int
  920. node_get_purpose(const node_t *node)
  921. {
  922. if (node->ri)
  923. return node->ri->purpose;
  924. else
  925. return ROUTER_PURPOSE_GENERAL;
  926. }
  927. /** Compute the verbose ("extended") nickname of <b>node</b> and store it
  928. * into the MAX_VERBOSE_NICKNAME_LEN+1 character buffer at
  929. * <b>verbose_name_out</b> */
  930. void
  931. node_get_verbose_nickname(const node_t *node,
  932. char *verbose_name_out)
  933. {
  934. const char *nickname = node_get_nickname(node);
  935. verbose_name_out[0] = '$';
  936. base16_encode(verbose_name_out+1, HEX_DIGEST_LEN+1, node->identity,
  937. DIGEST_LEN);
  938. if (!nickname)
  939. return;
  940. verbose_name_out[1+HEX_DIGEST_LEN] = '~';
  941. strlcpy(verbose_name_out+1+HEX_DIGEST_LEN+1, nickname, MAX_NICKNAME_LEN+1);
  942. }
  943. /** Compute the verbose ("extended") nickname of node with
  944. * given <b>id_digest</b> and store it into the MAX_VERBOSE_NICKNAME_LEN+1
  945. * character buffer at <b>verbose_name_out</b>
  946. *
  947. * If node_get_by_id() returns NULL, base 16 encoding of
  948. * <b>id_digest</b> is returned instead. */
  949. void
  950. node_get_verbose_nickname_by_id(const char *id_digest,
  951. char *verbose_name_out)
  952. {
  953. const node_t *node = node_get_by_id(id_digest);
  954. if (!node) {
  955. verbose_name_out[0] = '$';
  956. base16_encode(verbose_name_out+1, HEX_DIGEST_LEN+1, id_digest, DIGEST_LEN);
  957. } else {
  958. node_get_verbose_nickname(node, verbose_name_out);
  959. }
  960. }
  961. /** Return true iff it seems that <b>node</b> allows circuits to exit
  962. * through it directlry from the client. */
  963. int
  964. node_allows_single_hop_exits(const node_t *node)
  965. {
  966. if (node && node->ri)
  967. return node->ri->allow_single_hop_exits;
  968. else
  969. return 0;
  970. }
  971. /** Return true iff it seems that <b>node</b> has an exit policy that doesn't
  972. * actually permit anything to exit, or we don't know its exit policy */
  973. int
  974. node_exit_policy_rejects_all(const node_t *node)
  975. {
  976. if (node->rejects_all)
  977. return 1;
  978. if (node->ri)
  979. return node->ri->policy_is_reject_star;
  980. else if (node->md)
  981. return node->md->exit_policy == NULL ||
  982. short_policy_is_reject_star(node->md->exit_policy);
  983. else
  984. return 1;
  985. }
  986. /** Return true iff the exit policy for <b>node</b> is such that we can treat
  987. * rejecting an address of type <b>family</b> unexpectedly as a sign of that
  988. * node's failure. */
  989. int
  990. node_exit_policy_is_exact(const node_t *node, sa_family_t family)
  991. {
  992. if (family == AF_UNSPEC) {
  993. return 1; /* Rejecting an address but not telling us what address
  994. * is a bad sign. */
  995. } else if (family == AF_INET) {
  996. return node->ri != NULL;
  997. } else if (family == AF_INET6) {
  998. return 0;
  999. }
  1000. tor_fragile_assert();
  1001. return 1;
  1002. }
  1003. /* Check if the "addr" and port_field fields from r are a valid non-listening
  1004. * address/port. If so, set valid to true and add a newly allocated
  1005. * tor_addr_port_t containing "addr" and port_field to sl.
  1006. * "addr" is an IPv4 host-order address and port_field is a uint16_t.
  1007. * r is typically a routerinfo_t or routerstatus_t.
  1008. */
  1009. #define SL_ADD_NEW_IPV4_AP(r, port_field, sl, valid) \
  1010. STMT_BEGIN \
  1011. if (tor_addr_port_is_valid_ipv4h((r)->addr, (r)->port_field, 0)) { \
  1012. valid = 1; \
  1013. tor_addr_port_t *ap = tor_malloc(sizeof(tor_addr_port_t)); \
  1014. tor_addr_from_ipv4h(&ap->addr, (r)->addr); \
  1015. ap->port = (r)->port_field; \
  1016. smartlist_add((sl), ap); \
  1017. } \
  1018. STMT_END
  1019. /* Check if the "addr" and port_field fields from r are a valid non-listening
  1020. * address/port. If so, set valid to true and add a newly allocated
  1021. * tor_addr_port_t containing "addr" and port_field to sl.
  1022. * "addr" is a tor_addr_t and port_field is a uint16_t.
  1023. * r is typically a routerinfo_t or routerstatus_t.
  1024. */
  1025. #define SL_ADD_NEW_IPV6_AP(r, port_field, sl, valid) \
  1026. STMT_BEGIN \
  1027. if (tor_addr_port_is_valid(&(r)->ipv6_addr, (r)->port_field, 0)) { \
  1028. valid = 1; \
  1029. tor_addr_port_t *ap = tor_malloc(sizeof(tor_addr_port_t)); \
  1030. tor_addr_copy(&ap->addr, &(r)->ipv6_addr); \
  1031. ap->port = (r)->port_field; \
  1032. smartlist_add((sl), ap); \
  1033. } \
  1034. STMT_END
  1035. /** Return list of tor_addr_port_t with all OR ports (in the sense IP
  1036. * addr + TCP port) for <b>node</b>. Caller must free all elements
  1037. * using tor_free() and free the list using smartlist_free().
  1038. *
  1039. * XXX this is potentially a memory fragmentation hog -- if on
  1040. * critical path consider the option of having the caller allocate the
  1041. * memory
  1042. */
  1043. smartlist_t *
  1044. node_get_all_orports(const node_t *node)
  1045. {
  1046. smartlist_t *sl = smartlist_new();
  1047. int valid = 0;
  1048. /* Find a valid IPv4 address and port */
  1049. if (node->ri != NULL) {
  1050. SL_ADD_NEW_IPV4_AP(node->ri, or_port, sl, valid);
  1051. }
  1052. /* If we didn't find a valid address/port in the ri, try the rs */
  1053. if (!valid && node->rs != NULL) {
  1054. SL_ADD_NEW_IPV4_AP(node->rs, or_port, sl, valid);
  1055. }
  1056. /* Find a valid IPv6 address and port */
  1057. valid = 0;
  1058. if (node->ri != NULL) {
  1059. SL_ADD_NEW_IPV6_AP(node->ri, ipv6_orport, sl, valid);
  1060. }
  1061. if (!valid && node->rs != NULL) {
  1062. SL_ADD_NEW_IPV6_AP(node->rs, ipv6_orport, sl, valid);
  1063. }
  1064. if (!valid && node->md != NULL) {
  1065. SL_ADD_NEW_IPV6_AP(node->md, ipv6_orport, sl, valid);
  1066. }
  1067. return sl;
  1068. }
  1069. #undef SL_ADD_NEW_IPV4_AP
  1070. #undef SL_ADD_NEW_IPV6_AP
  1071. /** Wrapper around node_get_prim_orport for backward
  1072. compatibility. */
  1073. void
  1074. node_get_addr(const node_t *node, tor_addr_t *addr_out)
  1075. {
  1076. tor_addr_port_t ap;
  1077. node_get_prim_orport(node, &ap);
  1078. tor_addr_copy(addr_out, &ap.addr);
  1079. }
  1080. /** Return the host-order IPv4 address for <b>node</b>, or 0 if it doesn't
  1081. * seem to have one. */
  1082. uint32_t
  1083. node_get_prim_addr_ipv4h(const node_t *node)
  1084. {
  1085. /* Don't check the ORPort or DirPort, as this function isn't port-specific,
  1086. * and the node might have a valid IPv4 address, yet have a zero
  1087. * ORPort or DirPort.
  1088. */
  1089. if (node->ri && tor_addr_is_valid_ipv4h(node->ri->addr, 0)) {
  1090. return node->ri->addr;
  1091. } else if (node->rs && tor_addr_is_valid_ipv4h(node->rs->addr, 0)) {
  1092. return node->rs->addr;
  1093. }
  1094. return 0;
  1095. }
  1096. /** Copy a string representation of an IP address for <b>node</b> into
  1097. * the <b>len</b>-byte buffer at <b>buf</b>. */
  1098. void
  1099. node_get_address_string(const node_t *node, char *buf, size_t len)
  1100. {
  1101. uint32_t ipv4_addr = node_get_prim_addr_ipv4h(node);
  1102. if (tor_addr_is_valid_ipv4h(ipv4_addr, 0)) {
  1103. tor_addr_t addr;
  1104. tor_addr_from_ipv4h(&addr, ipv4_addr);
  1105. tor_addr_to_str(buf, &addr, len, 0);
  1106. } else if (len > 0) {
  1107. buf[0] = '\0';
  1108. }
  1109. }
  1110. /** Return <b>node</b>'s declared uptime, or -1 if it doesn't seem to have
  1111. * one. */
  1112. long
  1113. node_get_declared_uptime(const node_t *node)
  1114. {
  1115. if (node->ri)
  1116. return node->ri->uptime;
  1117. else
  1118. return -1;
  1119. }
  1120. /** Return <b>node</b>'s platform string, or NULL if we don't know it. */
  1121. const char *
  1122. node_get_platform(const node_t *node)
  1123. {
  1124. /* If we wanted, we could record the version in the routerstatus_t, since
  1125. * the consensus lists it. We don't, though, so this function just won't
  1126. * work with microdescriptors. */
  1127. if (node->ri)
  1128. return node->ri->platform;
  1129. else
  1130. return NULL;
  1131. }
  1132. /** Return true iff <b>node</b> is one representing this router. */
  1133. int
  1134. node_is_me(const node_t *node)
  1135. {
  1136. return router_digest_is_me(node->identity);
  1137. }
  1138. /** Return <b>node</b> declared family (as a list of names), or NULL if
  1139. * the node didn't declare a family. */
  1140. const smartlist_t *
  1141. node_get_declared_family(const node_t *node)
  1142. {
  1143. if (node->ri && node->ri->declared_family)
  1144. return node->ri->declared_family;
  1145. else if (node->md && node->md->family)
  1146. return node->md->family;
  1147. else
  1148. return NULL;
  1149. }
  1150. /* Does this node have a valid IPv6 address?
  1151. * Prefer node_has_ipv6_orport() or node_has_ipv6_dirport() for
  1152. * checking specific ports. */
  1153. int
  1154. node_has_ipv6_addr(const node_t *node)
  1155. {
  1156. /* Don't check the ORPort or DirPort, as this function isn't port-specific,
  1157. * and the node might have a valid IPv6 address, yet have a zero
  1158. * ORPort or DirPort.
  1159. */
  1160. if (node->ri && tor_addr_is_valid(&node->ri->ipv6_addr, 0))
  1161. return 1;
  1162. if (node->rs && tor_addr_is_valid(&node->rs->ipv6_addr, 0))
  1163. return 1;
  1164. if (node->md && tor_addr_is_valid(&node->md->ipv6_addr, 0))
  1165. return 1;
  1166. return 0;
  1167. }
  1168. /* Does this node have a valid IPv6 ORPort? */
  1169. int
  1170. node_has_ipv6_orport(const node_t *node)
  1171. {
  1172. tor_addr_port_t ipv6_orport;
  1173. node_get_pref_ipv6_orport(node, &ipv6_orport);
  1174. return tor_addr_port_is_valid_ap(&ipv6_orport, 0);
  1175. }
  1176. /* Does this node have a valid IPv6 DirPort? */
  1177. int
  1178. node_has_ipv6_dirport(const node_t *node)
  1179. {
  1180. tor_addr_port_t ipv6_dirport;
  1181. node_get_pref_ipv6_dirport(node, &ipv6_dirport);
  1182. return tor_addr_port_is_valid_ap(&ipv6_dirport, 0);
  1183. }
  1184. /** Return 1 if we prefer the IPv6 address and OR TCP port of
  1185. * <b>node</b>, else 0.
  1186. *
  1187. * We prefer the IPv6 address if the router has an IPv6 address,
  1188. * and we can use IPv6 addresses, and:
  1189. * i) the node_t says that it prefers IPv6
  1190. * or
  1191. * ii) the router has no IPv4 OR address.
  1192. *
  1193. * If you don't have a node, consider looking it up.
  1194. * If there is no node, use fascist_firewall_prefer_ipv6_orport().
  1195. */
  1196. int
  1197. node_ipv6_or_preferred(const node_t *node)
  1198. {
  1199. const or_options_t *options = get_options();
  1200. tor_addr_port_t ipv4_addr;
  1201. node_assert_ok(node);
  1202. /* XX/teor - node->ipv6_preferred is set from
  1203. * fascist_firewall_prefer_ipv6_orport() each time the consensus is loaded.
  1204. */
  1205. if (!fascist_firewall_use_ipv6(options)) {
  1206. return 0;
  1207. } else if (node->ipv6_preferred || node_get_prim_orport(node, &ipv4_addr)) {
  1208. return node_has_ipv6_orport(node);
  1209. }
  1210. return 0;
  1211. }
  1212. #define RETURN_IPV4_AP(r, port_field, ap_out) \
  1213. STMT_BEGIN \
  1214. if (r && tor_addr_port_is_valid_ipv4h((r)->addr, (r)->port_field, 0)) { \
  1215. tor_addr_from_ipv4h(&(ap_out)->addr, (r)->addr); \
  1216. (ap_out)->port = (r)->port_field; \
  1217. return 0; \
  1218. } \
  1219. STMT_END
  1220. /** Copy the primary (IPv4) OR port (IP address and TCP port) for
  1221. * <b>node</b> into *<b>ap_out</b>. Return 0 if a valid address and
  1222. * port was copied, else return non-zero.*/
  1223. int
  1224. node_get_prim_orport(const node_t *node, tor_addr_port_t *ap_out)
  1225. {
  1226. node_assert_ok(node);
  1227. tor_assert(ap_out);
  1228. /* Check ri first, because rewrite_node_address_for_bridge() updates
  1229. * node->ri with the configured bridge address. */
  1230. RETURN_IPV4_AP(node->ri, or_port, ap_out);
  1231. RETURN_IPV4_AP(node->rs, or_port, ap_out);
  1232. /* Microdescriptors only have an IPv6 address */
  1233. return -1;
  1234. }
  1235. /** Copy the preferred OR port (IP address and TCP port) for
  1236. * <b>node</b> into *<b>ap_out</b>. */
  1237. void
  1238. node_get_pref_orport(const node_t *node, tor_addr_port_t *ap_out)
  1239. {
  1240. tor_assert(ap_out);
  1241. if (node_ipv6_or_preferred(node)) {
  1242. node_get_pref_ipv6_orport(node, ap_out);
  1243. } else {
  1244. /* the primary ORPort is always on IPv4 */
  1245. node_get_prim_orport(node, ap_out);
  1246. }
  1247. }
  1248. /** Copy the preferred IPv6 OR port (IP address and TCP port) for
  1249. * <b>node</b> into *<b>ap_out</b>. */
  1250. void
  1251. node_get_pref_ipv6_orport(const node_t *node, tor_addr_port_t *ap_out)
  1252. {
  1253. node_assert_ok(node);
  1254. tor_assert(ap_out);
  1255. /* Check ri first, because rewrite_node_address_for_bridge() updates
  1256. * node->ri with the configured bridge address.
  1257. * Prefer rs over md for consistency with the fascist_firewall_* functions.
  1258. * Check if the address or port are valid, and try another alternative
  1259. * if they are not. */
  1260. if (node->ri && tor_addr_port_is_valid(&node->ri->ipv6_addr,
  1261. node->ri->ipv6_orport, 0)) {
  1262. tor_addr_copy(&ap_out->addr, &node->ri->ipv6_addr);
  1263. ap_out->port = node->ri->ipv6_orport;
  1264. } else if (node->rs && tor_addr_port_is_valid(&node->rs->ipv6_addr,
  1265. node->rs->ipv6_orport, 0)) {
  1266. tor_addr_copy(&ap_out->addr, &node->rs->ipv6_addr);
  1267. ap_out->port = node->rs->ipv6_orport;
  1268. } else if (node->md && tor_addr_port_is_valid(&node->md->ipv6_addr,
  1269. node->md->ipv6_orport, 0)) {
  1270. tor_addr_copy(&ap_out->addr, &node->md->ipv6_addr);
  1271. ap_out->port = node->md->ipv6_orport;
  1272. } else {
  1273. tor_addr_make_null(&ap_out->addr, AF_INET6);
  1274. ap_out->port = 0;
  1275. }
  1276. }
  1277. /** Return 1 if we prefer the IPv6 address and Dir TCP port of
  1278. * <b>node</b>, else 0.
  1279. *
  1280. * We prefer the IPv6 address if the router has an IPv6 address,
  1281. * and we can use IPv6 addresses, and:
  1282. * i) the router has no IPv4 Dir address.
  1283. * or
  1284. * ii) our preference is for IPv6 Dir addresses.
  1285. *
  1286. * If there is no node, use fascist_firewall_prefer_ipv6_dirport().
  1287. */
  1288. int
  1289. node_ipv6_dir_preferred(const node_t *node)
  1290. {
  1291. const or_options_t *options = get_options();
  1292. tor_addr_port_t ipv4_addr;
  1293. node_assert_ok(node);
  1294. /* node->ipv6_preferred is set from fascist_firewall_prefer_ipv6_orport(),
  1295. * so we can't use it to determine DirPort IPv6 preference.
  1296. * This means that bridge clients will use IPv4 DirPorts by default.
  1297. */
  1298. if (!fascist_firewall_use_ipv6(options)) {
  1299. return 0;
  1300. } else if (node_get_prim_dirport(node, &ipv4_addr)
  1301. || fascist_firewall_prefer_ipv6_dirport(get_options())) {
  1302. return node_has_ipv6_dirport(node);
  1303. }
  1304. return 0;
  1305. }
  1306. /** Copy the primary (IPv4) Dir port (IP address and TCP port) for
  1307. * <b>node</b> into *<b>ap_out</b>. Return 0 if a valid address and
  1308. * port was copied, else return non-zero.*/
  1309. int
  1310. node_get_prim_dirport(const node_t *node, tor_addr_port_t *ap_out)
  1311. {
  1312. node_assert_ok(node);
  1313. tor_assert(ap_out);
  1314. /* Check ri first, because rewrite_node_address_for_bridge() updates
  1315. * node->ri with the configured bridge address. */
  1316. RETURN_IPV4_AP(node->ri, dir_port, ap_out);
  1317. RETURN_IPV4_AP(node->rs, dir_port, ap_out);
  1318. /* Microdescriptors only have an IPv6 address */
  1319. return -1;
  1320. }
  1321. #undef RETURN_IPV4_AP
  1322. /** Copy the preferred Dir port (IP address and TCP port) for
  1323. * <b>node</b> into *<b>ap_out</b>. */
  1324. void
  1325. node_get_pref_dirport(const node_t *node, tor_addr_port_t *ap_out)
  1326. {
  1327. tor_assert(ap_out);
  1328. if (node_ipv6_dir_preferred(node)) {
  1329. node_get_pref_ipv6_dirport(node, ap_out);
  1330. } else {
  1331. /* the primary DirPort is always on IPv4 */
  1332. node_get_prim_dirport(node, ap_out);
  1333. }
  1334. }
  1335. /** Copy the preferred IPv6 Dir port (IP address and TCP port) for
  1336. * <b>node</b> into *<b>ap_out</b>. */
  1337. void
  1338. node_get_pref_ipv6_dirport(const node_t *node, tor_addr_port_t *ap_out)
  1339. {
  1340. node_assert_ok(node);
  1341. tor_assert(ap_out);
  1342. /* Check ri first, because rewrite_node_address_for_bridge() updates
  1343. * node->ri with the configured bridge address.
  1344. * Prefer rs over md for consistency with the fascist_firewall_* functions.
  1345. * Check if the address or port are valid, and try another alternative
  1346. * if they are not. */
  1347. /* Assume IPv4 and IPv6 dirports are the same */
  1348. if (node->ri && tor_addr_port_is_valid(&node->ri->ipv6_addr,
  1349. node->ri->dir_port, 0)) {
  1350. tor_addr_copy(&ap_out->addr, &node->ri->ipv6_addr);
  1351. ap_out->port = node->ri->dir_port;
  1352. } else if (node->rs && tor_addr_port_is_valid(&node->rs->ipv6_addr,
  1353. node->rs->dir_port, 0)) {
  1354. tor_addr_copy(&ap_out->addr, &node->rs->ipv6_addr);
  1355. ap_out->port = node->rs->dir_port;
  1356. } else {
  1357. tor_addr_make_null(&ap_out->addr, AF_INET6);
  1358. ap_out->port = 0;
  1359. }
  1360. }
  1361. /** Return true iff <b>md</b> has a curve25519 onion key.
  1362. * Use node_has_curve25519_onion_key() instead of calling this directly. */
  1363. static int
  1364. microdesc_has_curve25519_onion_key(const microdesc_t *md)
  1365. {
  1366. if (!md) {
  1367. return 0;
  1368. }
  1369. if (!md->onion_curve25519_pkey) {
  1370. return 0;
  1371. }
  1372. if (tor_mem_is_zero((const char*)md->onion_curve25519_pkey->public_key,
  1373. CURVE25519_PUBKEY_LEN)) {
  1374. return 0;
  1375. }
  1376. return 1;
  1377. }
  1378. /** Return true iff <b>node</b> has a curve25519 onion key. */
  1379. int
  1380. node_has_curve25519_onion_key(const node_t *node)
  1381. {
  1382. if (!node)
  1383. return 0;
  1384. if (node->ri)
  1385. return routerinfo_has_curve25519_onion_key(node->ri);
  1386. else if (node->md)
  1387. return microdesc_has_curve25519_onion_key(node->md);
  1388. else
  1389. return 0;
  1390. }
  1391. /** Refresh the country code of <b>ri</b>. This function MUST be called on
  1392. * each router when the GeoIP database is reloaded, and on all new routers. */
  1393. void
  1394. node_set_country(node_t *node)
  1395. {
  1396. tor_addr_t addr = TOR_ADDR_NULL;
  1397. /* XXXXipv6 */
  1398. if (node->rs)
  1399. tor_addr_from_ipv4h(&addr, node->rs->addr);
  1400. else if (node->ri)
  1401. tor_addr_from_ipv4h(&addr, node->ri->addr);
  1402. node->country = geoip_get_country_by_addr(&addr);
  1403. }
  1404. /** Set the country code of all routers in the routerlist. */
  1405. void
  1406. nodelist_refresh_countries(void)
  1407. {
  1408. smartlist_t *nodes = nodelist_get_list();
  1409. SMARTLIST_FOREACH(nodes, node_t *, node,
  1410. node_set_country(node));
  1411. }
  1412. /** Return true iff router1 and router2 have similar enough network addresses
  1413. * that we should treat them as being in the same family */
  1414. int
  1415. addrs_in_same_network_family(const tor_addr_t *a1,
  1416. const tor_addr_t *a2)
  1417. {
  1418. return 0 == tor_addr_compare_masked(a1, a2, 16, CMP_SEMANTIC);
  1419. }
  1420. /** Return true if <b>node</b>'s nickname matches <b>nickname</b>
  1421. * (case-insensitive), or if <b>node's</b> identity key digest
  1422. * matches a hexadecimal value stored in <b>nickname</b>. Return
  1423. * false otherwise. */
  1424. static int
  1425. node_nickname_matches(const node_t *node, const char *nickname)
  1426. {
  1427. const char *n = node_get_nickname(node);
  1428. if (n && nickname[0]!='$' && !strcasecmp(n, nickname))
  1429. return 1;
  1430. return hex_digest_nickname_matches(nickname,
  1431. node->identity,
  1432. n);
  1433. }
  1434. /** Return true iff <b>node</b> is named by some nickname in <b>lst</b>. */
  1435. static inline int
  1436. node_in_nickname_smartlist(const smartlist_t *lst, const node_t *node)
  1437. {
  1438. if (!lst) return 0;
  1439. SMARTLIST_FOREACH(lst, const char *, name, {
  1440. if (node_nickname_matches(node, name))
  1441. return 1;
  1442. });
  1443. return 0;
  1444. }
  1445. /** Return true iff r1 and r2 are in the same family, but not the same
  1446. * router. */
  1447. int
  1448. nodes_in_same_family(const node_t *node1, const node_t *node2)
  1449. {
  1450. const or_options_t *options = get_options();
  1451. /* Are they in the same family because of their addresses? */
  1452. if (options->EnforceDistinctSubnets) {
  1453. tor_addr_t a1, a2;
  1454. node_get_addr(node1, &a1);
  1455. node_get_addr(node2, &a2);
  1456. if (addrs_in_same_network_family(&a1, &a2))
  1457. return 1;
  1458. }
  1459. /* Are they in the same family because the agree they are? */
  1460. {
  1461. const smartlist_t *f1, *f2;
  1462. f1 = node_get_declared_family(node1);
  1463. f2 = node_get_declared_family(node2);
  1464. if (f1 && f2 &&
  1465. node_in_nickname_smartlist(f1, node2) &&
  1466. node_in_nickname_smartlist(f2, node1))
  1467. return 1;
  1468. }
  1469. /* Are they in the same option because the user says they are? */
  1470. if (options->NodeFamilySets) {
  1471. SMARTLIST_FOREACH(options->NodeFamilySets, const routerset_t *, rs, {
  1472. if (routerset_contains_node(rs, node1) &&
  1473. routerset_contains_node(rs, node2))
  1474. return 1;
  1475. });
  1476. }
  1477. return 0;
  1478. }
  1479. /**
  1480. * Add all the family of <b>node</b>, including <b>node</b> itself, to
  1481. * the smartlist <b>sl</b>.
  1482. *
  1483. * This is used to make sure we don't pick siblings in a single path, or
  1484. * pick more than one relay from a family for our entry guard list.
  1485. * Note that a node may be added to <b>sl</b> more than once if it is
  1486. * part of <b>node</b>'s family for more than one reason.
  1487. */
  1488. void
  1489. nodelist_add_node_and_family(smartlist_t *sl, const node_t *node)
  1490. {
  1491. const smartlist_t *all_nodes = nodelist_get_list();
  1492. const smartlist_t *declared_family;
  1493. const or_options_t *options = get_options();
  1494. tor_assert(node);
  1495. declared_family = node_get_declared_family(node);
  1496. /* Let's make sure that we have the node itself, if it's a real node. */
  1497. {
  1498. const node_t *real_node = node_get_by_id(node->identity);
  1499. if (real_node)
  1500. smartlist_add(sl, (node_t*)real_node);
  1501. }
  1502. /* First, add any nodes with similar network addresses. */
  1503. if (options->EnforceDistinctSubnets) {
  1504. tor_addr_t node_addr;
  1505. node_get_addr(node, &node_addr);
  1506. SMARTLIST_FOREACH_BEGIN(all_nodes, const node_t *, node2) {
  1507. tor_addr_t a;
  1508. node_get_addr(node2, &a);
  1509. if (addrs_in_same_network_family(&a, &node_addr))
  1510. smartlist_add(sl, (void*)node2);
  1511. } SMARTLIST_FOREACH_END(node2);
  1512. }
  1513. /* Now, add all nodes in the declared_family of this node, if they
  1514. * also declare this node to be in their family. */
  1515. if (declared_family) {
  1516. /* Add every r such that router declares familyness with node, and node
  1517. * declares familyhood with router. */
  1518. SMARTLIST_FOREACH_BEGIN(declared_family, const char *, name) {
  1519. const node_t *node2;
  1520. const smartlist_t *family2;
  1521. if (!(node2 = node_get_by_nickname(name, NNF_NO_WARN_UNNAMED)))
  1522. continue;
  1523. if (!(family2 = node_get_declared_family(node2)))
  1524. continue;
  1525. SMARTLIST_FOREACH_BEGIN(family2, const char *, name2) {
  1526. if (node_nickname_matches(node, name2)) {
  1527. smartlist_add(sl, (void*)node2);
  1528. break;
  1529. }
  1530. } SMARTLIST_FOREACH_END(name2);
  1531. } SMARTLIST_FOREACH_END(name);
  1532. }
  1533. /* If the user declared any families locally, honor those too. */
  1534. if (options->NodeFamilySets) {
  1535. SMARTLIST_FOREACH(options->NodeFamilySets, const routerset_t *, rs, {
  1536. if (routerset_contains_node(rs, node)) {
  1537. routerset_get_all_nodes(sl, rs, NULL, 0);
  1538. }
  1539. });
  1540. }
  1541. }
  1542. /** Find a router that's up, that has this IP address, and
  1543. * that allows exit to this address:port, or return NULL if there
  1544. * isn't a good one.
  1545. * Don't exit enclave to excluded relays -- it wouldn't actually
  1546. * hurt anything, but this way there are fewer confused users.
  1547. */
  1548. const node_t *
  1549. router_find_exact_exit_enclave(const char *address, uint16_t port)
  1550. {/*XXXX MOVE*/
  1551. uint32_t addr;
  1552. struct in_addr in;
  1553. tor_addr_t a;
  1554. const or_options_t *options = get_options();
  1555. if (!tor_inet_aton(address, &in))
  1556. return NULL; /* it's not an IP already */
  1557. addr = ntohl(in.s_addr);
  1558. tor_addr_from_ipv4h(&a, addr);
  1559. SMARTLIST_FOREACH(nodelist_get_list(), const node_t *, node, {
  1560. if (node_get_addr_ipv4h(node) == addr &&
  1561. node->is_running &&
  1562. compare_tor_addr_to_node_policy(&a, port, node) ==
  1563. ADDR_POLICY_ACCEPTED &&
  1564. !routerset_contains_node(options->ExcludeExitNodesUnion_, node))
  1565. return node;
  1566. });
  1567. return NULL;
  1568. }
  1569. /** Return 1 if <b>router</b> is not suitable for these parameters, else 0.
  1570. * If <b>need_uptime</b> is non-zero, we require a minimum uptime.
  1571. * If <b>need_capacity</b> is non-zero, we require a minimum advertised
  1572. * bandwidth.
  1573. * If <b>need_guard</b>, we require that the router is a possible entry guard.
  1574. */
  1575. int
  1576. node_is_unreliable(const node_t *node, int need_uptime,
  1577. int need_capacity, int need_guard)
  1578. {
  1579. if (need_uptime && !node->is_stable)
  1580. return 1;
  1581. if (need_capacity && !node->is_fast)
  1582. return 1;
  1583. if (need_guard && !node->is_possible_guard)
  1584. return 1;
  1585. return 0;
  1586. }
  1587. /** Return 1 if all running sufficiently-stable routers we can use will reject
  1588. * addr:port. Return 0 if any might accept it. */
  1589. int
  1590. router_exit_policy_all_nodes_reject(const tor_addr_t *addr, uint16_t port,
  1591. int need_uptime)
  1592. {
  1593. addr_policy_result_t r;
  1594. SMARTLIST_FOREACH_BEGIN(nodelist_get_list(), const node_t *, node) {
  1595. if (node->is_running &&
  1596. !node_is_unreliable(node, need_uptime, 0, 0)) {
  1597. r = compare_tor_addr_to_node_policy(addr, port, node);
  1598. if (r != ADDR_POLICY_REJECTED && r != ADDR_POLICY_PROBABLY_REJECTED)
  1599. return 0; /* this one could be ok. good enough. */
  1600. }
  1601. } SMARTLIST_FOREACH_END(node);
  1602. return 1; /* all will reject. */
  1603. }
  1604. /** Mark the router with ID <b>digest</b> as running or non-running
  1605. * in our routerlist. */
  1606. void
  1607. router_set_status(const char *digest, int up)
  1608. {
  1609. node_t *node;
  1610. tor_assert(digest);
  1611. SMARTLIST_FOREACH(router_get_fallback_dir_servers(),
  1612. dir_server_t *, d,
  1613. if (tor_memeq(d->digest, digest, DIGEST_LEN))
  1614. d->is_running = up);
  1615. SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
  1616. dir_server_t *, d,
  1617. if (tor_memeq(d->digest, digest, DIGEST_LEN))
  1618. d->is_running = up);
  1619. node = node_get_mutable_by_id(digest);
  1620. if (node) {
  1621. #if 0
  1622. log_debug(LD_DIR,"Marking router %s as %s.",
  1623. node_describe(node), up ? "up" : "down");
  1624. #endif
  1625. if (!up && node_is_me(node) && !net_is_disabled())
  1626. log_warn(LD_NET, "We just marked ourself as down. Are your external "
  1627. "addresses reachable?");
  1628. if (bool_neq(node->is_running, up))
  1629. router_dir_info_changed();
  1630. node->is_running = up;
  1631. }
  1632. }
  1633. /** True iff, the last time we checked whether we had enough directory info
  1634. * to build circuits, the answer was "yes". If there are no exits in the
  1635. * consensus, we act as if we have 100% of the exit directory info. */
  1636. static int have_min_dir_info = 0;
  1637. /** Does the consensus contain nodes that can exit? */
  1638. static consensus_path_type_t have_consensus_path = CONSENSUS_PATH_UNKNOWN;
  1639. /** True iff enough has changed since the last time we checked whether we had
  1640. * enough directory info to build circuits that our old answer can no longer
  1641. * be trusted. */
  1642. static int need_to_update_have_min_dir_info = 1;
  1643. /** String describing what we're missing before we have enough directory
  1644. * info. */
  1645. static char dir_info_status[512] = "";
  1646. /** Return true iff we have enough consensus information to
  1647. * start building circuits. Right now, this means "a consensus that's
  1648. * less than a day old, and at least 60% of router descriptors (configurable),
  1649. * weighted by bandwidth. Treat the exit fraction as 100% if there are
  1650. * no exits in the consensus."
  1651. * To obtain the final weighted bandwidth, we multiply the
  1652. * weighted bandwidth fraction for each position (guard, middle, exit). */
  1653. int
  1654. router_have_minimum_dir_info(void)
  1655. {
  1656. static int logged_delay=0;
  1657. const char *delay_fetches_msg = NULL;
  1658. if (should_delay_dir_fetches(get_options(), &delay_fetches_msg)) {
  1659. if (!logged_delay)
  1660. log_notice(LD_DIR, "Delaying directory fetches: %s", delay_fetches_msg);
  1661. logged_delay=1;
  1662. strlcpy(dir_info_status, delay_fetches_msg, sizeof(dir_info_status));
  1663. return 0;
  1664. }
  1665. logged_delay = 0; /* reset it if we get this far */
  1666. if (PREDICT_UNLIKELY(need_to_update_have_min_dir_info)) {
  1667. update_router_have_minimum_dir_info();
  1668. }
  1669. return have_min_dir_info;
  1670. }
  1671. /** Set to CONSENSUS_PATH_EXIT if there is at least one exit node
  1672. * in the consensus. We update this flag in compute_frac_paths_available if
  1673. * there is at least one relay that has an Exit flag in the consensus.
  1674. * Used to avoid building exit circuits when they will almost certainly fail.
  1675. * Set to CONSENSUS_PATH_INTERNAL if there are no exits in the consensus.
  1676. * (This situation typically occurs during bootstrap of a test network.)
  1677. * Set to CONSENSUS_PATH_UNKNOWN if we have never checked, or have
  1678. * reason to believe our last known value was invalid or has expired.
  1679. * If we're in a network with TestingDirAuthVoteExit set,
  1680. * this can cause router_have_consensus_path() to be set to
  1681. * CONSENSUS_PATH_EXIT, even if there are no nodes with accept exit policies.
  1682. */
  1683. MOCK_IMPL(consensus_path_type_t,
  1684. router_have_consensus_path, (void))
  1685. {
  1686. return have_consensus_path;
  1687. }
  1688. /** Called when our internal view of the directory has changed. This can be
  1689. * when the authorities change, networkstatuses change, the list of routerdescs
  1690. * changes, or number of running routers changes.
  1691. */
  1692. void
  1693. router_dir_info_changed(void)
  1694. {
  1695. need_to_update_have_min_dir_info = 1;
  1696. rend_hsdir_routers_changed();
  1697. }
  1698. /** Return a string describing what we're missing before we have enough
  1699. * directory info. */
  1700. const char *
  1701. get_dir_info_status_string(void)
  1702. {
  1703. return dir_info_status;
  1704. }
  1705. /** Iterate over the servers listed in <b>consensus</b>, and count how many of
  1706. * them seem like ones we'd use (store this in *<b>num_usable</b>), and how
  1707. * many of <em>those</em> we have descriptors for (store this in
  1708. * *<b>num_present</b>).
  1709. *
  1710. * If <b>in_set</b> is non-NULL, only consider those routers in <b>in_set</b>.
  1711. * If <b>exit_only</b> is USABLE_DESCRIPTOR_EXIT_ONLY, only consider nodes
  1712. * with the Exit flag.
  1713. * If *<b>descs_out</b> is present, add a node_t for each usable descriptor
  1714. * to it.
  1715. */
  1716. static void
  1717. count_usable_descriptors(int *num_present, int *num_usable,
  1718. smartlist_t *descs_out,
  1719. const networkstatus_t *consensus,
  1720. time_t now,
  1721. routerset_t *in_set,
  1722. usable_descriptor_t exit_only)
  1723. {
  1724. const int md = (consensus->flavor == FLAV_MICRODESC);
  1725. *num_present = 0, *num_usable = 0;
  1726. SMARTLIST_FOREACH_BEGIN(consensus->routerstatus_list, routerstatus_t *, rs)
  1727. {
  1728. const node_t *node = node_get_by_id(rs->identity_digest);
  1729. if (!node)
  1730. continue; /* This would be a bug: every entry in the consensus is
  1731. * supposed to have a node. */
  1732. if (exit_only == USABLE_DESCRIPTOR_EXIT_ONLY && ! rs->is_exit)
  1733. continue;
  1734. if (in_set && ! routerset_contains_routerstatus(in_set, rs, -1))
  1735. continue;
  1736. if (client_would_use_router(rs, now)) {
  1737. const char * const digest = rs->descriptor_digest;
  1738. int present;
  1739. ++*num_usable; /* the consensus says we want it. */
  1740. if (md)
  1741. present = NULL != microdesc_cache_lookup_by_digest256(NULL, digest);
  1742. else
  1743. present = NULL != router_get_by_descriptor_digest(digest);
  1744. if (present) {
  1745. /* we have the descriptor listed in the consensus. */
  1746. ++*num_present;
  1747. }
  1748. if (descs_out)
  1749. smartlist_add(descs_out, (node_t*)node);
  1750. }
  1751. }
  1752. SMARTLIST_FOREACH_END(rs);
  1753. log_debug(LD_DIR, "%d usable, %d present (%s%s).",
  1754. *num_usable, *num_present,
  1755. md ? "microdesc" : "desc",
  1756. exit_only == USABLE_DESCRIPTOR_EXIT_ONLY ? " exits" : "s");
  1757. }
  1758. /** Return an estimate of which fraction of usable paths through the Tor
  1759. * network we have available for use. Count how many routers seem like ones
  1760. * we'd use (store this in *<b>num_usable_out</b>), and how many of
  1761. * <em>those</em> we have descriptors for (store this in
  1762. * *<b>num_present_out</b>.)
  1763. *
  1764. * If **<b>status_out</b> is present, allocate a new string and print the
  1765. * available percentages of guard, middle, and exit nodes to it, noting
  1766. * whether there are exits in the consensus.
  1767. * If there are no exits in the consensus, we treat the exit fraction as 100%,
  1768. * but set router_have_consensus_path() so that we can only build internal
  1769. * paths. */
  1770. static double
  1771. compute_frac_paths_available(const networkstatus_t *consensus,
  1772. const or_options_t *options, time_t now,
  1773. int *num_present_out, int *num_usable_out,
  1774. char **status_out)
  1775. {
  1776. smartlist_t *guards = smartlist_new();
  1777. smartlist_t *mid = smartlist_new();
  1778. smartlist_t *exits = smartlist_new();
  1779. double f_guard, f_mid, f_exit;
  1780. double f_path = 0.0;
  1781. /* Used to determine whether there are any exits in the consensus */
  1782. int np = 0;
  1783. /* Used to determine whether there are any exits with descriptors */
  1784. int nu = 0;
  1785. const int authdir = authdir_mode_v3(options);
  1786. count_usable_descriptors(num_present_out, num_usable_out,
  1787. mid, consensus, now, NULL,
  1788. USABLE_DESCRIPTOR_ALL);
  1789. if (options->EntryNodes) {
  1790. count_usable_descriptors(&np, &nu, guards, consensus, now,
  1791. options->EntryNodes, USABLE_DESCRIPTOR_ALL);
  1792. } else {
  1793. SMARTLIST_FOREACH(mid, const node_t *, node, {
  1794. if (authdir) {
  1795. if (node->rs && node->rs->is_possible_guard)
  1796. smartlist_add(guards, (node_t*)node);
  1797. } else {
  1798. if (node->is_possible_guard)
  1799. smartlist_add(guards, (node_t*)node);
  1800. }
  1801. });
  1802. }
  1803. /* All nodes with exit flag
  1804. * If we're in a network with TestingDirAuthVoteExit set,
  1805. * this can cause false positives on have_consensus_path,
  1806. * incorrectly setting it to CONSENSUS_PATH_EXIT. This is
  1807. * an unavoidable feature of forcing authorities to declare
  1808. * certain nodes as exits.
  1809. */
  1810. count_usable_descriptors(&np, &nu, exits, consensus, now,
  1811. NULL, USABLE_DESCRIPTOR_EXIT_ONLY);
  1812. log_debug(LD_NET,
  1813. "%s: %d present, %d usable",
  1814. "exits",
  1815. np,
  1816. nu);
  1817. /* We need at least 1 exit present in the consensus to consider
  1818. * building exit paths */
  1819. /* Update our understanding of whether the consensus has exits */
  1820. consensus_path_type_t old_have_consensus_path = have_consensus_path;
  1821. have_consensus_path = ((nu > 0) ?
  1822. CONSENSUS_PATH_EXIT :
  1823. CONSENSUS_PATH_INTERNAL);
  1824. if (have_consensus_path == CONSENSUS_PATH_INTERNAL
  1825. && old_have_consensus_path != have_consensus_path) {
  1826. log_notice(LD_NET,
  1827. "The current consensus has no exit nodes. "
  1828. "Tor can only build internal paths, "
  1829. "such as paths to hidden services.");
  1830. /* However, exit nodes can reachability self-test using this consensus,
  1831. * join the network, and appear in a later consensus. This will allow
  1832. * the network to build exit paths, such as paths for world wide web
  1833. * browsing (as distinct from hidden service web browsing). */
  1834. }
  1835. f_guard = frac_nodes_with_descriptors(guards, WEIGHT_FOR_GUARD);
  1836. f_mid = frac_nodes_with_descriptors(mid, WEIGHT_FOR_MID);
  1837. f_exit = frac_nodes_with_descriptors(exits, WEIGHT_FOR_EXIT);
  1838. log_debug(LD_NET,
  1839. "f_guard: %.2f, f_mid: %.2f, f_exit: %.2f",
  1840. f_guard,
  1841. f_mid,
  1842. f_exit);
  1843. smartlist_free(guards);
  1844. smartlist_free(mid);
  1845. smartlist_free(exits);
  1846. if (options->ExitNodes) {
  1847. double f_myexit, f_myexit_unflagged;
  1848. smartlist_t *myexits= smartlist_new();
  1849. smartlist_t *myexits_unflagged = smartlist_new();
  1850. /* All nodes with exit flag in ExitNodes option */
  1851. count_usable_descriptors(&np, &nu, myexits, consensus, now,
  1852. options->ExitNodes, USABLE_DESCRIPTOR_EXIT_ONLY);
  1853. log_debug(LD_NET,
  1854. "%s: %d present, %d usable",
  1855. "myexits",
  1856. np,
  1857. nu);
  1858. /* Now compute the nodes in the ExitNodes option where which we don't know
  1859. * what their exit policy is, or we know it permits something. */
  1860. count_usable_descriptors(&np, &nu, myexits_unflagged,
  1861. consensus, now,
  1862. options->ExitNodes, USABLE_DESCRIPTOR_ALL);
  1863. log_debug(LD_NET,
  1864. "%s: %d present, %d usable",
  1865. "myexits_unflagged (initial)",
  1866. np,
  1867. nu);
  1868. SMARTLIST_FOREACH_BEGIN(myexits_unflagged, const node_t *, node) {
  1869. if (node_has_descriptor(node) && node_exit_policy_rejects_all(node)) {
  1870. SMARTLIST_DEL_CURRENT(myexits_unflagged, node);
  1871. /* this node is not actually an exit */
  1872. np--;
  1873. /* this node is unusable as an exit */
  1874. nu--;
  1875. }
  1876. } SMARTLIST_FOREACH_END(node);
  1877. log_debug(LD_NET,
  1878. "%s: %d present, %d usable",
  1879. "myexits_unflagged (final)",
  1880. np,
  1881. nu);
  1882. f_myexit= frac_nodes_with_descriptors(myexits,WEIGHT_FOR_EXIT);
  1883. f_myexit_unflagged=
  1884. frac_nodes_with_descriptors(myexits_unflagged,WEIGHT_FOR_EXIT);
  1885. log_debug(LD_NET,
  1886. "f_exit: %.2f, f_myexit: %.2f, f_myexit_unflagged: %.2f",
  1887. f_exit,
  1888. f_myexit,
  1889. f_myexit_unflagged);
  1890. /* If our ExitNodes list has eliminated every possible Exit node, and there
  1891. * were some possible Exit nodes, then instead consider nodes that permit
  1892. * exiting to some ports. */
  1893. if (smartlist_len(myexits) == 0 &&
  1894. smartlist_len(myexits_unflagged)) {
  1895. f_myexit = f_myexit_unflagged;
  1896. }
  1897. smartlist_free(myexits);
  1898. smartlist_free(myexits_unflagged);
  1899. /* This is a tricky point here: we don't want to make it easy for a
  1900. * directory to trickle exits to us until it learns which exits we have
  1901. * configured, so require that we have a threshold both of total exits
  1902. * and usable exits. */
  1903. if (f_myexit < f_exit)
  1904. f_exit = f_myexit;
  1905. }
  1906. /* if the consensus has no exits, treat the exit fraction as 100% */
  1907. if (router_have_consensus_path() != CONSENSUS_PATH_EXIT) {
  1908. f_exit = 1.0;
  1909. }
  1910. f_path = f_guard * f_mid * f_exit;
  1911. if (status_out)
  1912. tor_asprintf(status_out,
  1913. "%d%% of guards bw, "
  1914. "%d%% of midpoint bw, and "
  1915. "%d%% of exit bw%s = "
  1916. "%d%% of path bw",
  1917. (int)(f_guard*100),
  1918. (int)(f_mid*100),
  1919. (int)(f_exit*100),
  1920. (router_have_consensus_path() == CONSENSUS_PATH_EXIT ?
  1921. "" :
  1922. " (no exits in consensus)"),
  1923. (int)(f_path*100));
  1924. return f_path;
  1925. }
  1926. /** We just fetched a new set of descriptors. Compute how far through
  1927. * the "loading descriptors" bootstrapping phase we are, so we can inform
  1928. * the controller of our progress. */
  1929. int
  1930. count_loading_descriptors_progress(void)
  1931. {
  1932. int num_present = 0, num_usable=0;
  1933. time_t now = time(NULL);
  1934. const or_options_t *options = get_options();
  1935. const networkstatus_t *consensus =
  1936. networkstatus_get_reasonably_live_consensus(now,usable_consensus_flavor());
  1937. double paths, fraction;
  1938. if (!consensus)
  1939. return 0; /* can't count descriptors if we have no list of them */
  1940. paths = compute_frac_paths_available(consensus, options, now,
  1941. &num_present, &num_usable,
  1942. NULL);
  1943. fraction = paths / get_frac_paths_needed_for_circs(options,consensus);
  1944. if (fraction > 1.0)
  1945. return 0; /* it's not the number of descriptors holding us back */
  1946. return BOOTSTRAP_STATUS_LOADING_DESCRIPTORS + (int)
  1947. (fraction*(BOOTSTRAP_STATUS_CONN_OR-1 -
  1948. BOOTSTRAP_STATUS_LOADING_DESCRIPTORS));
  1949. }
  1950. /** Return the fraction of paths needed before we're willing to build
  1951. * circuits, as configured in <b>options</b>, or in the consensus <b>ns</b>. */
  1952. static double
  1953. get_frac_paths_needed_for_circs(const or_options_t *options,
  1954. const networkstatus_t *ns)
  1955. {
  1956. #define DFLT_PCT_USABLE_NEEDED 60
  1957. if (options->PathsNeededToBuildCircuits >= 0.0) {
  1958. return options->PathsNeededToBuildCircuits;
  1959. } else {
  1960. return networkstatus_get_param(ns, "min_paths_for_circs_pct",
  1961. DFLT_PCT_USABLE_NEEDED,
  1962. 25, 95)/100.0;
  1963. }
  1964. }
  1965. /** Change the value of have_min_dir_info, setting it true iff we have enough
  1966. * network and router information to build circuits. Clear the value of
  1967. * need_to_update_have_min_dir_info. */
  1968. static void
  1969. update_router_have_minimum_dir_info(void)
  1970. {
  1971. time_t now = time(NULL);
  1972. int res;
  1973. const or_options_t *options = get_options();
  1974. const networkstatus_t *consensus =
  1975. networkstatus_get_reasonably_live_consensus(now,usable_consensus_flavor());
  1976. int using_md;
  1977. if (!consensus) {
  1978. if (!networkstatus_get_latest_consensus())
  1979. strlcpy(dir_info_status, "We have no usable consensus.",
  1980. sizeof(dir_info_status));
  1981. else
  1982. strlcpy(dir_info_status, "We have no recent usable consensus.",
  1983. sizeof(dir_info_status));
  1984. res = 0;
  1985. goto done;
  1986. }
  1987. using_md = consensus->flavor == FLAV_MICRODESC;
  1988. if (! entry_guards_have_enough_dir_info_to_build_circuits()) {
  1989. strlcpy(dir_info_status, "We're missing descriptors for some of our "
  1990. "primary entry guards", sizeof(dir_info_status));
  1991. res = 0;
  1992. goto done;
  1993. }
  1994. /* Check fraction of available paths */
  1995. {
  1996. char *status = NULL;
  1997. int num_present=0, num_usable=0;
  1998. double paths = compute_frac_paths_available(consensus, options, now,
  1999. &num_present, &num_usable,
  2000. &status);
  2001. if (paths < get_frac_paths_needed_for_circs(options,consensus)) {
  2002. tor_snprintf(dir_info_status, sizeof(dir_info_status),
  2003. "We need more %sdescriptors: we have %d/%d, and "
  2004. "can only build %d%% of likely paths. (We have %s.)",
  2005. using_md?"micro":"", num_present, num_usable,
  2006. (int)(paths*100), status);
  2007. tor_free(status);
  2008. res = 0;
  2009. control_event_bootstrap(BOOTSTRAP_STATUS_REQUESTING_DESCRIPTORS, 0);
  2010. goto done;
  2011. }
  2012. tor_free(status);
  2013. res = 1;
  2014. }
  2015. done:
  2016. /* If paths have just become available in this update. */
  2017. if (res && !have_min_dir_info) {
  2018. control_event_client_status(LOG_NOTICE, "ENOUGH_DIR_INFO");
  2019. if (control_event_bootstrap(BOOTSTRAP_STATUS_CONN_OR, 0) == 0) {
  2020. log_notice(LD_DIR,
  2021. "We now have enough directory information to build circuits.");
  2022. }
  2023. }
  2024. /* If paths have just become unavailable in this update. */
  2025. if (!res && have_min_dir_info) {
  2026. int quiet = directory_too_idle_to_fetch_descriptors(options, now);
  2027. tor_log(quiet ? LOG_INFO : LOG_NOTICE, LD_DIR,
  2028. "Our directory information is no longer up-to-date "
  2029. "enough to build circuits: %s", dir_info_status);
  2030. /* a) make us log when we next complete a circuit, so we know when Tor
  2031. * is back up and usable, and b) disable some activities that Tor
  2032. * should only do while circuits are working, like reachability tests
  2033. * and fetching bridge descriptors only over circuits. */
  2034. note_that_we_maybe_cant_complete_circuits();
  2035. have_consensus_path = CONSENSUS_PATH_UNKNOWN;
  2036. control_event_client_status(LOG_NOTICE, "NOT_ENOUGH_DIR_INFO");
  2037. }
  2038. have_min_dir_info = res;
  2039. need_to_update_have_min_dir_info = 0;
  2040. }