nodelist.c 82 KB

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