nodelist.c 79 KB

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