routerlist.c 173 KB

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