nodelist.c 77 KB

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