nodelist.c 74 KB

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