nodelist.c 80 KB

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