entrynodes.c 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2017, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file entrynodes.c
  8. * \brief Code to manage our fixed first nodes for various functions.
  9. *
  10. * Entry nodes can be guards (for general use) or bridges (for censorship
  11. * circumvention).
  12. *
  13. * In general, we use entry guards to prevent traffic-sampling attacks:
  14. * if we chose every circuit independently, an adversary controlling
  15. * some fraction of paths on the network would observe a sample of every
  16. * user's traffic. Using guards gives users a chance of not being
  17. * profiled.
  18. *
  19. * The current entry guard selection code is designed to try to avoid
  20. * _ever_ trying every guard on the network, to try to stick to guards
  21. * that we've used before, to handle hostile/broken networks, and
  22. * to behave sanely when the network goes up and down.
  23. *
  24. * Our algorithm works as follows: First, we maintain a SAMPLE of guards
  25. * we've seen in the networkstatus consensus. We maintain this sample
  26. * over time, and store it persistently; it is chosen without reference
  27. * to our configuration or firewall rules. Guards remain in the sample
  28. * as they enter and leave the consensus. We expand this sample as
  29. * needed, up to a maximum size.
  30. *
  31. * As a subset of the sample, we maintain a FILTERED SET of the guards
  32. * that we would be willing to use if we could connect to them. The
  33. * filter removes all the guards that we're excluding because they're
  34. * bridges (or not bridges), because we have restrictive firewall rules,
  35. * because of ExcludeNodes, because we of path bias restrictions,
  36. * because they're absent from the network at present, and so on.
  37. *
  38. * As a subset of the filtered set, we keep a REACHABLE FILTERED SET
  39. * (also called a "usable filtered set") of those guards that we call
  40. * "reachable" or "maybe reachable". A guard is reachable if we've
  41. * connected to it more recently than we've failed. A guard is "maybe
  42. * reachable" if we have never tried to connect to it, or if we
  43. * failed to connect to it so long ago that we no longer think our
  44. * failure means it's down.
  45. *
  46. * As a persistent ordered list whose elements are taken from the
  47. * sampled set, we track a CONFIRMED GUARDS LIST. A guard becomes
  48. * confirmed when we successfully build a circuit through it, and decide
  49. * to use that circuit. We order the guards on this list by the order
  50. * in which they became confirmed.
  51. *
  52. * And as a final group, we have an ordered list of PRIMARY GUARDS,
  53. * whose elements are taken from the filtered set. We prefer
  54. * confirmed guards to non-confirmed guards for this list, and place
  55. * other restrictions on it. The primary guards are the ones that we
  56. * connect to "when nothing is wrong" -- circuits through them can be used
  57. * immediately.
  58. *
  59. * To build circuits, we take a primary guard if possible -- or a
  60. * reachable filtered confirmed guard if no primary guard is possible --
  61. * or a random reachable filtered guard otherwise. If the guard is
  62. * primary, we can use the circuit immediately on success. Otherwise,
  63. * the guard is now "pending" -- we won't use its circuit unless all
  64. * of the circuits we're trying to build through better guards have
  65. * definitely failed.
  66. *
  67. * While we're building circuits, we track a little "guard state" for
  68. * each circuit. We use this to keep track of whether the circuit is
  69. * one that we can use as soon as it's done, or whether it's one that
  70. * we should keep around to see if we can do better. In the latter case,
  71. * a periodic call to entry_guards_upgrade_waiting_circuits() will
  72. * eventually upgrade it.
  73. **/
  74. /* DOCDOC -- expand this.
  75. *
  76. * Information invariants:
  77. *
  78. * [x] whenever a guard becomes unreachable, clear its usable_filtered flag.
  79. *
  80. * [x] Whenever a guard becomes reachable or maybe-reachable, if its filtered
  81. * flag is set, set its usable_filtered flag.
  82. *
  83. * [x] Whenever we get a new consensus, call update_from_consensus(). (LATER.)
  84. *
  85. * [x] Whenever the configuration changes in a relevant way, update the
  86. * filtered/usable flags. (LATER.)
  87. *
  88. * [x] Whenever we add a guard to the sample, make sure its filtered/usable
  89. * flags are set as possible.
  90. *
  91. * [x] Whenever we remove a guard from the sample, remove it from the primary
  92. * and confirmed lists.
  93. *
  94. * [x] When we make a guard confirmed, update the primary list.
  95. *
  96. * [x] When we make a guard filtered or unfiltered, update the primary list.
  97. *
  98. * [x] When we are about to pick a guard, make sure that the primary list is
  99. * full.
  100. *
  101. * [x] Before calling sample_reachable_filtered_entry_guards(), make sure
  102. * that the filtered, primary, and confirmed flags are up-to-date.
  103. *
  104. * [x] Call entry_guard_consider_retry every time we are about to check
  105. * is_usable_filtered or is_reachable, and every time we set
  106. * is_filtered to 1.
  107. *
  108. * [x] Call entry_guards_changed_for_guard_selection() whenever we update
  109. * a persistent field.
  110. */
  111. #define ENTRYNODES_PRIVATE
  112. #include "or.h"
  113. #include "channel.h"
  114. #include "bridges.h"
  115. #include "circpathbias.h"
  116. #include "circuitbuild.h"
  117. #include "circuitlist.h"
  118. #include "circuitstats.h"
  119. #include "config.h"
  120. #include "confparse.h"
  121. #include "connection.h"
  122. #include "control.h"
  123. #include "crypto_rand.h"
  124. #include "directory.h"
  125. #include "entrynodes.h"
  126. #include "main.h"
  127. #include "microdesc.h"
  128. #include "networkstatus.h"
  129. #include "nodelist.h"
  130. #include "policies.h"
  131. #include "router.h"
  132. #include "routerlist.h"
  133. #include "routerparse.h"
  134. #include "routerset.h"
  135. #include "transports.h"
  136. #include "statefile.h"
  137. /** A list of existing guard selection contexts. */
  138. static smartlist_t *guard_contexts = NULL;
  139. /** The currently enabled guard selection context. */
  140. static guard_selection_t *curr_guard_context = NULL;
  141. /** A value of 1 means that at least one context has changed,
  142. * and those changes need to be flushed to disk. */
  143. static int entry_guards_dirty = 0;
  144. static void entry_guard_set_filtered_flags(const or_options_t *options,
  145. guard_selection_t *gs,
  146. entry_guard_t *guard);
  147. static void pathbias_check_use_success_count(entry_guard_t *guard);
  148. static void pathbias_check_close_success_count(entry_guard_t *guard);
  149. static int node_is_possible_guard(const node_t *node);
  150. static int node_passes_guard_filter(const or_options_t *options,
  151. const node_t *node);
  152. static entry_guard_t *entry_guard_add_to_sample_impl(guard_selection_t *gs,
  153. const uint8_t *rsa_id_digest,
  154. const char *nickname,
  155. const tor_addr_port_t *bridge_addrport);
  156. static entry_guard_t *get_sampled_guard_by_bridge_addr(guard_selection_t *gs,
  157. const tor_addr_port_t *addrport);
  158. static int entry_guard_obeys_restriction(const entry_guard_t *guard,
  159. const entry_guard_restriction_t *rst);
  160. /** Return 0 if we should apply guardfraction information found in the
  161. * consensus. A specific consensus can be specified with the
  162. * <b>ns</b> argument, if NULL the most recent one will be picked.*/
  163. int
  164. should_apply_guardfraction(const networkstatus_t *ns)
  165. {
  166. /* We need to check the corresponding torrc option and the consensus
  167. * parameter if we need to. */
  168. const or_options_t *options = get_options();
  169. /* If UseGuardFraction is 'auto' then check the same-named consensus
  170. * parameter. If the consensus parameter is not present, default to
  171. * "off". */
  172. if (options->UseGuardFraction == -1) {
  173. return networkstatus_get_param(ns, "UseGuardFraction",
  174. 0, /* default to "off" */
  175. 0, 1);
  176. }
  177. return options->UseGuardFraction;
  178. }
  179. /** Return true iff we know a descriptor for <b>guard</b> */
  180. static int
  181. guard_has_descriptor(const entry_guard_t *guard)
  182. {
  183. const node_t *node = node_get_by_id(guard->identity);
  184. if (!node)
  185. return 0;
  186. return node_has_descriptor(node);
  187. }
  188. /**
  189. * Try to determine the correct type for a selection named "name",
  190. * if <b>type</b> is GS_TYPE_INFER.
  191. */
  192. STATIC guard_selection_type_t
  193. guard_selection_infer_type(guard_selection_type_t type,
  194. const char *name)
  195. {
  196. if (type == GS_TYPE_INFER) {
  197. if (!strcmp(name, "bridges"))
  198. type = GS_TYPE_BRIDGE;
  199. else if (!strcmp(name, "restricted"))
  200. type = GS_TYPE_RESTRICTED;
  201. else
  202. type = GS_TYPE_NORMAL;
  203. }
  204. return type;
  205. }
  206. /**
  207. * Allocate and return a new guard_selection_t, with the name <b>name</b>.
  208. */
  209. STATIC guard_selection_t *
  210. guard_selection_new(const char *name,
  211. guard_selection_type_t type)
  212. {
  213. guard_selection_t *gs;
  214. type = guard_selection_infer_type(type, name);
  215. gs = tor_malloc_zero(sizeof(*gs));
  216. gs->name = tor_strdup(name);
  217. gs->type = type;
  218. gs->sampled_entry_guards = smartlist_new();
  219. gs->confirmed_entry_guards = smartlist_new();
  220. gs->primary_entry_guards = smartlist_new();
  221. return gs;
  222. }
  223. /**
  224. * Return the guard selection called <b>name</b>. If there is none, and
  225. * <b>create_if_absent</b> is true, then create and return it. If there
  226. * is none, and <b>create_if_absent</b> is false, then return NULL.
  227. */
  228. STATIC guard_selection_t *
  229. get_guard_selection_by_name(const char *name,
  230. guard_selection_type_t type,
  231. int create_if_absent)
  232. {
  233. if (!guard_contexts) {
  234. guard_contexts = smartlist_new();
  235. }
  236. SMARTLIST_FOREACH_BEGIN(guard_contexts, guard_selection_t *, gs) {
  237. if (!strcmp(gs->name, name))
  238. return gs;
  239. } SMARTLIST_FOREACH_END(gs);
  240. if (! create_if_absent)
  241. return NULL;
  242. log_debug(LD_GUARD, "Creating a guard selection called %s", name);
  243. guard_selection_t *new_selection = guard_selection_new(name, type);
  244. smartlist_add(guard_contexts, new_selection);
  245. return new_selection;
  246. }
  247. /**
  248. * Allocate the first guard context that we're planning to use,
  249. * and make it the current context.
  250. */
  251. static void
  252. create_initial_guard_context(void)
  253. {
  254. tor_assert(! curr_guard_context);
  255. if (!guard_contexts) {
  256. guard_contexts = smartlist_new();
  257. }
  258. guard_selection_type_t type = GS_TYPE_INFER;
  259. const char *name = choose_guard_selection(
  260. get_options(),
  261. networkstatus_get_live_consensus(approx_time()),
  262. NULL,
  263. &type);
  264. tor_assert(name); // "name" can only be NULL if we had an old name.
  265. tor_assert(type != GS_TYPE_INFER);
  266. log_notice(LD_GUARD, "Starting with guard context \"%s\"", name);
  267. curr_guard_context = get_guard_selection_by_name(name, type, 1);
  268. }
  269. /** Get current default guard_selection_t, creating it if necessary */
  270. guard_selection_t *
  271. get_guard_selection_info(void)
  272. {
  273. if (!curr_guard_context) {
  274. create_initial_guard_context();
  275. }
  276. return curr_guard_context;
  277. }
  278. /** Return a statically allocated human-readable description of <b>guard</b>
  279. */
  280. const char *
  281. entry_guard_describe(const entry_guard_t *guard)
  282. {
  283. static char buf[256];
  284. tor_snprintf(buf, sizeof(buf),
  285. "%s ($%s)",
  286. strlen(guard->nickname) ? guard->nickname : "[bridge]",
  287. hex_str(guard->identity, DIGEST_LEN));
  288. return buf;
  289. }
  290. /** Return <b>guard</b>'s 20-byte RSA identity digest */
  291. const char *
  292. entry_guard_get_rsa_id_digest(const entry_guard_t *guard)
  293. {
  294. return guard->identity;
  295. }
  296. /** Return the pathbias state associated with <b>guard</b>. */
  297. guard_pathbias_t *
  298. entry_guard_get_pathbias_state(entry_guard_t *guard)
  299. {
  300. return &guard->pb;
  301. }
  302. HANDLE_IMPL(entry_guard, entry_guard_t, ATTR_UNUSED STATIC)
  303. /** Return an interval betweeen 'now' and 'max_backdate' seconds in the past,
  304. * chosen uniformly at random. We use this before recording persistent
  305. * dates, so that we aren't leaking exactly when we recorded it.
  306. */
  307. MOCK_IMPL(STATIC time_t,
  308. randomize_time,(time_t now, time_t max_backdate))
  309. {
  310. tor_assert(max_backdate > 0);
  311. time_t earliest = now - max_backdate;
  312. time_t latest = now;
  313. if (earliest <= 0)
  314. earliest = 1;
  315. if (latest <= earliest)
  316. latest = earliest + 1;
  317. return crypto_rand_time_range(earliest, latest);
  318. }
  319. /**
  320. * @name parameters for networkstatus algorithm
  321. *
  322. * These parameters are taken from the consensus; some are overrideable in
  323. * the torrc.
  324. */
  325. /**@{*/
  326. /**
  327. * We never let our sampled guard set grow larger than this fraction
  328. * of the guards on the network.
  329. */
  330. STATIC double
  331. get_max_sample_threshold(void)
  332. {
  333. int32_t pct =
  334. networkstatus_get_param(NULL, "guard-max-sample-threshold-percent",
  335. DFLT_MAX_SAMPLE_THRESHOLD_PERCENT,
  336. 1, 100);
  337. return pct / 100.0;
  338. }
  339. /**
  340. * We never let our sampled guard set grow larger than this number.
  341. */
  342. STATIC int
  343. get_max_sample_size_absolute(void)
  344. {
  345. return (int) networkstatus_get_param(NULL, "guard-max-sample-size",
  346. DFLT_MAX_SAMPLE_SIZE,
  347. 1, INT32_MAX);
  348. }
  349. /**
  350. * We always try to make our sample contain at least this many guards.
  351. */
  352. STATIC int
  353. get_min_filtered_sample_size(void)
  354. {
  355. return networkstatus_get_param(NULL, "guard-min-filtered-sample-size",
  356. DFLT_MIN_FILTERED_SAMPLE_SIZE,
  357. 1, INT32_MAX);
  358. }
  359. /**
  360. * If a guard is unlisted for this many days in a row, we remove it.
  361. */
  362. STATIC int
  363. get_remove_unlisted_guards_after_days(void)
  364. {
  365. return networkstatus_get_param(NULL,
  366. "guard-remove-unlisted-guards-after-days",
  367. DFLT_REMOVE_UNLISTED_GUARDS_AFTER_DAYS,
  368. 1, 365*10);
  369. }
  370. /**
  371. * We remove unconfirmed guards from the sample after this many days,
  372. * regardless of whether they are listed or unlisted.
  373. */
  374. STATIC int
  375. get_guard_lifetime(void)
  376. {
  377. if (get_options()->GuardLifetime >= 86400)
  378. return get_options()->GuardLifetime;
  379. int32_t days;
  380. days = networkstatus_get_param(NULL,
  381. "guard-lifetime-days",
  382. DFLT_GUARD_LIFETIME_DAYS, 1, 365*10);
  383. return days * 86400;
  384. }
  385. /**
  386. * We remove confirmed guards from the sample if they were sampled
  387. * GUARD_LIFETIME_DAYS ago and confirmed this many days ago.
  388. */
  389. STATIC int
  390. get_guard_confirmed_min_lifetime(void)
  391. {
  392. if (get_options()->GuardLifetime >= 86400)
  393. return get_options()->GuardLifetime;
  394. int32_t days;
  395. days = networkstatus_get_param(NULL, "guard-confirmed-min-lifetime-days",
  396. DFLT_GUARD_CONFIRMED_MIN_LIFETIME_DAYS,
  397. 1, 365*10);
  398. return days * 86400;
  399. }
  400. /**
  401. * How many guards do we try to keep on our primary guard list?
  402. */
  403. STATIC int
  404. get_n_primary_guards(void)
  405. {
  406. const int n = get_options()->NumEntryGuards;
  407. const int n_dir = get_options()->NumDirectoryGuards;
  408. if (n > 5) {
  409. return MAX(n_dir, n + n / 2);
  410. } else if (n >= 1) {
  411. return MAX(n_dir, n * 2);
  412. }
  413. return networkstatus_get_param(NULL,
  414. "guard-n-primary-guards",
  415. DFLT_N_PRIMARY_GUARDS, 1, INT32_MAX);
  416. }
  417. /**
  418. * Return the number of the live primary guards we should look at when
  419. * making a circuit.
  420. */
  421. STATIC int
  422. get_n_primary_guards_to_use(guard_usage_t usage)
  423. {
  424. int configured;
  425. const char *param_name;
  426. int param_default;
  427. if (usage == GUARD_USAGE_DIRGUARD) {
  428. configured = get_options()->NumDirectoryGuards;
  429. param_name = "guard-n-primary-dir-guards-to-use";
  430. param_default = DFLT_N_PRIMARY_DIR_GUARDS_TO_USE;
  431. } else {
  432. configured = get_options()->NumEntryGuards;
  433. param_name = "guard-n-primary-guards-to-use";
  434. param_default = DFLT_N_PRIMARY_GUARDS_TO_USE;
  435. }
  436. if (configured >= 1) {
  437. return configured;
  438. }
  439. return networkstatus_get_param(NULL,
  440. param_name, param_default, 1, INT32_MAX);
  441. }
  442. /**
  443. * If we haven't successfully built or used a circuit in this long, then
  444. * consider that the internet is probably down.
  445. */
  446. STATIC int
  447. get_internet_likely_down_interval(void)
  448. {
  449. return networkstatus_get_param(NULL, "guard-internet-likely-down-interval",
  450. DFLT_INTERNET_LIKELY_DOWN_INTERVAL,
  451. 1, INT32_MAX);
  452. }
  453. /**
  454. * If we're trying to connect to a nonprimary guard for at least this
  455. * many seconds, and we haven't gotten the connection to work, we will treat
  456. * lower-priority guards as usable.
  457. */
  458. STATIC int
  459. get_nonprimary_guard_connect_timeout(void)
  460. {
  461. return networkstatus_get_param(NULL,
  462. "guard-nonprimary-guard-connect-timeout",
  463. DFLT_NONPRIMARY_GUARD_CONNECT_TIMEOUT,
  464. 1, INT32_MAX);
  465. }
  466. /**
  467. * If a circuit has been sitting around in 'waiting for better guard' state
  468. * for at least this long, we'll expire it.
  469. */
  470. STATIC int
  471. get_nonprimary_guard_idle_timeout(void)
  472. {
  473. return networkstatus_get_param(NULL,
  474. "guard-nonprimary-guard-idle-timeout",
  475. DFLT_NONPRIMARY_GUARD_IDLE_TIMEOUT,
  476. 1, INT32_MAX);
  477. }
  478. /**
  479. * If our configuration retains fewer than this fraction of guards from the
  480. * torrc, we are in a restricted setting.
  481. */
  482. STATIC double
  483. get_meaningful_restriction_threshold(void)
  484. {
  485. int32_t pct = networkstatus_get_param(NULL,
  486. "guard-meaningful-restriction-percent",
  487. DFLT_MEANINGFUL_RESTRICTION_PERCENT,
  488. 1, INT32_MAX);
  489. return pct / 100.0;
  490. }
  491. /**
  492. * If our configuration retains fewer than this fraction of guards from the
  493. * torrc, we are in an extremely restricted setting, and should warn.
  494. */
  495. STATIC double
  496. get_extreme_restriction_threshold(void)
  497. {
  498. int32_t pct = networkstatus_get_param(NULL,
  499. "guard-extreme-restriction-percent",
  500. DFLT_EXTREME_RESTRICTION_PERCENT,
  501. 1, INT32_MAX);
  502. return pct / 100.0;
  503. }
  504. /* Mark <b>guard</b> as maybe reachable again. */
  505. static void
  506. mark_guard_maybe_reachable(entry_guard_t *guard)
  507. {
  508. if (guard->is_reachable != GUARD_REACHABLE_NO) {
  509. return;
  510. }
  511. /* Note that we do not clear failing_since: this guard is now only
  512. * _maybe-reachable_. */
  513. guard->is_reachable = GUARD_REACHABLE_MAYBE;
  514. if (guard->is_filtered_guard)
  515. guard->is_usable_filtered_guard = 1;
  516. }
  517. /**
  518. * Called when the network comes up after having seemed to be down for
  519. * a while: Mark the primary guards as maybe-reachable so that we'll
  520. * try them again.
  521. */
  522. STATIC void
  523. mark_primary_guards_maybe_reachable(guard_selection_t *gs)
  524. {
  525. tor_assert(gs);
  526. if (!gs->primary_guards_up_to_date)
  527. entry_guards_update_primary(gs);
  528. SMARTLIST_FOREACH_BEGIN(gs->primary_entry_guards, entry_guard_t *, guard) {
  529. mark_guard_maybe_reachable(guard);
  530. } SMARTLIST_FOREACH_END(guard);
  531. }
  532. /* Called when we exhaust all guards in our sampled set: Marks all guards as
  533. maybe-reachable so that we 'll try them again. */
  534. static void
  535. mark_all_guards_maybe_reachable(guard_selection_t *gs)
  536. {
  537. tor_assert(gs);
  538. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  539. mark_guard_maybe_reachable(guard);
  540. } SMARTLIST_FOREACH_END(guard);
  541. }
  542. /**@}*/
  543. /**
  544. * Given our options and our list of nodes, return the name of the
  545. * guard selection that we should use. Return NULL for "use the
  546. * same selection you were using before.
  547. */
  548. STATIC const char *
  549. choose_guard_selection(const or_options_t *options,
  550. const networkstatus_t *live_ns,
  551. const guard_selection_t *old_selection,
  552. guard_selection_type_t *type_out)
  553. {
  554. tor_assert(options);
  555. tor_assert(type_out);
  556. if (options->UseBridges) {
  557. *type_out = GS_TYPE_BRIDGE;
  558. return "bridges";
  559. }
  560. if (! live_ns) {
  561. /* without a networkstatus, we can't tell any more than that. */
  562. *type_out = GS_TYPE_NORMAL;
  563. return "default";
  564. }
  565. const smartlist_t *nodes = nodelist_get_list();
  566. int n_guards = 0, n_passing_filter = 0;
  567. SMARTLIST_FOREACH_BEGIN(nodes, const node_t *, node) {
  568. if (node_is_possible_guard(node)) {
  569. ++n_guards;
  570. if (node_passes_guard_filter(options, node)) {
  571. ++n_passing_filter;
  572. }
  573. }
  574. } SMARTLIST_FOREACH_END(node);
  575. /* We use separate 'high' and 'low' thresholds here to prevent flapping
  576. * back and forth */
  577. const int meaningful_threshold_high =
  578. (int)(n_guards * get_meaningful_restriction_threshold() * 1.05);
  579. const int meaningful_threshold_mid =
  580. (int)(n_guards * get_meaningful_restriction_threshold());
  581. const int meaningful_threshold_low =
  582. (int)(n_guards * get_meaningful_restriction_threshold() * .95);
  583. const int extreme_threshold =
  584. (int)(n_guards * get_extreme_restriction_threshold());
  585. /*
  586. If we have no previous selection, then we're "restricted" iff we are
  587. below the meaningful restriction threshold. That's easy enough.
  588. But if we _do_ have a previous selection, we make it a little
  589. "sticky": we only move from "restricted" to "default" when we find
  590. that we're above the threshold plus 5%, and we only move from
  591. "default" to "restricted" when we're below the threshold minus 5%.
  592. That should prevent us from flapping back and forth if we happen to
  593. be hovering very close to the default.
  594. The extreme threshold is for warning only.
  595. */
  596. static int have_warned_extreme_threshold = 0;
  597. if (n_guards &&
  598. n_passing_filter < extreme_threshold &&
  599. ! have_warned_extreme_threshold) {
  600. have_warned_extreme_threshold = 1;
  601. const double exclude_frac =
  602. (n_guards - n_passing_filter) / (double)n_guards;
  603. log_warn(LD_GUARD, "Your configuration excludes %d%% of all possible "
  604. "guards. That's likely to make you stand out from the "
  605. "rest of the world.", (int)(exclude_frac * 100));
  606. }
  607. /* Easy case: no previous selection. Just check if we are in restricted or
  608. normal guard selection. */
  609. if (old_selection == NULL) {
  610. if (n_passing_filter >= meaningful_threshold_mid) {
  611. *type_out = GS_TYPE_NORMAL;
  612. return "default";
  613. } else {
  614. *type_out = GS_TYPE_RESTRICTED;
  615. return "restricted";
  616. }
  617. }
  618. /* Trickier case: we do have a previous guard selection context. */
  619. tor_assert(old_selection);
  620. /* Use high and low thresholds to decide guard selection, and if we fall in
  621. the middle then keep the current guard selection context. */
  622. if (n_passing_filter >= meaningful_threshold_high) {
  623. *type_out = GS_TYPE_NORMAL;
  624. return "default";
  625. } else if (n_passing_filter < meaningful_threshold_low) {
  626. *type_out = GS_TYPE_RESTRICTED;
  627. return "restricted";
  628. } else {
  629. /* we are in the middle: maintain previous guard selection */
  630. *type_out = old_selection->type;
  631. return old_selection->name;
  632. }
  633. }
  634. /**
  635. * Check whether we should switch from our current guard selection to a
  636. * different one. If so, switch and return 1. Return 0 otherwise.
  637. *
  638. * On a 1 return, the caller should mark all currently live circuits unusable
  639. * for new streams, by calling circuit_mark_all_unused_circs() and
  640. * circuit_mark_all_dirty_circs_as_unusable().
  641. */
  642. int
  643. update_guard_selection_choice(const or_options_t *options)
  644. {
  645. if (!curr_guard_context) {
  646. create_initial_guard_context();
  647. return 1;
  648. }
  649. guard_selection_type_t type = GS_TYPE_INFER;
  650. const char *new_name = choose_guard_selection(
  651. options,
  652. networkstatus_get_live_consensus(approx_time()),
  653. curr_guard_context,
  654. &type);
  655. tor_assert(new_name);
  656. tor_assert(type != GS_TYPE_INFER);
  657. const char *cur_name = curr_guard_context->name;
  658. if (! strcmp(cur_name, new_name)) {
  659. log_debug(LD_GUARD,
  660. "Staying with guard context \"%s\" (no change)", new_name);
  661. return 0; // No change
  662. }
  663. log_notice(LD_GUARD, "Switching to guard context \"%s\" (was using \"%s\")",
  664. new_name, cur_name);
  665. guard_selection_t *new_guard_context;
  666. new_guard_context = get_guard_selection_by_name(new_name, type, 1);
  667. tor_assert(new_guard_context);
  668. tor_assert(new_guard_context != curr_guard_context);
  669. curr_guard_context = new_guard_context;
  670. return 1;
  671. }
  672. /**
  673. * Return true iff <b>node</b> has all the flags needed for us to consider it
  674. * a possible guard when sampling guards.
  675. */
  676. static int
  677. node_is_possible_guard(const node_t *node)
  678. {
  679. /* The "GUARDS" set is all nodes in the nodelist for which this predicate
  680. * holds. */
  681. tor_assert(node);
  682. return (node->is_possible_guard &&
  683. node->is_stable &&
  684. node->is_fast &&
  685. node->is_valid &&
  686. node_is_dir(node) &&
  687. !router_digest_is_me(node->identity));
  688. }
  689. /**
  690. * Return the sampled guard with the RSA identity digest <b>rsa_id</b>, or
  691. * NULL if we don't have one. */
  692. STATIC entry_guard_t *
  693. get_sampled_guard_with_id(guard_selection_t *gs,
  694. const uint8_t *rsa_id)
  695. {
  696. tor_assert(gs);
  697. tor_assert(rsa_id);
  698. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  699. if (tor_memeq(guard->identity, rsa_id, DIGEST_LEN))
  700. return guard;
  701. } SMARTLIST_FOREACH_END(guard);
  702. return NULL;
  703. }
  704. /** If <b>gs</b> contains a sampled entry guard matching <b>bridge</b>,
  705. * return that guard. Otherwise return NULL. */
  706. static entry_guard_t *
  707. get_sampled_guard_for_bridge(guard_selection_t *gs,
  708. const bridge_info_t *bridge)
  709. {
  710. const uint8_t *id = bridge_get_rsa_id_digest(bridge);
  711. const tor_addr_port_t *addrport = bridge_get_addr_port(bridge);
  712. entry_guard_t *guard;
  713. if (BUG(!addrport))
  714. return NULL; // LCOV_EXCL_LINE
  715. guard = get_sampled_guard_by_bridge_addr(gs, addrport);
  716. if (! guard || (id && tor_memneq(id, guard->identity, DIGEST_LEN)))
  717. return NULL;
  718. else
  719. return guard;
  720. }
  721. /** If we know a bridge_info_t matching <b>guard</b>, return that
  722. * bridge. Otherwise return NULL. */
  723. static bridge_info_t *
  724. get_bridge_info_for_guard(const entry_guard_t *guard)
  725. {
  726. const uint8_t *identity = NULL;
  727. if (! tor_digest_is_zero(guard->identity)) {
  728. identity = (const uint8_t *)guard->identity;
  729. }
  730. if (BUG(guard->bridge_addr == NULL))
  731. return NULL;
  732. return get_configured_bridge_by_exact_addr_port_digest(
  733. &guard->bridge_addr->addr,
  734. guard->bridge_addr->port,
  735. (const char*)identity);
  736. }
  737. /**
  738. * Return true iff we have a sampled guard with the RSA identity digest
  739. * <b>rsa_id</b>. */
  740. static inline int
  741. have_sampled_guard_with_id(guard_selection_t *gs, const uint8_t *rsa_id)
  742. {
  743. return get_sampled_guard_with_id(gs, rsa_id) != NULL;
  744. }
  745. /**
  746. * Allocate a new entry_guard_t object for <b>node</b>, add it to the
  747. * sampled entry guards in <b>gs</b>, and return it. <b>node</b> must
  748. * not currently be a sampled guard in <b>gs</b>.
  749. */
  750. STATIC entry_guard_t *
  751. entry_guard_add_to_sample(guard_selection_t *gs,
  752. const node_t *node)
  753. {
  754. log_info(LD_GUARD, "Adding %s to the entry guard sample set.",
  755. node_describe(node));
  756. /* make sure that the guard is not already sampled. */
  757. if (BUG(have_sampled_guard_with_id(gs, (const uint8_t*)node->identity)))
  758. return NULL; // LCOV_EXCL_LINE
  759. return entry_guard_add_to_sample_impl(gs,
  760. (const uint8_t*)node->identity,
  761. node_get_nickname(node),
  762. NULL);
  763. }
  764. /**
  765. * Backend: adds a new sampled guard to <b>gs</b>, with given identity,
  766. * nickname, and ORPort. rsa_id_digest and bridge_addrport are optional, but
  767. * we need one of them. nickname is optional. The caller is responsible for
  768. * maintaining the size limit of the SAMPLED_GUARDS set.
  769. */
  770. static entry_guard_t *
  771. entry_guard_add_to_sample_impl(guard_selection_t *gs,
  772. const uint8_t *rsa_id_digest,
  773. const char *nickname,
  774. const tor_addr_port_t *bridge_addrport)
  775. {
  776. const int GUARD_LIFETIME = get_guard_lifetime();
  777. tor_assert(gs);
  778. // XXXX #20827 take ed25519 identity here too.
  779. /* Make sure we can actually identify the guard. */
  780. if (BUG(!rsa_id_digest && !bridge_addrport))
  781. return NULL; // LCOV_EXCL_LINE
  782. entry_guard_t *guard = tor_malloc_zero(sizeof(entry_guard_t));
  783. /* persistent fields */
  784. guard->is_persistent = (rsa_id_digest != NULL);
  785. guard->selection_name = tor_strdup(gs->name);
  786. if (rsa_id_digest)
  787. memcpy(guard->identity, rsa_id_digest, DIGEST_LEN);
  788. if (nickname)
  789. strlcpy(guard->nickname, nickname, sizeof(guard->nickname));
  790. guard->sampled_on_date = randomize_time(approx_time(), GUARD_LIFETIME/10);
  791. tor_free(guard->sampled_by_version);
  792. guard->sampled_by_version = tor_strdup(VERSION);
  793. guard->currently_listed = 1;
  794. guard->confirmed_idx = -1;
  795. /* non-persistent fields */
  796. guard->is_reachable = GUARD_REACHABLE_MAYBE;
  797. if (bridge_addrport)
  798. guard->bridge_addr = tor_memdup(bridge_addrport, sizeof(*bridge_addrport));
  799. smartlist_add(gs->sampled_entry_guards, guard);
  800. guard->in_selection = gs;
  801. entry_guard_set_filtered_flags(get_options(), gs, guard);
  802. entry_guards_changed_for_guard_selection(gs);
  803. return guard;
  804. }
  805. /**
  806. * Add an entry guard to the "bridges" guard selection sample, with
  807. * information taken from <b>bridge</b>. Return that entry guard.
  808. */
  809. static entry_guard_t *
  810. entry_guard_add_bridge_to_sample(guard_selection_t *gs,
  811. const bridge_info_t *bridge)
  812. {
  813. const uint8_t *id_digest = bridge_get_rsa_id_digest(bridge);
  814. const tor_addr_port_t *addrport = bridge_get_addr_port(bridge);
  815. tor_assert(addrport);
  816. /* make sure that the guard is not already sampled. */
  817. if (BUG(get_sampled_guard_for_bridge(gs, bridge)))
  818. return NULL; // LCOV_EXCL_LINE
  819. return entry_guard_add_to_sample_impl(gs, id_digest, NULL, addrport);
  820. }
  821. /**
  822. * Return the entry_guard_t in <b>gs</b> whose address is <b>addrport</b>,
  823. * or NULL if none exists.
  824. */
  825. static entry_guard_t *
  826. get_sampled_guard_by_bridge_addr(guard_selection_t *gs,
  827. const tor_addr_port_t *addrport)
  828. {
  829. if (! gs)
  830. return NULL;
  831. if (BUG(!addrport))
  832. return NULL;
  833. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, g) {
  834. if (g->bridge_addr && tor_addr_port_eq(addrport, g->bridge_addr))
  835. return g;
  836. } SMARTLIST_FOREACH_END(g);
  837. return NULL;
  838. }
  839. /** Update the guard subsystem's knowledge of the identity of the bridge
  840. * at <b>addrport</b>. Idempotent.
  841. */
  842. void
  843. entry_guard_learned_bridge_identity(const tor_addr_port_t *addrport,
  844. const uint8_t *rsa_id_digest)
  845. {
  846. guard_selection_t *gs = get_guard_selection_by_name("bridges",
  847. GS_TYPE_BRIDGE,
  848. 0);
  849. if (!gs)
  850. return;
  851. entry_guard_t *g = get_sampled_guard_by_bridge_addr(gs, addrport);
  852. if (!g)
  853. return;
  854. int make_persistent = 0;
  855. if (tor_digest_is_zero(g->identity)) {
  856. memcpy(g->identity, rsa_id_digest, DIGEST_LEN);
  857. make_persistent = 1;
  858. } else if (tor_memeq(g->identity, rsa_id_digest, DIGEST_LEN)) {
  859. /* Nothing to see here; we learned something we already knew. */
  860. if (BUG(! g->is_persistent))
  861. make_persistent = 1;
  862. } else {
  863. char old_id[HEX_DIGEST_LEN+1];
  864. base16_encode(old_id, sizeof(old_id), g->identity, sizeof(g->identity));
  865. log_warn(LD_BUG, "We 'learned' an identity %s for a bridge at %s:%d, but "
  866. "we already knew a different one (%s). Ignoring the new info as "
  867. "possibly bogus.",
  868. hex_str((const char *)rsa_id_digest, DIGEST_LEN),
  869. fmt_and_decorate_addr(&addrport->addr), addrport->port,
  870. old_id);
  871. return; // redundant, but let's be clear: we're not making this persistent.
  872. }
  873. if (make_persistent) {
  874. g->is_persistent = 1;
  875. entry_guards_changed_for_guard_selection(gs);
  876. }
  877. }
  878. /**
  879. * Return the number of sampled guards in <b>gs</b> that are "filtered"
  880. * (that is, we're willing to connect to them) and that are "usable"
  881. * (that is, either "reachable" or "maybe reachable").
  882. *
  883. * If a restriction is provided in <b>rst</b>, do not count any guards that
  884. * violate it.
  885. */
  886. STATIC int
  887. num_reachable_filtered_guards(const guard_selection_t *gs,
  888. const entry_guard_restriction_t *rst)
  889. {
  890. int n_reachable_filtered_guards = 0;
  891. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  892. entry_guard_consider_retry(guard);
  893. if (! entry_guard_obeys_restriction(guard, rst))
  894. continue;
  895. if (guard->is_usable_filtered_guard)
  896. ++n_reachable_filtered_guards;
  897. } SMARTLIST_FOREACH_END(guard);
  898. return n_reachable_filtered_guards;
  899. }
  900. /** Return the actual maximum size for the sample in <b>gs</b>,
  901. * given that we know about <b>n_guards</b> total. */
  902. static int
  903. get_max_sample_size(guard_selection_t *gs,
  904. int n_guards)
  905. {
  906. const int using_bridges = (gs->type == GS_TYPE_BRIDGE);
  907. const int min_sample = get_min_filtered_sample_size();
  908. /* If we are in bridge mode, expand our sample set as needed without worrying
  909. * about max size. We should respect the user's wishes to use many bridges if
  910. * that's what they have specified in their configuration file. */
  911. if (using_bridges)
  912. return INT_MAX;
  913. const int max_sample_by_pct = (int)(n_guards * get_max_sample_threshold());
  914. const int max_sample_absolute = get_max_sample_size_absolute();
  915. const int max_sample = MIN(max_sample_by_pct, max_sample_absolute);
  916. if (max_sample < min_sample)
  917. return min_sample;
  918. else
  919. return max_sample;
  920. }
  921. /**
  922. * Return a smartlist of the all the guards that are not currently
  923. * members of the sample (GUARDS - SAMPLED_GUARDS). The elements of
  924. * this list are node_t pointers in the non-bridge case, and
  925. * bridge_info_t pointers in the bridge case. Set *<b>n_guards_out/b>
  926. * to the number of guards that we found in GUARDS, including those
  927. * that were already sampled.
  928. */
  929. static smartlist_t *
  930. get_eligible_guards(const or_options_t *options,
  931. guard_selection_t *gs,
  932. int *n_guards_out)
  933. {
  934. /* Construct eligible_guards as GUARDS - SAMPLED_GUARDS */
  935. smartlist_t *eligible_guards = smartlist_new();
  936. int n_guards = 0; // total size of "GUARDS"
  937. if (gs->type == GS_TYPE_BRIDGE) {
  938. const smartlist_t *bridges = bridge_list_get();
  939. SMARTLIST_FOREACH_BEGIN(bridges, bridge_info_t *, bridge) {
  940. ++n_guards;
  941. if (NULL != get_sampled_guard_for_bridge(gs, bridge)) {
  942. continue;
  943. }
  944. smartlist_add(eligible_guards, bridge);
  945. } SMARTLIST_FOREACH_END(bridge);
  946. } else {
  947. const smartlist_t *nodes = nodelist_get_list();
  948. const int n_sampled = smartlist_len(gs->sampled_entry_guards);
  949. /* Build a bloom filter of our current guards: let's keep this O(N). */
  950. digestset_t *sampled_guard_ids = digestset_new(n_sampled);
  951. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, const entry_guard_t *,
  952. guard) {
  953. digestset_add(sampled_guard_ids, guard->identity);
  954. } SMARTLIST_FOREACH_END(guard);
  955. SMARTLIST_FOREACH_BEGIN(nodes, const node_t *, node) {
  956. if (! node_is_possible_guard(node))
  957. continue;
  958. if (gs->type == GS_TYPE_RESTRICTED) {
  959. /* In restricted mode, we apply the filter BEFORE sampling, so
  960. * that we are sampling from the nodes that we might actually
  961. * select. If we sampled first, we might wind up with a sample
  962. * that didn't include any EntryNodes at all. */
  963. if (! node_passes_guard_filter(options, node))
  964. continue;
  965. }
  966. ++n_guards;
  967. if (digestset_contains(sampled_guard_ids, node->identity))
  968. continue;
  969. smartlist_add(eligible_guards, (node_t*)node);
  970. } SMARTLIST_FOREACH_END(node);
  971. /* Now we can free that bloom filter. */
  972. digestset_free(sampled_guard_ids);
  973. }
  974. *n_guards_out = n_guards;
  975. return eligible_guards;
  976. }
  977. /** Helper: given a smartlist of either bridge_info_t (if gs->type is
  978. * GS_TYPE_BRIDGE) or node_t (otherwise), pick one that can be a guard,
  979. * add it as a guard, remove it from the list, and return a new
  980. * entry_guard_t. Return NULL on failure. */
  981. static entry_guard_t *
  982. select_and_add_guard_item_for_sample(guard_selection_t *gs,
  983. smartlist_t *eligible_guards)
  984. {
  985. entry_guard_t *added_guard;
  986. if (gs->type == GS_TYPE_BRIDGE) {
  987. const bridge_info_t *bridge = smartlist_choose(eligible_guards);
  988. if (BUG(!bridge))
  989. return NULL; // LCOV_EXCL_LINE
  990. smartlist_remove(eligible_guards, bridge);
  991. added_guard = entry_guard_add_bridge_to_sample(gs, bridge);
  992. } else {
  993. const node_t *node =
  994. node_sl_choose_by_bandwidth(eligible_guards, WEIGHT_FOR_GUARD);
  995. if (BUG(!node))
  996. return NULL; // LCOV_EXCL_LINE
  997. smartlist_remove(eligible_guards, node);
  998. added_guard = entry_guard_add_to_sample(gs, node);
  999. }
  1000. return added_guard;
  1001. }
  1002. /**
  1003. * Return true iff we need a consensus to update our guards, but we don't
  1004. * have one. (We can return 0 here either if the consensus is _not_ missing,
  1005. * or if we don't need a consensus because we're using bridges.)
  1006. */
  1007. static int
  1008. live_consensus_is_missing(const guard_selection_t *gs)
  1009. {
  1010. tor_assert(gs);
  1011. if (gs->type == GS_TYPE_BRIDGE) {
  1012. /* We don't update bridges from the consensus; they aren't there. */
  1013. return 0;
  1014. }
  1015. return networkstatus_get_live_consensus(approx_time()) == NULL;
  1016. }
  1017. /**
  1018. * Add new guards to the sampled guards in <b>gs</b> until there are
  1019. * enough usable filtered guards, but never grow the sample beyond its
  1020. * maximum size. Return the last guard added, or NULL if none were
  1021. * added.
  1022. */
  1023. STATIC entry_guard_t *
  1024. entry_guards_expand_sample(guard_selection_t *gs)
  1025. {
  1026. tor_assert(gs);
  1027. const or_options_t *options = get_options();
  1028. if (live_consensus_is_missing(gs)) {
  1029. log_info(LD_GUARD, "Not expanding the sample guard set; we have "
  1030. "no live consensus.");
  1031. return NULL;
  1032. }
  1033. int n_sampled = smartlist_len(gs->sampled_entry_guards);
  1034. entry_guard_t *added_guard = NULL;
  1035. int n_usable_filtered_guards = num_reachable_filtered_guards(gs, NULL);
  1036. int n_guards = 0;
  1037. smartlist_t *eligible_guards = get_eligible_guards(options, gs, &n_guards);
  1038. const int max_sample = get_max_sample_size(gs, n_guards);
  1039. const int min_filtered_sample = get_min_filtered_sample_size();
  1040. log_info(LD_GUARD, "Expanding the sample guard set. We have %d guards "
  1041. "in the sample, and %d eligible guards to extend it with.",
  1042. n_sampled, smartlist_len(eligible_guards));
  1043. while (n_usable_filtered_guards < min_filtered_sample) {
  1044. /* Has our sample grown too large to expand? */
  1045. if (n_sampled >= max_sample) {
  1046. log_info(LD_GUARD, "Not expanding the guard sample any further; "
  1047. "just hit the maximum sample threshold of %d",
  1048. max_sample);
  1049. goto done;
  1050. }
  1051. /* Did we run out of guards? */
  1052. if (smartlist_len(eligible_guards) == 0) {
  1053. /* LCOV_EXCL_START
  1054. As long as MAX_SAMPLE_THRESHOLD makes can't be adjusted to
  1055. allow all guards to be sampled, this can't be reached.
  1056. */
  1057. log_info(LD_GUARD, "Not expanding the guard sample any further; "
  1058. "just ran out of eligible guards");
  1059. goto done;
  1060. /* LCOV_EXCL_STOP */
  1061. }
  1062. /* Otherwise we can add at least one new guard. */
  1063. added_guard = select_and_add_guard_item_for_sample(gs, eligible_guards);
  1064. if (!added_guard)
  1065. goto done; // LCOV_EXCL_LINE -- only fails on BUG.
  1066. ++n_sampled;
  1067. if (added_guard->is_usable_filtered_guard)
  1068. ++n_usable_filtered_guards;
  1069. }
  1070. done:
  1071. smartlist_free(eligible_guards);
  1072. return added_guard;
  1073. }
  1074. /**
  1075. * Helper: <b>guard</b> has just been removed from the sampled guards:
  1076. * also remove it from primary and confirmed. */
  1077. static void
  1078. remove_guard_from_confirmed_and_primary_lists(guard_selection_t *gs,
  1079. entry_guard_t *guard)
  1080. {
  1081. if (guard->is_primary) {
  1082. guard->is_primary = 0;
  1083. smartlist_remove_keeporder(gs->primary_entry_guards, guard);
  1084. } else {
  1085. if (BUG(smartlist_contains(gs->primary_entry_guards, guard))) {
  1086. smartlist_remove_keeporder(gs->primary_entry_guards, guard);
  1087. }
  1088. }
  1089. if (guard->confirmed_idx >= 0) {
  1090. smartlist_remove_keeporder(gs->confirmed_entry_guards, guard);
  1091. guard->confirmed_idx = -1;
  1092. guard->confirmed_on_date = 0;
  1093. } else {
  1094. if (BUG(smartlist_contains(gs->confirmed_entry_guards, guard))) {
  1095. // LCOV_EXCL_START
  1096. smartlist_remove_keeporder(gs->confirmed_entry_guards, guard);
  1097. // LCOV_EXCL_STOP
  1098. }
  1099. }
  1100. }
  1101. /** Return true iff <b>guard</b> is currently "listed" -- that is, it
  1102. * appears in the consensus, or as a configured bridge (as
  1103. * appropriate) */
  1104. MOCK_IMPL(STATIC int,
  1105. entry_guard_is_listed,(guard_selection_t *gs, const entry_guard_t *guard))
  1106. {
  1107. if (gs->type == GS_TYPE_BRIDGE) {
  1108. return NULL != get_bridge_info_for_guard(guard);
  1109. } else {
  1110. const node_t *node = node_get_by_id(guard->identity);
  1111. return node && node_is_possible_guard(node);
  1112. }
  1113. }
  1114. /**
  1115. * Update the status of all sampled guards based on the arrival of a
  1116. * new consensus networkstatus document. This will include marking
  1117. * some guards as listed or unlisted, and removing expired guards. */
  1118. STATIC void
  1119. sampled_guards_update_from_consensus(guard_selection_t *gs)
  1120. {
  1121. tor_assert(gs);
  1122. const int REMOVE_UNLISTED_GUARDS_AFTER =
  1123. (get_remove_unlisted_guards_after_days() * 86400);
  1124. const int unlisted_since_slop = REMOVE_UNLISTED_GUARDS_AFTER / 5;
  1125. // It's important to use only a live consensus here; we don't want to
  1126. // make changes based on anything expired or old.
  1127. if (live_consensus_is_missing(gs)) {
  1128. log_info(LD_GUARD, "Not updating the sample guard set; we have "
  1129. "no live consensus.");
  1130. return;
  1131. }
  1132. log_info(LD_GUARD, "Updating sampled guard status based on received "
  1133. "consensus.");
  1134. int n_changes = 0;
  1135. /* First: Update listed/unlisted. */
  1136. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  1137. /* XXXX #20827 check ed ID too */
  1138. const int is_listed = entry_guard_is_listed(gs, guard);
  1139. if (is_listed && ! guard->currently_listed) {
  1140. ++n_changes;
  1141. guard->currently_listed = 1;
  1142. guard->unlisted_since_date = 0;
  1143. log_info(LD_GUARD, "Sampled guard %s is now listed again.",
  1144. entry_guard_describe(guard));
  1145. } else if (!is_listed && guard->currently_listed) {
  1146. ++n_changes;
  1147. guard->currently_listed = 0;
  1148. guard->unlisted_since_date = randomize_time(approx_time(),
  1149. unlisted_since_slop);
  1150. log_info(LD_GUARD, "Sampled guard %s is now unlisted.",
  1151. entry_guard_describe(guard));
  1152. } else if (is_listed && guard->currently_listed) {
  1153. log_debug(LD_GUARD, "Sampled guard %s is still listed.",
  1154. entry_guard_describe(guard));
  1155. } else {
  1156. tor_assert(! is_listed && ! guard->currently_listed);
  1157. log_debug(LD_GUARD, "Sampled guard %s is still unlisted.",
  1158. entry_guard_describe(guard));
  1159. }
  1160. /* Clean up unlisted_since_date, just in case. */
  1161. if (guard->currently_listed && guard->unlisted_since_date) {
  1162. ++n_changes;
  1163. guard->unlisted_since_date = 0;
  1164. log_warn(LD_BUG, "Sampled guard %s was listed, but with "
  1165. "unlisted_since_date set. Fixing.",
  1166. entry_guard_describe(guard));
  1167. } else if (!guard->currently_listed && ! guard->unlisted_since_date) {
  1168. ++n_changes;
  1169. guard->unlisted_since_date = randomize_time(approx_time(),
  1170. unlisted_since_slop);
  1171. log_warn(LD_BUG, "Sampled guard %s was unlisted, but with "
  1172. "unlisted_since_date unset. Fixing.",
  1173. entry_guard_describe(guard));
  1174. }
  1175. } SMARTLIST_FOREACH_END(guard);
  1176. const time_t remove_if_unlisted_since =
  1177. approx_time() - REMOVE_UNLISTED_GUARDS_AFTER;
  1178. const time_t maybe_remove_if_sampled_before =
  1179. approx_time() - get_guard_lifetime();
  1180. const time_t remove_if_confirmed_before =
  1181. approx_time() - get_guard_confirmed_min_lifetime();
  1182. /* Then: remove the ones that have been junk for too long */
  1183. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  1184. int rmv = 0;
  1185. if (guard->currently_listed == 0 &&
  1186. guard->unlisted_since_date < remove_if_unlisted_since) {
  1187. /*
  1188. "We have a live consensus, and {IS_LISTED} is false, and
  1189. {FIRST_UNLISTED_AT} is over {REMOVE_UNLISTED_GUARDS_AFTER}
  1190. days in the past."
  1191. */
  1192. log_info(LD_GUARD, "Removing sampled guard %s: it has been unlisted "
  1193. "for over %d days", entry_guard_describe(guard),
  1194. get_remove_unlisted_guards_after_days());
  1195. rmv = 1;
  1196. } else if (guard->sampled_on_date < maybe_remove_if_sampled_before) {
  1197. /* We have a live consensus, and {ADDED_ON_DATE} is over
  1198. {GUARD_LIFETIME} ago, *and* {CONFIRMED_ON_DATE} is either
  1199. "never", or over {GUARD_CONFIRMED_MIN_LIFETIME} ago.
  1200. */
  1201. if (guard->confirmed_on_date == 0) {
  1202. rmv = 1;
  1203. log_info(LD_GUARD, "Removing sampled guard %s: it was sampled "
  1204. "over %d days ago, but never confirmed.",
  1205. entry_guard_describe(guard),
  1206. get_guard_lifetime() / 86400);
  1207. } else if (guard->confirmed_on_date < remove_if_confirmed_before) {
  1208. rmv = 1;
  1209. log_info(LD_GUARD, "Removing sampled guard %s: it was sampled "
  1210. "over %d days ago, and confirmed over %d days ago.",
  1211. entry_guard_describe(guard),
  1212. get_guard_lifetime() / 86400,
  1213. get_guard_confirmed_min_lifetime() / 86400);
  1214. }
  1215. }
  1216. if (rmv) {
  1217. ++n_changes;
  1218. SMARTLIST_DEL_CURRENT(gs->sampled_entry_guards, guard);
  1219. remove_guard_from_confirmed_and_primary_lists(gs, guard);
  1220. entry_guard_free(guard);
  1221. }
  1222. } SMARTLIST_FOREACH_END(guard);
  1223. if (n_changes) {
  1224. gs->primary_guards_up_to_date = 0;
  1225. entry_guards_update_filtered_sets(gs);
  1226. /* We don't need to rebuild the confirmed list right here -- we may have
  1227. * removed confirmed guards above, but we can't have added any new
  1228. * confirmed guards.
  1229. */
  1230. entry_guards_changed_for_guard_selection(gs);
  1231. }
  1232. }
  1233. /**
  1234. * Return true iff <b>node</b> is a Tor relay that we are configured to
  1235. * be able to connect to. */
  1236. static int
  1237. node_passes_guard_filter(const or_options_t *options,
  1238. const node_t *node)
  1239. {
  1240. /* NOTE: Make sure that this function stays in sync with
  1241. * options_transition_affects_entry_guards */
  1242. if (routerset_contains_node(options->ExcludeNodes, node))
  1243. return 0;
  1244. if (options->EntryNodes &&
  1245. !routerset_contains_node(options->EntryNodes, node))
  1246. return 0;
  1247. if (!fascist_firewall_allows_node(node, FIREWALL_OR_CONNECTION, 0))
  1248. return 0;
  1249. if (node_is_a_configured_bridge(node))
  1250. return 0;
  1251. return 1;
  1252. }
  1253. /** Helper: Return true iff <b>bridge</b> passes our configuration
  1254. * filter-- if it is a relay that we are configured to be able to
  1255. * connect to. */
  1256. static int
  1257. bridge_passes_guard_filter(const or_options_t *options,
  1258. const bridge_info_t *bridge)
  1259. {
  1260. tor_assert(bridge);
  1261. if (!bridge)
  1262. return 0;
  1263. if (routerset_contains_bridge(options->ExcludeNodes, bridge))
  1264. return 0;
  1265. /* Ignore entrynodes */
  1266. const tor_addr_port_t *addrport = bridge_get_addr_port(bridge);
  1267. if (!fascist_firewall_allows_address_addr(&addrport->addr,
  1268. addrport->port,
  1269. FIREWALL_OR_CONNECTION,
  1270. 0, 0))
  1271. return 0;
  1272. return 1;
  1273. }
  1274. /**
  1275. * Return true iff <b>guard</b> is a Tor relay that we are configured to
  1276. * be able to connect to, and we haven't disabled it for omission from
  1277. * the consensus or path bias issues. */
  1278. static int
  1279. entry_guard_passes_filter(const or_options_t *options, guard_selection_t *gs,
  1280. entry_guard_t *guard)
  1281. {
  1282. if (guard->currently_listed == 0)
  1283. return 0;
  1284. if (guard->pb.path_bias_disabled)
  1285. return 0;
  1286. if (gs->type == GS_TYPE_BRIDGE) {
  1287. const bridge_info_t *bridge = get_bridge_info_for_guard(guard);
  1288. if (bridge == NULL)
  1289. return 0;
  1290. return bridge_passes_guard_filter(options, bridge);
  1291. } else {
  1292. const node_t *node = node_get_by_id(guard->identity);
  1293. if (node == NULL) {
  1294. // This can happen when currently_listed is true, and we're not updating
  1295. // it because we don't have a live consensus.
  1296. return 0;
  1297. }
  1298. return node_passes_guard_filter(options, node);
  1299. }
  1300. }
  1301. /** Return true iff <b>guard</b> is in the same family as <b>node</b>.
  1302. */
  1303. static int
  1304. guard_in_node_family(const entry_guard_t *guard, const node_t *node)
  1305. {
  1306. const node_t *guard_node = node_get_by_id(guard->identity);
  1307. if (guard_node) {
  1308. return nodes_in_same_family(guard_node, node);
  1309. } else {
  1310. /* If we don't have a node_t for the guard node, we might have
  1311. * a bridge_info_t for it. So let's check to see whether the bridge
  1312. * address matches has any family issues.
  1313. *
  1314. * (Strictly speaking, I believe this check is unnecessary, since we only
  1315. * use it to avoid the exit's family when building circuits, and we don't
  1316. * build multihop circuits until we have a routerinfo_t for the
  1317. * bridge... at which point, we'll also have a node_t for the
  1318. * bridge. Nonetheless, it seems wise to include it, in case our
  1319. * assumptions change down the road. -nickm.)
  1320. */
  1321. if (get_options()->EnforceDistinctSubnets && guard->bridge_addr) {
  1322. tor_addr_t node_addr;
  1323. node_get_addr(node, &node_addr);
  1324. if (addrs_in_same_network_family(&node_addr,
  1325. &guard->bridge_addr->addr)) {
  1326. return 1;
  1327. }
  1328. }
  1329. return 0;
  1330. }
  1331. }
  1332. /* Allocate and return a new exit guard restriction (where <b>exit_id</b> is of
  1333. * size DIGEST_LEN) */
  1334. STATIC entry_guard_restriction_t *
  1335. guard_create_exit_restriction(const uint8_t *exit_id)
  1336. {
  1337. entry_guard_restriction_t *rst = NULL;
  1338. rst = tor_malloc_zero(sizeof(entry_guard_restriction_t));
  1339. rst->type = RST_EXIT_NODE;
  1340. memcpy(rst->exclude_id, exit_id, DIGEST_LEN);
  1341. return rst;
  1342. }
  1343. /** If we have fewer than this many possible usable guards, don't set
  1344. * MD-availability-based restrictions: we might blacklist all of them. */
  1345. #define MIN_GUARDS_FOR_MD_RESTRICTION 10
  1346. /** Return true if we should set md dirserver restrictions. We might not want
  1347. * to set those if our guard options are too restricted, since we don't want
  1348. * to blacklist all of them. */
  1349. static int
  1350. should_set_md_dirserver_restriction(void)
  1351. {
  1352. const guard_selection_t *gs = get_guard_selection_info();
  1353. int num_usable_guards = num_reachable_filtered_guards(gs, NULL);
  1354. /* Don't set restriction if too few reachable filtered guards. */
  1355. if (num_usable_guards < MIN_GUARDS_FOR_MD_RESTRICTION) {
  1356. log_info(LD_GUARD, "Not setting md restriction: only %d"
  1357. " usable guards.", num_usable_guards);
  1358. return 0;
  1359. }
  1360. /* We have enough usable guards: set MD restriction */
  1361. return 1;
  1362. }
  1363. /** Allocate and return an outdated md guard restriction. Return NULL if no
  1364. * such restriction is needed. */
  1365. STATIC entry_guard_restriction_t *
  1366. guard_create_dirserver_md_restriction(void)
  1367. {
  1368. entry_guard_restriction_t *rst = NULL;
  1369. if (!should_set_md_dirserver_restriction()) {
  1370. log_debug(LD_GUARD, "Not setting md restriction: too few "
  1371. "filtered guards.");
  1372. return NULL;
  1373. }
  1374. rst = tor_malloc_zero(sizeof(entry_guard_restriction_t));
  1375. rst->type = RST_OUTDATED_MD_DIRSERVER;
  1376. return rst;
  1377. }
  1378. /* Return True if <b>guard</b> obeys the exit restriction <b>rst</b>. */
  1379. static int
  1380. guard_obeys_exit_restriction(const entry_guard_t *guard,
  1381. const entry_guard_restriction_t *rst)
  1382. {
  1383. tor_assert(rst->type == RST_EXIT_NODE);
  1384. // Exclude the exit ID and all of its family.
  1385. const node_t *node = node_get_by_id((const char*)rst->exclude_id);
  1386. if (node && guard_in_node_family(guard, node))
  1387. return 0;
  1388. return tor_memneq(guard->identity, rst->exclude_id, DIGEST_LEN);
  1389. }
  1390. /** Return True if <b>guard</b> should be used as a dirserver for fetching
  1391. * microdescriptors. */
  1392. static int
  1393. guard_obeys_md_dirserver_restriction(const entry_guard_t *guard)
  1394. {
  1395. /* If this guard is an outdated dirserver, don't use it. */
  1396. if (microdesc_relay_is_outdated_dirserver(guard->identity)) {
  1397. log_info(LD_GENERAL, "Skipping %s dirserver: outdated",
  1398. hex_str(guard->identity, DIGEST_LEN));
  1399. return 0;
  1400. }
  1401. log_debug(LD_GENERAL, "%s dirserver obeys md restrictions",
  1402. hex_str(guard->identity, DIGEST_LEN));
  1403. return 1;
  1404. }
  1405. /**
  1406. * Return true iff <b>guard</b> obeys the restrictions defined in <b>rst</b>.
  1407. * (If <b>rst</b> is NULL, there are no restrictions.)
  1408. */
  1409. static int
  1410. entry_guard_obeys_restriction(const entry_guard_t *guard,
  1411. const entry_guard_restriction_t *rst)
  1412. {
  1413. tor_assert(guard);
  1414. if (! rst)
  1415. return 1; // No restriction? No problem.
  1416. if (rst->type == RST_EXIT_NODE) {
  1417. return guard_obeys_exit_restriction(guard, rst);
  1418. } else if (rst->type == RST_OUTDATED_MD_DIRSERVER) {
  1419. return guard_obeys_md_dirserver_restriction(guard);
  1420. }
  1421. tor_assert_nonfatal_unreached();
  1422. return 0;
  1423. }
  1424. /**
  1425. * Update the <b>is_filtered_guard</b> and <b>is_usable_filtered_guard</b>
  1426. * flags on <b>guard</b>. */
  1427. void
  1428. entry_guard_set_filtered_flags(const or_options_t *options,
  1429. guard_selection_t *gs,
  1430. entry_guard_t *guard)
  1431. {
  1432. unsigned was_filtered = guard->is_filtered_guard;
  1433. guard->is_filtered_guard = 0;
  1434. guard->is_usable_filtered_guard = 0;
  1435. if (entry_guard_passes_filter(options, gs, guard)) {
  1436. guard->is_filtered_guard = 1;
  1437. if (guard->is_reachable != GUARD_REACHABLE_NO)
  1438. guard->is_usable_filtered_guard = 1;
  1439. entry_guard_consider_retry(guard);
  1440. }
  1441. log_debug(LD_GUARD, "Updated sampled guard %s: filtered=%d; "
  1442. "reachable_filtered=%d.", entry_guard_describe(guard),
  1443. guard->is_filtered_guard, guard->is_usable_filtered_guard);
  1444. if (!bool_eq(was_filtered, guard->is_filtered_guard)) {
  1445. /* This guard might now be primary or nonprimary. */
  1446. gs->primary_guards_up_to_date = 0;
  1447. }
  1448. }
  1449. /**
  1450. * Update the <b>is_filtered_guard</b> and <b>is_usable_filtered_guard</b>
  1451. * flag on every guard in <b>gs</b>. */
  1452. STATIC void
  1453. entry_guards_update_filtered_sets(guard_selection_t *gs)
  1454. {
  1455. const or_options_t *options = get_options();
  1456. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  1457. entry_guard_set_filtered_flags(options, gs, guard);
  1458. } SMARTLIST_FOREACH_END(guard);
  1459. }
  1460. /**
  1461. * Return a random guard from the reachable filtered sample guards
  1462. * in <b>gs</b>, subject to the exclusion rules listed in <b>flags</b>.
  1463. * Return NULL if no such guard can be found.
  1464. *
  1465. * Make sure that the sample is big enough, and that all the filter flags
  1466. * are set correctly, before calling this function.
  1467. *
  1468. * If a restriction is provided in <b>rst</b>, do not return any guards that
  1469. * violate it.
  1470. **/
  1471. STATIC entry_guard_t *
  1472. sample_reachable_filtered_entry_guards(guard_selection_t *gs,
  1473. const entry_guard_restriction_t *rst,
  1474. unsigned flags)
  1475. {
  1476. tor_assert(gs);
  1477. entry_guard_t *result = NULL;
  1478. const unsigned exclude_confirmed = flags & SAMPLE_EXCLUDE_CONFIRMED;
  1479. const unsigned exclude_primary = flags & SAMPLE_EXCLUDE_PRIMARY;
  1480. const unsigned exclude_pending = flags & SAMPLE_EXCLUDE_PENDING;
  1481. const unsigned no_update_primary = flags & SAMPLE_NO_UPDATE_PRIMARY;
  1482. const unsigned need_descriptor = flags & SAMPLE_EXCLUDE_NO_DESCRIPTOR;
  1483. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  1484. entry_guard_consider_retry(guard);
  1485. } SMARTLIST_FOREACH_END(guard);
  1486. const int n_reachable_filtered = num_reachable_filtered_guards(gs, rst);
  1487. log_info(LD_GUARD, "Trying to sample a reachable guard: We know of %d "
  1488. "in the USABLE_FILTERED set.", n_reachable_filtered);
  1489. const int min_filtered_sample = get_min_filtered_sample_size();
  1490. if (n_reachable_filtered < min_filtered_sample) {
  1491. log_info(LD_GUARD, " (That isn't enough. Trying to expand the sample.)");
  1492. entry_guards_expand_sample(gs);
  1493. }
  1494. if (exclude_primary && !gs->primary_guards_up_to_date && !no_update_primary)
  1495. entry_guards_update_primary(gs);
  1496. /* Build the set of reachable filtered guards. */
  1497. smartlist_t *reachable_filtered_sample = smartlist_new();
  1498. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  1499. entry_guard_consider_retry(guard);// redundant, but cheap.
  1500. if (! entry_guard_obeys_restriction(guard, rst))
  1501. continue;
  1502. if (! guard->is_usable_filtered_guard)
  1503. continue;
  1504. if (exclude_confirmed && guard->confirmed_idx >= 0)
  1505. continue;
  1506. if (exclude_primary && guard->is_primary)
  1507. continue;
  1508. if (exclude_pending && guard->is_pending)
  1509. continue;
  1510. if (need_descriptor && !guard_has_descriptor(guard))
  1511. continue;
  1512. smartlist_add(reachable_filtered_sample, guard);
  1513. } SMARTLIST_FOREACH_END(guard);
  1514. log_info(LD_GUARD, " (After filters [%x], we have %d guards to consider.)",
  1515. flags, smartlist_len(reachable_filtered_sample));
  1516. if (smartlist_len(reachable_filtered_sample)) {
  1517. result = smartlist_choose(reachable_filtered_sample);
  1518. log_info(LD_GUARD, " (Selected %s.)",
  1519. result ? entry_guard_describe(result) : "<null>");
  1520. }
  1521. smartlist_free(reachable_filtered_sample);
  1522. return result;
  1523. }
  1524. /**
  1525. * Helper: compare two entry_guard_t by their confirmed_idx values.
  1526. * Used to sort the confirmed list.
  1527. */
  1528. static int
  1529. compare_guards_by_confirmed_idx(const void **a_, const void **b_)
  1530. {
  1531. const entry_guard_t *a = *a_, *b = *b_;
  1532. if (a->confirmed_idx < b->confirmed_idx)
  1533. return -1;
  1534. else if (a->confirmed_idx > b->confirmed_idx)
  1535. return 1;
  1536. else
  1537. return 0;
  1538. }
  1539. /**
  1540. * Find the confirmed guards from among the sampled guards in <b>gs</b>,
  1541. * and put them in confirmed_entry_guards in the correct
  1542. * order. Recalculate their indices.
  1543. */
  1544. STATIC void
  1545. entry_guards_update_confirmed(guard_selection_t *gs)
  1546. {
  1547. smartlist_clear(gs->confirmed_entry_guards);
  1548. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  1549. if (guard->confirmed_idx >= 0)
  1550. smartlist_add(gs->confirmed_entry_guards, guard);
  1551. } SMARTLIST_FOREACH_END(guard);
  1552. smartlist_sort(gs->confirmed_entry_guards, compare_guards_by_confirmed_idx);
  1553. int any_changed = 0;
  1554. SMARTLIST_FOREACH_BEGIN(gs->confirmed_entry_guards, entry_guard_t *, guard) {
  1555. if (guard->confirmed_idx != guard_sl_idx) {
  1556. any_changed = 1;
  1557. guard->confirmed_idx = guard_sl_idx;
  1558. }
  1559. } SMARTLIST_FOREACH_END(guard);
  1560. gs->next_confirmed_idx = smartlist_len(gs->confirmed_entry_guards);
  1561. if (any_changed) {
  1562. entry_guards_changed_for_guard_selection(gs);
  1563. }
  1564. }
  1565. /**
  1566. * Mark <b>guard</b> as a confirmed guard -- that is, one that we have
  1567. * connected to, and intend to use again.
  1568. */
  1569. STATIC void
  1570. make_guard_confirmed(guard_selection_t *gs, entry_guard_t *guard)
  1571. {
  1572. if (BUG(guard->confirmed_on_date && guard->confirmed_idx >= 0))
  1573. return; // LCOV_EXCL_LINE
  1574. if (BUG(smartlist_contains(gs->confirmed_entry_guards, guard)))
  1575. return; // LCOV_EXCL_LINE
  1576. const int GUARD_LIFETIME = get_guard_lifetime();
  1577. guard->confirmed_on_date = randomize_time(approx_time(), GUARD_LIFETIME/10);
  1578. log_info(LD_GUARD, "Marking %s as a confirmed guard (index %d)",
  1579. entry_guard_describe(guard),
  1580. gs->next_confirmed_idx);
  1581. guard->confirmed_idx = gs->next_confirmed_idx++;
  1582. smartlist_add(gs->confirmed_entry_guards, guard);
  1583. // This confirmed guard might kick something else out of the primary
  1584. // guards.
  1585. gs->primary_guards_up_to_date = 0;
  1586. entry_guards_changed_for_guard_selection(gs);
  1587. }
  1588. /**
  1589. * Recalculate the list of primary guards (the ones we'd prefer to use) from
  1590. * the filtered sample and the confirmed list.
  1591. */
  1592. STATIC void
  1593. entry_guards_update_primary(guard_selection_t *gs)
  1594. {
  1595. tor_assert(gs);
  1596. // prevent recursion. Recursion is potentially very bad here.
  1597. static int running = 0;
  1598. tor_assert(!running);
  1599. running = 1;
  1600. const int N_PRIMARY_GUARDS = get_n_primary_guards();
  1601. smartlist_t *new_primary_guards = smartlist_new();
  1602. smartlist_t *old_primary_guards = smartlist_new();
  1603. smartlist_add_all(old_primary_guards, gs->primary_entry_guards);
  1604. /* Set this flag now, to prevent the calls below from recursing. */
  1605. gs->primary_guards_up_to_date = 1;
  1606. /* First, can we fill it up with confirmed guards? */
  1607. SMARTLIST_FOREACH_BEGIN(gs->confirmed_entry_guards, entry_guard_t *, guard) {
  1608. if (smartlist_len(new_primary_guards) >= N_PRIMARY_GUARDS)
  1609. break;
  1610. if (! guard->is_filtered_guard)
  1611. continue;
  1612. guard->is_primary = 1;
  1613. smartlist_add(new_primary_guards, guard);
  1614. } SMARTLIST_FOREACH_END(guard);
  1615. /* Can we keep any older primary guards? First remove all the ones
  1616. * that we already kept. */
  1617. SMARTLIST_FOREACH_BEGIN(old_primary_guards, entry_guard_t *, guard) {
  1618. if (smartlist_contains(new_primary_guards, guard)) {
  1619. SMARTLIST_DEL_CURRENT_KEEPORDER(old_primary_guards, guard);
  1620. }
  1621. } SMARTLIST_FOREACH_END(guard);
  1622. /* Now add any that are still good. */
  1623. SMARTLIST_FOREACH_BEGIN(old_primary_guards, entry_guard_t *, guard) {
  1624. if (smartlist_len(new_primary_guards) >= N_PRIMARY_GUARDS)
  1625. break;
  1626. if (! guard->is_filtered_guard)
  1627. continue;
  1628. guard->is_primary = 1;
  1629. smartlist_add(new_primary_guards, guard);
  1630. SMARTLIST_DEL_CURRENT_KEEPORDER(old_primary_guards, guard);
  1631. } SMARTLIST_FOREACH_END(guard);
  1632. /* Mark the remaining previous primary guards as non-primary */
  1633. SMARTLIST_FOREACH_BEGIN(old_primary_guards, entry_guard_t *, guard) {
  1634. guard->is_primary = 0;
  1635. } SMARTLIST_FOREACH_END(guard);
  1636. /* Finally, fill out the list with sampled guards. */
  1637. while (smartlist_len(new_primary_guards) < N_PRIMARY_GUARDS) {
  1638. entry_guard_t *guard = sample_reachable_filtered_entry_guards(gs, NULL,
  1639. SAMPLE_EXCLUDE_CONFIRMED|
  1640. SAMPLE_EXCLUDE_PRIMARY|
  1641. SAMPLE_NO_UPDATE_PRIMARY);
  1642. if (!guard)
  1643. break;
  1644. guard->is_primary = 1;
  1645. smartlist_add(new_primary_guards, guard);
  1646. }
  1647. #if 1
  1648. /* Debugging. */
  1649. SMARTLIST_FOREACH(gs->sampled_entry_guards, entry_guard_t *, guard, {
  1650. tor_assert_nonfatal(
  1651. bool_eq(guard->is_primary,
  1652. smartlist_contains(new_primary_guards, guard)));
  1653. });
  1654. #endif /* 1 */
  1655. int any_change = 0;
  1656. if (smartlist_len(gs->primary_entry_guards) !=
  1657. smartlist_len(new_primary_guards)) {
  1658. any_change = 1;
  1659. } else {
  1660. SMARTLIST_FOREACH_BEGIN(gs->primary_entry_guards, entry_guard_t *, g) {
  1661. if (g != smartlist_get(new_primary_guards, g_sl_idx)) {
  1662. any_change = 1;
  1663. }
  1664. } SMARTLIST_FOREACH_END(g);
  1665. }
  1666. if (any_change) {
  1667. log_info(LD_GUARD, "Primary entry guards have changed. "
  1668. "New primary guard list is: ");
  1669. int n = smartlist_len(new_primary_guards);
  1670. SMARTLIST_FOREACH_BEGIN(new_primary_guards, entry_guard_t *, g) {
  1671. log_info(LD_GUARD, " %d/%d: %s%s%s",
  1672. g_sl_idx+1, n, entry_guard_describe(g),
  1673. g->confirmed_idx >= 0 ? " (confirmed)" : "",
  1674. g->is_filtered_guard ? "" : " (excluded by filter)");
  1675. } SMARTLIST_FOREACH_END(g);
  1676. }
  1677. smartlist_free(old_primary_guards);
  1678. smartlist_free(gs->primary_entry_guards);
  1679. gs->primary_entry_guards = new_primary_guards;
  1680. gs->primary_guards_up_to_date = 1;
  1681. running = 0;
  1682. }
  1683. /**
  1684. * Return the number of seconds after the last attempt at which we should
  1685. * retry a guard that has been failing since <b>failing_since</b>.
  1686. */
  1687. static int
  1688. get_retry_schedule(time_t failing_since, time_t now,
  1689. int is_primary)
  1690. {
  1691. const unsigned SIX_HOURS = 6 * 3600;
  1692. const unsigned FOUR_DAYS = 4 * 86400;
  1693. const unsigned SEVEN_DAYS = 7 * 86400;
  1694. time_t tdiff;
  1695. if (now > failing_since) {
  1696. tdiff = now - failing_since;
  1697. } else {
  1698. tdiff = 0;
  1699. }
  1700. const struct {
  1701. time_t maximum; int primary_delay; int nonprimary_delay;
  1702. } delays[] = {
  1703. { SIX_HOURS, 10*60, 1*60*60 },
  1704. { FOUR_DAYS, 90*60, 4*60*60 },
  1705. { SEVEN_DAYS, 4*60*60, 18*60*60 },
  1706. { TIME_MAX, 9*60*60, 36*60*60 }
  1707. };
  1708. unsigned i;
  1709. for (i = 0; i < ARRAY_LENGTH(delays); ++i) {
  1710. if (tdiff <= delays[i].maximum) {
  1711. return is_primary ? delays[i].primary_delay : delays[i].nonprimary_delay;
  1712. }
  1713. }
  1714. /* LCOV_EXCL_START -- can't reach, since delays ends with TIME_MAX. */
  1715. tor_assert_nonfatal_unreached();
  1716. return 36*60*60;
  1717. /* LCOV_EXCL_STOP */
  1718. }
  1719. /**
  1720. * If <b>guard</b> is unreachable, consider whether enough time has passed
  1721. * to consider it maybe-reachable again.
  1722. */
  1723. STATIC void
  1724. entry_guard_consider_retry(entry_guard_t *guard)
  1725. {
  1726. if (guard->is_reachable != GUARD_REACHABLE_NO)
  1727. return; /* No retry needed. */
  1728. const time_t now = approx_time();
  1729. const int delay =
  1730. get_retry_schedule(guard->failing_since, now, guard->is_primary);
  1731. const time_t last_attempt = guard->last_tried_to_connect;
  1732. if (BUG(last_attempt == 0) ||
  1733. now >= last_attempt + delay) {
  1734. /* We should mark this retriable. */
  1735. char tbuf[ISO_TIME_LEN+1];
  1736. format_local_iso_time(tbuf, last_attempt);
  1737. log_info(LD_GUARD, "Marked %s%sguard %s for possible retry, since we "
  1738. "haven't tried to use it since %s.",
  1739. guard->is_primary?"primary ":"",
  1740. guard->confirmed_idx>=0?"confirmed ":"",
  1741. entry_guard_describe(guard),
  1742. tbuf);
  1743. guard->is_reachable = GUARD_REACHABLE_MAYBE;
  1744. if (guard->is_filtered_guard)
  1745. guard->is_usable_filtered_guard = 1;
  1746. }
  1747. }
  1748. /** Tell the entry guards subsystem that we have confirmed that as of
  1749. * just now, we're on the internet. */
  1750. void
  1751. entry_guards_note_internet_connectivity(guard_selection_t *gs)
  1752. {
  1753. gs->last_time_on_internet = approx_time();
  1754. }
  1755. /**
  1756. * Get a guard for use with a circuit. Prefer to pick a running primary
  1757. * guard; then a non-pending running filtered confirmed guard; then a
  1758. * non-pending runnable filtered guard. Update the
  1759. * <b>last_tried_to_connect</b> time and the <b>is_pending</b> fields of the
  1760. * guard as appropriate. Set <b>state_out</b> to the new guard-state
  1761. * of the circuit.
  1762. */
  1763. STATIC entry_guard_t *
  1764. select_entry_guard_for_circuit(guard_selection_t *gs,
  1765. guard_usage_t usage,
  1766. const entry_guard_restriction_t *rst,
  1767. unsigned *state_out)
  1768. {
  1769. const int need_descriptor = (usage == GUARD_USAGE_TRAFFIC);
  1770. tor_assert(gs);
  1771. tor_assert(state_out);
  1772. if (!gs->primary_guards_up_to_date)
  1773. entry_guards_update_primary(gs);
  1774. int num_entry_guards = get_n_primary_guards_to_use(usage);
  1775. smartlist_t *usable_primary_guards = smartlist_new();
  1776. /* "If any entry in PRIMARY_GUARDS has {is_reachable} status of
  1777. <maybe> or <yes>, return the first such guard." */
  1778. SMARTLIST_FOREACH_BEGIN(gs->primary_entry_guards, entry_guard_t *, guard) {
  1779. entry_guard_consider_retry(guard);
  1780. if (! entry_guard_obeys_restriction(guard, rst))
  1781. continue;
  1782. if (guard->is_reachable != GUARD_REACHABLE_NO) {
  1783. if (need_descriptor && !guard_has_descriptor(guard)) {
  1784. continue;
  1785. }
  1786. *state_out = GUARD_CIRC_STATE_USABLE_ON_COMPLETION;
  1787. guard->last_tried_to_connect = approx_time();
  1788. smartlist_add(usable_primary_guards, guard);
  1789. if (smartlist_len(usable_primary_guards) >= num_entry_guards)
  1790. break;
  1791. }
  1792. } SMARTLIST_FOREACH_END(guard);
  1793. if (smartlist_len(usable_primary_guards)) {
  1794. entry_guard_t *guard = smartlist_choose(usable_primary_guards);
  1795. smartlist_free(usable_primary_guards);
  1796. log_info(LD_GUARD, "Selected primary guard %s for circuit.",
  1797. entry_guard_describe(guard));
  1798. return guard;
  1799. }
  1800. smartlist_free(usable_primary_guards);
  1801. /* "Otherwise, if the ordered intersection of {CONFIRMED_GUARDS}
  1802. and {USABLE_FILTERED_GUARDS} is nonempty, return the first
  1803. entry in that intersection that has {is_pending} set to
  1804. false." */
  1805. SMARTLIST_FOREACH_BEGIN(gs->confirmed_entry_guards, entry_guard_t *, guard) {
  1806. if (guard->is_primary)
  1807. continue; /* we already considered this one. */
  1808. if (! entry_guard_obeys_restriction(guard, rst))
  1809. continue;
  1810. entry_guard_consider_retry(guard);
  1811. if (guard->is_usable_filtered_guard && ! guard->is_pending) {
  1812. if (need_descriptor && !guard_has_descriptor(guard))
  1813. continue; /* not a bug */
  1814. guard->is_pending = 1;
  1815. guard->last_tried_to_connect = approx_time();
  1816. *state_out = GUARD_CIRC_STATE_USABLE_IF_NO_BETTER_GUARD;
  1817. log_info(LD_GUARD, "No primary guards available. Selected confirmed "
  1818. "guard %s for circuit. Will try other guards before using "
  1819. "this circuit.",
  1820. entry_guard_describe(guard));
  1821. return guard;
  1822. }
  1823. } SMARTLIST_FOREACH_END(guard);
  1824. /* "Otherwise, if there is no such entry, select a member at
  1825. random from {USABLE_FILTERED_GUARDS}." */
  1826. {
  1827. entry_guard_t *guard;
  1828. unsigned flags = 0;
  1829. if (need_descriptor)
  1830. flags |= SAMPLE_EXCLUDE_NO_DESCRIPTOR;
  1831. guard = sample_reachable_filtered_entry_guards(gs,
  1832. rst,
  1833. SAMPLE_EXCLUDE_CONFIRMED |
  1834. SAMPLE_EXCLUDE_PRIMARY |
  1835. SAMPLE_EXCLUDE_PENDING |
  1836. flags);
  1837. if (guard == NULL) {
  1838. log_info(LD_GUARD, "Absolutely no sampled guards were available. "
  1839. "Marking all guards for retry and starting from top again.");
  1840. mark_all_guards_maybe_reachable(gs);
  1841. return NULL;
  1842. }
  1843. guard->is_pending = 1;
  1844. guard->last_tried_to_connect = approx_time();
  1845. *state_out = GUARD_CIRC_STATE_USABLE_IF_NO_BETTER_GUARD;
  1846. log_info(LD_GUARD, "No primary or confirmed guards available. Selected "
  1847. "random guard %s for circuit. Will try other guards before "
  1848. "using this circuit.",
  1849. entry_guard_describe(guard));
  1850. return guard;
  1851. }
  1852. }
  1853. /**
  1854. * Note that we failed to connect to or build circuits through <b>guard</b>.
  1855. * Use with a guard returned by select_entry_guard_for_circuit().
  1856. */
  1857. STATIC void
  1858. entry_guards_note_guard_failure(guard_selection_t *gs,
  1859. entry_guard_t *guard)
  1860. {
  1861. tor_assert(gs);
  1862. guard->is_reachable = GUARD_REACHABLE_NO;
  1863. guard->is_usable_filtered_guard = 0;
  1864. guard->is_pending = 0;
  1865. if (guard->failing_since == 0)
  1866. guard->failing_since = approx_time();
  1867. log_info(LD_GUARD, "Recorded failure for %s%sguard %s",
  1868. guard->is_primary?"primary ":"",
  1869. guard->confirmed_idx>=0?"confirmed ":"",
  1870. entry_guard_describe(guard));
  1871. }
  1872. /**
  1873. * Note that we successfully connected to, and built a circuit through
  1874. * <b>guard</b>. Given the old guard-state of the circuit in <b>old_state</b>,
  1875. * return the new guard-state of the circuit.
  1876. *
  1877. * Be aware: the circuit is only usable when its guard-state becomes
  1878. * GUARD_CIRC_STATE_COMPLETE.
  1879. **/
  1880. STATIC unsigned
  1881. entry_guards_note_guard_success(guard_selection_t *gs,
  1882. entry_guard_t *guard,
  1883. unsigned old_state)
  1884. {
  1885. tor_assert(gs);
  1886. /* Save this, since we're about to overwrite it. */
  1887. const time_t last_time_on_internet = gs->last_time_on_internet;
  1888. gs->last_time_on_internet = approx_time();
  1889. guard->is_reachable = GUARD_REACHABLE_YES;
  1890. guard->failing_since = 0;
  1891. guard->is_pending = 0;
  1892. if (guard->is_filtered_guard)
  1893. guard->is_usable_filtered_guard = 1;
  1894. if (guard->confirmed_idx < 0) {
  1895. make_guard_confirmed(gs, guard);
  1896. if (!gs->primary_guards_up_to_date)
  1897. entry_guards_update_primary(gs);
  1898. }
  1899. unsigned new_state;
  1900. switch (old_state) {
  1901. case GUARD_CIRC_STATE_COMPLETE:
  1902. case GUARD_CIRC_STATE_USABLE_ON_COMPLETION:
  1903. new_state = GUARD_CIRC_STATE_COMPLETE;
  1904. break;
  1905. default:
  1906. tor_assert_nonfatal_unreached();
  1907. /* Fall through. */
  1908. case GUARD_CIRC_STATE_USABLE_IF_NO_BETTER_GUARD:
  1909. if (guard->is_primary) {
  1910. /* XXXX #20832 -- I don't actually like this logic. It seems to make
  1911. * us a little more susceptible to evil-ISP attacks. The mitigations
  1912. * I'm thinking of, however, aren't local to this point, so I'll leave
  1913. * it alone. */
  1914. /* This guard may have become primary by virtue of being confirmed.
  1915. * If so, the circuit for it is now complete.
  1916. */
  1917. new_state = GUARD_CIRC_STATE_COMPLETE;
  1918. } else {
  1919. new_state = GUARD_CIRC_STATE_WAITING_FOR_BETTER_GUARD;
  1920. }
  1921. break;
  1922. }
  1923. if (! guard->is_primary) {
  1924. if (last_time_on_internet + get_internet_likely_down_interval()
  1925. < approx_time()) {
  1926. mark_primary_guards_maybe_reachable(gs);
  1927. }
  1928. }
  1929. log_info(LD_GUARD, "Recorded success for %s%sguard %s",
  1930. guard->is_primary?"primary ":"",
  1931. guard->confirmed_idx>=0?"confirmed ":"",
  1932. entry_guard_describe(guard));
  1933. return new_state;
  1934. }
  1935. /**
  1936. * Helper: Return true iff <b>a</b> has higher priority than <b>b</b>.
  1937. */
  1938. STATIC int
  1939. entry_guard_has_higher_priority(entry_guard_t *a, entry_guard_t *b)
  1940. {
  1941. tor_assert(a && b);
  1942. if (a == b)
  1943. return 0;
  1944. /* Confirmed is always better than unconfirmed; lower index better
  1945. than higher */
  1946. if (a->confirmed_idx < 0) {
  1947. if (b->confirmed_idx >= 0)
  1948. return 0;
  1949. } else {
  1950. if (b->confirmed_idx < 0)
  1951. return 1;
  1952. /* Lower confirmed_idx is better than higher. */
  1953. return (a->confirmed_idx < b->confirmed_idx);
  1954. }
  1955. /* If we reach this point, both are unconfirmed. If one is pending, it
  1956. * has higher priority. */
  1957. if (a->is_pending) {
  1958. if (! b->is_pending)
  1959. return 1;
  1960. /* Both are pending: earlier last_tried_connect wins. */
  1961. return a->last_tried_to_connect < b->last_tried_to_connect;
  1962. } else {
  1963. if (b->is_pending)
  1964. return 0;
  1965. /* Neither is pending: priorities are equal. */
  1966. return 0;
  1967. }
  1968. }
  1969. /** Release all storage held in <b>restriction</b> */
  1970. STATIC void
  1971. entry_guard_restriction_free_(entry_guard_restriction_t *rst)
  1972. {
  1973. tor_free(rst);
  1974. }
  1975. /**
  1976. * Release all storage held in <b>state</b>.
  1977. */
  1978. void
  1979. circuit_guard_state_free_(circuit_guard_state_t *state)
  1980. {
  1981. if (!state)
  1982. return;
  1983. entry_guard_restriction_free(state->restrictions);
  1984. entry_guard_handle_free(state->guard);
  1985. tor_free(state);
  1986. }
  1987. /** Allocate and return a new circuit_guard_state_t to track the result
  1988. * of using <b>guard</b> for a given operation. */
  1989. MOCK_IMPL(STATIC circuit_guard_state_t *,
  1990. circuit_guard_state_new,(entry_guard_t *guard, unsigned state,
  1991. entry_guard_restriction_t *rst))
  1992. {
  1993. circuit_guard_state_t *result;
  1994. result = tor_malloc_zero(sizeof(circuit_guard_state_t));
  1995. result->guard = entry_guard_handle_new(guard);
  1996. result->state = state;
  1997. result->state_set_at = approx_time();
  1998. result->restrictions = rst;
  1999. return result;
  2000. }
  2001. /**
  2002. * Pick a suitable entry guard for a circuit in, and place that guard
  2003. * in *<b>chosen_node_out</b>. Set *<b>guard_state_out</b> to an opaque
  2004. * state object that will record whether the circuit is ready to be used
  2005. * or not. Return 0 on success; on failure, return -1.
  2006. *
  2007. * If a restriction is provided in <b>rst</b>, do not return any guards that
  2008. * violate it, and remember that restriction in <b>guard_state_out</b> for
  2009. * later use. (Takes ownership of the <b>rst</b> object.)
  2010. */
  2011. int
  2012. entry_guard_pick_for_circuit(guard_selection_t *gs,
  2013. guard_usage_t usage,
  2014. entry_guard_restriction_t *rst,
  2015. const node_t **chosen_node_out,
  2016. circuit_guard_state_t **guard_state_out)
  2017. {
  2018. tor_assert(gs);
  2019. tor_assert(chosen_node_out);
  2020. tor_assert(guard_state_out);
  2021. *chosen_node_out = NULL;
  2022. *guard_state_out = NULL;
  2023. unsigned state = 0;
  2024. entry_guard_t *guard =
  2025. select_entry_guard_for_circuit(gs, usage, rst, &state);
  2026. if (! guard)
  2027. goto fail;
  2028. if (BUG(state == 0))
  2029. goto fail;
  2030. const node_t *node = node_get_by_id(guard->identity);
  2031. // XXXX #20827 check Ed ID.
  2032. if (! node)
  2033. goto fail;
  2034. if (BUG(usage != GUARD_USAGE_DIRGUARD && !node_has_descriptor(node)))
  2035. goto fail;
  2036. *chosen_node_out = node;
  2037. *guard_state_out = circuit_guard_state_new(guard, state, rst);
  2038. return 0;
  2039. fail:
  2040. entry_guard_restriction_free(rst);
  2041. return -1;
  2042. }
  2043. /**
  2044. * Called by the circuit building module when a circuit has succeeded: informs
  2045. * the guards code that the guard in *<b>guard_state_p</b> is working, and
  2046. * advances the state of the guard module. On a GUARD_USABLE_NEVER return
  2047. * value, the circuit is broken and should not be used. On a GUARD_USABLE_NOW
  2048. * return value, the circuit is ready to use. On a GUARD_MAYBE_USABLE_LATER
  2049. * return value, the circuit should not be used until we find out whether
  2050. * preferred guards will work for us.
  2051. */
  2052. guard_usable_t
  2053. entry_guard_succeeded(circuit_guard_state_t **guard_state_p)
  2054. {
  2055. if (BUG(*guard_state_p == NULL))
  2056. return GUARD_USABLE_NEVER;
  2057. entry_guard_t *guard = entry_guard_handle_get((*guard_state_p)->guard);
  2058. if (! guard || BUG(guard->in_selection == NULL))
  2059. return GUARD_USABLE_NEVER;
  2060. unsigned newstate =
  2061. entry_guards_note_guard_success(guard->in_selection, guard,
  2062. (*guard_state_p)->state);
  2063. (*guard_state_p)->state = newstate;
  2064. (*guard_state_p)->state_set_at = approx_time();
  2065. if (newstate == GUARD_CIRC_STATE_COMPLETE) {
  2066. return GUARD_USABLE_NOW;
  2067. } else {
  2068. return GUARD_MAYBE_USABLE_LATER;
  2069. }
  2070. }
  2071. /** Cancel the selection of *<b>guard_state_p</b> without declaring
  2072. * success or failure. It is safe to call this function if success or
  2073. * failure _has_ already been declared. */
  2074. void
  2075. entry_guard_cancel(circuit_guard_state_t **guard_state_p)
  2076. {
  2077. if (BUG(*guard_state_p == NULL))
  2078. return;
  2079. entry_guard_t *guard = entry_guard_handle_get((*guard_state_p)->guard);
  2080. if (! guard)
  2081. return;
  2082. /* XXXX prop271 -- last_tried_to_connect_at will be erroneous here, but this
  2083. * function will only get called in "bug" cases anyway. */
  2084. guard->is_pending = 0;
  2085. circuit_guard_state_free(*guard_state_p);
  2086. *guard_state_p = NULL;
  2087. }
  2088. /**
  2089. * Called by the circuit building module when a circuit has succeeded:
  2090. * informs the guards code that the guard in *<b>guard_state_p</b> is
  2091. * not working, and advances the state of the guard module.
  2092. */
  2093. void
  2094. entry_guard_failed(circuit_guard_state_t **guard_state_p)
  2095. {
  2096. if (BUG(*guard_state_p == NULL))
  2097. return;
  2098. entry_guard_t *guard = entry_guard_handle_get((*guard_state_p)->guard);
  2099. if (! guard || BUG(guard->in_selection == NULL))
  2100. return;
  2101. entry_guards_note_guard_failure(guard->in_selection, guard);
  2102. (*guard_state_p)->state = GUARD_CIRC_STATE_DEAD;
  2103. (*guard_state_p)->state_set_at = approx_time();
  2104. }
  2105. /**
  2106. * Run the entry_guard_failed() function on every circuit that is
  2107. * pending on <b>chan</b>.
  2108. */
  2109. void
  2110. entry_guard_chan_failed(channel_t *chan)
  2111. {
  2112. if (!chan)
  2113. return;
  2114. smartlist_t *pending = smartlist_new();
  2115. circuit_get_all_pending_on_channel(pending, chan);
  2116. SMARTLIST_FOREACH_BEGIN(pending, circuit_t *, circ) {
  2117. if (!CIRCUIT_IS_ORIGIN(circ))
  2118. continue;
  2119. origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);
  2120. if (origin_circ->guard_state) {
  2121. /* We might have no guard state if we didn't use a guard on this
  2122. * circuit (eg it's for a fallback directory). */
  2123. entry_guard_failed(&origin_circ->guard_state);
  2124. }
  2125. } SMARTLIST_FOREACH_END(circ);
  2126. smartlist_free(pending);
  2127. }
  2128. /**
  2129. * Return true iff every primary guard in <b>gs</b> is believed to
  2130. * be unreachable.
  2131. */
  2132. STATIC int
  2133. entry_guards_all_primary_guards_are_down(guard_selection_t *gs)
  2134. {
  2135. tor_assert(gs);
  2136. if (!gs->primary_guards_up_to_date)
  2137. entry_guards_update_primary(gs);
  2138. SMARTLIST_FOREACH_BEGIN(gs->primary_entry_guards, entry_guard_t *, guard) {
  2139. entry_guard_consider_retry(guard);
  2140. if (guard->is_reachable != GUARD_REACHABLE_NO)
  2141. return 0;
  2142. } SMARTLIST_FOREACH_END(guard);
  2143. return 1;
  2144. }
  2145. /** Wrapper for entry_guard_has_higher_priority that compares the
  2146. * guard-priorities of a pair of circuits. Return 1 if <b>a</b> has higher
  2147. * priority than <b>b</b>.
  2148. *
  2149. * If a restriction is provided in <b>rst</b>, then do not consider
  2150. * <b>a</b> to have higher priority if it violates the restriction.
  2151. */
  2152. static int
  2153. circ_state_has_higher_priority(origin_circuit_t *a,
  2154. const entry_guard_restriction_t *rst,
  2155. origin_circuit_t *b)
  2156. {
  2157. circuit_guard_state_t *state_a = origin_circuit_get_guard_state(a);
  2158. circuit_guard_state_t *state_b = origin_circuit_get_guard_state(b);
  2159. tor_assert(state_a);
  2160. tor_assert(state_b);
  2161. entry_guard_t *guard_a = entry_guard_handle_get(state_a->guard);
  2162. entry_guard_t *guard_b = entry_guard_handle_get(state_b->guard);
  2163. if (! guard_a) {
  2164. /* Unknown guard -- never higher priority. */
  2165. return 0;
  2166. } else if (! guard_b) {
  2167. /* Known guard -- higher priority than any unknown guard. */
  2168. return 1;
  2169. } else if (! entry_guard_obeys_restriction(guard_a, rst)) {
  2170. /* Restriction violated; guard_a cannot have higher priority. */
  2171. return 0;
  2172. } else {
  2173. /* Both known -- compare.*/
  2174. return entry_guard_has_higher_priority(guard_a, guard_b);
  2175. }
  2176. }
  2177. /**
  2178. * Look at all of the origin_circuit_t * objects in <b>all_circuits_in</b>,
  2179. * and see if any of them that were previously not ready to use for
  2180. * guard-related reasons are now ready to use. Place those circuits
  2181. * in <b>newly_complete_out</b>, and mark them COMPLETE.
  2182. *
  2183. * Return 1 if we upgraded any circuits, and 0 otherwise.
  2184. */
  2185. int
  2186. entry_guards_upgrade_waiting_circuits(guard_selection_t *gs,
  2187. const smartlist_t *all_circuits_in,
  2188. smartlist_t *newly_complete_out)
  2189. {
  2190. tor_assert(gs);
  2191. tor_assert(all_circuits_in);
  2192. tor_assert(newly_complete_out);
  2193. if (! entry_guards_all_primary_guards_are_down(gs)) {
  2194. /* We only upgrade a waiting circuit if the primary guards are all
  2195. * down. */
  2196. log_debug(LD_GUARD, "Considered upgrading guard-stalled circuits, "
  2197. "but not all primary guards were definitely down.");
  2198. return 0;
  2199. }
  2200. int n_waiting = 0;
  2201. int n_complete = 0;
  2202. int n_complete_blocking = 0;
  2203. origin_circuit_t *best_waiting_circuit = NULL;
  2204. smartlist_t *all_circuits = smartlist_new();
  2205. SMARTLIST_FOREACH_BEGIN(all_circuits_in, origin_circuit_t *, circ) {
  2206. // We filter out circuits that aren't ours, or which we can't
  2207. // reason about.
  2208. circuit_guard_state_t *state = origin_circuit_get_guard_state(circ);
  2209. if (state == NULL)
  2210. continue;
  2211. entry_guard_t *guard = entry_guard_handle_get(state->guard);
  2212. if (!guard || guard->in_selection != gs)
  2213. continue;
  2214. smartlist_add(all_circuits, circ);
  2215. } SMARTLIST_FOREACH_END(circ);
  2216. SMARTLIST_FOREACH_BEGIN(all_circuits, origin_circuit_t *, circ) {
  2217. circuit_guard_state_t *state = origin_circuit_get_guard_state(circ);
  2218. if (BUG(state == NULL))
  2219. continue;
  2220. if (state->state == GUARD_CIRC_STATE_WAITING_FOR_BETTER_GUARD) {
  2221. ++n_waiting;
  2222. if (! best_waiting_circuit ||
  2223. circ_state_has_higher_priority(circ, NULL, best_waiting_circuit)) {
  2224. best_waiting_circuit = circ;
  2225. }
  2226. }
  2227. } SMARTLIST_FOREACH_END(circ);
  2228. if (! best_waiting_circuit) {
  2229. log_debug(LD_GUARD, "Considered upgrading guard-stalled circuits, "
  2230. "but didn't find any.");
  2231. goto no_change;
  2232. }
  2233. /* We'll need to keep track of what restrictions were used when picking this
  2234. * circuit, so that we don't allow any circuit without those restrictions to
  2235. * block it. */
  2236. const entry_guard_restriction_t *rst_on_best_waiting =
  2237. origin_circuit_get_guard_state(best_waiting_circuit)->restrictions;
  2238. /* First look at the complete circuits: Do any block this circuit? */
  2239. SMARTLIST_FOREACH_BEGIN(all_circuits, origin_circuit_t *, circ) {
  2240. /* "C2 "blocks" C1 if:
  2241. * C2 obeys all the restrictions that C1 had to obey, AND
  2242. * C2 has higher priority than C1, AND
  2243. * Either C2 is <complete>, or C2 is <waiting_for_better_guard>,
  2244. or C2 has been <usable_if_no_better_guard> for no more than
  2245. {NONPRIMARY_GUARD_CONNECT_TIMEOUT} seconds."
  2246. */
  2247. circuit_guard_state_t *state = origin_circuit_get_guard_state(circ);
  2248. if BUG((state == NULL))
  2249. continue;
  2250. if (state->state != GUARD_CIRC_STATE_COMPLETE)
  2251. continue;
  2252. ++n_complete;
  2253. if (circ_state_has_higher_priority(circ, rst_on_best_waiting,
  2254. best_waiting_circuit))
  2255. ++n_complete_blocking;
  2256. } SMARTLIST_FOREACH_END(circ);
  2257. if (n_complete_blocking) {
  2258. log_debug(LD_GUARD, "Considered upgrading guard-stalled circuits: found "
  2259. "%d complete and %d guard-stalled. At least one complete "
  2260. "circuit had higher priority, so not upgrading.",
  2261. n_complete, n_waiting);
  2262. goto no_change;
  2263. }
  2264. /* " * If any circuit C1 is <waiting_for_better_guard>, AND:
  2265. * All primary guards have reachable status of <no>.
  2266. * There is no circuit C2 that "blocks" C1.
  2267. Then, upgrade C1 to <complete>.""
  2268. */
  2269. int n_blockers_found = 0;
  2270. const time_t state_set_at_cutoff =
  2271. approx_time() - get_nonprimary_guard_connect_timeout();
  2272. SMARTLIST_FOREACH_BEGIN(all_circuits, origin_circuit_t *, circ) {
  2273. circuit_guard_state_t *state = origin_circuit_get_guard_state(circ);
  2274. if (BUG(state == NULL))
  2275. continue;
  2276. if (state->state != GUARD_CIRC_STATE_USABLE_IF_NO_BETTER_GUARD)
  2277. continue;
  2278. if (state->state_set_at <= state_set_at_cutoff)
  2279. continue;
  2280. if (circ_state_has_higher_priority(circ, rst_on_best_waiting,
  2281. best_waiting_circuit))
  2282. ++n_blockers_found;
  2283. } SMARTLIST_FOREACH_END(circ);
  2284. if (n_blockers_found) {
  2285. log_debug(LD_GUARD, "Considered upgrading guard-stalled circuits: found "
  2286. "%d guard-stalled, but %d pending circuit(s) had higher "
  2287. "guard priority, so not upgrading.",
  2288. n_waiting, n_blockers_found);
  2289. goto no_change;
  2290. }
  2291. /* Okay. We have a best waiting circuit, and we aren't waiting for
  2292. anything better. Add all circuits with that priority to the
  2293. list, and call them COMPLETE. */
  2294. int n_succeeded = 0;
  2295. SMARTLIST_FOREACH_BEGIN(all_circuits, origin_circuit_t *, circ) {
  2296. circuit_guard_state_t *state = origin_circuit_get_guard_state(circ);
  2297. if (BUG(state == NULL))
  2298. continue;
  2299. if (circ != best_waiting_circuit && rst_on_best_waiting) {
  2300. /* Can't upgrade other circ with same priority as best; might
  2301. be blocked. */
  2302. continue;
  2303. }
  2304. if (state->state != GUARD_CIRC_STATE_WAITING_FOR_BETTER_GUARD)
  2305. continue;
  2306. if (circ_state_has_higher_priority(best_waiting_circuit, NULL, circ))
  2307. continue;
  2308. state->state = GUARD_CIRC_STATE_COMPLETE;
  2309. state->state_set_at = approx_time();
  2310. smartlist_add(newly_complete_out, circ);
  2311. ++n_succeeded;
  2312. } SMARTLIST_FOREACH_END(circ);
  2313. log_info(LD_GUARD, "Considered upgrading guard-stalled circuits: found "
  2314. "%d guard-stalled, %d complete. %d of the guard-stalled "
  2315. "circuit(s) had high enough priority to upgrade.",
  2316. n_waiting, n_complete, n_succeeded);
  2317. tor_assert_nonfatal(n_succeeded >= 1);
  2318. smartlist_free(all_circuits);
  2319. return 1;
  2320. no_change:
  2321. smartlist_free(all_circuits);
  2322. return 0;
  2323. }
  2324. /**
  2325. * Return true iff the circuit whose state is <b>guard_state</b> should
  2326. * expire.
  2327. */
  2328. int
  2329. entry_guard_state_should_expire(circuit_guard_state_t *guard_state)
  2330. {
  2331. if (guard_state == NULL)
  2332. return 0;
  2333. const time_t expire_if_waiting_since =
  2334. approx_time() - get_nonprimary_guard_idle_timeout();
  2335. return (guard_state->state == GUARD_CIRC_STATE_WAITING_FOR_BETTER_GUARD
  2336. && guard_state->state_set_at < expire_if_waiting_since);
  2337. }
  2338. /**
  2339. * Update all derived pieces of the guard selection state in <b>gs</b>.
  2340. * Return true iff we should stop using all previously generated circuits.
  2341. */
  2342. int
  2343. entry_guards_update_all(guard_selection_t *gs)
  2344. {
  2345. sampled_guards_update_from_consensus(gs);
  2346. entry_guards_update_filtered_sets(gs);
  2347. entry_guards_update_confirmed(gs);
  2348. entry_guards_update_primary(gs);
  2349. return 0;
  2350. }
  2351. /**
  2352. * Return a newly allocated string for encoding the persistent parts of
  2353. * <b>guard</b> to the state file.
  2354. */
  2355. STATIC char *
  2356. entry_guard_encode_for_state(entry_guard_t *guard)
  2357. {
  2358. /*
  2359. * The meta-format we use is K=V K=V K=V... where K can be any
  2360. * characters excepts space and =, and V can be any characters except
  2361. * space. The order of entries is not allowed to matter.
  2362. * Unrecognized K=V entries are persisted; recognized but erroneous
  2363. * entries are corrected.
  2364. */
  2365. smartlist_t *result = smartlist_new();
  2366. char tbuf[ISO_TIME_LEN+1];
  2367. tor_assert(guard);
  2368. smartlist_add_asprintf(result, "in=%s", guard->selection_name);
  2369. smartlist_add_asprintf(result, "rsa_id=%s",
  2370. hex_str(guard->identity, DIGEST_LEN));
  2371. if (guard->bridge_addr) {
  2372. smartlist_add_asprintf(result, "bridge_addr=%s:%d",
  2373. fmt_and_decorate_addr(&guard->bridge_addr->addr),
  2374. guard->bridge_addr->port);
  2375. }
  2376. if (strlen(guard->nickname) && is_legal_nickname(guard->nickname)) {
  2377. smartlist_add_asprintf(result, "nickname=%s", guard->nickname);
  2378. }
  2379. format_iso_time_nospace(tbuf, guard->sampled_on_date);
  2380. smartlist_add_asprintf(result, "sampled_on=%s", tbuf);
  2381. if (guard->sampled_by_version) {
  2382. smartlist_add_asprintf(result, "sampled_by=%s",
  2383. guard->sampled_by_version);
  2384. }
  2385. if (guard->unlisted_since_date > 0) {
  2386. format_iso_time_nospace(tbuf, guard->unlisted_since_date);
  2387. smartlist_add_asprintf(result, "unlisted_since=%s", tbuf);
  2388. }
  2389. smartlist_add_asprintf(result, "listed=%d",
  2390. (int)guard->currently_listed);
  2391. if (guard->confirmed_idx >= 0) {
  2392. format_iso_time_nospace(tbuf, guard->confirmed_on_date);
  2393. smartlist_add_asprintf(result, "confirmed_on=%s", tbuf);
  2394. smartlist_add_asprintf(result, "confirmed_idx=%d", guard->confirmed_idx);
  2395. }
  2396. const double EPSILON = 1.0e-6;
  2397. /* Make a copy of the pathbias object, since we will want to update
  2398. some of them */
  2399. guard_pathbias_t *pb = tor_memdup(&guard->pb, sizeof(*pb));
  2400. pb->use_successes = pathbias_get_use_success_count(guard);
  2401. pb->successful_circuits_closed = pathbias_get_close_success_count(guard);
  2402. #define PB_FIELD(field) do { \
  2403. if (pb->field >= EPSILON) { \
  2404. smartlist_add_asprintf(result, "pb_" #field "=%f", pb->field); \
  2405. } \
  2406. } while (0)
  2407. PB_FIELD(use_attempts);
  2408. PB_FIELD(use_successes);
  2409. PB_FIELD(circ_attempts);
  2410. PB_FIELD(circ_successes);
  2411. PB_FIELD(successful_circuits_closed);
  2412. PB_FIELD(collapsed_circuits);
  2413. PB_FIELD(unusable_circuits);
  2414. PB_FIELD(timeouts);
  2415. tor_free(pb);
  2416. #undef PB_FIELD
  2417. if (guard->extra_state_fields)
  2418. smartlist_add_strdup(result, guard->extra_state_fields);
  2419. char *joined = smartlist_join_strings(result, " ", 0, NULL);
  2420. SMARTLIST_FOREACH(result, char *, cp, tor_free(cp));
  2421. smartlist_free(result);
  2422. return joined;
  2423. }
  2424. /**
  2425. * Given a string generated by entry_guard_encode_for_state(), parse it
  2426. * (if possible) and return an entry_guard_t object for it. Return NULL
  2427. * on complete failure.
  2428. */
  2429. STATIC entry_guard_t *
  2430. entry_guard_parse_from_state(const char *s)
  2431. {
  2432. /* Unrecognized entries get put in here. */
  2433. smartlist_t *extra = smartlist_new();
  2434. /* These fields get parsed from the string. */
  2435. char *in = NULL;
  2436. char *rsa_id = NULL;
  2437. char *nickname = NULL;
  2438. char *sampled_on = NULL;
  2439. char *sampled_by = NULL;
  2440. char *unlisted_since = NULL;
  2441. char *listed = NULL;
  2442. char *confirmed_on = NULL;
  2443. char *confirmed_idx = NULL;
  2444. char *bridge_addr = NULL;
  2445. // pathbias
  2446. char *pb_use_attempts = NULL;
  2447. char *pb_use_successes = NULL;
  2448. char *pb_circ_attempts = NULL;
  2449. char *pb_circ_successes = NULL;
  2450. char *pb_successful_circuits_closed = NULL;
  2451. char *pb_collapsed_circuits = NULL;
  2452. char *pb_unusable_circuits = NULL;
  2453. char *pb_timeouts = NULL;
  2454. /* Split up the entries. Put the ones we know about in strings and the
  2455. * rest in "extra". */
  2456. {
  2457. smartlist_t *entries = smartlist_new();
  2458. strmap_t *vals = strmap_new(); // Maps keyword to location
  2459. #define FIELD(f) \
  2460. strmap_set(vals, #f, &f);
  2461. FIELD(in);
  2462. FIELD(rsa_id);
  2463. FIELD(nickname);
  2464. FIELD(sampled_on);
  2465. FIELD(sampled_by);
  2466. FIELD(unlisted_since);
  2467. FIELD(listed);
  2468. FIELD(confirmed_on);
  2469. FIELD(confirmed_idx);
  2470. FIELD(bridge_addr);
  2471. FIELD(pb_use_attempts);
  2472. FIELD(pb_use_successes);
  2473. FIELD(pb_circ_attempts);
  2474. FIELD(pb_circ_successes);
  2475. FIELD(pb_successful_circuits_closed);
  2476. FIELD(pb_collapsed_circuits);
  2477. FIELD(pb_unusable_circuits);
  2478. FIELD(pb_timeouts);
  2479. #undef FIELD
  2480. smartlist_split_string(entries, s, " ",
  2481. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2482. SMARTLIST_FOREACH_BEGIN(entries, char *, entry) {
  2483. const char *eq = strchr(entry, '=');
  2484. if (!eq) {
  2485. smartlist_add(extra, entry);
  2486. continue;
  2487. }
  2488. char *key = tor_strndup(entry, eq-entry);
  2489. char **target = strmap_get(vals, key);
  2490. if (target == NULL || *target != NULL) {
  2491. /* unrecognized or already set */
  2492. smartlist_add(extra, entry);
  2493. tor_free(key);
  2494. continue;
  2495. }
  2496. *target = tor_strdup(eq+1);
  2497. tor_free(key);
  2498. tor_free(entry);
  2499. } SMARTLIST_FOREACH_END(entry);
  2500. smartlist_free(entries);
  2501. strmap_free(vals, NULL);
  2502. }
  2503. entry_guard_t *guard = tor_malloc_zero(sizeof(entry_guard_t));
  2504. guard->is_persistent = 1;
  2505. if (in == NULL) {
  2506. log_warn(LD_CIRC, "Guard missing 'in' field");
  2507. goto err;
  2508. }
  2509. guard->selection_name = in;
  2510. in = NULL;
  2511. if (rsa_id == NULL) {
  2512. log_warn(LD_CIRC, "Guard missing RSA ID field");
  2513. goto err;
  2514. }
  2515. /* Process the identity and nickname. */
  2516. if (base16_decode(guard->identity, sizeof(guard->identity),
  2517. rsa_id, strlen(rsa_id)) != DIGEST_LEN) {
  2518. log_warn(LD_CIRC, "Unable to decode guard identity %s", escaped(rsa_id));
  2519. goto err;
  2520. }
  2521. if (nickname) {
  2522. strlcpy(guard->nickname, nickname, sizeof(guard->nickname));
  2523. } else {
  2524. guard->nickname[0]='$';
  2525. base16_encode(guard->nickname+1, sizeof(guard->nickname)-1,
  2526. guard->identity, DIGEST_LEN);
  2527. }
  2528. if (bridge_addr) {
  2529. tor_addr_port_t res;
  2530. memset(&res, 0, sizeof(res));
  2531. int r = tor_addr_port_parse(LOG_WARN, bridge_addr,
  2532. &res.addr, &res.port, -1);
  2533. if (r == 0)
  2534. guard->bridge_addr = tor_memdup(&res, sizeof(res));
  2535. /* On error, we already warned. */
  2536. }
  2537. /* Process the various time fields. */
  2538. #define HANDLE_TIME(field) do { \
  2539. if (field) { \
  2540. int r = parse_iso_time_nospace(field, &field ## _time); \
  2541. if (r < 0) { \
  2542. log_warn(LD_CIRC, "Unable to parse %s %s from guard", \
  2543. #field, escaped(field)); \
  2544. field##_time = -1; \
  2545. } \
  2546. } \
  2547. } while (0)
  2548. time_t sampled_on_time = 0;
  2549. time_t unlisted_since_time = 0;
  2550. time_t confirmed_on_time = 0;
  2551. HANDLE_TIME(sampled_on);
  2552. HANDLE_TIME(unlisted_since);
  2553. HANDLE_TIME(confirmed_on);
  2554. if (sampled_on_time <= 0)
  2555. sampled_on_time = approx_time();
  2556. if (unlisted_since_time < 0)
  2557. unlisted_since_time = 0;
  2558. if (confirmed_on_time < 0)
  2559. confirmed_on_time = 0;
  2560. #undef HANDLE_TIME
  2561. guard->sampled_on_date = sampled_on_time;
  2562. guard->unlisted_since_date = unlisted_since_time;
  2563. guard->confirmed_on_date = confirmed_on_time;
  2564. /* Take sampled_by_version verbatim. */
  2565. guard->sampled_by_version = sampled_by;
  2566. sampled_by = NULL; /* prevent free */
  2567. /* Listed is a boolean */
  2568. if (listed && strcmp(listed, "0"))
  2569. guard->currently_listed = 1;
  2570. /* The index is a nonnegative integer. */
  2571. guard->confirmed_idx = -1;
  2572. if (confirmed_idx) {
  2573. int ok=1;
  2574. long idx = tor_parse_long(confirmed_idx, 10, 0, INT_MAX, &ok, NULL);
  2575. if (! ok) {
  2576. log_warn(LD_GUARD, "Guard has invalid confirmed_idx %s",
  2577. escaped(confirmed_idx));
  2578. } else {
  2579. guard->confirmed_idx = (int)idx;
  2580. }
  2581. }
  2582. /* Anything we didn't recognize gets crammed together */
  2583. if (smartlist_len(extra) > 0) {
  2584. guard->extra_state_fields = smartlist_join_strings(extra, " ", 0, NULL);
  2585. }
  2586. /* initialize non-persistent fields */
  2587. guard->is_reachable = GUARD_REACHABLE_MAYBE;
  2588. #define PB_FIELD(field) \
  2589. do { \
  2590. if (pb_ ## field) { \
  2591. int ok = 1; \
  2592. double r = tor_parse_double(pb_ ## field, 0.0, 1e9, &ok, NULL); \
  2593. if (! ok) { \
  2594. log_warn(LD_CIRC, "Guard has invalid pb_%s %s", \
  2595. #field, pb_ ## field); \
  2596. } else { \
  2597. guard->pb.field = r; \
  2598. } \
  2599. } \
  2600. } while (0)
  2601. PB_FIELD(use_attempts);
  2602. PB_FIELD(use_successes);
  2603. PB_FIELD(circ_attempts);
  2604. PB_FIELD(circ_successes);
  2605. PB_FIELD(successful_circuits_closed);
  2606. PB_FIELD(collapsed_circuits);
  2607. PB_FIELD(unusable_circuits);
  2608. PB_FIELD(timeouts);
  2609. #undef PB_FIELD
  2610. pathbias_check_use_success_count(guard);
  2611. pathbias_check_close_success_count(guard);
  2612. /* We update everything on this guard later, after we've parsed
  2613. * everything. */
  2614. goto done;
  2615. err:
  2616. // only consider it an error if the guard state was totally unparseable.
  2617. entry_guard_free(guard);
  2618. guard = NULL;
  2619. done:
  2620. tor_free(in);
  2621. tor_free(rsa_id);
  2622. tor_free(nickname);
  2623. tor_free(sampled_on);
  2624. tor_free(sampled_by);
  2625. tor_free(unlisted_since);
  2626. tor_free(listed);
  2627. tor_free(confirmed_on);
  2628. tor_free(confirmed_idx);
  2629. tor_free(bridge_addr);
  2630. tor_free(pb_use_attempts);
  2631. tor_free(pb_use_successes);
  2632. tor_free(pb_circ_attempts);
  2633. tor_free(pb_circ_successes);
  2634. tor_free(pb_successful_circuits_closed);
  2635. tor_free(pb_collapsed_circuits);
  2636. tor_free(pb_unusable_circuits);
  2637. tor_free(pb_timeouts);
  2638. SMARTLIST_FOREACH(extra, char *, cp, tor_free(cp));
  2639. smartlist_free(extra);
  2640. return guard;
  2641. }
  2642. /**
  2643. * Replace the Guards entries in <b>state</b> with a list of all our sampled
  2644. * guards.
  2645. */
  2646. static void
  2647. entry_guards_update_guards_in_state(or_state_t *state)
  2648. {
  2649. if (!guard_contexts)
  2650. return;
  2651. config_line_t *lines = NULL;
  2652. config_line_t **nextline = &lines;
  2653. SMARTLIST_FOREACH_BEGIN(guard_contexts, guard_selection_t *, gs) {
  2654. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  2655. if (guard->is_persistent == 0)
  2656. continue;
  2657. *nextline = tor_malloc_zero(sizeof(config_line_t));
  2658. (*nextline)->key = tor_strdup("Guard");
  2659. (*nextline)->value = entry_guard_encode_for_state(guard);
  2660. nextline = &(*nextline)->next;
  2661. } SMARTLIST_FOREACH_END(guard);
  2662. } SMARTLIST_FOREACH_END(gs);
  2663. config_free_lines(state->Guard);
  2664. state->Guard = lines;
  2665. }
  2666. /**
  2667. * Replace our sampled guards from the Guards entries in <b>state</b>. Return 0
  2668. * on success, -1 on failure. (If <b>set</b> is true, replace nothing -- only
  2669. * check whether replacing would work.)
  2670. */
  2671. static int
  2672. entry_guards_load_guards_from_state(or_state_t *state, int set)
  2673. {
  2674. const config_line_t *line = state->Guard;
  2675. int n_errors = 0;
  2676. if (!guard_contexts)
  2677. guard_contexts = smartlist_new();
  2678. /* Wipe all our existing guard info. (we shouldn't have any, but
  2679. * let's be safe.) */
  2680. if (set) {
  2681. SMARTLIST_FOREACH_BEGIN(guard_contexts, guard_selection_t *, gs) {
  2682. guard_selection_free(gs);
  2683. if (curr_guard_context == gs)
  2684. curr_guard_context = NULL;
  2685. SMARTLIST_DEL_CURRENT(guard_contexts, gs);
  2686. } SMARTLIST_FOREACH_END(gs);
  2687. }
  2688. for ( ; line != NULL; line = line->next) {
  2689. entry_guard_t *guard = entry_guard_parse_from_state(line->value);
  2690. if (guard == NULL) {
  2691. ++n_errors;
  2692. continue;
  2693. }
  2694. tor_assert(guard->selection_name);
  2695. if (!strcmp(guard->selection_name, "legacy")) {
  2696. ++n_errors;
  2697. entry_guard_free(guard);
  2698. continue;
  2699. }
  2700. if (set) {
  2701. guard_selection_t *gs;
  2702. gs = get_guard_selection_by_name(guard->selection_name,
  2703. GS_TYPE_INFER, 1);
  2704. tor_assert(gs);
  2705. smartlist_add(gs->sampled_entry_guards, guard);
  2706. guard->in_selection = gs;
  2707. } else {
  2708. entry_guard_free(guard);
  2709. }
  2710. }
  2711. if (set) {
  2712. SMARTLIST_FOREACH_BEGIN(guard_contexts, guard_selection_t *, gs) {
  2713. entry_guards_update_all(gs);
  2714. } SMARTLIST_FOREACH_END(gs);
  2715. }
  2716. return n_errors ? -1 : 0;
  2717. }
  2718. /** If <b>digest</b> matches the identity of any node in the
  2719. * entry_guards list for the provided guard selection state,
  2720. return that node. Else return NULL. */
  2721. entry_guard_t *
  2722. entry_guard_get_by_id_digest_for_guard_selection(guard_selection_t *gs,
  2723. const char *digest)
  2724. {
  2725. return get_sampled_guard_with_id(gs, (const uint8_t*)digest);
  2726. }
  2727. /** Return the node_t associated with a single entry_guard_t. May
  2728. * return NULL if the guard is not currently in the consensus. */
  2729. const node_t *
  2730. entry_guard_find_node(const entry_guard_t *guard)
  2731. {
  2732. tor_assert(guard);
  2733. return node_get_by_id(guard->identity);
  2734. }
  2735. /** If <b>digest</b> matches the identity of any node in the
  2736. * entry_guards list for the default guard selection state,
  2737. return that node. Else return NULL. */
  2738. entry_guard_t *
  2739. entry_guard_get_by_id_digest(const char *digest)
  2740. {
  2741. return entry_guard_get_by_id_digest_for_guard_selection(
  2742. get_guard_selection_info(), digest);
  2743. }
  2744. /** We are about to connect to bridge with identity <b>digest</b> to fetch its
  2745. * descriptor. Create a new guard state for this connection and return it. */
  2746. circuit_guard_state_t *
  2747. get_guard_state_for_bridge_desc_fetch(const char *digest)
  2748. {
  2749. circuit_guard_state_t *guard_state = NULL;
  2750. entry_guard_t *guard = NULL;
  2751. guard = entry_guard_get_by_id_digest_for_guard_selection(
  2752. get_guard_selection_info(), digest);
  2753. if (!guard) {
  2754. return NULL;
  2755. }
  2756. /* Update the guard last_tried_to_connect time since it's checked by the
  2757. * guard susbsystem. */
  2758. guard->last_tried_to_connect = approx_time();
  2759. /* Create the guard state */
  2760. guard_state = circuit_guard_state_new(guard,
  2761. GUARD_CIRC_STATE_USABLE_ON_COMPLETION,
  2762. NULL);
  2763. return guard_state;
  2764. }
  2765. /** Release all storage held by <b>e</b>. */
  2766. STATIC void
  2767. entry_guard_free_(entry_guard_t *e)
  2768. {
  2769. if (!e)
  2770. return;
  2771. entry_guard_handles_clear(e);
  2772. tor_free(e->sampled_by_version);
  2773. tor_free(e->extra_state_fields);
  2774. tor_free(e->selection_name);
  2775. tor_free(e->bridge_addr);
  2776. tor_free(e);
  2777. }
  2778. /** Return 0 if we're fine adding arbitrary routers out of the
  2779. * directory to our entry guard list, or return 1 if we have a
  2780. * list already and we must stick to it.
  2781. */
  2782. int
  2783. entry_list_is_constrained(const or_options_t *options)
  2784. {
  2785. // XXXX #21425 look at the current selection.
  2786. if (options->EntryNodes)
  2787. return 1;
  2788. if (options->UseBridges)
  2789. return 1;
  2790. return 0;
  2791. }
  2792. /** Return the number of bridges that have descriptors that are marked with
  2793. * purpose 'bridge' and are running. If use_maybe_reachable is
  2794. * true, include bridges that might be reachable in the count.
  2795. * Otherwise, if it is false, only include bridges that have recently been
  2796. * found running in the count.
  2797. *
  2798. * We use this function to decide if we're ready to start building
  2799. * circuits through our bridges, or if we need to wait until the
  2800. * directory "server/authority" requests finish. */
  2801. MOCK_IMPL(int,
  2802. num_bridges_usable,(int use_maybe_reachable))
  2803. {
  2804. int n_options = 0;
  2805. if (BUG(!get_options()->UseBridges)) {
  2806. return 0;
  2807. }
  2808. guard_selection_t *gs = get_guard_selection_info();
  2809. if (BUG(gs->type != GS_TYPE_BRIDGE)) {
  2810. return 0;
  2811. }
  2812. SMARTLIST_FOREACH_BEGIN(gs->sampled_entry_guards, entry_guard_t *, guard) {
  2813. /* Definitely not usable */
  2814. if (guard->is_reachable == GUARD_REACHABLE_NO)
  2815. continue;
  2816. /* If we want to be really sure the bridges will work, skip maybes */
  2817. if (!use_maybe_reachable && guard->is_reachable == GUARD_REACHABLE_MAYBE)
  2818. continue;
  2819. if (tor_digest_is_zero(guard->identity))
  2820. continue;
  2821. const node_t *node = node_get_by_id(guard->identity);
  2822. if (node && node->ri)
  2823. ++n_options;
  2824. } SMARTLIST_FOREACH_END(guard);
  2825. return n_options;
  2826. }
  2827. /** Check the pathbias use success count of <b>node</b> and disable it if it
  2828. * goes over our thresholds. */
  2829. static void
  2830. pathbias_check_use_success_count(entry_guard_t *node)
  2831. {
  2832. const or_options_t *options = get_options();
  2833. const double EPSILON = 1.0e-9;
  2834. /* Note: We rely on the < comparison here to allow us to set a 0
  2835. * rate and disable the feature entirely. If refactoring, don't
  2836. * change to <= */
  2837. if (node->pb.use_attempts > EPSILON &&
  2838. pathbias_get_use_success_count(node)/node->pb.use_attempts
  2839. < pathbias_get_extreme_use_rate(options) &&
  2840. pathbias_get_dropguards(options)) {
  2841. node->pb.path_bias_disabled = 1;
  2842. log_info(LD_GENERAL,
  2843. "Path use bias is too high (%f/%f); disabling node %s",
  2844. node->pb.circ_successes, node->pb.circ_attempts,
  2845. node->nickname);
  2846. }
  2847. }
  2848. /** Check the pathbias close count of <b>node</b> and disable it if it goes
  2849. * over our thresholds. */
  2850. static void
  2851. pathbias_check_close_success_count(entry_guard_t *node)
  2852. {
  2853. const or_options_t *options = get_options();
  2854. const double EPSILON = 1.0e-9;
  2855. /* Note: We rely on the < comparison here to allow us to set a 0
  2856. * rate and disable the feature entirely. If refactoring, don't
  2857. * change to <= */
  2858. if (node->pb.circ_attempts > EPSILON &&
  2859. pathbias_get_close_success_count(node)/node->pb.circ_attempts
  2860. < pathbias_get_extreme_rate(options) &&
  2861. pathbias_get_dropguards(options)) {
  2862. node->pb.path_bias_disabled = 1;
  2863. log_info(LD_GENERAL,
  2864. "Path bias is too high (%f/%f); disabling node %s",
  2865. node->pb.circ_successes, node->pb.circ_attempts,
  2866. node->nickname);
  2867. }
  2868. }
  2869. /** Parse <b>state</b> and learn about the entry guards it describes.
  2870. * If <b>set</b> is true, and there are no errors, replace the guard
  2871. * list in the default guard selection context with what we find.
  2872. * On success, return 0. On failure, alloc into *<b>msg</b> a string
  2873. * describing the error, and return -1.
  2874. */
  2875. int
  2876. entry_guards_parse_state(or_state_t *state, int set, char **msg)
  2877. {
  2878. entry_guards_dirty = 0;
  2879. int r1 = entry_guards_load_guards_from_state(state, set);
  2880. entry_guards_dirty = 0;
  2881. if (r1 < 0) {
  2882. if (msg && *msg == NULL) {
  2883. *msg = tor_strdup("parsing error");
  2884. }
  2885. return -1;
  2886. }
  2887. return 0;
  2888. }
  2889. /** How long will we let a change in our guard nodes stay un-saved
  2890. * when we are trying to avoid disk writes? */
  2891. #define SLOW_GUARD_STATE_FLUSH_TIME 600
  2892. /** How long will we let a change in our guard nodes stay un-saved
  2893. * when we are not trying to avoid disk writes? */
  2894. #define FAST_GUARD_STATE_FLUSH_TIME 30
  2895. /** Our list of entry guards has changed for a particular guard selection
  2896. * context, or some element of one of our entry guards has changed for one.
  2897. * Write the changes to disk within the next few minutes.
  2898. */
  2899. void
  2900. entry_guards_changed_for_guard_selection(guard_selection_t *gs)
  2901. {
  2902. time_t when;
  2903. tor_assert(gs != NULL);
  2904. entry_guards_dirty = 1;
  2905. if (get_options()->AvoidDiskWrites)
  2906. when = time(NULL) + SLOW_GUARD_STATE_FLUSH_TIME;
  2907. else
  2908. when = time(NULL) + FAST_GUARD_STATE_FLUSH_TIME;
  2909. /* or_state_save() will call entry_guards_update_state() and
  2910. entry_guards_update_guards_in_state()
  2911. */
  2912. or_state_mark_dirty(get_or_state(), when);
  2913. }
  2914. /** Our list of entry guards has changed for the default guard selection
  2915. * context, or some element of one of our entry guards has changed. Write
  2916. * the changes to disk within the next few minutes.
  2917. */
  2918. void
  2919. entry_guards_changed(void)
  2920. {
  2921. entry_guards_changed_for_guard_selection(get_guard_selection_info());
  2922. }
  2923. /** If the entry guard info has not changed, do nothing and return.
  2924. * Otherwise, free the EntryGuards piece of <b>state</b> and create
  2925. * a new one out of the global entry_guards list, and then mark
  2926. * <b>state</b> dirty so it will get saved to disk.
  2927. */
  2928. void
  2929. entry_guards_update_state(or_state_t *state)
  2930. {
  2931. entry_guards_dirty = 0;
  2932. // Handles all guard info.
  2933. entry_guards_update_guards_in_state(state);
  2934. entry_guards_dirty = 0;
  2935. if (!get_options()->AvoidDiskWrites)
  2936. or_state_mark_dirty(get_or_state(), 0);
  2937. entry_guards_dirty = 0;
  2938. }
  2939. /** Return true iff the circuit's guard can succeed that is can be used. */
  2940. int
  2941. entry_guard_could_succeed(const circuit_guard_state_t *guard_state)
  2942. {
  2943. if (!guard_state) {
  2944. return 0;
  2945. }
  2946. entry_guard_t *guard = entry_guard_handle_get(guard_state->guard);
  2947. if (!guard || BUG(guard->in_selection == NULL)) {
  2948. return 0;
  2949. }
  2950. return 1;
  2951. }
  2952. /**
  2953. * Format a single entry guard in the format expected by the controller.
  2954. * Return a newly allocated string.
  2955. */
  2956. STATIC char *
  2957. getinfo_helper_format_single_entry_guard(const entry_guard_t *e)
  2958. {
  2959. const char *status = NULL;
  2960. time_t when = 0;
  2961. const node_t *node;
  2962. char tbuf[ISO_TIME_LEN+1];
  2963. char nbuf[MAX_VERBOSE_NICKNAME_LEN+1];
  2964. /* This is going to be a bit tricky, since the status
  2965. * codes weren't really intended for prop271 guards.
  2966. *
  2967. * XXXX use a more appropriate format for exporting this information
  2968. */
  2969. if (e->confirmed_idx < 0) {
  2970. status = "never-connected";
  2971. } else if (! e->currently_listed) {
  2972. when = e->unlisted_since_date;
  2973. status = "unusable";
  2974. } else if (! e->is_filtered_guard) {
  2975. status = "unusable";
  2976. } else if (e->is_reachable == GUARD_REACHABLE_NO) {
  2977. when = e->failing_since;
  2978. status = "down";
  2979. } else {
  2980. status = "up";
  2981. }
  2982. node = entry_guard_find_node(e);
  2983. if (node) {
  2984. node_get_verbose_nickname(node, nbuf);
  2985. } else {
  2986. nbuf[0] = '$';
  2987. base16_encode(nbuf+1, sizeof(nbuf)-1, e->identity, DIGEST_LEN);
  2988. /* e->nickname field is not very reliable if we don't know about
  2989. * this router any longer; don't include it. */
  2990. }
  2991. char *result = NULL;
  2992. if (when) {
  2993. format_iso_time(tbuf, when);
  2994. tor_asprintf(&result, "%s %s %s\n", nbuf, status, tbuf);
  2995. } else {
  2996. tor_asprintf(&result, "%s %s\n", nbuf, status);
  2997. }
  2998. return result;
  2999. }
  3000. /** If <b>question</b> is the string "entry-guards", then dump
  3001. * to *<b>answer</b> a newly allocated string describing all of
  3002. * the nodes in the global entry_guards list. See control-spec.txt
  3003. * for details.
  3004. * For backward compatibility, we also handle the string "helper-nodes".
  3005. *
  3006. * XXX this should be totally redesigned after prop 271 too, and that's
  3007. * going to take some control spec work.
  3008. * */
  3009. int
  3010. getinfo_helper_entry_guards(control_connection_t *conn,
  3011. const char *question, char **answer,
  3012. const char **errmsg)
  3013. {
  3014. guard_selection_t *gs = get_guard_selection_info();
  3015. tor_assert(gs != NULL);
  3016. (void) conn;
  3017. (void) errmsg;
  3018. if (!strcmp(question,"entry-guards") ||
  3019. !strcmp(question,"helper-nodes")) {
  3020. const smartlist_t *guards;
  3021. guards = gs->sampled_entry_guards;
  3022. smartlist_t *sl = smartlist_new();
  3023. SMARTLIST_FOREACH_BEGIN(guards, const entry_guard_t *, e) {
  3024. char *cp = getinfo_helper_format_single_entry_guard(e);
  3025. smartlist_add(sl, cp);
  3026. } SMARTLIST_FOREACH_END(e);
  3027. *answer = smartlist_join_strings(sl, "", 0, NULL);
  3028. SMARTLIST_FOREACH(sl, char *, c, tor_free(c));
  3029. smartlist_free(sl);
  3030. }
  3031. return 0;
  3032. }
  3033. /* Given the original bandwidth of a guard and its guardfraction,
  3034. * calculate how much bandwidth the guard should have as a guard and
  3035. * as a non-guard.
  3036. *
  3037. * Quoting from proposal236:
  3038. *
  3039. * Let Wpf denote the weight from the 'bandwidth-weights' line a
  3040. * client would apply to N for position p if it had the guard
  3041. * flag, Wpn the weight if it did not have the guard flag, and B the
  3042. * measured bandwidth of N in the consensus. Then instead of choosing
  3043. * N for position p proportionally to Wpf*B or Wpn*B, clients should
  3044. * choose N proportionally to F*Wpf*B + (1-F)*Wpn*B.
  3045. *
  3046. * This function fills the <b>guardfraction_bw</b> structure. It sets
  3047. * <b>guard_bw</b> to F*B and <b>non_guard_bw</b> to (1-F)*B.
  3048. */
  3049. void
  3050. guard_get_guardfraction_bandwidth(guardfraction_bandwidth_t *guardfraction_bw,
  3051. int orig_bandwidth,
  3052. uint32_t guardfraction_percentage)
  3053. {
  3054. double guardfraction_fraction;
  3055. /* Turn the percentage into a fraction. */
  3056. tor_assert(guardfraction_percentage <= 100);
  3057. guardfraction_fraction = guardfraction_percentage / 100.0;
  3058. long guard_bw = tor_lround(guardfraction_fraction * orig_bandwidth);
  3059. tor_assert(guard_bw <= INT_MAX);
  3060. guardfraction_bw->guard_bw = (int) guard_bw;
  3061. guardfraction_bw->non_guard_bw = orig_bandwidth - (int) guard_bw;
  3062. }
  3063. /** Helper: Update the status of all entry guards, in whatever algorithm
  3064. * is used. Return true if we should stop using all previously generated
  3065. * circuits, by calling circuit_mark_all_unused_circs() and
  3066. * circuit_mark_all_dirty_circs_as_unusable().
  3067. */
  3068. int
  3069. guards_update_all(void)
  3070. {
  3071. int mark_circuits = 0;
  3072. if (update_guard_selection_choice(get_options()))
  3073. mark_circuits = 1;
  3074. tor_assert(curr_guard_context);
  3075. if (entry_guards_update_all(curr_guard_context))
  3076. mark_circuits = 1;
  3077. return mark_circuits;
  3078. }
  3079. /** Helper: pick a guard for a circuit, with whatever algorithm is
  3080. used. */
  3081. const node_t *
  3082. guards_choose_guard(cpath_build_state_t *state,
  3083. circuit_guard_state_t **guard_state_out)
  3084. {
  3085. const node_t *r = NULL;
  3086. const uint8_t *exit_id = NULL;
  3087. entry_guard_restriction_t *rst = NULL;
  3088. if (state && (exit_id = build_state_get_exit_rsa_id(state))) {
  3089. /* We're building to a targeted exit node, so that node can't be
  3090. * chosen as our guard for this circuit. Remember that fact in a
  3091. * restriction. */
  3092. rst = guard_create_exit_restriction(exit_id);
  3093. tor_assert(rst);
  3094. }
  3095. if (entry_guard_pick_for_circuit(get_guard_selection_info(),
  3096. GUARD_USAGE_TRAFFIC,
  3097. rst,
  3098. &r,
  3099. guard_state_out) < 0) {
  3100. tor_assert(r == NULL);
  3101. }
  3102. return r;
  3103. }
  3104. /** Remove all currently listed entry guards for a given guard selection
  3105. * context. This frees and replaces <b>gs</b>, so don't use <b>gs</b>
  3106. * after calling this function. */
  3107. void
  3108. remove_all_entry_guards_for_guard_selection(guard_selection_t *gs)
  3109. {
  3110. // This function shouldn't exist. XXXX
  3111. tor_assert(gs != NULL);
  3112. char *old_name = tor_strdup(gs->name);
  3113. guard_selection_type_t old_type = gs->type;
  3114. SMARTLIST_FOREACH(gs->sampled_entry_guards, entry_guard_t *, entry, {
  3115. control_event_guard(entry->nickname, entry->identity, "DROPPED");
  3116. });
  3117. if (gs == curr_guard_context) {
  3118. curr_guard_context = NULL;
  3119. }
  3120. smartlist_remove(guard_contexts, gs);
  3121. guard_selection_free(gs);
  3122. gs = get_guard_selection_by_name(old_name, old_type, 1);
  3123. entry_guards_changed_for_guard_selection(gs);
  3124. tor_free(old_name);
  3125. }
  3126. /** Remove all currently listed entry guards, so new ones will be chosen.
  3127. *
  3128. * XXXX This function shouldn't exist -- it's meant to support the DROPGUARDS
  3129. * command, which is deprecated.
  3130. */
  3131. void
  3132. remove_all_entry_guards(void)
  3133. {
  3134. remove_all_entry_guards_for_guard_selection(get_guard_selection_info());
  3135. }
  3136. /** Helper: pick a directory guard, with whatever algorithm is used. */
  3137. const node_t *
  3138. guards_choose_dirguard(uint8_t dir_purpose,
  3139. circuit_guard_state_t **guard_state_out)
  3140. {
  3141. const node_t *r = NULL;
  3142. entry_guard_restriction_t *rst = NULL;
  3143. /* If we are fetching microdescs, don't query outdated dirservers. */
  3144. if (dir_purpose == DIR_PURPOSE_FETCH_MICRODESC) {
  3145. rst = guard_create_dirserver_md_restriction();
  3146. }
  3147. if (entry_guard_pick_for_circuit(get_guard_selection_info(),
  3148. GUARD_USAGE_DIRGUARD,
  3149. rst,
  3150. &r,
  3151. guard_state_out) < 0) {
  3152. tor_assert(r == NULL);
  3153. }
  3154. return r;
  3155. }
  3156. /**
  3157. * If we're running with a constrained guard set, then maybe mark our guards
  3158. * usable. Return 1 if we do; 0 if we don't.
  3159. */
  3160. int
  3161. guards_retry_optimistic(const or_options_t *options)
  3162. {
  3163. if (! entry_list_is_constrained(options))
  3164. return 0;
  3165. mark_primary_guards_maybe_reachable(get_guard_selection_info());
  3166. return 1;
  3167. }
  3168. /**
  3169. * Check if we are missing any crucial dirinfo for the guard subsystem to
  3170. * work. Return NULL if everything went well, otherwise return a newly
  3171. * allocated string with an informative error message. In the latter case, use
  3172. * the genreal descriptor information <b>using_mds</b>, <b>num_present</b> and
  3173. * <b>num_usable</b> to improve the error message. */
  3174. char *
  3175. guard_selection_get_err_str_if_dir_info_missing(guard_selection_t *gs,
  3176. int using_mds,
  3177. int num_present, int num_usable)
  3178. {
  3179. if (!gs->primary_guards_up_to_date)
  3180. entry_guards_update_primary(gs);
  3181. char *ret_str = NULL;
  3182. int n_missing_descriptors = 0;
  3183. int n_considered = 0;
  3184. int num_primary_to_check;
  3185. /* We want to check for the descriptor of at least the first two primary
  3186. * guards in our list, since these are the guards that we typically use for
  3187. * circuits. */
  3188. num_primary_to_check = get_n_primary_guards_to_use(GUARD_USAGE_TRAFFIC);
  3189. num_primary_to_check++;
  3190. SMARTLIST_FOREACH_BEGIN(gs->primary_entry_guards, entry_guard_t *, guard) {
  3191. entry_guard_consider_retry(guard);
  3192. if (guard->is_reachable == GUARD_REACHABLE_NO)
  3193. continue;
  3194. n_considered++;
  3195. if (!guard_has_descriptor(guard))
  3196. n_missing_descriptors++;
  3197. if (n_considered >= num_primary_to_check)
  3198. break;
  3199. } SMARTLIST_FOREACH_END(guard);
  3200. /* If we are not missing any descriptors, return NULL. */
  3201. if (!n_missing_descriptors) {
  3202. return NULL;
  3203. }
  3204. /* otherwise return a helpful error string */
  3205. tor_asprintf(&ret_str, "We're missing descriptors for %d/%d of our "
  3206. "primary entry guards (total %sdescriptors: %d/%d).",
  3207. n_missing_descriptors, num_primary_to_check,
  3208. using_mds?"micro":"", num_present, num_usable);
  3209. return ret_str;
  3210. }
  3211. /** As guard_selection_have_enough_dir_info_to_build_circuits, but uses
  3212. * the default guard selection. */
  3213. char *
  3214. entry_guards_get_err_str_if_dir_info_missing(int using_mds,
  3215. int num_present, int num_usable)
  3216. {
  3217. return guard_selection_get_err_str_if_dir_info_missing(
  3218. get_guard_selection_info(),
  3219. using_mds,
  3220. num_present, num_usable);
  3221. }
  3222. /** Free one guard selection context */
  3223. STATIC void
  3224. guard_selection_free_(guard_selection_t *gs)
  3225. {
  3226. if (!gs) return;
  3227. tor_free(gs->name);
  3228. if (gs->sampled_entry_guards) {
  3229. SMARTLIST_FOREACH(gs->sampled_entry_guards, entry_guard_t *, e,
  3230. entry_guard_free(e));
  3231. smartlist_free(gs->sampled_entry_guards);
  3232. gs->sampled_entry_guards = NULL;
  3233. }
  3234. smartlist_free(gs->confirmed_entry_guards);
  3235. smartlist_free(gs->primary_entry_guards);
  3236. tor_free(gs);
  3237. }
  3238. /** Release all storage held by the list of entry guards and related
  3239. * memory structs. */
  3240. void
  3241. entry_guards_free_all(void)
  3242. {
  3243. /* Null out the default */
  3244. curr_guard_context = NULL;
  3245. /* Free all the guard contexts */
  3246. if (guard_contexts != NULL) {
  3247. SMARTLIST_FOREACH_BEGIN(guard_contexts, guard_selection_t *, gs) {
  3248. guard_selection_free(gs);
  3249. } SMARTLIST_FOREACH_END(gs);
  3250. smartlist_free(guard_contexts);
  3251. guard_contexts = NULL;
  3252. }
  3253. circuit_build_times_free_timeouts(get_circuit_build_times_mutable());
  3254. }