routerlist.c 179 KB

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