routerlist.c 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. const char routerlist_c_id[] =
  7. "$Id$";
  8. /**
  9. * \file routerlist.c
  10. * \brief Code to
  11. * maintain and access the global list of routerinfos for known
  12. * servers.
  13. **/
  14. #include "or.h"
  15. // #define DEBUG_ROUTERLIST
  16. /****************************************************************************/
  17. /* static function prototypes */
  18. static routerstatus_t *router_pick_directory_server_impl(int requireother,
  19. int fascistfirewall,
  20. int prefer_tunnel,
  21. authority_type_t auth);
  22. static routerstatus_t *router_pick_trusteddirserver_impl(
  23. authority_type_t type, int requireother,
  24. int fascistfirewall, int prefer_tunnel);
  25. static void mark_all_trusteddirservers_up(void);
  26. static int router_nickname_matches(routerinfo_t *router, const char *nickname);
  27. static void routerstatus_list_update_from_networkstatus(time_t now);
  28. static void local_routerstatus_free(local_routerstatus_t *rs);
  29. static void trusted_dir_server_free(trusted_dir_server_t *ds);
  30. static void update_networkstatus_cache_downloads(time_t now);
  31. static void update_networkstatus_client_downloads(time_t now);
  32. static int signed_desc_digest_is_recognized(signed_descriptor_t *desc);
  33. static int have_tried_downloading_all_statuses(int n_failures);
  34. static routerstatus_t *networkstatus_find_entry(networkstatus_t *ns,
  35. const char *digest);
  36. static local_routerstatus_t *router_get_combined_status_by_nickname(
  37. const char *nickname,
  38. int warn_if_unnamed);
  39. static void update_router_have_minimum_dir_info(void);
  40. static void router_dir_info_changed(void);
  41. DECLARE_TYPED_DIGESTMAP_FNS(sdmap_, digest_sd_map_t, signed_descriptor_t)
  42. DECLARE_TYPED_DIGESTMAP_FNS(rimap_, digest_ri_map_t, routerinfo_t)
  43. DECLARE_TYPED_DIGESTMAP_FNS(eimap_, digest_ei_map_t, extrainfo_t)
  44. /****************************************************************************/
  45. /** Global list of a trusted_dir_server_t object for each trusted directory
  46. * server. */
  47. static smartlist_t *trusted_dir_servers = NULL;
  48. /** True iff the key certificate in at least one member of
  49. * <b>trusted_dir_server_t</b> has changed since we last flushed the
  50. * certificates to disk. */
  51. static int trusted_dir_servers_certs_changed = 0;
  52. /** Global list of all of the routers that we know about. */
  53. static routerlist_t *routerlist = NULL;
  54. /** Global list of all of the current network_status documents that we know
  55. * about. This list is kept sorted by published_on. */
  56. static smartlist_t *networkstatus_list = NULL;
  57. /** Global list of local_routerstatus_t for each router, known or unknown.
  58. * Kept sorted by digest. */
  59. static smartlist_t *routerstatus_list = NULL;
  60. /** Map from descriptor digest to a member of routerstatus_list: used to
  61. * update download status when a download fails. */
  62. static digestmap_t *routerstatus_by_desc_digest_map = NULL;
  63. /** Map from lowercase nickname to digest of named server, if any. */
  64. static strmap_t *named_server_map = NULL;
  65. /** True iff any member of networkstatus_list has changed since the last time
  66. * we called routerstatus_list_update_from_networkstatus(). */
  67. static int networkstatus_list_has_changed = 0;
  68. /** True iff any element of routerstatus_list has changed since the last
  69. * time we called routers_update_all_from_networkstatus().*/
  70. static int routerstatus_list_has_changed = 0;
  71. /** List of strings for nicknames we've already warned about and that are
  72. * still unknown / unavailable. */
  73. static smartlist_t *warned_nicknames = NULL;
  74. /** List of strings for nicknames or fingerprints we've already warned about
  75. * and that are still conflicted. */
  76. static smartlist_t *warned_conflicts = NULL;
  77. /** The last time we tried to download any routerdesc, or 0 for "never". We
  78. * use this to rate-limit download attempts when the number of routerdescs to
  79. * download is low. */
  80. static time_t last_routerdesc_download_attempted = 0;
  81. /** The last time we tried to download a networkstatus, or 0 for "never". We
  82. * use this to rate-limit download attempts for directory caches (including
  83. * mirrors). Clients don't use this now. */
  84. static time_t last_networkstatus_download_attempted = 0;
  85. /** True iff we have logged a warning about this OR not being valid or
  86. * not being named. */
  87. static int have_warned_about_invalid_status = 0;
  88. /** True iff we have logged a warning about this OR's version being older than
  89. * listed by the authorities */
  90. static int have_warned_about_old_version = 0;
  91. /** True iff we have logged a warning about this OR's version being newer than
  92. * listed by the authorities */
  93. static int have_warned_about_new_version = 0;
  94. /** Return the number of directory authorities whose type matches some bit set
  95. * in <b>type</b> */
  96. INLINE int
  97. get_n_authorities(authority_type_t type)
  98. {
  99. int n = 0;
  100. if (!trusted_dir_servers)
  101. return 0;
  102. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  103. if (ds->type & type)
  104. ++n);
  105. return n;
  106. }
  107. #define get_n_v2_authorities() get_n_authorities(V2_AUTHORITY)
  108. /** Repopulate our list of network_status_t objects from the list cached on
  109. * disk. Return 0 on success, -1 on failure. */
  110. int
  111. router_reload_networkstatus(void)
  112. {
  113. char filename[512];
  114. smartlist_t *entries;
  115. struct stat st;
  116. char *s;
  117. tor_assert(get_options()->DataDirectory);
  118. if (!networkstatus_list)
  119. networkstatus_list = smartlist_create();
  120. routerlist_check_bug_417();
  121. tor_snprintf(filename,sizeof(filename),"%s"PATH_SEPARATOR"cached-status",
  122. get_options()->DataDirectory);
  123. entries = tor_listdir(filename);
  124. SMARTLIST_FOREACH(entries, const char *, fn, {
  125. char buf[DIGEST_LEN];
  126. if (strlen(fn) != HEX_DIGEST_LEN ||
  127. base16_decode(buf, sizeof(buf), fn, strlen(fn))) {
  128. log_info(LD_DIR,
  129. "Skipping cached-status file with unexpected name \"%s\"",fn);
  130. continue;
  131. }
  132. tor_snprintf(filename,sizeof(filename),
  133. "%s"PATH_SEPARATOR"cached-status"PATH_SEPARATOR"%s",
  134. get_options()->DataDirectory, fn);
  135. s = read_file_to_str(filename, 0, &st);
  136. if (s) {
  137. if (router_set_networkstatus(s, st.st_mtime, NS_FROM_CACHE, NULL)<0) {
  138. log_warn(LD_FS, "Couldn't load networkstatus from \"%s\"",filename);
  139. }
  140. tor_free(s);
  141. }
  142. });
  143. SMARTLIST_FOREACH(entries, char *, fn, tor_free(fn));
  144. smartlist_free(entries);
  145. networkstatus_list_clean(time(NULL));
  146. routers_update_all_from_networkstatus(time(NULL));
  147. routerlist_check_bug_417();
  148. return 0;
  149. }
  150. /** Reload the cached v3 key certificates from the cached-certs file in
  151. * the data directory. Return 0 on success, -1 on failure. */
  152. int
  153. trusted_dirs_reload_certs(void)
  154. {
  155. char filename[512];
  156. char *contents;
  157. int r;
  158. tor_snprintf(filename,sizeof(filename),"%s"PATH_SEPARATOR"cached-certs",
  159. get_options()->DataDirectory);
  160. contents = read_file_to_str(filename, 0, NULL);
  161. if (!contents)
  162. return -1;
  163. r = trusted_dirs_load_certs_from_string(contents, 1);
  164. tor_free(contents);
  165. return r;
  166. }
  167. /** Load a bunch of new key certificates from the string <b>contents</b>. If
  168. * <b>from_store</b> is true, the certificates are from the cache, and we
  169. * don't need to flush them to disk. If <b>from_store</b> is false, we need
  170. * to flush any changed certificates to disk. Return 0 on success, -1 on
  171. * failure. */
  172. int
  173. trusted_dirs_load_certs_from_string(const char *contents, int from_store)
  174. {
  175. trusted_dir_server_t *ds;
  176. const char *s, *eos;
  177. for (s = contents; *s; s = eos) {
  178. authority_cert_t *cert = authority_cert_parse_from_string(s, &eos);
  179. if (!cert)
  180. break;
  181. ds = trusteddirserver_get_by_v3_auth_digest(
  182. cert->cache_info.identity_digest);
  183. if (!ds) {
  184. log_info(LD_DIR, "Found cached certificate whose key didn't match "
  185. "any v3 authority we recognized; skipping.");
  186. authority_cert_free(cert);
  187. continue;
  188. }
  189. if (ds->v3_cert) {
  190. if (ds->v3_cert->expires < cert->expires) {
  191. authority_cert_free(ds->v3_cert);
  192. ds->v3_cert = NULL; /* redundant, but let's be safe. */
  193. } else {
  194. /* This also covers the case where the certificate is the same
  195. * as the one we have. */
  196. authority_cert_free(cert);
  197. continue;
  198. }
  199. }
  200. cert->cache_info.signed_descriptor_body = tor_strndup(s, eos-s);
  201. cert->cache_info.signed_descriptor_len = eos-s;
  202. ds->v3_cert = cert;
  203. if (!from_store)
  204. trusted_dir_servers_certs_changed = 1;
  205. }
  206. return 0;
  207. }
  208. /** Save all v3 key certifiacates to the cached-certs file. */
  209. void
  210. trusted_dirs_flush_certs_to_disk(void)
  211. {
  212. char filename[512];
  213. smartlist_t *chunks = smartlist_create();
  214. tor_snprintf(filename,sizeof(filename),"%s"PATH_SEPARATOR"cached-certs",
  215. get_options()->DataDirectory);
  216. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  217. {
  218. if (ds->v3_cert) {
  219. sized_chunk_t *c = tor_malloc(sizeof(sized_chunk_t));
  220. c->bytes = ds->v3_cert->cache_info.signed_descriptor_body;
  221. c->len = ds->v3_cert->cache_info.signed_descriptor_len;
  222. smartlist_add(chunks, c);
  223. }
  224. });
  225. if (write_chunks_to_file(filename, chunks, 0)) {
  226. log_warn(LD_FS, "Error writing certificates to disk.");
  227. }
  228. SMARTLIST_FOREACH(chunks, sized_chunk_t *, c, tor_free(c));
  229. smartlist_free(chunks);
  230. trusted_dir_servers_certs_changed = 0;
  231. }
  232. /* Router descriptor storage.
  233. *
  234. * Routerdescs are stored in a big file, named "cached-routers". As new
  235. * routerdescs arrive, we append them to a journal file named
  236. * "cached-routers.new".
  237. *
  238. * From time to time, we replace "cached-routers" with a new file containing
  239. * only the live, non-superseded descriptors, and clear cached-routers.new.
  240. *
  241. * On startup, we read both files.
  242. */
  243. /** Information about disk space usage in a cached-routers or cached-extrainfo
  244. * file and its associcated journal. */
  245. typedef struct store_stats_t {
  246. /** The size of the router log, in bytes. */
  247. size_t journal_len;
  248. /** The size of the router store, in bytes. */
  249. size_t store_len;
  250. /** Total bytes dropped since last rebuild: this is space currently
  251. * used in the cache and the journal that could be freed by a rebuild. */
  252. size_t bytes_dropped;
  253. } store_stats_t;
  254. /** Disk usage for cached-routers and cached-routers.new */
  255. static store_stats_t router_store_stats = { 0, 0, 0 };
  256. /** Disk usage for cached-extrainfo and cached-extrainfo.new */
  257. static store_stats_t extrainfo_store_stats = { 0, 0, 0 };
  258. /** Helper: return 1 iff the router log is so big we want to rebuild the
  259. * store. */
  260. static int
  261. router_should_rebuild_store(store_stats_t *stats)
  262. {
  263. if (stats->store_len > (1<<16))
  264. return (stats->journal_len > stats->store_len / 2 ||
  265. stats->bytes_dropped > stats->store_len / 2);
  266. else
  267. return stats->journal_len > (1<<15);
  268. }
  269. /** Add the signed_descriptor_t in <b>desc</b> to the router
  270. * journal; change its saved_location to SAVED_IN_JOURNAL and set its
  271. * offset appropriately.
  272. *
  273. * If <b>purpose</b> isn't ROUTER_PURPOSE_GENERAL or
  274. * EXTRAINFO_PURPOSE_GENERAL, just do nothing. */
  275. static int
  276. signed_desc_append_to_journal(signed_descriptor_t *desc, int purpose)
  277. {
  278. or_options_t *options = get_options();
  279. size_t fname_len = strlen(options->DataDirectory)+32;
  280. char *fname;
  281. const char *body = signed_descriptor_get_body(desc);
  282. size_t len = desc->signed_descriptor_len;
  283. const char *fname_base = purpose == ROUTER_PURPOSE_GENERAL ?
  284. "cached-routers" : "cached-extrainfo";
  285. store_stats_t *stats;
  286. routerlist_check_bug_417();
  287. if (purpose == ROUTER_PURPOSE_GENERAL) {
  288. stats = &router_store_stats;
  289. } else if (purpose == EXTRAINFO_PURPOSE_GENERAL) {
  290. stats = &extrainfo_store_stats;
  291. } else {
  292. /* we shouldn't cache it. be happy and return. */
  293. return 0;
  294. }
  295. fname = tor_malloc(fname_len);
  296. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"%s.new",
  297. options->DataDirectory, fname_base);
  298. tor_assert(len == strlen(body));
  299. if (append_bytes_to_file(fname, body, len, 1)) {
  300. log_warn(LD_FS, "Unable to store router descriptor");
  301. tor_free(fname);
  302. return -1;
  303. }
  304. desc->saved_location = SAVED_IN_JOURNAL;
  305. tor_free(fname);
  306. desc->saved_offset = stats->journal_len;
  307. stats->journal_len += len;
  308. routerlist_check_bug_417();
  309. return 0;
  310. }
  311. /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
  312. * signed_descriptor_t* in *<b>a</b> is older, the same age as, or newer than
  313. * the signed_descriptor_t* in *<b>b</b>. */
  314. static int
  315. _compare_signed_descriptors_by_age(const void **_a, const void **_b)
  316. {
  317. const signed_descriptor_t *r1 = *_a, *r2 = *_b;
  318. return r1->published_on - r2->published_on;
  319. }
  320. /** If the journal is too long, or if <b>force</b> is true, then atomically
  321. * replace the router store with the routers currently in our routerlist, and
  322. * clear the journal. Return 0 on success, -1 on failure.
  323. *
  324. * If <b>extrainfo</b> is true, rebuild the extrainfo store; else rebuild the
  325. * router descriptor store.
  326. */
  327. static int
  328. router_rebuild_store(int force, int extrainfo)
  329. {
  330. or_options_t *options;
  331. size_t fname_len;
  332. smartlist_t *chunk_list = NULL;
  333. char *fname = NULL, *fname_tmp = NULL;
  334. int r = -1;
  335. off_t offset = 0;
  336. smartlist_t *signed_descriptors = NULL;
  337. store_stats_t *stats =
  338. extrainfo ? &extrainfo_store_stats : &router_store_stats;
  339. const char *fname_base =
  340. extrainfo ? "cached-extrainfo" : "cached-routers";
  341. tor_mmap_t **mmap_ptr;
  342. if (!force && !router_should_rebuild_store(stats))
  343. return 0;
  344. if (!routerlist)
  345. return 0;
  346. mmap_ptr =
  347. extrainfo ? &routerlist->mmap_extrainfo : &routerlist->mmap_descriptors;
  348. routerlist_check_bug_417();
  349. routerlist_assert_ok(routerlist);
  350. /* Don't save deadweight. */
  351. routerlist_remove_old_routers();
  352. log_info(LD_DIR, "Rebuilding %s cache",
  353. extrainfo ? "extra-info" : "router descriptor");
  354. options = get_options();
  355. fname_len = strlen(options->DataDirectory)+32;
  356. fname = tor_malloc(fname_len);
  357. fname_tmp = tor_malloc(fname_len);
  358. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"%s",
  359. options->DataDirectory, fname_base);
  360. tor_snprintf(fname_tmp, fname_len, "%s"PATH_SEPARATOR"%s.tmp",
  361. options->DataDirectory, fname_base);
  362. chunk_list = smartlist_create();
  363. /* We sort the routers by age to enhance locality on disk. */
  364. signed_descriptors = smartlist_create();
  365. if (extrainfo) {
  366. eimap_iter_t *iter;
  367. for (iter = eimap_iter_init(routerlist->extra_info_map);
  368. !eimap_iter_done(iter);
  369. iter = eimap_iter_next(routerlist->extra_info_map, iter)) {
  370. const char *key;
  371. extrainfo_t *ei;
  372. eimap_iter_get(iter, &key, &ei);
  373. smartlist_add(signed_descriptors, &ei->cache_info);
  374. }
  375. } else {
  376. smartlist_add_all(signed_descriptors, routerlist->old_routers);
  377. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, ri,
  378. smartlist_add(signed_descriptors, &ri->cache_info));
  379. }
  380. smartlist_sort(signed_descriptors, _compare_signed_descriptors_by_age);
  381. /* Now, add the appropriate members to chunk_list */
  382. SMARTLIST_FOREACH(signed_descriptors, signed_descriptor_t *, sd,
  383. {
  384. sized_chunk_t *c;
  385. const char *body = signed_descriptor_get_body(sd);
  386. if (!body) {
  387. log_warn(LD_BUG, "No descriptor available for router.");
  388. goto done;
  389. }
  390. if (sd->do_not_cache)
  391. continue;
  392. c = tor_malloc(sizeof(sized_chunk_t));
  393. c->bytes = body;
  394. c->len = sd->signed_descriptor_len;
  395. smartlist_add(chunk_list, c);
  396. });
  397. if (write_chunks_to_file(fname_tmp, chunk_list, 1)<0) {
  398. log_warn(LD_FS, "Error writing router store to disk.");
  399. goto done;
  400. }
  401. /* Our mmap is now invalid. */
  402. if (*mmap_ptr) {
  403. tor_munmap_file(*mmap_ptr);
  404. *mmap_ptr = NULL;
  405. }
  406. if (replace_file(fname_tmp, fname)<0) {
  407. log_warn(LD_FS, "Error replacing old router store.");
  408. goto done;
  409. }
  410. *mmap_ptr = tor_mmap_file(fname);
  411. if (! *mmap_ptr)
  412. log_warn(LD_FS, "Unable to mmap new descriptor file at '%s'.",fname);
  413. log_info(LD_DIR, "Reconstructing pointers into cache");
  414. offset = 0;
  415. SMARTLIST_FOREACH(signed_descriptors, signed_descriptor_t *, sd,
  416. {
  417. if (sd->do_not_cache)
  418. continue;
  419. sd->saved_location = SAVED_IN_CACHE;
  420. if (*mmap_ptr) {
  421. tor_free(sd->signed_descriptor_body); // sets it to null
  422. sd->saved_offset = offset;
  423. }
  424. offset += sd->signed_descriptor_len;
  425. signed_descriptor_get_body(sd); /* reconstruct and assert */
  426. });
  427. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"%s.new",
  428. options->DataDirectory, fname_base);
  429. write_str_to_file(fname, "", 1);
  430. r = 0;
  431. stats->store_len = (size_t) offset;
  432. stats->journal_len = 0;
  433. stats->bytes_dropped = 0;
  434. done:
  435. if (signed_descriptors)
  436. smartlist_free(signed_descriptors);
  437. tor_free(fname);
  438. SMARTLIST_FOREACH(chunk_list, sized_chunk_t *, c, tor_free(c));
  439. smartlist_free(chunk_list);
  440. routerlist_check_bug_417();
  441. return r;
  442. }
  443. /** Helper: Reload a cache file and its associated journal, setting metadata
  444. * appropriately. If <b>extrainfo</b> is true, reload the extrainfo store;
  445. * else reload the router descriptor store. */
  446. static int
  447. router_reload_router_list_impl(int extrainfo)
  448. {
  449. or_options_t *options = get_options();
  450. size_t fname_len = strlen(options->DataDirectory)+32;
  451. char *fname = tor_malloc(fname_len), *contents = NULL;
  452. store_stats_t *stats =
  453. extrainfo ? &extrainfo_store_stats : &router_store_stats;
  454. const char *fname_base =
  455. extrainfo ? "cached-extrainfo" : "cached-routers";
  456. tor_mmap_t **mmap_ptr;
  457. struct stat st;
  458. routerlist_check_bug_417();
  459. if (!routerlist)
  460. router_get_routerlist(); /* mallocs and inits it in place */
  461. mmap_ptr =
  462. extrainfo ? &routerlist->mmap_extrainfo : &routerlist->mmap_descriptors;
  463. router_store_stats.journal_len = router_store_stats.store_len = 0;
  464. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"%s",
  465. options->DataDirectory, fname_base);
  466. if (*mmap_ptr) /* get rid of it first */
  467. tor_munmap_file(*mmap_ptr);
  468. *mmap_ptr = NULL;
  469. *mmap_ptr = tor_mmap_file(fname);
  470. if (*mmap_ptr) {
  471. stats->store_len = (*mmap_ptr)->size;
  472. if (extrainfo)
  473. router_load_extrainfo_from_string((*mmap_ptr)->data,
  474. (*mmap_ptr)->data+(*mmap_ptr)->size,
  475. SAVED_IN_CACHE, NULL);
  476. else
  477. router_load_routers_from_string((*mmap_ptr)->data,
  478. (*mmap_ptr)->data+(*mmap_ptr)->size,
  479. SAVED_IN_CACHE, NULL,
  480. ROUTER_PURPOSE_GENERAL);
  481. }
  482. tor_snprintf(fname, fname_len, "%s"PATH_SEPARATOR"%s.new",
  483. options->DataDirectory, fname_base);
  484. if (file_status(fname) == FN_FILE)
  485. contents = read_file_to_str(fname, RFTS_BIN|RFTS_IGNORE_MISSING, &st);
  486. if (contents) {
  487. if (extrainfo)
  488. router_load_extrainfo_from_string(contents, NULL,SAVED_IN_JOURNAL, NULL);
  489. else
  490. router_load_routers_from_string(contents, NULL, SAVED_IN_JOURNAL, NULL,
  491. ROUTER_PURPOSE_GENERAL);
  492. stats->journal_len = (size_t) st.st_size;
  493. tor_free(contents);
  494. }
  495. tor_free(fname);
  496. if (stats->journal_len) {
  497. /* Always clear the journal on startup.*/
  498. router_rebuild_store(1, extrainfo);
  499. } else if (!extrainfo) {
  500. /* Don't cache expired routers. (This is in an else because
  501. * router_rebuild_store() also calls remove_old_routers().) */
  502. routerlist_remove_old_routers();
  503. }
  504. routerlist_check_bug_417();
  505. return 0;
  506. }
  507. /** Load all cached router descriptors and extra-info documents from the
  508. * store. Return 0 on success and -1 on failure.
  509. */
  510. int
  511. router_reload_router_list(void)
  512. {
  513. if (router_reload_router_list_impl(0))
  514. return 1;
  515. if (router_reload_router_list_impl(1))
  516. return 1;
  517. return 0;
  518. }
  519. /** Return a smartlist containing a list of trusted_dir_server_t * for all
  520. * known trusted dirservers. Callers must not modify the list or its
  521. * contents.
  522. */
  523. smartlist_t *
  524. router_get_trusted_dir_servers(void)
  525. {
  526. if (!trusted_dir_servers)
  527. trusted_dir_servers = smartlist_create();
  528. return trusted_dir_servers;
  529. }
  530. /** Try to find a running dirserver. If there are no running dirservers
  531. * in our routerlist and <b>retry_if_no_servers</b> is non-zero,
  532. * set all the authoritative ones as running again, and pick one;
  533. * if there are then no dirservers at all in our routerlist,
  534. * reload the routerlist and try one last time. If for_runningrouters is
  535. * true, then only pick a dirserver that can answer runningrouters queries
  536. * (that is, a trusted dirserver, or one running 0.0.9rc5-cvs or later).
  537. * Don't pick an authority if any non-authority is viable.
  538. * Other args are as in router_pick_directory_server_impl().
  539. */
  540. routerstatus_t *
  541. router_pick_directory_server(int requireother,
  542. int fascistfirewall,
  543. authority_type_t type,
  544. int retry_if_no_servers)
  545. {
  546. routerstatus_t *choice;
  547. int prefer_tunnel = get_options()->PreferTunneledDirConns;
  548. if (!routerlist)
  549. return NULL;
  550. choice = router_pick_directory_server_impl(requireother, fascistfirewall,
  551. prefer_tunnel, type);
  552. if (choice || !retry_if_no_servers)
  553. return choice;
  554. log_info(LD_DIR,
  555. "No reachable router entries for dirservers. "
  556. "Trying them all again.");
  557. /* mark all authdirservers as up again */
  558. mark_all_trusteddirservers_up();
  559. /* try again */
  560. choice = router_pick_directory_server_impl(requireother, fascistfirewall,
  561. prefer_tunnel, type);
  562. if (choice)
  563. return choice;
  564. log_info(LD_DIR,"Still no %s router entries. Reloading and trying again.",
  565. fascistfirewall ? "reachable" : "known");
  566. if (router_reload_router_list()) {
  567. return NULL;
  568. }
  569. /* give it one last try */
  570. choice = router_pick_directory_server_impl(requireother, fascistfirewall,
  571. prefer_tunnel, type);
  572. return choice;
  573. }
  574. /** Return the trusted_dir_server_t for the directory authority whose identity
  575. * key hashes to <b>digest</b>, or NULL if no such authority is known.
  576. */
  577. trusted_dir_server_t *
  578. router_get_trusteddirserver_by_digest(const char *digest)
  579. {
  580. if (!trusted_dir_servers)
  581. return NULL;
  582. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  583. {
  584. if (!memcmp(ds->digest, digest, DIGEST_LEN))
  585. return ds;
  586. });
  587. return NULL;
  588. }
  589. /** Return the trusted_dir_server_t for the directory authority whose identity
  590. * key hashes to <b>digest</b>, or NULL if no such authority is known.
  591. */
  592. trusted_dir_server_t *
  593. trusteddirserver_get_by_v3_auth_digest(const char *digest)
  594. {
  595. if (!trusted_dir_servers)
  596. return NULL;
  597. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  598. {
  599. if (!memcmp(ds->v3_identity_digest, digest, DIGEST_LEN))
  600. return ds;
  601. });
  602. return NULL;
  603. }
  604. /** Try to find a running trusted dirserver. If there are no running
  605. * trusted dirservers and <b>retry_if_no_servers</b> is non-zero,
  606. * set them all as running again, and try again.
  607. * <b>type> specifies the type of authoritative dir we require.
  608. * Other args are as in router_pick_trusteddirserver_impl().
  609. */
  610. routerstatus_t *
  611. router_pick_trusteddirserver(authority_type_t type,
  612. int requireother,
  613. int fascistfirewall,
  614. int retry_if_no_servers)
  615. {
  616. routerstatus_t *choice;
  617. int prefer_tunnel = get_options()->PreferTunneledDirConns;
  618. choice = router_pick_trusteddirserver_impl(type, requireother,
  619. fascistfirewall, prefer_tunnel);
  620. if (choice || !retry_if_no_servers)
  621. return choice;
  622. log_info(LD_DIR,
  623. "No trusted dirservers are reachable. Trying them all again.");
  624. mark_all_trusteddirservers_up();
  625. return router_pick_trusteddirserver_impl(type, requireother,
  626. fascistfirewall, prefer_tunnel);
  627. }
  628. /** How long do we avoid using a directory server after it's given us a 503? */
  629. #define DIR_503_TIMEOUT (60*60)
  630. /** Pick a random running valid directory server/mirror from our
  631. * routerlist.
  632. *
  633. * If <b>fascistfirewall</b>, make sure the router we pick is allowed
  634. * by our firewall options.
  635. * If <b>requireother</b>, it cannot be us. If <b>for_v2_directory</b>,
  636. * choose a directory server new enough to support the v2 directory
  637. * functionality.
  638. * If <b>prefer_tunnel</b>, choose a directory server that is reachable
  639. * and supports BEGIN_DIR cells, if possible.
  640. *
  641. * Don't pick an authority if any non-authorities are viable. Try to
  642. * avoid using servers that are overloaded (have returned 503 recently).
  643. */
  644. static routerstatus_t *
  645. router_pick_directory_server_impl(int requireother, int fascistfirewall,
  646. int prefer_tunnel, authority_type_t type)
  647. {
  648. routerstatus_t *result;
  649. smartlist_t *direct, *tunnel;
  650. smartlist_t *trusted_direct, *trusted_tunnel;
  651. smartlist_t *overloaded_direct, *overloaded_tunnel;
  652. time_t now = time(NULL);
  653. if (!routerstatus_list)
  654. return NULL;
  655. direct = smartlist_create();
  656. tunnel = smartlist_create();
  657. trusted_direct = smartlist_create();
  658. trusted_tunnel = smartlist_create();
  659. overloaded_direct = smartlist_create();
  660. overloaded_tunnel = smartlist_create();
  661. /* Find all the running dirservers we know about. */
  662. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, _local_status,
  663. {
  664. routerstatus_t *status = &(_local_status->status);
  665. int is_trusted;
  666. int is_overloaded = _local_status->last_dir_503_at + DIR_503_TIMEOUT > now;
  667. if (!status->is_running || !status->dir_port || !status->is_valid)
  668. continue;
  669. if (status->is_bad_directory)
  670. continue;
  671. if (requireother && router_digest_is_me(status->identity_digest))
  672. continue;
  673. is_trusted = router_digest_is_trusted_dir(status->identity_digest);
  674. if ((type & V2_AUTHORITY) && !(status->is_v2_dir || is_trusted))
  675. continue;
  676. if ((type & EXTRAINFO_CACHE) &&
  677. !router_supports_extrainfo(status->identity_digest, 0))
  678. continue;
  679. if (prefer_tunnel &&
  680. status->version_supports_begindir &&
  681. (!fascistfirewall ||
  682. fascist_firewall_allows_address_or(status->addr, status->or_port)))
  683. smartlist_add(is_trusted ? trusted_tunnel :
  684. is_overloaded ? overloaded_tunnel : tunnel, status);
  685. else if (!fascistfirewall ||
  686. fascist_firewall_allows_address_dir(status->addr,
  687. status->dir_port))
  688. smartlist_add(is_trusted ? trusted_direct :
  689. is_overloaded ? overloaded_direct : direct, status);
  690. });
  691. if (smartlist_len(tunnel)) {
  692. result = routerstatus_sl_choose_by_bandwidth(tunnel);
  693. } else if (smartlist_len(overloaded_tunnel)) {
  694. result = routerstatus_sl_choose_by_bandwidth(overloaded_tunnel);
  695. } else if (smartlist_len(trusted_tunnel)) {
  696. /* FFFF We don't distinguish between trusteds and overloaded trusteds
  697. * yet. Maybe one day we should. */
  698. /* FFFF We also don't load balance over authorities yet. I think this
  699. * is a feature, but it could easily be a bug. -RD */
  700. result = smartlist_choose(trusted_tunnel);
  701. } else if (smartlist_len(direct)) {
  702. result = routerstatus_sl_choose_by_bandwidth(direct);
  703. } else if (smartlist_len(overloaded_direct)) {
  704. result = routerstatus_sl_choose_by_bandwidth(overloaded_direct);
  705. } else {
  706. result = smartlist_choose(trusted_direct);
  707. }
  708. smartlist_free(direct);
  709. smartlist_free(tunnel);
  710. smartlist_free(trusted_direct);
  711. smartlist_free(trusted_tunnel);
  712. smartlist_free(overloaded_direct);
  713. smartlist_free(overloaded_tunnel);
  714. return result;
  715. }
  716. /** Choose randomly from among the trusted dirservers that are up. If
  717. * <b>fascistfirewall</b>, make sure the port we pick is allowed by our
  718. * firewall options. If <b>requireother</b>, it cannot be us.
  719. * <b>type> specifies the type of authoritative dir we require.
  720. */
  721. static routerstatus_t *
  722. router_pick_trusteddirserver_impl(authority_type_t type,
  723. int requireother, int fascistfirewall,
  724. int prefer_tunnel)
  725. {
  726. smartlist_t *direct, *tunnel;
  727. smartlist_t *overloaded_direct, *overloaded_tunnel;
  728. routerinfo_t *me = router_get_my_routerinfo();
  729. routerstatus_t *result;
  730. time_t now = time(NULL);
  731. direct = smartlist_create();
  732. tunnel = smartlist_create();
  733. overloaded_direct = smartlist_create();
  734. overloaded_tunnel = smartlist_create();
  735. if (!trusted_dir_servers)
  736. return NULL;
  737. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, d,
  738. {
  739. int is_overloaded =
  740. d->fake_status.last_dir_503_at + DIR_503_TIMEOUT > now;
  741. if (!d->is_running) continue;
  742. if ((type & d->type) == 0)
  743. continue;
  744. if ((type & EXTRAINFO_CACHE) &&
  745. !router_supports_extrainfo(d->digest, 1))
  746. continue;
  747. if (requireother && me && router_digest_is_me(d->digest))
  748. continue;
  749. if (prefer_tunnel &&
  750. d->or_port &&
  751. (!fascistfirewall ||
  752. fascist_firewall_allows_address_or(d->addr, d->or_port)))
  753. smartlist_add(is_overloaded ? overloaded_tunnel : tunnel,
  754. &d->fake_status.status);
  755. else if (!fascistfirewall ||
  756. fascist_firewall_allows_address_dir(d->addr, d->dir_port))
  757. smartlist_add(is_overloaded ? overloaded_direct : direct,
  758. &d->fake_status.status);
  759. });
  760. if (smartlist_len(tunnel)) {
  761. result = smartlist_choose(tunnel);
  762. } else if (smartlist_len(overloaded_tunnel)) {
  763. result = smartlist_choose(overloaded_tunnel);
  764. } else if (smartlist_len(direct)) {
  765. result = smartlist_choose(direct);
  766. } else {
  767. result = smartlist_choose(overloaded_direct);
  768. }
  769. smartlist_free(direct);
  770. smartlist_free(tunnel);
  771. smartlist_free(overloaded_direct);
  772. smartlist_free(overloaded_tunnel);
  773. return result;
  774. }
  775. /** Go through and mark the authoritative dirservers as up. */
  776. static void
  777. mark_all_trusteddirservers_up(void)
  778. {
  779. if (routerlist) {
  780. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  781. if (router_digest_is_trusted_dir(router->cache_info.identity_digest) &&
  782. router->dir_port > 0) {
  783. router->is_running = 1;
  784. });
  785. }
  786. if (trusted_dir_servers) {
  787. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, dir,
  788. {
  789. local_routerstatus_t *rs;
  790. dir->is_running = 1;
  791. dir->n_networkstatus_failures = 0;
  792. dir->fake_status.last_dir_503_at = 0;
  793. rs = router_get_combined_status_by_digest(dir->digest);
  794. if (rs && !rs->status.is_running) {
  795. rs->status.is_running = 1;
  796. rs->last_dir_503_at = 0;
  797. control_event_networkstatus_changed_single(rs);
  798. }
  799. });
  800. }
  801. last_networkstatus_download_attempted = 0;
  802. router_dir_info_changed();
  803. }
  804. /** Reset all internal variables used to count failed downloads of network
  805. * status objects. */
  806. void
  807. router_reset_status_download_failures(void)
  808. {
  809. mark_all_trusteddirservers_up();
  810. }
  811. /** Look through the routerlist and identify routers that
  812. * advertise the same /16 network address as <b>router</b>.
  813. * Add each of them to <b>sl</b>.
  814. */
  815. static void
  816. routerlist_add_network_family(smartlist_t *sl, routerinfo_t *router)
  817. {
  818. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, r,
  819. {
  820. if (router != r &&
  821. (router->addr & 0xffff0000) == (r->addr & 0xffff0000))
  822. smartlist_add(sl, r);
  823. });
  824. }
  825. /** Add all the family of <b>router</b> to the smartlist <b>sl</b>.
  826. * This is used to make sure we don't pick siblings in a single path.
  827. */
  828. void
  829. routerlist_add_family(smartlist_t *sl, routerinfo_t *router)
  830. {
  831. routerinfo_t *r;
  832. config_line_t *cl;
  833. or_options_t *options = get_options();
  834. /* First, add any routers with similar network addresses. */
  835. if (options->EnforceDistinctSubnets)
  836. routerlist_add_network_family(sl, router);
  837. if (router->declared_family) {
  838. /* Add every r such that router declares familyness with r, and r
  839. * declares familyhood with router. */
  840. SMARTLIST_FOREACH(router->declared_family, const char *, n,
  841. {
  842. if (!(r = router_get_by_nickname(n, 0)))
  843. continue;
  844. if (!r->declared_family)
  845. continue;
  846. SMARTLIST_FOREACH(r->declared_family, const char *, n2,
  847. {
  848. if (router_nickname_matches(router, n2))
  849. smartlist_add(sl, r);
  850. });
  851. });
  852. }
  853. /* If the user declared any families locally, honor those too. */
  854. for (cl = get_options()->NodeFamilies; cl; cl = cl->next) {
  855. if (router_nickname_is_in_list(router, cl->value)) {
  856. add_nickname_list_to_smartlist(sl, cl->value, 0);
  857. }
  858. }
  859. }
  860. /** Given a (possibly NULL) comma-and-whitespace separated list of nicknames,
  861. * see which nicknames in <b>list</b> name routers in our routerlist, and add
  862. * the routerinfos for those routers to <b>sl</b>. If <b>must_be_running</b>,
  863. * only include routers that we think are running.
  864. * Warn if any non-Named routers are specified by nickname.
  865. */
  866. void
  867. add_nickname_list_to_smartlist(smartlist_t *sl, const char *list,
  868. int must_be_running)
  869. {
  870. routerinfo_t *router;
  871. smartlist_t *nickname_list;
  872. int have_dir_info = router_have_minimum_dir_info();
  873. if (!list)
  874. return; /* nothing to do */
  875. tor_assert(sl);
  876. nickname_list = smartlist_create();
  877. if (!warned_nicknames)
  878. warned_nicknames = smartlist_create();
  879. smartlist_split_string(nickname_list, list, ",",
  880. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  881. SMARTLIST_FOREACH(nickname_list, const char *, nick, {
  882. int warned;
  883. if (!is_legal_nickname_or_hexdigest(nick)) {
  884. log_warn(LD_CONFIG, "Nickname '%s' is misformed; skipping", nick);
  885. continue;
  886. }
  887. router = router_get_by_nickname(nick, 1);
  888. warned = smartlist_string_isin(warned_nicknames, nick);
  889. if (router) {
  890. if (!must_be_running || router->is_running) {
  891. smartlist_add(sl,router);
  892. }
  893. } else if (!router_get_combined_status_by_nickname(nick,1)) {
  894. if (!warned) {
  895. log_fn(have_dir_info ? LOG_WARN : LOG_INFO, LD_CONFIG,
  896. "Nickname list includes '%s' which isn't a known router.",nick);
  897. smartlist_add(warned_nicknames, tor_strdup(nick));
  898. }
  899. }
  900. });
  901. SMARTLIST_FOREACH(nickname_list, char *, nick, tor_free(nick));
  902. smartlist_free(nickname_list);
  903. }
  904. /** Return 1 iff any member of the (possibly NULL) comma-separated list
  905. * <b>list</b> is an acceptable nickname or hexdigest for <b>router</b>. Else
  906. * return 0.
  907. */
  908. int
  909. router_nickname_is_in_list(routerinfo_t *router, const char *list)
  910. {
  911. smartlist_t *nickname_list;
  912. int v = 0;
  913. if (!list)
  914. return 0; /* definitely not */
  915. tor_assert(router);
  916. nickname_list = smartlist_create();
  917. smartlist_split_string(nickname_list, list, ",",
  918. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  919. SMARTLIST_FOREACH(nickname_list, const char *, cp,
  920. if (router_nickname_matches(router, cp)) {v=1;break;});
  921. SMARTLIST_FOREACH(nickname_list, char *, cp, tor_free(cp));
  922. smartlist_free(nickname_list);
  923. return v;
  924. }
  925. /** Add every suitable router from our routerlist to <b>sl</b>, so that
  926. * we can pick a node for a circuit.
  927. */
  928. static void
  929. router_add_running_routers_to_smartlist(smartlist_t *sl, int allow_invalid,
  930. int need_uptime, int need_capacity,
  931. int need_guard)
  932. {
  933. if (!routerlist)
  934. return;
  935. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  936. {
  937. if (router->is_running &&
  938. router->purpose == ROUTER_PURPOSE_GENERAL &&
  939. (router->is_valid || allow_invalid) &&
  940. !router_is_unreliable(router, need_uptime,
  941. need_capacity, need_guard)) {
  942. /* If it's running, and it's suitable according to the
  943. * other flags we had in mind */
  944. smartlist_add(sl, router);
  945. }
  946. });
  947. }
  948. /** Look through the routerlist until we find a router that has my key.
  949. Return it. */
  950. routerinfo_t *
  951. routerlist_find_my_routerinfo(void)
  952. {
  953. if (!routerlist)
  954. return NULL;
  955. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  956. {
  957. if (router_is_me(router))
  958. return router;
  959. });
  960. return NULL;
  961. }
  962. /** Find a router that's up, that has this IP address, and
  963. * that allows exit to this address:port, or return NULL if there
  964. * isn't a good one.
  965. */
  966. routerinfo_t *
  967. router_find_exact_exit_enclave(const char *address, uint16_t port)
  968. {
  969. uint32_t addr;
  970. struct in_addr in;
  971. if (!tor_inet_aton(address, &in))
  972. return NULL; /* it's not an IP already */
  973. addr = ntohl(in.s_addr);
  974. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  975. {
  976. if (router->is_running &&
  977. router->addr == addr &&
  978. compare_addr_to_addr_policy(addr, port, router->exit_policy) ==
  979. ADDR_POLICY_ACCEPTED)
  980. return router;
  981. });
  982. return NULL;
  983. }
  984. /** Return 1 if <b>router</b> is not suitable for these parameters, else 0.
  985. * If <b>need_uptime</b> is non-zero, we require a minimum uptime.
  986. * If <b>need_capacity</b> is non-zero, we require a minimum advertised
  987. * bandwidth.
  988. * If <b>need_guard</b>, we require that the router is a possible entry guard.
  989. */
  990. int
  991. router_is_unreliable(routerinfo_t *router, int need_uptime,
  992. int need_capacity, int need_guard)
  993. {
  994. if (need_uptime && !router->is_stable)
  995. return 1;
  996. if (need_capacity && !router->is_fast)
  997. return 1;
  998. if (need_guard && !router->is_possible_guard)
  999. return 1;
  1000. return 0;
  1001. }
  1002. /** Return the smaller of the router's configured BandwidthRate
  1003. * and its advertised capacity. */
  1004. uint32_t
  1005. router_get_advertised_bandwidth(routerinfo_t *router)
  1006. {
  1007. if (router->bandwidthcapacity < router->bandwidthrate)
  1008. return router->bandwidthcapacity;
  1009. return router->bandwidthrate;
  1010. }
  1011. /** Do not weight any declared bandwidth more than this much when picking
  1012. * routers by bandwidth. */
  1013. #define MAX_BELIEVABLE_BANDWIDTH 1500000 /* 1.5 MB/sec */
  1014. /** Helper function:
  1015. * choose a random element of smartlist <b>sl</b>, weighted by
  1016. * the advertised bandwidth of each element.
  1017. *
  1018. * If <b>statuses</b> is zero, then <b>sl</b> is a list of
  1019. * routerinfo_t's. Otherwise it's a list of routerstatus_t's.
  1020. *
  1021. * If <b>for_exit</b>, we're picking an exit node: consider all nodes'
  1022. * bandwidth equally regardless of their Exit status. If not <b>for_exit</b>,
  1023. * we're picking a non-exit node: weight exit-node's bandwidth downwards
  1024. * depending on the smallness of the fraction of Exit-to-total bandwidth.
  1025. */
  1026. static void *
  1027. smartlist_choose_by_bandwidth(smartlist_t *sl, int for_exit, int statuses)
  1028. {
  1029. int i;
  1030. routerinfo_t *router;
  1031. routerstatus_t *status;
  1032. int32_t *bandwidths;
  1033. int is_exit;
  1034. uint64_t total_nonexit_bw = 0, total_exit_bw = 0, total_bw = 0;
  1035. uint64_t rand_bw, tmp;
  1036. double exit_weight;
  1037. int n_unknown = 0;
  1038. /* First count the total bandwidth weight, and make a list
  1039. * of each value. <0 means "unknown; no routerinfo." We use the
  1040. * bits of negative values to remember whether the router was fast (-x)&1
  1041. * and whether it was an exit (-x)&2. Yes, it's a hack. */
  1042. bandwidths = tor_malloc(sizeof(int32_t)*smartlist_len(sl));
  1043. /* Iterate over all the routerinfo_t or routerstatus_t, and */
  1044. for (i = 0; i < smartlist_len(sl); ++i) {
  1045. /* first, learn what bandwidth we think i has */
  1046. int is_known = 1;
  1047. int32_t flags = 0;
  1048. uint32_t this_bw = 0;
  1049. if (statuses) {
  1050. /* need to extract router info */
  1051. status = smartlist_get(sl, i);
  1052. router = router_get_by_digest(status->identity_digest);
  1053. is_exit = status->is_exit;
  1054. if (router) {
  1055. this_bw = router_get_advertised_bandwidth(router);
  1056. } else { /* guess */
  1057. is_known = 0;
  1058. flags = status->is_fast ? 1 : 0;
  1059. flags |= is_exit ? 2 : 0;
  1060. }
  1061. } else {
  1062. router = smartlist_get(sl, i);
  1063. is_exit = router->is_exit;
  1064. this_bw = router_get_advertised_bandwidth(router);
  1065. }
  1066. /* if they claim something huge, don't believe it */
  1067. if (this_bw > MAX_BELIEVABLE_BANDWIDTH)
  1068. this_bw = MAX_BELIEVABLE_BANDWIDTH;
  1069. if (is_known) {
  1070. bandwidths[i] = (int32_t) this_bw; // safe since MAX_BELIEVABLE<INT32_MAX
  1071. if (is_exit)
  1072. total_exit_bw += this_bw;
  1073. else
  1074. total_nonexit_bw += this_bw;
  1075. } else {
  1076. ++n_unknown;
  1077. bandwidths[i] = -flags;
  1078. }
  1079. }
  1080. /* Now, fill in the unknown values. */
  1081. if (n_unknown) {
  1082. int32_t avg_fast, avg_slow;
  1083. if (total_exit_bw+total_nonexit_bw) {
  1084. /* if there's some bandwidth, there's at least one known router,
  1085. * so no worries about div by 0 here */
  1086. int n_known = smartlist_len(sl)-n_unknown;
  1087. avg_fast = avg_slow = (int32_t)
  1088. ((total_exit_bw+total_nonexit_bw)/((uint64_t) n_known));
  1089. } else {
  1090. avg_fast = 40000;
  1091. avg_slow = 20000;
  1092. }
  1093. for (i=0; i<smartlist_len(sl); ++i) {
  1094. int32_t bw = bandwidths[i];
  1095. if (bw>=0)
  1096. continue;
  1097. is_exit = ((-bw)&2);
  1098. bandwidths[i] = ((-bw)&1) ? avg_fast : avg_slow;
  1099. if (is_exit)
  1100. total_exit_bw += bandwidths[i];
  1101. else
  1102. total_nonexit_bw += bandwidths[i];
  1103. }
  1104. }
  1105. /* If there's no bandwidth at all, pick at random. */
  1106. if (!(total_exit_bw+total_nonexit_bw)) {
  1107. tor_free(bandwidths);
  1108. return smartlist_choose(sl);
  1109. }
  1110. /* Figure out how to weight exits. */
  1111. if (for_exit) {
  1112. /* If we're choosing an exit node, exit bandwidth counts fully. */
  1113. exit_weight = 1.0;
  1114. total_bw = total_exit_bw + total_nonexit_bw;
  1115. } else if (total_exit_bw < total_nonexit_bw / 2) {
  1116. /* If we're choosing a relay and exits are greatly outnumbered, ignore
  1117. * them. */
  1118. exit_weight = 0.0;
  1119. total_bw = total_nonexit_bw;
  1120. } else {
  1121. /* If we're choosing a relay and exits aren't outnumbered use the formula
  1122. * from path-spec. */
  1123. uint64_t leftover = (total_exit_bw - total_nonexit_bw / 2);
  1124. exit_weight = U64_TO_DBL(leftover) /
  1125. U64_TO_DBL(leftover + total_nonexit_bw);
  1126. total_bw = total_nonexit_bw +
  1127. DBL_TO_U64(exit_weight * U64_TO_DBL(total_exit_bw));
  1128. }
  1129. /*
  1130. log_debug(LD_CIRC, "Total bw = "U64_FORMAT", total exit bw = "U64_FORMAT
  1131. ", total nonexit bw = "U64_FORMAT", exit weight = %lf "
  1132. "(for exit == %d)",
  1133. U64_PRINTF_ARG(total_bw), U64_PRINTF_ARG(total_exit_bw),
  1134. U64_PRINTF_ARG(total_nonexit_bw), exit_weight, for_exit);
  1135. */
  1136. /* Almost done: choose a random value from the bandwidth weights. */
  1137. rand_bw = crypto_rand_uint64(total_bw);
  1138. /* Last, count through sl until we get to the element we picked */
  1139. tmp = 0;
  1140. for (i=0; i < smartlist_len(sl); i++) {
  1141. if (statuses) {
  1142. status = smartlist_get(sl, i);
  1143. is_exit = status->is_exit;
  1144. } else {
  1145. router = smartlist_get(sl, i);
  1146. is_exit = router->is_exit;
  1147. }
  1148. if (is_exit)
  1149. tmp += ((uint64_t)(bandwidths[i] * exit_weight));
  1150. else
  1151. tmp += bandwidths[i];
  1152. if (tmp >= rand_bw)
  1153. break;
  1154. }
  1155. tor_free(bandwidths);
  1156. return smartlist_get(sl, i);
  1157. }
  1158. /** Choose a random element of router list <b>sl</b>, weighted by
  1159. * the advertised bandwidth of each router.
  1160. */
  1161. routerinfo_t *
  1162. routerlist_sl_choose_by_bandwidth(smartlist_t *sl, int for_exit)
  1163. {
  1164. return smartlist_choose_by_bandwidth(sl, for_exit, 0);
  1165. }
  1166. /** Choose a random element of status list <b>sl</b>, weighted by
  1167. * the advertised bandwidth of each status.
  1168. */
  1169. routerstatus_t *
  1170. routerstatus_sl_choose_by_bandwidth(smartlist_t *sl)
  1171. {
  1172. return smartlist_choose_by_bandwidth(sl, 1, 1);
  1173. }
  1174. /** Return a random running router from the routerlist. If any node
  1175. * named in <b>preferred</b> is available, pick one of those. Never
  1176. * pick a node named in <b>excluded</b>, or whose routerinfo is in
  1177. * <b>excludedsmartlist</b>, even if they are the only nodes
  1178. * available. If <b>strict</b> is true, never pick any node besides
  1179. * those in <b>preferred</b>.
  1180. * If <b>need_uptime</b> is non-zero and any router has more than
  1181. * a minimum uptime, return one of those.
  1182. * If <b>need_capacity</b> is non-zero, weight your choice by the
  1183. * advertised capacity of each router.
  1184. * If ! <b>allow_invalid</b>, consider only Valid routers.
  1185. * If <b>need_guard</b>, consider only Guard routers.
  1186. * If <b>weight_for_exit</b>, we weight bandwidths as if picking an exit node,
  1187. * otherwise we weight bandwidths for picking a relay node (that is, possibly
  1188. * discounting exit nodes).
  1189. */
  1190. routerinfo_t *
  1191. router_choose_random_node(const char *preferred,
  1192. const char *excluded,
  1193. smartlist_t *excludedsmartlist,
  1194. int need_uptime, int need_capacity,
  1195. int need_guard,
  1196. int allow_invalid, int strict,
  1197. int weight_for_exit)
  1198. {
  1199. smartlist_t *sl, *excludednodes;
  1200. routerinfo_t *choice = NULL;
  1201. excludednodes = smartlist_create();
  1202. add_nickname_list_to_smartlist(excludednodes,excluded,0);
  1203. /* Try the preferred nodes first. Ignore need_uptime and need_capacity
  1204. * and need_guard, since the user explicitly asked for these nodes. */
  1205. if (preferred) {
  1206. sl = smartlist_create();
  1207. add_nickname_list_to_smartlist(sl,preferred,1);
  1208. smartlist_subtract(sl,excludednodes);
  1209. if (excludedsmartlist)
  1210. smartlist_subtract(sl,excludedsmartlist);
  1211. choice = smartlist_choose(sl);
  1212. smartlist_free(sl);
  1213. }
  1214. if (!choice && !strict) {
  1215. /* Then give up on our preferred choices: any node
  1216. * will do that has the required attributes. */
  1217. sl = smartlist_create();
  1218. router_add_running_routers_to_smartlist(sl, allow_invalid,
  1219. need_uptime, need_capacity,
  1220. need_guard);
  1221. smartlist_subtract(sl,excludednodes);
  1222. if (excludedsmartlist)
  1223. smartlist_subtract(sl,excludedsmartlist);
  1224. if (need_capacity || need_guard)
  1225. choice = routerlist_sl_choose_by_bandwidth(sl, weight_for_exit);
  1226. else
  1227. choice = smartlist_choose(sl);
  1228. smartlist_free(sl);
  1229. if (!choice && (need_uptime || need_capacity || need_guard)) {
  1230. /* try once more -- recurse but with fewer restrictions. */
  1231. log_info(LD_CIRC,
  1232. "We couldn't find any live%s%s%s routers; falling back "
  1233. "to list of all routers.",
  1234. need_capacity?", fast":"",
  1235. need_uptime?", stable":"",
  1236. need_guard?", guard":"");
  1237. choice = router_choose_random_node(
  1238. NULL, excluded, excludedsmartlist,
  1239. 0, 0, 0, allow_invalid, 0, weight_for_exit);
  1240. }
  1241. }
  1242. smartlist_free(excludednodes);
  1243. if (!choice) {
  1244. if (strict) {
  1245. log_warn(LD_CIRC, "All preferred nodes were down when trying to choose "
  1246. "node, and the Strict[...]Nodes option is set. Failing.");
  1247. } else {
  1248. log_warn(LD_CIRC,
  1249. "No available nodes when trying to choose node. Failing.");
  1250. }
  1251. }
  1252. return choice;
  1253. }
  1254. /** Return true iff the digest of <b>router</b>'s identity key,
  1255. * encoded in hexadecimal, matches <b>hexdigest</b> (which is
  1256. * optionally prefixed with a single dollar sign). Return false if
  1257. * <b>hexdigest</b> is malformed, or it doesn't match. */
  1258. static INLINE int
  1259. router_hex_digest_matches(routerinfo_t *router, const char *hexdigest)
  1260. {
  1261. char digest[DIGEST_LEN];
  1262. size_t len;
  1263. tor_assert(hexdigest);
  1264. if (hexdigest[0] == '$')
  1265. ++hexdigest;
  1266. len = strlen(hexdigest);
  1267. if (len < HEX_DIGEST_LEN)
  1268. return 0;
  1269. else if (len > HEX_DIGEST_LEN &&
  1270. (hexdigest[HEX_DIGEST_LEN] == '=' ||
  1271. hexdigest[HEX_DIGEST_LEN] == '~')) {
  1272. if (strcasecmp(hexdigest+HEX_DIGEST_LEN+1, router->nickname))
  1273. return 0;
  1274. if (hexdigest[HEX_DIGEST_LEN] == '=' && !router->is_named)
  1275. return 0;
  1276. }
  1277. if (base16_decode(digest, DIGEST_LEN, hexdigest, HEX_DIGEST_LEN)<0)
  1278. return 0;
  1279. return (!memcmp(digest, router->cache_info.identity_digest, DIGEST_LEN));
  1280. }
  1281. /** Return true if <b>router</b>'s nickname matches <b>nickname</b>
  1282. * (case-insensitive), or if <b>router's</b> identity key digest
  1283. * matches a hexadecimal value stored in <b>nickname</b>. Return
  1284. * false otherwise. */
  1285. static int
  1286. router_nickname_matches(routerinfo_t *router, const char *nickname)
  1287. {
  1288. if (nickname[0]!='$' && !strcasecmp(router->nickname, nickname))
  1289. return 1;
  1290. return router_hex_digest_matches(router, nickname);
  1291. }
  1292. /** Return the router in our routerlist whose (case-insensitive)
  1293. * nickname or (case-sensitive) hexadecimal key digest is
  1294. * <b>nickname</b>. Return NULL if no such router is known.
  1295. */
  1296. routerinfo_t *
  1297. router_get_by_nickname(const char *nickname, int warn_if_unnamed)
  1298. {
  1299. int maybedigest;
  1300. char digest[DIGEST_LEN];
  1301. routerinfo_t *best_match=NULL;
  1302. int n_matches = 0;
  1303. char *named_digest = NULL;
  1304. tor_assert(nickname);
  1305. if (!routerlist)
  1306. return NULL;
  1307. if (nickname[0] == '$')
  1308. return router_get_by_hexdigest(nickname);
  1309. if (!strcasecmp(nickname, UNNAMED_ROUTER_NICKNAME))
  1310. return NULL;
  1311. if (server_mode(get_options()) &&
  1312. !strcasecmp(nickname, get_options()->Nickname))
  1313. return router_get_my_routerinfo();
  1314. maybedigest = (strlen(nickname) >= HEX_DIGEST_LEN) &&
  1315. (base16_decode(digest,DIGEST_LEN,nickname,HEX_DIGEST_LEN) == 0);
  1316. if (named_server_map &&
  1317. (named_digest = strmap_get_lc(named_server_map, nickname))) {
  1318. return rimap_get(routerlist->identity_map, named_digest);
  1319. }
  1320. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  1321. {
  1322. if (!strcasecmp(router->nickname, nickname)) {
  1323. ++n_matches;
  1324. if (n_matches <= 1 || router->is_running)
  1325. best_match = router;
  1326. } else if (maybedigest &&
  1327. !memcmp(digest, router->cache_info.identity_digest, DIGEST_LEN)
  1328. ) {
  1329. if (router_hex_digest_matches(router, nickname))
  1330. return router;
  1331. else
  1332. best_match = router; // XXXX020 NM not exactly right.
  1333. }
  1334. });
  1335. if (best_match) {
  1336. if (warn_if_unnamed && n_matches > 1) {
  1337. smartlist_t *fps = smartlist_create();
  1338. int any_unwarned = 0;
  1339. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  1340. {
  1341. local_routerstatus_t *rs;
  1342. char *desc;
  1343. size_t dlen;
  1344. char fp[HEX_DIGEST_LEN+1];
  1345. if (strcasecmp(router->nickname, nickname))
  1346. continue;
  1347. rs = router_get_combined_status_by_digest(
  1348. router->cache_info.identity_digest);
  1349. if (rs && !rs->name_lookup_warned) {
  1350. rs->name_lookup_warned = 1;
  1351. any_unwarned = 1;
  1352. }
  1353. base16_encode(fp, sizeof(fp),
  1354. router->cache_info.identity_digest, DIGEST_LEN);
  1355. dlen = 32 + HEX_DIGEST_LEN + strlen(router->address);
  1356. desc = tor_malloc(dlen);
  1357. tor_snprintf(desc, dlen, "\"$%s\" for the one at %s:%d",
  1358. fp, router->address, router->or_port);
  1359. smartlist_add(fps, desc);
  1360. });
  1361. if (any_unwarned) {
  1362. char *alternatives = smartlist_join_strings(fps, "; ",0,NULL);
  1363. log_warn(LD_CONFIG,
  1364. "There are multiple matches for the nickname \"%s\","
  1365. " but none is listed as named by the directory authorities. "
  1366. "Choosing one arbitrarily. If you meant one in particular, "
  1367. "you should say %s.", nickname, alternatives);
  1368. tor_free(alternatives);
  1369. }
  1370. SMARTLIST_FOREACH(fps, char *, cp, tor_free(cp));
  1371. smartlist_free(fps);
  1372. } else if (warn_if_unnamed) {
  1373. local_routerstatus_t *rs = router_get_combined_status_by_digest(
  1374. best_match->cache_info.identity_digest);
  1375. if (rs && !rs->name_lookup_warned) {
  1376. char fp[HEX_DIGEST_LEN+1];
  1377. base16_encode(fp, sizeof(fp),
  1378. best_match->cache_info.identity_digest, DIGEST_LEN);
  1379. log_warn(LD_CONFIG, "You specified a server \"%s\" by name, but this "
  1380. "name is not registered, so it could be used by any server, "
  1381. "not just the one you meant. "
  1382. "To make sure you get the same server in the future, refer to "
  1383. "it by key, as \"$%s\".", nickname, fp);
  1384. rs->name_lookup_warned = 1;
  1385. }
  1386. }
  1387. return best_match;
  1388. }
  1389. return NULL;
  1390. }
  1391. /** Try to find a routerinfo for <b>digest</b>. If we don't have one,
  1392. * return 1. If we do, ask tor_version_as_new_as() for the answer.
  1393. */
  1394. int
  1395. router_digest_version_as_new_as(const char *digest, const char *cutoff)
  1396. {
  1397. routerinfo_t *router = router_get_by_digest(digest);
  1398. if (!router)
  1399. return 1;
  1400. return tor_version_as_new_as(router->platform, cutoff);
  1401. }
  1402. /** Return true iff <b>digest</b> is the digest of the identity key of
  1403. * a trusted directory. */
  1404. int
  1405. router_digest_is_trusted_dir(const char *digest)
  1406. {
  1407. if (!trusted_dir_servers)
  1408. return 0;
  1409. if (authdir_mode(get_options()) && router_digest_is_me(digest))
  1410. return 1;
  1411. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ent,
  1412. if (!memcmp(digest, ent->digest, DIGEST_LEN)) return 1);
  1413. return 0;
  1414. }
  1415. /** If hexdigest is correctly formed, base16_decode it into
  1416. * digest, which must have DIGEST_LEN space in it.
  1417. * Return 0 on success, -1 on failure.
  1418. */
  1419. int
  1420. hexdigest_to_digest(const char *hexdigest, char *digest)
  1421. {
  1422. if (hexdigest[0]=='$')
  1423. ++hexdigest;
  1424. if (strlen(hexdigest) < HEX_DIGEST_LEN ||
  1425. base16_decode(digest,DIGEST_LEN,hexdigest,HEX_DIGEST_LEN) < 0)
  1426. return -1;
  1427. return 0;
  1428. }
  1429. /** Return the router in our routerlist whose hexadecimal key digest
  1430. * is <b>hexdigest</b>. Return NULL if no such router is known. */
  1431. routerinfo_t *
  1432. router_get_by_hexdigest(const char *hexdigest)
  1433. {
  1434. char digest[DIGEST_LEN];
  1435. size_t len;
  1436. routerinfo_t *ri;
  1437. tor_assert(hexdigest);
  1438. if (!routerlist)
  1439. return NULL;
  1440. if (hexdigest[0]=='$')
  1441. ++hexdigest;
  1442. len = strlen(hexdigest);
  1443. if (hexdigest_to_digest(hexdigest, digest) < 0)
  1444. return NULL;
  1445. ri = router_get_by_digest(digest);
  1446. if (len > HEX_DIGEST_LEN) {
  1447. if (hexdigest[HEX_DIGEST_LEN] == '=') {
  1448. if (strcasecmp(ri->nickname, hexdigest+HEX_DIGEST_LEN+1) ||
  1449. !ri->is_named)
  1450. return NULL;
  1451. } else if (hexdigest[HEX_DIGEST_LEN] == '~') {
  1452. if (strcasecmp(ri->nickname, hexdigest+HEX_DIGEST_LEN+1))
  1453. return NULL;
  1454. } else {
  1455. return NULL;
  1456. }
  1457. }
  1458. return ri;
  1459. }
  1460. /** Return the router in our routerlist whose 20-byte key digest
  1461. * is <b>digest</b>. Return NULL if no such router is known. */
  1462. routerinfo_t *
  1463. router_get_by_digest(const char *digest)
  1464. {
  1465. tor_assert(digest);
  1466. if (!routerlist) return NULL;
  1467. // routerlist_assert_ok(routerlist);
  1468. return rimap_get(routerlist->identity_map, digest);
  1469. }
  1470. /** Return the router in our routerlist whose 20-byte descriptor
  1471. * is <b>digest</b>. Return NULL if no such router is known. */
  1472. signed_descriptor_t *
  1473. router_get_by_descriptor_digest(const char *digest)
  1474. {
  1475. tor_assert(digest);
  1476. if (!routerlist) return NULL;
  1477. return sdmap_get(routerlist->desc_digest_map, digest);
  1478. }
  1479. /** Return the signed descriptor for the router in our routerlist whose
  1480. * 20-byte extra-info digest is <b>digest</b>. Return NULL if no such router
  1481. * is known. */
  1482. signed_descriptor_t *
  1483. router_get_by_extrainfo_digest(const char *digest)
  1484. {
  1485. tor_assert(digest);
  1486. if (!routerlist) return NULL;
  1487. return sdmap_get(routerlist->desc_by_eid_map, digest);
  1488. }
  1489. /** Return the signed descriptor for the extrainfo_t in our routerlist whose
  1490. * extra-info-digest is <b>digest</b>. Return NULL if no such extra-info
  1491. * document is known. */
  1492. signed_descriptor_t *
  1493. extrainfo_get_by_descriptor_digest(const char *digest)
  1494. {
  1495. extrainfo_t *ei;
  1496. tor_assert(digest);
  1497. if (!routerlist) return NULL;
  1498. ei = eimap_get(routerlist->extra_info_map, digest);
  1499. return ei ? &ei->cache_info : NULL;
  1500. }
  1501. /** Return a pointer to the signed textual representation of a descriptor.
  1502. * The returned string is not guaranteed to be NUL-terminated: the string's
  1503. * length will be in desc-\>signed_descriptor_len. */
  1504. const char *
  1505. signed_descriptor_get_body(signed_descriptor_t *desc)
  1506. {
  1507. const char *r = NULL;
  1508. size_t len = desc->signed_descriptor_len;
  1509. tor_mmap_t *mmap;
  1510. tor_assert(len > 32);
  1511. if (desc->saved_location == SAVED_IN_CACHE && routerlist) {
  1512. if (desc->is_extrainfo)
  1513. mmap = routerlist->mmap_extrainfo;
  1514. else
  1515. mmap = routerlist->mmap_descriptors;
  1516. if (mmap) {
  1517. tor_assert(desc->saved_offset + len <= mmap->size);
  1518. r = mmap->data + desc->saved_offset;
  1519. }
  1520. }
  1521. if (!r) /* no mmap, or not in cache. */
  1522. r = desc->signed_descriptor_body;
  1523. tor_assert(r);
  1524. if (memcmp("router ", r, 7) && memcmp("extra-info ", r, 11)) {
  1525. log_err(LD_DIR, "descriptor at %p begins with unexpected string %s",
  1526. desc, tor_strndup(r, 64));
  1527. }
  1528. tor_assert(!memcmp("router ", r, 7) || !memcmp("extra-info ", r, 11));
  1529. return r;
  1530. }
  1531. /** Return the current list of all known routers. */
  1532. routerlist_t *
  1533. router_get_routerlist(void)
  1534. {
  1535. if (!routerlist) {
  1536. routerlist = tor_malloc_zero(sizeof(routerlist_t));
  1537. routerlist->routers = smartlist_create();
  1538. routerlist->old_routers = smartlist_create();
  1539. routerlist->identity_map = rimap_new();
  1540. routerlist->desc_digest_map = sdmap_new();
  1541. routerlist->desc_by_eid_map = sdmap_new();
  1542. routerlist->extra_info_map = eimap_new();
  1543. }
  1544. return routerlist;
  1545. }
  1546. /** Free all storage held by <b>router</b>. */
  1547. void
  1548. routerinfo_free(routerinfo_t *router)
  1549. {
  1550. if (!router)
  1551. return;
  1552. tor_free(router->cache_info.signed_descriptor_body);
  1553. tor_free(router->address);
  1554. tor_free(router->nickname);
  1555. tor_free(router->platform);
  1556. tor_free(router->contact_info);
  1557. if (router->onion_pkey)
  1558. crypto_free_pk_env(router->onion_pkey);
  1559. if (router->identity_pkey)
  1560. crypto_free_pk_env(router->identity_pkey);
  1561. if (router->declared_family) {
  1562. SMARTLIST_FOREACH(router->declared_family, char *, s, tor_free(s));
  1563. smartlist_free(router->declared_family);
  1564. }
  1565. addr_policy_free(router->exit_policy);
  1566. /* Remove once 414/417 is fixed. But I have a hunch... */
  1567. memset(router, 77, sizeof(routerinfo_t));
  1568. tor_free(router);
  1569. }
  1570. /** Release all storage held by <b>extrainfo</b> */
  1571. void
  1572. extrainfo_free(extrainfo_t *extrainfo)
  1573. {
  1574. if (!extrainfo)
  1575. return;
  1576. tor_free(extrainfo->cache_info.signed_descriptor_body);
  1577. tor_free(extrainfo->pending_sig);
  1578. /* XXXX020 remove this once more bugs go away. */
  1579. memset(extrainfo, 88, sizeof(extrainfo_t)); /* debug bad memory usage */
  1580. tor_free(extrainfo);
  1581. }
  1582. /** Release storage held by <b>sd</b>. */
  1583. static void
  1584. signed_descriptor_free(signed_descriptor_t *sd)
  1585. {
  1586. tor_free(sd->signed_descriptor_body);
  1587. /* XXXX020 remove this once more bugs go away. */
  1588. memset(sd, 99, sizeof(signed_descriptor_t)); /* Debug bad mem usage */
  1589. tor_free(sd);
  1590. }
  1591. /** Extract a signed_descriptor_t from a routerinfo, and free the routerinfo.
  1592. */
  1593. static signed_descriptor_t *
  1594. signed_descriptor_from_routerinfo(routerinfo_t *ri)
  1595. {
  1596. signed_descriptor_t *sd = tor_malloc_zero(sizeof(signed_descriptor_t));
  1597. memcpy(sd, &(ri->cache_info), sizeof(signed_descriptor_t));
  1598. ri->cache_info.signed_descriptor_body = NULL;
  1599. routerinfo_free(ri);
  1600. return sd;
  1601. }
  1602. /** Helper: free the storage held by the extrainfo_t in <b>e</b>. */
  1603. static void
  1604. _extrainfo_free(void *e)
  1605. {
  1606. extrainfo_free(e);
  1607. }
  1608. /** Free all storage held by a routerlist <b>rl</b>. */
  1609. void
  1610. routerlist_free(routerlist_t *rl)
  1611. {
  1612. tor_assert(rl);
  1613. rimap_free(rl->identity_map, NULL);
  1614. sdmap_free(rl->desc_digest_map, NULL);
  1615. sdmap_free(rl->desc_by_eid_map, NULL);
  1616. eimap_free(rl->extra_info_map, _extrainfo_free);
  1617. SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r,
  1618. routerinfo_free(r));
  1619. SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd,
  1620. signed_descriptor_free(sd));
  1621. smartlist_free(rl->routers);
  1622. smartlist_free(rl->old_routers);
  1623. if (routerlist->mmap_descriptors)
  1624. tor_munmap_file(routerlist->mmap_descriptors);
  1625. tor_free(rl);
  1626. router_dir_info_changed();
  1627. }
  1628. void
  1629. dump_routerlist_mem_usage(int severity)
  1630. {
  1631. uint64_t livedescs = 0;
  1632. uint64_t olddescs = 0;
  1633. if (!routerlist)
  1634. return;
  1635. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, r,
  1636. livedescs += r->cache_info.signed_descriptor_len);
  1637. SMARTLIST_FOREACH(routerlist->old_routers, signed_descriptor_t *, sd,
  1638. olddescs += sd->signed_descriptor_len);
  1639. log(severity, LD_GENERAL,
  1640. "In %d live descriptors: "U64_FORMAT" bytes. "
  1641. "In %d old descriptors: "U64_FORMAT" bytes.",
  1642. smartlist_len(routerlist->routers), U64_PRINTF_ARG(livedescs),
  1643. smartlist_len(routerlist->old_routers), U64_PRINTF_ARG(olddescs));
  1644. }
  1645. /** Return the greatest number of routerdescs we'll hold for any given router.
  1646. */
  1647. static int
  1648. max_descriptors_per_router(void)
  1649. {
  1650. int n_authorities = get_n_v2_authorities();
  1651. return (n_authorities < 5) ? 5 : n_authorities;
  1652. }
  1653. /** Return non-zero if we have a lot of extra descriptors in our
  1654. * routerlist, and should get rid of some of them. Else return 0.
  1655. *
  1656. * We should be careful to not return true too eagerly, since we
  1657. * could churn. By using "+1" below, we make sure this function
  1658. * only returns true at most every smartlist_len(rl-\>routers)
  1659. * new descriptors.
  1660. */
  1661. static INLINE int
  1662. routerlist_is_overfull(routerlist_t *rl)
  1663. {
  1664. return smartlist_len(rl->old_routers) >
  1665. smartlist_len(rl->routers)*(max_descriptors_per_router()+1);
  1666. }
  1667. static INLINE int
  1668. _routerlist_find_elt(smartlist_t *sl, void *ri, int idx)
  1669. {
  1670. if (idx < 0 || smartlist_get(sl, idx) != ri) {
  1671. idx = -1;
  1672. SMARTLIST_FOREACH(sl, routerinfo_t *, r,
  1673. if (r == ri) {
  1674. idx = r_sl_idx;
  1675. break;
  1676. });
  1677. }
  1678. return idx;
  1679. }
  1680. /** Insert an item <b>ri</b> into the routerlist <b>rl</b>, updating indices
  1681. * as needed. There must be no previous member of <b>rl</b> with the same
  1682. * identity digest as <b>ri</b>: If there is, call routerlist_replace
  1683. * instead.
  1684. */
  1685. static void
  1686. routerlist_insert(routerlist_t *rl, routerinfo_t *ri)
  1687. {
  1688. routerinfo_t *ri_old;
  1689. routerlist_check_bug_417();
  1690. {
  1691. /* XXXX020 remove this code once bug 417/404 is fixed. */
  1692. routerinfo_t *ri_generated = router_get_my_routerinfo();
  1693. tor_assert(ri_generated != ri);
  1694. }
  1695. tor_assert(ri->routerlist_index == -1);
  1696. ri_old = rimap_set(rl->identity_map, ri->cache_info.identity_digest, ri);
  1697. tor_assert(!ri_old);
  1698. sdmap_set(rl->desc_digest_map, ri->cache_info.signed_descriptor_digest,
  1699. &(ri->cache_info));
  1700. if (!tor_digest_is_zero(ri->cache_info.extra_info_digest))
  1701. sdmap_set(rl->desc_by_eid_map, ri->cache_info.extra_info_digest,
  1702. &ri->cache_info);
  1703. smartlist_add(rl->routers, ri);
  1704. ri->routerlist_index = smartlist_len(rl->routers) - 1;
  1705. router_dir_info_changed();
  1706. routerlist_check_bug_417();
  1707. #ifdef DEBUG_ROUTERLIST
  1708. routerlist_assert_ok(rl);
  1709. #endif
  1710. }
  1711. /** Adds the extrainfo_t <b>ei</b> to the routerlist <b>rl</b>, if there is a
  1712. * corresponding router in rl-\>routers or rl-\>old_routers. Return true iff
  1713. * we actually inserted <b>ei</b>. Free <b>ei</b> if it isn't inserted. */
  1714. static int
  1715. extrainfo_insert(routerlist_t *rl, extrainfo_t *ei)
  1716. {
  1717. int r = 0;
  1718. routerinfo_t *ri = rimap_get(rl->identity_map,
  1719. ei->cache_info.identity_digest);
  1720. signed_descriptor_t *sd;
  1721. extrainfo_t *ei_tmp;
  1722. routerlist_check_bug_417();
  1723. {
  1724. /* XXXX020 remove this code once bug 417/404 is fixed. */
  1725. extrainfo_t *ei_generated = router_get_my_extrainfo();
  1726. tor_assert(ei_generated != ei);
  1727. }
  1728. if (!ri) {
  1729. /* This router is unknown; we can't even verify the signature. Give up.*/
  1730. goto done;
  1731. }
  1732. if (routerinfo_incompatible_with_extrainfo(ri, ei, NULL)) {
  1733. if (ei->bad_sig) /* If the signature didn't check, it's just wrong. */
  1734. goto done;
  1735. sd = sdmap_get(rl->desc_by_eid_map,
  1736. ei->cache_info.signed_descriptor_digest);
  1737. if (!sd ||
  1738. memcmp(sd->identity_digest, ei->cache_info.identity_digest,
  1739. DIGEST_LEN) ||
  1740. sd->published_on != ei->cache_info.published_on)
  1741. goto done;
  1742. }
  1743. /* Okay, if we make it here, we definitely have a router corresponding to
  1744. * this extrainfo. */
  1745. ei_tmp = eimap_set(rl->extra_info_map,
  1746. ei->cache_info.signed_descriptor_digest,
  1747. ei);
  1748. r = 1;
  1749. if (ei_tmp) {
  1750. extrainfo_store_stats.bytes_dropped +=
  1751. ei_tmp->cache_info.signed_descriptor_len;
  1752. extrainfo_free(ei_tmp);
  1753. }
  1754. done:
  1755. if (r == 0)
  1756. extrainfo_free(ei);
  1757. routerlist_check_bug_417();
  1758. #ifdef DEBUG_ROUTERLIST
  1759. routerlist_assert_ok(rl);
  1760. #endif
  1761. return r;
  1762. }
  1763. /** If we're a directory cache and routerlist <b>rl</b> doesn't have
  1764. * a copy of router <b>ri</b> yet, add it to the list of old (not
  1765. * recommended but still served) descriptors. Else free it. */
  1766. static void
  1767. routerlist_insert_old(routerlist_t *rl, routerinfo_t *ri)
  1768. {
  1769. routerlist_check_bug_417();
  1770. {
  1771. /* XXXX020 remove this code once bug 417/404 is fixed. */
  1772. routerinfo_t *ri_generated = router_get_my_routerinfo();
  1773. tor_assert(ri_generated != ri);
  1774. }
  1775. tor_assert(ri->routerlist_index == -1);
  1776. if (get_options()->DirPort &&
  1777. ri->purpose == ROUTER_PURPOSE_GENERAL &&
  1778. !sdmap_get(rl->desc_digest_map,
  1779. ri->cache_info.signed_descriptor_digest)) {
  1780. signed_descriptor_t *sd = signed_descriptor_from_routerinfo(ri);
  1781. sdmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
  1782. smartlist_add(rl->old_routers, sd);
  1783. if (!tor_digest_is_zero(sd->extra_info_digest))
  1784. sdmap_set(rl->desc_by_eid_map, sd->extra_info_digest, sd);
  1785. } else {
  1786. routerinfo_free(ri);
  1787. }
  1788. routerlist_check_bug_417();
  1789. #ifdef DEBUG_ROUTERLIST
  1790. routerlist_assert_ok(rl);
  1791. #endif
  1792. }
  1793. /** Remove an item <b>ri</b> from the routerlist <b>rl</b>, updating indices
  1794. * as needed. If <b>idx</b> is nonnegative and smartlist_get(rl-&gt;routers,
  1795. * idx) == ri, we don't need to do a linear search over the list to decide
  1796. * which to remove. We fill the gap in rl-&gt;routers with a later element in
  1797. * the list, if any exists. <b>ri</b> is freed.
  1798. *
  1799. * If <b>make_old</b> is true, instead of deleting the router, we try adding
  1800. * it to rl-&gt;old_routers. */
  1801. void
  1802. routerlist_remove(routerlist_t *rl, routerinfo_t *ri, int idx, int make_old)
  1803. {
  1804. routerinfo_t *ri_tmp;
  1805. extrainfo_t *ei_tmp;
  1806. routerlist_check_bug_417();
  1807. idx = _routerlist_find_elt(rl->routers, ri, idx);
  1808. if (idx < 0)
  1809. return;
  1810. ri->routerlist_index = -1;
  1811. smartlist_del(rl->routers, idx);
  1812. if (idx < smartlist_len(rl->routers)) {
  1813. routerinfo_t *r = smartlist_get(rl->routers, idx);
  1814. r->routerlist_index = idx;
  1815. }
  1816. ri_tmp = rimap_remove(rl->identity_map, ri->cache_info.identity_digest);
  1817. router_dir_info_changed();
  1818. tor_assert(ri_tmp == ri);
  1819. if (make_old && get_options()->DirPort &&
  1820. ri->purpose == ROUTER_PURPOSE_GENERAL) {
  1821. signed_descriptor_t *sd;
  1822. sd = signed_descriptor_from_routerinfo(ri);
  1823. smartlist_add(rl->old_routers, sd);
  1824. sdmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
  1825. if (!tor_digest_is_zero(sd->extra_info_digest))
  1826. sdmap_set(rl->desc_by_eid_map, sd->extra_info_digest, sd);
  1827. } else {
  1828. signed_descriptor_t *sd_tmp;
  1829. sd_tmp = sdmap_remove(rl->desc_digest_map,
  1830. ri->cache_info.signed_descriptor_digest);
  1831. tor_assert(sd_tmp == &(ri->cache_info));
  1832. router_store_stats.bytes_dropped += ri->cache_info.signed_descriptor_len;
  1833. ei_tmp = eimap_remove(rl->extra_info_map,
  1834. ri->cache_info.extra_info_digest);
  1835. if (ei_tmp) {
  1836. extrainfo_store_stats.bytes_dropped +=
  1837. ei_tmp->cache_info.signed_descriptor_len;
  1838. extrainfo_free(ei_tmp);
  1839. }
  1840. if (!tor_digest_is_zero(ri->cache_info.extra_info_digest))
  1841. sdmap_remove(rl->desc_by_eid_map, ri->cache_info.extra_info_digest);
  1842. routerinfo_free(ri);
  1843. }
  1844. routerlist_check_bug_417();
  1845. #ifdef DEBUG_ROUTERLIST
  1846. routerlist_assert_ok(rl);
  1847. #endif
  1848. }
  1849. /** Remove a signed_descriptor_t <b>sd</b> from <b>rl</b>-\>old_routers, and
  1850. * adjust <b>rl</b> as appropriate. <b>idx</i> is -1, or the index of
  1851. * <b>sd</b>. */
  1852. static void
  1853. routerlist_remove_old(routerlist_t *rl, signed_descriptor_t *sd, int idx)
  1854. {
  1855. signed_descriptor_t *sd_tmp;
  1856. extrainfo_t *ei_tmp;
  1857. routerlist_check_bug_417();
  1858. idx = _routerlist_find_elt(rl->old_routers, sd, idx);
  1859. if (idx < 0)
  1860. return;
  1861. smartlist_del(rl->old_routers, idx);
  1862. sd_tmp = sdmap_remove(rl->desc_digest_map,
  1863. sd->signed_descriptor_digest);
  1864. tor_assert(sd_tmp == sd);
  1865. router_store_stats.bytes_dropped += sd->signed_descriptor_len;
  1866. ei_tmp = eimap_remove(rl->extra_info_map,
  1867. sd->extra_info_digest);
  1868. if (ei_tmp) {
  1869. extrainfo_store_stats.bytes_dropped +=
  1870. ei_tmp->cache_info.signed_descriptor_len;
  1871. extrainfo_free(ei_tmp);
  1872. }
  1873. if (!tor_digest_is_zero(sd->extra_info_digest))
  1874. sdmap_remove(rl->desc_by_eid_map, sd->extra_info_digest);
  1875. signed_descriptor_free(sd);
  1876. routerlist_check_bug_417();
  1877. #ifdef DEBUG_ROUTERLIST
  1878. routerlist_assert_ok(rl);
  1879. #endif
  1880. }
  1881. /** Remove <b>ri_old</b> from the routerlist <b>rl</b>, and replace it with
  1882. * <b>ri_new</b>, updating all index info. If <b>idx</b> is nonnegative and
  1883. * smartlist_get(rl-&gt;routers, idx) == ri, we don't need to do a linear
  1884. * search over the list to decide which to remove. We put ri_new in the same
  1885. * index as ri_old, if possible. ri is freed as appropriate.
  1886. *
  1887. * If <b>make_old</b> is true, instead of deleting the router, we try adding
  1888. * it to rl-&gt;old_routers. */
  1889. static void
  1890. routerlist_replace(routerlist_t *rl, routerinfo_t *ri_old,
  1891. routerinfo_t *ri_new, int idx, int make_old)
  1892. {
  1893. routerinfo_t *ri_tmp;
  1894. extrainfo_t *ei_tmp;
  1895. routerlist_check_bug_417();
  1896. {
  1897. /* XXXX020 remove this code once bug 417/404 is fixed. */
  1898. routerinfo_t *ri_generated = router_get_my_routerinfo();
  1899. tor_assert(ri_generated != ri_new);
  1900. }
  1901. tor_assert(ri_old != ri_new);
  1902. tor_assert(ri_new->routerlist_index == -1);
  1903. idx = _routerlist_find_elt(rl->routers, ri_old, idx);
  1904. router_dir_info_changed();
  1905. if (idx >= 0) {
  1906. smartlist_set(rl->routers, idx, ri_new);
  1907. ri_old->routerlist_index = -1;
  1908. ri_new->routerlist_index = idx;
  1909. } else {
  1910. log_warn(LD_BUG, "Appending entry from routerlist_replace.");
  1911. routerlist_insert(rl, ri_new);
  1912. return;
  1913. }
  1914. if (memcmp(ri_old->cache_info.identity_digest,
  1915. ri_new->cache_info.identity_digest, DIGEST_LEN)) {
  1916. /* digests don't match; digestmap_set won't replace */
  1917. rimap_remove(rl->identity_map, ri_old->cache_info.identity_digest);
  1918. }
  1919. ri_tmp = rimap_set(rl->identity_map,
  1920. ri_new->cache_info.identity_digest, ri_new);
  1921. tor_assert(!ri_tmp || ri_tmp == ri_old);
  1922. sdmap_set(rl->desc_digest_map,
  1923. ri_new->cache_info.signed_descriptor_digest,
  1924. &(ri_new->cache_info));
  1925. if (!tor_digest_is_zero(ri_new->cache_info.extra_info_digest)) {
  1926. sdmap_set(rl->desc_by_eid_map, ri_new->cache_info.extra_info_digest,
  1927. &ri_new->cache_info);
  1928. }
  1929. if (make_old && get_options()->DirPort &&
  1930. ri_old->purpose == ROUTER_PURPOSE_GENERAL) {
  1931. signed_descriptor_t *sd = signed_descriptor_from_routerinfo(ri_old);
  1932. smartlist_add(rl->old_routers, sd);
  1933. sdmap_set(rl->desc_digest_map, sd->signed_descriptor_digest, sd);
  1934. if (!tor_digest_is_zero(sd->extra_info_digest))
  1935. sdmap_set(rl->desc_by_eid_map, sd->extra_info_digest, sd);
  1936. } else {
  1937. if (memcmp(ri_old->cache_info.signed_descriptor_digest,
  1938. ri_new->cache_info.signed_descriptor_digest,
  1939. DIGEST_LEN)) {
  1940. /* digests don't match; digestmap_set didn't replace */
  1941. sdmap_remove(rl->desc_digest_map,
  1942. ri_old->cache_info.signed_descriptor_digest);
  1943. }
  1944. ei_tmp = eimap_remove(rl->extra_info_map,
  1945. ri_old->cache_info.extra_info_digest);
  1946. if (ei_tmp) {
  1947. extrainfo_store_stats.bytes_dropped +=
  1948. ei_tmp->cache_info.signed_descriptor_len;
  1949. extrainfo_free(ei_tmp);
  1950. }
  1951. if (!tor_digest_is_zero(ri_old->cache_info.extra_info_digest)) {
  1952. sdmap_remove(rl->desc_by_eid_map,
  1953. ri_old->cache_info.extra_info_digest);
  1954. }
  1955. router_store_stats.bytes_dropped +=
  1956. ri_old->cache_info.signed_descriptor_len;
  1957. routerinfo_free(ri_old);
  1958. }
  1959. routerlist_check_bug_417();
  1960. #ifdef DEBUG_ROUTERLIST
  1961. routerlist_assert_ok(rl);
  1962. #endif
  1963. }
  1964. /** Free all memory held by the routerlist module. */
  1965. void
  1966. routerlist_free_all(void)
  1967. {
  1968. if (routerlist)
  1969. routerlist_free(routerlist);
  1970. routerlist = NULL;
  1971. if (warned_nicknames) {
  1972. SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp));
  1973. smartlist_free(warned_nicknames);
  1974. warned_nicknames = NULL;
  1975. }
  1976. if (warned_conflicts) {
  1977. SMARTLIST_FOREACH(warned_conflicts, char *, cp, tor_free(cp));
  1978. smartlist_free(warned_conflicts);
  1979. warned_conflicts = NULL;
  1980. }
  1981. if (trusted_dir_servers) {
  1982. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  1983. trusted_dir_server_free(ds));
  1984. smartlist_free(trusted_dir_servers);
  1985. trusted_dir_servers = NULL;
  1986. }
  1987. if (networkstatus_list) {
  1988. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  1989. networkstatus_free(ns));
  1990. smartlist_free(networkstatus_list);
  1991. networkstatus_list = NULL;
  1992. }
  1993. if (routerstatus_list) {
  1994. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  1995. local_routerstatus_free(rs));
  1996. smartlist_free(routerstatus_list);
  1997. routerstatus_list = NULL;
  1998. }
  1999. if (routerstatus_by_desc_digest_map) {
  2000. digestmap_free(routerstatus_by_desc_digest_map, NULL);
  2001. routerstatus_by_desc_digest_map = NULL;
  2002. }
  2003. if (named_server_map) {
  2004. strmap_free(named_server_map, _tor_free);
  2005. }
  2006. }
  2007. /** Free all storage held by the routerstatus object <b>rs</b>. */
  2008. void
  2009. routerstatus_free(routerstatus_t *rs)
  2010. {
  2011. tor_free(rs);
  2012. }
  2013. /** Free all storage held by the local_routerstatus object <b>rs</b>. */
  2014. static void
  2015. local_routerstatus_free(local_routerstatus_t *rs)
  2016. {
  2017. tor_free(rs);
  2018. }
  2019. /** Free all storage held by the networkstatus object <b>ns</b>. */
  2020. void
  2021. networkstatus_free(networkstatus_t *ns)
  2022. {
  2023. tor_free(ns->source_address);
  2024. tor_free(ns->contact);
  2025. if (ns->signing_key)
  2026. crypto_free_pk_env(ns->signing_key);
  2027. tor_free(ns->client_versions);
  2028. tor_free(ns->server_versions);
  2029. if (ns->entries) {
  2030. SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
  2031. routerstatus_free(rs));
  2032. smartlist_free(ns->entries);
  2033. }
  2034. tor_free(ns);
  2035. }
  2036. /** Forget that we have issued any router-related warnings, so that we'll
  2037. * warn again if we see the same errors. */
  2038. void
  2039. routerlist_reset_warnings(void)
  2040. {
  2041. if (!warned_nicknames)
  2042. warned_nicknames = smartlist_create();
  2043. SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp));
  2044. smartlist_clear(warned_nicknames); /* now the list is empty. */
  2045. if (!warned_conflicts)
  2046. warned_conflicts = smartlist_create();
  2047. SMARTLIST_FOREACH(warned_conflicts, char *, cp, tor_free(cp));
  2048. smartlist_clear(warned_conflicts); /* now the list is empty. */
  2049. if (!routerstatus_list)
  2050. routerstatus_list = smartlist_create();
  2051. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  2052. rs->name_lookup_warned = 0);
  2053. have_warned_about_invalid_status = 0;
  2054. have_warned_about_old_version = 0;
  2055. have_warned_about_new_version = 0;
  2056. }
  2057. /** Mark the router with ID <b>digest</b> as running or non-running
  2058. * in our routerlist. */
  2059. void
  2060. router_set_status(const char *digest, int up)
  2061. {
  2062. routerinfo_t *router;
  2063. local_routerstatus_t *status;
  2064. tor_assert(digest);
  2065. routerlist_check_bug_417();
  2066. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, d,
  2067. if (!memcmp(d->digest, digest, DIGEST_LEN))
  2068. d->is_running = up);
  2069. router = router_get_by_digest(digest);
  2070. if (router) {
  2071. log_debug(LD_DIR,"Marking router '%s' as %s.",
  2072. router->nickname, up ? "up" : "down");
  2073. if (!up && router_is_me(router) && !we_are_hibernating())
  2074. log_warn(LD_NET, "We just marked ourself as down. Are your external "
  2075. "addresses reachable?");
  2076. router->is_running = up;
  2077. }
  2078. status = router_get_combined_status_by_digest(digest);
  2079. if (status && status->status.is_running != up) {
  2080. status->status.is_running = up;
  2081. control_event_networkstatus_changed_single(status);
  2082. }
  2083. router_dir_info_changed();
  2084. routerlist_check_bug_417();
  2085. }
  2086. /** Add <b>router</b> to the routerlist, if we don't already have it. Replace
  2087. * older entries (if any) with the same key. Note: Callers should not hold
  2088. * their pointers to <b>router</b> if this function fails; <b>router</b>
  2089. * will either be inserted into the routerlist or freed.
  2090. *
  2091. * Returns >= 0 if the router was added; less than 0 if it was not.
  2092. *
  2093. * If we're returning non-zero, then assign to *<b>msg</b> a static string
  2094. * describing the reason for not liking the routerinfo.
  2095. *
  2096. * If the return value is less than -1, there was a problem with the
  2097. * routerinfo. If the return value is equal to -1, then the routerinfo was
  2098. * fine, but out-of-date. If the return value is equal to 1, the
  2099. * routerinfo was accepted, but we should notify the generator of the
  2100. * descriptor using the message *<b>msg</b>.
  2101. *
  2102. * If <b>from_cache</b>, this descriptor came from our disk cache. If
  2103. * <b>from_fetch</b>, we received it in response to a request we made.
  2104. * (If both are false, that means it was uploaded to us as an auth dir
  2105. * server or via the controller.)
  2106. *
  2107. * This function should be called *after*
  2108. * routers_update_status_from_networkstatus; subsequently, you should call
  2109. * router_rebuild_store and control_event_descriptors_changed.
  2110. */
  2111. int
  2112. router_add_to_routerlist(routerinfo_t *router, const char **msg,
  2113. int from_cache, int from_fetch)
  2114. {
  2115. const char *id_digest;
  2116. int authdir = authdir_mode(get_options());
  2117. int authdir_believes_valid = 0;
  2118. routerinfo_t *old_router;
  2119. routerlist_check_bug_417();
  2120. tor_assert(msg);
  2121. if (!routerlist)
  2122. router_get_routerlist();
  2123. if (!networkstatus_list)
  2124. networkstatus_list = smartlist_create();
  2125. id_digest = router->cache_info.identity_digest;
  2126. /* Make sure that we haven't already got this exact descriptor. */
  2127. if (sdmap_get(routerlist->desc_digest_map,
  2128. router->cache_info.signed_descriptor_digest)) {
  2129. log_info(LD_DIR,
  2130. "Dropping descriptor that we already have for router '%s'",
  2131. router->nickname);
  2132. *msg = "Router descriptor was not new.";
  2133. routerinfo_free(router);
  2134. return -1;
  2135. }
  2136. if (routerlist_is_overfull(routerlist))
  2137. routerlist_remove_old_routers();
  2138. if (authdir) {
  2139. if (authdir_wants_to_reject_router(router, msg,
  2140. !from_cache && !from_fetch)) {
  2141. tor_assert(*msg);
  2142. routerinfo_free(router);
  2143. return -2;
  2144. }
  2145. authdir_believes_valid = router->is_valid;
  2146. } else if (from_fetch) {
  2147. /* Only check the descriptor digest against the network statuses when
  2148. * we are receiving in response to a fetch. */
  2149. if (!signed_desc_digest_is_recognized(&router->cache_info)) {
  2150. /* We asked for it, so some networkstatus must have listed it when we
  2151. * did. Save it if we're a cache in case somebody else asks for it. */
  2152. log_info(LD_DIR,
  2153. "Received a no-longer-recognized descriptor for router '%s'",
  2154. router->nickname);
  2155. *msg = "Router descriptor is not referenced by any network-status.";
  2156. /* Only journal this desc if we'll be serving it. */
  2157. if (!from_cache && get_options()->DirPort)
  2158. signed_desc_append_to_journal(&router->cache_info, router->purpose);
  2159. routerlist_insert_old(routerlist, router);
  2160. return -1;
  2161. }
  2162. }
  2163. /* We no longer need a router with this descriptor digest. */
  2164. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  2165. {
  2166. routerstatus_t *rs =
  2167. networkstatus_find_entry(ns, router->cache_info.identity_digest);
  2168. if (rs && !memcmp(rs->descriptor_digest,
  2169. router->cache_info.signed_descriptor_digest,
  2170. DIGEST_LEN))
  2171. rs->need_to_mirror = 0;
  2172. });
  2173. /* If we have a router with the same identity key, choose the newer one. */
  2174. old_router = rimap_get(routerlist->identity_map,
  2175. router->cache_info.identity_digest);
  2176. if (old_router) {
  2177. int pos = old_router->routerlist_index;
  2178. tor_assert(smartlist_get(routerlist->routers, pos) == old_router);
  2179. if (router->cache_info.published_on <=
  2180. old_router->cache_info.published_on) {
  2181. /* Same key, but old */
  2182. log_debug(LD_DIR, "Skipping not-new descriptor for router '%s'",
  2183. router->nickname);
  2184. /* Only journal this desc if we'll be serving it. */
  2185. if (!from_cache && get_options()->DirPort)
  2186. signed_desc_append_to_journal(&router->cache_info, router->purpose);
  2187. routerlist_insert_old(routerlist, router);
  2188. *msg = "Router descriptor was not new.";
  2189. return -1;
  2190. } else {
  2191. /* Same key, new. */
  2192. int unreachable = 0;
  2193. log_debug(LD_DIR, "Replacing entry for router '%s/%s' [%s]",
  2194. router->nickname, old_router->nickname,
  2195. hex_str(id_digest,DIGEST_LEN));
  2196. if (router->addr == old_router->addr &&
  2197. router->or_port == old_router->or_port) {
  2198. /* these carry over when the address and orport are unchanged.*/
  2199. router->last_reachable = old_router->last_reachable;
  2200. router->testing_since = old_router->testing_since;
  2201. router->num_unreachable_notifications =
  2202. old_router->num_unreachable_notifications;
  2203. }
  2204. if (authdir && !from_cache && !from_fetch &&
  2205. router_have_minimum_dir_info() &&
  2206. dirserv_thinks_router_is_blatantly_unreachable(router,
  2207. time(NULL))) {
  2208. if (router->num_unreachable_notifications >= 3) {
  2209. unreachable = 1;
  2210. log_notice(LD_DIR, "Notifying server '%s' that it's unreachable. "
  2211. "(ContactInfo '%s', platform '%s').",
  2212. router->nickname,
  2213. router->contact_info ? router->contact_info : "",
  2214. router->platform ? router->platform : "");
  2215. } else {
  2216. log_info(LD_DIR,"'%s' may be unreachable -- the %d previous "
  2217. "descriptors were thought to be unreachable.",
  2218. router->nickname, router->num_unreachable_notifications);
  2219. router->num_unreachable_notifications++;
  2220. }
  2221. }
  2222. routerlist_replace(routerlist, old_router, router, pos, 1);
  2223. if (!from_cache) {
  2224. signed_desc_append_to_journal(&router->cache_info, router->purpose);
  2225. }
  2226. directory_set_dirty();
  2227. *msg = unreachable ? "Dirserver believes your ORPort is unreachable" :
  2228. authdir_believes_valid ? "Valid server updated" :
  2229. ("Invalid server updated. (This dirserver is marking your "
  2230. "server as unapproved.)");
  2231. return unreachable ? 1 : 0;
  2232. }
  2233. }
  2234. /* We haven't seen a router with this identity before. Add it to the end of
  2235. * the list. */
  2236. routerlist_insert(routerlist, router);
  2237. if (!from_cache)
  2238. signed_desc_append_to_journal(&router->cache_info, router->purpose);
  2239. directory_set_dirty();
  2240. return 0;
  2241. }
  2242. /** Insert <b>ei</b> into the routerlist, or free it. Other arguments are
  2243. * as for router_add_to_routerlist(). */
  2244. void
  2245. router_add_extrainfo_to_routerlist(extrainfo_t *ei, const char **msg,
  2246. int from_cache, int from_fetch)
  2247. {
  2248. int inserted;
  2249. (void)from_fetch;
  2250. if (msg) *msg = NULL;
  2251. inserted = extrainfo_insert(router_get_routerlist(), ei);
  2252. if (inserted && !from_cache)
  2253. signed_desc_append_to_journal(&ei->cache_info, EXTRAINFO_PURPOSE_GENERAL);
  2254. }
  2255. /** Sorting helper: return &lt;0, 0, or &gt;0 depending on whether the
  2256. * signed_descriptor_t* in *<b>a</b> has an identity digest preceding, equal
  2257. * to, or later than that of *<b>b</b>. */
  2258. static int
  2259. _compare_old_routers_by_identity(const void **_a, const void **_b)
  2260. {
  2261. int i;
  2262. const signed_descriptor_t *r1 = *_a, *r2 = *_b;
  2263. if ((i = memcmp(r1->identity_digest, r2->identity_digest, DIGEST_LEN)))
  2264. return i;
  2265. return r1->published_on - r2->published_on;
  2266. }
  2267. /** Internal type used to represent how long an old descriptor was valid,
  2268. * where it appeared in the list of old descriptors, and whether it's extra
  2269. * old. Used only by routerlist_remove_old_cached_routers_with_id(). */
  2270. struct duration_idx_t {
  2271. int duration;
  2272. int idx;
  2273. int old;
  2274. };
  2275. /** Sorting helper: compare two duration_idx_t by their duration. */
  2276. static int
  2277. _compare_duration_idx(const void *_d1, const void *_d2)
  2278. {
  2279. const struct duration_idx_t *d1 = _d1;
  2280. const struct duration_idx_t *d2 = _d2;
  2281. return d1->duration - d2->duration;
  2282. }
  2283. /** The range <b>lo</b> through <b>hi</b> inclusive of routerlist->old_routers
  2284. * must contain routerinfo_t with the same identity and with publication time
  2285. * in ascending order. Remove members from this range until there are no more
  2286. * than max_descriptors_per_router() remaining. Start by removing the oldest
  2287. * members from before <b>cutoff</b>, then remove members which were current
  2288. * for the lowest amount of time. The order of members of old_routers at
  2289. * indices <b>lo</b> or higher may be changed.
  2290. */
  2291. static void
  2292. routerlist_remove_old_cached_routers_with_id(time_t cutoff, int lo, int hi,
  2293. digestmap_t *retain)
  2294. {
  2295. int i, n = hi-lo+1, n_extra;
  2296. int n_rmv = 0;
  2297. struct duration_idx_t *lifespans;
  2298. uint8_t *rmv, *must_keep;
  2299. smartlist_t *lst = routerlist->old_routers;
  2300. #if 1
  2301. const char *ident;
  2302. tor_assert(hi < smartlist_len(lst));
  2303. tor_assert(lo <= hi);
  2304. ident = ((signed_descriptor_t*)smartlist_get(lst, lo))->identity_digest;
  2305. for (i = lo+1; i <= hi; ++i) {
  2306. signed_descriptor_t *r = smartlist_get(lst, i);
  2307. tor_assert(!memcmp(ident, r->identity_digest, DIGEST_LEN));
  2308. }
  2309. #endif
  2310. /* Check whether we need to do anything at all. */
  2311. n_extra = n - max_descriptors_per_router();
  2312. if (n_extra <= 0)
  2313. return;
  2314. lifespans = tor_malloc_zero(sizeof(struct duration_idx_t)*n);
  2315. rmv = tor_malloc_zero(sizeof(uint8_t)*n);
  2316. must_keep = tor_malloc_zero(sizeof(uint8_t)*n);
  2317. /* Set lifespans to contain the lifespan and index of each server. */
  2318. /* Set rmv[i-lo]=1 if we're going to remove a server for being too old. */
  2319. for (i = lo; i <= hi; ++i) {
  2320. signed_descriptor_t *r = smartlist_get(lst, i);
  2321. signed_descriptor_t *r_next;
  2322. lifespans[i-lo].idx = i;
  2323. if (retain && digestmap_get(retain, r->signed_descriptor_digest)) {
  2324. must_keep[i-lo] = 1;
  2325. }
  2326. if (i < hi) {
  2327. r_next = smartlist_get(lst, i+1);
  2328. tor_assert(r->published_on <= r_next->published_on);
  2329. lifespans[i-lo].duration = (r_next->published_on - r->published_on);
  2330. } else {
  2331. r_next = NULL;
  2332. lifespans[i-lo].duration = INT_MAX;
  2333. }
  2334. if (!must_keep[i-lo] && r->published_on < cutoff && n_rmv < n_extra) {
  2335. ++n_rmv;
  2336. lifespans[i-lo].old = 1;
  2337. rmv[i-lo] = 1;
  2338. }
  2339. }
  2340. if (n_rmv < n_extra) {
  2341. /**
  2342. * We aren't removing enough servers for being old. Sort lifespans by
  2343. * the duration of liveness, and remove the ones we're not already going to
  2344. * remove based on how long they were alive.
  2345. **/
  2346. qsort(lifespans, n, sizeof(struct duration_idx_t), _compare_duration_idx);
  2347. for (i = 0; i < n && n_rmv < n_extra; ++i) {
  2348. if (!must_keep[lifespans[i].idx-lo] && !lifespans[i].old) {
  2349. rmv[lifespans[i].idx-lo] = 1;
  2350. ++n_rmv;
  2351. }
  2352. }
  2353. }
  2354. i = hi;
  2355. do {
  2356. if (rmv[i-lo])
  2357. routerlist_remove_old(routerlist, smartlist_get(lst, i), i);
  2358. } while (--i >= lo);
  2359. tor_free(must_keep);
  2360. tor_free(rmv);
  2361. tor_free(lifespans);
  2362. }
  2363. /** Deactivate any routers from the routerlist that are more than
  2364. * ROUTER_MAX_AGE seconds old and not recommended by any networkstatuses;
  2365. * remove old routers from the list of cached routers if we have too many.
  2366. */
  2367. void
  2368. routerlist_remove_old_routers(void)
  2369. {
  2370. int i, hi=-1;
  2371. const char *cur_id = NULL;
  2372. time_t now = time(NULL);
  2373. time_t cutoff;
  2374. routerinfo_t *router;
  2375. signed_descriptor_t *sd;
  2376. digestmap_t *retain;
  2377. if (!routerlist || !networkstatus_list)
  2378. return;
  2379. routerlist_assert_ok(routerlist);
  2380. retain = digestmap_new();
  2381. cutoff = now - OLD_ROUTER_DESC_MAX_AGE;
  2382. /* Build a list of all the descriptors that _anybody_ recommends. */
  2383. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  2384. {
  2385. /* XXXX The inner loop here gets pretty expensive, and actually shows up
  2386. * on some profiles. It may be the reason digestmap_set shows up in
  2387. * profiles too. If instead we kept a per-descriptor digest count of
  2388. * how many networkstatuses recommended each descriptor, and changed
  2389. * that only when the networkstatuses changed, that would be a speed
  2390. * improvement, possibly 1-4% if it also removes digestmap_set from the
  2391. * profile. Not worth it for 0.1.2.x, though. The new directory
  2392. * system will obsolete this whole thing in 0.2.0.x. */
  2393. SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
  2394. if (rs->published_on >= cutoff)
  2395. digestmap_set(retain, rs->descriptor_digest, (void*)1));
  2396. });
  2397. /* If we have a bunch of networkstatuses, we should consider pruning current
  2398. * routers that are too old and that nobody recommends. (If we don't have
  2399. * enough networkstatuses, then we should get more before we decide to kill
  2400. * routers.) */
  2401. if (smartlist_len(networkstatus_list) > get_n_v2_authorities() / 2) {
  2402. cutoff = now - ROUTER_MAX_AGE;
  2403. /* Remove too-old unrecommended members of routerlist->routers. */
  2404. for (i = 0; i < smartlist_len(routerlist->routers); ++i) {
  2405. router = smartlist_get(routerlist->routers, i);
  2406. if (router->cache_info.published_on <= cutoff &&
  2407. !digestmap_get(retain,router->cache_info.signed_descriptor_digest)) {
  2408. /* Too old: remove it. (If we're a cache, just move it into
  2409. * old_routers.) */
  2410. log_info(LD_DIR,
  2411. "Forgetting obsolete (too old) routerinfo for router '%s'",
  2412. router->nickname);
  2413. routerlist_remove(routerlist, router, i--, 1);
  2414. }
  2415. }
  2416. }
  2417. routerlist_assert_ok(routerlist);
  2418. /* Remove far-too-old members of routerlist->old_routers. */
  2419. cutoff = now - OLD_ROUTER_DESC_MAX_AGE;
  2420. for (i = 0; i < smartlist_len(routerlist->old_routers); ++i) {
  2421. sd = smartlist_get(routerlist->old_routers, i);
  2422. if (sd->published_on <= cutoff &&
  2423. !digestmap_get(retain, sd->signed_descriptor_digest)) {
  2424. /* Too old. Remove it. */
  2425. routerlist_remove_old(routerlist, sd, i--);
  2426. }
  2427. }
  2428. routerlist_assert_ok(routerlist);
  2429. /* Now we might have to look at routerlist->old_routers for extraneous
  2430. * members. (We'd keep all the members if we could, but we need to save
  2431. * space.) First, check whether we have too many router descriptors, total.
  2432. * We're okay with having too many for some given router, so long as the
  2433. * total number doesn't approach max_descriptors_per_router()*len(router).
  2434. */
  2435. if (smartlist_len(routerlist->old_routers) <
  2436. smartlist_len(routerlist->routers) * (max_descriptors_per_router() - 1))
  2437. goto done;
  2438. smartlist_sort(routerlist->old_routers, _compare_old_routers_by_identity);
  2439. /* Iterate through the list from back to front, so when we remove descriptors
  2440. * we don't mess up groups we haven't gotten to. */
  2441. for (i = smartlist_len(routerlist->old_routers)-1; i >= 0; --i) {
  2442. signed_descriptor_t *r = smartlist_get(routerlist->old_routers, i);
  2443. if (!cur_id) {
  2444. cur_id = r->identity_digest;
  2445. hi = i;
  2446. }
  2447. if (memcmp(cur_id, r->identity_digest, DIGEST_LEN)) {
  2448. routerlist_remove_old_cached_routers_with_id(cutoff, i+1, hi, retain);
  2449. cur_id = r->identity_digest;
  2450. hi = i;
  2451. }
  2452. }
  2453. if (hi>=0)
  2454. routerlist_remove_old_cached_routers_with_id(cutoff, 0, hi, retain);
  2455. routerlist_assert_ok(routerlist);
  2456. done:
  2457. digestmap_free(retain, NULL);
  2458. }
  2459. /**
  2460. * Code to parse a single router descriptor and insert it into the
  2461. * routerlist. Return -1 if the descriptor was ill-formed; 0 if the
  2462. * descriptor was well-formed but could not be added; and 1 if the
  2463. * descriptor was added.
  2464. *
  2465. * If we don't add it and <b>msg</b> is not NULL, then assign to
  2466. * *<b>msg</b> a static string describing the reason for refusing the
  2467. * descriptor.
  2468. *
  2469. * This is used only by the controller.
  2470. */
  2471. int
  2472. router_load_single_router(const char *s, uint8_t purpose, const char **msg)
  2473. {
  2474. routerinfo_t *ri;
  2475. int r;
  2476. smartlist_t *lst;
  2477. tor_assert(msg);
  2478. *msg = NULL;
  2479. routerlist_check_bug_417();
  2480. if (!(ri = router_parse_entry_from_string(s, NULL, 1))) {
  2481. log_warn(LD_DIR, "Error parsing router descriptor; dropping.");
  2482. *msg = "Couldn't parse router descriptor.";
  2483. return -1;
  2484. }
  2485. ri->purpose = purpose;
  2486. if (purpose != ROUTER_PURPOSE_GENERAL)
  2487. ri->cache_info.do_not_cache = 1;
  2488. if (router_is_me(ri)) {
  2489. log_warn(LD_DIR, "Router's identity key matches mine; dropping.");
  2490. *msg = "Router's identity key matches mine.";
  2491. routerinfo_free(ri);
  2492. return 0;
  2493. }
  2494. lst = smartlist_create();
  2495. smartlist_add(lst, ri);
  2496. routers_update_status_from_networkstatus(lst, 0);
  2497. if ((r=router_add_to_routerlist(ri, msg, 0, 0))<0) {
  2498. /* we've already assigned to *msg now, and ri is already freed */
  2499. tor_assert(*msg);
  2500. if (r < -1)
  2501. log_warn(LD_DIR, "Couldn't add router to list: %s Dropping.", *msg);
  2502. smartlist_free(lst);
  2503. return 0;
  2504. } else {
  2505. control_event_descriptors_changed(lst);
  2506. smartlist_free(lst);
  2507. log_debug(LD_DIR, "Added router to list");
  2508. return 1;
  2509. }
  2510. }
  2511. /** Given a string <b>s</b> containing some routerdescs, parse it and put the
  2512. * routers into our directory. If saved_location is SAVED_NOWHERE, the routers
  2513. * are in response to a query to the network: cache them by adding them to
  2514. * the journal.
  2515. *
  2516. * If <b>requested_fingerprints</b> is provided, it must contain a list of
  2517. * uppercased identity fingerprints. Do not update any router whose
  2518. * fingerprint is not on the list; after updating a router, remove its
  2519. * fingerprint from the list.
  2520. */
  2521. void
  2522. router_load_routers_from_string(const char *s, const char *eos,
  2523. saved_location_t saved_location,
  2524. smartlist_t *requested_fingerprints,
  2525. uint8_t purpose)
  2526. {
  2527. smartlist_t *routers = smartlist_create(), *changed = smartlist_create();
  2528. char fp[HEX_DIGEST_LEN+1];
  2529. const char *msg;
  2530. int from_cache = (saved_location != SAVED_NOWHERE);
  2531. router_parse_list_from_string(&s, eos, routers, saved_location, 0);
  2532. routers_update_status_from_networkstatus(routers, !from_cache);
  2533. log_info(LD_DIR, "%d elements to add", smartlist_len(routers));
  2534. SMARTLIST_FOREACH(routers, routerinfo_t *, ri,
  2535. {
  2536. base16_encode(fp, sizeof(fp), ri->cache_info.signed_descriptor_digest,
  2537. DIGEST_LEN);
  2538. if (requested_fingerprints) {
  2539. if (smartlist_string_isin(requested_fingerprints, fp)) {
  2540. smartlist_string_remove(requested_fingerprints, fp);
  2541. } else {
  2542. char *requested =
  2543. smartlist_join_strings(requested_fingerprints," ",0,NULL);
  2544. log_warn(LD_DIR,
  2545. "We received a router descriptor with a fingerprint (%s) "
  2546. "that we never requested. (We asked for: %s.) Dropping.",
  2547. fp, requested);
  2548. tor_free(requested);
  2549. routerinfo_free(ri);
  2550. continue;
  2551. }
  2552. }
  2553. ri->purpose = purpose;
  2554. if (purpose != ROUTER_PURPOSE_GENERAL)
  2555. ri->cache_info.do_not_cache = 1;
  2556. if (router_add_to_routerlist(ri, &msg, from_cache, !from_cache) >= 0)
  2557. smartlist_add(changed, ri);
  2558. });
  2559. if (smartlist_len(changed))
  2560. control_event_descriptors_changed(changed);
  2561. routerlist_assert_ok(routerlist);
  2562. router_rebuild_store(0, 0);
  2563. smartlist_free(routers);
  2564. smartlist_free(changed);
  2565. }
  2566. /** Parse one or more extrainfos from <b>s</b> (ending immediately before
  2567. * <b>eos</b> if <b>eos</b> is present). Other arguments are as for
  2568. * router_load_routers_from_string(). */
  2569. void
  2570. router_load_extrainfo_from_string(const char *s, const char *eos,
  2571. saved_location_t saved_location,
  2572. smartlist_t *requested_fingerprints)
  2573. {
  2574. smartlist_t *extrainfo_list = smartlist_create();
  2575. const char *msg;
  2576. int from_cache = (saved_location != SAVED_NOWHERE);
  2577. router_parse_list_from_string(&s, eos, extrainfo_list, saved_location, 1);
  2578. log_info(LD_DIR, "%d elements to add", smartlist_len(extrainfo_list));
  2579. SMARTLIST_FOREACH(extrainfo_list, extrainfo_t *, ei, {
  2580. if (requested_fingerprints) {
  2581. char fp[HEX_DIGEST_LEN+1];
  2582. base16_encode(fp, sizeof(fp), ei->cache_info.signed_descriptor_digest,
  2583. DIGEST_LEN);
  2584. smartlist_string_remove(requested_fingerprints, fp);
  2585. }
  2586. router_add_extrainfo_to_routerlist(ei, &msg, from_cache, !from_cache);
  2587. });
  2588. routerlist_assert_ok(routerlist);
  2589. router_rebuild_store(0, 1);
  2590. smartlist_free(extrainfo_list);
  2591. }
  2592. /** Helper: return a newly allocated string containing the name of the filename
  2593. * where we plan to cache the network status with the given identity digest. */
  2594. char *
  2595. networkstatus_get_cache_filename(const char *identity_digest)
  2596. {
  2597. const char *datadir = get_options()->DataDirectory;
  2598. size_t len = strlen(datadir)+64;
  2599. char fp[HEX_DIGEST_LEN+1];
  2600. char *fn = tor_malloc(len+1);
  2601. base16_encode(fp, HEX_DIGEST_LEN+1, identity_digest, DIGEST_LEN);
  2602. tor_snprintf(fn, len, "%s"PATH_SEPARATOR"cached-status"PATH_SEPARATOR"%s",
  2603. datadir,fp);
  2604. return fn;
  2605. }
  2606. /** Helper for smartlist_sort: Compare two networkstatus objects by
  2607. * publication date. */
  2608. static int
  2609. _compare_networkstatus_published_on(const void **_a, const void **_b)
  2610. {
  2611. const networkstatus_t *a = *_a, *b = *_b;
  2612. if (a->published_on < b->published_on)
  2613. return -1;
  2614. else if (a->published_on > b->published_on)
  2615. return 1;
  2616. else
  2617. return 0;
  2618. }
  2619. /** Add the parsed neworkstatus in <b>ns</b> (with original document in
  2620. * <b>s</b> to the disk cache (and the in-memory directory server cache) as
  2621. * appropriate. */
  2622. static int
  2623. add_networkstatus_to_cache(const char *s,
  2624. networkstatus_source_t source,
  2625. networkstatus_t *ns)
  2626. {
  2627. if (source != NS_FROM_CACHE) {
  2628. char *fn = networkstatus_get_cache_filename(ns->identity_digest);
  2629. if (write_str_to_file(fn, s, 0)<0) {
  2630. log_notice(LD_FS, "Couldn't write cached network status to \"%s\"", fn);
  2631. }
  2632. tor_free(fn);
  2633. }
  2634. if (get_options()->DirPort)
  2635. dirserv_set_cached_networkstatus_v2(s,
  2636. ns->identity_digest,
  2637. ns->published_on);
  2638. return 0;
  2639. }
  2640. /** How far in the future do we allow a network-status to get before removing
  2641. * it? (seconds) */
  2642. #define NETWORKSTATUS_ALLOW_SKEW (24*60*60)
  2643. /** Given a string <b>s</b> containing a network status that we received at
  2644. * <b>arrived_at</b> from <b>source</b>, try to parse it, see if we want to
  2645. * store it, and put it into our cache as necessary.
  2646. *
  2647. * If <b>source</b> is NS_FROM_DIR or NS_FROM_CACHE, do not replace our
  2648. * own networkstatus_t (if we're an authoritative directory server).
  2649. *
  2650. * If <b>source</b> is NS_FROM_CACHE, do not write our networkstatus_t to the
  2651. * cache.
  2652. *
  2653. * If <b>requested_fingerprints</b> is provided, it must contain a list of
  2654. * uppercased identity fingerprints. Do not update any networkstatus whose
  2655. * fingerprint is not on the list; after updating a networkstatus, remove its
  2656. * fingerprint from the list.
  2657. *
  2658. * Return 0 on success, -1 on failure.
  2659. *
  2660. * Callers should make sure that routers_update_all_from_networkstatus() is
  2661. * invoked after this function succeeds.
  2662. */
  2663. int
  2664. router_set_networkstatus(const char *s, time_t arrived_at,
  2665. networkstatus_source_t source, smartlist_t *requested_fingerprints)
  2666. {
  2667. networkstatus_t *ns;
  2668. int i, found;
  2669. time_t now;
  2670. int skewed = 0;
  2671. trusted_dir_server_t *trusted_dir = NULL;
  2672. const char *source_desc = NULL;
  2673. char fp[HEX_DIGEST_LEN+1];
  2674. char published[ISO_TIME_LEN+1];
  2675. ns = networkstatus_parse_from_string(s);
  2676. if (!ns) {
  2677. log_warn(LD_DIR, "Couldn't parse network status.");
  2678. return -1;
  2679. }
  2680. base16_encode(fp, HEX_DIGEST_LEN+1, ns->identity_digest, DIGEST_LEN);
  2681. if (!(trusted_dir =
  2682. router_get_trusteddirserver_by_digest(ns->identity_digest)) ||
  2683. !(trusted_dir->type & V2_AUTHORITY)) {
  2684. log_info(LD_DIR, "Network status was signed, but not by an authoritative "
  2685. "directory we recognize.");
  2686. if (!get_options()->DirPort) {
  2687. networkstatus_free(ns);
  2688. return 0;
  2689. }
  2690. source_desc = fp;
  2691. } else {
  2692. source_desc = trusted_dir->description;
  2693. }
  2694. now = time(NULL);
  2695. if (arrived_at > now)
  2696. arrived_at = now;
  2697. ns->received_on = arrived_at;
  2698. format_iso_time(published, ns->published_on);
  2699. if (ns->published_on > now + NETWORKSTATUS_ALLOW_SKEW) {
  2700. log_warn(LD_GENERAL, "Network status from %s was published in the future "
  2701. "(%s GMT). Somebody is skewed here: check your clock. "
  2702. "Not caching.",
  2703. source_desc, published);
  2704. control_event_general_status(LOG_WARN,
  2705. "CLOCK_SKEW SOURCE=NETWORKSTATUS:%s:%d",
  2706. ns->source_address, ns->source_dirport);
  2707. skewed = 1;
  2708. }
  2709. if (!networkstatus_list)
  2710. networkstatus_list = smartlist_create();
  2711. if ( (source == NS_FROM_DIR_BY_FP || source == NS_FROM_DIR_ALL) &&
  2712. router_digest_is_me(ns->identity_digest)) {
  2713. /* Don't replace our own networkstatus when we get it from somebody else.*/
  2714. networkstatus_free(ns);
  2715. return 0;
  2716. }
  2717. if (requested_fingerprints) {
  2718. if (smartlist_string_isin(requested_fingerprints, fp)) {
  2719. smartlist_string_remove(requested_fingerprints, fp);
  2720. } else {
  2721. if (source != NS_FROM_DIR_ALL) {
  2722. char *requested =
  2723. smartlist_join_strings(requested_fingerprints," ",0,NULL);
  2724. log_warn(LD_DIR,
  2725. "We received a network status with a fingerprint (%s) that we "
  2726. "never requested. (We asked for: %s.) Dropping.",
  2727. fp, requested);
  2728. tor_free(requested);
  2729. return 0;
  2730. }
  2731. }
  2732. }
  2733. if (!trusted_dir) {
  2734. if (!skewed && get_options()->DirPort) {
  2735. /* We got a non-trusted networkstatus, and we're a directory cache.
  2736. * This means that we asked an authority, and it told us about another
  2737. * authority we didn't recognize. */
  2738. log_info(LD_DIR,
  2739. "We do not recognize authority (%s) but we are willing "
  2740. "to cache it.", fp);
  2741. add_networkstatus_to_cache(s, source, ns);
  2742. networkstatus_free(ns);
  2743. }
  2744. return 0;
  2745. }
  2746. found = 0;
  2747. for (i=0; i < smartlist_len(networkstatus_list); ++i) {
  2748. networkstatus_t *old_ns = smartlist_get(networkstatus_list, i);
  2749. if (!memcmp(old_ns->identity_digest, ns->identity_digest, DIGEST_LEN)) {
  2750. if (!memcmp(old_ns->networkstatus_digest,
  2751. ns->networkstatus_digest, DIGEST_LEN)) {
  2752. /* Same one we had before. */
  2753. networkstatus_free(ns);
  2754. tor_assert(trusted_dir);
  2755. log_info(LD_DIR,
  2756. "Not replacing network-status from %s (published %s); "
  2757. "we already have it.",
  2758. trusted_dir->description, published);
  2759. if (old_ns->received_on < arrived_at) {
  2760. if (source != NS_FROM_CACHE) {
  2761. char *fn;
  2762. fn = networkstatus_get_cache_filename(old_ns->identity_digest);
  2763. /* We use mtime to tell when it arrived, so update that. */
  2764. touch_file(fn);
  2765. tor_free(fn);
  2766. }
  2767. old_ns->received_on = arrived_at;
  2768. }
  2769. ++trusted_dir->n_networkstatus_failures;
  2770. return 0;
  2771. } else if (old_ns->published_on >= ns->published_on) {
  2772. char old_published[ISO_TIME_LEN+1];
  2773. format_iso_time(old_published, old_ns->published_on);
  2774. tor_assert(trusted_dir);
  2775. log_info(LD_DIR,
  2776. "Not replacing network-status from %s (published %s);"
  2777. " we have a newer one (published %s) for this authority.",
  2778. trusted_dir->description, published,
  2779. old_published);
  2780. networkstatus_free(ns);
  2781. ++trusted_dir->n_networkstatus_failures;
  2782. return 0;
  2783. } else {
  2784. networkstatus_free(old_ns);
  2785. smartlist_set(networkstatus_list, i, ns);
  2786. found = 1;
  2787. break;
  2788. }
  2789. }
  2790. }
  2791. if (source != NS_FROM_CACHE && trusted_dir)
  2792. trusted_dir->n_networkstatus_failures = 0;
  2793. if (!found)
  2794. smartlist_add(networkstatus_list, ns);
  2795. SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
  2796. {
  2797. if (!router_get_by_descriptor_digest(rs->descriptor_digest))
  2798. rs->need_to_mirror = 1;
  2799. });
  2800. log_info(LD_DIR, "Setting networkstatus %s %s (published %s)",
  2801. source == NS_FROM_CACHE?"cached from":
  2802. ((source == NS_FROM_DIR_BY_FP || source == NS_FROM_DIR_ALL) ?
  2803. "downloaded from":"generated for"),
  2804. trusted_dir->description, published);
  2805. networkstatus_list_has_changed = 1;
  2806. router_dir_info_changed();
  2807. smartlist_sort(networkstatus_list, _compare_networkstatus_published_on);
  2808. if (!skewed)
  2809. add_networkstatus_to_cache(s, source, ns);
  2810. networkstatus_list_update_recent(now);
  2811. return 0;
  2812. }
  2813. /** How old do we allow a network-status to get before removing it
  2814. * completely? */
  2815. #define MAX_NETWORKSTATUS_AGE (10*24*60*60)
  2816. /** Remove all very-old network_status_t objects from memory and from the
  2817. * disk cache. */
  2818. void
  2819. networkstatus_list_clean(time_t now)
  2820. {
  2821. int i;
  2822. if (!networkstatus_list)
  2823. return;
  2824. for (i = 0; i < smartlist_len(networkstatus_list); ++i) {
  2825. networkstatus_t *ns = smartlist_get(networkstatus_list, i);
  2826. char *fname = NULL;
  2827. if (ns->published_on + MAX_NETWORKSTATUS_AGE > now)
  2828. continue;
  2829. /* Okay, this one is too old. Remove it from the list, and delete it
  2830. * from the cache. */
  2831. smartlist_del(networkstatus_list, i--);
  2832. fname = networkstatus_get_cache_filename(ns->identity_digest);
  2833. if (file_status(fname) == FN_FILE) {
  2834. log_info(LD_DIR, "Removing too-old networkstatus in %s", fname);
  2835. unlink(fname);
  2836. }
  2837. tor_free(fname);
  2838. if (get_options()->DirPort) {
  2839. dirserv_set_cached_networkstatus_v2(NULL, ns->identity_digest, 0);
  2840. }
  2841. networkstatus_free(ns);
  2842. router_dir_info_changed();
  2843. }
  2844. /* And now go through the directory cache for any cached untrusted
  2845. * networkstatuses and other network info. */
  2846. dirserv_clear_old_networkstatuses(now - MAX_NETWORKSTATUS_AGE);
  2847. dirserv_clear_old_v1_info(now);
  2848. }
  2849. /** Helper for bsearching a list of routerstatus_t pointers.*/
  2850. static int
  2851. _compare_digest_to_routerstatus_entry(const void *_key, const void **_member)
  2852. {
  2853. const char *key = _key;
  2854. const routerstatus_t *rs = *_member;
  2855. return memcmp(key, rs->identity_digest, DIGEST_LEN);
  2856. }
  2857. /** Return the entry in <b>ns</b> for the identity digest <b>digest</b>, or
  2858. * NULL if none was found. */
  2859. static routerstatus_t *
  2860. networkstatus_find_entry(networkstatus_t *ns, const char *digest)
  2861. {
  2862. return smartlist_bsearch(ns->entries, digest,
  2863. _compare_digest_to_routerstatus_entry);
  2864. }
  2865. /** Return the consensus view of the status of the router whose identity
  2866. * digest is <b>digest</b>, or NULL if we don't know about any such router. */
  2867. local_routerstatus_t *
  2868. router_get_combined_status_by_digest(const char *digest)
  2869. {
  2870. if (!routerstatus_list)
  2871. return NULL;
  2872. return smartlist_bsearch(routerstatus_list, digest,
  2873. _compare_digest_to_routerstatus_entry);
  2874. }
  2875. /** Return the consensus view of the status of the router whose current
  2876. * <i>descriptor</i> digest is <b>digest</b>, or NULL if no such router is
  2877. * known. */
  2878. local_routerstatus_t *
  2879. router_get_combined_status_by_descriptor_digest(const char *digest)
  2880. {
  2881. if (!routerstatus_by_desc_digest_map)
  2882. return NULL;
  2883. return digestmap_get(routerstatus_by_desc_digest_map, digest);
  2884. }
  2885. /** Given a nickname (possibly verbose, possibly a hexadecimal digest), return
  2886. * the corresponding local_routerstatus_t, or NULL if none exists. Warn the
  2887. * user if <b>warn_if_unnamed</b> is set, and they have specified a router by
  2888. * nickname, but the Named flag isn't set for that router. */
  2889. static local_routerstatus_t *
  2890. router_get_combined_status_by_nickname(const char *nickname,
  2891. int warn_if_unnamed)
  2892. {
  2893. char digest[DIGEST_LEN];
  2894. local_routerstatus_t *best=NULL;
  2895. smartlist_t *matches=NULL;
  2896. if (!routerstatus_list || !nickname)
  2897. return NULL;
  2898. if (nickname[0] == '$') {
  2899. if (base16_decode(digest, DIGEST_LEN, nickname+1, strlen(nickname))<0)
  2900. return NULL;
  2901. return router_get_combined_status_by_digest(digest);
  2902. } else if (strlen(nickname) == HEX_DIGEST_LEN &&
  2903. (base16_decode(digest, DIGEST_LEN, nickname+1, strlen(nickname))==0)) {
  2904. return router_get_combined_status_by_digest(digest);
  2905. }
  2906. matches = smartlist_create();
  2907. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, lrs,
  2908. {
  2909. if (!strcasecmp(lrs->status.nickname, nickname)) {
  2910. if (lrs->status.is_named) {
  2911. smartlist_free(matches);
  2912. return lrs;
  2913. } else {
  2914. smartlist_add(matches, lrs);
  2915. best = lrs;
  2916. }
  2917. }
  2918. });
  2919. if (smartlist_len(matches)>1 && warn_if_unnamed) {
  2920. int any_unwarned=0;
  2921. SMARTLIST_FOREACH(matches, local_routerstatus_t *, lrs,
  2922. {
  2923. if (! lrs->name_lookup_warned) {
  2924. lrs->name_lookup_warned=1;
  2925. any_unwarned=1;
  2926. }
  2927. });
  2928. if (any_unwarned) {
  2929. log_warn(LD_CONFIG,"There are multiple matches for the nickname \"%s\","
  2930. " but none is listed as named by the directory authorites. "
  2931. "Choosing one arbitrarily.", nickname);
  2932. }
  2933. } else if (warn_if_unnamed && best && !best->name_lookup_warned) {
  2934. char fp[HEX_DIGEST_LEN+1];
  2935. base16_encode(fp, sizeof(fp),
  2936. best->status.identity_digest, DIGEST_LEN);
  2937. log_warn(LD_CONFIG,
  2938. "When looking up a status, you specified a server \"%s\" by name, "
  2939. "but the directory authorities do not have any key registered for "
  2940. "this nickname -- so it could be used by any server, "
  2941. "not just the one you meant. "
  2942. "To make sure you get the same server in the future, refer to "
  2943. "it by key, as \"$%s\".", nickname, fp);
  2944. best->name_lookup_warned = 1;
  2945. }
  2946. smartlist_free(matches);
  2947. return best;
  2948. }
  2949. /** Find a routerstatus_t that corresponds to <b>hexdigest</b>, if
  2950. * any. Prefer ones that belong to authorities. */
  2951. routerstatus_t *
  2952. routerstatus_get_by_hexdigest(const char *hexdigest)
  2953. {
  2954. char digest[DIGEST_LEN];
  2955. local_routerstatus_t *rs;
  2956. trusted_dir_server_t *ds;
  2957. if (strlen(hexdigest) < HEX_DIGEST_LEN ||
  2958. base16_decode(digest,DIGEST_LEN,hexdigest,HEX_DIGEST_LEN) < 0)
  2959. return NULL;
  2960. if ((ds = router_get_trusteddirserver_by_digest(digest)))
  2961. return &(ds->fake_status.status);
  2962. if ((rs = router_get_combined_status_by_digest(digest)))
  2963. return &(rs->status);
  2964. return NULL;
  2965. }
  2966. /** Return true iff any networkstatus includes a descriptor whose digest
  2967. * is that of <b>desc</b>. */
  2968. static int
  2969. signed_desc_digest_is_recognized(signed_descriptor_t *desc)
  2970. {
  2971. routerstatus_t *rs;
  2972. if (!networkstatus_list)
  2973. return 0;
  2974. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  2975. {
  2976. if (!(rs = networkstatus_find_entry(ns, desc->identity_digest)))
  2977. continue;
  2978. if (!memcmp(rs->descriptor_digest,
  2979. desc->signed_descriptor_digest, DIGEST_LEN))
  2980. return 1;
  2981. });
  2982. return 0;
  2983. }
  2984. /** How frequently do directory authorities re-download fresh networkstatus
  2985. * documents? */
  2986. #define AUTHORITY_NS_CACHE_INTERVAL (5*60)
  2987. /** How frequently do non-authority directory caches re-download fresh
  2988. * networkstatus documents? */
  2989. #define NONAUTHORITY_NS_CACHE_INTERVAL (15*60)
  2990. /** We are a directory server, and so cache network_status documents.
  2991. * Initiate downloads as needed to update them. For v2 authorities,
  2992. * this means asking each trusted directory for its network-status.
  2993. * For caches, this means asking a random v2 authority for all
  2994. * network-statuses.
  2995. */
  2996. static void
  2997. update_networkstatus_cache_downloads(time_t now)
  2998. {
  2999. int authority = authdir_mode_v2(get_options());
  3000. int interval =
  3001. authority ? AUTHORITY_NS_CACHE_INTERVAL : NONAUTHORITY_NS_CACHE_INTERVAL;
  3002. if (last_networkstatus_download_attempted + interval >= now)
  3003. return;
  3004. if (!trusted_dir_servers)
  3005. return;
  3006. last_networkstatus_download_attempted = now;
  3007. if (authority) {
  3008. /* An authority launches a separate connection for everybody. */
  3009. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  3010. {
  3011. char resource[HEX_DIGEST_LEN+6]; /* fp/hexdigit.z\0 */
  3012. if (!(ds->type & V2_AUTHORITY))
  3013. continue;
  3014. if (router_digest_is_me(ds->digest))
  3015. continue;
  3016. if (connection_get_by_type_addr_port_purpose(
  3017. CONN_TYPE_DIR, ds->addr, ds->dir_port,
  3018. DIR_PURPOSE_FETCH_NETWORKSTATUS)) {
  3019. /* XXX020 the above dir_port won't be accurate if we're
  3020. * doing a tunneled conn. In that case it should be or_port.
  3021. * How to guess from here? Maybe make the function less general
  3022. * and have it know that it's looking for dir conns. -RD */
  3023. /* We are already fetching this one. */
  3024. continue;
  3025. }
  3026. strlcpy(resource, "fp/", sizeof(resource));
  3027. base16_encode(resource+3, sizeof(resource)-3, ds->digest, DIGEST_LEN);
  3028. strlcat(resource, ".z", sizeof(resource));
  3029. directory_initiate_command_routerstatus(
  3030. &ds->fake_status.status, DIR_PURPOSE_FETCH_NETWORKSTATUS,
  3031. ROUTER_PURPOSE_GENERAL,
  3032. 0, /* Not private */
  3033. resource,
  3034. NULL, 0 /* No payload. */);
  3035. });
  3036. } else {
  3037. /* A non-authority cache launches one connection to a random authority. */
  3038. /* (Check whether we're currently fetching network-status objects.) */
  3039. if (!connection_get_by_type_purpose(CONN_TYPE_DIR,
  3040. DIR_PURPOSE_FETCH_NETWORKSTATUS))
  3041. directory_get_from_dirserver(DIR_PURPOSE_FETCH_NETWORKSTATUS,"all.z",1);
  3042. }
  3043. }
  3044. /** How long (in seconds) does a client wait after getting a network status
  3045. * before downloading the next in sequence? */
  3046. #define NETWORKSTATUS_CLIENT_DL_INTERVAL (30*60)
  3047. /** How many times do we allow a networkstatus download to fail before we
  3048. * assume that the authority isn't publishing? */
  3049. #define NETWORKSTATUS_N_ALLOWABLE_FAILURES 3
  3050. /** We are not a directory cache or authority. Update our network-status list
  3051. * by launching a new directory fetch for enough network-status documents "as
  3052. * necessary". See function comments for implementation details.
  3053. */
  3054. static void
  3055. update_networkstatus_client_downloads(time_t now)
  3056. {
  3057. int n_live = 0, n_dirservers, n_running_dirservers, needed = 0;
  3058. int fetch_latest = 0;
  3059. int most_recent_idx = -1;
  3060. trusted_dir_server_t *most_recent = NULL;
  3061. time_t most_recent_received = 0;
  3062. char *resource, *cp;
  3063. size_t resource_len;
  3064. smartlist_t *missing;
  3065. if (connection_get_by_type_purpose(CONN_TYPE_DIR,
  3066. DIR_PURPOSE_FETCH_NETWORKSTATUS))
  3067. return;
  3068. /* This is a little tricky. We want to download enough network-status
  3069. * objects so that we have all of them under
  3070. * NETWORKSTATUS_MAX_AGE publication time. We want to download a new
  3071. * *one* if the most recent one's publication time is under
  3072. * NETWORKSTATUS_CLIENT_DL_INTERVAL.
  3073. */
  3074. if (!get_n_v2_authorities())
  3075. return;
  3076. n_dirservers = n_running_dirservers = 0;
  3077. missing = smartlist_create();
  3078. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  3079. {
  3080. networkstatus_t *ns = networkstatus_get_by_digest(ds->digest);
  3081. if (!(ds->type & V2_AUTHORITY))
  3082. continue;
  3083. ++n_dirservers;
  3084. if (ds->n_networkstatus_failures > NETWORKSTATUS_N_ALLOWABLE_FAILURES)
  3085. continue;
  3086. ++n_running_dirservers;
  3087. if (ns && ns->published_on > now-NETWORKSTATUS_MAX_AGE)
  3088. ++n_live;
  3089. else
  3090. smartlist_add(missing, ds->digest);
  3091. if (ns && (!most_recent || ns->received_on > most_recent_received)) {
  3092. most_recent_idx = ds_sl_idx; /* magic variable from FOREACH */
  3093. most_recent = ds;
  3094. most_recent_received = ns->received_on;
  3095. }
  3096. });
  3097. /* Also, download at least 1 every NETWORKSTATUS_CLIENT_DL_INTERVAL. */
  3098. if (!smartlist_len(missing) &&
  3099. most_recent_received < now-NETWORKSTATUS_CLIENT_DL_INTERVAL) {
  3100. log_info(LD_DIR, "Our most recent network-status document (from %s) "
  3101. "is %d seconds old; downloading another.",
  3102. most_recent?most_recent->description:"nobody",
  3103. (int)(now-most_recent_received));
  3104. fetch_latest = 1;
  3105. needed = 1;
  3106. } else if (smartlist_len(missing)) {
  3107. log_info(LD_DIR, "For %d/%d running directory servers, we have %d live"
  3108. " network-status documents. Downloading %d.",
  3109. n_running_dirservers, n_dirservers, n_live,
  3110. smartlist_len(missing));
  3111. needed = smartlist_len(missing);
  3112. } else {
  3113. smartlist_free(missing);
  3114. return;
  3115. }
  3116. /* If no networkstatus was found, choose a dirserver at random as "most
  3117. * recent". */
  3118. if (most_recent_idx<0)
  3119. most_recent_idx = crypto_rand_int(smartlist_len(trusted_dir_servers));
  3120. if (fetch_latest) {
  3121. int i;
  3122. int n_failed = 0;
  3123. for (i = most_recent_idx + 1; 1; ++i) {
  3124. trusted_dir_server_t *ds;
  3125. if (i >= smartlist_len(trusted_dir_servers))
  3126. i = 0;
  3127. ds = smartlist_get(trusted_dir_servers, i);
  3128. if (!(ds->type & V2_AUTHORITY))
  3129. continue;
  3130. if (n_failed >= n_dirservers) {
  3131. log_info(LD_DIR, "All authorities have failed. Not trying any.");
  3132. smartlist_free(missing);
  3133. return;
  3134. }
  3135. if (ds->n_networkstatus_failures > NETWORKSTATUS_N_ALLOWABLE_FAILURES) {
  3136. ++n_failed;
  3137. continue;
  3138. }
  3139. smartlist_add(missing, ds->digest);
  3140. break;
  3141. }
  3142. }
  3143. /* Build a request string for all the resources we want. */
  3144. resource_len = smartlist_len(missing) * (HEX_DIGEST_LEN+1) + 6;
  3145. resource = tor_malloc(resource_len);
  3146. memcpy(resource, "fp/", 3);
  3147. cp = resource+3;
  3148. smartlist_sort_digests(missing);
  3149. needed = smartlist_len(missing);
  3150. SMARTLIST_FOREACH(missing, const char *, d,
  3151. {
  3152. base16_encode(cp, HEX_DIGEST_LEN+1, d, DIGEST_LEN);
  3153. cp += HEX_DIGEST_LEN;
  3154. --needed;
  3155. if (needed)
  3156. *cp++ = '+';
  3157. });
  3158. memcpy(cp, ".z", 3);
  3159. directory_get_from_dirserver(DIR_PURPOSE_FETCH_NETWORKSTATUS, resource, 1);
  3160. tor_free(resource);
  3161. smartlist_free(missing);
  3162. }
  3163. /** Launch requests for networkstatus documents as appropriate. */
  3164. void
  3165. update_networkstatus_downloads(time_t now)
  3166. {
  3167. or_options_t *options = get_options();
  3168. if (options->DirPort)
  3169. update_networkstatus_cache_downloads(now);
  3170. else
  3171. update_networkstatus_client_downloads(now);
  3172. }
  3173. /** Return 1 if all running sufficiently-stable routers will reject
  3174. * addr:port, return 0 if any might accept it. */
  3175. int
  3176. router_exit_policy_all_routers_reject(uint32_t addr, uint16_t port,
  3177. int need_uptime)
  3178. {
  3179. addr_policy_result_t r;
  3180. if (!routerlist) return 1;
  3181. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
  3182. {
  3183. if (router->is_running &&
  3184. !router_is_unreliable(router, need_uptime, 0, 0)) {
  3185. r = compare_addr_to_addr_policy(addr, port, router->exit_policy);
  3186. if (r != ADDR_POLICY_REJECTED && r != ADDR_POLICY_PROBABLY_REJECTED)
  3187. return 0; /* this one could be ok. good enough. */
  3188. }
  3189. });
  3190. return 1; /* all will reject. */
  3191. }
  3192. /** Return true iff <b>router</b> does not permit exit streams.
  3193. */
  3194. int
  3195. router_exit_policy_rejects_all(routerinfo_t *router)
  3196. {
  3197. return compare_addr_to_addr_policy(0, 0, router->exit_policy)
  3198. == ADDR_POLICY_REJECTED;
  3199. }
  3200. /** Add to the list of authorized directory servers one at
  3201. * <b>address</b>:<b>port</b>, with identity key <b>digest</b>. If
  3202. * <b>address</b> is NULL, add ourself. */
  3203. void
  3204. add_trusted_dir_server(const char *nickname, const char *address,
  3205. uint16_t dir_port, uint16_t or_port,
  3206. const char *digest, authority_type_t type)
  3207. {
  3208. trusted_dir_server_t *ent;
  3209. uint32_t a;
  3210. char *hostname = NULL;
  3211. size_t dlen;
  3212. if (!trusted_dir_servers)
  3213. trusted_dir_servers = smartlist_create();
  3214. if (!address) { /* The address is us; we should guess. */
  3215. if (resolve_my_address(LOG_WARN, get_options(), &a, &hostname) < 0) {
  3216. log_warn(LD_CONFIG,
  3217. "Couldn't find a suitable address when adding ourself as a "
  3218. "trusted directory server.");
  3219. return;
  3220. }
  3221. } else {
  3222. if (tor_lookup_hostname(address, &a)) {
  3223. log_warn(LD_CONFIG,
  3224. "Unable to lookup address for directory server at '%s'",
  3225. address);
  3226. return;
  3227. }
  3228. hostname = tor_strdup(address);
  3229. a = ntohl(a);
  3230. }
  3231. ent = tor_malloc_zero(sizeof(trusted_dir_server_t));
  3232. ent->nickname = nickname ? tor_strdup(nickname) : NULL;
  3233. ent->address = hostname;
  3234. ent->addr = a;
  3235. ent->dir_port = dir_port;
  3236. ent->or_port = or_port;
  3237. ent->is_running = 1;
  3238. ent->type = type;
  3239. memcpy(ent->digest, digest, DIGEST_LEN);
  3240. dlen = 64 + strlen(hostname) + (nickname?strlen(nickname):0);
  3241. ent->description = tor_malloc(dlen);
  3242. if (nickname)
  3243. tor_snprintf(ent->description, dlen, "directory server \"%s\" at %s:%d",
  3244. nickname, hostname, (int)dir_port);
  3245. else
  3246. tor_snprintf(ent->description, dlen, "directory server at %s:%d",
  3247. hostname, (int)dir_port);
  3248. ent->fake_status.status.addr = ent->addr;
  3249. memcpy(ent->fake_status.status.identity_digest, digest, DIGEST_LEN);
  3250. if (nickname)
  3251. strlcpy(ent->fake_status.status.nickname, nickname,
  3252. sizeof(ent->fake_status.status.nickname));
  3253. else
  3254. ent->fake_status.status.nickname[0] = '\0';
  3255. ent->fake_status.status.dir_port = ent->dir_port;
  3256. ent->fake_status.status.or_port = ent->or_port;
  3257. if (ent->or_port)
  3258. ent->fake_status.status.version_supports_begindir = 1;
  3259. smartlist_add(trusted_dir_servers, ent);
  3260. router_dir_info_changed();
  3261. }
  3262. /** Free storage held in <b>ds</b>. */
  3263. static void
  3264. trusted_dir_server_free(trusted_dir_server_t *ds)
  3265. {
  3266. if (ds->v3_cert)
  3267. authority_cert_free(ds->v3_cert);
  3268. tor_free(ds->nickname);
  3269. tor_free(ds->description);
  3270. tor_free(ds->address);
  3271. tor_free(ds);
  3272. }
  3273. /** Remove all members from the list of trusted dir servers. */
  3274. void
  3275. clear_trusted_dir_servers(void)
  3276. {
  3277. if (trusted_dir_servers) {
  3278. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ent,
  3279. trusted_dir_server_free(ent));
  3280. smartlist_clear(trusted_dir_servers);
  3281. } else {
  3282. trusted_dir_servers = smartlist_create();
  3283. }
  3284. router_dir_info_changed();
  3285. }
  3286. /** Return 1 if any trusted dir server supports v1 directories,
  3287. * else return 0. */
  3288. int
  3289. any_trusted_dir_is_v1_authority(void)
  3290. {
  3291. if (trusted_dir_servers)
  3292. return get_n_authorities(V1_AUTHORITY) > 0;
  3293. return 0;
  3294. }
  3295. /** Return the network status with a given identity digest. */
  3296. networkstatus_t *
  3297. networkstatus_get_by_digest(const char *digest)
  3298. {
  3299. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  3300. {
  3301. if (!memcmp(ns->identity_digest, digest, DIGEST_LEN))
  3302. return ns;
  3303. });
  3304. return NULL;
  3305. }
  3306. /** We believe networkstatuses more recent than this when they tell us that
  3307. * our server is broken, invalid, obsolete, etc. */
  3308. #define SELF_OPINION_INTERVAL (90*60)
  3309. /** Return a newly allocated string naming the versions of Tor recommended by
  3310. * more than half the versioning networkstatuses. */
  3311. char *
  3312. compute_recommended_versions(time_t now, int client,
  3313. const char *my_version,
  3314. combined_version_status_t *status_out)
  3315. {
  3316. int n_seen;
  3317. char *current;
  3318. smartlist_t *combined, *recommended;
  3319. int n_versioning, n_recommending;
  3320. char *result;
  3321. /** holds the compromise status taken among all non-recommending
  3322. * authorities */
  3323. version_status_t consensus = VS_RECOMMENDED;
  3324. (void) now; /* right now, we consider *all* statuses, regardless of age. */
  3325. tor_assert(my_version);
  3326. tor_assert(status_out);
  3327. memset(status_out, 0, sizeof(combined_version_status_t));
  3328. if (!networkstatus_list)
  3329. return tor_strdup("<none>");
  3330. combined = smartlist_create();
  3331. n_versioning = n_recommending = 0;
  3332. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  3333. {
  3334. const char *vers;
  3335. smartlist_t *versions;
  3336. version_status_t status;
  3337. if (! ns->recommends_versions)
  3338. continue;
  3339. n_versioning++;
  3340. vers = client ? ns->client_versions : ns->server_versions;
  3341. if (!vers)
  3342. continue;
  3343. versions = smartlist_create();
  3344. smartlist_split_string(versions, vers, ",",
  3345. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  3346. sort_version_list(versions, 1);
  3347. smartlist_add_all(combined, versions);
  3348. smartlist_free(versions);
  3349. /* now, check _our_ version */
  3350. status = tor_version_is_obsolete(my_version, vers);
  3351. if (status == VS_RECOMMENDED)
  3352. n_recommending++;
  3353. consensus = version_status_join(status, consensus);
  3354. });
  3355. sort_version_list(combined, 0);
  3356. current = NULL;
  3357. n_seen = 0;
  3358. recommended = smartlist_create();
  3359. SMARTLIST_FOREACH(combined, char *, cp,
  3360. {
  3361. if (current && !strcmp(cp, current)) {
  3362. ++n_seen;
  3363. } else {
  3364. if (current)
  3365. log_info(LD_DIR,"version %s is recommended by %d authorities",
  3366. current, n_seen);
  3367. if (n_seen > n_versioning/2 && current) {
  3368. smartlist_add(recommended, current);
  3369. }
  3370. n_seen = 1;
  3371. current = cp;
  3372. }
  3373. });
  3374. if (current)
  3375. log_info(LD_DIR,"version %s is recommended by %d authorities",
  3376. current, n_seen);
  3377. if (n_seen > n_versioning/2 && current)
  3378. smartlist_add(recommended, current);
  3379. result = smartlist_join_strings(recommended, ", ", 0, NULL);
  3380. SMARTLIST_FOREACH(combined, char *, cp, tor_free(cp));
  3381. smartlist_free(combined);
  3382. smartlist_free(recommended);
  3383. status_out->n_versioning = n_versioning;
  3384. if (n_recommending > n_versioning/2) {
  3385. status_out->consensus = VS_RECOMMENDED;
  3386. status_out->n_concurring = n_recommending;
  3387. } else {
  3388. status_out->consensus = consensus;
  3389. status_out->n_concurring = n_versioning - n_recommending;
  3390. }
  3391. return result;
  3392. }
  3393. /** How many times do we have to fail at getting a networkstatus we can't find
  3394. * before we're willing to believe it's okay to set up router statuses? */
  3395. #define N_NS_ATTEMPTS_TO_SET_ROUTERS 4
  3396. /** How many times do we have to fail at getting a networkstatus we can't find
  3397. * before we're willing to believe it's okay to check our version? */
  3398. #define N_NS_ATTEMPTS_TO_CHECK_VERSION 4
  3399. /** If the network-status list has changed since the last time we called this
  3400. * function, update the status of every routerinfo from the network-status
  3401. * list.
  3402. */
  3403. void
  3404. routers_update_all_from_networkstatus(time_t now)
  3405. {
  3406. routerinfo_t *me;
  3407. if (!routerlist || !networkstatus_list ||
  3408. (!networkstatus_list_has_changed && !routerstatus_list_has_changed))
  3409. return;
  3410. router_dir_info_changed();
  3411. if (networkstatus_list_has_changed)
  3412. routerstatus_list_update_from_networkstatus(now);
  3413. routers_update_status_from_networkstatus(routerlist->routers, 0);
  3414. me = router_get_my_routerinfo();
  3415. if (me && !have_warned_about_invalid_status &&
  3416. have_tried_downloading_all_statuses(N_NS_ATTEMPTS_TO_SET_ROUTERS)) {
  3417. int n_recent = 0, n_listing = 0, n_valid = 0, n_named = 0, n_naming = 0;
  3418. routerstatus_t *rs;
  3419. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  3420. {
  3421. if (ns->received_on + SELF_OPINION_INTERVAL < now)
  3422. continue;
  3423. ++n_recent;
  3424. if (ns->binds_names)
  3425. ++n_naming;
  3426. if (!(rs = networkstatus_find_entry(ns, me->cache_info.identity_digest)))
  3427. continue;
  3428. ++n_listing;
  3429. if (rs->is_valid)
  3430. ++n_valid;
  3431. if (rs->is_named)
  3432. ++n_named;
  3433. });
  3434. if (n_listing) {
  3435. if (n_valid <= n_listing/2) {
  3436. log_info(LD_GENERAL,
  3437. "%d/%d recent statements from directory authorities list us "
  3438. "as unapproved. Are you misconfigured?",
  3439. n_listing-n_valid, n_listing);
  3440. have_warned_about_invalid_status = 1;
  3441. } else if (n_naming && !n_named) {
  3442. log_info(LD_GENERAL, "0/%d name-binding directory authorities "
  3443. "recognize your nickname. Please consider sending your "
  3444. "nickname and identity fingerprint to the tor-ops.",
  3445. n_naming);
  3446. have_warned_about_invalid_status = 1;
  3447. }
  3448. }
  3449. }
  3450. entry_guards_compute_status();
  3451. if (!have_warned_about_old_version &&
  3452. have_tried_downloading_all_statuses(N_NS_ATTEMPTS_TO_CHECK_VERSION)) {
  3453. combined_version_status_t st;
  3454. int is_server = server_mode(get_options());
  3455. char *recommended;
  3456. recommended = compute_recommended_versions(now, !is_server, VERSION, &st);
  3457. if (st.n_versioning) {
  3458. if (st.consensus == VS_RECOMMENDED) {
  3459. log_info(LD_GENERAL, "%d/%d statements from version-listing "
  3460. "directory authorities say my version is ok.",
  3461. st.n_concurring, st.n_versioning);
  3462. } else if (st.consensus == VS_NEW || st.consensus == VS_NEW_IN_SERIES) {
  3463. if (!have_warned_about_new_version) {
  3464. log_notice(LD_GENERAL, "This version of Tor (%s) is newer than any "
  3465. "recommended version%s, according to %d/%d version-listing "
  3466. "network statuses. Versions recommended by more than %d "
  3467. "authorit%s are: %s",
  3468. VERSION,
  3469. st.consensus == VS_NEW_IN_SERIES ? " in its series" : "",
  3470. st.n_concurring, st.n_versioning, st.n_versioning/2,
  3471. st.n_versioning/2 > 1 ? "ies" : "y", recommended);
  3472. have_warned_about_new_version = 1;
  3473. control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
  3474. "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
  3475. VERSION, "NEW", recommended);
  3476. }
  3477. } else {
  3478. log_warn(LD_GENERAL, "Please upgrade! "
  3479. "This version of Tor (%s) is %s, according to %d/%d version-"
  3480. "listing network statuses. Versions recommended by "
  3481. "at least %d authorit%s are: %s",
  3482. VERSION,
  3483. st.consensus == VS_OLD ? "obsolete" : "not recommended",
  3484. st.n_concurring, st.n_versioning, st.n_versioning/2,
  3485. st.n_versioning/2 > 1 ? "ies" : "y", recommended);
  3486. have_warned_about_old_version = 1;
  3487. control_event_general_status(LOG_WARN, "DANGEROUS_VERSION "
  3488. "CURRENT=%s REASON=%s RECOMMENDED=\"%s\"",
  3489. VERSION, st.consensus == VS_OLD ? "OLD" : "UNRECOMMENDED",
  3490. recommended);
  3491. }
  3492. }
  3493. tor_free(recommended);
  3494. }
  3495. routerstatus_list_has_changed = 0;
  3496. }
  3497. /** Allow any network-status newer than this to influence our view of who's
  3498. * running. */
  3499. #define DEFAULT_RUNNING_INTERVAL (60*60)
  3500. /** If possible, always allow at least this many network-statuses to influence
  3501. * our view of who's running. */
  3502. #define MIN_TO_INFLUENCE_RUNNING 3
  3503. /** Change the is_recent field of each member of networkstatus_list so that
  3504. * all members more recent than DEFAULT_RUNNING_INTERVAL are recent, and
  3505. * at least the MIN_TO_INFLUENCE_RUNNING most recent members are recent, and no
  3506. * others are recent. Set networkstatus_list_has_changed if anything happened.
  3507. */
  3508. void
  3509. networkstatus_list_update_recent(time_t now)
  3510. {
  3511. int n_statuses, n_recent, changed, i;
  3512. char published[ISO_TIME_LEN+1];
  3513. if (!networkstatus_list)
  3514. return;
  3515. n_statuses = smartlist_len(networkstatus_list);
  3516. n_recent = 0;
  3517. changed = 0;
  3518. for (i=n_statuses-1; i >= 0; --i) {
  3519. networkstatus_t *ns = smartlist_get(networkstatus_list, i);
  3520. trusted_dir_server_t *ds =
  3521. router_get_trusteddirserver_by_digest(ns->identity_digest);
  3522. const char *src = ds?ds->description:ns->source_address;
  3523. if (n_recent < MIN_TO_INFLUENCE_RUNNING ||
  3524. ns->published_on + DEFAULT_RUNNING_INTERVAL > now) {
  3525. if (!ns->is_recent) {
  3526. format_iso_time(published, ns->published_on);
  3527. log_info(LD_DIR,
  3528. "Networkstatus from %s (published %s) is now \"recent\"",
  3529. src, published);
  3530. changed = 1;
  3531. }
  3532. ns->is_recent = 1;
  3533. ++n_recent;
  3534. } else {
  3535. if (ns->is_recent) {
  3536. format_iso_time(published, ns->published_on);
  3537. log_info(LD_DIR,
  3538. "Networkstatus from %s (published %s) is "
  3539. "no longer \"recent\"",
  3540. src, published);
  3541. changed = 1;
  3542. ns->is_recent = 0;
  3543. }
  3544. }
  3545. }
  3546. if (changed) {
  3547. networkstatus_list_has_changed = 1;
  3548. router_dir_info_changed();
  3549. }
  3550. }
  3551. /** Helper for routerstatus_list_update_from_networkstatus: remember how many
  3552. * authorities recommend a given descriptor digest. */
  3553. typedef struct {
  3554. routerstatus_t *rs;
  3555. int count;
  3556. } desc_digest_count_t;
  3557. /** Update our view of router status (as stored in routerstatus_list) from the
  3558. * current set of network status documents (as stored in networkstatus_list).
  3559. * Do nothing unless the network status list has changed since the last time
  3560. * this function was called.
  3561. */
  3562. static void
  3563. routerstatus_list_update_from_networkstatus(time_t now)
  3564. {
  3565. or_options_t *options = get_options();
  3566. int n_trusted, n_statuses, n_recent = 0, n_naming = 0;
  3567. int n_listing_bad_exits = 0, n_listing_bad_directories = 0;
  3568. int i, j, warned;
  3569. int *index, *size;
  3570. networkstatus_t **networkstatus;
  3571. smartlist_t *result, *changed_list;
  3572. strmap_t *name_map;
  3573. char conflict[DIGEST_LEN]; /* Sentinel value */
  3574. desc_digest_count_t *digest_counts = NULL;
  3575. /* compute which network statuses will have a vote now */
  3576. networkstatus_list_update_recent(now);
  3577. router_dir_info_changed();
  3578. if (!networkstatus_list_has_changed)
  3579. return;
  3580. if (!networkstatus_list)
  3581. networkstatus_list = smartlist_create();
  3582. if (!routerstatus_list)
  3583. routerstatus_list = smartlist_create();
  3584. if (!trusted_dir_servers)
  3585. trusted_dir_servers = smartlist_create();
  3586. if (!warned_conflicts)
  3587. warned_conflicts = smartlist_create();
  3588. n_statuses = smartlist_len(networkstatus_list);
  3589. n_trusted = get_n_v2_authorities();
  3590. if (n_statuses <= n_trusted/2) {
  3591. /* Not enough statuses to adjust status. */
  3592. log_info(LD_DIR,
  3593. "Not enough statuses to update router status list. (%d/%d)",
  3594. n_statuses, n_trusted);
  3595. return;
  3596. }
  3597. log_info(LD_DIR, "Rebuilding router status list.");
  3598. index = tor_malloc(sizeof(int)*n_statuses);
  3599. size = tor_malloc(sizeof(int)*n_statuses);
  3600. networkstatus = tor_malloc(sizeof(networkstatus_t *)*n_statuses);
  3601. for (i = 0; i < n_statuses; ++i) {
  3602. index[i] = 0;
  3603. networkstatus[i] = smartlist_get(networkstatus_list, i);
  3604. size[i] = smartlist_len(networkstatus[i]->entries);
  3605. if (networkstatus[i]->binds_names)
  3606. ++n_naming;
  3607. if (networkstatus[i]->is_recent)
  3608. ++n_recent;
  3609. if (networkstatus[i]->lists_bad_exits)
  3610. ++n_listing_bad_exits;
  3611. if (networkstatus[i]->lists_bad_directories)
  3612. ++n_listing_bad_directories;
  3613. }
  3614. /** Iterate over all entries in all networkstatuses, and build
  3615. * name_map as a map from lc nickname to identity digest. If there
  3616. * is a conflict on that nickname, map the lc nickname to conflict.
  3617. */
  3618. name_map = strmap_new();
  3619. /* Clear the global map... */
  3620. if (named_server_map)
  3621. strmap_free(named_server_map, _tor_free);
  3622. named_server_map = strmap_new();
  3623. memset(conflict, 0xff, sizeof(conflict));
  3624. for (i = 0; i < n_statuses; ++i) {
  3625. if (!networkstatus[i]->binds_names)
  3626. continue;
  3627. SMARTLIST_FOREACH(networkstatus[i]->entries, routerstatus_t *, rs,
  3628. {
  3629. const char *other_digest;
  3630. if (!rs->is_named)
  3631. continue;
  3632. other_digest = strmap_get_lc(name_map, rs->nickname);
  3633. warned = smartlist_string_isin(warned_conflicts, rs->nickname);
  3634. if (!other_digest) {
  3635. strmap_set_lc(name_map, rs->nickname, rs->identity_digest);
  3636. strmap_set_lc(named_server_map, rs->nickname,
  3637. tor_memdup(rs->identity_digest, DIGEST_LEN));
  3638. if (warned)
  3639. smartlist_string_remove(warned_conflicts, rs->nickname);
  3640. } else if (memcmp(other_digest, rs->identity_digest, DIGEST_LEN) &&
  3641. other_digest != conflict) {
  3642. if (!warned) {
  3643. char *d;
  3644. int should_warn = options->DirPort && authdir_mode(options);
  3645. char fp1[HEX_DIGEST_LEN+1];
  3646. char fp2[HEX_DIGEST_LEN+1];
  3647. base16_encode(fp1, sizeof(fp1), other_digest, DIGEST_LEN);
  3648. base16_encode(fp2, sizeof(fp2), rs->identity_digest, DIGEST_LEN);
  3649. log_fn(should_warn ? LOG_WARN : LOG_INFO, LD_DIR,
  3650. "Naming authorities disagree about which key goes with %s. "
  3651. "($%s vs $%s)",
  3652. rs->nickname, fp1, fp2);
  3653. strmap_set_lc(name_map, rs->nickname, conflict);
  3654. d = strmap_remove_lc(named_server_map, rs->nickname);
  3655. tor_free(d);
  3656. smartlist_add(warned_conflicts, tor_strdup(rs->nickname));
  3657. }
  3658. } else {
  3659. if (warned)
  3660. smartlist_string_remove(warned_conflicts, rs->nickname);
  3661. }
  3662. });
  3663. }
  3664. result = smartlist_create();
  3665. changed_list = smartlist_create();
  3666. digest_counts = tor_malloc_zero(sizeof(desc_digest_count_t)*n_statuses);
  3667. /* Iterate through all of the sorted routerstatus lists in lockstep.
  3668. * Invariants:
  3669. * - For 0 <= i < n_statuses: index[i] is an index into
  3670. * networkstatus[i]->entries, which has size[i] elements.
  3671. * - For i1, i2, j such that 0 <= i1 < n_statuses, 0 <= i2 < n_statues, 0 <=
  3672. * j < index[i1]: networkstatus[i1]->entries[j]->identity_digest <
  3673. * networkstatus[i2]->entries[index[i2]]->identity_digest.
  3674. *
  3675. * (That is, the indices are always advanced past lower digest before
  3676. * higher.)
  3677. */
  3678. while (1) {
  3679. int n_running=0, n_named=0, n_valid=0, n_listing=0;
  3680. int n_v2_dir=0, n_fast=0, n_stable=0, n_exit=0, n_guard=0, n_bad_exit=0;
  3681. int n_bad_directory=0;
  3682. int n_version_known=0, n_supports_begindir=0;
  3683. int n_supports_extrainfo_upload=0;
  3684. int n_desc_digests=0, highest_count=0;
  3685. const char *the_name = NULL;
  3686. local_routerstatus_t *rs_out, *rs_old;
  3687. routerstatus_t *rs, *most_recent;
  3688. networkstatus_t *ns;
  3689. const char *lowest = NULL;
  3690. /* Find out which of the digests appears first. */
  3691. for (i = 0; i < n_statuses; ++i) {
  3692. if (index[i] < size[i]) {
  3693. rs = smartlist_get(networkstatus[i]->entries, index[i]);
  3694. if (!lowest || memcmp(rs->identity_digest, lowest, DIGEST_LEN)<0)
  3695. lowest = rs->identity_digest;
  3696. }
  3697. }
  3698. if (!lowest) {
  3699. /* We're out of routers. Great! */
  3700. break;
  3701. }
  3702. /* Okay. The routers at networkstatus[i]->entries[index[i]] whose digests
  3703. * match "lowest" are next in order. Iterate over them, incrementing those
  3704. * index[i] as we go. */
  3705. for (i = 0; i < n_statuses; ++i) {
  3706. if (index[i] >= size[i])
  3707. continue;
  3708. ns = networkstatus[i];
  3709. rs = smartlist_get(ns->entries, index[i]);
  3710. if (memcmp(rs->identity_digest, lowest, DIGEST_LEN))
  3711. continue;
  3712. /* At this point, we know that we're looking at a routersatus with
  3713. * identity "lowest".
  3714. */
  3715. ++index[i];
  3716. ++n_listing;
  3717. /* Should we name this router? Only if all the names from naming
  3718. * authorities match. */
  3719. if (rs->is_named && ns->binds_names) {
  3720. if (!the_name)
  3721. the_name = rs->nickname;
  3722. if (!strcasecmp(rs->nickname, the_name)) {
  3723. ++n_named;
  3724. } else if (strcmp(the_name,"**mismatch**")) {
  3725. char hd[HEX_DIGEST_LEN+1];
  3726. base16_encode(hd, HEX_DIGEST_LEN+1, rs->identity_digest, DIGEST_LEN);
  3727. if (! smartlist_string_isin(warned_conflicts, hd)) {
  3728. log_warn(LD_DIR,
  3729. "Naming authorities disagree about nicknames for $%s "
  3730. "(\"%s\" vs \"%s\")",
  3731. hd, the_name, rs->nickname);
  3732. smartlist_add(warned_conflicts, tor_strdup(hd));
  3733. }
  3734. the_name = "**mismatch**";
  3735. }
  3736. }
  3737. /* Keep a running count of how often which descriptor digests
  3738. * appear. */
  3739. for (j = 0; j < n_desc_digests; ++j) {
  3740. if (!memcmp(rs->descriptor_digest,
  3741. digest_counts[j].rs->descriptor_digest, DIGEST_LEN)) {
  3742. if (++digest_counts[j].count > highest_count)
  3743. highest_count = digest_counts[j].count;
  3744. goto found;
  3745. }
  3746. }
  3747. digest_counts[n_desc_digests].rs = rs;
  3748. digest_counts[n_desc_digests].count = 1;
  3749. if (!highest_count)
  3750. highest_count = 1;
  3751. ++n_desc_digests;
  3752. found:
  3753. /* Now tally up the easily-tallied flags. */
  3754. if (rs->is_valid)
  3755. ++n_valid;
  3756. if (rs->is_running && ns->is_recent)
  3757. ++n_running;
  3758. if (rs->is_exit)
  3759. ++n_exit;
  3760. if (rs->is_fast)
  3761. ++n_fast;
  3762. if (rs->is_possible_guard)
  3763. ++n_guard;
  3764. if (rs->is_stable)
  3765. ++n_stable;
  3766. if (rs->is_v2_dir)
  3767. ++n_v2_dir;
  3768. if (rs->is_bad_exit)
  3769. ++n_bad_exit;
  3770. if (rs->is_bad_directory)
  3771. ++n_bad_directory;
  3772. if (rs->version_known)
  3773. ++n_version_known;
  3774. if (rs->version_supports_begindir)
  3775. ++n_supports_begindir;
  3776. if (rs->version_supports_extrainfo_upload)
  3777. ++n_supports_extrainfo_upload;
  3778. }
  3779. /* Go over the descriptor digests and figure out which descriptor we
  3780. * want. */
  3781. most_recent = NULL;
  3782. for (i = 0; i < n_desc_digests; ++i) {
  3783. /* If any digest appears twice or more, ignore those that don't.*/
  3784. if (highest_count >= 2 && digest_counts[i].count < 2)
  3785. continue;
  3786. if (!most_recent ||
  3787. digest_counts[i].rs->published_on > most_recent->published_on)
  3788. most_recent = digest_counts[i].rs;
  3789. }
  3790. rs_out = tor_malloc_zero(sizeof(local_routerstatus_t));
  3791. memcpy(&rs_out->status, most_recent, sizeof(routerstatus_t));
  3792. /* Copy status info about this router, if we had any before. */
  3793. if ((rs_old = router_get_combined_status_by_digest(lowest))) {
  3794. if (!memcmp(rs_out->status.descriptor_digest,
  3795. most_recent->descriptor_digest, DIGEST_LEN)) {
  3796. rs_out->dl_status.n_download_failures =
  3797. rs_old->dl_status.n_download_failures;
  3798. rs_out->dl_status.next_attempt_at = rs_old->dl_status.next_attempt_at;
  3799. }
  3800. rs_out->name_lookup_warned = rs_old->name_lookup_warned;
  3801. rs_out->last_dir_503_at = rs_old->last_dir_503_at;
  3802. }
  3803. smartlist_add(result, rs_out);
  3804. log_debug(LD_DIR, "Router '%s' is listed by %d/%d directories, "
  3805. "named by %d/%d, validated by %d/%d, and %d/%d recent "
  3806. "directories think it's running.",
  3807. rs_out->status.nickname,
  3808. n_listing, n_statuses, n_named, n_naming, n_valid, n_statuses,
  3809. n_running, n_recent);
  3810. rs_out->status.is_named = 0;
  3811. if (the_name && strcmp(the_name, "**mismatch**") && n_named > 0) {
  3812. const char *d = strmap_get_lc(name_map, the_name);
  3813. if (d && d != conflict)
  3814. rs_out->status.is_named = 1;
  3815. if (smartlist_string_isin(warned_conflicts, rs_out->status.nickname))
  3816. smartlist_string_remove(warned_conflicts, rs_out->status.nickname);
  3817. }
  3818. if (rs_out->status.is_named)
  3819. strlcpy(rs_out->status.nickname, the_name,
  3820. sizeof(rs_out->status.nickname));
  3821. rs_out->status.is_valid = n_valid > n_statuses/2;
  3822. rs_out->status.is_running = n_running > n_recent/2;
  3823. rs_out->status.is_exit = n_exit > n_statuses/2;
  3824. rs_out->status.is_fast = n_fast > n_statuses/2;
  3825. rs_out->status.is_possible_guard = n_guard > n_statuses/2;
  3826. rs_out->status.is_stable = n_stable > n_statuses/2;
  3827. rs_out->status.is_v2_dir = n_v2_dir > n_statuses/2;
  3828. rs_out->status.is_bad_exit = n_bad_exit > n_listing_bad_exits/2;
  3829. rs_out->status.is_bad_directory =
  3830. n_bad_directory > n_listing_bad_directories/2;
  3831. rs_out->status.version_known = n_version_known > 0;
  3832. rs_out->status.version_supports_begindir =
  3833. n_supports_begindir > n_version_known/2;
  3834. rs_out->status.version_supports_extrainfo_upload =
  3835. n_supports_extrainfo_upload > n_version_known/2;
  3836. if (!rs_old || memcmp(rs_old, rs_out, sizeof(local_routerstatus_t)))
  3837. smartlist_add(changed_list, rs_out);
  3838. }
  3839. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  3840. local_routerstatus_free(rs));
  3841. smartlist_free(routerstatus_list);
  3842. routerstatus_list = result;
  3843. if (routerstatus_by_desc_digest_map)
  3844. digestmap_free(routerstatus_by_desc_digest_map, NULL);
  3845. routerstatus_by_desc_digest_map = digestmap_new();
  3846. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  3847. digestmap_set(routerstatus_by_desc_digest_map,
  3848. rs->status.descriptor_digest,
  3849. rs));
  3850. tor_free(networkstatus);
  3851. tor_free(index);
  3852. tor_free(size);
  3853. tor_free(digest_counts);
  3854. strmap_free(name_map, NULL);
  3855. networkstatus_list_has_changed = 0;
  3856. routerstatus_list_has_changed = 1;
  3857. control_event_networkstatus_changed(changed_list);
  3858. smartlist_free(changed_list);
  3859. }
  3860. /** Given a list <b>routers</b> of routerinfo_t *, update each routers's
  3861. * is_named, is_valid, and is_running fields according to our current
  3862. * networkstatus_t documents. */
  3863. void
  3864. routers_update_status_from_networkstatus(smartlist_t *routers,
  3865. int reset_failures)
  3866. {
  3867. trusted_dir_server_t *ds;
  3868. local_routerstatus_t *rs;
  3869. or_options_t *options = get_options();
  3870. int authdir = authdir_mode_v2(options);
  3871. int namingdir = authdir && options->NamingAuthoritativeDir;
  3872. if (!routerstatus_list)
  3873. return;
  3874. SMARTLIST_FOREACH(routers, routerinfo_t *, router,
  3875. {
  3876. const char *digest = router->cache_info.identity_digest;
  3877. rs = router_get_combined_status_by_digest(digest);
  3878. ds = router_get_trusteddirserver_by_digest(digest);
  3879. if (!rs)
  3880. continue;
  3881. if (!namingdir)
  3882. router->is_named = rs->status.is_named;
  3883. if (!authdir) {
  3884. /* If we're not an authdir, believe others. */
  3885. router->is_valid = rs->status.is_valid;
  3886. router->is_running = rs->status.is_running;
  3887. router->is_fast = rs->status.is_fast;
  3888. router->is_stable = rs->status.is_stable;
  3889. router->is_possible_guard = rs->status.is_possible_guard;
  3890. router->is_exit = rs->status.is_exit;
  3891. router->is_bad_exit = rs->status.is_bad_exit;
  3892. }
  3893. if (router->is_running && ds) {
  3894. ds->n_networkstatus_failures = 0;
  3895. }
  3896. if (reset_failures) {
  3897. rs->dl_status.n_download_failures = 0;
  3898. rs->dl_status.next_attempt_at = 0;
  3899. }
  3900. });
  3901. router_dir_info_changed();
  3902. }
  3903. /** For every router descriptor (or extra-info document if <b>extrainfo</b> is
  3904. * true) we are currently downloading by descriptor digest, set result[d] to
  3905. * (void*)1. */
  3906. static void
  3907. list_pending_descriptor_downloads(digestmap_t *result, int extrainfo)
  3908. {
  3909. const char *prefix = "d/";
  3910. size_t p_len = strlen(prefix);
  3911. smartlist_t *tmp = smartlist_create();
  3912. int purpose =
  3913. extrainfo ? DIR_PURPOSE_FETCH_EXTRAINFO : DIR_PURPOSE_FETCH_SERVERDESC;
  3914. smartlist_t *conns = get_connection_array();
  3915. tor_assert(result);
  3916. SMARTLIST_FOREACH(conns, connection_t *, conn,
  3917. {
  3918. if (conn->type == CONN_TYPE_DIR &&
  3919. conn->purpose == purpose &&
  3920. !conn->marked_for_close) {
  3921. const char *resource = TO_DIR_CONN(conn)->requested_resource;
  3922. if (!strcmpstart(resource, prefix))
  3923. dir_split_resource_into_fingerprints(resource + p_len,
  3924. tmp, NULL, 1, 0);
  3925. }
  3926. });
  3927. SMARTLIST_FOREACH(tmp, char *, d,
  3928. {
  3929. digestmap_set(result, d, (void*)1);
  3930. tor_free(d);
  3931. });
  3932. smartlist_free(tmp);
  3933. }
  3934. /** Launch downloads for all the descriptors whose digests are listed
  3935. * as digests[i] for lo <= i < hi. (Lo and hi may be out of range.)
  3936. * If <b>source</b> is given, download from <b>source</b>; otherwise,
  3937. * download from an appropriate random directory server.
  3938. */
  3939. static void
  3940. initiate_descriptor_downloads(routerstatus_t *source,
  3941. int purpose,
  3942. smartlist_t *digests,
  3943. int lo, int hi)
  3944. {
  3945. int i, n = hi-lo;
  3946. char *resource, *cp;
  3947. size_t r_len;
  3948. if (n <= 0)
  3949. return;
  3950. if (lo < 0)
  3951. lo = 0;
  3952. if (hi > smartlist_len(digests))
  3953. hi = smartlist_len(digests);
  3954. r_len = 8 + (HEX_DIGEST_LEN+1)*n;
  3955. cp = resource = tor_malloc(r_len);
  3956. memcpy(cp, "d/", 2);
  3957. cp += 2;
  3958. for (i = lo; i < hi; ++i) {
  3959. base16_encode(cp, r_len-(cp-resource),
  3960. smartlist_get(digests,i), DIGEST_LEN);
  3961. cp += HEX_DIGEST_LEN;
  3962. *cp++ = '+';
  3963. }
  3964. memcpy(cp-1, ".z", 3);
  3965. if (source) {
  3966. /* We know which authority we want. */
  3967. directory_initiate_command_routerstatus(source, purpose,
  3968. ROUTER_PURPOSE_GENERAL,
  3969. 0, /* not private */
  3970. resource, NULL, 0);
  3971. } else {
  3972. directory_get_from_dirserver(purpose, resource, 1);
  3973. }
  3974. tor_free(resource);
  3975. }
  3976. /** Clients don't download any descriptor this recent, since it will probably
  3977. * not have propageted to enough caches. */
  3978. #define ESTIMATED_PROPAGATION_TIME (10*60)
  3979. /** Return 0 if this routerstatus is obsolete, too new, isn't
  3980. * running, or otherwise not a descriptor that we would make any
  3981. * use of even if we had it. Else return 1. */
  3982. static INLINE int
  3983. client_would_use_router(routerstatus_t *rs, time_t now, or_options_t *options)
  3984. {
  3985. if (!rs->is_running && !options->FetchUselessDescriptors) {
  3986. /* If we had this router descriptor, we wouldn't even bother using it.
  3987. * But, if we want to have a complete list, fetch it anyway. */
  3988. return 0;
  3989. }
  3990. if (rs->published_on + ESTIMATED_PROPAGATION_TIME > now) {
  3991. /* Most caches probably don't have this descriptor yet. */
  3992. return 0;
  3993. }
  3994. return 1;
  3995. }
  3996. /** Return new list of ID fingerprints for routers that we (as a client) would
  3997. * like to download.
  3998. */
  3999. static smartlist_t *
  4000. router_list_client_downloadable(void)
  4001. {
  4002. int n_downloadable = 0;
  4003. smartlist_t *downloadable = smartlist_create();
  4004. digestmap_t *downloading;
  4005. time_t now = time(NULL);
  4006. /* these are just used for logging */
  4007. int n_not_ready = 0, n_in_progress = 0, n_uptodate = 0, n_wouldnt_use = 0;
  4008. or_options_t *options = get_options();
  4009. if (!routerstatus_list)
  4010. return downloadable;
  4011. downloading = digestmap_new();
  4012. list_pending_descriptor_downloads(downloading, 0);
  4013. routerstatus_list_update_from_networkstatus(now);
  4014. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  4015. {
  4016. routerinfo_t *ri;
  4017. if (router_get_by_descriptor_digest(rs->status.descriptor_digest)) {
  4018. /* We have the 'best' descriptor for this router. */
  4019. ++n_uptodate;
  4020. } else if (!client_would_use_router(&rs->status, now, options)) {
  4021. /* We wouldn't want this descriptor even if we got it. */
  4022. ++n_wouldnt_use;
  4023. } else if (digestmap_get(downloading, rs->status.descriptor_digest)) {
  4024. /* We're downloading this one now. */
  4025. ++n_in_progress;
  4026. } else if ((ri = router_get_by_digest(rs->status.identity_digest)) &&
  4027. ri->cache_info.published_on > rs->status.published_on) {
  4028. /* Oddly, we have a descriptor more recent than the 'best' one, but it
  4029. was once best. So that's okay. */
  4030. ++n_uptodate;
  4031. } else if (rs->dl_status.next_attempt_at > now) {
  4032. /* We failed too recently to try again. */
  4033. ++n_not_ready;
  4034. } else {
  4035. /* Okay, time to try it. */
  4036. smartlist_add(downloadable, rs->status.descriptor_digest);
  4037. ++n_downloadable;
  4038. }
  4039. });
  4040. #if 0
  4041. log_info(LD_DIR,
  4042. "%d router descriptors are downloadable. "
  4043. "%d are in progress. %d are up-to-date. "
  4044. "%d are non-useful. %d failed too recently to retry.",
  4045. n_downloadable, n_in_progress, n_uptodate,
  4046. n_wouldnt_use, n_not_ready);
  4047. #endif
  4048. digestmap_free(downloading, NULL);
  4049. return downloadable;
  4050. }
  4051. /** Initiate new router downloads as needed, using the strategy for
  4052. * non-directory-servers.
  4053. *
  4054. * We don't launch any downloads if there are fewer than MAX_DL_TO_DELAY
  4055. * descriptors to get and less than MAX_CLIENT_INTERVAL_WITHOUT_REQUEST
  4056. * seconds have passed.
  4057. *
  4058. * Otherwise, we ask for all descriptors that we think are different from what
  4059. * we have, and that we don't currently have an in-progress download attempt
  4060. * for. */
  4061. static void
  4062. update_router_descriptor_client_downloads(time_t now)
  4063. {
  4064. /** Max amount of hashes to download per request.
  4065. * Since squid does not like URLs >= 4096 bytes we limit it to 96.
  4066. * 4096 - strlen(http://255.255.255.255/tor/server/d/.z) == 4058
  4067. * 4058/41 (40 for the hash and 1 for the + that separates them) => 98
  4068. * So use 96 because it's a nice number.
  4069. */
  4070. #define MAX_DL_PER_REQUEST 96
  4071. /** Don't split our requests so finely that we are requesting fewer than
  4072. * this number per server. */
  4073. #define MIN_DL_PER_REQUEST 4
  4074. /** To prevent a single screwy cache from confusing us by selective reply,
  4075. * try to split our requests into at least this this many requests. */
  4076. #define MIN_REQUESTS 3
  4077. /** If we want fewer than this many descriptors, wait until we
  4078. * want more, or until MAX_CLIENT_INTERVAL_WITHOUT_REQUEST has
  4079. * passed. */
  4080. #define MAX_DL_TO_DELAY 16
  4081. /** When directory clients have only a few servers to request, they batch
  4082. * them until they have more, or until this amount of time has passed. */
  4083. #define MAX_CLIENT_INTERVAL_WITHOUT_REQUEST (10*60)
  4084. smartlist_t *downloadable = NULL;
  4085. int should_delay, n_downloadable;
  4086. or_options_t *options = get_options();
  4087. if (options->DirPort) {
  4088. log_warn(LD_BUG,
  4089. "Called router_descriptor_client_downloads() on a dir mirror?");
  4090. }
  4091. if (rep_hist_circbuilding_dormant(now)) {
  4092. // log_info(LD_CIRC, "Skipping descriptor downloads: we haven't needed "
  4093. // "any circuits lately.");
  4094. return;
  4095. }
  4096. if (networkstatus_list &&
  4097. smartlist_len(networkstatus_list) <= get_n_v2_authorities()/2) {
  4098. log_info(LD_DIR,
  4099. "Not enough networkstatus documents to launch requests.");
  4100. return;
  4101. }
  4102. downloadable = router_list_client_downloadable();
  4103. n_downloadable = smartlist_len(downloadable);
  4104. if (n_downloadable >= MAX_DL_TO_DELAY) {
  4105. log_debug(LD_DIR,
  4106. "There are enough downloadable routerdescs to launch requests.");
  4107. should_delay = 0;
  4108. } else if (n_downloadable == 0) {
  4109. // log_debug(LD_DIR, "No routerdescs need to be downloaded.");
  4110. should_delay = 1;
  4111. } else {
  4112. should_delay = (last_routerdesc_download_attempted +
  4113. MAX_CLIENT_INTERVAL_WITHOUT_REQUEST) > now;
  4114. if (!should_delay) {
  4115. if (last_routerdesc_download_attempted) {
  4116. log_info(LD_DIR,
  4117. "There are not many downloadable routerdescs, but we've "
  4118. "been waiting long enough (%d seconds). Downloading.",
  4119. (int)(now-last_routerdesc_download_attempted));
  4120. } else {
  4121. log_info(LD_DIR,
  4122. "There are not many downloadable routerdescs, but we haven't "
  4123. "tried downloading descriptors recently. Downloading.");
  4124. }
  4125. }
  4126. }
  4127. if (! should_delay) {
  4128. int i, n_per_request;
  4129. const char *req_plural = "", *rtr_plural = "";
  4130. n_per_request = (n_downloadable+MIN_REQUESTS-1) / MIN_REQUESTS;
  4131. if (n_per_request > MAX_DL_PER_REQUEST)
  4132. n_per_request = MAX_DL_PER_REQUEST;
  4133. if (n_per_request < MIN_DL_PER_REQUEST)
  4134. n_per_request = MIN_DL_PER_REQUEST;
  4135. if (n_downloadable > n_per_request)
  4136. req_plural = rtr_plural = "s";
  4137. else if (n_downloadable > 1)
  4138. rtr_plural = "s";
  4139. log_info(LD_DIR,
  4140. "Launching %d request%s for %d router%s, %d at a time",
  4141. (n_downloadable+n_per_request-1)/n_per_request,
  4142. req_plural, n_downloadable, rtr_plural, n_per_request);
  4143. smartlist_sort_digests(downloadable);
  4144. for (i=0; i < n_downloadable; i += n_per_request) {
  4145. initiate_descriptor_downloads(NULL, DIR_PURPOSE_FETCH_SERVERDESC,
  4146. downloadable, i, i+n_per_request);
  4147. }
  4148. last_routerdesc_download_attempted = now;
  4149. }
  4150. smartlist_free(downloadable);
  4151. }
  4152. /** Launch downloads for router status as needed, using the strategy used by
  4153. * authorities and caches: download every descriptor we don't have but would
  4154. * serve, from a random authority that lists it. */
  4155. static void
  4156. update_router_descriptor_cache_downloads(time_t now)
  4157. {
  4158. smartlist_t **downloadable; /* For each authority, what can we dl from it? */
  4159. smartlist_t **download_from; /* ... and, what will we dl from it? */
  4160. digestmap_t *map; /* Which descs are in progress, or assigned? */
  4161. int i, j, n;
  4162. int n_download;
  4163. or_options_t *options = get_options();
  4164. if (!options->DirPort) {
  4165. log_warn(LD_BUG, "Called update_router_descriptor_cache_downloads() "
  4166. "on a non-dir-mirror?");
  4167. }
  4168. if (!networkstatus_list || !smartlist_len(networkstatus_list))
  4169. return;
  4170. map = digestmap_new();
  4171. n = smartlist_len(networkstatus_list);
  4172. downloadable = tor_malloc_zero(sizeof(smartlist_t*) * n);
  4173. download_from = tor_malloc_zero(sizeof(smartlist_t*) * n);
  4174. /* Set map[d]=1 for the digest of every descriptor that we are currently
  4175. * downloading. */
  4176. list_pending_descriptor_downloads(map, 0);
  4177. /* For the digest of every descriptor that we don't have, and that we aren't
  4178. * downloading, add d to downloadable[i] if the i'th networkstatus knows
  4179. * about that descriptor, and we haven't already failed to get that
  4180. * descriptor from the corresponding authority.
  4181. */
  4182. n_download = 0;
  4183. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  4184. {
  4185. trusted_dir_server_t *ds;
  4186. smartlist_t *dl;
  4187. dl = downloadable[ns_sl_idx] = smartlist_create();
  4188. download_from[ns_sl_idx] = smartlist_create();
  4189. if (ns->published_on + MAX_NETWORKSTATUS_AGE+10*60 < now) {
  4190. /* Don't download if the networkstatus is almost ancient. */
  4191. /* Actually, I suspect what's happening here is that we ask
  4192. * for the descriptor when we have a given networkstatus,
  4193. * and then we get a newer networkstatus, and then we receive
  4194. * the descriptor. Having a networkstatus actually expire is
  4195. * probably a rare event, and we'll probably be happiest if
  4196. * we take this clause out. -RD */
  4197. continue;
  4198. }
  4199. /* Don't try dirservers that we think are down -- we might have
  4200. * just tried them and just marked them as down. */
  4201. ds = router_get_trusteddirserver_by_digest(ns->identity_digest);
  4202. if (ds && !ds->is_running)
  4203. continue;
  4204. SMARTLIST_FOREACH(ns->entries, routerstatus_t * , rs,
  4205. {
  4206. if (!rs->need_to_mirror)
  4207. continue;
  4208. if (router_get_by_descriptor_digest(rs->descriptor_digest)) {
  4209. log_warn(LD_BUG,
  4210. "We have a router descriptor, but need_to_mirror=1.");
  4211. rs->need_to_mirror = 0;
  4212. continue;
  4213. }
  4214. if (authdir_mode(options) && dirserv_would_reject_router(rs)) {
  4215. rs->need_to_mirror = 0;
  4216. continue;
  4217. }
  4218. if (digestmap_get(map, rs->descriptor_digest)) {
  4219. /* We're downloading it already. */
  4220. continue;
  4221. } else {
  4222. /* We could download it from this guy. */
  4223. smartlist_add(dl, rs->descriptor_digest);
  4224. ++n_download;
  4225. }
  4226. });
  4227. });
  4228. /* At random, assign descriptors to authorities such that:
  4229. * - if d is a member of some downloadable[x], d is a member of some
  4230. * download_from[y]. (Everything we want to download, we try to download
  4231. * from somebody.)
  4232. * - If d is a member of download_from[y], d is a member of downloadable[y].
  4233. * (We only try to download descriptors from authorities who claim to have
  4234. * them.)
  4235. * - No d is a member of download_from[x] and download_from[y] s.t. x != y.
  4236. * (We don't try to download anything from two authorities concurrently.)
  4237. */
  4238. while (n_download) {
  4239. int which_ns = crypto_rand_int(n);
  4240. smartlist_t *dl = downloadable[which_ns];
  4241. int idx;
  4242. char *d;
  4243. if (!smartlist_len(dl))
  4244. continue;
  4245. idx = crypto_rand_int(smartlist_len(dl));
  4246. d = smartlist_get(dl, idx);
  4247. if (! digestmap_get(map, d)) {
  4248. smartlist_add(download_from[which_ns], d);
  4249. digestmap_set(map, d, (void*) 1);
  4250. }
  4251. smartlist_del(dl, idx);
  4252. --n_download;
  4253. }
  4254. /* Now, we can actually launch our requests. */
  4255. for (i=0; i<n; ++i) {
  4256. networkstatus_t *ns = smartlist_get(networkstatus_list, i);
  4257. trusted_dir_server_t *ds =
  4258. router_get_trusteddirserver_by_digest(ns->identity_digest);
  4259. smartlist_t *dl = download_from[i];
  4260. if (!ds) {
  4261. log_warn(LD_BUG, "Networkstatus with no corresponding authority!");
  4262. continue;
  4263. }
  4264. if (! smartlist_len(dl))
  4265. continue;
  4266. log_info(LD_DIR, "Requesting %d descriptors from authority \"%s\"",
  4267. smartlist_len(dl), ds->nickname);
  4268. for (j=0; j < smartlist_len(dl); j += MAX_DL_PER_REQUEST) {
  4269. initiate_descriptor_downloads(&(ds->fake_status.status),
  4270. DIR_PURPOSE_FETCH_SERVERDESC, dl, j,
  4271. j+MAX_DL_PER_REQUEST);
  4272. }
  4273. }
  4274. for (i=0; i<n; ++i) {
  4275. smartlist_free(download_from[i]);
  4276. smartlist_free(downloadable[i]);
  4277. }
  4278. tor_free(download_from);
  4279. tor_free(downloadable);
  4280. digestmap_free(map,NULL);
  4281. }
  4282. /** Launch downloads for router status as needed. */
  4283. void
  4284. update_router_descriptor_downloads(time_t now)
  4285. {
  4286. or_options_t *options = get_options();
  4287. if (options->DirPort) {
  4288. update_router_descriptor_cache_downloads(now);
  4289. } else {
  4290. update_router_descriptor_client_downloads(now);
  4291. }
  4292. }
  4293. /** Return true iff <b>sd</b> is the descriptor for a router descriptor that
  4294. * has an extrainfo that we don't currently have, are not currently
  4295. * downloading, and have not recently tried to download. */
  4296. static INLINE int
  4297. should_download_extrainfo(signed_descriptor_t *sd,
  4298. const routerlist_t *rl,
  4299. const digestmap_t *pending,
  4300. time_t now)
  4301. {
  4302. const char *d = sd->extra_info_digest;
  4303. return (!sd->is_extrainfo &&
  4304. !tor_digest_is_zero(d) &&
  4305. sd->ei_dl_status.next_attempt_at <= now &&
  4306. !eimap_get(rl->extra_info_map, d) &&
  4307. !digestmap_get(pending, d));
  4308. }
  4309. /** Laucnch extrainfo downloads as needed. */
  4310. void
  4311. update_extrainfo_downloads(time_t now)
  4312. {
  4313. or_options_t *options = get_options();
  4314. routerlist_t *rl;
  4315. smartlist_t *wanted;
  4316. digestmap_t *pending;
  4317. int i;
  4318. if (! options->DownloadExtraInfo)
  4319. return;
  4320. pending = digestmap_new();
  4321. list_pending_descriptor_downloads(pending, 1);
  4322. rl = router_get_routerlist();
  4323. wanted = smartlist_create();
  4324. SMARTLIST_FOREACH(rl->routers, routerinfo_t *, ri, {
  4325. if (should_download_extrainfo(&ri->cache_info, rl, pending, now)) {
  4326. smartlist_add(wanted, ri->cache_info.extra_info_digest);
  4327. }
  4328. });
  4329. if (options->DirPort) {
  4330. SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd, {
  4331. if (should_download_extrainfo(sd, rl, pending, now)) {
  4332. smartlist_add(wanted, sd->extra_info_digest);
  4333. }
  4334. });
  4335. }
  4336. digestmap_free(pending, NULL);
  4337. smartlist_shuffle(wanted);
  4338. for (i = 0; i < smartlist_len(wanted); i += MAX_DL_PER_REQUEST) {
  4339. initiate_descriptor_downloads(NULL, DIR_PURPOSE_FETCH_EXTRAINFO,
  4340. wanted, i, i + MAX_DL_PER_REQUEST);
  4341. }
  4342. smartlist_free(wanted);
  4343. }
  4344. /** Return the number of routerstatus_t in <b>entries</b> that we'd actually
  4345. * use. */
  4346. static int
  4347. routerstatus_count_usable_entries(smartlist_t *entries)
  4348. {
  4349. int count = 0;
  4350. time_t now = time(NULL);
  4351. or_options_t *options = get_options();
  4352. SMARTLIST_FOREACH(entries, routerstatus_t *, rs,
  4353. if (client_would_use_router(rs, now, options)) count++);
  4354. return count;
  4355. }
  4356. /** True iff, the last time we checked whether we had enough directory info
  4357. * to build circuits, the answer was "yes". */
  4358. static int have_min_dir_info = 0;
  4359. /** True iff enough has changed since the last time we checked whether we had
  4360. * enough directory info to build circuits that our old answer can no longer
  4361. * be trusted. */
  4362. static int need_to_update_have_min_dir_info = 1;
  4363. /** Return true iff we have enough networkstatus and router information to
  4364. * start building circuits. Right now, this means "more than half the
  4365. * networkstatus documents, and at least 1/4 of expected routers." */
  4366. //XXX should consider whether we have enough exiting nodes here.
  4367. int
  4368. router_have_minimum_dir_info(void)
  4369. {
  4370. if (PREDICT_UNLIKELY(need_to_update_have_min_dir_info)) {
  4371. update_router_have_minimum_dir_info();
  4372. need_to_update_have_min_dir_info = 0;
  4373. }
  4374. return have_min_dir_info;
  4375. }
  4376. /** Called when our internal view of the directory has changed. This can be
  4377. * when the authorities change, networkstatuses change, the list of routerdescs
  4378. * changes, or number of running routers changes.
  4379. */
  4380. static void
  4381. router_dir_info_changed(void)
  4382. {
  4383. need_to_update_have_min_dir_info = 1;
  4384. }
  4385. /** Change the value of have_min_dir_info, setting it true iff we have enough
  4386. * network and router information to build circuits. Clear the value of
  4387. * need_to_update_have_min_dir_info. */
  4388. static void
  4389. update_router_have_minimum_dir_info(void)
  4390. {
  4391. int tot = 0, num_running = 0;
  4392. int n_ns, n_authorities, res, avg;
  4393. time_t now = time(NULL);
  4394. if (!networkstatus_list || !routerlist) {
  4395. res = 0;
  4396. goto done;
  4397. }
  4398. routerlist_remove_old_routers();
  4399. networkstatus_list_clean(now);
  4400. n_authorities = get_n_v2_authorities();
  4401. n_ns = smartlist_len(networkstatus_list);
  4402. if (n_ns<=n_authorities/2) {
  4403. log_info(LD_DIR,
  4404. "We have %d of %d network statuses, and we want "
  4405. "more than %d.", n_ns, n_authorities, n_authorities/2);
  4406. res = 0;
  4407. goto done;
  4408. }
  4409. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  4410. tot += routerstatus_count_usable_entries(ns->entries));
  4411. avg = tot / n_ns;
  4412. if (!routerstatus_list)
  4413. routerstatus_list = smartlist_create();
  4414. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  4415. {
  4416. if (rs->status.is_running)
  4417. num_running++;
  4418. });
  4419. res = smartlist_len(routerlist->routers) >= (avg/4) && num_running > 2;
  4420. done:
  4421. if (res && !have_min_dir_info) {
  4422. log(LOG_NOTICE, LD_DIR,
  4423. "We now have enough directory information to build circuits.");
  4424. control_event_client_status(LOG_NOTICE, "ENOUGH_DIR_INFO");
  4425. }
  4426. if (!res && have_min_dir_info) {
  4427. log(LOG_NOTICE, LD_DIR,"Our directory information is no longer up-to-date "
  4428. "enough to build circuits.%s",
  4429. num_running > 2 ? "" : " (Not enough servers seem reachable -- "
  4430. "is your network connection down?)");
  4431. control_event_client_status(LOG_NOTICE, "NOT_ENOUGH_DIR_INFO");
  4432. }
  4433. have_min_dir_info = res;
  4434. }
  4435. /** Return true iff we have downloaded, or attempted to download at least
  4436. * n_failures times, a network status for each authority. */
  4437. static int
  4438. have_tried_downloading_all_statuses(int n_failures)
  4439. {
  4440. if (!trusted_dir_servers)
  4441. return 0;
  4442. SMARTLIST_FOREACH(trusted_dir_servers, trusted_dir_server_t *, ds,
  4443. {
  4444. if (!(ds->type & V2_AUTHORITY))
  4445. continue;
  4446. /* If we don't have the status, and we haven't failed to get the status,
  4447. * we haven't tried to get the status. */
  4448. if (!networkstatus_get_by_digest(ds->digest) &&
  4449. ds->n_networkstatus_failures <= n_failures)
  4450. return 0;
  4451. });
  4452. return 1;
  4453. }
  4454. /** Reset the descriptor download failure count on all routers, so that we
  4455. * can retry any long-failed routers immediately.
  4456. */
  4457. void
  4458. router_reset_descriptor_download_failures(void)
  4459. {
  4460. if (!routerstatus_list)
  4461. return;
  4462. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, rs,
  4463. {
  4464. rs->dl_status.n_download_failures = 0;
  4465. rs->dl_status.next_attempt_at = 0;
  4466. });
  4467. tor_assert(networkstatus_list);
  4468. SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns,
  4469. SMARTLIST_FOREACH(ns->entries, routerstatus_t *, rs,
  4470. {
  4471. if (!router_get_by_descriptor_digest(rs->descriptor_digest))
  4472. rs->need_to_mirror = 1;
  4473. }));
  4474. last_routerdesc_download_attempted = 0;
  4475. if (!routerlist)
  4476. return;
  4477. SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, ri,
  4478. {
  4479. ri->cache_info.ei_dl_status.n_download_failures = 0;
  4480. ri->cache_info.ei_dl_status.next_attempt_at = 0;
  4481. });
  4482. SMARTLIST_FOREACH(routerlist->old_routers, signed_descriptor_t *, sd,
  4483. {
  4484. sd->ei_dl_status.n_download_failures = 0;
  4485. sd->ei_dl_status.next_attempt_at = 0;
  4486. });
  4487. }
  4488. /** Any changes in a router descriptor's publication time larger than this are
  4489. * automatically non-cosmetic. */
  4490. #define ROUTER_MAX_COSMETIC_TIME_DIFFERENCE (12*60*60)
  4491. /** We allow uptime to vary from how much it ought to be by this much. */
  4492. #define ROUTER_ALLOW_UPTIME_DRIFT (6*60*60)
  4493. /** Return true iff the only differences between r1 and r2 are such that
  4494. * would not cause a recent (post 0.1.1.6) dirserver to republish.
  4495. */
  4496. int
  4497. router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2)
  4498. {
  4499. time_t r1pub, r2pub;
  4500. int time_difference;
  4501. tor_assert(r1 && r2);
  4502. /* r1 should be the one that was published first. */
  4503. if (r1->cache_info.published_on > r2->cache_info.published_on) {
  4504. routerinfo_t *ri_tmp = r2;
  4505. r2 = r1;
  4506. r1 = ri_tmp;
  4507. }
  4508. /* If any key fields differ, they're different. */
  4509. if (strcasecmp(r1->address, r2->address) ||
  4510. strcasecmp(r1->nickname, r2->nickname) ||
  4511. r1->or_port != r2->or_port ||
  4512. r1->dir_port != r2->dir_port ||
  4513. crypto_pk_cmp_keys(r1->onion_pkey, r2->onion_pkey) ||
  4514. crypto_pk_cmp_keys(r1->identity_pkey, r2->identity_pkey) ||
  4515. strcasecmp(r1->platform, r2->platform) ||
  4516. (r1->contact_info && !r2->contact_info) || /* contact_info is optional */
  4517. (!r1->contact_info && r2->contact_info) ||
  4518. (r1->contact_info && r2->contact_info &&
  4519. strcasecmp(r1->contact_info, r2->contact_info)) ||
  4520. r1->is_hibernating != r2->is_hibernating ||
  4521. r1->has_old_dnsworkers != r2->has_old_dnsworkers ||
  4522. cmp_addr_policies(r1->exit_policy, r2->exit_policy))
  4523. return 0;
  4524. if ((r1->declared_family == NULL) != (r2->declared_family == NULL))
  4525. return 0;
  4526. if (r1->declared_family && r2->declared_family) {
  4527. int i, n;
  4528. if (smartlist_len(r1->declared_family)!=smartlist_len(r2->declared_family))
  4529. return 0;
  4530. n = smartlist_len(r1->declared_family);
  4531. for (i=0; i < n; ++i) {
  4532. if (strcasecmp(smartlist_get(r1->declared_family, i),
  4533. smartlist_get(r2->declared_family, i)))
  4534. return 0;
  4535. }
  4536. }
  4537. /* Did bandwidth change a lot? */
  4538. if ((r1->bandwidthcapacity < r2->bandwidthcapacity/2) ||
  4539. (r2->bandwidthcapacity < r1->bandwidthcapacity/2))
  4540. return 0;
  4541. /* Did more than 12 hours pass? */
  4542. if (r1->cache_info.published_on + ROUTER_MAX_COSMETIC_TIME_DIFFERENCE
  4543. < r2->cache_info.published_on)
  4544. return 0;
  4545. /* Did uptime fail to increase by approximately the amount we would think,
  4546. * give or take some slop? */
  4547. r1pub = r1->cache_info.published_on;
  4548. r2pub = r2->cache_info.published_on;
  4549. time_difference = abs(r2->uptime - (r1->uptime + (r2pub - r1pub)));
  4550. if (time_difference > ROUTER_ALLOW_UPTIME_DRIFT &&
  4551. time_difference > r1->uptime * .05 &&
  4552. time_difference > r2->uptime * .05)
  4553. return 0;
  4554. /* Otherwise, the difference is cosmetic. */
  4555. return 1;
  4556. }
  4557. /** Check whether <b>ri</b> is a router compatible with the extrainfo document
  4558. * <b>ei</b>. If no router is compatible with <b>ei</b>, <b>ei</b> should be
  4559. * dropped. Return 0 for "compatible", return 1 for "reject, and inform
  4560. * whoever uploaded <b>ei</b>, and return -1 for "reject silently.". If
  4561. * <b>msg</b> is present, set *<b>msg</b> to a description of the
  4562. * incompatibility (if any). */
  4563. int
  4564. routerinfo_incompatible_with_extrainfo(routerinfo_t *ri, extrainfo_t *ei,
  4565. const char **msg)
  4566. {
  4567. tor_assert(ri);
  4568. tor_assert(ei);
  4569. if (ei->bad_sig) {
  4570. if (msg) *msg = "Extrainfo signature was bad, or signed with wrong key.";
  4571. return 1;
  4572. }
  4573. /* The nickname must match exactly to have been generated at the same time
  4574. * by the same router. */
  4575. if (strcmp(ri->nickname, ei->nickname) ||
  4576. memcmp(ri->cache_info.identity_digest, ei->cache_info.identity_digest,
  4577. DIGEST_LEN)) {
  4578. if (msg) *msg = "Extrainfo nickname or identity did not match routerinfo";
  4579. return 1; /* different servers */
  4580. }
  4581. if (ei->pending_sig) {
  4582. char signed_digest[128];
  4583. if (crypto_pk_public_checksig(ri->identity_pkey, signed_digest,
  4584. ei->pending_sig, ei->pending_sig_len) != DIGEST_LEN ||
  4585. memcmp(signed_digest, ei->cache_info.signed_descriptor_digest,
  4586. DIGEST_LEN)) {
  4587. ei->bad_sig = 1;
  4588. tor_free(ei->pending_sig);
  4589. if (msg) *msg = "Extrainfo signature bad, or signed with wrong key";
  4590. return 1; /* Bad signature, or no match. */
  4591. }
  4592. tor_free(ei->pending_sig);
  4593. }
  4594. if (ei->cache_info.published_on < ri->cache_info.published_on) {
  4595. if (msg) *msg = "Extrainfo published time did not match routerdesc";
  4596. return 1;
  4597. } else if (ei->cache_info.published_on > ri->cache_info.published_on) {
  4598. if (msg) *msg = "Extrainfo published time did not match routerdesc";
  4599. return -1;
  4600. }
  4601. if (memcmp(ei->cache_info.signed_descriptor_digest,
  4602. ri->cache_info.extra_info_digest, DIGEST_LEN)) {
  4603. if (msg) *msg = "Extrainfo digest did not match value from routerdesc";
  4604. return 1; /* Digest doesn't match declared value. */
  4605. }
  4606. return 0;
  4607. }
  4608. /** Generate networkstatus lines for a single routerstatus_t object, and
  4609. * return the result in a newly allocated string. Used only by controller
  4610. * interface (for now.) */
  4611. char *
  4612. networkstatus_getinfo_helper_single(routerstatus_t *rs)
  4613. {
  4614. char buf[256];
  4615. routerstatus_format_entry(buf, sizeof(buf), rs, NULL, 0);
  4616. return tor_strdup(buf);
  4617. }
  4618. /** If <b>question</b> is a string beginning with "ns/" in a format the
  4619. * control interface expects for a GETINFO question, set *<b>answer</b> to a
  4620. * newly-allocated string containing networkstatus lines for the appropriate
  4621. * ORs. Return 0 on success, -1 on unrecognized question format. */
  4622. int
  4623. getinfo_helper_networkstatus(control_connection_t *conn,
  4624. const char *question, char **answer)
  4625. {
  4626. local_routerstatus_t *status;
  4627. (void) conn;
  4628. if (!routerstatus_list) {
  4629. *answer = tor_strdup("");
  4630. return 0;
  4631. }
  4632. if (!strcmp(question, "ns/all")) {
  4633. smartlist_t *statuses = smartlist_create();
  4634. SMARTLIST_FOREACH(routerstatus_list, local_routerstatus_t *, lrs,
  4635. {
  4636. routerstatus_t *rs = &(lrs->status);
  4637. smartlist_add(statuses, networkstatus_getinfo_helper_single(rs));
  4638. });
  4639. *answer = smartlist_join_strings(statuses, "", 0, NULL);
  4640. SMARTLIST_FOREACH(statuses, char *, cp, tor_free(cp));
  4641. smartlist_free(statuses);
  4642. return 0;
  4643. } else if (!strcmpstart(question, "ns/id/")) {
  4644. char d[DIGEST_LEN];
  4645. if (base16_decode(d, DIGEST_LEN, question+6, strlen(question+6)))
  4646. return -1;
  4647. status = router_get_combined_status_by_digest(d);
  4648. } else if (!strcmpstart(question, "ns/name/")) {
  4649. status = router_get_combined_status_by_nickname(question+8, 0);
  4650. } else {
  4651. return -1;
  4652. }
  4653. if (status) {
  4654. *answer = networkstatus_getinfo_helper_single(&status->status);
  4655. }
  4656. return 0;
  4657. }
  4658. /** Assert that the internal representation of <b>rl</b> is
  4659. * self-consistent. */
  4660. void
  4661. routerlist_assert_ok(routerlist_t *rl)
  4662. {
  4663. digestmap_iter_t *iter; /* XXXX020 use the appropriate iter type. */
  4664. routerinfo_t *r2;
  4665. signed_descriptor_t *sd2;
  4666. if (!rl)
  4667. return;
  4668. SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r,
  4669. {
  4670. r2 = rimap_get(rl->identity_map, r->cache_info.identity_digest);
  4671. tor_assert(r == r2);
  4672. sd2 = sdmap_get(rl->desc_digest_map,
  4673. r->cache_info.signed_descriptor_digest);
  4674. tor_assert(&(r->cache_info) == sd2);
  4675. tor_assert(r->routerlist_index == r_sl_idx);
  4676. if (!tor_digest_is_zero(r->cache_info.extra_info_digest)) {
  4677. signed_descriptor_t *sd3 =
  4678. sdmap_get(rl->desc_by_eid_map, r->cache_info.extra_info_digest);
  4679. tor_assert(sd3 == &(r->cache_info));
  4680. }
  4681. });
  4682. SMARTLIST_FOREACH(rl->old_routers, signed_descriptor_t *, sd,
  4683. {
  4684. r2 = rimap_get(rl->identity_map, sd->identity_digest);
  4685. tor_assert(sd != &(r2->cache_info));
  4686. sd2 = sdmap_get(rl->desc_digest_map, sd->signed_descriptor_digest);
  4687. tor_assert(sd == sd2);
  4688. if (!tor_digest_is_zero(sd->extra_info_digest)) {
  4689. signed_descriptor_t *sd3 =
  4690. sdmap_get(rl->desc_by_eid_map, sd->extra_info_digest);
  4691. tor_assert(sd3 == sd);
  4692. }
  4693. });
  4694. iter = digestmap_iter_init((digestmap_t*)rl->identity_map);
  4695. while (!digestmap_iter_done(iter)) {
  4696. const char *d;
  4697. void *_r;
  4698. routerinfo_t *r;
  4699. digestmap_iter_get(iter, &d, &_r);
  4700. r = _r;
  4701. tor_assert(!memcmp(r->cache_info.identity_digest, d, DIGEST_LEN));
  4702. iter = digestmap_iter_next((digestmap_t*)rl->identity_map, iter);
  4703. }
  4704. iter = digestmap_iter_init((digestmap_t*)rl->desc_digest_map);
  4705. while (!digestmap_iter_done(iter)) {
  4706. const char *d;
  4707. void *_sd;
  4708. signed_descriptor_t *sd;
  4709. digestmap_iter_get(iter, &d, &_sd);
  4710. sd = _sd;
  4711. tor_assert(!memcmp(sd->signed_descriptor_digest, d, DIGEST_LEN));
  4712. iter = digestmap_iter_next((digestmap_t*)rl->desc_digest_map, iter);
  4713. }
  4714. iter = digestmap_iter_init((digestmap_t*)rl->desc_by_eid_map);
  4715. while (!digestmap_iter_done(iter)) {
  4716. const char *d;
  4717. void *_sd;
  4718. signed_descriptor_t *sd;
  4719. digestmap_iter_get(iter, &d, &_sd);
  4720. sd = _sd;
  4721. tor_assert(!tor_digest_is_zero(d));
  4722. tor_assert(sd);
  4723. tor_assert(!memcmp(sd->extra_info_digest, d, DIGEST_LEN));
  4724. iter = digestmap_iter_next((digestmap_t*)rl->desc_by_eid_map, iter);
  4725. }
  4726. iter = digestmap_iter_init((digestmap_t*)rl->extra_info_map);
  4727. while (!digestmap_iter_done(iter)) {
  4728. const char *d;
  4729. void *_ei;
  4730. extrainfo_t *ei;
  4731. signed_descriptor_t *sd;
  4732. digestmap_iter_get(iter, &d, &_ei);
  4733. ei = _ei;
  4734. tor_assert(!memcmp(ei->cache_info.signed_descriptor_digest,
  4735. d, DIGEST_LEN));
  4736. sd = sdmap_get(rl->desc_by_eid_map,
  4737. ei->cache_info.signed_descriptor_digest);
  4738. tor_assert(sd);
  4739. tor_assert(!memcmp(ei->cache_info.signed_descriptor_digest,
  4740. sd->extra_info_digest, DIGEST_LEN));
  4741. iter = digestmap_iter_next((digestmap_t*)rl->extra_info_map, iter);
  4742. }
  4743. }
  4744. /** Debugging function. With any luck, we can remove this soon. Fail with an
  4745. * assertion if the symptoms for bug 417/404 seem to be present. */
  4746. void
  4747. routerlist_check_bug_417(void)
  4748. {
  4749. /* XXXX020 remove this function once bug 417/404 is fixed. */
  4750. routerlist_t *rl = router_get_routerlist();
  4751. routerinfo_t *ri_generated, *r2, *r;
  4752. int idx = -1;
  4753. ri_generated = router_get_my_routerinfo();
  4754. if (!ri_generated)
  4755. return;
  4756. r = rimap_get(rl->identity_map,
  4757. ri_generated->cache_info.identity_digest);
  4758. if (r) {
  4759. idx = r->routerlist_index;
  4760. tor_assert(idx >= 0);
  4761. tor_assert(idx < smartlist_len(rl->routers));
  4762. r2 = smartlist_get(rl->routers, idx);
  4763. tor_assert(r == r2);
  4764. } else {
  4765. #if 0
  4766. /* Too slow; the bug seems to be in the former case anyway. */
  4767. SMARTLIST_FROEACH(rl->routers, routerinfo_t *, ri,
  4768. {
  4769. tor_assert(!router_is_me(ri));
  4770. });
  4771. #endif
  4772. }
  4773. tor_assert(ri_generated->routerlist_index == -1);
  4774. }
  4775. /** Allocate and return a new string representing the contact info
  4776. * and platform string for <b>router</b>,
  4777. * surrounded by quotes and using standard C escapes.
  4778. *
  4779. * THIS FUNCTION IS NOT REENTRANT. Don't call it from outside the main
  4780. * thread. Also, each call invalidates the last-returned value, so don't
  4781. * try log_warn(LD_GENERAL, "%s %s", esc_router_info(a), esc_router_info(b));
  4782. */
  4783. const char *
  4784. esc_router_info(routerinfo_t *router)
  4785. {
  4786. static char *info;
  4787. char *esc_contact, *esc_platform;
  4788. size_t len;
  4789. if (info)
  4790. tor_free(info);
  4791. esc_contact = esc_for_log(router->contact_info);
  4792. esc_platform = esc_for_log(router->platform);
  4793. len = strlen(esc_contact)+strlen(esc_platform)+32;
  4794. info = tor_malloc(len);
  4795. tor_snprintf(info, len, "Contact %s, Platform %s", esc_contact,
  4796. esc_platform);
  4797. tor_free(esc_contact);
  4798. tor_free(esc_platform);
  4799. return info;
  4800. }