nodelist.c 70 KB

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