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