nodelist.c 82 KB

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