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