nodelist.c 65 KB

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