routerlist.c 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145
  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-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file routerlist.c
  8. * \brief Code to
  9. * maintain and access the global list of routerinfos for known
  10. * servers.
  11. **/
  12. #define ROUTERLIST_PRIVATE
  13. #include "or.h"
  14. #include "circuitstats.h"
  15. #include "config.h"
  16. #include "connection.h"
  17. #include "control.h"
  18. #include "directory.h"
  19. #include "dirserv.h"
  20. #include "dirvote.h"
  21. #include "entrynodes.h"
  22. #include "fp_pair.h"
  23. #include "geoip.h"
  24. #include "hibernate.h"
  25. #include "main.h"
  26. #include "microdesc.h"
  27. #include "networkstatus.h"
  28. #include "nodelist.h"
  29. #include "policies.h"
  30. #include "reasons.h"
  31. #include "rendcommon.h"
  32. #include "rendservice.h"
  33. #include "rephist.h"
  34. #include "router.h"
  35. #include "routerlist.h"
  36. #include "routerparse.h"
  37. #include "routerset.h"
  38. #include "../common/sandbox.h"
  39. // #define DEBUG_ROUTERLIST
  40. /****************************************************************************/
  41. DECLARE_TYPED_DIGESTMAP_FNS(sdmap_, digest_sd_map_t, signed_descriptor_t)
  42. DECLARE_TYPED_DIGESTMAP_FNS(rimap_, digest_ri_map_t, routerinfo_t)
  43. DECLARE_TYPED_DIGESTMAP_FNS(eimap_, digest_ei_map_t, extrainfo_t)
  44. DECLARE_TYPED_DIGESTMAP_FNS(dsmap_, digest_ds_map_t, download_status_t)
  45. #define SDMAP_FOREACH(map, keyvar, valvar) \
  46. DIGESTMAP_FOREACH(sdmap_to_digestmap(map), keyvar, signed_descriptor_t *, \
  47. valvar)
  48. #define RIMAP_FOREACH(map, keyvar, valvar) \
  49. DIGESTMAP_FOREACH(rimap_to_digestmap(map), keyvar, routerinfo_t *, valvar)
  50. #define EIMAP_FOREACH(map, keyvar, valvar) \
  51. DIGESTMAP_FOREACH(eimap_to_digestmap(map), keyvar, extrainfo_t *, valvar)
  52. #define DSMAP_FOREACH(map, keyvar, valvar) \
  53. DIGESTMAP_FOREACH(dsmap_to_digestmap(map), keyvar, download_status_t *, \
  54. valvar)
  55. /* Forward declaration for cert_list_t */
  56. typedef struct cert_list_t cert_list_t;
  57. /* static function prototypes */
  58. static int compute_weighted_bandwidths(const smartlist_t *sl,
  59. bandwidth_weight_rule_t rule,
  60. u64_dbl_t **bandwidths_out);
  61. static const routerstatus_t *router_pick_directory_server_impl(
  62. dirinfo_type_t auth, int flags);
  63. static const routerstatus_t *router_pick_trusteddirserver_impl(
  64. const smartlist_t *sourcelist, dirinfo_type_t auth,
  65. int flags, int *n_busy_out);
  66. static const routerstatus_t *router_pick_dirserver_generic(
  67. smartlist_t *sourcelist,
  68. dirinfo_type_t type, int flags);
  69. static void mark_all_dirservers_up(smartlist_t *server_list);
  70. static void dir_server_free(dir_server_t *ds);
  71. static int signed_desc_digest_is_recognized(signed_descriptor_t *desc);
  72. static const char *signed_descriptor_get_body_impl(
  73. const signed_descriptor_t *desc,
  74. int with_annotations);
  75. static void list_pending_downloads(digestmap_t *result,
  76. int purpose, const char *prefix);
  77. static void list_pending_fpsk_downloads(fp_pair_map_t *result);
  78. static void launch_dummy_descriptor_download_as_needed(time_t now,
  79. const or_options_t *options);
  80. static void download_status_reset_by_sk_in_cl(cert_list_t *cl,
  81. const char *digest);
  82. static int download_status_is_ready_by_sk_in_cl(cert_list_t *cl,
  83. const char *digest,
  84. time_t now, int max_failures);
  85. /****************************************************************************/
  86. /** Global list of a dir_server_t object for each directory
  87. * authority. */
  88. static smartlist_t *trusted_dir_servers = NULL;
  89. /** Global list of dir_server_t objects for all directory authorities
  90. * and all fallback directory servers. */
  91. static smartlist_t *fallback_dir_servers = NULL;
  92. /** List of for a given authority, and download status for latest certificate.
  93. */
  94. struct cert_list_t {
  95. /*
  96. * The keys of download status map are cert->signing_key_digest for pending
  97. * downloads by (identity digest/signing key digest) pair; functions such
  98. * as authority_cert_get_by_digest() already assume these are unique.
  99. */
  100. struct digest_ds_map_t *dl_status_map;
  101. /* There is also a dlstatus for the download by identity key only */
  102. download_status_t dl_status_by_id;
  103. smartlist_t *certs;
  104. };
  105. /** Map from v3 identity key digest to cert_list_t. */
  106. static digestmap_t *trusted_dir_certs = NULL;
  107. /** True iff any key certificate in at least one member of
  108. * <b>trusted_dir_certs</b> has changed since we last flushed the
  109. * certificates to disk. */
  110. static int trusted_dir_servers_certs_changed = 0;
  111. /** Global list of all of the routers that we know about. */
  112. static routerlist_t *routerlist = NULL;
  113. /** List of strings for nicknames we've already warned about and that are
  114. * still unknown / unavailable. */
  115. static smartlist_t *warned_nicknames = NULL;
  116. /** The last time we tried to download any routerdesc, or 0 for "never". We
  117. * use this to rate-limit download attempts when the number of routerdescs to
  118. * download is low. */
  119. static time_t last_descriptor_download_attempted = 0;
  120. /** When we last computed the weights to use for bandwidths on directory
  121. * requests, what were the total weighted bandwidth, and our share of that
  122. * bandwidth? Used to determine what fraction of directory requests we should
  123. * expect to see.
  124. *
  125. * @{ */
  126. static uint64_t sl_last_total_weighted_bw = 0,
  127. sl_last_weighted_bw_of_me = 0;
  128. /**@}*/
  129. /** Return the number of directory authorities whose type matches some bit set
  130. * in <b>type</b> */
  131. int
  132. get_n_authorities(dirinfo_type_t type)
  133. {
  134. int n = 0;
  135. if (!trusted_dir_servers)
  136. return 0;
  137. SMARTLIST_FOREACH(trusted_dir_servers, dir_server_t *, ds,
  138. if (ds->type & type)
  139. ++n);
  140. return n;
  141. }
  142. /** Reset the download status of a specified element in a dsmap */
  143. static void
  144. download_status_reset_by_sk_in_cl(cert_list_t *cl, const char *digest)
  145. {
  146. download_status_t *dlstatus = NULL;
  147. tor_assert(cl);
  148. tor_assert(digest);
  149. /* Make sure we have a dsmap */
  150. if (!(cl->dl_status_map)) {
  151. cl->dl_status_map = dsmap_new();
  152. }
  153. /* Look for a download_status_t in the map with this digest */
  154. dlstatus = dsmap_get(cl->dl_status_map, digest);
  155. /* Got one? */
  156. if (!dlstatus) {
  157. /* Insert before we reset */
  158. dlstatus = tor_malloc_zero(sizeof(*dlstatus));
  159. dsmap_set(cl->dl_status_map, digest, dlstatus);
  160. }
  161. tor_assert(dlstatus);
  162. /* Go ahead and reset it */
  163. download_status_reset(dlstatus);
  164. }
  165. /**
  166. * Return true if the download for this signing key digest in cl is ready
  167. * to be re-attempted.
  168. */
  169. static int
  170. download_status_is_ready_by_sk_in_cl(cert_list_t *cl,
  171. const char *digest,
  172. time_t now, int max_failures)
  173. {
  174. int rv = 0;
  175. download_status_t *dlstatus = NULL;
  176. tor_assert(cl);
  177. tor_assert(digest);
  178. /* Make sure we have a dsmap */
  179. if (!(cl->dl_status_map)) {
  180. cl->dl_status_map = dsmap_new();
  181. }
  182. /* Look for a download_status_t in the map with this digest */
  183. dlstatus = dsmap_get(cl->dl_status_map, digest);
  184. /* Got one? */
  185. if (dlstatus) {
  186. /* Use download_status_is_ready() */
  187. rv = download_status_is_ready(dlstatus, now, max_failures);
  188. } else {
  189. /*
  190. * If we don't know anything about it, return 1, since we haven't
  191. * tried this one before. We need to create a new entry here,
  192. * too.
  193. */
  194. dlstatus = tor_malloc_zero(sizeof(*dlstatus));
  195. download_status_reset(dlstatus);
  196. dsmap_set(cl->dl_status_map, digest, dlstatus);
  197. rv = 1;
  198. }
  199. return rv;
  200. }
  201. /** Helper: Return the cert_list_t for an authority whose authority ID is
  202. * <b>id_digest</b>, allocating a new list if necessary. */
  203. static cert_list_t *
  204. get_cert_list(const char *id_digest)
  205. {
  206. cert_list_t *cl;
  207. if (!trusted_dir_certs)
  208. trusted_dir_certs = digestmap_new();
  209. cl = digestmap_get(trusted_dir_certs, id_digest);
  210. if (!cl) {
  211. cl = tor_malloc_zero(sizeof(cert_list_t));
  212. cl->dl_status_by_id.schedule = DL_SCHED_CONSENSUS;
  213. cl->certs = smartlist_new();
  214. cl->dl_status_map = dsmap_new();
  215. digestmap_set(trusted_dir_certs, id_digest, cl);
  216. }
  217. return cl;
  218. }
  219. /** Release all space held by a cert_list_t */
  220. static void
  221. cert_list_free(cert_list_t *cl)
  222. {
  223. if (!cl)
  224. return;
  225. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert,
  226. authority_cert_free(cert));
  227. smartlist_free(cl->certs);
  228. dsmap_free(cl->dl_status_map, tor_free_);
  229. tor_free(cl);
  230. }
  231. /** Wrapper for cert_list_free so we can pass it to digestmap_free */
  232. static void
  233. cert_list_free_(void *cl)
  234. {
  235. cert_list_free(cl);
  236. }
  237. /** Reload the cached v3 key certificates from the cached-certs file in
  238. * the data directory. Return 0 on success, -1 on failure. */
  239. int
  240. trusted_dirs_reload_certs(void)
  241. {
  242. char *filename;
  243. char *contents;
  244. int r;
  245. filename = get_datadir_fname("cached-certs");
  246. contents = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
  247. tor_free(filename);
  248. if (!contents)
  249. return 0;
  250. r = trusted_dirs_load_certs_from_string(
  251. contents,
  252. TRUSTED_DIRS_CERTS_SRC_FROM_STORE, 1);
  253. tor_free(contents);
  254. return r;
  255. }
  256. /** Helper: return true iff we already have loaded the exact cert
  257. * <b>cert</b>. */
  258. static INLINE int
  259. already_have_cert(authority_cert_t *cert)
  260. {
  261. cert_list_t *cl = get_cert_list(cert->cache_info.identity_digest);
  262. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, c,
  263. {
  264. if (tor_memeq(c->cache_info.signed_descriptor_digest,
  265. cert->cache_info.signed_descriptor_digest,
  266. DIGEST_LEN))
  267. return 1;
  268. });
  269. return 0;
  270. }
  271. /** Load a bunch of new key certificates from the string <b>contents</b>. If
  272. * <b>source</b> is TRUSTED_DIRS_CERTS_SRC_FROM_STORE, the certificates are
  273. * from the cache, and we don't need to flush them to disk. If we are a
  274. * dirauth loading our own cert, source is TRUSTED_DIRS_CERTS_SRC_SELF.
  275. * Otherwise, source is download type: TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_DIGEST
  276. * or TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_SK_DIGEST. If <b>flush</b> is true, we
  277. * need to flush any changed certificates to disk now. Return 0 on success,
  278. * -1 if any certs fail to parse.
  279. */
  280. int
  281. trusted_dirs_load_certs_from_string(const char *contents, int source,
  282. int flush)
  283. {
  284. dir_server_t *ds;
  285. const char *s, *eos;
  286. int failure_code = 0;
  287. int from_store = (source == TRUSTED_DIRS_CERTS_SRC_FROM_STORE);
  288. for (s = contents; *s; s = eos) {
  289. authority_cert_t *cert = authority_cert_parse_from_string(s, &eos);
  290. cert_list_t *cl;
  291. if (!cert) {
  292. failure_code = -1;
  293. break;
  294. }
  295. ds = trusteddirserver_get_by_v3_auth_digest(
  296. cert->cache_info.identity_digest);
  297. log_debug(LD_DIR, "Parsed certificate for %s",
  298. ds ? ds->nickname : "unknown authority");
  299. if (already_have_cert(cert)) {
  300. /* we already have this one. continue. */
  301. log_info(LD_DIR, "Skipping %s certificate for %s that we "
  302. "already have.",
  303. from_store ? "cached" : "downloaded",
  304. ds ? ds->nickname : "an old or new authority");
  305. /*
  306. * A duplicate on download should be treated as a failure, so we call
  307. * authority_cert_dl_failed() to reset the download status to make sure
  308. * we can't try again. Since we've implemented the fp-sk mechanism
  309. * to download certs by signing key, this should be much rarer than it
  310. * was and is perhaps cause for concern.
  311. */
  312. if (!from_store) {
  313. if (authdir_mode(get_options())) {
  314. log_warn(LD_DIR,
  315. "Got a certificate for %s, but we already have it. "
  316. "Maybe they haven't updated it. Waiting for a while.",
  317. ds ? ds->nickname : "an old or new authority");
  318. } else {
  319. log_info(LD_DIR,
  320. "Got a certificate for %s, but we already have it. "
  321. "Maybe they haven't updated it. Waiting for a while.",
  322. ds ? ds->nickname : "an old or new authority");
  323. }
  324. /*
  325. * This is where we care about the source; authority_cert_dl_failed()
  326. * needs to know whether the download was by fp or (fp,sk) pair to
  327. * twiddle the right bit in the download map.
  328. */
  329. if (source == TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_DIGEST) {
  330. authority_cert_dl_failed(cert->cache_info.identity_digest,
  331. NULL, 404);
  332. } else if (source == TRUSTED_DIRS_CERTS_SRC_DL_BY_ID_SK_DIGEST) {
  333. authority_cert_dl_failed(cert->cache_info.identity_digest,
  334. cert->signing_key_digest, 404);
  335. }
  336. }
  337. authority_cert_free(cert);
  338. continue;
  339. }
  340. if (ds) {
  341. log_info(LD_DIR, "Adding %s certificate for directory authority %s with "
  342. "signing key %s", from_store ? "cached" : "downloaded",
  343. ds->nickname, hex_str(cert->signing_key_digest,DIGEST_LEN));
  344. } else {
  345. int adding = directory_caches_unknown_auth_certs(get_options());
  346. log_info(LD_DIR, "%s %s certificate for unrecognized directory "
  347. "authority with signing key %s",
  348. adding ? "Adding" : "Not adding",
  349. from_store ? "cached" : "downloaded",
  350. hex_str(cert->signing_key_digest,DIGEST_LEN));
  351. if (!adding) {
  352. authority_cert_free(cert);
  353. continue;
  354. }
  355. }
  356. cl = get_cert_list(cert->cache_info.identity_digest);
  357. smartlist_add(cl->certs, cert);
  358. if (ds && cert->cache_info.published_on > ds->addr_current_at) {
  359. /* Check to see whether we should update our view of the authority's
  360. * address. */
  361. if (cert->addr && cert->dir_port &&
  362. (ds->addr != cert->addr ||
  363. ds->dir_port != cert->dir_port)) {
  364. char *a = tor_dup_ip(cert->addr);
  365. log_notice(LD_DIR, "Updating address for directory authority %s "
  366. "from %s:%d to %s:%d based on certificate.",
  367. ds->nickname, ds->address, (int)ds->dir_port,
  368. a, cert->dir_port);
  369. tor_free(a);
  370. ds->addr = cert->addr;
  371. ds->dir_port = cert->dir_port;
  372. }
  373. ds->addr_current_at = cert->cache_info.published_on;
  374. }
  375. if (!from_store)
  376. trusted_dir_servers_certs_changed = 1;
  377. }
  378. if (flush)
  379. trusted_dirs_flush_certs_to_disk();
  380. /* call this even if failure_code is <0, since some certs might have
  381. * succeeded. */
  382. networkstatus_note_certs_arrived();
  383. return failure_code;
  384. }
  385. /** Save all v3 key certificates to the cached-certs file. */
  386. void
  387. trusted_dirs_flush_certs_to_disk(void)
  388. {
  389. char *filename;
  390. smartlist_t *chunks;
  391. if (!trusted_dir_servers_certs_changed || !trusted_dir_certs)
  392. return;
  393. chunks = smartlist_new();
  394. DIGESTMAP_FOREACH(trusted_dir_certs, key, cert_list_t *, cl) {
  395. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert,
  396. {
  397. sized_chunk_t *c = tor_malloc(sizeof(sized_chunk_t));
  398. c->bytes = cert->cache_info.signed_descriptor_body;
  399. c->len = cert->cache_info.signed_descriptor_len;
  400. smartlist_add(chunks, c);
  401. });
  402. } DIGESTMAP_FOREACH_END;
  403. filename = get_datadir_fname("cached-certs");
  404. if (write_chunks_to_file(filename, chunks, 0, 0)) {
  405. log_warn(LD_FS, "Error writing certificates to disk.");
  406. }
  407. tor_free(filename);
  408. SMARTLIST_FOREACH(chunks, sized_chunk_t *, c, tor_free(c));
  409. smartlist_free(chunks);
  410. trusted_dir_servers_certs_changed = 0;
  411. }
  412. /** Remove all v3 authority certificates that have been superseded for more
  413. * than 48 hours. (If the most recent cert was published more than 48 hours
  414. * ago, then we aren't going to get any consensuses signed with older
  415. * keys.) */
  416. static void
  417. trusted_dirs_remove_old_certs(void)
  418. {
  419. time_t now = time(NULL);
  420. #define DEAD_CERT_LIFETIME (2*24*60*60)
  421. #define OLD_CERT_LIFETIME (7*24*60*60)
  422. if (!trusted_dir_certs)
  423. return;
  424. DIGESTMAP_FOREACH(trusted_dir_certs, key, cert_list_t *, cl) {
  425. authority_cert_t *newest = NULL;
  426. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert,
  427. if (!newest || (cert->cache_info.published_on >
  428. newest->cache_info.published_on))
  429. newest = cert);
  430. if (newest) {
  431. const time_t newest_published = newest->cache_info.published_on;
  432. SMARTLIST_FOREACH_BEGIN(cl->certs, authority_cert_t *, cert) {
  433. int expired;
  434. time_t cert_published;
  435. if (newest == cert)
  436. continue;
  437. expired = now > cert->expires;
  438. cert_published = cert->cache_info.published_on;
  439. /* Store expired certs for 48 hours after a newer arrives;
  440. */
  441. if (expired ?
  442. (newest_published + DEAD_CERT_LIFETIME < now) :
  443. (cert_published + OLD_CERT_LIFETIME < newest_published)) {
  444. SMARTLIST_DEL_CURRENT(cl->certs, cert);
  445. authority_cert_free(cert);
  446. trusted_dir_servers_certs_changed = 1;
  447. }
  448. } SMARTLIST_FOREACH_END(cert);
  449. }
  450. } DIGESTMAP_FOREACH_END;
  451. #undef OLD_CERT_LIFETIME
  452. trusted_dirs_flush_certs_to_disk();
  453. }
  454. /** Return the newest v3 authority certificate whose v3 authority identity key
  455. * has digest <b>id_digest</b>. Return NULL if no such authority is known,
  456. * or it has no certificate. */
  457. authority_cert_t *
  458. authority_cert_get_newest_by_id(const char *id_digest)
  459. {
  460. cert_list_t *cl;
  461. authority_cert_t *best = NULL;
  462. if (!trusted_dir_certs ||
  463. !(cl = digestmap_get(trusted_dir_certs, id_digest)))
  464. return NULL;
  465. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert,
  466. {
  467. if (!best || cert->cache_info.published_on > best->cache_info.published_on)
  468. best = cert;
  469. });
  470. return best;
  471. }
  472. /** Return the newest v3 authority certificate whose directory signing key has
  473. * digest <b>sk_digest</b>. Return NULL if no such certificate is known.
  474. */
  475. authority_cert_t *
  476. authority_cert_get_by_sk_digest(const char *sk_digest)
  477. {
  478. authority_cert_t *c;
  479. if (!trusted_dir_certs)
  480. return NULL;
  481. if ((c = get_my_v3_authority_cert()) &&
  482. tor_memeq(c->signing_key_digest, sk_digest, DIGEST_LEN))
  483. return c;
  484. if ((c = get_my_v3_legacy_cert()) &&
  485. tor_memeq(c->signing_key_digest, sk_digest, DIGEST_LEN))
  486. return c;
  487. DIGESTMAP_FOREACH(trusted_dir_certs, key, cert_list_t *, cl) {
  488. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert,
  489. {
  490. if (tor_memeq(cert->signing_key_digest, sk_digest, DIGEST_LEN))
  491. return cert;
  492. });
  493. } DIGESTMAP_FOREACH_END;
  494. return NULL;
  495. }
  496. /** Return the v3 authority certificate with signing key matching
  497. * <b>sk_digest</b>, for the authority with identity digest <b>id_digest</b>.
  498. * Return NULL if no such authority is known. */
  499. authority_cert_t *
  500. authority_cert_get_by_digests(const char *id_digest,
  501. const char *sk_digest)
  502. {
  503. cert_list_t *cl;
  504. if (!trusted_dir_certs ||
  505. !(cl = digestmap_get(trusted_dir_certs, id_digest)))
  506. return NULL;
  507. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, cert,
  508. if (tor_memeq(cert->signing_key_digest, sk_digest, DIGEST_LEN))
  509. return cert; );
  510. return NULL;
  511. }
  512. /** Add every known authority_cert_t to <b>certs_out</b>. */
  513. void
  514. authority_cert_get_all(smartlist_t *certs_out)
  515. {
  516. tor_assert(certs_out);
  517. if (!trusted_dir_certs)
  518. return;
  519. DIGESTMAP_FOREACH(trusted_dir_certs, key, cert_list_t *, cl) {
  520. SMARTLIST_FOREACH(cl->certs, authority_cert_t *, c,
  521. smartlist_add(certs_out, c));
  522. } DIGESTMAP_FOREACH_END;
  523. }
  524. /** Called when an attempt to download a certificate with the authority with
  525. * ID <b>id_digest</b> and, if not NULL, signed with key signing_key_digest
  526. * fails with HTTP response code <b>status</b>: remember the failure, so we
  527. * don't try again immediately. */
  528. void
  529. authority_cert_dl_failed(const char *id_digest,
  530. const char *signing_key_digest, int status)
  531. {
  532. cert_list_t *cl;
  533. download_status_t *dlstatus = NULL;
  534. char id_digest_str[2*DIGEST_LEN+1];
  535. char sk_digest_str[2*DIGEST_LEN+1];
  536. if (!trusted_dir_certs ||
  537. !(cl = digestmap_get(trusted_dir_certs, id_digest)))
  538. return;
  539. /*
  540. * Are we noting a failed download of the latest cert for the id digest,
  541. * or of a download by (id, signing key) digest pair?
  542. */
  543. if (!signing_key_digest) {
  544. /* Just by id digest */
  545. download_status_failed(&cl->dl_status_by_id, status);
  546. } else {
  547. /* Reset by (id, signing key) digest pair
  548. *
  549. * Look for a download_status_t in the map with this digest
  550. */
  551. dlstatus = dsmap_get(cl->dl_status_map, signing_key_digest);
  552. /* Got one? */
  553. if (dlstatus) {
  554. download_status_failed(dlstatus, status);
  555. } else {
  556. /*
  557. * Do this rather than hex_str(), since hex_str clobbers
  558. * old results and we call twice in the param list.
  559. */
  560. base16_encode(id_digest_str, sizeof(id_digest_str),
  561. id_digest, DIGEST_LEN);
  562. base16_encode(sk_digest_str, sizeof(sk_digest_str),
  563. signing_key_digest, DIGEST_LEN);
  564. log_warn(LD_BUG,
  565. "Got failure for cert fetch with (fp,sk) = (%s,%s), with "
  566. "status %d, but knew nothing about the download.",
  567. id_digest_str, sk_digest_str, status);
  568. }
  569. }
  570. }
  571. /** Return true iff when we've been getting enough failures when trying to
  572. * download the certificate with ID digest <b>id_digest</b> that we're willing
  573. * to start bugging the user about it. */
  574. int
  575. authority_cert_dl_looks_uncertain(const char *id_digest)
  576. {
  577. #define N_AUTH_CERT_DL_FAILURES_TO_BUG_USER 2
  578. cert_list_t *cl;
  579. int n_failures;
  580. if (!trusted_dir_certs ||
  581. !(cl = digestmap_get(trusted_dir_certs, id_digest)))
  582. return 0;
  583. n_failures = download_status_get_n_failures(&cl->dl_status_by_id);
  584. return n_failures >= N_AUTH_CERT_DL_FAILURES_TO_BUG_USER;
  585. }
  586. /** Try to download any v3 authority certificates that we may be missing. If
  587. * <b>status</b> is provided, try to get all the ones that were used to sign
  588. * <b>status</b>. Additionally, try to have a non-expired certificate for
  589. * every V3 authority in trusted_dir_servers. Don't fetch certificates we
  590. * already have.
  591. **/
  592. void
  593. authority_certs_fetch_missing(networkstatus_t *status, time_t now)
  594. {
  595. /*
  596. * The pending_id digestmap tracks pending certificate downloads by
  597. * identity digest; the pending_cert digestmap tracks pending downloads
  598. * by (identity digest, signing key digest) pairs.
  599. */
  600. digestmap_t *pending_id;
  601. fp_pair_map_t *pending_cert;
  602. authority_cert_t *cert;
  603. /*
  604. * The missing_id_digests smartlist will hold a list of id digests
  605. * we want to fetch the newest cert for; the missing_cert_digests
  606. * smartlist will hold a list of fp_pair_t with an identity and
  607. * signing key digest.
  608. */
  609. smartlist_t *missing_cert_digests, *missing_id_digests;
  610. char *resource = NULL;
  611. cert_list_t *cl;
  612. const int cache = directory_caches_unknown_auth_certs(get_options());
  613. fp_pair_t *fp_tmp = NULL;
  614. char id_digest_str[2*DIGEST_LEN+1];
  615. char sk_digest_str[2*DIGEST_LEN+1];
  616. if (should_delay_dir_fetches(get_options()))
  617. return;
  618. pending_cert = fp_pair_map_new();
  619. pending_id = digestmap_new();
  620. missing_cert_digests = smartlist_new();
  621. missing_id_digests = smartlist_new();
  622. /*
  623. * First, we get the lists of already pending downloads so we don't
  624. * duplicate effort.
  625. */
  626. list_pending_downloads(pending_id, DIR_PURPOSE_FETCH_CERTIFICATE, "fp/");
  627. list_pending_fpsk_downloads(pending_cert);
  628. /*
  629. * Now, we download any trusted authority certs we don't have by
  630. * identity digest only. This gets the latest cert for that authority.
  631. */
  632. SMARTLIST_FOREACH_BEGIN(trusted_dir_servers, dir_server_t *, ds) {
  633. int found = 0;
  634. if (!(ds->type & V3_DIRINFO))
  635. continue;
  636. if (smartlist_contains_digest(missing_id_digests,
  637. ds->v3_identity_digest))
  638. continue;
  639. cl = get_cert_list(ds->v3_identity_digest);
  640. SMARTLIST_FOREACH_BEGIN(cl->certs, authority_cert_t *, cert) {
  641. if (now < cert->expires) {
  642. /* It's not expired, and we weren't looking for something to
  643. * verify a consensus with. Call it done. */
  644. download_status_reset(&(cl->dl_status_by_id));
  645. /* No sense trying to download it specifically by signing key hash */
  646. download_status_reset_by_sk_in_cl(cl, cert->signing_key_digest);
  647. found = 1;
  648. break;
  649. }
  650. } SMARTLIST_FOREACH_END(cert);
  651. if (!found &&
  652. download_status_is_ready(&(cl->dl_status_by_id), now,
  653. get_options()->TestingCertMaxDownloadTries) &&
  654. !digestmap_get(pending_id, ds->v3_identity_digest)) {
  655. log_info(LD_DIR,
  656. "No current certificate known for authority %s "
  657. "(ID digest %s); launching request.",
  658. ds->nickname, hex_str(ds->v3_identity_digest, DIGEST_LEN));
  659. smartlist_add(missing_id_digests, ds->v3_identity_digest);
  660. }
  661. } SMARTLIST_FOREACH_END(ds);
  662. /*
  663. * Next, if we have a consensus, scan through it and look for anything
  664. * signed with a key from a cert we don't have. Those get downloaded
  665. * by (fp,sk) pair, but if we don't know any certs at all for the fp
  666. * (identity digest), and it's one of the trusted dir server certs
  667. * we started off above or a pending download in pending_id, don't
  668. * try to get it yet. Most likely, the one we'll get for that will
  669. * have the right signing key too, and we'd just be downloading
  670. * redundantly.
  671. */
  672. if (status) {
  673. SMARTLIST_FOREACH_BEGIN(status->voters, networkstatus_voter_info_t *,
  674. voter) {
  675. if (!smartlist_len(voter->sigs))
  676. continue; /* This authority never signed this consensus, so don't
  677. * go looking for a cert with key digest 0000000000. */
  678. if (!cache &&
  679. !trusteddirserver_get_by_v3_auth_digest(voter->identity_digest))
  680. continue; /* We are not a cache, and we don't know this authority.*/
  681. /*
  682. * If we don't know *any* cert for this authority, and a download by ID
  683. * is pending or we added it to missing_id_digests above, skip this
  684. * one for now to avoid duplicate downloads.
  685. */
  686. cl = get_cert_list(voter->identity_digest);
  687. if (smartlist_len(cl->certs) == 0) {
  688. /* We have no certs at all for this one */
  689. /* Do we have a download of one pending? */
  690. if (digestmap_get(pending_id, voter->identity_digest))
  691. continue;
  692. /*
  693. * Are we about to launch a download of one due to the trusted
  694. * dir server check above?
  695. */
  696. if (smartlist_contains_digest(missing_id_digests,
  697. voter->identity_digest))
  698. continue;
  699. }
  700. SMARTLIST_FOREACH_BEGIN(voter->sigs, document_signature_t *, sig) {
  701. cert = authority_cert_get_by_digests(voter->identity_digest,
  702. sig->signing_key_digest);
  703. if (cert) {
  704. if (now < cert->expires)
  705. download_status_reset_by_sk_in_cl(cl, sig->signing_key_digest);
  706. continue;
  707. }
  708. if (download_status_is_ready_by_sk_in_cl(
  709. cl, sig->signing_key_digest,
  710. now, get_options()->TestingCertMaxDownloadTries) &&
  711. !fp_pair_map_get_by_digests(pending_cert,
  712. voter->identity_digest,
  713. sig->signing_key_digest)) {
  714. /*
  715. * Do this rather than hex_str(), since hex_str clobbers
  716. * old results and we call twice in the param list.
  717. */
  718. base16_encode(id_digest_str, sizeof(id_digest_str),
  719. voter->identity_digest, DIGEST_LEN);
  720. base16_encode(sk_digest_str, sizeof(sk_digest_str),
  721. sig->signing_key_digest, DIGEST_LEN);
  722. if (voter->nickname) {
  723. log_info(LD_DIR,
  724. "We're missing a certificate from authority %s "
  725. "(ID digest %s) with signing key %s: "
  726. "launching request.",
  727. voter->nickname, id_digest_str, sk_digest_str);
  728. } else {
  729. log_info(LD_DIR,
  730. "We're missing a certificate from authority ID digest "
  731. "%s with signing key %s: launching request.",
  732. id_digest_str, sk_digest_str);
  733. }
  734. /* Allocate a new fp_pair_t to append */
  735. fp_tmp = tor_malloc(sizeof(*fp_tmp));
  736. memcpy(fp_tmp->first, voter->identity_digest, sizeof(fp_tmp->first));
  737. memcpy(fp_tmp->second, sig->signing_key_digest,
  738. sizeof(fp_tmp->second));
  739. smartlist_add(missing_cert_digests, fp_tmp);
  740. }
  741. } SMARTLIST_FOREACH_END(sig);
  742. } SMARTLIST_FOREACH_END(voter);
  743. }
  744. /* Do downloads by identity digest */
  745. if (smartlist_len(missing_id_digests) > 0) {
  746. int need_plus = 0;
  747. smartlist_t *fps = smartlist_new();
  748. smartlist_add(fps, tor_strdup("fp/"));
  749. SMARTLIST_FOREACH_BEGIN(missing_id_digests, const char *, d) {
  750. char *fp = NULL;
  751. if (digestmap_get(pending_id, d))
  752. continue;
  753. base16_encode(id_digest_str, sizeof(id_digest_str),
  754. d, DIGEST_LEN);
  755. if (need_plus) {
  756. tor_asprintf(&fp, "+%s", id_digest_str);
  757. } else {
  758. /* No need for tor_asprintf() in this case; first one gets no '+' */
  759. fp = tor_strdup(id_digest_str);
  760. need_plus = 1;
  761. }
  762. smartlist_add(fps, fp);
  763. } SMARTLIST_FOREACH_END(d);
  764. if (smartlist_len(fps) > 1) {
  765. resource = smartlist_join_strings(fps, "", 0, NULL);
  766. directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0,
  767. resource, PDS_RETRY_IF_NO_SERVERS);
  768. tor_free(resource);
  769. }
  770. /* else we didn't add any: they were all pending */
  771. SMARTLIST_FOREACH(fps, char *, cp, tor_free(cp));
  772. smartlist_free(fps);
  773. }
  774. /* Do downloads by identity digest/signing key pair */
  775. if (smartlist_len(missing_cert_digests) > 0) {
  776. int need_plus = 0;
  777. smartlist_t *fp_pairs = smartlist_new();
  778. smartlist_add(fp_pairs, tor_strdup("fp-sk/"));
  779. SMARTLIST_FOREACH_BEGIN(missing_cert_digests, const fp_pair_t *, d) {
  780. char *fp_pair = NULL;
  781. if (fp_pair_map_get(pending_cert, d))
  782. continue;
  783. /* Construct string encodings of the digests */
  784. base16_encode(id_digest_str, sizeof(id_digest_str),
  785. d->first, DIGEST_LEN);
  786. base16_encode(sk_digest_str, sizeof(sk_digest_str),
  787. d->second, DIGEST_LEN);
  788. /* Now tor_asprintf() */
  789. if (need_plus) {
  790. tor_asprintf(&fp_pair, "+%s-%s", id_digest_str, sk_digest_str);
  791. } else {
  792. /* First one in the list doesn't get a '+' */
  793. tor_asprintf(&fp_pair, "%s-%s", id_digest_str, sk_digest_str);
  794. need_plus = 1;
  795. }
  796. /* Add it to the list of pairs to request */
  797. smartlist_add(fp_pairs, fp_pair);
  798. } SMARTLIST_FOREACH_END(d);
  799. if (smartlist_len(fp_pairs) > 1) {
  800. resource = smartlist_join_strings(fp_pairs, "", 0, NULL);
  801. directory_get_from_dirserver(DIR_PURPOSE_FETCH_CERTIFICATE, 0,
  802. resource, PDS_RETRY_IF_NO_SERVERS);
  803. tor_free(resource);
  804. }
  805. /* else they were all pending */
  806. SMARTLIST_FOREACH(fp_pairs, char *, p, tor_free(p));
  807. smartlist_free(fp_pairs);
  808. }
  809. smartlist_free(missing_id_digests);
  810. SMARTLIST_FOREACH(missing_cert_digests, fp_pair_t *, p, tor_free(p));
  811. smartlist_free(missing_cert_digests);
  812. digestmap_free(pending_id, NULL);
  813. fp_pair_map_free(pending_cert, NULL);
  814. }
  815. /* Router descriptor storage.
  816. *
  817. * Routerdescs are stored in a big file, named "cached-descriptors". As new
  818. * routerdescs arrive, we append them to a journal file named
  819. * "cached-descriptors.new".
  820. *
  821. * From time to time, we replace "cached-descriptors" with a new file
  822. * containing only the live, non-superseded descriptors, and clear
  823. * cached-routers.new.
  824. *
  825. * On startup, we read both files.
  826. */
  827. /** Helper: return 1 iff the router log is so big we want to rebuild the
  828. * store. */
  829. static int
  830. router_should_rebuild_store(desc_store_t *store)
  831. {
  832. if (store->store_len > (1<<16))
  833. return (store->journal_len > store->store_len / 2 ||
  834. store->bytes_dropped > store->store_len / 2);
  835. else
  836. return store->journal_len > (1<<15);
  837. }
  838. /** Return the desc_store_t in <b>rl</b> that should be used to store
  839. * <b>sd</b>. */
  840. static INLINE desc_store_t *
  841. desc_get_store(routerlist_t *rl, const signed_descriptor_t *sd)
  842. {
  843. if (sd->is_extrainfo)
  844. return &rl->extrainfo_store;
  845. else
  846. return &rl->desc_store;
  847. }
  848. /** Add the signed_descriptor_t in <b>desc</b> to the router
  849. * journal; change its saved_location to SAVED_IN_JOURNAL and set its
  850. * offset appropriately. */
  851. static int
  852. signed_desc_append_to_journal(signed_descriptor_t *desc,
  853. desc_store_t *store)
  854. {
  855. char *fname = get_datadir_fname_suffix(store->fname_base, ".new");
  856. const char *body = signed_descriptor_get_body_impl(desc,1);
  857. size_t len = desc->signed_descriptor_len + desc->annotations_len;
  858. if (append_bytes_to_file(fname, body, len, 1)) {
  859. log_warn(LD_FS, "Unable to store router descriptor");
  860. tor_free(fname);
  861. return -1;
  862. }
  863. desc->saved_location = SAVED_IN_JOURNAL;
  864. tor_free(fname);
  865. desc->saved_offset = store->journal_len;
  866. store->journal_len += len;
  867. return 0;
  868. }
  869. /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
  870. * signed_descriptor_t* in *<b>a</b> is older, the same age as, or newer than
  871. * the signed_descriptor_t* in *<b>b</b>. */
  872. static int
  873. compare_signed_descriptors_by_age_(const void **_a, const void **_b)
  874. {
  875. const signed_descriptor_t *r1 = *_a, *r2 = *_b;
  876. return (int)(r1->published_on - r2->published_on);
  877. }
  878. #define RRS_FORCE 1
  879. #define RRS_DONT_REMOVE_OLD 2
  880. /** If the journal of <b>store</b> is too long, or if RRS_FORCE is set in
  881. * <b>flags</b>, then atomically replace the saved router store with the
  882. * routers currently in our routerlist, and clear the journal. Unless
  883. * RRS_DONT_REMOVE_OLD is set in <b>flags</b>, delete expired routers before
  884. * rebuilding the store. Return 0 on success, -1 on failure.
  885. */
  886. static int
  887. router_rebuild_store(int flags, desc_store_t *store)
  888. {
  889. smartlist_t *chunk_list = NULL;
  890. char *fname = NULL, *fname_tmp = NULL;
  891. int r = -1;
  892. off_t offset = 0;
  893. smartlist_t *signed_descriptors = NULL;
  894. int nocache=0;
  895. size_t total_expected_len = 0;
  896. int had_any;
  897. int force = flags & RRS_FORCE;
  898. if (!force && !router_should_rebuild_store(store)) {
  899. r = 0;
  900. goto done;
  901. }
  902. if (!routerlist) {
  903. r = 0;
  904. goto done;
  905. }
  906. if (store->type == EXTRAINFO_STORE)
  907. had_any = !eimap_isempty(routerlist->extra_info_map);
  908. else
  909. had_any = (smartlist_len(routerlist->routers)+
  910. smartlist_len(routerlist->old_routers))>0;
  911. /* Don't save deadweight. */
  912. if (!(flags & RRS_DONT_REMOVE_OLD))
  913. routerlist_remove_old_routers();
  914. log_info(LD_DIR, "Rebuilding %s cache", store->description);
  915. fname = get_datadir_fname(store->fname_base);
  916. fname_tmp = get_datadir_fname_suffix(store->fname_base, ".tmp");
  917. chunk_list = smartlist_new();
  918. /* We sort the routers by age to enhance locality on disk. */
  919. signed_descriptors = smartlist_new();
  920. if (store->type == EXTRAINFO_STORE) {
  921. eimap_iter_t *iter;
  922. for (iter = eimap_iter_init(routerlist->extra_info_map);
  923. !eimap_iter_done(iter);
  924. iter = eimap_iter_next(routerlist->extra_info_map, iter)) {
  925. const char *key;
  926. extrainfo_t *ei;
  927. eimap_iter_get(iter, &key, &ei);
  928. smartlist_add(signed_descriptors, &ei->cache_info);
  929. }
  930. } else {
  931. SMARTLIST_FOREACH(routerlist->old_routers, signed_descriptor_t *, sd,
  932. smartlist_add(signed_descriptors, sd));
  933. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, ri,
  934. smartlist_add(signed_descriptors, &ri->cache_info));
  935. }
  936. smartlist_sort(signed_descriptors, compare_signed_descriptors_by_age_);
  937. /* Now, add the appropriate members to chunk_list */
  938. SMARTLIST_FOREACH_BEGIN(signed_descriptors, signed_descriptor_t *, sd) {
  939. sized_chunk_t *c;
  940. const char *body = signed_descriptor_get_body_impl(sd, 1);
  941. if (!body) {
  942. log_warn(LD_BUG, "No descriptor available for router.");
  943. goto done;
  944. }
  945. if (sd->do_not_cache) {
  946. ++nocache;
  947. continue;
  948. }
  949. c = tor_malloc(sizeof(sized_chunk_t));
  950. c->bytes = body;
  951. c->len = sd->signed_descriptor_len + sd->annotations_len;
  952. total_expected_len += c->len;
  953. smartlist_add(chunk_list, c);
  954. } SMARTLIST_FOREACH_END(sd);
  955. if (write_chunks_to_file(fname_tmp, chunk_list, 1, 1)<0) {
  956. log_warn(LD_FS, "Error writing router store to disk.");
  957. goto done;
  958. }
  959. /* Our mmap is now invalid. */
  960. if (store->mmap) {
  961. tor_munmap_file(store->mmap);
  962. store->mmap = NULL;
  963. }
  964. if (replace_file(fname_tmp, fname)<0) {
  965. log_warn(LD_FS, "Error replacing old router store: %s", strerror(errno));
  966. goto done;
  967. }
  968. errno = 0;
  969. store->mmap = tor_mmap_file(fname);
  970. if (! store->mmap) {
  971. if (errno == ERANGE) {
  972. /* empty store.*/
  973. if (total_expected_len) {
  974. log_warn(LD_FS, "We wrote some bytes to a new descriptor file at '%s',"
  975. " but when we went to mmap it, it was empty!", fname);
  976. } else if (had_any) {
  977. log_info(LD_FS, "We just removed every descriptor in '%s'. This is "
  978. "okay if we're just starting up after a long time. "
  979. "Otherwise, it's a bug.", fname);
  980. }
  981. } else {
  982. log_warn(LD_FS, "Unable to mmap new descriptor file at '%s'.",fname);
  983. }
  984. }
  985. log_info(LD_DIR, "Reconstructing pointers into cache");
  986. offset = 0;
  987. SMARTLIST_FOREACH_BEGIN(signed_descriptors, signed_descriptor_t *, sd) {
  988. if (sd->do_not_cache)
  989. continue;
  990. sd->saved_location = SAVED_IN_CACHE;
  991. if (store->mmap) {
  992. tor_free(sd->signed_descriptor_body); // sets it to null
  993. sd->saved_offset = offset;
  994. }
  995. offset += sd->signed_descriptor_len + sd->annotations_len;
  996. signed_descriptor_get_body(sd); /* reconstruct and assert */
  997. } SMARTLIST_FOREACH_END(sd);
  998. tor_free(fname);
  999. fname = get_datadir_fname_suffix(store->fname_base, ".new");
  1000. write_str_to_file(fname, "", 1);
  1001. r = 0;
  1002. store->store_len = (size_t) offset;
  1003. store->journal_len = 0;
  1004. store->bytes_dropped = 0;
  1005. done:
  1006. smartlist_free(signed_descriptors);
  1007. tor_free(fname);
  1008. tor_free(fname_tmp);
  1009. if (chunk_list) {
  1010. SMARTLIST_FOREACH(chunk_list, sized_chunk_t *, c, tor_free(c));
  1011. smartlist_free(chunk_list);
  1012. }
  1013. return r;
  1014. }
  1015. /** Helper: Reload a cache file and its associated journal, setting metadata
  1016. * appropriately. If <b>extrainfo</b> is true, reload the extrainfo store;
  1017. * else reload the router descriptor store. */
  1018. static int
  1019. router_reload_router_list_impl(desc_store_t *store)
  1020. {
  1021. char *fname = NULL, *contents = NULL;
  1022. struct stat st;
  1023. int extrainfo = (store->type == EXTRAINFO_STORE);
  1024. store->journal_len = store->store_len = 0;
  1025. fname = get_datadir_fname(store->fname_base);
  1026. if (store->mmap) /* get rid of it first */
  1027. tor_munmap_file(store->mmap);
  1028. store->mmap = NULL;
  1029. store->mmap = tor_mmap_file(fname);
  1030. if (store->mmap) {
  1031. store->store_len = store->mmap->size;
  1032. if (extrainfo)
  1033. router_load_extrainfo_from_string(store->mmap->data,
  1034. store->mmap->data+store->mmap->size,
  1035. SAVED_IN_CACHE, NULL, 0);
  1036. else
  1037. router_load_routers_from_string(store->mmap->data,
  1038. store->mmap->data+store->mmap->size,
  1039. SAVED_IN_CACHE, NULL, 0, NULL);
  1040. }
  1041. tor_free(fname);
  1042. fname = get_datadir_fname_suffix(store->fname_base, ".new");
  1043. if (file_status(fname) == FN_FILE)
  1044. contents = read_file_to_str(fname, RFTS_BIN|RFTS_IGNORE_MISSING, &st);
  1045. if (contents) {
  1046. if (extrainfo)
  1047. router_load_extrainfo_from_string(contents, NULL,SAVED_IN_JOURNAL,
  1048. NULL, 0);
  1049. else
  1050. router_load_routers_from_string(contents, NULL, SAVED_IN_JOURNAL,
  1051. NULL, 0, NULL);
  1052. store->journal_len = (size_t) st.st_size;
  1053. tor_free(contents);
  1054. }
  1055. tor_free(fname);
  1056. if (store->journal_len) {
  1057. /* Always clear the journal on startup.*/
  1058. router_rebuild_store(RRS_FORCE, store);
  1059. } else if (!extrainfo) {
  1060. /* Don't cache expired routers. (This is in an else because
  1061. * router_rebuild_store() also calls remove_old_routers().) */
  1062. routerlist_remove_old_routers();
  1063. }
  1064. return 0;
  1065. }
  1066. /** Load all cached router descriptors and extra-info documents from the
  1067. * store. Return 0 on success and -1 on failure.
  1068. */
  1069. int
  1070. router_reload_router_list(void)
  1071. {
  1072. routerlist_t *rl = router_get_routerlist();
  1073. if (router_reload_router_list_impl(&rl->desc_store))
  1074. return -1;
  1075. if (router_reload_router_list_impl(&rl->extrainfo_store))
  1076. return -1;
  1077. return 0;
  1078. }
  1079. /** Return a smartlist containing a list of dir_server_t * for all
  1080. * known trusted dirservers. Callers must not modify the list or its
  1081. * contents.
  1082. */
  1083. const smartlist_t *
  1084. router_get_trusted_dir_servers(void)
  1085. {
  1086. if (!trusted_dir_servers)
  1087. trusted_dir_servers = smartlist_new();
  1088. return trusted_dir_servers;
  1089. }
  1090. const smartlist_t *
  1091. router_get_fallback_dir_servers(void)
  1092. {
  1093. if (!fallback_dir_servers)
  1094. fallback_dir_servers = smartlist_new();
  1095. return fallback_dir_servers;
  1096. }
  1097. /** Try to find a running dirserver that supports operations of <b>type</b>.
  1098. *
  1099. * If there are no running dirservers in our routerlist and the
  1100. * <b>PDS_RETRY_IF_NO_SERVERS</b> flag is set, set all the authoritative ones
  1101. * as running again, and pick one.
  1102. *
  1103. * If the <b>PDS_IGNORE_FASCISTFIREWALL</b> flag is set, then include
  1104. * dirservers that we can't reach.
  1105. *
  1106. * If the <b>PDS_ALLOW_SELF</b> flag is not set, then don't include ourself
  1107. * (if we're a dirserver).
  1108. *
  1109. * Don't pick an authority if any non-authority is viable; try to avoid using
  1110. * servers that have returned 503 recently.
  1111. */
  1112. const routerstatus_t *
  1113. router_pick_directory_server(dirinfo_type_t type, int flags)
  1114. {
  1115. const routerstatus_t *choice;
  1116. if (get_options()->PreferTunneledDirConns)
  1117. flags |= PDS_PREFER_TUNNELED_DIR_CONNS_;
  1118. if (!routerlist)
  1119. return NULL;
  1120. choice = router_pick_directory_server_impl(type, flags);
  1121. if (choice || !(flags & PDS_RETRY_IF_NO_SERVERS))
  1122. return choice;
  1123. log_info(LD_DIR,
  1124. "No reachable router entries for dirservers. "
  1125. "Trying them all again.");
  1126. /* mark all authdirservers as up again */
  1127. mark_all_dirservers_up(fallback_dir_servers);
  1128. /* try again */
  1129. choice = router_pick_directory_server_impl(type, flags);
  1130. return choice;
  1131. }
  1132. /** Try to determine which fraction ofv3 directory requests aimed at
  1133. * caches will be sent to us. Set
  1134. * *<b>v3_share_out</b> to the fraction of v3 protocol shares we
  1135. * expect to see. Return 0 on success, negative on failure. */
  1136. /* XXXX This function is unused. */
  1137. int
  1138. router_get_my_share_of_directory_requests(double *v3_share_out)
  1139. {
  1140. const routerinfo_t *me = router_get_my_routerinfo();
  1141. const routerstatus_t *rs;
  1142. const int pds_flags = PDS_ALLOW_SELF|PDS_IGNORE_FASCISTFIREWALL;
  1143. *v3_share_out = 0.0;
  1144. if (!me)
  1145. return -1;
  1146. rs = router_get_consensus_status_by_id(me->cache_info.identity_digest);
  1147. if (!rs)
  1148. return -1;
  1149. /* Calling for side effect */
  1150. /* XXXX This is a bit of a kludge */
  1151. {
  1152. sl_last_total_weighted_bw = 0;
  1153. router_pick_directory_server(V3_DIRINFO, pds_flags);
  1154. if (sl_last_total_weighted_bw != 0) {
  1155. *v3_share_out = U64_TO_DBL(sl_last_weighted_bw_of_me) /
  1156. U64_TO_DBL(sl_last_total_weighted_bw);
  1157. }
  1158. }
  1159. return 0;
  1160. }
  1161. /** Return the dir_server_t for the directory authority whose identity
  1162. * key hashes to <b>digest</b>, or NULL if no such authority is known.
  1163. */
  1164. dir_server_t *
  1165. router_get_trusteddirserver_by_digest(const char *digest)
  1166. {
  1167. if (!trusted_dir_servers)
  1168. return NULL;
  1169. SMARTLIST_FOREACH(trusted_dir_servers, dir_server_t *, ds,
  1170. {
  1171. if (tor_memeq(ds->digest, digest, DIGEST_LEN))
  1172. return ds;
  1173. });
  1174. return NULL;
  1175. }
  1176. /** Return the dir_server_t for the fallback dirserver whose identity
  1177. * key hashes to <b>digest</b>, or NULL if no such authority is known.
  1178. */
  1179. dir_server_t *
  1180. router_get_fallback_dirserver_by_digest(const char *digest)
  1181. {
  1182. if (!trusted_dir_servers)
  1183. return NULL;
  1184. SMARTLIST_FOREACH(trusted_dir_servers, dir_server_t *, ds,
  1185. {
  1186. if (tor_memeq(ds->digest, digest, DIGEST_LEN))
  1187. return ds;
  1188. });
  1189. return NULL;
  1190. }
  1191. /** Return the dir_server_t for the directory authority whose
  1192. * v3 identity key hashes to <b>digest</b>, or NULL if no such authority
  1193. * is known.
  1194. */
  1195. dir_server_t *
  1196. trusteddirserver_get_by_v3_auth_digest(const char *digest)
  1197. {
  1198. if (!trusted_dir_servers)
  1199. return NULL;
  1200. SMARTLIST_FOREACH(trusted_dir_servers, dir_server_t *, ds,
  1201. {
  1202. if (tor_memeq(ds->v3_identity_digest, digest, DIGEST_LEN) &&
  1203. (ds->type & V3_DIRINFO))
  1204. return ds;
  1205. });
  1206. return NULL;
  1207. }
  1208. /** Try to find a running directory authority. Flags are as for
  1209. * router_pick_directory_server.
  1210. */
  1211. const routerstatus_t *
  1212. router_pick_trusteddirserver(dirinfo_type_t type, int flags)
  1213. {
  1214. return router_pick_dirserver_generic(trusted_dir_servers, type, flags);
  1215. }
  1216. /** Try to find a running fallback directory Flags are as for
  1217. * router_pick_directory_server.
  1218. */
  1219. const routerstatus_t *
  1220. router_pick_fallback_dirserver(dirinfo_type_t type, int flags)
  1221. {
  1222. return router_pick_dirserver_generic(fallback_dir_servers, type, flags);
  1223. }
  1224. /** Try to find a running fallback directory Flags are as for
  1225. * router_pick_directory_server.
  1226. */
  1227. static const routerstatus_t *
  1228. router_pick_dirserver_generic(smartlist_t *sourcelist,
  1229. dirinfo_type_t type, int flags)
  1230. {
  1231. const routerstatus_t *choice;
  1232. int busy = 0;
  1233. if (get_options()->PreferTunneledDirConns)
  1234. flags |= PDS_PREFER_TUNNELED_DIR_CONNS_;
  1235. choice = router_pick_trusteddirserver_impl(sourcelist, type, flags, &busy);
  1236. if (choice || !(flags & PDS_RETRY_IF_NO_SERVERS))
  1237. return choice;
  1238. if (busy) {
  1239. /* If the reason that we got no server is that servers are "busy",
  1240. * we must be excluding good servers because we already have serverdesc
  1241. * fetches with them. Do not mark down servers up because of this. */
  1242. tor_assert((flags & (PDS_NO_EXISTING_SERVERDESC_FETCH|
  1243. PDS_NO_EXISTING_MICRODESC_FETCH)));
  1244. return NULL;
  1245. }
  1246. log_info(LD_DIR,
  1247. "No dirservers are reachable. Trying them all again.");
  1248. mark_all_dirservers_up(sourcelist);
  1249. return router_pick_trusteddirserver_impl(sourcelist, type, flags, NULL);
  1250. }
  1251. /** How long do we avoid using a directory server after it's given us a 503? */
  1252. #define DIR_503_TIMEOUT (60*60)
  1253. /** Pick a random running valid directory server/mirror from our
  1254. * routerlist. Arguments are as for router_pick_directory_server(), except
  1255. * that RETRY_IF_NO_SERVERS is ignored, and:
  1256. *
  1257. * If the PDS_PREFER_TUNNELED_DIR_CONNS_ flag is set, prefer directory servers
  1258. * that we can use with BEGINDIR.
  1259. */
  1260. static const routerstatus_t *
  1261. router_pick_directory_server_impl(dirinfo_type_t type, int flags)
  1262. {
  1263. const or_options_t *options = get_options();
  1264. const node_t *result;
  1265. smartlist_t *direct, *tunnel;
  1266. smartlist_t *trusted_direct, *trusted_tunnel;
  1267. smartlist_t *overloaded_direct, *overloaded_tunnel;
  1268. time_t now = time(NULL);
  1269. const networkstatus_t *consensus = networkstatus_get_latest_consensus();
  1270. int requireother = ! (flags & PDS_ALLOW_SELF);
  1271. int fascistfirewall = ! (flags & PDS_IGNORE_FASCISTFIREWALL);
  1272. int prefer_tunnel = (flags & PDS_PREFER_TUNNELED_DIR_CONNS_);
  1273. int for_guard = (flags & PDS_FOR_GUARD);
  1274. int try_excluding = 1, n_excluded = 0;
  1275. if (!consensus)
  1276. return NULL;
  1277. retry_without_exclude:
  1278. direct = smartlist_new();
  1279. tunnel = smartlist_new();
  1280. trusted_direct = smartlist_new();
  1281. trusted_tunnel = smartlist_new();
  1282. overloaded_direct = smartlist_new();
  1283. overloaded_tunnel = smartlist_new();
  1284. /* Find all the running dirservers we know about. */
  1285. SMARTLIST_FOREACH_BEGIN(nodelist_get_list(), const node_t *, node) {
  1286. int is_trusted;
  1287. int is_overloaded;
  1288. tor_addr_t addr;
  1289. const routerstatus_t *status = node->rs;
  1290. const country_t country = node->country;
  1291. if (!status)
  1292. continue;
  1293. if (!node->is_running || !status->dir_port || !node->is_valid)
  1294. continue;
  1295. if (node->is_bad_directory)
  1296. continue;
  1297. if (requireother && router_digest_is_me(node->identity))
  1298. continue;
  1299. is_trusted = router_digest_is_trusted_dir(node->identity);
  1300. if ((type & EXTRAINFO_DIRINFO) &&
  1301. !router_supports_extrainfo(node->identity, 0))
  1302. continue;
  1303. if ((type & MICRODESC_DIRINFO) && !is_trusted &&
  1304. !node->rs->version_supports_microdesc_cache)
  1305. continue;
  1306. if (for_guard && node->using_as_guard)
  1307. continue; /* Don't make the same node a guard twice. */
  1308. if (try_excluding &&
  1309. routerset_contains_routerstatus(options->ExcludeNodes, status,
  1310. country)) {
  1311. ++n_excluded;
  1312. continue;
  1313. }
  1314. /* XXXX IP6 proposal 118 */
  1315. tor_addr_from_ipv4h(&addr, node->rs->addr);
  1316. is_overloaded = status->last_dir_503_at + DIR_503_TIMEOUT > now;
  1317. if (prefer_tunnel &&
  1318. (!fascistfirewall ||
  1319. fascist_firewall_allows_address_or(&addr, status->or_port)))
  1320. smartlist_add(is_trusted ? trusted_tunnel :
  1321. is_overloaded ? overloaded_tunnel : tunnel, (void*)node);
  1322. else if (!fascistfirewall ||
  1323. fascist_firewall_allows_address_dir(&addr, status->dir_port))
  1324. smartlist_add(is_trusted ? trusted_direct :
  1325. is_overloaded ? overloaded_direct : direct, (void*)node);
  1326. } SMARTLIST_FOREACH_END(node);
  1327. if (smartlist_len(tunnel)) {
  1328. result = node_sl_choose_by_bandwidth(tunnel, WEIGHT_FOR_DIR);
  1329. } else if (smartlist_len(overloaded_tunnel)) {
  1330. result = node_sl_choose_by_bandwidth(overloaded_tunnel,
  1331. WEIGHT_FOR_DIR);
  1332. } else if (smartlist_len(trusted_tunnel)) {
  1333. /* FFFF We don't distinguish between trusteds and overloaded trusteds
  1334. * yet. Maybe one day we should. */
  1335. /* FFFF We also don't load balance over authorities yet. I think this
  1336. * is a feature, but it could easily be a bug. -RD */
  1337. result = smartlist_choose(trusted_tunnel);
  1338. } else if (smartlist_len(direct)) {
  1339. result = node_sl_choose_by_bandwidth(direct, WEIGHT_FOR_DIR);
  1340. } else if (smartlist_len(overloaded_direct)) {
  1341. result = node_sl_choose_by_bandwidth(overloaded_direct,
  1342. WEIGHT_FOR_DIR);
  1343. } else {
  1344. result = smartlist_choose(trusted_direct);
  1345. }
  1346. smartlist_free(direct);
  1347. smartlist_free(tunnel);
  1348. smartlist_free(trusted_direct);
  1349. smartlist_free(trusted_tunnel);
  1350. smartlist_free(overloaded_direct);
  1351. smartlist_free(overloaded_tunnel);
  1352. if (result == NULL && try_excluding && !options->StrictNodes && n_excluded) {
  1353. /* If we got no result, and we are excluding nodes, and StrictNodes is
  1354. * not set, try again without excluding nodes. */
  1355. try_excluding = 0;
  1356. n_excluded = 0;
  1357. goto retry_without_exclude;
  1358. }
  1359. return result ? result->rs : NULL;
  1360. }
  1361. /** Pick a random element from a list of dir_server_t, weighting by their
  1362. * <b>weight</b> field. */
  1363. static const dir_server_t *
  1364. dirserver_choose_by_weight(const smartlist_t *servers, double authority_weight)
  1365. {
  1366. int n = smartlist_len(servers);
  1367. int i;
  1368. u64_dbl_t *weights;
  1369. const dir_server_t *ds;
  1370. weights = tor_malloc(sizeof(u64_dbl_t) * n);
  1371. for (i = 0; i < n; ++i) {
  1372. ds = smartlist_get(servers, i);
  1373. weights[i].dbl = ds->weight;
  1374. if (ds->is_authority)
  1375. weights[i].dbl *= authority_weight;
  1376. }
  1377. scale_array_elements_to_u64(weights, n, NULL);
  1378. i = choose_array_element_by_weight(weights, n);
  1379. tor_free(weights);
  1380. return (i < 0) ? NULL : smartlist_get(servers, i);
  1381. }
  1382. /** Choose randomly from among the dir_server_ts in sourcelist that
  1383. * are up. Flags are as for router_pick_directory_server_impl().
  1384. */
  1385. static const routerstatus_t *
  1386. router_pick_trusteddirserver_impl(const smartlist_t *sourcelist,
  1387. dirinfo_type_t type, int flags,
  1388. int *n_busy_out)
  1389. {
  1390. const or_options_t *options = get_options();
  1391. smartlist_t *direct, *tunnel;
  1392. smartlist_t *overloaded_direct, *overloaded_tunnel;
  1393. const routerinfo_t *me = router_get_my_routerinfo();
  1394. const routerstatus_t *result = NULL;
  1395. time_t now = time(NULL);
  1396. const int requireother = ! (flags & PDS_ALLOW_SELF);
  1397. const int fascistfirewall = ! (flags & PDS_IGNORE_FASCISTFIREWALL);
  1398. const int prefer_tunnel = (flags & PDS_PREFER_TUNNELED_DIR_CONNS_);
  1399. const int no_serverdesc_fetching =(flags & PDS_NO_EXISTING_SERVERDESC_FETCH);
  1400. const int no_microdesc_fetching =(flags & PDS_NO_EXISTING_MICRODESC_FETCH);
  1401. const double auth_weight = (sourcelist == fallback_dir_servers) ?
  1402. options->DirAuthorityFallbackRate : 1.0;
  1403. smartlist_t *pick_from;
  1404. int n_busy = 0;
  1405. int try_excluding = 1, n_excluded = 0;
  1406. if (!sourcelist)
  1407. return NULL;
  1408. retry_without_exclude:
  1409. direct = smartlist_new();
  1410. tunnel = smartlist_new();
  1411. overloaded_direct = smartlist_new();
  1412. overloaded_tunnel = smartlist_new();
  1413. SMARTLIST_FOREACH_BEGIN(sourcelist, const dir_server_t *, d)
  1414. {
  1415. int is_overloaded =
  1416. d->fake_status.last_dir_503_at + DIR_503_TIMEOUT > now;
  1417. tor_addr_t addr;
  1418. if (!d->is_running) continue;
  1419. if ((type & d->type) == 0)
  1420. continue;
  1421. if ((type & EXTRAINFO_DIRINFO) &&
  1422. !router_supports_extrainfo(d->digest, 1))
  1423. continue;
  1424. if (requireother && me && router_digest_is_me(d->digest))
  1425. continue;
  1426. if (try_excluding &&
  1427. routerset_contains_routerstatus(options->ExcludeNodes,
  1428. &d->fake_status, -1)) {
  1429. ++n_excluded;
  1430. continue;
  1431. }
  1432. /* XXXX IP6 proposal 118 */
  1433. tor_addr_from_ipv4h(&addr, d->addr);
  1434. if (no_serverdesc_fetching) {
  1435. if (connection_get_by_type_addr_port_purpose(
  1436. CONN_TYPE_DIR, &addr, d->dir_port, DIR_PURPOSE_FETCH_SERVERDESC)
  1437. || connection_get_by_type_addr_port_purpose(
  1438. CONN_TYPE_DIR, &addr, d->dir_port, DIR_PURPOSE_FETCH_EXTRAINFO)) {
  1439. //log_debug(LD_DIR, "We have an existing connection to fetch "
  1440. // "descriptor from %s; delaying",d->description);
  1441. ++n_busy;
  1442. continue;
  1443. }
  1444. }
  1445. if (no_microdesc_fetching) {
  1446. if (connection_get_by_type_addr_port_purpose(
  1447. CONN_TYPE_DIR, &addr, d->dir_port, DIR_PURPOSE_FETCH_MICRODESC)) {
  1448. ++n_busy;
  1449. continue;
  1450. }
  1451. }
  1452. if (prefer_tunnel &&
  1453. d->or_port &&
  1454. (!fascistfirewall ||
  1455. fascist_firewall_allows_address_or(&addr, d->or_port)))
  1456. smartlist_add(is_overloaded ? overloaded_tunnel : tunnel, (void*)d);
  1457. else if (!fascistfirewall ||
  1458. fascist_firewall_allows_address_dir(&addr, d->dir_port))
  1459. smartlist_add(is_overloaded ? overloaded_direct : direct, (void*)d);
  1460. }
  1461. SMARTLIST_FOREACH_END(d);
  1462. if (smartlist_len(tunnel)) {
  1463. pick_from = tunnel;
  1464. } else if (smartlist_len(overloaded_tunnel)) {
  1465. pick_from = overloaded_tunnel;
  1466. } else if (smartlist_len(direct)) {
  1467. pick_from = direct;
  1468. } else {
  1469. pick_from = overloaded_direct;
  1470. }
  1471. {
  1472. const dir_server_t *selection =
  1473. dirserver_choose_by_weight(pick_from, auth_weight);
  1474. if (selection)
  1475. result = &selection->fake_status;
  1476. }
  1477. if (n_busy_out)
  1478. *n_busy_out = n_busy;
  1479. smartlist_free(direct);
  1480. smartlist_free(tunnel);
  1481. smartlist_free(overloaded_direct);
  1482. smartlist_free(overloaded_tunnel);
  1483. if (result == NULL && try_excluding && !options->StrictNodes && n_excluded) {
  1484. /* If we got no result, and we are excluding nodes, and StrictNodes is
  1485. * not set, try again without excluding nodes. */
  1486. try_excluding = 0;
  1487. n_excluded = 0;
  1488. goto retry_without_exclude;
  1489. }
  1490. return result;
  1491. }
  1492. /** Mark as running every dir_server_t in <b>server_list</b>. */
  1493. static void
  1494. mark_all_dirservers_up(smartlist_t *server_list)
  1495. {
  1496. if (server_list) {
  1497. SMARTLIST_FOREACH_BEGIN(server_list, dir_server_t *, dir) {
  1498. routerstatus_t *rs;
  1499. node_t *node;
  1500. dir->is_running = 1;
  1501. node = node_get_mutable_by_id(dir->digest);
  1502. if (node)
  1503. node->is_running = 1;
  1504. rs = router_get_mutable_consensus_status_by_id(dir->digest);
  1505. if (rs) {
  1506. rs->last_dir_503_at = 0;
  1507. control_event_networkstatus_changed_single(rs);
  1508. }
  1509. } SMARTLIST_FOREACH_END(dir);
  1510. }
  1511. router_dir_info_changed();
  1512. }
  1513. /** Return true iff r1 and r2 have the same address and OR port. */
  1514. int
  1515. routers_have_same_or_addrs(const routerinfo_t *r1, const routerinfo_t *r2)
  1516. {
  1517. return r1->addr == r2->addr && r1->or_port == r2->or_port &&
  1518. tor_addr_eq(&r1->ipv6_addr, &r2->ipv6_addr) &&
  1519. r1->ipv6_orport == r2->ipv6_orport;
  1520. }
  1521. /** Reset all internal variables used to count failed downloads of network
  1522. * status objects. */
  1523. void
  1524. router_reset_status_download_failures(void)
  1525. {
  1526. mark_all_dirservers_up(fallback_dir_servers);
  1527. }
  1528. /** Given a <b>router</b>, add every node_t in its family (including the
  1529. * node itself!) to <b>sl</b>.
  1530. *
  1531. * Note the type mismatch: This function takes a routerinfo, but adds nodes
  1532. * to the smartlist!
  1533. */
  1534. static void
  1535. routerlist_add_node_and_family(smartlist_t *sl, const routerinfo_t *router)
  1536. {
  1537. /* XXXX MOVE ? */
  1538. node_t fake_node;
  1539. const node_t *node = node_get_by_id(router->cache_info.identity_digest);;
  1540. if (node == NULL) {
  1541. memset(&fake_node, 0, sizeof(fake_node));
  1542. fake_node.ri = (routerinfo_t *)router;
  1543. memcpy(fake_node.identity, router->cache_info.identity_digest, DIGEST_LEN);
  1544. node = &fake_node;
  1545. }
  1546. nodelist_add_node_and_family(sl, node);
  1547. }
  1548. /** Add every suitable node from our nodelist to <b>sl</b>, so that
  1549. * we can pick a node for a circuit.
  1550. */
  1551. static void
  1552. router_add_running_nodes_to_smartlist(smartlist_t *sl, int allow_invalid,
  1553. int need_uptime, int need_capacity,
  1554. int need_guard, int need_desc)
  1555. { /* XXXX MOVE */
  1556. SMARTLIST_FOREACH_BEGIN(nodelist_get_list(), const node_t *, node) {
  1557. if (!node->is_running ||
  1558. (!node->is_valid && !allow_invalid))
  1559. continue;
  1560. if (need_desc && !(node->ri || (node->rs && node->md)))
  1561. continue;
  1562. if (node->ri && node->ri->purpose != ROUTER_PURPOSE_GENERAL)
  1563. continue;
  1564. if (node_is_unreliable(node, need_uptime, need_capacity, need_guard))
  1565. continue;
  1566. smartlist_add(sl, (void *)node);
  1567. } SMARTLIST_FOREACH_END(node);
  1568. }
  1569. /** Look through the routerlist until we find a router that has my key.
  1570. Return it. */
  1571. const routerinfo_t *
  1572. routerlist_find_my_routerinfo(void)
  1573. {
  1574. if (!routerlist)
  1575. return NULL;
  1576. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  1577. {
  1578. if (router_is_me(router))
  1579. return router;
  1580. });
  1581. return NULL;
  1582. }
  1583. /** Return the smaller of the router's configured BandwidthRate
  1584. * and its advertised capacity. */
  1585. uint32_t
  1586. router_get_advertised_bandwidth(const routerinfo_t *router)
  1587. {
  1588. if (router->bandwidthcapacity < router->bandwidthrate)
  1589. return router->bandwidthcapacity;
  1590. return router->bandwidthrate;
  1591. }
  1592. /** Do not weight any declared bandwidth more than this much when picking
  1593. * routers by bandwidth. */
  1594. #define DEFAULT_MAX_BELIEVABLE_BANDWIDTH 10000000 /* 10 MB/sec */
  1595. /** Return the smaller of the router's configured BandwidthRate
  1596. * and its advertised capacity, capped by max-believe-bw. */
  1597. uint32_t
  1598. router_get_advertised_bandwidth_capped(const routerinfo_t *router)
  1599. {
  1600. uint32_t result = router->bandwidthcapacity;
  1601. if (result > router->bandwidthrate)
  1602. result = router->bandwidthrate;
  1603. if (result > DEFAULT_MAX_BELIEVABLE_BANDWIDTH)
  1604. result = DEFAULT_MAX_BELIEVABLE_BANDWIDTH;
  1605. return result;
  1606. }
  1607. /** Given an array of double/uint64_t unions that are currently being used as
  1608. * doubles, convert them to uint64_t, and try to scale them linearly so as to
  1609. * much of the range of uint64_t. If <b>total_out</b> is provided, set it to
  1610. * the sum of all elements in the array _before_ scaling. */
  1611. STATIC void
  1612. scale_array_elements_to_u64(u64_dbl_t *entries, int n_entries,
  1613. uint64_t *total_out)
  1614. {
  1615. double total = 0.0;
  1616. double scale_factor;
  1617. int i;
  1618. /* big, but far away from overflowing an int64_t */
  1619. #define SCALE_TO_U64_MAX (INT64_MAX / 4)
  1620. for (i = 0; i < n_entries; ++i)
  1621. total += entries[i].dbl;
  1622. scale_factor = SCALE_TO_U64_MAX / total;
  1623. for (i = 0; i < n_entries; ++i)
  1624. entries[i].u64 = tor_llround(entries[i].dbl * scale_factor);
  1625. if (total_out)
  1626. *total_out = (uint64_t) total;
  1627. #undef SCALE_TO_U64_MAX
  1628. }
  1629. /** Time-invariant 64-bit greater-than; works on two integers in the range
  1630. * (0,INT64_MAX). */
  1631. #if SIZEOF_VOID_P == 8
  1632. #define gt_i64_timei(a,b) ((a) > (b))
  1633. #else
  1634. static INLINE int
  1635. gt_i64_timei(uint64_t a, uint64_t b)
  1636. {
  1637. int64_t diff = (int64_t) (b - a);
  1638. int res = diff >> 63;
  1639. return res & 1;
  1640. }
  1641. #endif
  1642. /** Pick a random element of <b>n_entries</b>-element array <b>entries</b>,
  1643. * choosing each element with a probability proportional to its (uint64_t)
  1644. * value, and return the index of that element. If all elements are 0, choose
  1645. * an index at random. Return -1 on error.
  1646. */
  1647. STATIC int
  1648. choose_array_element_by_weight(const u64_dbl_t *entries, int n_entries)
  1649. {
  1650. int i, i_chosen=-1, n_chosen=0;
  1651. uint64_t total_so_far = 0;
  1652. uint64_t rand_val;
  1653. uint64_t total = 0;
  1654. for (i = 0; i < n_entries; ++i)
  1655. total += entries[i].u64;
  1656. if (n_entries < 1)
  1657. return -1;
  1658. if (total == 0)
  1659. return crypto_rand_int(n_entries);
  1660. tor_assert(total < INT64_MAX);
  1661. rand_val = crypto_rand_uint64(total);
  1662. for (i = 0; i < n_entries; ++i) {
  1663. total_so_far += entries[i].u64;
  1664. if (gt_i64_timei(total_so_far, rand_val)) {
  1665. i_chosen = i;
  1666. n_chosen++;
  1667. /* Set rand_val to INT64_MAX rather than stopping the loop. This way,
  1668. * the time we spend in the loop does not leak which element we chose. */
  1669. rand_val = INT64_MAX;
  1670. }
  1671. }
  1672. tor_assert(total_so_far == total);
  1673. tor_assert(n_chosen == 1);
  1674. tor_assert(i_chosen >= 0);
  1675. tor_assert(i_chosen < n_entries);
  1676. return i_chosen;
  1677. }
  1678. /** When weighting bridges, enforce these values as lower and upper
  1679. * bound for believable bandwidth, because there is no way for us
  1680. * to verify a bridge's bandwidth currently. */
  1681. #define BRIDGE_MIN_BELIEVABLE_BANDWIDTH 20000 /* 20 kB/sec */
  1682. #define BRIDGE_MAX_BELIEVABLE_BANDWIDTH 100000 /* 100 kB/sec */
  1683. /** Return the smaller of the router's configured BandwidthRate
  1684. * and its advertised capacity, making sure to stay within the
  1685. * interval between bridge-min-believe-bw and
  1686. * bridge-max-believe-bw. */
  1687. static uint32_t
  1688. bridge_get_advertised_bandwidth_bounded(routerinfo_t *router)
  1689. {
  1690. uint32_t result = router->bandwidthcapacity;
  1691. if (result > router->bandwidthrate)
  1692. result = router->bandwidthrate;
  1693. if (result > BRIDGE_MAX_BELIEVABLE_BANDWIDTH)
  1694. result = BRIDGE_MAX_BELIEVABLE_BANDWIDTH;
  1695. else if (result < BRIDGE_MIN_BELIEVABLE_BANDWIDTH)
  1696. result = BRIDGE_MIN_BELIEVABLE_BANDWIDTH;
  1697. return result;
  1698. }
  1699. /** Return bw*1000, unless bw*1000 would overflow, in which case return
  1700. * INT32_MAX. */
  1701. static INLINE int32_t
  1702. kb_to_bytes(uint32_t bw)
  1703. {
  1704. return (bw > (INT32_MAX/1000)) ? INT32_MAX : bw*1000;
  1705. }
  1706. /** Helper function:
  1707. * choose a random element of smartlist <b>sl</b> of nodes, weighted by
  1708. * the advertised bandwidth of each element using the consensus
  1709. * bandwidth weights.
  1710. *
  1711. * If <b>rule</b>==WEIGHT_FOR_EXIT. we're picking an exit node: consider all
  1712. * nodes' bandwidth equally regardless of their Exit status, since there may
  1713. * be some in the list because they exit to obscure ports. If
  1714. * <b>rule</b>==NO_WEIGHTING, we're picking a non-exit node: weight
  1715. * exit-node's bandwidth less depending on the smallness of the fraction of
  1716. * Exit-to-total bandwidth. If <b>rule</b>==WEIGHT_FOR_GUARD, we're picking a
  1717. * guard node: consider all guard's bandwidth equally. Otherwise, weight
  1718. * guards proportionally less.
  1719. */
  1720. static const node_t *
  1721. smartlist_choose_node_by_bandwidth_weights(const smartlist_t *sl,
  1722. bandwidth_weight_rule_t rule)
  1723. {
  1724. u64_dbl_t *bandwidths=NULL;
  1725. if (compute_weighted_bandwidths(sl, rule, &bandwidths) < 0)
  1726. return NULL;
  1727. scale_array_elements_to_u64(bandwidths, smartlist_len(sl),
  1728. &sl_last_total_weighted_bw);
  1729. {
  1730. int idx = choose_array_element_by_weight(bandwidths,
  1731. smartlist_len(sl));
  1732. tor_free(bandwidths);
  1733. return idx < 0 ? NULL : smartlist_get(sl, idx);
  1734. }
  1735. }
  1736. /** Given a list of routers and a weighting rule as in
  1737. * smartlist_choose_node_by_bandwidth_weights, compute weighted bandwidth
  1738. * values for each node and store them in a freshly allocated
  1739. * *<b>bandwidths_out</b> of the same length as <b>sl</b>, and holding results
  1740. * as doubles. Return 0 on success, -1 on failure. */
  1741. static int
  1742. compute_weighted_bandwidths(const smartlist_t *sl,
  1743. bandwidth_weight_rule_t rule,
  1744. u64_dbl_t **bandwidths_out)
  1745. {
  1746. int64_t weight_scale;
  1747. double Wg = -1, Wm = -1, We = -1, Wd = -1;
  1748. double Wgb = -1, Wmb = -1, Web = -1, Wdb = -1;
  1749. uint64_t weighted_bw = 0;
  1750. u64_dbl_t *bandwidths;
  1751. /* Can't choose exit and guard at same time */
  1752. tor_assert(rule == NO_WEIGHTING ||
  1753. rule == WEIGHT_FOR_EXIT ||
  1754. rule == WEIGHT_FOR_GUARD ||
  1755. rule == WEIGHT_FOR_MID ||
  1756. rule == WEIGHT_FOR_DIR);
  1757. if (smartlist_len(sl) == 0) {
  1758. log_info(LD_CIRC,
  1759. "Empty routerlist passed in to consensus weight node "
  1760. "selection for rule %s",
  1761. bandwidth_weight_rule_to_string(rule));
  1762. return -1;
  1763. }
  1764. weight_scale = networkstatus_get_weight_scale_param(NULL);
  1765. if (rule == WEIGHT_FOR_GUARD) {
  1766. Wg = networkstatus_get_bw_weight(NULL, "Wgg", -1);
  1767. Wm = networkstatus_get_bw_weight(NULL, "Wgm", -1); /* Bridges */
  1768. We = 0;
  1769. Wd = networkstatus_get_bw_weight(NULL, "Wgd", -1);
  1770. Wgb = networkstatus_get_bw_weight(NULL, "Wgb", -1);
  1771. Wmb = networkstatus_get_bw_weight(NULL, "Wmb", -1);
  1772. Web = networkstatus_get_bw_weight(NULL, "Web", -1);
  1773. Wdb = networkstatus_get_bw_weight(NULL, "Wdb", -1);
  1774. } else if (rule == WEIGHT_FOR_MID) {
  1775. Wg = networkstatus_get_bw_weight(NULL, "Wmg", -1);
  1776. Wm = networkstatus_get_bw_weight(NULL, "Wmm", -1);
  1777. We = networkstatus_get_bw_weight(NULL, "Wme", -1);
  1778. Wd = networkstatus_get_bw_weight(NULL, "Wmd", -1);
  1779. Wgb = networkstatus_get_bw_weight(NULL, "Wgb", -1);
  1780. Wmb = networkstatus_get_bw_weight(NULL, "Wmb", -1);
  1781. Web = networkstatus_get_bw_weight(NULL, "Web", -1);
  1782. Wdb = networkstatus_get_bw_weight(NULL, "Wdb", -1);
  1783. } else if (rule == WEIGHT_FOR_EXIT) {
  1784. // Guards CAN be exits if they have weird exit policies
  1785. // They are d then I guess...
  1786. We = networkstatus_get_bw_weight(NULL, "Wee", -1);
  1787. Wm = networkstatus_get_bw_weight(NULL, "Wem", -1); /* Odd exit policies */
  1788. Wd = networkstatus_get_bw_weight(NULL, "Wed", -1);
  1789. Wg = networkstatus_get_bw_weight(NULL, "Weg", -1); /* Odd exit policies */
  1790. Wgb = networkstatus_get_bw_weight(NULL, "Wgb", -1);
  1791. Wmb = networkstatus_get_bw_weight(NULL, "Wmb", -1);
  1792. Web = networkstatus_get_bw_weight(NULL, "Web", -1);
  1793. Wdb = networkstatus_get_bw_weight(NULL, "Wdb", -1);
  1794. } else if (rule == WEIGHT_FOR_DIR) {
  1795. We = networkstatus_get_bw_weight(NULL, "Wbe", -1);
  1796. Wm = networkstatus_get_bw_weight(NULL, "Wbm", -1);
  1797. Wd = networkstatus_get_bw_weight(NULL, "Wbd", -1);
  1798. Wg = networkstatus_get_bw_weight(NULL, "Wbg", -1);
  1799. Wgb = Wmb = Web = Wdb = weight_scale;
  1800. } else if (rule == NO_WEIGHTING) {
  1801. Wg = Wm = We = Wd = weight_scale;
  1802. Wgb = Wmb = Web = Wdb = weight_scale;
  1803. }
  1804. if (Wg < 0 || Wm < 0 || We < 0 || Wd < 0 || Wgb < 0 || Wmb < 0 || Wdb < 0
  1805. || Web < 0) {
  1806. log_debug(LD_CIRC,
  1807. "Got negative bandwidth weights. Defaulting to old selection"
  1808. " algorithm.");
  1809. return -1; // Use old algorithm.
  1810. }
  1811. Wg /= weight_scale;
  1812. Wm /= weight_scale;
  1813. We /= weight_scale;
  1814. Wd /= weight_scale;
  1815. Wgb /= weight_scale;
  1816. Wmb /= weight_scale;
  1817. Web /= weight_scale;
  1818. Wdb /= weight_scale;
  1819. bandwidths = tor_malloc_zero(sizeof(u64_dbl_t)*smartlist_len(sl));
  1820. // Cycle through smartlist and total the bandwidth.
  1821. SMARTLIST_FOREACH_BEGIN(sl, const node_t *, node) {
  1822. int is_exit = 0, is_guard = 0, is_dir = 0, this_bw = 0, is_me = 0;
  1823. double weight = 1;
  1824. is_exit = node->is_exit && ! node->is_bad_exit;
  1825. is_guard = node->is_possible_guard;
  1826. is_dir = node_is_dir(node);
  1827. if (node->rs) {
  1828. if (!node->rs->has_bandwidth) {
  1829. tor_free(bandwidths);
  1830. /* This should never happen, unless all the authorites downgrade
  1831. * to 0.2.0 or rogue routerstatuses get inserted into our consensus. */
  1832. log_warn(LD_BUG,
  1833. "Consensus is not listing bandwidths. Defaulting back to "
  1834. "old router selection algorithm.");
  1835. return -1;
  1836. }
  1837. this_bw = kb_to_bytes(node->rs->bandwidth_kb);
  1838. } else if (node->ri) {
  1839. /* bridge or other descriptor not in our consensus */
  1840. this_bw = bridge_get_advertised_bandwidth_bounded(node->ri);
  1841. } else {
  1842. /* We can't use this one. */
  1843. continue;
  1844. }
  1845. is_me = router_digest_is_me(node->identity);
  1846. if (is_guard && is_exit) {
  1847. weight = (is_dir ? Wdb*Wd : Wd);
  1848. } else if (is_guard) {
  1849. weight = (is_dir ? Wgb*Wg : Wg);
  1850. } else if (is_exit) {
  1851. weight = (is_dir ? Web*We : We);
  1852. } else { // middle
  1853. weight = (is_dir ? Wmb*Wm : Wm);
  1854. }
  1855. /* These should be impossible; but overflows here would be bad, so let's
  1856. * make sure. */
  1857. if (this_bw < 0)
  1858. this_bw = 0;
  1859. if (weight < 0.0)
  1860. weight = 0.0;
  1861. bandwidths[node_sl_idx].dbl = weight*this_bw + 0.5;
  1862. if (is_me)
  1863. sl_last_weighted_bw_of_me = (uint64_t) bandwidths[node_sl_idx].dbl;
  1864. } SMARTLIST_FOREACH_END(node);
  1865. log_debug(LD_CIRC, "Generated weighted bandwidths for rule %s based "
  1866. "on weights "
  1867. "Wg=%f Wm=%f We=%f Wd=%f with total bw "U64_FORMAT,
  1868. bandwidth_weight_rule_to_string(rule),
  1869. Wg, Wm, We, Wd, U64_PRINTF_ARG(weighted_bw));
  1870. *bandwidths_out = bandwidths;
  1871. return 0;
  1872. }
  1873. /** For all nodes in <b>sl</b>, return the fraction of those nodes, weighted
  1874. * by their weighted bandwidths with rule <b>rule</b>, for which we have
  1875. * descriptors. */
  1876. double
  1877. frac_nodes_with_descriptors(const smartlist_t *sl,
  1878. bandwidth_weight_rule_t rule)
  1879. {
  1880. u64_dbl_t *bandwidths = NULL;
  1881. double total, present;
  1882. if (smartlist_len(sl) == 0)
  1883. return 0.0;
  1884. if (compute_weighted_bandwidths(sl, rule, &bandwidths) < 0) {
  1885. int n_with_descs = 0;
  1886. SMARTLIST_FOREACH(sl, const node_t *, node, {
  1887. if (node_has_descriptor(node))
  1888. n_with_descs++;
  1889. });
  1890. return ((double)n_with_descs) / (double)smartlist_len(sl);
  1891. }
  1892. total = present = 0.0;
  1893. SMARTLIST_FOREACH_BEGIN(sl, const node_t *, node) {
  1894. const double bw = bandwidths[node_sl_idx].dbl;
  1895. total += bw;
  1896. if (node_has_descriptor(node))
  1897. present += bw;
  1898. } SMARTLIST_FOREACH_END(node);
  1899. tor_free(bandwidths);
  1900. if (total < 1.0)
  1901. return 0;
  1902. return present / total;
  1903. }
  1904. /** Helper function:
  1905. * choose a random node_t element of smartlist <b>sl</b>, weighted by
  1906. * the advertised bandwidth of each element.
  1907. *
  1908. * If <b>rule</b>==WEIGHT_FOR_EXIT. we're picking an exit node: consider all
  1909. * nodes' bandwidth equally regardless of their Exit status, since there may
  1910. * be some in the list because they exit to obscure ports. If
  1911. * <b>rule</b>==NO_WEIGHTING, we're picking a non-exit node: weight
  1912. * exit-node's bandwidth less depending on the smallness of the fraction of
  1913. * Exit-to-total bandwidth. If <b>rule</b>==WEIGHT_FOR_GUARD, we're picking a
  1914. * guard node: consider all guard's bandwidth equally. Otherwise, weight
  1915. * guards proportionally less.
  1916. */
  1917. static const node_t *
  1918. smartlist_choose_node_by_bandwidth(const smartlist_t *sl,
  1919. bandwidth_weight_rule_t rule)
  1920. {
  1921. unsigned int i;
  1922. u64_dbl_t *bandwidths;
  1923. int is_exit;
  1924. int is_guard;
  1925. int is_fast;
  1926. double total_nonexit_bw = 0, total_exit_bw = 0;
  1927. double total_nonguard_bw = 0, total_guard_bw = 0;
  1928. double exit_weight;
  1929. double guard_weight;
  1930. int n_unknown = 0;
  1931. bitarray_t *fast_bits;
  1932. bitarray_t *exit_bits;
  1933. bitarray_t *guard_bits;
  1934. int me_idx = -1;
  1935. // This function does not support WEIGHT_FOR_DIR
  1936. // or WEIGHT_FOR_MID
  1937. if (rule == WEIGHT_FOR_DIR || rule == WEIGHT_FOR_MID) {
  1938. rule = NO_WEIGHTING;
  1939. }
  1940. /* Can't choose exit and guard at same time */
  1941. tor_assert(rule == NO_WEIGHTING ||
  1942. rule == WEIGHT_FOR_EXIT ||
  1943. rule == WEIGHT_FOR_GUARD);
  1944. if (smartlist_len(sl) == 0) {
  1945. log_info(LD_CIRC,
  1946. "Empty routerlist passed in to old node selection for rule %s",
  1947. bandwidth_weight_rule_to_string(rule));
  1948. return NULL;
  1949. }
  1950. /* First count the total bandwidth weight, and make a list
  1951. * of each value. We use UINT64_MAX to indicate "unknown". */
  1952. bandwidths = tor_malloc_zero(sizeof(u64_dbl_t)*smartlist_len(sl));
  1953. fast_bits = bitarray_init_zero(smartlist_len(sl));
  1954. exit_bits = bitarray_init_zero(smartlist_len(sl));
  1955. guard_bits = bitarray_init_zero(smartlist_len(sl));
  1956. /* Iterate over all the routerinfo_t or routerstatus_t, and */
  1957. SMARTLIST_FOREACH_BEGIN(sl, const node_t *, node) {
  1958. /* first, learn what bandwidth we think i has */
  1959. int is_known = 1;
  1960. uint32_t this_bw = 0;
  1961. i = node_sl_idx;
  1962. if (router_digest_is_me(node->identity))
  1963. me_idx = node_sl_idx;
  1964. is_exit = node->is_exit;
  1965. is_guard = node->is_possible_guard;
  1966. if (node->rs) {
  1967. if (node->rs->has_bandwidth) {
  1968. this_bw = kb_to_bytes(node->rs->bandwidth_kb);
  1969. } else { /* guess */
  1970. is_known = 0;
  1971. }
  1972. } else if (node->ri) {
  1973. /* Must be a bridge if we're willing to use it */
  1974. this_bw = bridge_get_advertised_bandwidth_bounded(node->ri);
  1975. }
  1976. if (is_exit)
  1977. bitarray_set(exit_bits, i);
  1978. if (is_guard)
  1979. bitarray_set(guard_bits, i);
  1980. if (node->is_fast)
  1981. bitarray_set(fast_bits, i);
  1982. if (is_known) {
  1983. bandwidths[i].dbl = this_bw;
  1984. if (is_guard)
  1985. total_guard_bw += this_bw;
  1986. else
  1987. total_nonguard_bw += this_bw;
  1988. if (is_exit)
  1989. total_exit_bw += this_bw;
  1990. else
  1991. total_nonexit_bw += this_bw;
  1992. } else {
  1993. ++n_unknown;
  1994. bandwidths[i].dbl = -1.0;
  1995. }
  1996. } SMARTLIST_FOREACH_END(node);
  1997. #define EPSILON .1
  1998. /* Now, fill in the unknown values. */
  1999. if (n_unknown) {
  2000. int32_t avg_fast, avg_slow;
  2001. if (total_exit_bw+total_nonexit_bw < EPSILON) {
  2002. /* if there's some bandwidth, there's at least one known router,
  2003. * so no worries about div by 0 here */
  2004. int n_known = smartlist_len(sl)-n_unknown;
  2005. avg_fast = avg_slow = (int32_t)
  2006. ((total_exit_bw+total_nonexit_bw)/((uint64_t) n_known));
  2007. } else {
  2008. avg_fast = 40000;
  2009. avg_slow = 20000;
  2010. }
  2011. for (i=0; i<(unsigned)smartlist_len(sl); ++i) {
  2012. if (bandwidths[i].dbl >= 0.0)
  2013. continue;
  2014. is_fast = bitarray_is_set(fast_bits, i);
  2015. is_exit = bitarray_is_set(exit_bits, i);
  2016. is_guard = bitarray_is_set(guard_bits, i);
  2017. bandwidths[i].dbl = is_fast ? avg_fast : avg_slow;
  2018. if (is_exit)
  2019. total_exit_bw += bandwidths[i].dbl;
  2020. else
  2021. total_nonexit_bw += bandwidths[i].dbl;
  2022. if (is_guard)
  2023. total_guard_bw += bandwidths[i].dbl;
  2024. else
  2025. total_nonguard_bw += bandwidths[i].dbl;
  2026. }
  2027. }
  2028. /* If there's no bandwidth at all, pick at random. */
  2029. if (total_exit_bw+total_nonexit_bw < EPSILON) {
  2030. tor_free(bandwidths);
  2031. tor_free(fast_bits);
  2032. tor_free(exit_bits);
  2033. tor_free(guard_bits);
  2034. return smartlist_choose(sl);
  2035. }
  2036. /* Figure out how to weight exits and guards */
  2037. {
  2038. double all_bw = U64_TO_DBL(total_exit_bw+total_nonexit_bw);
  2039. double exit_bw = U64_TO_DBL(total_exit_bw);
  2040. double guard_bw = U64_TO_DBL(total_guard_bw);
  2041. /*
  2042. * For detailed derivation of this formula, see
  2043. * http://archives.seul.org/or/dev/Jul-2007/msg00056.html
  2044. */
  2045. if (rule == WEIGHT_FOR_EXIT || total_exit_bw<EPSILON)
  2046. exit_weight = 1.0;
  2047. else
  2048. exit_weight = 1.0 - all_bw/(3.0*exit_bw);
  2049. if (rule == WEIGHT_FOR_GUARD || total_guard_bw<EPSILON)
  2050. guard_weight = 1.0;
  2051. else
  2052. guard_weight = 1.0 - all_bw/(3.0*guard_bw);
  2053. if (exit_weight <= 0.0)
  2054. exit_weight = 0.0;
  2055. if (guard_weight <= 0.0)
  2056. guard_weight = 0.0;
  2057. sl_last_weighted_bw_of_me = 0;
  2058. for (i=0; i < (unsigned)smartlist_len(sl); i++) {
  2059. tor_assert(bandwidths[i].dbl >= 0.0);
  2060. is_exit = bitarray_is_set(exit_bits, i);
  2061. is_guard = bitarray_is_set(guard_bits, i);
  2062. if (is_exit && is_guard)
  2063. bandwidths[i].dbl *= exit_weight * guard_weight;
  2064. else if (is_guard)
  2065. bandwidths[i].dbl *= guard_weight;
  2066. else if (is_exit)
  2067. bandwidths[i].dbl *= exit_weight;
  2068. if (i == (unsigned) me_idx)
  2069. sl_last_weighted_bw_of_me = (uint64_t) bandwidths[i].dbl;
  2070. }
  2071. }
  2072. #if 0
  2073. log_debug(LD_CIRC, "Total weighted bw = "U64_FORMAT
  2074. ", exit bw = "U64_FORMAT
  2075. ", nonexit bw = "U64_FORMAT", exit weight = %f "
  2076. "(for exit == %d)"
  2077. ", guard bw = "U64_FORMAT
  2078. ", nonguard bw = "U64_FORMAT", guard weight = %f "
  2079. "(for guard == %d)",
  2080. U64_PRINTF_ARG(total_bw),
  2081. U64_PRINTF_ARG(total_exit_bw), U64_PRINTF_ARG(total_nonexit_bw),
  2082. exit_weight, (int)(rule == WEIGHT_FOR_EXIT),
  2083. U64_PRINTF_ARG(total_guard_bw), U64_PRINTF_ARG(total_nonguard_bw),
  2084. guard_weight, (int)(rule == WEIGHT_FOR_GUARD));
  2085. #endif
  2086. scale_array_elements_to_u64(bandwidths, smartlist_len(sl),
  2087. &sl_last_total_weighted_bw);
  2088. {
  2089. int idx = choose_array_element_by_weight(bandwidths,
  2090. smartlist_len(sl));
  2091. tor_free(bandwidths);
  2092. tor_free(fast_bits);
  2093. tor_free(exit_bits);
  2094. tor_free(guard_bits);
  2095. return idx < 0 ? NULL : smartlist_get(sl, idx);
  2096. }
  2097. }
  2098. /** Choose a random element of status list <b>sl</b>, weighted by
  2099. * the advertised bandwidth of each node */
  2100. const node_t *
  2101. node_sl_choose_by_bandwidth(const smartlist_t *sl,
  2102. bandwidth_weight_rule_t rule)
  2103. { /*XXXX MOVE */
  2104. const node_t *ret;
  2105. if ((ret = smartlist_choose_node_by_bandwidth_weights(sl, rule))) {
  2106. return ret;
  2107. } else {
  2108. return smartlist_choose_node_by_bandwidth(sl, rule);
  2109. }
  2110. }
  2111. /** Return a random running node from the nodelist. Never
  2112. * pick a node that is in
  2113. * <b>excludedsmartlist</b>, or which matches <b>excludedset</b>,
  2114. * even if they are the only nodes available.
  2115. * If <b>CRN_NEED_UPTIME</b> is set in flags and any router has more than
  2116. * a minimum uptime, return one of those.
  2117. * If <b>CRN_NEED_CAPACITY</b> is set in flags, weight your choice by the
  2118. * advertised capacity of each router.
  2119. * If <b>CRN_ALLOW_INVALID</b> is not set in flags, consider only Valid
  2120. * routers.
  2121. * If <b>CRN_NEED_GUARD</b> is set in flags, consider only Guard routers.
  2122. * If <b>CRN_WEIGHT_AS_EXIT</b> is set in flags, we weight bandwidths as if
  2123. * picking an exit node, otherwise we weight bandwidths for picking a relay
  2124. * node (that is, possibly discounting exit nodes).
  2125. * If <b>CRN_NEED_DESC</b> is set in flags, we only consider nodes that
  2126. * have a routerinfo or microdescriptor -- that is, enough info to be
  2127. * used to build a circuit.
  2128. */
  2129. const node_t *
  2130. router_choose_random_node(smartlist_t *excludedsmartlist,
  2131. routerset_t *excludedset,
  2132. router_crn_flags_t flags)
  2133. { /* XXXX MOVE */
  2134. const int need_uptime = (flags & CRN_NEED_UPTIME) != 0;
  2135. const int need_capacity = (flags & CRN_NEED_CAPACITY) != 0;
  2136. const int need_guard = (flags & CRN_NEED_GUARD) != 0;
  2137. const int allow_invalid = (flags & CRN_ALLOW_INVALID) != 0;
  2138. const int weight_for_exit = (flags & CRN_WEIGHT_AS_EXIT) != 0;
  2139. const int need_desc = (flags & CRN_NEED_DESC) != 0;
  2140. smartlist_t *sl=smartlist_new(),
  2141. *excludednodes=smartlist_new();
  2142. const node_t *choice = NULL;
  2143. const routerinfo_t *r;
  2144. bandwidth_weight_rule_t rule;
  2145. tor_assert(!(weight_for_exit && need_guard));
  2146. rule = weight_for_exit ? WEIGHT_FOR_EXIT :
  2147. (need_guard ? WEIGHT_FOR_GUARD : WEIGHT_FOR_MID);
  2148. /* Exclude relays that allow single hop exit circuits, if the user
  2149. * wants to (such relays might be risky) */
  2150. if (get_options()->ExcludeSingleHopRelays) {
  2151. SMARTLIST_FOREACH(nodelist_get_list(), node_t *, node,
  2152. if (node_allows_single_hop_exits(node)) {
  2153. smartlist_add(excludednodes, node);
  2154. });
  2155. }
  2156. if ((r = routerlist_find_my_routerinfo()))
  2157. routerlist_add_node_and_family(excludednodes, r);
  2158. router_add_running_nodes_to_smartlist(sl, allow_invalid,
  2159. need_uptime, need_capacity,
  2160. need_guard, need_desc);
  2161. smartlist_subtract(sl,excludednodes);
  2162. if (excludedsmartlist)
  2163. smartlist_subtract(sl,excludedsmartlist);
  2164. if (excludedset)
  2165. routerset_subtract_nodes(sl,excludedset);
  2166. // Always weight by bandwidth
  2167. choice = node_sl_choose_by_bandwidth(sl, rule);
  2168. smartlist_free(sl);
  2169. if (!choice && (need_uptime || need_capacity || need_guard)) {
  2170. /* try once more -- recurse but with fewer restrictions. */
  2171. log_info(LD_CIRC,
  2172. "We couldn't find any live%s%s%s routers; falling back "
  2173. "to list of all routers.",
  2174. need_capacity?", fast":"",
  2175. need_uptime?", stable":"",
  2176. need_guard?", guard":"");
  2177. flags &= ~ (CRN_NEED_UPTIME|CRN_NEED_CAPACITY|CRN_NEED_GUARD);
  2178. choice = router_choose_random_node(
  2179. excludedsmartlist, excludedset, flags);
  2180. }
  2181. smartlist_free(excludednodes);
  2182. if (!choice) {
  2183. log_warn(LD_CIRC,
  2184. "No available nodes when trying to choose node. Failing.");
  2185. }
  2186. return choice;
  2187. }
  2188. /** Helper: given an extended nickname in <b>hexdigest</b> try to decode it.
  2189. * Return 0 on success, -1 on failure. Store the result into the
  2190. * DIGEST_LEN-byte buffer at <b>digest_out</b>, the single character at
  2191. * <b>nickname_qualifier_char_out</b>, and the MAXNICKNAME_LEN+1-byte buffer
  2192. * at <b>nickname_out</b>.
  2193. *
  2194. * The recognized format is:
  2195. * HexName = Dollar? HexDigest NamePart?
  2196. * Dollar = '?'
  2197. * HexDigest = HexChar*20
  2198. * HexChar = 'a'..'f' | 'A'..'F' | '0'..'9'
  2199. * NamePart = QualChar Name
  2200. * QualChar = '=' | '~'
  2201. * Name = NameChar*(1..MAX_NICKNAME_LEN)
  2202. * NameChar = Any ASCII alphanumeric character
  2203. */
  2204. int
  2205. hex_digest_nickname_decode(const char *hexdigest,
  2206. char *digest_out,
  2207. char *nickname_qualifier_char_out,
  2208. char *nickname_out)
  2209. {
  2210. size_t len;
  2211. tor_assert(hexdigest);
  2212. if (hexdigest[0] == '$')
  2213. ++hexdigest;
  2214. len = strlen(hexdigest);
  2215. if (len < HEX_DIGEST_LEN) {
  2216. return -1;
  2217. } else if (len > HEX_DIGEST_LEN && (hexdigest[HEX_DIGEST_LEN] == '=' ||
  2218. hexdigest[HEX_DIGEST_LEN] == '~') &&
  2219. len <= HEX_DIGEST_LEN+1+MAX_NICKNAME_LEN) {
  2220. *nickname_qualifier_char_out = hexdigest[HEX_DIGEST_LEN];
  2221. strlcpy(nickname_out, hexdigest+HEX_DIGEST_LEN+1 , MAX_NICKNAME_LEN+1);
  2222. } else if (len == HEX_DIGEST_LEN) {
  2223. ;
  2224. } else {
  2225. return -1;
  2226. }
  2227. if (base16_decode(digest_out, DIGEST_LEN, hexdigest, HEX_DIGEST_LEN)<0)
  2228. return -1;
  2229. return 0;
  2230. }
  2231. /** Helper: Return true iff the <b>identity_digest</b> and <b>nickname</b>
  2232. * combination of a router, encoded in hexadecimal, matches <b>hexdigest</b>
  2233. * (which is optionally prefixed with a single dollar sign). Return false if
  2234. * <b>hexdigest</b> is malformed, or it doesn't match. */
  2235. int
  2236. hex_digest_nickname_matches(const char *hexdigest, const char *identity_digest,
  2237. const char *nickname, int is_named)
  2238. {
  2239. char digest[DIGEST_LEN];
  2240. char nn_char='\0';
  2241. char nn_buf[MAX_NICKNAME_LEN+1];
  2242. if (hex_digest_nickname_decode(hexdigest, digest, &nn_char, nn_buf) == -1)
  2243. return 0;
  2244. if (nn_char == '=' || nn_char == '~') {
  2245. if (!nickname)
  2246. return 0;
  2247. if (strcasecmp(nn_buf, nickname))
  2248. return 0;
  2249. if (nn_char == '=' && !is_named)
  2250. return 0;
  2251. }
  2252. return tor_memeq(digest, identity_digest, DIGEST_LEN);
  2253. }
  2254. /** Return true iff <b>router</b> is listed as named in the current
  2255. * consensus. */
  2256. int
  2257. router_is_named(const routerinfo_t *router)
  2258. {
  2259. const char *digest =
  2260. networkstatus_get_router_digest_by_nickname(router->nickname);
  2261. return (digest &&
  2262. tor_memeq(digest, router->cache_info.identity_digest, DIGEST_LEN));
  2263. }
  2264. /** Return true iff <b>digest</b> is the digest of the identity key of a
  2265. * trusted directory matching at least one bit of <b>type</b>. If <b>type</b>
  2266. * is zero, any authority is okay. */
  2267. int
  2268. router_digest_is_trusted_dir_type(const char *digest, dirinfo_type_t type)
  2269. {
  2270. if (!trusted_dir_servers)
  2271. return 0;
  2272. if (authdir_mode(get_options()) && router_digest_is_me(digest))
  2273. return 1;
  2274. SMARTLIST_FOREACH(trusted_dir_servers, dir_server_t *, ent,
  2275. if (tor_memeq(digest, ent->digest, DIGEST_LEN)) {
  2276. return (!type) || ((type & ent->type) != 0);
  2277. });
  2278. return 0;
  2279. }
  2280. /** Return true iff <b>addr</b> is the address of one of our trusted
  2281. * directory authorities. */
  2282. int
  2283. router_addr_is_trusted_dir(uint32_t addr)
  2284. {
  2285. if (!trusted_dir_servers)
  2286. return 0;
  2287. SMARTLIST_FOREACH(trusted_dir_servers, dir_server_t *, ent,
  2288. if (ent->addr == addr)
  2289. return 1;
  2290. );
  2291. return 0;
  2292. }
  2293. /** If hexdigest is correctly formed, base16_decode it into
  2294. * digest, which must have DIGEST_LEN space in it.
  2295. * Return 0 on success, -1 on failure.
  2296. */
  2297. int
  2298. hexdigest_to_digest(const char *hexdigest, char *digest)
  2299. {
  2300. if (hexdigest[0]=='$')
  2301. ++hexdigest;
  2302. if (strlen(hexdigest) < HEX_DIGEST_LEN ||
  2303. base16_decode(digest,DIGEST_LEN,hexdigest,HEX_DIGEST_LEN) < 0)
  2304. return -1;
  2305. return 0;
  2306. }
  2307. /** As router_get_by_id_digest,but return a pointer that you're allowed to
  2308. * modify */
  2309. routerinfo_t *
  2310. router_get_mutable_by_digest(const char *digest)
  2311. {
  2312. tor_assert(digest);
  2313. if (!routerlist) return NULL;
  2314. // routerlist_assert_ok(routerlist);
  2315. return rimap_get(routerlist->identity_map, digest);
  2316. }
  2317. /** Return the router in our routerlist whose 20-byte key digest
  2318. * is <b>digest</b>. Return NULL if no such router is known. */
  2319. const routerinfo_t *
  2320. router_get_by_id_digest(const char *digest)
  2321. {
  2322. return router_get_mutable_by_digest(digest);
  2323. }
  2324. /** Return the router in our routerlist whose 20-byte descriptor
  2325. * is <b>digest</b>. Return NULL if no such router is known. */
  2326. signed_descriptor_t *
  2327. router_get_by_descriptor_digest(const char *digest)
  2328. {
  2329. tor_assert(digest);
  2330. if (!routerlist) return NULL;
  2331. return sdmap_get(routerlist->desc_digest_map, digest);
  2332. }
  2333. /** Return the signed descriptor for the router in our routerlist whose
  2334. * 20-byte extra-info digest is <b>digest</b>. Return NULL if no such router
  2335. * is known. */
  2336. signed_descriptor_t *
  2337. router_get_by_extrainfo_digest(const char *digest)
  2338. {
  2339. tor_assert(digest);
  2340. if (!routerlist) return NULL;
  2341. return sdmap_get(routerlist->desc_by_eid_map, digest);
  2342. }
  2343. /** Return the signed descriptor for the extrainfo_t in our routerlist whose
  2344. * extra-info-digest is <b>digest</b>. Return NULL if no such extra-info
  2345. * document is known. */
  2346. signed_descriptor_t *
  2347. extrainfo_get_by_descriptor_digest(const char *digest)
  2348. {
  2349. extrainfo_t *ei;
  2350. tor_assert(digest);
  2351. if (!routerlist) return NULL;
  2352. ei = eimap_get(routerlist->extra_info_map, digest);
  2353. return ei ? &ei->cache_info : NULL;
  2354. }
  2355. /** Return a pointer to the signed textual representation of a descriptor.
  2356. * The returned string is not guaranteed to be NUL-terminated: the string's
  2357. * length will be in desc-\>signed_descriptor_len.
  2358. *
  2359. * If <b>with_annotations</b> is set, the returned string will include
  2360. * the annotations
  2361. * (if any) preceding the descriptor. This will increase the length of the
  2362. * string by desc-\>annotations_len.
  2363. *
  2364. * The caller must not free the string returned.
  2365. */
  2366. static const char *
  2367. signed_descriptor_get_body_impl(const signed_descriptor_t *desc,
  2368. int with_annotations)
  2369. {
  2370. const char *r = NULL;
  2371. size_t len = desc->signed_descriptor_len;
  2372. off_t offset = desc->saved_offset;
  2373. if (with_annotations)
  2374. len += desc->annotations_len;
  2375. else
  2376. offset += desc->annotations_len;
  2377. tor_assert(len > 32);
  2378. if (desc->saved_location == SAVED_IN_CACHE && routerlist) {
  2379. desc_store_t *store = desc_get_store(router_get_routerlist(), desc);
  2380. if (store && store->mmap) {
  2381. tor_assert(desc->saved_offset + len <= store->mmap->size);
  2382. r = store->mmap->data + offset;
  2383. } else if (store) {
  2384. log_err(LD_DIR, "We couldn't read a descriptor that is supposedly "
  2385. "mmaped in our cache. Is another process running in our data "
  2386. "directory? Exiting.");
  2387. exit(1);
  2388. }
  2389. }
  2390. if (!r) /* no mmap, or not in cache. */
  2391. r = desc->signed_descriptor_body +
  2392. (with_annotations ? 0 : desc->annotations_len);
  2393. tor_assert(r);
  2394. if (!with_annotations) {
  2395. if (fast_memcmp("router ", r, 7) && fast_memcmp("extra-info ", r, 11)) {
  2396. char *cp = tor_strndup(r, 64);
  2397. log_err(LD_DIR, "descriptor at %p begins with unexpected string %s. "
  2398. "Is another process running in our data directory? Exiting.",
  2399. desc, escaped(cp));
  2400. exit(1);
  2401. }
  2402. }
  2403. return r;
  2404. }
  2405. /** Return a pointer to the signed textual representation of a descriptor.
  2406. * The returned string is not guaranteed to be NUL-terminated: the string's
  2407. * length will be in desc-\>signed_descriptor_len.
  2408. *
  2409. * The caller must not free the string returned.
  2410. */
  2411. const char *
  2412. signed_descriptor_get_body(const signed_descriptor_t *desc)
  2413. {
  2414. return signed_descriptor_get_body_impl(desc, 0);
  2415. }
  2416. /** As signed_descriptor_get_body(), but points to the beginning of the
  2417. * annotations section rather than the beginning of the descriptor. */
  2418. const char *
  2419. signed_descriptor_get_annotations(const signed_descriptor_t *desc)
  2420. {
  2421. return signed_descriptor_get_body_impl(desc, 1);
  2422. }
  2423. /** Return the current list of all known routers. */
  2424. routerlist_t *
  2425. router_get_routerlist(void)
  2426. {
  2427. if (PREDICT_UNLIKELY(!routerlist)) {
  2428. routerlist = tor_malloc_zero(sizeof(routerlist_t));
  2429. routerlist->routers = smartlist_new();
  2430. routerlist->old_routers = smartlist_new();
  2431. routerlist->identity_map = rimap_new();
  2432. routerlist->desc_digest_map = sdmap_new();
  2433. routerlist->desc_by_eid_map = sdmap_new();
  2434. routerlist->extra_info_map = eimap_new();
  2435. routerlist->desc_store.fname_base = "cached-descriptors";
  2436. routerlist->extrainfo_store.fname_base = "cached-extrainfo";
  2437. routerlist->desc_store.type = ROUTER_STORE;
  2438. routerlist->extrainfo_store.type = EXTRAINFO_STORE;
  2439. routerlist->desc_store.description = "router descriptors";
  2440. routerlist->extrainfo_store.description = "extra-info documents";
  2441. }
  2442. return routerlist;
  2443. }
  2444. /** Free all storage held by <b>router</b>. */
  2445. void
  2446. routerinfo_free(routerinfo_t *router)
  2447. {
  2448. if (!router)
  2449. return;
  2450. tor_free(router->cache_info.signed_descriptor_body);
  2451. tor_free(router->address);
  2452. tor_free(router->nickname);
  2453. tor_free(router->platform);
  2454. tor_free(router->contact_info);
  2455. if (router->onion_pkey)
  2456. crypto_pk_free(router->onion_pkey);
  2457. tor_free(router->onion_curve25519_pkey);
  2458. if (router->identity_pkey)
  2459. crypto_pk_free(router->identity_pkey);
  2460. if (router->declared_family) {
  2461. SMARTLIST_FOREACH(router->declared_family, char *, s, tor_free(s));
  2462. smartlist_free(router->declared_family);
  2463. }
  2464. addr_policy_list_free(router->exit_policy);
  2465. short_policy_free(router->ipv6_exit_policy);
  2466. memset(router, 77, sizeof(routerinfo_t));
  2467. tor_free(router);
  2468. }
  2469. /** Release all storage held by <b>extrainfo</b> */
  2470. void
  2471. extrainfo_free(extrainfo_t *extrainfo)
  2472. {
  2473. if (!extrainfo)
  2474. return;
  2475. tor_free(extrainfo->cache_info.signed_descriptor_body);
  2476. tor_free(extrainfo->pending_sig);
  2477. memset(extrainfo, 88, sizeof(extrainfo_t)); /* debug bad memory usage */
  2478. tor_free(extrainfo);
  2479. }
  2480. /** Release storage held by <b>sd</b>. */
  2481. static void
  2482. signed_descriptor_free(signed_descriptor_t *sd)
  2483. {
  2484. if (!sd)
  2485. return;
  2486. tor_free(sd->signed_descriptor_body);
  2487. memset(sd, 99, sizeof(signed_descriptor_t)); /* Debug bad mem usage */
  2488. tor_free(sd);
  2489. }
  2490. /** Extract a signed_descriptor_t from a general routerinfo, and free the
  2491. * routerinfo.
  2492. */
  2493. static signed_descriptor_t *
  2494. signed_descriptor_from_routerinfo(routerinfo_t *ri)
  2495. {
  2496. signed_descriptor_t *sd;
  2497. tor_assert(ri->purpose == ROUTER_PURPOSE_GENERAL);
  2498. sd = tor_malloc_zero(sizeof(signed_descriptor_t));
  2499. memcpy(sd, &(ri->cache_info), sizeof(signed_descriptor_t));
  2500. sd->routerlist_index = -1;
  2501. ri->cache_info.signed_descriptor_body = NULL;
  2502. routerinfo_free(ri);
  2503. return sd;
  2504. }
  2505. /** Helper: free the storage held by the extrainfo_t in <b>e</b>. */
  2506. static void
  2507. extrainfo_free_(void *e)
  2508. {
  2509. extrainfo_free(e);
  2510. }
  2511. /** Free all storage held by a routerlist <b>rl</b>. */
  2512. void
  2513. routerlist_free(routerlist_t *rl)
  2514. {
  2515. if (!rl)
  2516. return;
  2517. rimap_free(rl->identity_map, NULL);
  2518. sdmap_free(rl->desc_digest_map, NULL);
  2519. sdmap_free(rl->desc_by_eid_map, NULL);
  2520. eimap_free(rl->extra_info_map, extrainfo_free_);
  2521. SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r,
  2522. routerinfo_free(r));
  2523. SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd,
  2524. signed_descriptor_free(sd));
  2525. smartlist_free(rl->routers);
  2526. smartlist_free(rl->old_routers);
  2527. if (routerlist->desc_store.mmap)
  2528. tor_munmap_file(routerlist->desc_store.mmap);
  2529. if (routerlist->extrainfo_store.mmap)
  2530. tor_munmap_file(routerlist->extrainfo_store.mmap);
  2531. tor_free(rl);
  2532. router_dir_info_changed();
  2533. }
  2534. /** Log information about how much memory is being used for routerlist,
  2535. * at log level <b>severity</b>. */
  2536. void
  2537. dump_routerlist_mem_usage(int severity)
  2538. {
  2539. uint64_t livedescs = 0;
  2540. uint64_t olddescs = 0;
  2541. if (!routerlist)
  2542. return;
  2543. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, r,
  2544. livedescs += r->cache_info.signed_descriptor_len);
  2545. SMARTLIST_FOREACH(routerlist->old_routers, signed_descriptor_t *, sd,
  2546. olddescs += sd->signed_descriptor_len);
  2547. tor_log(severity, LD_DIR,
  2548. "In %d live descriptors: "U64_FORMAT" bytes. "
  2549. "In %d old descriptors: "U64_FORMAT" bytes.",
  2550. smartlist_len(routerlist->routers), U64_PRINTF_ARG(livedescs),
  2551. smartlist_len(routerlist->old_routers), U64_PRINTF_ARG(olddescs));
  2552. }
  2553. /** Debugging helper: If <b>idx</b> is nonnegative, assert that <b>ri</b> is
  2554. * in <b>sl</b> at position <b>idx</b>. Otherwise, search <b>sl</b> for
  2555. * <b>ri</b>. Return the index of <b>ri</b> in <b>sl</b>, or -1 if <b>ri</b>
  2556. * is not in <b>sl</b>. */
  2557. static INLINE int
  2558. routerlist_find_elt_(smartlist_t *sl, void *ri, int idx)
  2559. {
  2560. if (idx < 0) {
  2561. idx = -1;
  2562. SMARTLIST_FOREACH(sl, routerinfo_t *, r,
  2563. if (r == ri) {
  2564. idx = r_sl_idx;
  2565. break;
  2566. });
  2567. } else {
  2568. tor_assert(idx < smartlist_len(sl));
  2569. tor_assert(smartlist_get(sl, idx) == ri);
  2570. };
  2571. return idx;
  2572. }
  2573. /** Insert an item <b>ri</b> into the routerlist <b>rl</b>, updating indices
  2574. * as needed. There must be no previous member of <b>rl</b> with the same
  2575. * identity digest as <b>ri</b>: If there is, call routerlist_replace
  2576. * instead.
  2577. */
  2578. static void
  2579. routerlist_insert(routerlist_t *rl, routerinfo_t *ri)
  2580. {
  2581. routerinfo_t *ri_old;
  2582. signed_descriptor_t *sd_old;
  2583. {
  2584. const routerinfo_t *ri_generated = router_get_my_routerinfo();
  2585. tor_assert(ri_generated != ri);
  2586. }
  2587. tor_assert(ri->cache_info.routerlist_index == -1);
  2588. ri_old = rimap_set(rl->identity_map, ri->cache_info.identity_digest, ri);
  2589. tor_assert(!ri_old);
  2590. sd_old = sdmap_set(rl->desc_digest_map,
  2591. ri->cache_info.signed_descriptor_digest,
  2592. &(ri->cache_info));
  2593. if (sd_old) {
  2594. int idx = sd_old->routerlist_index;
  2595. sd_old->routerlist_index = -1;
  2596. smartlist_del(rl->old_routers, idx);
  2597. if (idx < smartlist_len(rl->old_routers)) {
  2598. signed_descriptor_t *d = smartlist_get(rl->old_routers, idx);
  2599. d->routerlist_index = idx;
  2600. }
  2601. rl->desc_store.bytes_dropped += sd_old->signed_descriptor_len;
  2602. sdmap_remove(rl->desc_by_eid_map, sd_old->extra_info_digest);
  2603. signed_descriptor_free(sd_old);
  2604. }
  2605. if (!tor_digest_is_zero(ri->cache_info.extra_info_digest))
  2606. sdmap_set(rl->desc_by_eid_map, ri->cache_info.extra_info_digest,
  2607. &ri->cache_info);
  2608. smartlist_add(rl->routers, ri);
  2609. ri->cache_info.routerlist_index = smartlist_len(rl->routers) - 1;
  2610. nodelist_set_routerinfo(ri, NULL);
  2611. router_dir_info_changed();
  2612. #ifdef DEBUG_ROUTERLIST
  2613. routerlist_assert_ok(rl);
  2614. #endif
  2615. }
  2616. /** Adds the extrainfo_t <b>ei</b> to the routerlist <b>rl</b>, if there is a
  2617. * corresponding router in rl-\>routers or rl-\>old_routers. Return true iff
  2618. * we actually inserted <b>ei</b>. Free <b>ei</b> if it isn't inserted. */
  2619. static int
  2620. extrainfo_insert(routerlist_t *rl, extrainfo_t *ei)
  2621. {
  2622. int r = 0;
  2623. routerinfo_t *ri = rimap_get(rl->identity_map,
  2624. ei->cache_info.identity_digest);
  2625. signed_descriptor_t *sd =
  2626. sdmap_get(rl->desc_by_eid_map, ei->cache_info.signed_descriptor_digest);
  2627. extrainfo_t *ei_tmp;
  2628. {
  2629. extrainfo_t *ei_generated = router_get_my_extrainfo();
  2630. tor_assert(ei_generated != ei);
  2631. }
  2632. if (!ri) {
  2633. /* This router is unknown; we can't even verify the signature. Give up.*/
  2634. goto done;
  2635. }
  2636. if (routerinfo_incompatible_with_extrainfo(ri, ei, sd, NULL)) {
  2637. goto done;
  2638. }
  2639. /* Okay, if we make it here, we definitely have a router corresponding to
  2640. * this extrainfo. */
  2641. ei_tmp = eimap_set(rl->extra_info_map,
  2642. ei->cache_info.signed_descriptor_digest,
  2643. ei);
  2644. r = 1;
  2645. if (ei_tmp) {
  2646. rl->extrainfo_store.bytes_dropped +=
  2647. ei_tmp->cache_info.signed_descriptor_len;
  2648. extrainfo_free(ei_tmp);
  2649. }
  2650. done:
  2651. if (r == 0)
  2652. extrainfo_free(ei);
  2653. #ifdef DEBUG_ROUTERLIST
  2654. routerlist_assert_ok(rl);
  2655. #endif
  2656. return r;
  2657. }
  2658. #define should_cache_old_descriptors() \
  2659. directory_caches_dir_info(get_options())
  2660. /** If we're a directory cache and routerlist <b>rl</b> doesn't have
  2661. * a copy of router <b>ri</b> yet, add it to the list of old (not
  2662. * recommended but still served) descriptors. Else free it. */
  2663. static void
  2664. routerlist_insert_old(routerlist_t *rl, routerinfo_t *ri)
  2665. {
  2666. {
  2667. const routerinfo_t *ri_generated = router_get_my_routerinfo();
  2668. tor_assert(ri_generated != ri);
  2669. }
  2670. tor_assert(ri->cache_info.routerlist_index == -1);
  2671. if (should_cache_old_descriptors() &&
  2672. ri->purpose == ROUTER_PURPOSE_GENERAL &&
  2673. !sdmap_get(rl->desc_digest_map,
  2674. ri->cache_info.signed_descriptor_digest)) {
  2675. signed_descriptor_t *sd = signed_descriptor_from_routerinfo(ri);
  2676. sdmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
  2677. smartlist_add(rl->old_routers, sd);
  2678. sd->routerlist_index = smartlist_len(rl->old_routers)-1;
  2679. if (!tor_digest_is_zero(sd->extra_info_digest))
  2680. sdmap_set(rl->desc_by_eid_map, sd->extra_info_digest, sd);
  2681. } else {
  2682. routerinfo_free(ri);
  2683. }
  2684. #ifdef DEBUG_ROUTERLIST
  2685. routerlist_assert_ok(rl);
  2686. #endif
  2687. }
  2688. /** Remove an item <b>ri</b> from the routerlist <b>rl</b>, updating indices
  2689. * as needed. If <b>idx</b> is nonnegative and smartlist_get(rl-&gt;routers,
  2690. * idx) == ri, we don't need to do a linear search over the list to decide
  2691. * which to remove. We fill the gap in rl-&gt;routers with a later element in
  2692. * the list, if any exists. <b>ri</b> is freed.
  2693. *
  2694. * If <b>make_old</b> is true, instead of deleting the router, we try adding
  2695. * it to rl-&gt;old_routers. */
  2696. void
  2697. routerlist_remove(routerlist_t *rl, routerinfo_t *ri, int make_old, time_t now)
  2698. {
  2699. routerinfo_t *ri_tmp;
  2700. extrainfo_t *ei_tmp;
  2701. int idx = ri->cache_info.routerlist_index;
  2702. tor_assert(0 <= idx && idx < smartlist_len(rl->routers));
  2703. tor_assert(smartlist_get(rl->routers, idx) == ri);
  2704. nodelist_remove_routerinfo(ri);
  2705. /* make sure the rephist module knows that it's not running */
  2706. rep_hist_note_router_unreachable(ri->cache_info.identity_digest, now);
  2707. ri->cache_info.routerlist_index = -1;
  2708. smartlist_del(rl->routers, idx);
  2709. if (idx < smartlist_len(rl->routers)) {
  2710. routerinfo_t *r = smartlist_get(rl->routers, idx);
  2711. r->cache_info.routerlist_index = idx;
  2712. }
  2713. ri_tmp = rimap_remove(rl->identity_map, ri->cache_info.identity_digest);
  2714. router_dir_info_changed();
  2715. tor_assert(ri_tmp == ri);
  2716. if (make_old && should_cache_old_descriptors() &&
  2717. ri->purpose == ROUTER_PURPOSE_GENERAL) {
  2718. signed_descriptor_t *sd;
  2719. sd = signed_descriptor_from_routerinfo(ri);
  2720. smartlist_add(rl->old_routers, sd);
  2721. sd->routerlist_index = smartlist_len(rl->old_routers)-1;
  2722. sdmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
  2723. if (!tor_digest_is_zero(sd->extra_info_digest))
  2724. sdmap_set(rl->desc_by_eid_map, sd->extra_info_digest, sd);
  2725. } else {
  2726. signed_descriptor_t *sd_tmp;
  2727. sd_tmp = sdmap_remove(rl->desc_digest_map,
  2728. ri->cache_info.signed_descriptor_digest);
  2729. tor_assert(sd_tmp == &(ri->cache_info));
  2730. rl->desc_store.bytes_dropped += ri->cache_info.signed_descriptor_len;
  2731. ei_tmp = eimap_remove(rl->extra_info_map,
  2732. ri->cache_info.extra_info_digest);
  2733. if (ei_tmp) {
  2734. rl->extrainfo_store.bytes_dropped +=
  2735. ei_tmp->cache_info.signed_descriptor_len;
  2736. extrainfo_free(ei_tmp);
  2737. }
  2738. if (!tor_digest_is_zero(ri->cache_info.extra_info_digest))
  2739. sdmap_remove(rl->desc_by_eid_map, ri->cache_info.extra_info_digest);
  2740. routerinfo_free(ri);
  2741. }
  2742. #ifdef DEBUG_ROUTERLIST
  2743. routerlist_assert_ok(rl);
  2744. #endif
  2745. }
  2746. /** Remove a signed_descriptor_t <b>sd</b> from <b>rl</b>-\>old_routers, and
  2747. * adjust <b>rl</b> as appropriate. <b>idx</b> is -1, or the index of
  2748. * <b>sd</b>. */
  2749. static void
  2750. routerlist_remove_old(routerlist_t *rl, signed_descriptor_t *sd, int idx)
  2751. {
  2752. signed_descriptor_t *sd_tmp;
  2753. extrainfo_t *ei_tmp;
  2754. desc_store_t *store;
  2755. if (idx == -1) {
  2756. idx = sd->routerlist_index;
  2757. }
  2758. tor_assert(0 <= idx && idx < smartlist_len(rl->old_routers));
  2759. /* XXXX edmanm's bridge relay triggered the following assert while
  2760. * running 0.2.0.12-alpha. If anybody triggers this again, see if we
  2761. * can get a backtrace. */
  2762. tor_assert(smartlist_get(rl->old_routers, idx) == sd);
  2763. tor_assert(idx == sd->routerlist_index);
  2764. sd->routerlist_index = -1;
  2765. smartlist_del(rl->old_routers, idx);
  2766. if (idx < smartlist_len(rl->old_routers)) {
  2767. signed_descriptor_t *d = smartlist_get(rl->old_routers, idx);
  2768. d->routerlist_index = idx;
  2769. }
  2770. sd_tmp = sdmap_remove(rl->desc_digest_map,
  2771. sd->signed_descriptor_digest);
  2772. tor_assert(sd_tmp == sd);
  2773. store = desc_get_store(rl, sd);
  2774. if (store)
  2775. store->bytes_dropped += sd->signed_descriptor_len;
  2776. ei_tmp = eimap_remove(rl->extra_info_map,
  2777. sd->extra_info_digest);
  2778. if (ei_tmp) {
  2779. rl->extrainfo_store.bytes_dropped +=
  2780. ei_tmp->cache_info.signed_descriptor_len;
  2781. extrainfo_free(ei_tmp);
  2782. }
  2783. if (!tor_digest_is_zero(sd->extra_info_digest))
  2784. sdmap_remove(rl->desc_by_eid_map, sd->extra_info_digest);
  2785. signed_descriptor_free(sd);
  2786. #ifdef DEBUG_ROUTERLIST
  2787. routerlist_assert_ok(rl);
  2788. #endif
  2789. }
  2790. /** Remove <b>ri_old</b> from the routerlist <b>rl</b>, and replace it with
  2791. * <b>ri_new</b>, updating all index info. If <b>idx</b> is nonnegative and
  2792. * smartlist_get(rl-&gt;routers, idx) == ri, we don't need to do a linear
  2793. * search over the list to decide which to remove. We put ri_new in the same
  2794. * index as ri_old, if possible. ri is freed as appropriate.
  2795. *
  2796. * If should_cache_descriptors() is true, instead of deleting the router,
  2797. * we add it to rl-&gt;old_routers. */
  2798. static void
  2799. routerlist_replace(routerlist_t *rl, routerinfo_t *ri_old,
  2800. routerinfo_t *ri_new)
  2801. {
  2802. int idx;
  2803. int same_descriptors;
  2804. routerinfo_t *ri_tmp;
  2805. extrainfo_t *ei_tmp;
  2806. {
  2807. const routerinfo_t *ri_generated = router_get_my_routerinfo();
  2808. tor_assert(ri_generated != ri_new);
  2809. }
  2810. tor_assert(ri_old != ri_new);
  2811. tor_assert(ri_new->cache_info.routerlist_index == -1);
  2812. idx = ri_old->cache_info.routerlist_index;
  2813. tor_assert(0 <= idx && idx < smartlist_len(rl->routers));
  2814. tor_assert(smartlist_get(rl->routers, idx) == ri_old);
  2815. {
  2816. routerinfo_t *ri_old_tmp=NULL;
  2817. nodelist_set_routerinfo(ri_new, &ri_old_tmp);
  2818. tor_assert(ri_old == ri_old_tmp);
  2819. }
  2820. router_dir_info_changed();
  2821. if (idx >= 0) {
  2822. smartlist_set(rl->routers, idx, ri_new);
  2823. ri_old->cache_info.routerlist_index = -1;
  2824. ri_new->cache_info.routerlist_index = idx;
  2825. /* Check that ri_old is not in rl->routers anymore: */
  2826. tor_assert( routerlist_find_elt_(rl->routers, ri_old, -1) == -1 );
  2827. } else {
  2828. log_warn(LD_BUG, "Appending entry from routerlist_replace.");
  2829. routerlist_insert(rl, ri_new);
  2830. return;
  2831. }
  2832. if (tor_memneq(ri_old->cache_info.identity_digest,
  2833. ri_new->cache_info.identity_digest, DIGEST_LEN)) {
  2834. /* digests don't match; digestmap_set won't replace */
  2835. rimap_remove(rl->identity_map, ri_old->cache_info.identity_digest);
  2836. }
  2837. ri_tmp = rimap_set(rl->identity_map,
  2838. ri_new->cache_info.identity_digest, ri_new);
  2839. tor_assert(!ri_tmp || ri_tmp == ri_old);
  2840. sdmap_set(rl->desc_digest_map,
  2841. ri_new->cache_info.signed_descriptor_digest,
  2842. &(ri_new->cache_info));
  2843. if (!tor_digest_is_zero(ri_new->cache_info.extra_info_digest)) {
  2844. sdmap_set(rl->desc_by_eid_map, ri_new->cache_info.extra_info_digest,
  2845. &ri_new->cache_info);
  2846. }
  2847. same_descriptors = tor_memeq(ri_old->cache_info.signed_descriptor_digest,
  2848. ri_new->cache_info.signed_descriptor_digest,
  2849. DIGEST_LEN);
  2850. if (should_cache_old_descriptors() &&
  2851. ri_old->purpose == ROUTER_PURPOSE_GENERAL &&
  2852. !same_descriptors) {
  2853. /* ri_old is going to become a signed_descriptor_t and go into
  2854. * old_routers */
  2855. signed_descriptor_t *sd = signed_descriptor_from_routerinfo(ri_old);
  2856. smartlist_add(rl->old_routers, sd);
  2857. sd->routerlist_index = smartlist_len(rl->old_routers)-1;
  2858. sdmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
  2859. if (!tor_digest_is_zero(sd->extra_info_digest))
  2860. sdmap_set(rl->desc_by_eid_map, sd->extra_info_digest, sd);
  2861. } else {
  2862. /* We're dropping ri_old. */
  2863. if (!same_descriptors) {
  2864. /* digests don't match; The sdmap_set above didn't replace */
  2865. sdmap_remove(rl->desc_digest_map,
  2866. ri_old->cache_info.signed_descriptor_digest);
  2867. if (tor_memneq(ri_old->cache_info.extra_info_digest,
  2868. ri_new->cache_info.extra_info_digest, DIGEST_LEN)) {
  2869. ei_tmp = eimap_remove(rl->extra_info_map,
  2870. ri_old->cache_info.extra_info_digest);
  2871. if (ei_tmp) {
  2872. rl->extrainfo_store.bytes_dropped +=
  2873. ei_tmp->cache_info.signed_descriptor_len;
  2874. extrainfo_free(ei_tmp);
  2875. }
  2876. }
  2877. if (!tor_digest_is_zero(ri_old->cache_info.extra_info_digest)) {
  2878. sdmap_remove(rl->desc_by_eid_map,
  2879. ri_old->cache_info.extra_info_digest);
  2880. }
  2881. }
  2882. rl->desc_store.bytes_dropped += ri_old->cache_info.signed_descriptor_len;
  2883. routerinfo_free(ri_old);
  2884. }
  2885. #ifdef DEBUG_ROUTERLIST
  2886. routerlist_assert_ok(rl);
  2887. #endif
  2888. }
  2889. /** Extract the descriptor <b>sd</b> from old_routerlist, and re-parse
  2890. * it as a fresh routerinfo_t. */
  2891. static routerinfo_t *
  2892. routerlist_reparse_old(routerlist_t *rl, signed_descriptor_t *sd)
  2893. {
  2894. routerinfo_t *ri;
  2895. const char *body;
  2896. body = signed_descriptor_get_annotations(sd);
  2897. ri = router_parse_entry_from_string(body,
  2898. body+sd->signed_descriptor_len+sd->annotations_len,
  2899. 0, 1, NULL);
  2900. if (!ri)
  2901. return NULL;
  2902. memcpy(&ri->cache_info, sd, sizeof(signed_descriptor_t));
  2903. sd->signed_descriptor_body = NULL; /* Steal reference. */
  2904. ri->cache_info.routerlist_index = -1;
  2905. routerlist_remove_old(rl, sd, -1);
  2906. return ri;
  2907. }
  2908. /** Free all memory held by the routerlist module. */
  2909. void
  2910. routerlist_free_all(void)
  2911. {
  2912. routerlist_free(routerlist);
  2913. routerlist = NULL;
  2914. if (warned_nicknames) {
  2915. SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp));
  2916. smartlist_free(warned_nicknames);
  2917. warned_nicknames = NULL;
  2918. }
  2919. clear_dir_servers();
  2920. smartlist_free(trusted_dir_servers);
  2921. smartlist_free(fallback_dir_servers);
  2922. trusted_dir_servers = fallback_dir_servers = NULL;
  2923. if (trusted_dir_certs) {
  2924. digestmap_free(trusted_dir_certs, cert_list_free_);
  2925. trusted_dir_certs = NULL;
  2926. }
  2927. }
  2928. /** Forget that we have issued any router-related warnings, so that we'll
  2929. * warn again if we see the same errors. */
  2930. void
  2931. routerlist_reset_warnings(void)
  2932. {
  2933. if (!warned_nicknames)
  2934. warned_nicknames = smartlist_new();
  2935. SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp));
  2936. smartlist_clear(warned_nicknames); /* now the list is empty. */
  2937. networkstatus_reset_warnings();
  2938. }
  2939. /** Add <b>router</b> to the routerlist, if we don't already have it. Replace
  2940. * older entries (if any) with the same key. Note: Callers should not hold
  2941. * their pointers to <b>router</b> if this function fails; <b>router</b>
  2942. * will either be inserted into the routerlist or freed. Similarly, even
  2943. * if this call succeeds, they should not hold their pointers to
  2944. * <b>router</b> after subsequent calls with other routerinfo's -- they
  2945. * might cause the original routerinfo to get freed.
  2946. *
  2947. * Returns the status for the operation. Might set *<b>msg</b> if it wants
  2948. * the poster of the router to know something.
  2949. *
  2950. * If <b>from_cache</b>, this descriptor came from our disk cache. If
  2951. * <b>from_fetch</b>, we received it in response to a request we made.
  2952. * (If both are false, that means it was uploaded to us as an auth dir
  2953. * server or via the controller.)
  2954. *
  2955. * This function should be called *after*
  2956. * routers_update_status_from_consensus_networkstatus; subsequently, you
  2957. * should call router_rebuild_store and routerlist_descriptors_added.
  2958. */
  2959. was_router_added_t
  2960. router_add_to_routerlist(routerinfo_t *router, const char **msg,
  2961. int from_cache, int from_fetch)
  2962. {
  2963. const char *id_digest;
  2964. const or_options_t *options = get_options();
  2965. int authdir = authdir_mode_handles_descs(options, router->purpose);
  2966. int authdir_believes_valid = 0;
  2967. routerinfo_t *old_router;
  2968. networkstatus_t *consensus =
  2969. networkstatus_get_latest_consensus_by_flavor(FLAV_NS);
  2970. int in_consensus = 0;
  2971. tor_assert(msg);
  2972. if (!routerlist)
  2973. router_get_routerlist();
  2974. id_digest = router->cache_info.identity_digest;
  2975. old_router = router_get_mutable_by_digest(id_digest);
  2976. /* Make sure that we haven't already got this exact descriptor. */
  2977. if (sdmap_get(routerlist->desc_digest_map,
  2978. router->cache_info.signed_descriptor_digest)) {
  2979. /* If we have this descriptor already and the new descriptor is a bridge
  2980. * descriptor, replace it. If we had a bridge descriptor before and the
  2981. * new one is not a bridge descriptor, don't replace it. */
  2982. /* Only members of routerlist->identity_map can be bridges; we don't
  2983. * put bridges in old_routers. */
  2984. const int was_bridge = old_router &&
  2985. old_router->purpose == ROUTER_PURPOSE_BRIDGE;
  2986. if (routerinfo_is_a_configured_bridge(router) &&
  2987. router->purpose == ROUTER_PURPOSE_BRIDGE &&
  2988. !was_bridge) {
  2989. log_info(LD_DIR, "Replacing non-bridge descriptor with bridge "
  2990. "descriptor for router %s",
  2991. router_describe(router));
  2992. } else {
  2993. log_info(LD_DIR,
  2994. "Dropping descriptor that we already have for router %s",
  2995. router_describe(router));
  2996. *msg = "Router descriptor was not new.";
  2997. routerinfo_free(router);
  2998. return ROUTER_WAS_NOT_NEW;
  2999. }
  3000. }
  3001. if (authdir) {
  3002. if (authdir_wants_to_reject_router(router, msg,
  3003. !from_cache && !from_fetch,
  3004. &authdir_believes_valid)) {
  3005. tor_assert(*msg);
  3006. routerinfo_free(router);
  3007. return ROUTER_AUTHDIR_REJECTS;
  3008. }
  3009. } else if (from_fetch) {
  3010. /* Only check the descriptor digest against the network statuses when
  3011. * we are receiving in response to a fetch. */
  3012. if (!signed_desc_digest_is_recognized(&router->cache_info) &&
  3013. !routerinfo_is_a_configured_bridge(router)) {
  3014. /* We asked for it, so some networkstatus must have listed it when we
  3015. * did. Save it if we're a cache in case somebody else asks for it. */
  3016. log_info(LD_DIR,
  3017. "Received a no-longer-recognized descriptor for router %s",
  3018. router_describe(router));
  3019. *msg = "Router descriptor is not referenced by any network-status.";
  3020. /* Only journal this desc if we'll be serving it. */
  3021. if (!from_cache && should_cache_old_descriptors())
  3022. signed_desc_append_to_journal(&router->cache_info,
  3023. &routerlist->desc_store);
  3024. routerlist_insert_old(routerlist, router);
  3025. return ROUTER_NOT_IN_CONSENSUS_OR_NETWORKSTATUS;
  3026. }
  3027. }
  3028. /* We no longer need a router with this descriptor digest. */
  3029. if (consensus) {
  3030. routerstatus_t *rs = networkstatus_vote_find_mutable_entry(
  3031. consensus, id_digest);
  3032. if (rs && tor_memeq(rs->descriptor_digest,
  3033. router->cache_info.signed_descriptor_digest,
  3034. DIGEST_LEN)) {
  3035. in_consensus = 1;
  3036. }
  3037. }
  3038. if (router->purpose == ROUTER_PURPOSE_GENERAL &&
  3039. consensus && !in_consensus && !authdir) {
  3040. /* If it's a general router not listed in the consensus, then don't
  3041. * consider replacing the latest router with it. */
  3042. if (!from_cache && should_cache_old_descriptors())
  3043. signed_desc_append_to_journal(&router->cache_info,
  3044. &routerlist->desc_store);
  3045. routerlist_insert_old(routerlist, router);
  3046. *msg = "Skipping router descriptor: not in consensus.";
  3047. return ROUTER_NOT_IN_CONSENSUS;
  3048. }
  3049. /* If we're reading a bridge descriptor from our cache, and we don't
  3050. * recognize it as one of our currently configured bridges, drop the
  3051. * descriptor. Otherwise we could end up using it as one of our entry
  3052. * guards even if it isn't in our Bridge config lines. */
  3053. if (router->purpose == ROUTER_PURPOSE_BRIDGE && from_cache &&
  3054. !authdir_mode_bridge(options) &&
  3055. !routerinfo_is_a_configured_bridge(router)) {
  3056. log_info(LD_DIR, "Dropping bridge descriptor for %s because we have "
  3057. "no bridge configured at that address.",
  3058. safe_str_client(router_describe(router)));
  3059. *msg = "Router descriptor was not a configured bridge.";
  3060. routerinfo_free(router);
  3061. return ROUTER_WAS_NOT_WANTED;
  3062. }
  3063. /* If we have a router with the same identity key, choose the newer one. */
  3064. if (old_router) {
  3065. if (!in_consensus && (router->cache_info.published_on <=
  3066. old_router->cache_info.published_on)) {
  3067. /* Same key, but old. This one is not listed in the consensus. */
  3068. log_debug(LD_DIR, "Not-new descriptor for router %s",
  3069. router_describe(router));
  3070. /* Only journal this desc if we'll be serving it. */
  3071. if (!from_cache && should_cache_old_descriptors())
  3072. signed_desc_append_to_journal(&router->cache_info,
  3073. &routerlist->desc_store);
  3074. routerlist_insert_old(routerlist, router);
  3075. *msg = "Router descriptor was not new.";
  3076. return ROUTER_WAS_NOT_NEW;
  3077. } else {
  3078. /* Same key, and either new, or listed in the consensus. */
  3079. log_debug(LD_DIR, "Replacing entry for router %s",
  3080. router_describe(router));
  3081. routerlist_replace(routerlist, old_router, router);
  3082. if (!from_cache) {
  3083. signed_desc_append_to_journal(&router->cache_info,
  3084. &routerlist->desc_store);
  3085. }
  3086. directory_set_dirty();
  3087. *msg = authdir_believes_valid ? "Valid server updated" :
  3088. ("Invalid server updated. (This dirserver is marking your "
  3089. "server as unapproved.)");
  3090. return ROUTER_ADDED_SUCCESSFULLY;
  3091. }
  3092. }
  3093. if (!in_consensus && from_cache &&
  3094. router->cache_info.published_on < time(NULL) - OLD_ROUTER_DESC_MAX_AGE) {
  3095. *msg = "Router descriptor was really old.";
  3096. routerinfo_free(router);
  3097. return ROUTER_WAS_NOT_NEW;
  3098. }
  3099. /* We haven't seen a router with this identity before. Add it to the end of
  3100. * the list. */
  3101. routerlist_insert(routerlist, router);
  3102. if (!from_cache) {
  3103. signed_desc_append_to_journal(&router->cache_info,
  3104. &routerlist->desc_store);
  3105. }
  3106. directory_set_dirty();
  3107. return ROUTER_ADDED_SUCCESSFULLY;
  3108. }
  3109. /** Insert <b>ei</b> into the routerlist, or free it. Other arguments are
  3110. * as for router_add_to_routerlist(). Return ROUTER_ADDED_SUCCESSFULLY iff
  3111. * we actually inserted it, ROUTER_BAD_EI otherwise.
  3112. */
  3113. was_router_added_t
  3114. router_add_extrainfo_to_routerlist(extrainfo_t *ei, const char **msg,
  3115. int from_cache, int from_fetch)
  3116. {
  3117. int inserted;
  3118. (void)from_fetch;
  3119. if (msg) *msg = NULL;
  3120. /*XXXX023 Do something with msg */
  3121. inserted = extrainfo_insert(router_get_routerlist(), ei);
  3122. if (inserted && !from_cache)
  3123. signed_desc_append_to_journal(&ei->cache_info,
  3124. &routerlist->extrainfo_store);
  3125. if (inserted)
  3126. return ROUTER_ADDED_SUCCESSFULLY;
  3127. else
  3128. return ROUTER_BAD_EI;
  3129. }
  3130. /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
  3131. * signed_descriptor_t* in *<b>a</b> has an identity digest preceding, equal
  3132. * to, or later than that of *<b>b</b>. */
  3133. static int
  3134. compare_old_routers_by_identity_(const void **_a, const void **_b)
  3135. {
  3136. int i;
  3137. const signed_descriptor_t *r1 = *_a, *r2 = *_b;
  3138. if ((i = fast_memcmp(r1->identity_digest, r2->identity_digest, DIGEST_LEN)))
  3139. return i;
  3140. return (int)(r1->published_on - r2->published_on);
  3141. }
  3142. /** Internal type used to represent how long an old descriptor was valid,
  3143. * where it appeared in the list of old descriptors, and whether it's extra
  3144. * old. Used only by routerlist_remove_old_cached_routers_with_id(). */
  3145. struct duration_idx_t {
  3146. int duration;
  3147. int idx;
  3148. int old;
  3149. };
  3150. /** Sorting helper: compare two duration_idx_t by their duration. */
  3151. static int
  3152. compare_duration_idx_(const void *_d1, const void *_d2)
  3153. {
  3154. const struct duration_idx_t *d1 = _d1;
  3155. const struct duration_idx_t *d2 = _d2;
  3156. return d1->duration - d2->duration;
  3157. }
  3158. /** The range <b>lo</b> through <b>hi</b> inclusive of routerlist->old_routers
  3159. * must contain routerinfo_t with the same identity and with publication time
  3160. * in ascending order. Remove members from this range until there are no more
  3161. * than max_descriptors_per_router() remaining. Start by removing the oldest
  3162. * members from before <b>cutoff</b>, then remove members which were current
  3163. * for the lowest amount of time. The order of members of old_routers at
  3164. * indices <b>lo</b> or higher may be changed.
  3165. */
  3166. static void
  3167. routerlist_remove_old_cached_routers_with_id(time_t now,
  3168. time_t cutoff, int lo, int hi,
  3169. digestset_t *retain)
  3170. {
  3171. int i, n = hi-lo+1;
  3172. unsigned n_extra, n_rmv = 0;
  3173. struct duration_idx_t *lifespans;
  3174. uint8_t *rmv, *must_keep;
  3175. smartlist_t *lst = routerlist->old_routers;
  3176. #if 1
  3177. const char *ident;
  3178. tor_assert(hi < smartlist_len(lst));
  3179. tor_assert(lo <= hi);
  3180. ident = ((signed_descriptor_t*)smartlist_get(lst, lo))->identity_digest;
  3181. for (i = lo+1; i <= hi; ++i) {
  3182. signed_descriptor_t *r = smartlist_get(lst, i);
  3183. tor_assert(tor_memeq(ident, r->identity_digest, DIGEST_LEN));
  3184. }
  3185. #endif
  3186. /* Check whether we need to do anything at all. */
  3187. {
  3188. int mdpr = directory_caches_dir_info(get_options()) ? 2 : 1;
  3189. if (n <= mdpr)
  3190. return;
  3191. n_extra = n - mdpr;
  3192. }
  3193. lifespans = tor_malloc_zero(sizeof(struct duration_idx_t)*n);
  3194. rmv = tor_malloc_zero(sizeof(uint8_t)*n);
  3195. must_keep = tor_malloc_zero(sizeof(uint8_t)*n);
  3196. /* Set lifespans to contain the lifespan and index of each server. */
  3197. /* Set rmv[i-lo]=1 if we're going to remove a server for being too old. */
  3198. for (i = lo; i <= hi; ++i) {
  3199. signed_descriptor_t *r = smartlist_get(lst, i);
  3200. signed_descriptor_t *r_next;
  3201. lifespans[i-lo].idx = i;
  3202. if (r->last_listed_as_valid_until >= now ||
  3203. (retain && digestset_contains(retain, r->signed_descriptor_digest))) {
  3204. must_keep[i-lo] = 1;
  3205. }
  3206. if (i < hi) {
  3207. r_next = smartlist_get(lst, i+1);
  3208. tor_assert(r->published_on <= r_next->published_on);
  3209. lifespans[i-lo].duration = (int)(r_next->published_on - r->published_on);
  3210. } else {
  3211. r_next = NULL;
  3212. lifespans[i-lo].duration = INT_MAX;
  3213. }
  3214. if (!must_keep[i-lo] && r->published_on < cutoff && n_rmv < n_extra) {
  3215. ++n_rmv;
  3216. lifespans[i-lo].old = 1;
  3217. rmv[i-lo] = 1;
  3218. }
  3219. }
  3220. if (n_rmv < n_extra) {
  3221. /**
  3222. * We aren't removing enough servers for being old. Sort lifespans by
  3223. * the duration of liveness, and remove the ones we're not already going to
  3224. * remove based on how long they were alive.
  3225. **/
  3226. qsort(lifespans, n, sizeof(struct duration_idx_t), compare_duration_idx_);
  3227. for (i = 0; i < n && n_rmv < n_extra; ++i) {
  3228. if (!must_keep[lifespans[i].idx-lo] && !lifespans[i].old) {
  3229. rmv[lifespans[i].idx-lo] = 1;
  3230. ++n_rmv;
  3231. }
  3232. }
  3233. }
  3234. i = hi;
  3235. do {
  3236. if (rmv[i-lo])
  3237. routerlist_remove_old(routerlist, smartlist_get(lst, i), i);
  3238. } while (--i >= lo);
  3239. tor_free(must_keep);
  3240. tor_free(rmv);
  3241. tor_free(lifespans);
  3242. }
  3243. /** Deactivate any routers from the routerlist that are more than
  3244. * ROUTER_MAX_AGE seconds old and not recommended by any networkstatuses;
  3245. * remove old routers from the list of cached routers if we have too many.
  3246. */
  3247. void
  3248. routerlist_remove_old_routers(void)
  3249. {
  3250. int i, hi=-1;
  3251. const char *cur_id = NULL;
  3252. time_t now = time(NULL);
  3253. time_t cutoff;
  3254. routerinfo_t *router;
  3255. signed_descriptor_t *sd;
  3256. digestset_t *retain;
  3257. const networkstatus_t *consensus = networkstatus_get_latest_consensus();
  3258. trusted_dirs_remove_old_certs();
  3259. if (!routerlist || !consensus)
  3260. return;
  3261. // routerlist_assert_ok(routerlist);
  3262. /* We need to guess how many router descriptors we will wind up wanting to
  3263. retain, so that we can be sure to allocate a large enough Bloom filter
  3264. to hold the digest set. Overestimating is fine; underestimating is bad.
  3265. */
  3266. {
  3267. /* We'll probably retain everything in the consensus. */
  3268. int n_max_retain = smartlist_len(consensus->routerstatus_list);
  3269. retain = digestset_new(n_max_retain);
  3270. }
  3271. cutoff = now - OLD_ROUTER_DESC_MAX_AGE;
  3272. /* Retain anything listed in the consensus. */
  3273. if (consensus) {
  3274. SMARTLIST_FOREACH(consensus->routerstatus_list, routerstatus_t *, rs,
  3275. if (rs->published_on >= cutoff)
  3276. digestset_add(retain, rs->descriptor_digest));
  3277. }
  3278. /* If we have a consensus, we should consider pruning current routers that
  3279. * are too old and that nobody recommends. (If we don't have a consensus,
  3280. * then we should get one before we decide to kill routers.) */
  3281. if (consensus) {
  3282. cutoff = now - ROUTER_MAX_AGE;
  3283. /* Remove too-old unrecommended members of routerlist->routers. */
  3284. for (i = 0; i < smartlist_len(routerlist->routers); ++i) {
  3285. router = smartlist_get(routerlist->routers, i);
  3286. if (router->cache_info.published_on <= cutoff &&
  3287. router->cache_info.last_listed_as_valid_until < now &&
  3288. !digestset_contains(retain,
  3289. router->cache_info.signed_descriptor_digest)) {
  3290. /* Too old: remove it. (If we're a cache, just move it into
  3291. * old_routers.) */
  3292. log_info(LD_DIR,
  3293. "Forgetting obsolete (too old) routerinfo for router %s",
  3294. router_describe(router));
  3295. routerlist_remove(routerlist, router, 1, now);
  3296. i--;
  3297. }
  3298. }
  3299. }
  3300. //routerlist_assert_ok(routerlist);
  3301. /* Remove far-too-old members of routerlist->old_routers. */
  3302. cutoff = now - OLD_ROUTER_DESC_MAX_AGE;
  3303. for (i = 0; i < smartlist_len(routerlist->old_routers); ++i) {
  3304. sd = smartlist_get(routerlist->old_routers, i);
  3305. if (sd->published_on <= cutoff &&
  3306. sd->last_listed_as_valid_until < now &&
  3307. !digestset_contains(retain, sd->signed_descriptor_digest)) {
  3308. /* Too old. Remove it. */
  3309. routerlist_remove_old(routerlist, sd, i--);
  3310. }
  3311. }
  3312. //routerlist_assert_ok(routerlist);
  3313. log_info(LD_DIR, "We have %d live routers and %d old router descriptors.",
  3314. smartlist_len(routerlist->routers),
  3315. smartlist_len(routerlist->old_routers));
  3316. /* Now we might have to look at routerlist->old_routers for extraneous
  3317. * members. (We'd keep all the members if we could, but we need to save
  3318. * space.) First, check whether we have too many router descriptors, total.
  3319. * We're okay with having too many for some given router, so long as the
  3320. * total number doesn't approach max_descriptors_per_router()*len(router).
  3321. */
  3322. if (smartlist_len(routerlist->old_routers) <
  3323. smartlist_len(routerlist->routers))
  3324. goto done;
  3325. /* Sort by identity, then fix indices. */
  3326. smartlist_sort(routerlist->old_routers, compare_old_routers_by_identity_);
  3327. /* Fix indices. */
  3328. for (i = 0; i < smartlist_len(routerlist->old_routers); ++i) {
  3329. signed_descriptor_t *r = smartlist_get(routerlist->old_routers, i);
  3330. r->routerlist_index = i;
  3331. }
  3332. /* Iterate through the list from back to front, so when we remove descriptors
  3333. * we don't mess up groups we haven't gotten to. */
  3334. for (i = smartlist_len(routerlist->old_routers)-1; i >= 0; --i) {
  3335. signed_descriptor_t *r = smartlist_get(routerlist->old_routers, i);
  3336. if (!cur_id) {
  3337. cur_id = r->identity_digest;
  3338. hi = i;
  3339. }
  3340. if (tor_memneq(cur_id, r->identity_digest, DIGEST_LEN)) {
  3341. routerlist_remove_old_cached_routers_with_id(now,
  3342. cutoff, i+1, hi, retain);
  3343. cur_id = r->identity_digest;
  3344. hi = i;
  3345. }
  3346. }
  3347. if (hi>=0)
  3348. routerlist_remove_old_cached_routers_with_id(now, cutoff, 0, hi, retain);
  3349. //routerlist_assert_ok(routerlist);
  3350. done:
  3351. digestset_free(retain);
  3352. router_rebuild_store(RRS_DONT_REMOVE_OLD, &routerlist->desc_store);
  3353. router_rebuild_store(RRS_DONT_REMOVE_OLD,&routerlist->extrainfo_store);
  3354. }
  3355. /** We just added a new set of descriptors. Take whatever extra steps
  3356. * we need. */
  3357. void
  3358. routerlist_descriptors_added(smartlist_t *sl, int from_cache)
  3359. {
  3360. tor_assert(sl);
  3361. control_event_descriptors_changed(sl);
  3362. SMARTLIST_FOREACH_BEGIN(sl, routerinfo_t *, ri) {
  3363. if (ri->purpose == ROUTER_PURPOSE_BRIDGE)
  3364. learned_bridge_descriptor(ri, from_cache);
  3365. if (ri->needs_retest_if_added) {
  3366. ri->needs_retest_if_added = 0;
  3367. dirserv_single_reachability_test(approx_time(), ri);
  3368. }
  3369. } SMARTLIST_FOREACH_END(ri);
  3370. }
  3371. /**
  3372. * Code to parse a single router descriptor and insert it into the
  3373. * routerlist. Return -1 if the descriptor was ill-formed; 0 if the
  3374. * descriptor was well-formed but could not be added; and 1 if the
  3375. * descriptor was added.
  3376. *
  3377. * If we don't add it and <b>msg</b> is not NULL, then assign to
  3378. * *<b>msg</b> a static string describing the reason for refusing the
  3379. * descriptor.
  3380. *
  3381. * This is used only by the controller.
  3382. */
  3383. int
  3384. router_load_single_router(const char *s, uint8_t purpose, int cache,
  3385. const char **msg)
  3386. {
  3387. routerinfo_t *ri;
  3388. was_router_added_t r;
  3389. smartlist_t *lst;
  3390. char annotation_buf[ROUTER_ANNOTATION_BUF_LEN];
  3391. tor_assert(msg);
  3392. *msg = NULL;
  3393. tor_snprintf(annotation_buf, sizeof(annotation_buf),
  3394. "@source controller\n"
  3395. "@purpose %s\n", router_purpose_to_string(purpose));
  3396. if (!(ri = router_parse_entry_from_string(s, NULL, 1, 0, annotation_buf))) {
  3397. log_warn(LD_DIR, "Error parsing router descriptor; dropping.");
  3398. *msg = "Couldn't parse router descriptor.";
  3399. return -1;
  3400. }
  3401. tor_assert(ri->purpose == purpose);
  3402. if (router_is_me(ri)) {
  3403. log_warn(LD_DIR, "Router's identity key matches mine; dropping.");
  3404. *msg = "Router's identity key matches mine.";
  3405. routerinfo_free(ri);
  3406. return 0;
  3407. }
  3408. if (!cache) /* obey the preference of the controller */
  3409. ri->cache_info.do_not_cache = 1;
  3410. lst = smartlist_new();
  3411. smartlist_add(lst, ri);
  3412. routers_update_status_from_consensus_networkstatus(lst, 0);
  3413. r = router_add_to_routerlist(ri, msg, 0, 0);
  3414. if (!WRA_WAS_ADDED(r)) {
  3415. /* we've already assigned to *msg now, and ri is already freed */
  3416. tor_assert(*msg);
  3417. if (r == ROUTER_AUTHDIR_REJECTS)
  3418. log_warn(LD_DIR, "Couldn't add router to list: %s Dropping.", *msg);
  3419. smartlist_free(lst);
  3420. return 0;
  3421. } else {
  3422. routerlist_descriptors_added(lst, 0);
  3423. smartlist_free(lst);
  3424. log_debug(LD_DIR, "Added router to list");
  3425. return 1;
  3426. }
  3427. }
  3428. /** Given a string <b>s</b> containing some routerdescs, parse it and put the
  3429. * routers into our directory. If saved_location is SAVED_NOWHERE, the routers
  3430. * are in response to a query to the network: cache them by adding them to
  3431. * the journal.
  3432. *
  3433. * Return the number of routers actually added.
  3434. *
  3435. * If <b>requested_fingerprints</b> is provided, it must contain a list of
  3436. * uppercased fingerprints. Do not update any router whose
  3437. * fingerprint is not on the list; after updating a router, remove its
  3438. * fingerprint from the list.
  3439. *
  3440. * If <b>descriptor_digests</b> is non-zero, then the requested_fingerprints
  3441. * are descriptor digests. Otherwise they are identity digests.
  3442. */
  3443. int
  3444. router_load_routers_from_string(const char *s, const char *eos,
  3445. saved_location_t saved_location,
  3446. smartlist_t *requested_fingerprints,
  3447. int descriptor_digests,
  3448. const char *prepend_annotations)
  3449. {
  3450. smartlist_t *routers = smartlist_new(), *changed = smartlist_new();
  3451. char fp[HEX_DIGEST_LEN+1];
  3452. const char *msg;
  3453. int from_cache = (saved_location != SAVED_NOWHERE);
  3454. int allow_annotations = (saved_location != SAVED_NOWHERE);
  3455. int any_changed = 0;
  3456. router_parse_list_from_string(&s, eos, routers, saved_location, 0,
  3457. allow_annotations, prepend_annotations);
  3458. routers_update_status_from_consensus_networkstatus(routers, !from_cache);
  3459. log_info(LD_DIR, "%d elements to add", smartlist_len(routers));
  3460. SMARTLIST_FOREACH_BEGIN(routers, routerinfo_t *, ri) {
  3461. was_router_added_t r;
  3462. char d[DIGEST_LEN];
  3463. if (requested_fingerprints) {
  3464. base16_encode(fp, sizeof(fp), descriptor_digests ?
  3465. ri->cache_info.signed_descriptor_digest :
  3466. ri->cache_info.identity_digest,
  3467. DIGEST_LEN);
  3468. if (smartlist_contains_string(requested_fingerprints, fp)) {
  3469. smartlist_string_remove(requested_fingerprints, fp);
  3470. } else {
  3471. char *requested =
  3472. smartlist_join_strings(requested_fingerprints," ",0,NULL);
  3473. log_warn(LD_DIR,
  3474. "We received a router descriptor with a fingerprint (%s) "
  3475. "that we never requested. (We asked for: %s.) Dropping.",
  3476. fp, requested);
  3477. tor_free(requested);
  3478. routerinfo_free(ri);
  3479. continue;
  3480. }
  3481. }
  3482. memcpy(d, ri->cache_info.signed_descriptor_digest, DIGEST_LEN);
  3483. r = router_add_to_routerlist(ri, &msg, from_cache, !from_cache);
  3484. if (WRA_WAS_ADDED(r)) {
  3485. any_changed++;
  3486. smartlist_add(changed, ri);
  3487. routerlist_descriptors_added(changed, from_cache);
  3488. smartlist_clear(changed);
  3489. } else if (WRA_WAS_REJECTED(r)) {
  3490. download_status_t *dl_status;
  3491. dl_status = router_get_dl_status_by_descriptor_digest(d);
  3492. if (dl_status) {
  3493. log_info(LD_GENERAL, "Marking router %s as never downloadable",
  3494. hex_str(d, DIGEST_LEN));
  3495. download_status_mark_impossible(dl_status);
  3496. }
  3497. }
  3498. } SMARTLIST_FOREACH_END(ri);
  3499. routerlist_assert_ok(routerlist);
  3500. if (any_changed)
  3501. router_rebuild_store(0, &routerlist->desc_store);
  3502. smartlist_free(routers);
  3503. smartlist_free(changed);
  3504. return any_changed;
  3505. }
  3506. /** Parse one or more extrainfos from <b>s</b> (ending immediately before
  3507. * <b>eos</b> if <b>eos</b> is present). Other arguments are as for
  3508. * router_load_routers_from_string(). */
  3509. void
  3510. router_load_extrainfo_from_string(const char *s, const char *eos,
  3511. saved_location_t saved_location,
  3512. smartlist_t *requested_fingerprints,
  3513. int descriptor_digests)
  3514. {
  3515. smartlist_t *extrainfo_list = smartlist_new();
  3516. const char *msg;
  3517. int from_cache = (saved_location != SAVED_NOWHERE);
  3518. router_parse_list_from_string(&s, eos, extrainfo_list, saved_location, 1, 0,
  3519. NULL);
  3520. log_info(LD_DIR, "%d elements to add", smartlist_len(extrainfo_list));
  3521. SMARTLIST_FOREACH_BEGIN(extrainfo_list, extrainfo_t *, ei) {
  3522. was_router_added_t added =
  3523. router_add_extrainfo_to_routerlist(ei, &msg, from_cache, !from_cache);
  3524. if (WRA_WAS_ADDED(added) && requested_fingerprints) {
  3525. char fp[HEX_DIGEST_LEN+1];
  3526. base16_encode(fp, sizeof(fp), descriptor_digests ?
  3527. ei->cache_info.signed_descriptor_digest :
  3528. ei->cache_info.identity_digest,
  3529. DIGEST_LEN);
  3530. smartlist_string_remove(requested_fingerprints, fp);
  3531. /* We silently let people stuff us with extrainfos we didn't ask for,
  3532. * so long as we would have wanted them anyway. Since we always fetch
  3533. * all the extrainfos we want, and we never actually act on them
  3534. * inside Tor, this should be harmless. */
  3535. }
  3536. } SMARTLIST_FOREACH_END(ei);
  3537. routerlist_assert_ok(routerlist);
  3538. router_rebuild_store(0, &router_get_routerlist()->extrainfo_store);
  3539. smartlist_free(extrainfo_list);
  3540. }
  3541. /** Return true iff any networkstatus includes a descriptor whose digest
  3542. * is that of <b>desc</b>. */
  3543. static int
  3544. signed_desc_digest_is_recognized(signed_descriptor_t *desc)
  3545. {
  3546. const routerstatus_t *rs;
  3547. networkstatus_t *consensus = networkstatus_get_latest_consensus();
  3548. if (consensus) {
  3549. rs = networkstatus_vote_find_entry(consensus, desc->identity_digest);
  3550. if (rs && tor_memeq(rs->descriptor_digest,
  3551. desc->signed_descriptor_digest, DIGEST_LEN))
  3552. return 1;
  3553. }
  3554. return 0;
  3555. }
  3556. /** Update downloads for router descriptors and/or microdescriptors as
  3557. * appropriate. */
  3558. void
  3559. update_all_descriptor_downloads(time_t now)
  3560. {
  3561. if (get_options()->DisableNetwork)
  3562. return;
  3563. update_router_descriptor_downloads(now);
  3564. update_microdesc_downloads(now);
  3565. launch_dummy_descriptor_download_as_needed(now, get_options());
  3566. }
  3567. /** Clear all our timeouts for fetching v3 directory stuff, and then
  3568. * give it all a try again. */
  3569. void
  3570. routerlist_retry_directory_downloads(time_t now)
  3571. {
  3572. router_reset_status_download_failures();
  3573. router_reset_descriptor_download_failures();
  3574. if (get_options()->DisableNetwork)
  3575. return;
  3576. update_networkstatus_downloads(now);
  3577. update_all_descriptor_downloads(now);
  3578. }
  3579. /** Return true iff <b>router</b> does not permit exit streams.
  3580. */
  3581. int
  3582. router_exit_policy_rejects_all(const routerinfo_t *router)
  3583. {
  3584. return router->policy_is_reject_star;
  3585. }
  3586. /** Create an directory server at <b>address</b>:<b>port</b>, with OR identity
  3587. * key <b>digest</b>. If <b>address</b> is NULL, add ourself. If
  3588. * <b>is_authority</b>, this is a directory authority. Return the new
  3589. * directory server entry on success or NULL on failure. */
  3590. static dir_server_t *
  3591. dir_server_new(int is_authority,
  3592. const char *nickname,
  3593. const tor_addr_t *addr,
  3594. const char *hostname,
  3595. uint16_t dir_port, uint16_t or_port,
  3596. const char *digest, const char *v3_auth_digest,
  3597. dirinfo_type_t type,
  3598. double weight)
  3599. {
  3600. dir_server_t *ent;
  3601. uint32_t a;
  3602. char *hostname_ = NULL;
  3603. if (weight < 0)
  3604. return NULL;
  3605. if (tor_addr_family(addr) == AF_INET)
  3606. a = tor_addr_to_ipv4h(addr);
  3607. else
  3608. return NULL; /*XXXX Support IPv6 */
  3609. if (!hostname)
  3610. hostname_ = tor_dup_addr(addr);
  3611. else
  3612. hostname_ = tor_strdup(hostname);
  3613. ent = tor_malloc_zero(sizeof(dir_server_t));
  3614. ent->nickname = nickname ? tor_strdup(nickname) : NULL;
  3615. ent->address = hostname_;
  3616. ent->addr = a;
  3617. ent->dir_port = dir_port;
  3618. ent->or_port = or_port;
  3619. ent->is_running = 1;
  3620. ent->is_authority = is_authority;
  3621. ent->type = type;
  3622. ent->weight = weight;
  3623. memcpy(ent->digest, digest, DIGEST_LEN);
  3624. if (v3_auth_digest && (type & V3_DIRINFO))
  3625. memcpy(ent->v3_identity_digest, v3_auth_digest, DIGEST_LEN);
  3626. if (nickname)
  3627. tor_asprintf(&ent->description, "directory server \"%s\" at %s:%d",
  3628. nickname, hostname, (int)dir_port);
  3629. else
  3630. tor_asprintf(&ent->description, "directory server at %s:%d",
  3631. hostname, (int)dir_port);
  3632. ent->fake_status.addr = ent->addr;
  3633. memcpy(ent->fake_status.identity_digest, digest, DIGEST_LEN);
  3634. if (nickname)
  3635. strlcpy(ent->fake_status.nickname, nickname,
  3636. sizeof(ent->fake_status.nickname));
  3637. else
  3638. ent->fake_status.nickname[0] = '\0';
  3639. ent->fake_status.dir_port = ent->dir_port;
  3640. ent->fake_status.or_port = ent->or_port;
  3641. return ent;
  3642. }
  3643. /** Create an authoritative directory server at
  3644. * <b>address</b>:<b>port</b>, with identity key <b>digest</b>. If
  3645. * <b>address</b> is NULL, add ourself. Return the new trusted directory
  3646. * server entry on success or NULL if we couldn't add it. */
  3647. dir_server_t *
  3648. trusted_dir_server_new(const char *nickname, const char *address,
  3649. uint16_t dir_port, uint16_t or_port,
  3650. const char *digest, const char *v3_auth_digest,
  3651. dirinfo_type_t type, double weight)
  3652. {
  3653. uint32_t a;
  3654. tor_addr_t addr;
  3655. char *hostname=NULL;
  3656. dir_server_t *result;
  3657. if (!address) { /* The address is us; we should guess. */
  3658. if (resolve_my_address(LOG_WARN, get_options(),
  3659. &a, NULL, &hostname) < 0) {
  3660. log_warn(LD_CONFIG,
  3661. "Couldn't find a suitable address when adding ourself as a "
  3662. "trusted directory server.");
  3663. return NULL;
  3664. }
  3665. if (!hostname)
  3666. hostname = tor_dup_ip(a);
  3667. } else {
  3668. if (tor_lookup_hostname(address, &a)) {
  3669. log_warn(LD_CONFIG,
  3670. "Unable to lookup address for directory server at '%s'",
  3671. address);
  3672. return NULL;
  3673. }
  3674. hostname = tor_strdup(address);
  3675. }
  3676. tor_addr_from_ipv4h(&addr, a);
  3677. result = dir_server_new(1, nickname, &addr, hostname,
  3678. dir_port, or_port, digest,
  3679. v3_auth_digest, type, weight);
  3680. tor_free(hostname);
  3681. return result;
  3682. }
  3683. /** Return a new dir_server_t for a fallback directory server at
  3684. * <b>addr</b>:<b>or_port</b>/<b>dir_port</b>, with identity key digest
  3685. * <b>id_digest</b> */
  3686. dir_server_t *
  3687. fallback_dir_server_new(const tor_addr_t *addr,
  3688. uint16_t dir_port, uint16_t or_port,
  3689. const char *id_digest, double weight)
  3690. {
  3691. return dir_server_new(0, NULL, addr, NULL, dir_port, or_port, id_digest,
  3692. NULL, ALL_DIRINFO, weight);
  3693. }
  3694. /** Add a directory server to the global list(s). */
  3695. void
  3696. dir_server_add(dir_server_t *ent)
  3697. {
  3698. if (!trusted_dir_servers)
  3699. trusted_dir_servers = smartlist_new();
  3700. if (!fallback_dir_servers)
  3701. fallback_dir_servers = smartlist_new();
  3702. if (ent->is_authority)
  3703. smartlist_add(trusted_dir_servers, ent);
  3704. smartlist_add(fallback_dir_servers, ent);
  3705. router_dir_info_changed();
  3706. }
  3707. /** Free storage held in <b>cert</b>. */
  3708. void
  3709. authority_cert_free(authority_cert_t *cert)
  3710. {
  3711. if (!cert)
  3712. return;
  3713. tor_free(cert->cache_info.signed_descriptor_body);
  3714. crypto_pk_free(cert->signing_key);
  3715. crypto_pk_free(cert->identity_key);
  3716. tor_free(cert);
  3717. }
  3718. /** Free storage held in <b>ds</b>. */
  3719. static void
  3720. dir_server_free(dir_server_t *ds)
  3721. {
  3722. if (!ds)
  3723. return;
  3724. tor_free(ds->nickname);
  3725. tor_free(ds->description);
  3726. tor_free(ds->address);
  3727. tor_free(ds);
  3728. }
  3729. /** Remove all members from the list of dir servers. */
  3730. void
  3731. clear_dir_servers(void)
  3732. {
  3733. if (fallback_dir_servers) {
  3734. SMARTLIST_FOREACH(fallback_dir_servers, dir_server_t *, ent,
  3735. dir_server_free(ent));
  3736. smartlist_clear(fallback_dir_servers);
  3737. } else {
  3738. fallback_dir_servers = smartlist_new();
  3739. }
  3740. if (trusted_dir_servers) {
  3741. smartlist_clear(trusted_dir_servers);
  3742. } else {
  3743. trusted_dir_servers = smartlist_new();
  3744. }
  3745. router_dir_info_changed();
  3746. }
  3747. /** For every current directory connection whose purpose is <b>purpose</b>,
  3748. * and where the resource being downloaded begins with <b>prefix</b>, split
  3749. * rest of the resource into base16 fingerprints (or base64 fingerprints if
  3750. * purpose==DIR_PURPPOSE_FETCH_MICRODESC), decode them, and set the
  3751. * corresponding elements of <b>result</b> to a nonzero value.
  3752. */
  3753. static void
  3754. list_pending_downloads(digestmap_t *result,
  3755. int purpose, const char *prefix)
  3756. {
  3757. const size_t p_len = strlen(prefix);
  3758. smartlist_t *tmp = smartlist_new();
  3759. smartlist_t *conns = get_connection_array();
  3760. int flags = DSR_HEX;
  3761. if (purpose == DIR_PURPOSE_FETCH_MICRODESC)
  3762. flags = DSR_DIGEST256|DSR_BASE64;
  3763. tor_assert(result);
  3764. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  3765. if (conn->type == CONN_TYPE_DIR &&
  3766. conn->purpose == purpose &&
  3767. !conn->marked_for_close) {
  3768. const char *resource = TO_DIR_CONN(conn)->requested_resource;
  3769. if (!strcmpstart(resource, prefix))
  3770. dir_split_resource_into_fingerprints(resource + p_len,
  3771. tmp, NULL, flags);
  3772. }
  3773. } SMARTLIST_FOREACH_END(conn);
  3774. SMARTLIST_FOREACH(tmp, char *, d,
  3775. {
  3776. digestmap_set(result, d, (void*)1);
  3777. tor_free(d);
  3778. });
  3779. smartlist_free(tmp);
  3780. }
  3781. /** For every router descriptor (or extra-info document if <b>extrainfo</b> is
  3782. * true) we are currently downloading by descriptor digest, set result[d] to
  3783. * (void*)1. */
  3784. static void
  3785. list_pending_descriptor_downloads(digestmap_t *result, int extrainfo)
  3786. {
  3787. int purpose =
  3788. extrainfo ? DIR_PURPOSE_FETCH_EXTRAINFO : DIR_PURPOSE_FETCH_SERVERDESC;
  3789. list_pending_downloads(result, purpose, "d/");
  3790. }
  3791. /** For every microdescriptor we are currently downloading by descriptor
  3792. * digest, set result[d] to (void*)1. (Note that microdescriptor digests
  3793. * are 256-bit, and digestmap_t only holds 160-bit digests, so we're only
  3794. * getting the first 20 bytes of each digest here.)
  3795. *
  3796. * XXXX Let there be a digestmap256_t, and use that instead.
  3797. */
  3798. void
  3799. list_pending_microdesc_downloads(digestmap_t *result)
  3800. {
  3801. list_pending_downloads(result, DIR_PURPOSE_FETCH_MICRODESC, "d/");
  3802. }
  3803. /** For every certificate we are currently downloading by (identity digest,
  3804. * signing key digest) pair, set result[fp_pair] to (void *1).
  3805. */
  3806. static void
  3807. list_pending_fpsk_downloads(fp_pair_map_t *result)
  3808. {
  3809. const char *pfx = "fp-sk/";
  3810. smartlist_t *tmp;
  3811. smartlist_t *conns;
  3812. const char *resource;
  3813. tor_assert(result);
  3814. tmp = smartlist_new();
  3815. conns = get_connection_array();
  3816. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  3817. if (conn->type == CONN_TYPE_DIR &&
  3818. conn->purpose == DIR_PURPOSE_FETCH_CERTIFICATE &&
  3819. !conn->marked_for_close) {
  3820. resource = TO_DIR_CONN(conn)->requested_resource;
  3821. if (!strcmpstart(resource, pfx))
  3822. dir_split_resource_into_fingerprint_pairs(resource + strlen(pfx),
  3823. tmp);
  3824. }
  3825. } SMARTLIST_FOREACH_END(conn);
  3826. SMARTLIST_FOREACH_BEGIN(tmp, fp_pair_t *, fp) {
  3827. fp_pair_map_set(result, fp, (void*)1);
  3828. tor_free(fp);
  3829. } SMARTLIST_FOREACH_END(fp);
  3830. smartlist_free(tmp);
  3831. }
  3832. /** Launch downloads for all the descriptors whose digests or digests256
  3833. * are listed as digests[i] for lo <= i < hi. (Lo and hi may be out of
  3834. * range.) If <b>source</b> is given, download from <b>source</b>;
  3835. * otherwise, download from an appropriate random directory server.
  3836. */
  3837. static void
  3838. initiate_descriptor_downloads(const routerstatus_t *source,
  3839. int purpose,
  3840. smartlist_t *digests,
  3841. int lo, int hi, int pds_flags)
  3842. {
  3843. int i, n = hi-lo;
  3844. char *resource, *cp;
  3845. size_t r_len;
  3846. int digest_len = DIGEST_LEN, enc_digest_len = HEX_DIGEST_LEN;
  3847. char sep = '+';
  3848. int b64_256 = 0;
  3849. if (purpose == DIR_PURPOSE_FETCH_MICRODESC) {
  3850. /* Microdescriptors are downloaded by "-"-separated base64-encoded
  3851. * 256-bit digests. */
  3852. digest_len = DIGEST256_LEN;
  3853. enc_digest_len = BASE64_DIGEST256_LEN;
  3854. sep = '-';
  3855. b64_256 = 1;
  3856. }
  3857. if (n <= 0)
  3858. return;
  3859. if (lo < 0)
  3860. lo = 0;
  3861. if (hi > smartlist_len(digests))
  3862. hi = smartlist_len(digests);
  3863. r_len = 8 + (enc_digest_len+1)*n;
  3864. cp = resource = tor_malloc(r_len);
  3865. memcpy(cp, "d/", 2);
  3866. cp += 2;
  3867. for (i = lo; i < hi; ++i) {
  3868. if (b64_256) {
  3869. digest256_to_base64(cp, smartlist_get(digests, i));
  3870. } else {
  3871. base16_encode(cp, r_len-(cp-resource),
  3872. smartlist_get(digests,i), digest_len);
  3873. }
  3874. cp += enc_digest_len;
  3875. *cp++ = sep;
  3876. }
  3877. memcpy(cp-1, ".z", 3);
  3878. if (source) {
  3879. /* We know which authority we want. */
  3880. directory_initiate_command_routerstatus(source, purpose,
  3881. ROUTER_PURPOSE_GENERAL,
  3882. DIRIND_ONEHOP,
  3883. resource, NULL, 0, 0);
  3884. } else {
  3885. directory_get_from_dirserver(purpose, ROUTER_PURPOSE_GENERAL, resource,
  3886. pds_flags);
  3887. }
  3888. tor_free(resource);
  3889. }
  3890. /** Max amount of hashes to download per request.
  3891. * Since squid does not like URLs >= 4096 bytes we limit it to 96.
  3892. * 4096 - strlen(http://255.255.255.255/tor/server/d/.z) == 4058
  3893. * 4058/41 (40 for the hash and 1 for the + that separates them) => 98
  3894. * So use 96 because it's a nice number.
  3895. */
  3896. #define MAX_DL_PER_REQUEST 96
  3897. #define MAX_MICRODESC_DL_PER_REQUEST 92
  3898. /** Don't split our requests so finely that we are requesting fewer than
  3899. * this number per server. */
  3900. #define MIN_DL_PER_REQUEST 4
  3901. /** To prevent a single screwy cache from confusing us by selective reply,
  3902. * try to split our requests into at least this many requests. */
  3903. #define MIN_REQUESTS 3
  3904. /** If we want fewer than this many descriptors, wait until we
  3905. * want more, or until TestingClientMaxIntervalWithoutRequest has passed. */
  3906. #define MAX_DL_TO_DELAY 16
  3907. /** Given a <b>purpose</b> (FETCH_MICRODESC or FETCH_SERVERDESC) and a list of
  3908. * router descriptor digests or microdescriptor digest256s in
  3909. * <b>downloadable</b>, decide whether to delay fetching until we have more.
  3910. * If we don't want to delay, launch one or more requests to the appropriate
  3911. * directory authorities.
  3912. */
  3913. void
  3914. launch_descriptor_downloads(int purpose,
  3915. smartlist_t *downloadable,
  3916. const routerstatus_t *source, time_t now)
  3917. {
  3918. int should_delay = 0, n_downloadable;
  3919. const or_options_t *options = get_options();
  3920. const char *descname;
  3921. tor_assert(purpose == DIR_PURPOSE_FETCH_SERVERDESC ||
  3922. purpose == DIR_PURPOSE_FETCH_MICRODESC);
  3923. descname = (purpose == DIR_PURPOSE_FETCH_SERVERDESC) ?
  3924. "routerdesc" : "microdesc";
  3925. n_downloadable = smartlist_len(downloadable);
  3926. if (!directory_fetches_dir_info_early(options)) {
  3927. if (n_downloadable >= MAX_DL_TO_DELAY) {
  3928. log_debug(LD_DIR,
  3929. "There are enough downloadable %ss to launch requests.",
  3930. descname);
  3931. should_delay = 0;
  3932. } else {
  3933. should_delay = (last_descriptor_download_attempted +
  3934. options->TestingClientMaxIntervalWithoutRequest) > now;
  3935. if (!should_delay && n_downloadable) {
  3936. if (last_descriptor_download_attempted) {
  3937. log_info(LD_DIR,
  3938. "There are not many downloadable %ss, but we've "
  3939. "been waiting long enough (%d seconds). Downloading.",
  3940. descname,
  3941. (int)(now-last_descriptor_download_attempted));
  3942. } else {
  3943. log_info(LD_DIR,
  3944. "There are not many downloadable %ss, but we haven't "
  3945. "tried downloading descriptors recently. Downloading.",
  3946. descname);
  3947. }
  3948. }
  3949. }
  3950. }
  3951. if (! should_delay && n_downloadable) {
  3952. int i, n_per_request;
  3953. const char *req_plural = "", *rtr_plural = "";
  3954. int pds_flags = PDS_RETRY_IF_NO_SERVERS;
  3955. if (! authdir_mode_any_nonhidserv(options)) {
  3956. /* If we wind up going to the authorities, we want to only open one
  3957. * connection to each authority at a time, so that we don't overload
  3958. * them. We do this by setting PDS_NO_EXISTING_SERVERDESC_FETCH
  3959. * regardless of whether we're a cache or not; it gets ignored if we're
  3960. * not calling router_pick_trusteddirserver.
  3961. *
  3962. * Setting this flag can make initiate_descriptor_downloads() ignore
  3963. * requests. We need to make sure that we do in fact call
  3964. * update_router_descriptor_downloads() later on, once the connections
  3965. * have succeeded or failed.
  3966. */
  3967. pds_flags |= (purpose == DIR_PURPOSE_FETCH_MICRODESC) ?
  3968. PDS_NO_EXISTING_MICRODESC_FETCH :
  3969. PDS_NO_EXISTING_SERVERDESC_FETCH;
  3970. }
  3971. n_per_request = CEIL_DIV(n_downloadable, MIN_REQUESTS);
  3972. if (purpose == DIR_PURPOSE_FETCH_MICRODESC) {
  3973. if (n_per_request > MAX_MICRODESC_DL_PER_REQUEST)
  3974. n_per_request = MAX_MICRODESC_DL_PER_REQUEST;
  3975. } else {
  3976. if (n_per_request > MAX_DL_PER_REQUEST)
  3977. n_per_request = MAX_DL_PER_REQUEST;
  3978. }
  3979. if (n_per_request < MIN_DL_PER_REQUEST)
  3980. n_per_request = MIN_DL_PER_REQUEST;
  3981. if (n_downloadable > n_per_request)
  3982. req_plural = rtr_plural = "s";
  3983. else if (n_downloadable > 1)
  3984. rtr_plural = "s";
  3985. log_info(LD_DIR,
  3986. "Launching %d request%s for %d %s%s, %d at a time",
  3987. CEIL_DIV(n_downloadable, n_per_request), req_plural,
  3988. n_downloadable, descname, rtr_plural, n_per_request);
  3989. smartlist_sort_digests(downloadable);
  3990. for (i=0; i < n_downloadable; i += n_per_request) {
  3991. initiate_descriptor_downloads(source, purpose,
  3992. downloadable, i, i+n_per_request,
  3993. pds_flags);
  3994. }
  3995. last_descriptor_download_attempted = now;
  3996. }
  3997. }
  3998. /** For any descriptor that we want that's currently listed in
  3999. * <b>consensus</b>, download it as appropriate. */
  4000. void
  4001. update_consensus_router_descriptor_downloads(time_t now, int is_vote,
  4002. networkstatus_t *consensus)
  4003. {
  4004. const or_options_t *options = get_options();
  4005. digestmap_t *map = NULL;
  4006. smartlist_t *no_longer_old = smartlist_new();
  4007. smartlist_t *downloadable = smartlist_new();
  4008. routerstatus_t *source = NULL;
  4009. int authdir = authdir_mode(options);
  4010. int n_delayed=0, n_have=0, n_would_reject=0, n_wouldnt_use=0,
  4011. n_inprogress=0, n_in_oldrouters=0;
  4012. if (directory_too_idle_to_fetch_descriptors(options, now))
  4013. goto done;
  4014. if (!consensus)
  4015. goto done;
  4016. if (is_vote) {
  4017. /* where's it from, so we know whom to ask for descriptors */
  4018. dir_server_t *ds;
  4019. networkstatus_voter_info_t *voter = smartlist_get(consensus->voters, 0);
  4020. tor_assert(voter);
  4021. ds = trusteddirserver_get_by_v3_auth_digest(voter->identity_digest);
  4022. if (ds)
  4023. source = &(ds->fake_status);
  4024. else
  4025. log_warn(LD_DIR, "couldn't lookup source from vote?");
  4026. }
  4027. map = digestmap_new();
  4028. list_pending_descriptor_downloads(map, 0);
  4029. SMARTLIST_FOREACH_BEGIN(consensus->routerstatus_list, void *, rsp) {
  4030. routerstatus_t *rs =
  4031. is_vote ? &(((vote_routerstatus_t *)rsp)->status) : rsp;
  4032. signed_descriptor_t *sd;
  4033. if ((sd = router_get_by_descriptor_digest(rs->descriptor_digest))) {
  4034. const routerinfo_t *ri;
  4035. ++n_have;
  4036. if (!(ri = router_get_by_id_digest(rs->identity_digest)) ||
  4037. tor_memneq(ri->cache_info.signed_descriptor_digest,
  4038. sd->signed_descriptor_digest, DIGEST_LEN)) {
  4039. /* We have a descriptor with this digest, but either there is no
  4040. * entry in routerlist with the same ID (!ri), or there is one,
  4041. * but the identity digest differs (memneq).
  4042. */
  4043. smartlist_add(no_longer_old, sd);
  4044. ++n_in_oldrouters; /* We have it in old_routers. */
  4045. }
  4046. continue; /* We have it already. */
  4047. }
  4048. if (digestmap_get(map, rs->descriptor_digest)) {
  4049. ++n_inprogress;
  4050. continue; /* We have an in-progress download. */
  4051. }
  4052. if (!download_status_is_ready(&rs->dl_status, now,
  4053. options->TestingDescriptorMaxDownloadTries)) {
  4054. ++n_delayed; /* Not ready for retry. */
  4055. continue;
  4056. }
  4057. if (authdir && dirserv_would_reject_router(rs)) {
  4058. ++n_would_reject;
  4059. continue; /* We would throw it out immediately. */
  4060. }
  4061. if (!directory_caches_dir_info(options) &&
  4062. !client_would_use_router(rs, now, options)) {
  4063. ++n_wouldnt_use;
  4064. continue; /* We would never use it ourself. */
  4065. }
  4066. if (is_vote && source) {
  4067. char time_bufnew[ISO_TIME_LEN+1];
  4068. char time_bufold[ISO_TIME_LEN+1];
  4069. const routerinfo_t *oldrouter;
  4070. oldrouter = router_get_by_id_digest(rs->identity_digest);
  4071. format_iso_time(time_bufnew, rs->published_on);
  4072. if (oldrouter)
  4073. format_iso_time(time_bufold, oldrouter->cache_info.published_on);
  4074. log_info(LD_DIR, "Learned about %s (%s vs %s) from %s's vote (%s)",
  4075. routerstatus_describe(rs),
  4076. time_bufnew,
  4077. oldrouter ? time_bufold : "none",
  4078. source->nickname, oldrouter ? "known" : "unknown");
  4079. }
  4080. smartlist_add(downloadable, rs->descriptor_digest);
  4081. } SMARTLIST_FOREACH_END(rsp);
  4082. if (!authdir_mode_handles_descs(options, ROUTER_PURPOSE_GENERAL)
  4083. && smartlist_len(no_longer_old)) {
  4084. routerlist_t *rl = router_get_routerlist();
  4085. log_info(LD_DIR, "%d router descriptors listed in consensus are "
  4086. "currently in old_routers; making them current.",
  4087. smartlist_len(no_longer_old));
  4088. SMARTLIST_FOREACH_BEGIN(no_longer_old, signed_descriptor_t *, sd) {
  4089. const char *msg;
  4090. was_router_added_t r;
  4091. routerinfo_t *ri = routerlist_reparse_old(rl, sd);
  4092. if (!ri) {
  4093. log_warn(LD_BUG, "Failed to re-parse a router.");
  4094. continue;
  4095. }
  4096. r = router_add_to_routerlist(ri, &msg, 1, 0);
  4097. if (WRA_WAS_OUTDATED(r)) {
  4098. log_warn(LD_DIR, "Couldn't add re-parsed router: %s",
  4099. msg?msg:"???");
  4100. }
  4101. } SMARTLIST_FOREACH_END(sd);
  4102. routerlist_assert_ok(rl);
  4103. }
  4104. log_info(LD_DIR,
  4105. "%d router descriptors downloadable. %d delayed; %d present "
  4106. "(%d of those were in old_routers); %d would_reject; "
  4107. "%d wouldnt_use; %d in progress.",
  4108. smartlist_len(downloadable), n_delayed, n_have, n_in_oldrouters,
  4109. n_would_reject, n_wouldnt_use, n_inprogress);
  4110. launch_descriptor_downloads(DIR_PURPOSE_FETCH_SERVERDESC,
  4111. downloadable, source, now);
  4112. digestmap_free(map, NULL);
  4113. done:
  4114. smartlist_free(downloadable);
  4115. smartlist_free(no_longer_old);
  4116. }
  4117. /** How often should we launch a server/authority request to be sure of getting
  4118. * a guess for our IP? */
  4119. /*XXXX024 this info should come from netinfo cells or something, or we should
  4120. * do this only when we aren't seeing incoming data. see bug 652. */
  4121. #define DUMMY_DOWNLOAD_INTERVAL (20*60)
  4122. /** As needed, launch a dummy router descriptor fetch to see if our
  4123. * address has changed. */
  4124. static void
  4125. launch_dummy_descriptor_download_as_needed(time_t now,
  4126. const or_options_t *options)
  4127. {
  4128. static time_t last_dummy_download = 0;
  4129. /* XXXX024 we could be smarter here; see notes on bug 652. */
  4130. /* If we're a server that doesn't have a configured address, we rely on
  4131. * directory fetches to learn when our address changes. So if we haven't
  4132. * tried to get any routerdescs in a long time, try a dummy fetch now. */
  4133. if (!options->Address &&
  4134. server_mode(options) &&
  4135. last_descriptor_download_attempted + DUMMY_DOWNLOAD_INTERVAL < now &&
  4136. last_dummy_download + DUMMY_DOWNLOAD_INTERVAL < now) {
  4137. last_dummy_download = now;
  4138. directory_get_from_dirserver(DIR_PURPOSE_FETCH_SERVERDESC,
  4139. ROUTER_PURPOSE_GENERAL, "authority.z",
  4140. PDS_RETRY_IF_NO_SERVERS);
  4141. }
  4142. }
  4143. /** Launch downloads for router status as needed. */
  4144. void
  4145. update_router_descriptor_downloads(time_t now)
  4146. {
  4147. const or_options_t *options = get_options();
  4148. if (should_delay_dir_fetches(options))
  4149. return;
  4150. if (!we_fetch_router_descriptors(options))
  4151. return;
  4152. update_consensus_router_descriptor_downloads(now, 0,
  4153. networkstatus_get_reasonably_live_consensus(now, FLAV_NS));
  4154. }
  4155. /** Launch extrainfo downloads as needed. */
  4156. void
  4157. update_extrainfo_downloads(time_t now)
  4158. {
  4159. const or_options_t *options = get_options();
  4160. routerlist_t *rl;
  4161. smartlist_t *wanted;
  4162. digestmap_t *pending;
  4163. int old_routers, i;
  4164. int n_no_ei = 0, n_pending = 0, n_have = 0, n_delay = 0;
  4165. if (! options->DownloadExtraInfo)
  4166. return;
  4167. if (should_delay_dir_fetches(options))
  4168. return;
  4169. if (!router_have_minimum_dir_info())
  4170. return;
  4171. pending = digestmap_new();
  4172. list_pending_descriptor_downloads(pending, 1);
  4173. rl = router_get_routerlist();
  4174. wanted = smartlist_new();
  4175. for (old_routers = 0; old_routers < 2; ++old_routers) {
  4176. smartlist_t *lst = old_routers ? rl->old_routers : rl->routers;
  4177. for (i = 0; i < smartlist_len(lst); ++i) {
  4178. signed_descriptor_t *sd;
  4179. char *d;
  4180. if (old_routers)
  4181. sd = smartlist_get(lst, i);
  4182. else
  4183. sd = &((routerinfo_t*)smartlist_get(lst, i))->cache_info;
  4184. if (sd->is_extrainfo)
  4185. continue; /* This should never happen. */
  4186. if (old_routers && !router_get_by_id_digest(sd->identity_digest))
  4187. continue; /* Couldn't check the signature if we got it. */
  4188. if (sd->extrainfo_is_bogus)
  4189. continue;
  4190. d = sd->extra_info_digest;
  4191. if (tor_digest_is_zero(d)) {
  4192. ++n_no_ei;
  4193. continue;
  4194. }
  4195. if (eimap_get(rl->extra_info_map, d)) {
  4196. ++n_have;
  4197. continue;
  4198. }
  4199. if (!download_status_is_ready(&sd->ei_dl_status, now,
  4200. options->TestingDescriptorMaxDownloadTries)) {
  4201. ++n_delay;
  4202. continue;
  4203. }
  4204. if (digestmap_get(pending, d)) {
  4205. ++n_pending;
  4206. continue;
  4207. }
  4208. smartlist_add(wanted, d);
  4209. }
  4210. }
  4211. digestmap_free(pending, NULL);
  4212. log_info(LD_DIR, "Extrainfo download status: %d router with no ei, %d "
  4213. "with present ei, %d delaying, %d pending, %d downloadable.",
  4214. n_no_ei, n_have, n_delay, n_pending, smartlist_len(wanted));
  4215. smartlist_shuffle(wanted);
  4216. for (i = 0; i < smartlist_len(wanted); i += MAX_DL_PER_REQUEST) {
  4217. initiate_descriptor_downloads(NULL, DIR_PURPOSE_FETCH_EXTRAINFO,
  4218. wanted, i, i + MAX_DL_PER_REQUEST,
  4219. PDS_RETRY_IF_NO_SERVERS|PDS_NO_EXISTING_SERVERDESC_FETCH);
  4220. }
  4221. smartlist_free(wanted);
  4222. }
  4223. /** Reset the descriptor download failure count on all routers, so that we
  4224. * can retry any long-failed routers immediately.
  4225. */
  4226. void
  4227. router_reset_descriptor_download_failures(void)
  4228. {
  4229. networkstatus_reset_download_failures();
  4230. last_descriptor_download_attempted = 0;
  4231. if (!routerlist)
  4232. return;
  4233. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, ri,
  4234. {
  4235. download_status_reset(&ri->cache_info.ei_dl_status);
  4236. });
  4237. SMARTLIST_FOREACH(routerlist->old_routers, signed_descriptor_t *, sd,
  4238. {
  4239. download_status_reset(&sd->ei_dl_status);
  4240. });
  4241. }
  4242. /** Any changes in a router descriptor's publication time larger than this are
  4243. * automatically non-cosmetic. */
  4244. #define ROUTER_MAX_COSMETIC_TIME_DIFFERENCE (2*60*60)
  4245. /** We allow uptime to vary from how much it ought to be by this much. */
  4246. #define ROUTER_ALLOW_UPTIME_DRIFT (6*60*60)
  4247. /** Return true iff the only differences between r1 and r2 are such that
  4248. * would not cause a recent (post 0.1.1.6) dirserver to republish.
  4249. */
  4250. int
  4251. router_differences_are_cosmetic(const routerinfo_t *r1, const routerinfo_t *r2)
  4252. {
  4253. time_t r1pub, r2pub;
  4254. long time_difference;
  4255. tor_assert(r1 && r2);
  4256. /* r1 should be the one that was published first. */
  4257. if (r1->cache_info.published_on > r2->cache_info.published_on) {
  4258. const routerinfo_t *ri_tmp = r2;
  4259. r2 = r1;
  4260. r1 = ri_tmp;
  4261. }
  4262. /* If any key fields differ, they're different. */
  4263. if (strcasecmp(r1->address, r2->address) ||
  4264. strcasecmp(r1->nickname, r2->nickname) ||
  4265. r1->or_port != r2->or_port ||
  4266. !tor_addr_eq(&r1->ipv6_addr, &r2->ipv6_addr) ||
  4267. r1->ipv6_orport != r2->ipv6_orport ||
  4268. r1->dir_port != r2->dir_port ||
  4269. r1->purpose != r2->purpose ||
  4270. !crypto_pk_eq_keys(r1->onion_pkey, r2->onion_pkey) ||
  4271. !crypto_pk_eq_keys(r1->identity_pkey, r2->identity_pkey) ||
  4272. strcasecmp(r1->platform, r2->platform) ||
  4273. (r1->contact_info && !r2->contact_info) || /* contact_info is optional */
  4274. (!r1->contact_info && r2->contact_info) ||
  4275. (r1->contact_info && r2->contact_info &&
  4276. strcasecmp(r1->contact_info, r2->contact_info)) ||
  4277. r1->is_hibernating != r2->is_hibernating ||
  4278. cmp_addr_policies(r1->exit_policy, r2->exit_policy))
  4279. return 0;
  4280. if ((r1->declared_family == NULL) != (r2->declared_family == NULL))
  4281. return 0;
  4282. if (r1->declared_family && r2->declared_family) {
  4283. int i, n;
  4284. if (smartlist_len(r1->declared_family)!=smartlist_len(r2->declared_family))
  4285. return 0;
  4286. n = smartlist_len(r1->declared_family);
  4287. for (i=0; i < n; ++i) {
  4288. if (strcasecmp(smartlist_get(r1->declared_family, i),
  4289. smartlist_get(r2->declared_family, i)))
  4290. return 0;
  4291. }
  4292. }
  4293. /* Did bandwidth change a lot? */
  4294. if ((r1->bandwidthcapacity < r2->bandwidthcapacity/2) ||
  4295. (r2->bandwidthcapacity < r1->bandwidthcapacity/2))
  4296. return 0;
  4297. /* Did the bandwidthrate or bandwidthburst change? */
  4298. if ((r1->bandwidthrate != r2->bandwidthrate) ||
  4299. (r1->bandwidthburst != r2->bandwidthburst))
  4300. return 0;
  4301. /* Did more than 12 hours pass? */
  4302. if (r1->cache_info.published_on + ROUTER_MAX_COSMETIC_TIME_DIFFERENCE
  4303. < r2->cache_info.published_on)
  4304. return 0;
  4305. /* Did uptime fail to increase by approximately the amount we would think,
  4306. * give or take some slop? */
  4307. r1pub = r1->cache_info.published_on;
  4308. r2pub = r2->cache_info.published_on;
  4309. time_difference = labs(r2->uptime - (r1->uptime + (r2pub - r1pub)));
  4310. if (time_difference > ROUTER_ALLOW_UPTIME_DRIFT &&
  4311. time_difference > r1->uptime * .05 &&
  4312. time_difference > r2->uptime * .05)
  4313. return 0;
  4314. /* Otherwise, the difference is cosmetic. */
  4315. return 1;
  4316. }
  4317. /** Check whether <b>ri</b> (a.k.a. sd) is a router compatible with the
  4318. * extrainfo document
  4319. * <b>ei</b>. If no router is compatible with <b>ei</b>, <b>ei</b> should be
  4320. * dropped. Return 0 for "compatible", return 1 for "reject, and inform
  4321. * whoever uploaded <b>ei</b>, and return -1 for "reject silently.". If
  4322. * <b>msg</b> is present, set *<b>msg</b> to a description of the
  4323. * incompatibility (if any).
  4324. **/
  4325. int
  4326. routerinfo_incompatible_with_extrainfo(const routerinfo_t *ri,
  4327. extrainfo_t *ei,
  4328. signed_descriptor_t *sd,
  4329. const char **msg)
  4330. {
  4331. int digest_matches, r=1;
  4332. tor_assert(ri);
  4333. tor_assert(ei);
  4334. if (!sd)
  4335. sd = (signed_descriptor_t*)&ri->cache_info;
  4336. if (ei->bad_sig) {
  4337. if (msg) *msg = "Extrainfo signature was bad, or signed with wrong key.";
  4338. return 1;
  4339. }
  4340. digest_matches = tor_memeq(ei->cache_info.signed_descriptor_digest,
  4341. sd->extra_info_digest, DIGEST_LEN);
  4342. /* The identity must match exactly to have been generated at the same time
  4343. * by the same router. */
  4344. if (tor_memneq(ri->cache_info.identity_digest,
  4345. ei->cache_info.identity_digest,
  4346. DIGEST_LEN)) {
  4347. if (msg) *msg = "Extrainfo nickname or identity did not match routerinfo";
  4348. goto err; /* different servers */
  4349. }
  4350. if (ei->pending_sig) {
  4351. char signed_digest[128];
  4352. if (crypto_pk_public_checksig(ri->identity_pkey,
  4353. signed_digest, sizeof(signed_digest),
  4354. ei->pending_sig, ei->pending_sig_len) != DIGEST_LEN ||
  4355. tor_memneq(signed_digest, ei->cache_info.signed_descriptor_digest,
  4356. DIGEST_LEN)) {
  4357. ei->bad_sig = 1;
  4358. tor_free(ei->pending_sig);
  4359. if (msg) *msg = "Extrainfo signature bad, or signed with wrong key";
  4360. goto err; /* Bad signature, or no match. */
  4361. }
  4362. ei->cache_info.send_unencrypted = ri->cache_info.send_unencrypted;
  4363. tor_free(ei->pending_sig);
  4364. }
  4365. if (ei->cache_info.published_on < sd->published_on) {
  4366. if (msg) *msg = "Extrainfo published time did not match routerdesc";
  4367. goto err;
  4368. } else if (ei->cache_info.published_on > sd->published_on) {
  4369. if (msg) *msg = "Extrainfo published time did not match routerdesc";
  4370. r = -1;
  4371. goto err;
  4372. }
  4373. if (!digest_matches) {
  4374. if (msg) *msg = "Extrainfo digest did not match value from routerdesc";
  4375. goto err; /* Digest doesn't match declared value. */
  4376. }
  4377. return 0;
  4378. err:
  4379. if (digest_matches) {
  4380. /* This signature was okay, and the digest was right: This is indeed the
  4381. * corresponding extrainfo. But insanely, it doesn't match the routerinfo
  4382. * that lists it. Don't try to fetch this one again. */
  4383. sd->extrainfo_is_bogus = 1;
  4384. }
  4385. return r;
  4386. }
  4387. /** Assert that the internal representation of <b>rl</b> is
  4388. * self-consistent. */
  4389. void
  4390. routerlist_assert_ok(const routerlist_t *rl)
  4391. {
  4392. routerinfo_t *r2;
  4393. signed_descriptor_t *sd2;
  4394. if (!rl)
  4395. return;
  4396. SMARTLIST_FOREACH_BEGIN(rl->routers, routerinfo_t *, r) {
  4397. r2 = rimap_get(rl->identity_map, r->cache_info.identity_digest);
  4398. tor_assert(r == r2);
  4399. sd2 = sdmap_get(rl->desc_digest_map,
  4400. r->cache_info.signed_descriptor_digest);
  4401. tor_assert(&(r->cache_info) == sd2);
  4402. tor_assert(r->cache_info.routerlist_index == r_sl_idx);
  4403. /* XXXX
  4404. *
  4405. * Hoo boy. We need to fix this one, and the fix is a bit tricky, so
  4406. * commenting this out is just a band-aid.
  4407. *
  4408. * The problem is that, although well-behaved router descriptors
  4409. * should never have the same value for their extra_info_digest, it's
  4410. * possible for ill-behaved routers to claim whatever they like there.
  4411. *
  4412. * The real answer is to trash desc_by_eid_map and instead have
  4413. * something that indicates for a given extra-info digest we want,
  4414. * what its download status is. We'll do that as a part of routerlist
  4415. * refactoring once consensus directories are in. For now,
  4416. * this rep violation is probably harmless: an adversary can make us
  4417. * reset our retry count for an extrainfo, but that's not the end
  4418. * of the world. Changing the representation in 0.2.0.x would just
  4419. * destabilize the codebase.
  4420. if (!tor_digest_is_zero(r->cache_info.extra_info_digest)) {
  4421. signed_descriptor_t *sd3 =
  4422. sdmap_get(rl->desc_by_eid_map, r->cache_info.extra_info_digest);
  4423. tor_assert(sd3 == &(r->cache_info));
  4424. }
  4425. */
  4426. } SMARTLIST_FOREACH_END(r);
  4427. SMARTLIST_FOREACH_BEGIN(rl->old_routers, signed_descriptor_t *, sd) {
  4428. r2 = rimap_get(rl->identity_map, sd->identity_digest);
  4429. tor_assert(sd != &(r2->cache_info));
  4430. sd2 = sdmap_get(rl->desc_digest_map, sd->signed_descriptor_digest);
  4431. tor_assert(sd == sd2);
  4432. tor_assert(sd->routerlist_index == sd_sl_idx);
  4433. /* XXXX see above.
  4434. if (!tor_digest_is_zero(sd->extra_info_digest)) {
  4435. signed_descriptor_t *sd3 =
  4436. sdmap_get(rl->desc_by_eid_map, sd->extra_info_digest);
  4437. tor_assert(sd3 == sd);
  4438. }
  4439. */
  4440. } SMARTLIST_FOREACH_END(sd);
  4441. RIMAP_FOREACH(rl->identity_map, d, r) {
  4442. tor_assert(tor_memeq(r->cache_info.identity_digest, d, DIGEST_LEN));
  4443. } DIGESTMAP_FOREACH_END;
  4444. SDMAP_FOREACH(rl->desc_digest_map, d, sd) {
  4445. tor_assert(tor_memeq(sd->signed_descriptor_digest, d, DIGEST_LEN));
  4446. } DIGESTMAP_FOREACH_END;
  4447. SDMAP_FOREACH(rl->desc_by_eid_map, d, sd) {
  4448. tor_assert(!tor_digest_is_zero(d));
  4449. tor_assert(sd);
  4450. tor_assert(tor_memeq(sd->extra_info_digest, d, DIGEST_LEN));
  4451. } DIGESTMAP_FOREACH_END;
  4452. EIMAP_FOREACH(rl->extra_info_map, d, ei) {
  4453. signed_descriptor_t *sd;
  4454. tor_assert(tor_memeq(ei->cache_info.signed_descriptor_digest,
  4455. d, DIGEST_LEN));
  4456. sd = sdmap_get(rl->desc_by_eid_map,
  4457. ei->cache_info.signed_descriptor_digest);
  4458. // tor_assert(sd); // XXXX see above
  4459. if (sd) {
  4460. tor_assert(tor_memeq(ei->cache_info.signed_descriptor_digest,
  4461. sd->extra_info_digest, DIGEST_LEN));
  4462. }
  4463. } DIGESTMAP_FOREACH_END;
  4464. }
  4465. /** Allocate and return a new string representing the contact info
  4466. * and platform string for <b>router</b>,
  4467. * surrounded by quotes and using standard C escapes.
  4468. *
  4469. * THIS FUNCTION IS NOT REENTRANT. Don't call it from outside the main
  4470. * thread. Also, each call invalidates the last-returned value, so don't
  4471. * try log_warn(LD_GENERAL, "%s %s", esc_router_info(a), esc_router_info(b));
  4472. *
  4473. * If <b>router</b> is NULL, it just frees its internal memory and returns.
  4474. */
  4475. const char *
  4476. esc_router_info(const routerinfo_t *router)
  4477. {
  4478. static char *info=NULL;
  4479. char *esc_contact, *esc_platform;
  4480. tor_free(info);
  4481. if (!router)
  4482. return NULL; /* we're exiting; just free the memory we use */
  4483. esc_contact = esc_for_log(router->contact_info);
  4484. esc_platform = esc_for_log(router->platform);
  4485. tor_asprintf(&info, "Contact %s, Platform %s", esc_contact, esc_platform);
  4486. tor_free(esc_contact);
  4487. tor_free(esc_platform);
  4488. return info;
  4489. }
  4490. /** Helper for sorting: compare two routerinfos by their identity
  4491. * digest. */
  4492. static int
  4493. compare_routerinfo_by_id_digest_(const void **a, const void **b)
  4494. {
  4495. routerinfo_t *first = *(routerinfo_t **)a, *second = *(routerinfo_t **)b;
  4496. return fast_memcmp(first->cache_info.identity_digest,
  4497. second->cache_info.identity_digest,
  4498. DIGEST_LEN);
  4499. }
  4500. /** Sort a list of routerinfo_t in ascending order of identity digest. */
  4501. void
  4502. routers_sort_by_identity(smartlist_t *routers)
  4503. {
  4504. smartlist_sort(routers, compare_routerinfo_by_id_digest_);
  4505. }
  4506. /** Called when we change a node set, or when we reload the geoip IPv4 list:
  4507. * recompute all country info in all configuration node sets and in the
  4508. * routerlist. */
  4509. void
  4510. refresh_all_country_info(void)
  4511. {
  4512. const or_options_t *options = get_options();
  4513. if (options->EntryNodes)
  4514. routerset_refresh_countries(options->EntryNodes);
  4515. if (options->ExitNodes)
  4516. routerset_refresh_countries(options->ExitNodes);
  4517. if (options->ExcludeNodes)
  4518. routerset_refresh_countries(options->ExcludeNodes);
  4519. if (options->ExcludeExitNodes)
  4520. routerset_refresh_countries(options->ExcludeExitNodes);
  4521. if (options->ExcludeExitNodesUnion_)
  4522. routerset_refresh_countries(options->ExcludeExitNodesUnion_);
  4523. nodelist_refresh_countries();
  4524. }
  4525. /** Determine the routers that are responsible for <b>id</b> (binary) and
  4526. * add pointers to those routers' routerstatus_t to <b>responsible_dirs</b>.
  4527. * Return -1 if we're returning an empty smartlist, else return 0.
  4528. */
  4529. int
  4530. hid_serv_get_responsible_directories(smartlist_t *responsible_dirs,
  4531. const char *id)
  4532. {
  4533. int start, found, n_added = 0, i;
  4534. networkstatus_t *c = networkstatus_get_latest_consensus();
  4535. if (!c || !smartlist_len(c->routerstatus_list)) {
  4536. log_warn(LD_REND, "We don't have a consensus, so we can't perform v2 "
  4537. "rendezvous operations.");
  4538. return -1;
  4539. }
  4540. tor_assert(id);
  4541. start = networkstatus_vote_find_entry_idx(c, id, &found);
  4542. if (start == smartlist_len(c->routerstatus_list)) start = 0;
  4543. i = start;
  4544. do {
  4545. routerstatus_t *r = smartlist_get(c->routerstatus_list, i);
  4546. if (r->is_hs_dir) {
  4547. smartlist_add(responsible_dirs, r);
  4548. if (++n_added == REND_NUMBER_OF_CONSECUTIVE_REPLICAS)
  4549. return 0;
  4550. }
  4551. if (++i == smartlist_len(c->routerstatus_list))
  4552. i = 0;
  4553. } while (i != start);
  4554. /* Even though we don't have the desired number of hidden service
  4555. * directories, be happy if we got any. */
  4556. return smartlist_len(responsible_dirs) ? 0 : -1;
  4557. }
  4558. /** Return true if this node is currently acting as hidden service
  4559. * directory, false otherwise. */
  4560. int
  4561. hid_serv_acting_as_directory(void)
  4562. {
  4563. const routerinfo_t *me = router_get_my_routerinfo();
  4564. if (!me)
  4565. return 0;
  4566. if (!get_options()->HidServDirectoryV2) {
  4567. log_info(LD_REND, "We are not acting as hidden service directory, "
  4568. "because we have not been configured as such.");
  4569. return 0;
  4570. }
  4571. return 1;
  4572. }
  4573. /** Return true if this node is responsible for storing the descriptor ID
  4574. * in <b>query</b> and false otherwise. */
  4575. int
  4576. hid_serv_responsible_for_desc_id(const char *query)
  4577. {
  4578. const routerinfo_t *me;
  4579. routerstatus_t *last_rs;
  4580. const char *my_id, *last_id;
  4581. int result;
  4582. smartlist_t *responsible;
  4583. if (!hid_serv_acting_as_directory())
  4584. return 0;
  4585. if (!(me = router_get_my_routerinfo()))
  4586. return 0; /* This is redundant, but let's be paranoid. */
  4587. my_id = me->cache_info.identity_digest;
  4588. responsible = smartlist_new();
  4589. if (hid_serv_get_responsible_directories(responsible, query) < 0) {
  4590. smartlist_free(responsible);
  4591. return 0;
  4592. }
  4593. last_rs = smartlist_get(responsible, smartlist_len(responsible)-1);
  4594. last_id = last_rs->identity_digest;
  4595. result = rend_id_is_in_interval(my_id, query, last_id);
  4596. smartlist_free(responsible);
  4597. return result;
  4598. }