test_dir.c 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2015, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. #include "orconfig.h"
  6. #include <math.h>
  7. #define CONFIG_PRIVATE
  8. #define DIRSERV_PRIVATE
  9. #define DIRVOTE_PRIVATE
  10. #define ROUTER_PRIVATE
  11. #define ROUTERLIST_PRIVATE
  12. #define HIBERNATE_PRIVATE
  13. #define NETWORKSTATUS_PRIVATE
  14. #define RELAY_PRIVATE
  15. #include "or.h"
  16. #include "confparse.h"
  17. #include "config.h"
  18. #include "crypto_ed25519.h"
  19. #include "directory.h"
  20. #include "dirserv.h"
  21. #include "dirvote.h"
  22. #include "hibernate.h"
  23. #include "memarea.h"
  24. #include "networkstatus.h"
  25. #include "router.h"
  26. #include "routerkeys.h"
  27. #include "routerlist.h"
  28. #include "routerparse.h"
  29. #include "routerset.h"
  30. #include "test.h"
  31. #include "test_dir_common.h"
  32. #include "torcert.h"
  33. #include "relay.h"
  34. #define NS_MODULE dir
  35. static void
  36. test_dir_nicknames(void *arg)
  37. {
  38. (void)arg;
  39. tt_assert( is_legal_nickname("a"));
  40. tt_assert(!is_legal_nickname(""));
  41. tt_assert(!is_legal_nickname("abcdefghijklmnopqrst")); /* 20 chars */
  42. tt_assert(!is_legal_nickname("hyphen-")); /* bad char */
  43. tt_assert( is_legal_nickname("abcdefghijklmnopqrs")); /* 19 chars */
  44. tt_assert(!is_legal_nickname("$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  45. /* valid */
  46. tt_assert( is_legal_nickname_or_hexdigest(
  47. "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  48. tt_assert( is_legal_nickname_or_hexdigest(
  49. "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA=fred"));
  50. tt_assert( is_legal_nickname_or_hexdigest(
  51. "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA~fred"));
  52. /* too short */
  53. tt_assert(!is_legal_nickname_or_hexdigest(
  54. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  55. /* illegal char */
  56. tt_assert(!is_legal_nickname_or_hexdigest(
  57. "$AAAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  58. /* hex part too long */
  59. tt_assert(!is_legal_nickname_or_hexdigest(
  60. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  61. tt_assert(!is_legal_nickname_or_hexdigest(
  62. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=fred"));
  63. /* Bad nickname */
  64. tt_assert(!is_legal_nickname_or_hexdigest(
  65. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="));
  66. tt_assert(!is_legal_nickname_or_hexdigest(
  67. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~"));
  68. tt_assert(!is_legal_nickname_or_hexdigest(
  69. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~hyphen-"));
  70. tt_assert(!is_legal_nickname_or_hexdigest(
  71. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~"
  72. "abcdefghijklmnoppqrst"));
  73. /* Bad extra char. */
  74. tt_assert(!is_legal_nickname_or_hexdigest(
  75. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA!"));
  76. tt_assert(is_legal_nickname_or_hexdigest("xyzzy"));
  77. tt_assert(is_legal_nickname_or_hexdigest("abcdefghijklmnopqrs"));
  78. tt_assert(!is_legal_nickname_or_hexdigest("abcdefghijklmnopqrst"));
  79. done:
  80. ;
  81. }
  82. /** Run unit tests for router descriptor generation logic. */
  83. static void
  84. test_dir_formats(void *arg)
  85. {
  86. char *buf = NULL;
  87. char buf2[8192];
  88. char platform[256];
  89. char fingerprint[FINGERPRINT_LEN+1];
  90. char *pk1_str = NULL, *pk2_str = NULL, *cp;
  91. size_t pk1_str_len, pk2_str_len;
  92. routerinfo_t *r1=NULL, *r2=NULL;
  93. crypto_pk_t *pk1 = NULL, *pk2 = NULL;
  94. routerinfo_t *rp1 = NULL, *rp2 = NULL;
  95. addr_policy_t *ex1, *ex2;
  96. routerlist_t *dir1 = NULL, *dir2 = NULL;
  97. uint8_t *rsa_cc = NULL;
  98. or_options_t *options = get_options_mutable();
  99. const addr_policy_t *p;
  100. time_t now = time(NULL);
  101. (void)arg;
  102. pk1 = pk_generate(0);
  103. pk2 = pk_generate(1);
  104. tt_assert(pk1 && pk2);
  105. hibernate_set_state_for_testing_(HIBERNATE_STATE_LIVE);
  106. get_platform_str(platform, sizeof(platform));
  107. r1 = tor_malloc_zero(sizeof(routerinfo_t));
  108. r1->addr = 0xc0a80001u; /* 192.168.0.1 */
  109. r1->cache_info.published_on = 0;
  110. r1->or_port = 9000;
  111. r1->dir_port = 9003;
  112. r1->supports_tunnelled_dir_requests = 1;
  113. tor_addr_parse(&r1->ipv6_addr, "1:2:3:4::");
  114. r1->ipv6_orport = 9999;
  115. r1->onion_pkey = crypto_pk_dup_key(pk1);
  116. r1->identity_pkey = crypto_pk_dup_key(pk2);
  117. r1->bandwidthrate = 1000;
  118. r1->bandwidthburst = 5000;
  119. r1->bandwidthcapacity = 10000;
  120. r1->exit_policy = NULL;
  121. r1->nickname = tor_strdup("Magri");
  122. r1->platform = tor_strdup(platform);
  123. ex1 = tor_malloc_zero(sizeof(addr_policy_t));
  124. ex2 = tor_malloc_zero(sizeof(addr_policy_t));
  125. ex1->policy_type = ADDR_POLICY_ACCEPT;
  126. tor_addr_from_ipv4h(&ex1->addr, 0);
  127. ex1->maskbits = 0;
  128. ex1->prt_min = ex1->prt_max = 80;
  129. ex2->policy_type = ADDR_POLICY_REJECT;
  130. tor_addr_from_ipv4h(&ex2->addr, 18<<24);
  131. ex2->maskbits = 8;
  132. ex2->prt_min = ex2->prt_max = 24;
  133. r2 = tor_malloc_zero(sizeof(routerinfo_t));
  134. r2->addr = 0x0a030201u; /* 10.3.2.1 */
  135. ed25519_keypair_t kp1, kp2;
  136. ed25519_secret_key_from_seed(&kp1.seckey,
  137. (const uint8_t*)"YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY");
  138. ed25519_public_key_generate(&kp1.pubkey, &kp1.seckey);
  139. ed25519_secret_key_from_seed(&kp2.seckey,
  140. (const uint8_t*)"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
  141. ed25519_public_key_generate(&kp2.pubkey, &kp2.seckey);
  142. r2->signing_key_cert = tor_cert_create(&kp1,
  143. CERT_TYPE_ID_SIGNING,
  144. &kp2.pubkey,
  145. now, 86400,
  146. CERT_FLAG_INCLUDE_SIGNING_KEY);
  147. char cert_buf[256];
  148. base64_encode(cert_buf, sizeof(cert_buf),
  149. (const char*)r2->signing_key_cert->encoded,
  150. r2->signing_key_cert->encoded_len,
  151. BASE64_ENCODE_MULTILINE);
  152. r2->platform = tor_strdup(platform);
  153. r2->cache_info.published_on = 5;
  154. r2->or_port = 9005;
  155. r2->dir_port = 0;
  156. r2->supports_tunnelled_dir_requests = 1;
  157. r2->onion_pkey = crypto_pk_dup_key(pk2);
  158. curve25519_keypair_t r2_onion_keypair;
  159. curve25519_keypair_generate(&r2_onion_keypair, 0);
  160. r2->onion_curve25519_pkey = tor_memdup(&r2_onion_keypair.pubkey,
  161. sizeof(curve25519_public_key_t));
  162. r2->identity_pkey = crypto_pk_dup_key(pk1);
  163. r2->bandwidthrate = r2->bandwidthburst = r2->bandwidthcapacity = 3000;
  164. r2->exit_policy = smartlist_new();
  165. smartlist_add(r2->exit_policy, ex1);
  166. smartlist_add(r2->exit_policy, ex2);
  167. r2->nickname = tor_strdup("Fred");
  168. tt_assert(!crypto_pk_write_public_key_to_string(pk1, &pk1_str,
  169. &pk1_str_len));
  170. tt_assert(!crypto_pk_write_public_key_to_string(pk2 , &pk2_str,
  171. &pk2_str_len));
  172. /* XXXX025 router_dump_to_string should really take this from ri.*/
  173. options->ContactInfo = tor_strdup("Magri White "
  174. "<magri@elsewhere.example.com>");
  175. buf = router_dump_router_to_string(r1, pk2, NULL, NULL, NULL);
  176. tor_free(options->ContactInfo);
  177. tt_assert(buf);
  178. strlcpy(buf2, "router Magri 192.168.0.1 9000 0 9003\n"
  179. "or-address [1:2:3:4::]:9999\n"
  180. "platform Tor "VERSION" on ", sizeof(buf2));
  181. strlcat(buf2, get_uname(), sizeof(buf2));
  182. strlcat(buf2, "\n"
  183. "protocols Link 1 2 Circuit 1\n"
  184. "published 1970-01-01 00:00:00\n"
  185. "fingerprint ", sizeof(buf2));
  186. tt_assert(!crypto_pk_get_fingerprint(pk2, fingerprint, 1));
  187. strlcat(buf2, fingerprint, sizeof(buf2));
  188. strlcat(buf2, "\nuptime 0\n"
  189. /* XXX the "0" above is hard-coded, but even if we made it reflect
  190. * uptime, that still wouldn't make it right, because the two
  191. * descriptors might be made on different seconds... hm. */
  192. "bandwidth 1000 5000 10000\n"
  193. "onion-key\n", sizeof(buf2));
  194. strlcat(buf2, pk1_str, sizeof(buf2));
  195. strlcat(buf2, "signing-key\n", sizeof(buf2));
  196. strlcat(buf2, pk2_str, sizeof(buf2));
  197. strlcat(buf2, "hidden-service-dir\n", sizeof(buf2));
  198. strlcat(buf2, "contact Magri White <magri@elsewhere.example.com>\n",
  199. sizeof(buf2));
  200. strlcat(buf2, "reject *:*\n", sizeof(buf2));
  201. strlcat(buf2, "tunnelled-dir-server\nrouter-signature\n", sizeof(buf2));
  202. buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same
  203. * twice */
  204. tt_str_op(buf,OP_EQ, buf2);
  205. tor_free(buf);
  206. buf = router_dump_router_to_string(r1, pk2, NULL, NULL, NULL);
  207. tt_assert(buf);
  208. cp = buf;
  209. rp1 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL,NULL);
  210. tt_assert(rp1);
  211. tt_int_op(rp1->addr,OP_EQ, r1->addr);
  212. tt_int_op(rp1->or_port,OP_EQ, r1->or_port);
  213. tt_int_op(rp1->dir_port,OP_EQ, r1->dir_port);
  214. tt_int_op(rp1->bandwidthrate,OP_EQ, r1->bandwidthrate);
  215. tt_int_op(rp1->bandwidthburst,OP_EQ, r1->bandwidthburst);
  216. tt_int_op(rp1->bandwidthcapacity,OP_EQ, r1->bandwidthcapacity);
  217. tt_assert(crypto_pk_cmp_keys(rp1->onion_pkey, pk1) == 0);
  218. tt_assert(crypto_pk_cmp_keys(rp1->identity_pkey, pk2) == 0);
  219. tt_assert(rp1->supports_tunnelled_dir_requests);
  220. //tt_assert(rp1->exit_policy == NULL);
  221. tor_free(buf);
  222. strlcpy(buf2,
  223. "router Fred 10.3.2.1 9005 0 0\n"
  224. "identity-ed25519\n"
  225. "-----BEGIN ED25519 CERT-----\n", sizeof(buf2));
  226. strlcat(buf2, cert_buf, sizeof(buf2));
  227. strlcat(buf2, "-----END ED25519 CERT-----\n", sizeof(buf2));
  228. strlcat(buf2, "master-key-ed25519 ", sizeof(buf2));
  229. {
  230. char k[ED25519_BASE64_LEN+1];
  231. tt_assert(ed25519_public_to_base64(k, &r2->signing_key_cert->signing_key)
  232. >= 0);
  233. strlcat(buf2, k, sizeof(buf2));
  234. strlcat(buf2, "\n", sizeof(buf2));
  235. }
  236. strlcat(buf2, "platform Tor "VERSION" on ", sizeof(buf2));
  237. strlcat(buf2, get_uname(), sizeof(buf2));
  238. strlcat(buf2, "\n"
  239. "protocols Link 1 2 Circuit 1\n"
  240. "published 1970-01-01 00:00:05\n"
  241. "fingerprint ", sizeof(buf2));
  242. tt_assert(!crypto_pk_get_fingerprint(pk1, fingerprint, 1));
  243. strlcat(buf2, fingerprint, sizeof(buf2));
  244. strlcat(buf2, "\nuptime 0\n"
  245. "bandwidth 3000 3000 3000\n", sizeof(buf2));
  246. strlcat(buf2, "onion-key\n", sizeof(buf2));
  247. strlcat(buf2, pk2_str, sizeof(buf2));
  248. strlcat(buf2, "signing-key\n", sizeof(buf2));
  249. strlcat(buf2, pk1_str, sizeof(buf2));
  250. int rsa_cc_len;
  251. rsa_cc = make_tap_onion_key_crosscert(pk2,
  252. &kp1.pubkey,
  253. pk1,
  254. &rsa_cc_len);
  255. tt_assert(rsa_cc);
  256. base64_encode(cert_buf, sizeof(cert_buf), (char*)rsa_cc, rsa_cc_len,
  257. BASE64_ENCODE_MULTILINE);
  258. strlcat(buf2, "onion-key-crosscert\n"
  259. "-----BEGIN CROSSCERT-----\n", sizeof(buf2));
  260. strlcat(buf2, cert_buf, sizeof(buf2));
  261. strlcat(buf2, "-----END CROSSCERT-----\n", sizeof(buf2));
  262. int ntor_cc_sign;
  263. {
  264. tor_cert_t *ntor_cc = NULL;
  265. ntor_cc = make_ntor_onion_key_crosscert(&r2_onion_keypair,
  266. &kp1.pubkey,
  267. r2->cache_info.published_on,
  268. MIN_ONION_KEY_LIFETIME,
  269. &ntor_cc_sign);
  270. tt_assert(ntor_cc);
  271. base64_encode(cert_buf, sizeof(cert_buf),
  272. (char*)ntor_cc->encoded, ntor_cc->encoded_len,
  273. BASE64_ENCODE_MULTILINE);
  274. tor_cert_free(ntor_cc);
  275. }
  276. tor_snprintf(buf2+strlen(buf2), sizeof(buf2)-strlen(buf2),
  277. "ntor-onion-key-crosscert %d\n"
  278. "-----BEGIN ED25519 CERT-----\n"
  279. "%s"
  280. "-----END ED25519 CERT-----\n", ntor_cc_sign, cert_buf);
  281. strlcat(buf2, "hidden-service-dir\n", sizeof(buf2));
  282. strlcat(buf2, "ntor-onion-key ", sizeof(buf2));
  283. base64_encode(cert_buf, sizeof(cert_buf),
  284. (const char*)r2_onion_keypair.pubkey.public_key, 32,
  285. BASE64_ENCODE_MULTILINE);
  286. strlcat(buf2, cert_buf, sizeof(buf2));
  287. strlcat(buf2, "accept *:80\nreject 18.0.0.0/8:24\n", sizeof(buf2));
  288. strlcat(buf2, "tunnelled-dir-server\n", sizeof(buf2));
  289. strlcat(buf2, "router-sig-ed25519 ", sizeof(buf2));
  290. buf = router_dump_router_to_string(r2, pk1, pk2, &r2_onion_keypair, &kp2);
  291. tt_assert(buf);
  292. buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same
  293. * twice */
  294. tt_str_op(buf, OP_EQ, buf2);
  295. tor_free(buf);
  296. buf = router_dump_router_to_string(r2, pk1, NULL, NULL, NULL);
  297. /* Reset for later */
  298. cp = buf;
  299. rp2 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL,NULL);
  300. tt_assert(rp2);
  301. tt_int_op(rp2->addr,OP_EQ, r2->addr);
  302. tt_int_op(rp2->or_port,OP_EQ, r2->or_port);
  303. tt_int_op(rp2->dir_port,OP_EQ, r2->dir_port);
  304. tt_int_op(rp2->bandwidthrate,OP_EQ, r2->bandwidthrate);
  305. tt_int_op(rp2->bandwidthburst,OP_EQ, r2->bandwidthburst);
  306. tt_int_op(rp2->bandwidthcapacity,OP_EQ, r2->bandwidthcapacity);
  307. tt_mem_op(rp2->onion_curve25519_pkey->public_key,OP_EQ,
  308. r2->onion_curve25519_pkey->public_key,
  309. CURVE25519_PUBKEY_LEN);
  310. tt_assert(crypto_pk_cmp_keys(rp2->onion_pkey, pk2) == 0);
  311. tt_assert(crypto_pk_cmp_keys(rp2->identity_pkey, pk1) == 0);
  312. tt_assert(rp2->supports_tunnelled_dir_requests);
  313. tt_int_op(smartlist_len(rp2->exit_policy),OP_EQ, 2);
  314. p = smartlist_get(rp2->exit_policy, 0);
  315. tt_int_op(p->policy_type,OP_EQ, ADDR_POLICY_ACCEPT);
  316. tt_assert(tor_addr_is_null(&p->addr));
  317. tt_int_op(p->maskbits,OP_EQ, 0);
  318. tt_int_op(p->prt_min,OP_EQ, 80);
  319. tt_int_op(p->prt_max,OP_EQ, 80);
  320. p = smartlist_get(rp2->exit_policy, 1);
  321. tt_int_op(p->policy_type,OP_EQ, ADDR_POLICY_REJECT);
  322. tt_assert(tor_addr_eq(&p->addr, &ex2->addr));
  323. tt_int_op(p->maskbits,OP_EQ, 8);
  324. tt_int_op(p->prt_min,OP_EQ, 24);
  325. tt_int_op(p->prt_max,OP_EQ, 24);
  326. #if 0
  327. /* Okay, now for the directories. */
  328. {
  329. fingerprint_list = smartlist_new();
  330. crypto_pk_get_fingerprint(pk2, buf, 1);
  331. add_fingerprint_to_dir(buf, fingerprint_list, 0);
  332. crypto_pk_get_fingerprint(pk1, buf, 1);
  333. add_fingerprint_to_dir(buf, fingerprint_list, 0);
  334. }
  335. #endif
  336. dirserv_free_fingerprint_list();
  337. done:
  338. if (r1)
  339. routerinfo_free(r1);
  340. if (r2)
  341. routerinfo_free(r2);
  342. if (rp2)
  343. routerinfo_free(rp2);
  344. tor_free(rsa_cc);
  345. tor_free(buf);
  346. tor_free(pk1_str);
  347. tor_free(pk2_str);
  348. if (pk1) crypto_pk_free(pk1);
  349. if (pk2) crypto_pk_free(pk2);
  350. if (rp1) routerinfo_free(rp1);
  351. tor_free(dir1); /* XXXX And more !*/
  352. tor_free(dir2); /* And more !*/
  353. }
  354. #include "failing_routerdescs.inc"
  355. static void
  356. test_dir_routerinfo_parsing(void *arg)
  357. {
  358. (void) arg;
  359. int again;
  360. routerinfo_t *ri = NULL;
  361. #define CHECK_OK(s) \
  362. do { \
  363. routerinfo_free(ri); \
  364. ri = router_parse_entry_from_string((s), NULL, 0, 0, NULL, NULL); \
  365. tt_assert(ri); \
  366. } while (0)
  367. #define CHECK_FAIL(s, againval) \
  368. do { \
  369. routerinfo_free(ri); \
  370. again = 999; \
  371. ri = router_parse_entry_from_string((s), NULL, 0, 0, NULL, &again); \
  372. tt_assert(ri == NULL); \
  373. tt_int_op(again, OP_EQ, (againval)); \
  374. } while (0)
  375. CHECK_OK(EX_RI_MINIMAL);
  376. CHECK_OK(EX_RI_MAXIMAL);
  377. CHECK_OK(EX_RI_MINIMAL_ED);
  378. /* good annotations prepended */
  379. routerinfo_free(ri);
  380. ri = router_parse_entry_from_string(EX_RI_MINIMAL, NULL, 0, 0,
  381. "@purpose bridge\n", NULL);
  382. tt_assert(ri != NULL);
  383. tt_assert(ri->purpose == ROUTER_PURPOSE_BRIDGE);
  384. routerinfo_free(ri);
  385. /* bad annotations prepended. */
  386. ri = router_parse_entry_from_string(EX_RI_MINIMAL,
  387. NULL, 0, 0, "@purpose\n", NULL);
  388. tt_assert(ri == NULL);
  389. /* bad annotations on router. */
  390. ri = router_parse_entry_from_string("@purpose\nrouter x\n", NULL, 0, 1,
  391. NULL, NULL);
  392. tt_assert(ri == NULL);
  393. /* unwanted annotations on router. */
  394. ri = router_parse_entry_from_string("@purpose foo\nrouter x\n", NULL, 0, 0,
  395. NULL, NULL);
  396. tt_assert(ri == NULL);
  397. /* No signature. */
  398. ri = router_parse_entry_from_string("router x\n", NULL, 0, 0,
  399. NULL, NULL);
  400. tt_assert(ri == NULL);
  401. /* Not a router */
  402. routerinfo_free(ri);
  403. ri = router_parse_entry_from_string("hello\n", NULL, 0, 0, NULL, NULL);
  404. tt_assert(ri == NULL);
  405. CHECK_FAIL(EX_RI_BAD_SIG1, 1);
  406. CHECK_FAIL(EX_RI_BAD_SIG2, 1);
  407. CHECK_FAIL(EX_RI_BAD_TOKENS, 0);
  408. CHECK_FAIL(EX_RI_BAD_PUBLISHED, 0);
  409. CHECK_FAIL(EX_RI_NEG_BANDWIDTH, 0);
  410. CHECK_FAIL(EX_RI_BAD_BANDWIDTH, 0);
  411. CHECK_FAIL(EX_RI_BAD_BANDWIDTH2, 0);
  412. CHECK_FAIL(EX_RI_BAD_ONIONKEY1, 0);
  413. CHECK_FAIL(EX_RI_BAD_ONIONKEY2, 0);
  414. CHECK_FAIL(EX_RI_BAD_PORTS, 0);
  415. CHECK_FAIL(EX_RI_BAD_IP, 0);
  416. CHECK_FAIL(EX_RI_BAD_DIRPORT, 0);
  417. CHECK_FAIL(EX_RI_BAD_NAME2, 0);
  418. CHECK_FAIL(EX_RI_BAD_UPTIME, 0);
  419. CHECK_FAIL(EX_RI_BAD_BANDWIDTH3, 0);
  420. CHECK_FAIL(EX_RI_BAD_NTOR_KEY, 0);
  421. CHECK_FAIL(EX_RI_BAD_FINGERPRINT, 0);
  422. CHECK_FAIL(EX_RI_MISMATCHED_FINGERPRINT, 0);
  423. CHECK_FAIL(EX_RI_BAD_HAS_ACCEPT6, 0);
  424. CHECK_FAIL(EX_RI_BAD_NO_EXIT_POLICY, 0);
  425. CHECK_FAIL(EX_RI_BAD_IPV6_EXIT_POLICY, 0);
  426. CHECK_FAIL(EX_RI_BAD_FAMILY, 0);
  427. CHECK_FAIL(EX_RI_ZERO_ORPORT, 0);
  428. CHECK_FAIL(EX_RI_ED_MISSING_CROSSCERT, 0);
  429. CHECK_FAIL(EX_RI_ED_MISSING_CROSSCERT2, 0);
  430. CHECK_FAIL(EX_RI_ED_MISSING_CROSSCERT_SIGN, 0);
  431. CHECK_FAIL(EX_RI_ED_BAD_SIG1, 0);
  432. CHECK_FAIL(EX_RI_ED_BAD_SIG2, 0);
  433. CHECK_FAIL(EX_RI_ED_BAD_SIG3, 0);
  434. CHECK_FAIL(EX_RI_ED_BAD_SIG4, 0);
  435. CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT1, 0);
  436. CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT3, 0);
  437. CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT4, 0);
  438. CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT5, 0);
  439. CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT6, 0);
  440. CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT7, 0);
  441. CHECK_FAIL(EX_RI_ED_MISPLACED1, 0);
  442. CHECK_FAIL(EX_RI_ED_MISPLACED2, 0);
  443. CHECK_FAIL(EX_RI_ED_BAD_CERT1, 0);
  444. CHECK_FAIL(EX_RI_ED_BAD_CERT2, 0);
  445. CHECK_FAIL(EX_RI_ED_BAD_CERT3, 0);
  446. /* This is allowed; we just ignore it. */
  447. CHECK_OK(EX_RI_BAD_EI_DIGEST);
  448. CHECK_OK(EX_RI_BAD_EI_DIGEST2);
  449. #undef CHECK_FAIL
  450. #undef CHECK_OK
  451. done:
  452. memarea_clear_freelist();
  453. routerinfo_free(ri);
  454. }
  455. #include "example_extrainfo.inc"
  456. static void
  457. routerinfo_free_wrapper_(void *arg)
  458. {
  459. routerinfo_free(arg);
  460. }
  461. static void
  462. test_dir_extrainfo_parsing(void *arg)
  463. {
  464. (void) arg;
  465. #define CHECK_OK(s) \
  466. do { \
  467. extrainfo_free(ei); \
  468. ei = extrainfo_parse_entry_from_string((s), NULL, 0, map, NULL); \
  469. tt_assert(ei); \
  470. } while (0)
  471. #define CHECK_FAIL(s, againval) \
  472. do { \
  473. extrainfo_free(ei); \
  474. again = 999; \
  475. ei = extrainfo_parse_entry_from_string((s), NULL, 0, map, &again); \
  476. tt_assert(ei == NULL); \
  477. tt_int_op(again, OP_EQ, (againval)); \
  478. } while (0)
  479. #define ADD(name) \
  480. do { \
  481. ri = tor_malloc_zero(sizeof(routerinfo_t)); \
  482. crypto_pk_t *pk = ri->identity_pkey = crypto_pk_new(); \
  483. tt_assert(! crypto_pk_read_public_key_from_string(pk, \
  484. name##_KEY, strlen(name##_KEY))); \
  485. tt_int_op(0,OP_EQ,base16_decode(d, 20, name##_FP, strlen(name##_FP))); \
  486. digestmap_set((digestmap_t*)map, d, ri); \
  487. ri = NULL; \
  488. } while (0)
  489. routerinfo_t *ri = NULL;
  490. char d[20];
  491. struct digest_ri_map_t *map = NULL;
  492. extrainfo_t *ei = NULL;
  493. int again;
  494. CHECK_OK(EX_EI_MINIMAL);
  495. tt_assert(ei->pending_sig);
  496. CHECK_OK(EX_EI_MAXIMAL);
  497. tt_assert(ei->pending_sig);
  498. CHECK_OK(EX_EI_GOOD_ED_EI);
  499. tt_assert(ei->pending_sig);
  500. map = (struct digest_ri_map_t *)digestmap_new();
  501. ADD(EX_EI_MINIMAL);
  502. ADD(EX_EI_MAXIMAL);
  503. ADD(EX_EI_GOOD_ED_EI);
  504. ADD(EX_EI_BAD_FP);
  505. ADD(EX_EI_BAD_NICKNAME);
  506. ADD(EX_EI_BAD_TOKENS);
  507. ADD(EX_EI_BAD_START);
  508. ADD(EX_EI_BAD_PUBLISHED);
  509. ADD(EX_EI_ED_MISSING_SIG);
  510. ADD(EX_EI_ED_MISSING_CERT);
  511. ADD(EX_EI_ED_BAD_CERT1);
  512. ADD(EX_EI_ED_BAD_CERT2);
  513. ADD(EX_EI_ED_BAD_SIG1);
  514. ADD(EX_EI_ED_BAD_SIG2);
  515. ADD(EX_EI_ED_MISPLACED_CERT);
  516. ADD(EX_EI_ED_MISPLACED_SIG);
  517. CHECK_OK(EX_EI_MINIMAL);
  518. tt_assert(!ei->pending_sig);
  519. CHECK_OK(EX_EI_MAXIMAL);
  520. tt_assert(!ei->pending_sig);
  521. CHECK_OK(EX_EI_GOOD_ED_EI);
  522. tt_assert(!ei->pending_sig);
  523. CHECK_FAIL(EX_EI_BAD_SIG1,1);
  524. CHECK_FAIL(EX_EI_BAD_SIG2,1);
  525. CHECK_FAIL(EX_EI_BAD_SIG3,1);
  526. CHECK_FAIL(EX_EI_BAD_FP,0);
  527. CHECK_FAIL(EX_EI_BAD_NICKNAME,0);
  528. CHECK_FAIL(EX_EI_BAD_TOKENS,0);
  529. CHECK_FAIL(EX_EI_BAD_START,0);
  530. CHECK_FAIL(EX_EI_BAD_PUBLISHED,0);
  531. CHECK_FAIL(EX_EI_ED_MISSING_SIG,0);
  532. CHECK_FAIL(EX_EI_ED_MISSING_CERT,0);
  533. CHECK_FAIL(EX_EI_ED_BAD_CERT1,0);
  534. CHECK_FAIL(EX_EI_ED_BAD_CERT2,0);
  535. CHECK_FAIL(EX_EI_ED_BAD_SIG1,0);
  536. CHECK_FAIL(EX_EI_ED_BAD_SIG2,0);
  537. CHECK_FAIL(EX_EI_ED_MISPLACED_CERT,0);
  538. CHECK_FAIL(EX_EI_ED_MISPLACED_SIG,0);
  539. #undef CHECK_OK
  540. #undef CHECK_FAIL
  541. done:
  542. escaped(NULL);
  543. memarea_clear_freelist();
  544. extrainfo_free(ei);
  545. routerinfo_free(ri);
  546. digestmap_free((digestmap_t*)map, routerinfo_free_wrapper_);
  547. }
  548. static void
  549. test_dir_parse_router_list(void *arg)
  550. {
  551. (void) arg;
  552. smartlist_t *invalid = smartlist_new();
  553. smartlist_t *dest = smartlist_new();
  554. smartlist_t *chunks = smartlist_new();
  555. int dest_has_ri = 1;
  556. char *list = NULL;
  557. const char *cp;
  558. digestmap_t *map = NULL;
  559. char *mem_op_hex_tmp = NULL;
  560. routerinfo_t *ri = NULL;
  561. char d[DIGEST_LEN];
  562. smartlist_add(chunks, tor_strdup(EX_RI_MINIMAL)); // ri 0
  563. smartlist_add(chunks, tor_strdup(EX_RI_BAD_PORTS)); // bad ri 0
  564. smartlist_add(chunks, tor_strdup(EX_EI_MAXIMAL)); // ei 0
  565. smartlist_add(chunks, tor_strdup(EX_EI_BAD_SIG2)); // bad ei --
  566. smartlist_add(chunks, tor_strdup(EX_EI_BAD_NICKNAME));// bad ei 0
  567. smartlist_add(chunks, tor_strdup(EX_RI_BAD_SIG1)); // bad ri --
  568. smartlist_add(chunks, tor_strdup(EX_EI_BAD_PUBLISHED)); // bad ei 1
  569. smartlist_add(chunks, tor_strdup(EX_RI_MAXIMAL)); // ri 1
  570. smartlist_add(chunks, tor_strdup(EX_RI_BAD_FAMILY)); // bad ri 1
  571. smartlist_add(chunks, tor_strdup(EX_EI_MINIMAL)); // ei 1
  572. list = smartlist_join_strings(chunks, "", 0, NULL);
  573. /* First, parse the routers. */
  574. cp = list;
  575. tt_int_op(0,OP_EQ,
  576. router_parse_list_from_string(&cp, NULL, dest, SAVED_NOWHERE,
  577. 0, 0, NULL, invalid));
  578. tt_int_op(2, OP_EQ, smartlist_len(dest));
  579. tt_ptr_op(cp, OP_EQ, list + strlen(list));
  580. routerinfo_t *r = smartlist_get(dest, 0);
  581. tt_mem_op(r->cache_info.signed_descriptor_body, OP_EQ,
  582. EX_RI_MINIMAL, strlen(EX_RI_MINIMAL));
  583. r = smartlist_get(dest, 1);
  584. tt_mem_op(r->cache_info.signed_descriptor_body, OP_EQ,
  585. EX_RI_MAXIMAL, strlen(EX_RI_MAXIMAL));
  586. tt_int_op(2, OP_EQ, smartlist_len(invalid));
  587. test_memeq_hex(smartlist_get(invalid, 0),
  588. "ab9eeaa95e7d45740185b4e519c76ead756277a9");
  589. test_memeq_hex(smartlist_get(invalid, 1),
  590. "9a651ee03b64325959e8f1b46f2b689b30750b4c");
  591. /* Now tidy up */
  592. SMARTLIST_FOREACH(dest, routerinfo_t *, ri, routerinfo_free(ri));
  593. SMARTLIST_FOREACH(invalid, uint8_t *, d, tor_free(d));
  594. smartlist_clear(dest);
  595. smartlist_clear(invalid);
  596. /* And check extrainfos. */
  597. dest_has_ri = 0;
  598. map = (digestmap_t*)router_get_routerlist()->identity_map;
  599. ADD(EX_EI_MINIMAL);
  600. ADD(EX_EI_MAXIMAL);
  601. ADD(EX_EI_BAD_NICKNAME);
  602. ADD(EX_EI_BAD_PUBLISHED);
  603. cp = list;
  604. tt_int_op(0,OP_EQ,
  605. router_parse_list_from_string(&cp, NULL, dest, SAVED_NOWHERE,
  606. 1, 0, NULL, invalid));
  607. tt_int_op(2, OP_EQ, smartlist_len(dest));
  608. extrainfo_t *e = smartlist_get(dest, 0);
  609. tt_mem_op(e->cache_info.signed_descriptor_body, OP_EQ,
  610. EX_EI_MAXIMAL, strlen(EX_EI_MAXIMAL));
  611. e = smartlist_get(dest, 1);
  612. tt_mem_op(e->cache_info.signed_descriptor_body, OP_EQ,
  613. EX_EI_MINIMAL, strlen(EX_EI_MINIMAL));
  614. tt_int_op(2, OP_EQ, smartlist_len(invalid));
  615. test_memeq_hex(smartlist_get(invalid, 0),
  616. "d5df4aa62ee9ffc9543d41150c9864908e0390af");
  617. test_memeq_hex(smartlist_get(invalid, 1),
  618. "f61efd2a7f4531f3687a9043e0de90a862ec64ba");
  619. done:
  620. tor_free(list);
  621. if (dest_has_ri)
  622. SMARTLIST_FOREACH(dest, routerinfo_t *, rt, routerinfo_free(rt));
  623. else
  624. SMARTLIST_FOREACH(dest, extrainfo_t *, ei, extrainfo_free(ei));
  625. smartlist_free(dest);
  626. SMARTLIST_FOREACH(invalid, uint8_t *, d, tor_free(d));
  627. smartlist_free(invalid);
  628. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  629. smartlist_free(chunks);
  630. routerinfo_free(ri);
  631. if (map) {
  632. digestmap_free((digestmap_t*)map, routerinfo_free_wrapper_);
  633. router_get_routerlist()->identity_map =
  634. (struct digest_ri_map_t*)digestmap_new();
  635. }
  636. tor_free(mem_op_hex_tmp);
  637. #undef ADD
  638. }
  639. static download_status_t dls_minimal;
  640. static download_status_t dls_maximal;
  641. static download_status_t dls_bad_fingerprint;
  642. static download_status_t dls_bad_sig2;
  643. static download_status_t dls_bad_ports;
  644. static download_status_t dls_bad_tokens;
  645. static int mock_router_get_dl_status_unrecognized = 0;
  646. static int mock_router_get_dl_status_calls = 0;
  647. static download_status_t *
  648. mock_router_get_dl_status(const char *d)
  649. {
  650. ++mock_router_get_dl_status_calls;
  651. char hex[HEX_DIGEST_LEN+1];
  652. base16_encode(hex, sizeof(hex), d, DIGEST_LEN);
  653. if (!strcmp(hex, "3E31D19A69EB719C00B02EC60D13356E3F7A3452")) {
  654. return &dls_minimal;
  655. } else if (!strcmp(hex, "581D8A368A0FA854ECDBFAB841D88B3F1B004038")) {
  656. return &dls_maximal;
  657. } else if (!strcmp(hex, "2578AE227C6116CDE29B3F0E95709B9872DEE5F1")) {
  658. return &dls_bad_fingerprint;
  659. } else if (!strcmp(hex, "16D387D3A58F7DB3CF46638F8D0B90C45C7D769C")) {
  660. return &dls_bad_sig2;
  661. } else if (!strcmp(hex, "AB9EEAA95E7D45740185B4E519C76EAD756277A9")) {
  662. return &dls_bad_ports;
  663. } else if (!strcmp(hex, "A0CC2CEFAD59DBF19F468BFEE60E0868C804B422")) {
  664. return &dls_bad_tokens;
  665. } else {
  666. ++mock_router_get_dl_status_unrecognized;
  667. return NULL;
  668. }
  669. }
  670. static void
  671. test_dir_load_routers(void *arg)
  672. {
  673. (void) arg;
  674. smartlist_t *chunks = smartlist_new();
  675. smartlist_t *wanted = smartlist_new();
  676. char buf[DIGEST_LEN];
  677. char *mem_op_hex_tmp = NULL;
  678. char *list = NULL;
  679. #define ADD(str) \
  680. do { \
  681. tt_int_op(0,OP_EQ,router_get_router_hash(str, strlen(str), buf)); \
  682. smartlist_add(wanted, tor_strdup(hex_str(buf, DIGEST_LEN))); \
  683. } while (0)
  684. MOCK(router_get_dl_status_by_descriptor_digest, mock_router_get_dl_status);
  685. update_approx_time(1412510400);
  686. smartlist_add(chunks, tor_strdup(EX_RI_MINIMAL));
  687. smartlist_add(chunks, tor_strdup(EX_RI_BAD_FINGERPRINT));
  688. smartlist_add(chunks, tor_strdup(EX_RI_BAD_SIG2));
  689. smartlist_add(chunks, tor_strdup(EX_RI_MAXIMAL));
  690. smartlist_add(chunks, tor_strdup(EX_RI_BAD_PORTS));
  691. smartlist_add(chunks, tor_strdup(EX_RI_BAD_TOKENS));
  692. /* not ADDing MINIMIAL */
  693. ADD(EX_RI_MAXIMAL);
  694. ADD(EX_RI_BAD_FINGERPRINT);
  695. ADD(EX_RI_BAD_SIG2);
  696. /* Not ADDing BAD_PORTS */
  697. ADD(EX_RI_BAD_TOKENS);
  698. list = smartlist_join_strings(chunks, "", 0, NULL);
  699. tt_int_op(1, OP_EQ,
  700. router_load_routers_from_string(list, NULL, SAVED_IN_JOURNAL,
  701. wanted, 1, NULL));
  702. /* The "maximal" router was added. */
  703. /* "minimal" was not. */
  704. tt_int_op(smartlist_len(router_get_routerlist()->routers),OP_EQ,1);
  705. routerinfo_t *r = smartlist_get(router_get_routerlist()->routers, 0);
  706. test_memeq_hex(r->cache_info.signed_descriptor_digest,
  707. "581D8A368A0FA854ECDBFAB841D88B3F1B004038");
  708. tt_int_op(dls_minimal.n_download_failures, OP_EQ, 0);
  709. tt_int_op(dls_maximal.n_download_failures, OP_EQ, 0);
  710. /* "Bad fingerprint" and "Bad tokens" should have gotten marked
  711. * non-retriable. */
  712. tt_want_int_op(mock_router_get_dl_status_calls, OP_EQ, 2);
  713. tt_want_int_op(mock_router_get_dl_status_unrecognized, OP_EQ, 0);
  714. tt_int_op(dls_bad_fingerprint.n_download_failures, OP_EQ, 255);
  715. tt_int_op(dls_bad_tokens.n_download_failures, OP_EQ, 255);
  716. /* bad_sig2 and bad ports" are retriable -- one since only the signature
  717. * was bad, and one because we didn't ask for it. */
  718. tt_int_op(dls_bad_sig2.n_download_failures, OP_EQ, 0);
  719. tt_int_op(dls_bad_ports.n_download_failures, OP_EQ, 0);
  720. /* Wanted still contains "BAD_SIG2" */
  721. tt_int_op(smartlist_len(wanted), OP_EQ, 1);
  722. tt_str_op(smartlist_get(wanted, 0), OP_EQ,
  723. "E0A3753CEFD54128EAB239F294954121DB23D2EF");
  724. #undef ADD
  725. done:
  726. tor_free(mem_op_hex_tmp);
  727. UNMOCK(router_get_dl_status_by_descriptor_digest);
  728. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  729. smartlist_free(chunks);
  730. SMARTLIST_FOREACH(wanted, char *, cp, tor_free(cp));
  731. smartlist_free(wanted);
  732. tor_free(list);
  733. }
  734. static int mock_get_by_ei_dd_calls = 0;
  735. static int mock_get_by_ei_dd_unrecognized = 0;
  736. static signed_descriptor_t sd_ei_minimal;
  737. static signed_descriptor_t sd_ei_bad_nickname;
  738. static signed_descriptor_t sd_ei_maximal;
  739. static signed_descriptor_t sd_ei_bad_tokens;
  740. static signed_descriptor_t sd_ei_bad_sig2;
  741. static signed_descriptor_t *
  742. mock_get_by_ei_desc_digest(const char *d)
  743. {
  744. ++mock_get_by_ei_dd_calls;
  745. char hex[HEX_DIGEST_LEN+1];
  746. base16_encode(hex, sizeof(hex), d, DIGEST_LEN);
  747. if (!strcmp(hex, "11E0EDF526950739F7769810FCACAB8C882FAEEE")) {
  748. return &sd_ei_minimal;
  749. } else if (!strcmp(hex, "47803B02A0E70E9E8BDA226CB1D74DE354D67DFF")) {
  750. return &sd_ei_maximal;
  751. } else if (!strcmp(hex, "D5DF4AA62EE9FFC9543D41150C9864908E0390AF")) {
  752. return &sd_ei_bad_nickname;
  753. } else if (!strcmp(hex, "16D387D3A58F7DB3CF46638F8D0B90C45C7D769C")) {
  754. return &sd_ei_bad_sig2;
  755. } else if (!strcmp(hex, "9D90F8C42955BBC57D54FB05E54A3F083AF42E8B")) {
  756. return &sd_ei_bad_tokens;
  757. } else {
  758. ++mock_get_by_ei_dd_unrecognized;
  759. return NULL;
  760. }
  761. }
  762. static smartlist_t *mock_ei_insert_list = NULL;
  763. static was_router_added_t
  764. mock_ei_insert(routerlist_t *rl, extrainfo_t *ei, int warn_if_incompatible)
  765. {
  766. (void) rl;
  767. (void) warn_if_incompatible;
  768. smartlist_add(mock_ei_insert_list, ei);
  769. return ROUTER_ADDED_SUCCESSFULLY;
  770. }
  771. static void
  772. test_dir_load_extrainfo(void *arg)
  773. {
  774. (void) arg;
  775. smartlist_t *chunks = smartlist_new();
  776. smartlist_t *wanted = smartlist_new();
  777. char buf[DIGEST_LEN];
  778. char *mem_op_hex_tmp = NULL;
  779. char *list = NULL;
  780. #define ADD(str) \
  781. do { \
  782. tt_int_op(0,OP_EQ,router_get_extrainfo_hash(str, strlen(str), buf)); \
  783. smartlist_add(wanted, tor_strdup(hex_str(buf, DIGEST_LEN))); \
  784. } while (0)
  785. mock_ei_insert_list = smartlist_new();
  786. MOCK(router_get_by_extrainfo_digest, mock_get_by_ei_desc_digest);
  787. MOCK(extrainfo_insert, mock_ei_insert);
  788. smartlist_add(chunks, tor_strdup(EX_EI_MINIMAL));
  789. smartlist_add(chunks, tor_strdup(EX_EI_BAD_NICKNAME));
  790. smartlist_add(chunks, tor_strdup(EX_EI_MAXIMAL));
  791. smartlist_add(chunks, tor_strdup(EX_EI_BAD_PUBLISHED));
  792. smartlist_add(chunks, tor_strdup(EX_EI_BAD_TOKENS));
  793. /* not ADDing MINIMIAL */
  794. ADD(EX_EI_MAXIMAL);
  795. ADD(EX_EI_BAD_NICKNAME);
  796. /* Not ADDing BAD_PUBLISHED */
  797. ADD(EX_EI_BAD_TOKENS);
  798. ADD(EX_EI_BAD_SIG2);
  799. list = smartlist_join_strings(chunks, "", 0, NULL);
  800. router_load_extrainfo_from_string(list, NULL, SAVED_IN_JOURNAL, wanted, 1);
  801. /* The "maximal" router was added. */
  802. /* "minimal" was also added, even though we didn't ask for it, since
  803. * that's what we do with extrainfos. */
  804. tt_int_op(smartlist_len(mock_ei_insert_list),OP_EQ,2);
  805. extrainfo_t *e = smartlist_get(mock_ei_insert_list, 0);
  806. test_memeq_hex(e->cache_info.signed_descriptor_digest,
  807. "11E0EDF526950739F7769810FCACAB8C882FAEEE");
  808. e = smartlist_get(mock_ei_insert_list, 1);
  809. test_memeq_hex(e->cache_info.signed_descriptor_digest,
  810. "47803B02A0E70E9E8BDA226CB1D74DE354D67DFF");
  811. tt_int_op(dls_minimal.n_download_failures, OP_EQ, 0);
  812. tt_int_op(dls_maximal.n_download_failures, OP_EQ, 0);
  813. /* "Bad nickname" and "Bad tokens" should have gotten marked
  814. * non-retriable. */
  815. tt_want_int_op(mock_get_by_ei_dd_calls, OP_EQ, 2);
  816. tt_want_int_op(mock_get_by_ei_dd_unrecognized, OP_EQ, 0);
  817. tt_int_op(sd_ei_bad_nickname.ei_dl_status.n_download_failures, OP_EQ, 255);
  818. tt_int_op(sd_ei_bad_tokens.ei_dl_status.n_download_failures, OP_EQ, 255);
  819. /* bad_ports is retriable -- because we didn't ask for it. */
  820. tt_int_op(dls_bad_ports.n_download_failures, OP_EQ, 0);
  821. /* Wanted still contains "BAD_SIG2" */
  822. tt_int_op(smartlist_len(wanted), OP_EQ, 1);
  823. tt_str_op(smartlist_get(wanted, 0), OP_EQ,
  824. "16D387D3A58F7DB3CF46638F8D0B90C45C7D769C");
  825. #undef ADD
  826. done:
  827. tor_free(mem_op_hex_tmp);
  828. UNMOCK(router_get_by_extrainfo_digest);
  829. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  830. smartlist_free(chunks);
  831. SMARTLIST_FOREACH(wanted, char *, cp, tor_free(cp));
  832. smartlist_free(wanted);
  833. tor_free(list);
  834. }
  835. static void
  836. test_dir_versions(void *arg)
  837. {
  838. tor_version_t ver1;
  839. /* Try out version parsing functionality */
  840. (void)arg;
  841. tt_int_op(0,OP_EQ, tor_version_parse("0.3.4pre2-cvs", &ver1));
  842. tt_int_op(0,OP_EQ, ver1.major);
  843. tt_int_op(3,OP_EQ, ver1.minor);
  844. tt_int_op(4,OP_EQ, ver1.micro);
  845. tt_int_op(VER_PRE,OP_EQ, ver1.status);
  846. tt_int_op(2,OP_EQ, ver1.patchlevel);
  847. tt_int_op(0,OP_EQ, tor_version_parse("0.3.4rc1", &ver1));
  848. tt_int_op(0,OP_EQ, ver1.major);
  849. tt_int_op(3,OP_EQ, ver1.minor);
  850. tt_int_op(4,OP_EQ, ver1.micro);
  851. tt_int_op(VER_RC,OP_EQ, ver1.status);
  852. tt_int_op(1,OP_EQ, ver1.patchlevel);
  853. tt_int_op(0,OP_EQ, tor_version_parse("1.3.4", &ver1));
  854. tt_int_op(1,OP_EQ, ver1.major);
  855. tt_int_op(3,OP_EQ, ver1.minor);
  856. tt_int_op(4,OP_EQ, ver1.micro);
  857. tt_int_op(VER_RELEASE,OP_EQ, ver1.status);
  858. tt_int_op(0,OP_EQ, ver1.patchlevel);
  859. tt_int_op(0,OP_EQ, tor_version_parse("1.3.4.999", &ver1));
  860. tt_int_op(1,OP_EQ, ver1.major);
  861. tt_int_op(3,OP_EQ, ver1.minor);
  862. tt_int_op(4,OP_EQ, ver1.micro);
  863. tt_int_op(VER_RELEASE,OP_EQ, ver1.status);
  864. tt_int_op(999,OP_EQ, ver1.patchlevel);
  865. tt_int_op(0,OP_EQ, tor_version_parse("0.1.2.4-alpha", &ver1));
  866. tt_int_op(0,OP_EQ, ver1.major);
  867. tt_int_op(1,OP_EQ, ver1.minor);
  868. tt_int_op(2,OP_EQ, ver1.micro);
  869. tt_int_op(4,OP_EQ, ver1.patchlevel);
  870. tt_int_op(VER_RELEASE,OP_EQ, ver1.status);
  871. tt_str_op("alpha",OP_EQ, ver1.status_tag);
  872. tt_int_op(0,OP_EQ, tor_version_parse("0.1.2.4", &ver1));
  873. tt_int_op(0,OP_EQ, ver1.major);
  874. tt_int_op(1,OP_EQ, ver1.minor);
  875. tt_int_op(2,OP_EQ, ver1.micro);
  876. tt_int_op(4,OP_EQ, ver1.patchlevel);
  877. tt_int_op(VER_RELEASE,OP_EQ, ver1.status);
  878. tt_str_op("",OP_EQ, ver1.status_tag);
  879. tt_int_op(0, OP_EQ, tor_version_parse("10.1", &ver1));
  880. tt_int_op(10, OP_EQ, ver1.major);
  881. tt_int_op(1, OP_EQ, ver1.minor);
  882. tt_int_op(0, OP_EQ, ver1.micro);
  883. tt_int_op(0, OP_EQ, ver1.patchlevel);
  884. tt_int_op(VER_RELEASE, OP_EQ, ver1.status);
  885. tt_str_op("", OP_EQ, ver1.status_tag);
  886. tt_int_op(0, OP_EQ, tor_version_parse("5.99.999", &ver1));
  887. tt_int_op(5, OP_EQ, ver1.major);
  888. tt_int_op(99, OP_EQ, ver1.minor);
  889. tt_int_op(999, OP_EQ, ver1.micro);
  890. tt_int_op(0, OP_EQ, ver1.patchlevel);
  891. tt_int_op(VER_RELEASE, OP_EQ, ver1.status);
  892. tt_str_op("", OP_EQ, ver1.status_tag);
  893. tt_int_op(0, OP_EQ, tor_version_parse("10.1-alpha", &ver1));
  894. tt_int_op(10, OP_EQ, ver1.major);
  895. tt_int_op(1, OP_EQ, ver1.minor);
  896. tt_int_op(0, OP_EQ, ver1.micro);
  897. tt_int_op(0, OP_EQ, ver1.patchlevel);
  898. tt_int_op(VER_RELEASE, OP_EQ, ver1.status);
  899. tt_str_op("alpha", OP_EQ, ver1.status_tag);
  900. tt_int_op(0, OP_EQ, tor_version_parse("2.1.700-alpha", &ver1));
  901. tt_int_op(2, OP_EQ, ver1.major);
  902. tt_int_op(1, OP_EQ, ver1.minor);
  903. tt_int_op(700, OP_EQ, ver1.micro);
  904. tt_int_op(0, OP_EQ, ver1.patchlevel);
  905. tt_int_op(VER_RELEASE, OP_EQ, ver1.status);
  906. tt_str_op("alpha", OP_EQ, ver1.status_tag);
  907. tt_int_op(0, OP_EQ, tor_version_parse("1.6.8-alpha-dev", &ver1));
  908. tt_int_op(1, OP_EQ, ver1.major);
  909. tt_int_op(6, OP_EQ, ver1.minor);
  910. tt_int_op(8, OP_EQ, ver1.micro);
  911. tt_int_op(0, OP_EQ, ver1.patchlevel);
  912. tt_int_op(VER_RELEASE, OP_EQ, ver1.status);
  913. tt_str_op("alpha-dev", OP_EQ, ver1.status_tag);
  914. #define tt_versionstatus_op(vs1, op, vs2) \
  915. tt_assert_test_type(vs1,vs2,#vs1" "#op" "#vs2,version_status_t, \
  916. (val1_ op val2_),"%d",TT_EXIT_TEST_FUNCTION)
  917. #define test_v_i_o(val, ver, lst) \
  918. tt_versionstatus_op(val, OP_EQ, tor_version_is_obsolete(ver, lst))
  919. /* make sure tor_version_is_obsolete() works */
  920. test_v_i_o(VS_OLD, "0.0.1", "Tor 0.0.2");
  921. test_v_i_o(VS_OLD, "0.0.1", "0.0.2, Tor 0.0.3");
  922. test_v_i_o(VS_OLD, "0.0.1", "0.0.2,Tor 0.0.3");
  923. test_v_i_o(VS_OLD, "0.0.1","0.0.3,BetterTor 0.0.1");
  924. test_v_i_o(VS_RECOMMENDED, "0.0.2", "Tor 0.0.2,Tor 0.0.3");
  925. test_v_i_o(VS_NEW_IN_SERIES, "0.0.2", "Tor 0.0.2pre1,Tor 0.0.3");
  926. test_v_i_o(VS_OLD, "0.0.2", "Tor 0.0.2.1,Tor 0.0.3");
  927. test_v_i_o(VS_NEW, "0.1.0", "Tor 0.0.2,Tor 0.0.3");
  928. test_v_i_o(VS_RECOMMENDED, "0.0.7rc2", "0.0.7,Tor 0.0.7rc2,Tor 0.0.8");
  929. test_v_i_o(VS_OLD, "0.0.5.0", "0.0.5.1-cvs");
  930. test_v_i_o(VS_NEW_IN_SERIES, "0.0.5.1-cvs", "0.0.5, 0.0.6");
  931. /* Not on list, but newer than any in same series. */
  932. test_v_i_o(VS_NEW_IN_SERIES, "0.1.0.3",
  933. "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  934. /* Series newer than any on list. */
  935. test_v_i_o(VS_NEW, "0.1.2.3", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  936. /* Series older than any on list. */
  937. test_v_i_o(VS_OLD, "0.0.1.3", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  938. /* Not on list, not newer than any on same series. */
  939. test_v_i_o(VS_UNRECOMMENDED, "0.1.0.1",
  940. "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  941. /* On list, not newer than any on same series. */
  942. test_v_i_o(VS_UNRECOMMENDED,
  943. "0.1.0.1", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  944. tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.0.5", "0.0.9pre1-cvs"));
  945. tt_int_op(1,OP_EQ, tor_version_as_new_as(
  946. "Tor 0.0.8 on Darwin 64-121-192-100.c3-0."
  947. "sfpo-ubr1.sfrn-sfpo.ca.cable.rcn.com Power Macintosh",
  948. "0.0.8rc2"));
  949. tt_int_op(0,OP_EQ, tor_version_as_new_as(
  950. "Tor 0.0.8 on Darwin 64-121-192-100.c3-0."
  951. "sfpo-ubr1.sfrn-sfpo.ca.cable.rcn.com Power Macintosh", "0.0.8.2"));
  952. /* Now try svn revisions. */
  953. tt_int_op(1,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r100)",
  954. "Tor 0.2.1.0-dev (r99)"));
  955. tt_int_op(1,OP_EQ, tor_version_as_new_as(
  956. "Tor 0.2.1.0-dev (r100) on Banana Jr",
  957. "Tor 0.2.1.0-dev (r99) on Hal 9000"));
  958. tt_int_op(1,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r100)",
  959. "Tor 0.2.1.0-dev on Colossus"));
  960. tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r99)",
  961. "Tor 0.2.1.0-dev (r100)"));
  962. tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r99) on MCP",
  963. "Tor 0.2.1.0-dev (r100) on AM"));
  964. tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev",
  965. "Tor 0.2.1.0-dev (r99)"));
  966. tt_int_op(1,OP_EQ, tor_version_as_new_as("Tor 0.2.1.1",
  967. "Tor 0.2.1.0-dev (r99)"));
  968. /* Now try git revisions */
  969. tt_int_op(0,OP_EQ, tor_version_parse("0.5.6.7 (git-ff00ff)", &ver1));
  970. tt_int_op(0,OP_EQ, ver1.major);
  971. tt_int_op(5,OP_EQ, ver1.minor);
  972. tt_int_op(6,OP_EQ, ver1.micro);
  973. tt_int_op(7,OP_EQ, ver1.patchlevel);
  974. tt_int_op(3,OP_EQ, ver1.git_tag_len);
  975. tt_mem_op(ver1.git_tag,OP_EQ, "\xff\x00\xff", 3);
  976. tt_int_op(-1,OP_EQ, tor_version_parse("0.5.6.7 (git-ff00xx)", &ver1));
  977. tt_int_op(-1,OP_EQ, tor_version_parse("0.5.6.7 (git-ff00fff)", &ver1));
  978. tt_int_op(0,OP_EQ, tor_version_parse("0.5.6.7 (git ff00fff)", &ver1));
  979. done:
  980. ;
  981. }
  982. /** Run unit tests for directory fp_pair functions. */
  983. static void
  984. test_dir_fp_pairs(void *arg)
  985. {
  986. smartlist_t *sl = smartlist_new();
  987. fp_pair_t *pair;
  988. (void)arg;
  989. dir_split_resource_into_fingerprint_pairs(
  990. /* Two pairs, out of order, with one duplicate. */
  991. "73656372657420646174612E0000000000FFFFFF-"
  992. "557365204145532d32353620696e73746561642e+"
  993. "73656372657420646174612E0000000000FFFFFF-"
  994. "557365204145532d32353620696e73746561642e+"
  995. "48657861646563696d616c2069736e277420736f-"
  996. "676f6f6420666f7220686964696e6720796f7572.z", sl);
  997. tt_int_op(smartlist_len(sl),OP_EQ, 2);
  998. pair = smartlist_get(sl, 0);
  999. tt_mem_op(pair->first,OP_EQ, "Hexadecimal isn't so", DIGEST_LEN);
  1000. tt_mem_op(pair->second,OP_EQ, "good for hiding your", DIGEST_LEN);
  1001. pair = smartlist_get(sl, 1);
  1002. tt_mem_op(pair->first,OP_EQ, "secret data.\0\0\0\0\0\xff\xff\xff",
  1003. DIGEST_LEN);
  1004. tt_mem_op(pair->second,OP_EQ, "Use AES-256 instead.", DIGEST_LEN);
  1005. done:
  1006. SMARTLIST_FOREACH(sl, fp_pair_t *, pair, tor_free(pair));
  1007. smartlist_free(sl);
  1008. }
  1009. static void
  1010. test_dir_split_fps(void *testdata)
  1011. {
  1012. smartlist_t *sl = smartlist_new();
  1013. char *mem_op_hex_tmp = NULL;
  1014. (void)testdata;
  1015. /* Some example hex fingerprints and their base64 equivalents */
  1016. #define HEX1 "Fe0daff89127389bc67558691231234551193EEE"
  1017. #define HEX2 "Deadbeef99999991111119999911111111f00ba4"
  1018. #define HEX3 "b33ff00db33ff00db33ff00db33ff00db33ff00d"
  1019. #define HEX256_1 \
  1020. "f3f3f3f3fbbbbf3f3f3f3fbbbf3f3f3f3fbbbbf3f3f3f3fbbbf3f3f3f3fbbbbf"
  1021. #define HEX256_2 \
  1022. "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccCCc"
  1023. #define HEX256_3 \
  1024. "0123456789ABCdef0123456789ABCdef0123456789ABCdef0123456789ABCdef"
  1025. #define B64_1 "/g2v+JEnOJvGdVhpEjEjRVEZPu4"
  1026. #define B64_2 "3q2+75mZmZERERmZmRERERHwC6Q"
  1027. #define B64_256_1 "8/Pz8/u7vz8/Pz+7vz8/Pz+7u/Pz8/P7u/Pz8/P7u78"
  1028. #define B64_256_2 "zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMw"
  1029. /* no flags set */
  1030. dir_split_resource_into_fingerprints("A+C+B", sl, NULL, 0);
  1031. tt_int_op(smartlist_len(sl), OP_EQ, 3);
  1032. tt_str_op(smartlist_get(sl, 0), OP_EQ, "A");
  1033. tt_str_op(smartlist_get(sl, 1), OP_EQ, "C");
  1034. tt_str_op(smartlist_get(sl, 2), OP_EQ, "B");
  1035. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1036. smartlist_clear(sl);
  1037. /* uniq strings. */
  1038. dir_split_resource_into_fingerprints("A+C+B+A+B+B", sl, NULL, DSR_SORT_UNIQ);
  1039. tt_int_op(smartlist_len(sl), OP_EQ, 3);
  1040. tt_str_op(smartlist_get(sl, 0), OP_EQ, "A");
  1041. tt_str_op(smartlist_get(sl, 1), OP_EQ, "B");
  1042. tt_str_op(smartlist_get(sl, 2), OP_EQ, "C");
  1043. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1044. smartlist_clear(sl);
  1045. /* Decode hex. */
  1046. dir_split_resource_into_fingerprints(HEX1"+"HEX2, sl, NULL, DSR_HEX);
  1047. tt_int_op(smartlist_len(sl), OP_EQ, 2);
  1048. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX1);
  1049. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2);
  1050. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1051. smartlist_clear(sl);
  1052. /* decode hex and drop weirdness. */
  1053. dir_split_resource_into_fingerprints(HEX1"+bogus+"HEX2"+"HEX256_1,
  1054. sl, NULL, DSR_HEX);
  1055. tt_int_op(smartlist_len(sl), OP_EQ, 2);
  1056. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX1);
  1057. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2);
  1058. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1059. smartlist_clear(sl);
  1060. /* Decode long hex */
  1061. dir_split_resource_into_fingerprints(HEX256_1"+"HEX256_2"+"HEX2"+"HEX256_3,
  1062. sl, NULL, DSR_HEX|DSR_DIGEST256);
  1063. tt_int_op(smartlist_len(sl), OP_EQ, 3);
  1064. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_1);
  1065. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX256_2);
  1066. test_mem_op_hex(smartlist_get(sl, 2), OP_EQ, HEX256_3);
  1067. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1068. smartlist_clear(sl);
  1069. /* Decode hex and sort. */
  1070. dir_split_resource_into_fingerprints(HEX1"+"HEX2"+"HEX3"+"HEX2,
  1071. sl, NULL, DSR_HEX|DSR_SORT_UNIQ);
  1072. tt_int_op(smartlist_len(sl), OP_EQ, 3);
  1073. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX3);
  1074. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2);
  1075. test_mem_op_hex(smartlist_get(sl, 2), OP_EQ, HEX1);
  1076. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1077. smartlist_clear(sl);
  1078. /* Decode long hex and sort */
  1079. dir_split_resource_into_fingerprints(HEX256_1"+"HEX256_2"+"HEX256_3
  1080. "+"HEX256_1,
  1081. sl, NULL,
  1082. DSR_HEX|DSR_DIGEST256|DSR_SORT_UNIQ);
  1083. tt_int_op(smartlist_len(sl), OP_EQ, 3);
  1084. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_3);
  1085. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX256_2);
  1086. test_mem_op_hex(smartlist_get(sl, 2), OP_EQ, HEX256_1);
  1087. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1088. smartlist_clear(sl);
  1089. /* Decode base64 */
  1090. dir_split_resource_into_fingerprints(B64_1"-"B64_2, sl, NULL, DSR_BASE64);
  1091. tt_int_op(smartlist_len(sl), OP_EQ, 2);
  1092. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX1);
  1093. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2);
  1094. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1095. smartlist_clear(sl);
  1096. /* Decode long base64 */
  1097. dir_split_resource_into_fingerprints(B64_256_1"-"B64_256_2,
  1098. sl, NULL, DSR_BASE64|DSR_DIGEST256);
  1099. tt_int_op(smartlist_len(sl), OP_EQ, 2);
  1100. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_1);
  1101. test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX256_2);
  1102. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1103. smartlist_clear(sl);
  1104. dir_split_resource_into_fingerprints(B64_256_1,
  1105. sl, NULL, DSR_BASE64|DSR_DIGEST256);
  1106. tt_int_op(smartlist_len(sl), OP_EQ, 1);
  1107. test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_1);
  1108. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1109. smartlist_clear(sl);
  1110. done:
  1111. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1112. smartlist_free(sl);
  1113. tor_free(mem_op_hex_tmp);
  1114. }
  1115. static void
  1116. test_dir_measured_bw_kb(void *arg)
  1117. {
  1118. measured_bw_line_t mbwl;
  1119. int i;
  1120. const char *lines_pass[] = {
  1121. "node_id=$557365204145532d32353620696e73746561642e bw=1024\n",
  1122. "node_id=$557365204145532d32353620696e73746561642e\t bw=1024 \n",
  1123. " node_id=$557365204145532d32353620696e73746561642e bw=1024\n",
  1124. "\tnoise\tnode_id=$557365204145532d32353620696e73746561642e "
  1125. "bw=1024 junk=007\n",
  1126. "misc=junk node_id=$557365204145532d32353620696e73746561642e "
  1127. "bw=1024 junk=007\n",
  1128. "end"
  1129. };
  1130. const char *lines_fail[] = {
  1131. /* Test possible python stupidity on input */
  1132. "node_id=None bw=1024\n",
  1133. "node_id=$None bw=1024\n",
  1134. "node_id=$557365204145532d32353620696e73746561642e bw=None\n",
  1135. "node_id=$557365204145532d32353620696e73746561642e bw=1024.0\n",
  1136. "node_id=$557365204145532d32353620696e73746561642e bw=.1024\n",
  1137. "node_id=$557365204145532d32353620696e73746561642e bw=1.024\n",
  1138. "node_id=$557365204145532d32353620696e73746561642e bw=1024 bw=0\n",
  1139. "node_id=$557365204145532d32353620696e73746561642e bw=1024 bw=None\n",
  1140. "node_id=$557365204145532d32353620696e73746561642e bw=-1024\n",
  1141. /* Test incomplete writes due to race conditions, partial copies, etc */
  1142. "node_i",
  1143. "node_i\n",
  1144. "node_id=",
  1145. "node_id=\n",
  1146. "node_id=$557365204145532d32353620696e73746561642e bw=",
  1147. "node_id=$557365204145532d32353620696e73746561642e bw=1024",
  1148. "node_id=$557365204145532d32353620696e73746561642e bw=\n",
  1149. "node_id=$557365204145532d32353620696e7374",
  1150. "node_id=$557365204145532d32353620696e7374\n",
  1151. "",
  1152. "\n",
  1153. " \n ",
  1154. " \n\n",
  1155. /* Test assorted noise */
  1156. " node_id= ",
  1157. "node_id==$557365204145532d32353620696e73746561642e bw==1024\n",
  1158. "node_id=$55736520414552d32353620696e73746561642e bw=1024\n",
  1159. "node_id=557365204145532d32353620696e73746561642e bw=1024\n",
  1160. "node_id= $557365204145532d32353620696e73746561642e bw=0.23\n",
  1161. "end"
  1162. };
  1163. (void)arg;
  1164. for (i = 0; strcmp(lines_fail[i], "end"); i++) {
  1165. //fprintf(stderr, "Testing: %s\n", lines_fail[i]);
  1166. tt_assert(measured_bw_line_parse(&mbwl, lines_fail[i]) == -1);
  1167. }
  1168. for (i = 0; strcmp(lines_pass[i], "end"); i++) {
  1169. //fprintf(stderr, "Testing: %s %d\n", lines_pass[i], TOR_ISSPACE('\n'));
  1170. tt_assert(measured_bw_line_parse(&mbwl, lines_pass[i]) == 0);
  1171. tt_assert(mbwl.bw_kb == 1024);
  1172. tt_assert(strcmp(mbwl.node_hex,
  1173. "557365204145532d32353620696e73746561642e") == 0);
  1174. }
  1175. done:
  1176. return;
  1177. }
  1178. #define MBWC_INIT_TIME 1000
  1179. /** Do the measured bandwidth cache unit test */
  1180. static void
  1181. test_dir_measured_bw_kb_cache(void *arg)
  1182. {
  1183. /* Initial fake time_t for testing */
  1184. time_t curr = MBWC_INIT_TIME;
  1185. /* Some measured_bw_line_ts */
  1186. measured_bw_line_t mbwl[3];
  1187. /* For receiving output on cache queries */
  1188. long bw;
  1189. time_t as_of;
  1190. /* First, clear the cache and assert that it's empty */
  1191. (void)arg;
  1192. dirserv_clear_measured_bw_cache();
  1193. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 0);
  1194. /*
  1195. * Set up test mbwls; none of the dirserv_cache_*() functions care about
  1196. * the node_hex field.
  1197. */
  1198. memset(mbwl[0].node_id, 0x01, DIGEST_LEN);
  1199. mbwl[0].bw_kb = 20;
  1200. memset(mbwl[1].node_id, 0x02, DIGEST_LEN);
  1201. mbwl[1].bw_kb = 40;
  1202. memset(mbwl[2].node_id, 0x03, DIGEST_LEN);
  1203. mbwl[2].bw_kb = 80;
  1204. /* Try caching something */
  1205. dirserv_cache_measured_bw(&(mbwl[0]), curr);
  1206. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 1);
  1207. /* Okay, let's see if we can retrieve it */
  1208. tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,&bw, &as_of));
  1209. tt_int_op(bw,OP_EQ, 20);
  1210. tt_int_op(as_of,OP_EQ, MBWC_INIT_TIME);
  1211. /* Try retrieving it without some outputs */
  1212. tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL, NULL));
  1213. tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,&bw, NULL));
  1214. tt_int_op(bw,OP_EQ, 20);
  1215. tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL,&as_of));
  1216. tt_int_op(as_of,OP_EQ, MBWC_INIT_TIME);
  1217. /* Now expire it */
  1218. curr += MAX_MEASUREMENT_AGE + 1;
  1219. dirserv_expire_measured_bw_cache(curr);
  1220. /* Check that the cache is empty */
  1221. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 0);
  1222. /* Check that we can't retrieve it */
  1223. tt_assert(!dirserv_query_measured_bw_cache_kb(mbwl[0].node_id, NULL,NULL));
  1224. /* Try caching a few things now */
  1225. dirserv_cache_measured_bw(&(mbwl[0]), curr);
  1226. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 1);
  1227. curr += MAX_MEASUREMENT_AGE / 4;
  1228. dirserv_cache_measured_bw(&(mbwl[1]), curr);
  1229. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 2);
  1230. curr += MAX_MEASUREMENT_AGE / 4;
  1231. dirserv_cache_measured_bw(&(mbwl[2]), curr);
  1232. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 3);
  1233. curr += MAX_MEASUREMENT_AGE / 4 + 1;
  1234. /* Do an expire that's too soon to get any of them */
  1235. dirserv_expire_measured_bw_cache(curr);
  1236. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 3);
  1237. /* Push the oldest one off the cliff */
  1238. curr += MAX_MEASUREMENT_AGE / 4;
  1239. dirserv_expire_measured_bw_cache(curr);
  1240. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 2);
  1241. /* And another... */
  1242. curr += MAX_MEASUREMENT_AGE / 4;
  1243. dirserv_expire_measured_bw_cache(curr);
  1244. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 1);
  1245. /* This should empty it out again */
  1246. curr += MAX_MEASUREMENT_AGE / 4;
  1247. dirserv_expire_measured_bw_cache(curr);
  1248. tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 0);
  1249. done:
  1250. return;
  1251. }
  1252. static void
  1253. test_dir_param_voting(void *arg)
  1254. {
  1255. networkstatus_t vote1, vote2, vote3, vote4;
  1256. smartlist_t *votes = smartlist_new();
  1257. char *res = NULL;
  1258. /* dirvote_compute_params only looks at the net_params field of the votes,
  1259. so that's all we need to set.
  1260. */
  1261. (void)arg;
  1262. memset(&vote1, 0, sizeof(vote1));
  1263. memset(&vote2, 0, sizeof(vote2));
  1264. memset(&vote3, 0, sizeof(vote3));
  1265. memset(&vote4, 0, sizeof(vote4));
  1266. vote1.net_params = smartlist_new();
  1267. vote2.net_params = smartlist_new();
  1268. vote3.net_params = smartlist_new();
  1269. vote4.net_params = smartlist_new();
  1270. smartlist_split_string(vote1.net_params,
  1271. "ab=90 abcd=20 cw=50 x-yz=-99", NULL, 0, 0);
  1272. smartlist_split_string(vote2.net_params,
  1273. "ab=27 cw=5 x-yz=88", NULL, 0, 0);
  1274. smartlist_split_string(vote3.net_params,
  1275. "abcd=20 c=60 cw=500 x-yz=-9 zzzzz=101", NULL, 0, 0);
  1276. smartlist_split_string(vote4.net_params,
  1277. "ab=900 abcd=200 c=1 cw=51 x-yz=100", NULL, 0, 0);
  1278. tt_int_op(100,OP_EQ, networkstatus_get_param(&vote4, "x-yz", 50, 0, 300));
  1279. tt_int_op(222,OP_EQ, networkstatus_get_param(&vote4, "foobar", 222, 0, 300));
  1280. tt_int_op(80,OP_EQ, networkstatus_get_param(&vote4, "ab", 12, 0, 80));
  1281. tt_int_op(-8,OP_EQ, networkstatus_get_param(&vote4, "ab", -12, -100, -8));
  1282. tt_int_op(0,OP_EQ, networkstatus_get_param(&vote4, "foobar", 0, -100, 8));
  1283. smartlist_add(votes, &vote1);
  1284. /* Do the first tests without adding all the other votes, for
  1285. * networks without many dirauths. */
  1286. res = dirvote_compute_params(votes, 12, 2);
  1287. tt_str_op(res,OP_EQ, "");
  1288. tor_free(res);
  1289. res = dirvote_compute_params(votes, 12, 1);
  1290. tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-99");
  1291. tor_free(res);
  1292. smartlist_add(votes, &vote2);
  1293. res = dirvote_compute_params(votes, 12, 2);
  1294. tt_str_op(res,OP_EQ, "ab=27 cw=5 x-yz=-99");
  1295. tor_free(res);
  1296. res = dirvote_compute_params(votes, 12, 3);
  1297. tt_str_op(res,OP_EQ, "ab=27 cw=5 x-yz=-99");
  1298. tor_free(res);
  1299. res = dirvote_compute_params(votes, 12, 6);
  1300. tt_str_op(res,OP_EQ, "");
  1301. tor_free(res);
  1302. smartlist_add(votes, &vote3);
  1303. res = dirvote_compute_params(votes, 12, 3);
  1304. tt_str_op(res,OP_EQ, "ab=27 abcd=20 cw=50 x-yz=-9");
  1305. tor_free(res);
  1306. res = dirvote_compute_params(votes, 12, 5);
  1307. tt_str_op(res,OP_EQ, "cw=50 x-yz=-9");
  1308. tor_free(res);
  1309. res = dirvote_compute_params(votes, 12, 9);
  1310. tt_str_op(res,OP_EQ, "cw=50 x-yz=-9");
  1311. tor_free(res);
  1312. smartlist_add(votes, &vote4);
  1313. res = dirvote_compute_params(votes, 12, 4);
  1314. tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9");
  1315. tor_free(res);
  1316. res = dirvote_compute_params(votes, 12, 5);
  1317. tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9");
  1318. tor_free(res);
  1319. /* Test that the special-cased "at least three dirauths voted for
  1320. * this param" logic works as expected. */
  1321. res = dirvote_compute_params(votes, 12, 6);
  1322. tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9");
  1323. tor_free(res);
  1324. res = dirvote_compute_params(votes, 12, 10);
  1325. tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9");
  1326. tor_free(res);
  1327. done:
  1328. tor_free(res);
  1329. SMARTLIST_FOREACH(vote1.net_params, char *, cp, tor_free(cp));
  1330. SMARTLIST_FOREACH(vote2.net_params, char *, cp, tor_free(cp));
  1331. SMARTLIST_FOREACH(vote3.net_params, char *, cp, tor_free(cp));
  1332. SMARTLIST_FOREACH(vote4.net_params, char *, cp, tor_free(cp));
  1333. smartlist_free(vote1.net_params);
  1334. smartlist_free(vote2.net_params);
  1335. smartlist_free(vote3.net_params);
  1336. smartlist_free(vote4.net_params);
  1337. smartlist_free(votes);
  1338. return;
  1339. }
  1340. /** Helper: Test that two networkstatus_voter_info_t do in fact represent the
  1341. * same voting authority, and that they do in fact have all the same
  1342. * information. */
  1343. static void
  1344. test_same_voter(networkstatus_voter_info_t *v1,
  1345. networkstatus_voter_info_t *v2)
  1346. {
  1347. tt_str_op(v1->nickname,OP_EQ, v2->nickname);
  1348. tt_mem_op(v1->identity_digest,OP_EQ, v2->identity_digest, DIGEST_LEN);
  1349. tt_str_op(v1->address,OP_EQ, v2->address);
  1350. tt_int_op(v1->addr,OP_EQ, v2->addr);
  1351. tt_int_op(v1->dir_port,OP_EQ, v2->dir_port);
  1352. tt_int_op(v1->or_port,OP_EQ, v2->or_port);
  1353. tt_str_op(v1->contact,OP_EQ, v2->contact);
  1354. tt_mem_op(v1->vote_digest,OP_EQ, v2->vote_digest, DIGEST_LEN);
  1355. done:
  1356. ;
  1357. }
  1358. /** Helper: get a detached signatures document for one or two
  1359. * consensuses. */
  1360. static char *
  1361. get_detached_sigs(networkstatus_t *ns, networkstatus_t *ns2)
  1362. {
  1363. char *r;
  1364. smartlist_t *sl;
  1365. tor_assert(ns && ns->flavor == FLAV_NS);
  1366. sl = smartlist_new();
  1367. smartlist_add(sl,ns);
  1368. if (ns2)
  1369. smartlist_add(sl,ns2);
  1370. r = networkstatus_get_detached_signatures(sl);
  1371. smartlist_free(sl);
  1372. return r;
  1373. }
  1374. /** Apply tweaks to the vote list for each voter */
  1375. static int
  1376. vote_tweaks_for_v3ns(networkstatus_t *v, int voter, time_t now)
  1377. {
  1378. vote_routerstatus_t *vrs;
  1379. const char *msg = NULL;
  1380. tt_assert(v);
  1381. (void)now;
  1382. if (voter == 1) {
  1383. measured_bw_line_t mbw;
  1384. memset(mbw.node_id, 33, sizeof(mbw.node_id));
  1385. mbw.bw_kb = 1024;
  1386. tt_assert(measured_bw_line_apply(&mbw,
  1387. v->routerstatus_list) == 1);
  1388. } else if (voter == 2 || voter == 3) {
  1389. /* Monkey around with the list a bit */
  1390. vrs = smartlist_get(v->routerstatus_list, 2);
  1391. smartlist_del_keeporder(v->routerstatus_list, 2);
  1392. vote_routerstatus_free(vrs);
  1393. vrs = smartlist_get(v->routerstatus_list, 0);
  1394. vrs->status.is_fast = 1;
  1395. if (voter == 3) {
  1396. vrs = smartlist_get(v->routerstatus_list, 0);
  1397. smartlist_del_keeporder(v->routerstatus_list, 0);
  1398. vote_routerstatus_free(vrs);
  1399. vrs = smartlist_get(v->routerstatus_list, 0);
  1400. memset(vrs->status.descriptor_digest, (int)'Z', DIGEST_LEN);
  1401. tt_assert(router_add_to_routerlist(
  1402. dir_common_generate_ri_from_rs(vrs), &msg,0,0) >= 0);
  1403. }
  1404. }
  1405. done:
  1406. return 0;
  1407. }
  1408. /**
  1409. * Test a parsed vote_routerstatus_t for v3_networkstatus test
  1410. */
  1411. static void
  1412. test_vrs_for_v3ns(vote_routerstatus_t *vrs, int voter, time_t now)
  1413. {
  1414. routerstatus_t *rs;
  1415. tor_addr_t addr_ipv6;
  1416. tt_assert(vrs);
  1417. rs = &(vrs->status);
  1418. tt_assert(rs);
  1419. /* Split out by digests to test */
  1420. if (tor_memeq(rs->identity_digest,
  1421. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  1422. "\x3\x3\x3\x3",
  1423. DIGEST_LEN) &&
  1424. (voter == 1)) {
  1425. /* Check the first routerstatus. */
  1426. tt_str_op(vrs->version,OP_EQ, "0.1.2.14");
  1427. tt_int_op(rs->published_on,OP_EQ, now-1500);
  1428. tt_str_op(rs->nickname,OP_EQ, "router2");
  1429. tt_mem_op(rs->identity_digest,OP_EQ,
  1430. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  1431. "\x3\x3\x3\x3",
  1432. DIGEST_LEN);
  1433. tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN);
  1434. tt_int_op(rs->addr,OP_EQ, 0x99008801);
  1435. tt_int_op(rs->or_port,OP_EQ, 443);
  1436. tt_int_op(rs->dir_port,OP_EQ, 8000);
  1437. /* no flags except "running" (16) and "v2dir" (64) */
  1438. tt_u64_op(vrs->flags, OP_EQ, U64_LITERAL(80));
  1439. } else if (tor_memeq(rs->identity_digest,
  1440. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  1441. "\x5\x5\x5\x5",
  1442. DIGEST_LEN) &&
  1443. (voter == 1 || voter == 2)) {
  1444. tt_mem_op(rs->identity_digest,OP_EQ,
  1445. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  1446. "\x5\x5\x5\x5",
  1447. DIGEST_LEN);
  1448. if (voter == 1) {
  1449. /* Check the second routerstatus. */
  1450. tt_str_op(vrs->version,OP_EQ, "0.2.0.5");
  1451. tt_int_op(rs->published_on,OP_EQ, now-1000);
  1452. tt_str_op(rs->nickname,OP_EQ, "router1");
  1453. }
  1454. tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN);
  1455. tt_int_op(rs->addr,OP_EQ, 0x99009901);
  1456. tt_int_op(rs->or_port,OP_EQ, 443);
  1457. tt_int_op(rs->dir_port,OP_EQ, 0);
  1458. tor_addr_parse(&addr_ipv6, "[1:2:3::4]");
  1459. tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6));
  1460. tt_int_op(rs->ipv6_orport,OP_EQ, 4711);
  1461. if (voter == 1) {
  1462. /* all except "authority" (1) */
  1463. tt_u64_op(vrs->flags, OP_EQ, U64_LITERAL(254));
  1464. } else {
  1465. /* 1023 - authority(1) - madeofcheese(16) - madeoftin(32) */
  1466. tt_u64_op(vrs->flags, OP_EQ, U64_LITERAL(974));
  1467. }
  1468. } else if (tor_memeq(rs->identity_digest,
  1469. "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33"
  1470. "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33",
  1471. DIGEST_LEN) &&
  1472. (voter == 1 || voter == 2)) {
  1473. /* Check the measured bandwidth bits */
  1474. tt_assert(vrs->has_measured_bw &&
  1475. vrs->measured_bw_kb == 1024);
  1476. } else {
  1477. /*
  1478. * Didn't expect this, but the old unit test only checked some of them,
  1479. * so don't assert.
  1480. */
  1481. /* tt_assert(0); */
  1482. }
  1483. done:
  1484. return;
  1485. }
  1486. /**
  1487. * Test a consensus for v3_networkstatus_test
  1488. */
  1489. static void
  1490. test_consensus_for_v3ns(networkstatus_t *con, time_t now)
  1491. {
  1492. (void)now;
  1493. tt_assert(con);
  1494. tt_assert(!con->cert);
  1495. tt_int_op(2,OP_EQ, smartlist_len(con->routerstatus_list));
  1496. /* There should be two listed routers: one with identity 3, one with
  1497. * identity 5. */
  1498. done:
  1499. return;
  1500. }
  1501. /**
  1502. * Test a router list entry for v3_networkstatus test
  1503. */
  1504. static void
  1505. test_routerstatus_for_v3ns(routerstatus_t *rs, time_t now)
  1506. {
  1507. tor_addr_t addr_ipv6;
  1508. tt_assert(rs);
  1509. /* There should be two listed routers: one with identity 3, one with
  1510. * identity 5. */
  1511. /* This one showed up in 2 digests. */
  1512. if (tor_memeq(rs->identity_digest,
  1513. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  1514. "\x3\x3",
  1515. DIGEST_LEN)) {
  1516. tt_mem_op(rs->identity_digest,OP_EQ,
  1517. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  1518. DIGEST_LEN);
  1519. tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN);
  1520. tt_assert(!rs->is_authority);
  1521. tt_assert(!rs->is_exit);
  1522. tt_assert(!rs->is_fast);
  1523. tt_assert(!rs->is_possible_guard);
  1524. tt_assert(!rs->is_stable);
  1525. /* (If it wasn't running it wouldn't be here) */
  1526. tt_assert(rs->is_flagged_running);
  1527. tt_assert(!rs->is_valid);
  1528. tt_assert(!rs->is_named);
  1529. tt_assert(rs->is_v2_dir);
  1530. /* XXXX check version */
  1531. } else if (tor_memeq(rs->identity_digest,
  1532. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  1533. "\x5\x5\x5\x5",
  1534. DIGEST_LEN)) {
  1535. /* This one showed up in 3 digests. Twice with ID 'M', once with 'Z'. */
  1536. tt_mem_op(rs->identity_digest,OP_EQ,
  1537. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  1538. DIGEST_LEN);
  1539. tt_str_op(rs->nickname,OP_EQ, "router1");
  1540. tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN);
  1541. tt_int_op(rs->published_on,OP_EQ, now-1000);
  1542. tt_int_op(rs->addr,OP_EQ, 0x99009901);
  1543. tt_int_op(rs->or_port,OP_EQ, 443);
  1544. tt_int_op(rs->dir_port,OP_EQ, 0);
  1545. tor_addr_parse(&addr_ipv6, "[1:2:3::4]");
  1546. tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6));
  1547. tt_int_op(rs->ipv6_orport,OP_EQ, 4711);
  1548. tt_assert(!rs->is_authority);
  1549. tt_assert(rs->is_exit);
  1550. tt_assert(rs->is_fast);
  1551. tt_assert(rs->is_possible_guard);
  1552. tt_assert(rs->is_stable);
  1553. tt_assert(rs->is_flagged_running);
  1554. tt_assert(rs->is_valid);
  1555. tt_assert(rs->is_v2_dir);
  1556. tt_assert(!rs->is_named);
  1557. /* XXXX check version */
  1558. } else {
  1559. /* Weren't expecting this... */
  1560. tt_assert(0);
  1561. }
  1562. done:
  1563. return;
  1564. }
  1565. /** Run a unit tests for generating and parsing networkstatuses, with
  1566. * the supply test fns. */
  1567. static void
  1568. test_a_networkstatus(
  1569. vote_routerstatus_t * (*vrs_gen)(int idx, time_t now),
  1570. int (*vote_tweaks)(networkstatus_t *v, int voter, time_t now),
  1571. void (*vrs_test)(vote_routerstatus_t *vrs, int voter, time_t now),
  1572. void (*consensus_test)(networkstatus_t *con, time_t now),
  1573. void (*rs_test)(routerstatus_t *rs, time_t now))
  1574. {
  1575. authority_cert_t *cert1=NULL, *cert2=NULL, *cert3=NULL;
  1576. crypto_pk_t *sign_skey_1=NULL, *sign_skey_2=NULL, *sign_skey_3=NULL;
  1577. crypto_pk_t *sign_skey_leg1=NULL;
  1578. /*
  1579. * Sum the non-zero returns from vote_tweaks() we've seen; if vote_tweaks()
  1580. * returns non-zero, it changed net_params and we should skip the tests for
  1581. * that later as they will fail.
  1582. */
  1583. int params_tweaked = 0;
  1584. time_t now = time(NULL);
  1585. networkstatus_voter_info_t *voter;
  1586. document_signature_t *sig;
  1587. networkstatus_t *vote=NULL, *v1=NULL, *v2=NULL, *v3=NULL, *con=NULL,
  1588. *con_md=NULL;
  1589. vote_routerstatus_t *vrs;
  1590. routerstatus_t *rs;
  1591. int idx, n_rs, n_vrs;
  1592. char *consensus_text=NULL, *cp=NULL;
  1593. smartlist_t *votes = smartlist_new();
  1594. /* For generating the two other consensuses. */
  1595. char *detached_text1=NULL, *detached_text2=NULL;
  1596. char *consensus_text2=NULL, *consensus_text3=NULL;
  1597. char *consensus_text_md2=NULL, *consensus_text_md3=NULL;
  1598. char *consensus_text_md=NULL;
  1599. networkstatus_t *con2=NULL, *con_md2=NULL, *con3=NULL, *con_md3=NULL;
  1600. ns_detached_signatures_t *dsig1=NULL, *dsig2=NULL;
  1601. tt_assert(vrs_gen);
  1602. tt_assert(rs_test);
  1603. tt_assert(vrs_test);
  1604. tt_assert(!dir_common_authority_pk_init(&cert1, &cert2, &cert3,
  1605. &sign_skey_1, &sign_skey_2,
  1606. &sign_skey_3));
  1607. sign_skey_leg1 = pk_generate(4);
  1608. tt_assert(!dir_common_construct_vote_1(&vote, cert1, sign_skey_1, vrs_gen,
  1609. &v1, &n_vrs, now, 1));
  1610. tt_assert(v1);
  1611. /* Make sure the parsed thing was right. */
  1612. tt_int_op(v1->type,OP_EQ, NS_TYPE_VOTE);
  1613. tt_int_op(v1->published,OP_EQ, vote->published);
  1614. tt_int_op(v1->valid_after,OP_EQ, vote->valid_after);
  1615. tt_int_op(v1->fresh_until,OP_EQ, vote->fresh_until);
  1616. tt_int_op(v1->valid_until,OP_EQ, vote->valid_until);
  1617. tt_int_op(v1->vote_seconds,OP_EQ, vote->vote_seconds);
  1618. tt_int_op(v1->dist_seconds,OP_EQ, vote->dist_seconds);
  1619. tt_str_op(v1->client_versions,OP_EQ, vote->client_versions);
  1620. tt_str_op(v1->server_versions,OP_EQ, vote->server_versions);
  1621. tt_assert(v1->voters && smartlist_len(v1->voters));
  1622. voter = smartlist_get(v1->voters, 0);
  1623. tt_str_op(voter->nickname,OP_EQ, "Voter1");
  1624. tt_str_op(voter->address,OP_EQ, "1.2.3.4");
  1625. tt_int_op(voter->addr,OP_EQ, 0x01020304);
  1626. tt_int_op(voter->dir_port,OP_EQ, 80);
  1627. tt_int_op(voter->or_port,OP_EQ, 9000);
  1628. tt_str_op(voter->contact,OP_EQ, "voter@example.com");
  1629. tt_assert(v1->cert);
  1630. tt_assert(!crypto_pk_cmp_keys(sign_skey_1, v1->cert->signing_key));
  1631. cp = smartlist_join_strings(v1->known_flags, ":", 0, NULL);
  1632. tt_str_op(cp,OP_EQ, "Authority:Exit:Fast:Guard:Running:Stable:V2Dir:Valid");
  1633. tor_free(cp);
  1634. tt_int_op(smartlist_len(v1->routerstatus_list),OP_EQ, n_vrs);
  1635. networkstatus_vote_free(vote);
  1636. vote = NULL;
  1637. if (vote_tweaks) params_tweaked += vote_tweaks(v1, 1, now);
  1638. /* Check the routerstatuses. */
  1639. for (idx = 0; idx < n_vrs; ++idx) {
  1640. vrs = smartlist_get(v1->routerstatus_list, idx);
  1641. tt_assert(vrs);
  1642. vrs_test(vrs, 1, now);
  1643. }
  1644. /* Generate second vote. It disagrees on some of the times,
  1645. * and doesn't list versions, and knows some crazy flags.
  1646. * Generate and parse v2. */
  1647. tt_assert(!dir_common_construct_vote_2(&vote, cert2, sign_skey_2, vrs_gen,
  1648. &v2, &n_vrs, now, 1));
  1649. tt_assert(v2);
  1650. if (vote_tweaks) params_tweaked += vote_tweaks(v2, 2, now);
  1651. /* Check that flags come out right.*/
  1652. cp = smartlist_join_strings(v2->known_flags, ":", 0, NULL);
  1653. tt_str_op(cp,OP_EQ, "Authority:Exit:Fast:Guard:MadeOfCheese:MadeOfTin:"
  1654. "Running:Stable:V2Dir:Valid");
  1655. tor_free(cp);
  1656. /* Check the routerstatuses. */
  1657. n_vrs = smartlist_len(v2->routerstatus_list);
  1658. for (idx = 0; idx < n_vrs; ++idx) {
  1659. vrs = smartlist_get(v2->routerstatus_list, idx);
  1660. tt_assert(vrs);
  1661. vrs_test(vrs, 2, now);
  1662. }
  1663. networkstatus_vote_free(vote);
  1664. vote = NULL;
  1665. /* Generate the third vote with a legacy id. */
  1666. tt_assert(!dir_common_construct_vote_3(&vote, cert3, sign_skey_3, vrs_gen,
  1667. &v3, &n_vrs, now, 1));
  1668. tt_assert(v3);
  1669. if (vote_tweaks) params_tweaked += vote_tweaks(v3, 3, now);
  1670. /* Compute a consensus as voter 3. */
  1671. smartlist_add(votes, v3);
  1672. smartlist_add(votes, v1);
  1673. smartlist_add(votes, v2);
  1674. consensus_text = networkstatus_compute_consensus(votes, 3,
  1675. cert3->identity_key,
  1676. sign_skey_3,
  1677. "AAAAAAAAAAAAAAAAAAAA",
  1678. sign_skey_leg1,
  1679. FLAV_NS);
  1680. tt_assert(consensus_text);
  1681. con = networkstatus_parse_vote_from_string(consensus_text, NULL,
  1682. NS_TYPE_CONSENSUS);
  1683. tt_assert(con);
  1684. //log_notice(LD_GENERAL, "<<%s>>\n<<%s>>\n<<%s>>\n",
  1685. // v1_text, v2_text, v3_text);
  1686. consensus_text_md = networkstatus_compute_consensus(votes, 3,
  1687. cert3->identity_key,
  1688. sign_skey_3,
  1689. "AAAAAAAAAAAAAAAAAAAA",
  1690. sign_skey_leg1,
  1691. FLAV_MICRODESC);
  1692. tt_assert(consensus_text_md);
  1693. con_md = networkstatus_parse_vote_from_string(consensus_text_md, NULL,
  1694. NS_TYPE_CONSENSUS);
  1695. tt_assert(con_md);
  1696. tt_int_op(con_md->flavor,OP_EQ, FLAV_MICRODESC);
  1697. /* Check consensus contents. */
  1698. tt_assert(con->type == NS_TYPE_CONSENSUS);
  1699. tt_int_op(con->published,OP_EQ, 0); /* this field only appears in votes. */
  1700. tt_int_op(con->valid_after,OP_EQ, now+1000);
  1701. tt_int_op(con->fresh_until,OP_EQ, now+2003); /* median */
  1702. tt_int_op(con->valid_until,OP_EQ, now+3000);
  1703. tt_int_op(con->vote_seconds,OP_EQ, 100);
  1704. tt_int_op(con->dist_seconds,OP_EQ, 250); /* median */
  1705. tt_str_op(con->client_versions,OP_EQ, "0.1.2.14");
  1706. tt_str_op(con->server_versions,OP_EQ, "0.1.2.15,0.1.2.16");
  1707. cp = smartlist_join_strings(v2->known_flags, ":", 0, NULL);
  1708. tt_str_op(cp,OP_EQ, "Authority:Exit:Fast:Guard:MadeOfCheese:MadeOfTin:"
  1709. "Running:Stable:V2Dir:Valid");
  1710. tor_free(cp);
  1711. if (!params_tweaked) {
  1712. /* Skip this one if vote_tweaks() messed with the param lists */
  1713. cp = smartlist_join_strings(con->net_params, ":", 0, NULL);
  1714. tt_str_op(cp,OP_EQ, "circuitwindow=80:foo=660");
  1715. tor_free(cp);
  1716. }
  1717. tt_int_op(4,OP_EQ, smartlist_len(con->voters)); /*3 voters, 1 legacy key.*/
  1718. /* The voter id digests should be in this order. */
  1719. tt_assert(memcmp(cert2->cache_info.identity_digest,
  1720. cert1->cache_info.identity_digest,DIGEST_LEN)<0);
  1721. tt_assert(memcmp(cert1->cache_info.identity_digest,
  1722. cert3->cache_info.identity_digest,DIGEST_LEN)<0);
  1723. test_same_voter(smartlist_get(con->voters, 1),
  1724. smartlist_get(v2->voters, 0));
  1725. test_same_voter(smartlist_get(con->voters, 2),
  1726. smartlist_get(v1->voters, 0));
  1727. test_same_voter(smartlist_get(con->voters, 3),
  1728. smartlist_get(v3->voters, 0));
  1729. consensus_test(con, now);
  1730. /* Check the routerstatuses. */
  1731. n_rs = smartlist_len(con->routerstatus_list);
  1732. tt_assert(n_rs);
  1733. for (idx = 0; idx < n_rs; ++idx) {
  1734. rs = smartlist_get(con->routerstatus_list, idx);
  1735. tt_assert(rs);
  1736. rs_test(rs, now);
  1737. }
  1738. n_rs = smartlist_len(con_md->routerstatus_list);
  1739. tt_assert(n_rs);
  1740. for (idx = 0; idx < n_rs; ++idx) {
  1741. rs = smartlist_get(con_md->routerstatus_list, idx);
  1742. tt_assert(rs);
  1743. }
  1744. /* Check signatures. the first voter is a pseudo-entry with a legacy key.
  1745. * The second one hasn't signed. The fourth one has signed: validate it. */
  1746. voter = smartlist_get(con->voters, 1);
  1747. tt_int_op(smartlist_len(voter->sigs),OP_EQ, 0);
  1748. voter = smartlist_get(con->voters, 3);
  1749. tt_int_op(smartlist_len(voter->sigs),OP_EQ, 1);
  1750. sig = smartlist_get(voter->sigs, 0);
  1751. tt_assert(sig->signature);
  1752. tt_assert(!sig->good_signature);
  1753. tt_assert(!sig->bad_signature);
  1754. tt_assert(!networkstatus_check_document_signature(con, sig, cert3));
  1755. tt_assert(sig->signature);
  1756. tt_assert(sig->good_signature);
  1757. tt_assert(!sig->bad_signature);
  1758. {
  1759. const char *msg=NULL;
  1760. /* Compute the other two signed consensuses. */
  1761. smartlist_shuffle(votes);
  1762. consensus_text2 = networkstatus_compute_consensus(votes, 3,
  1763. cert2->identity_key,
  1764. sign_skey_2, NULL,NULL,
  1765. FLAV_NS);
  1766. consensus_text_md2 = networkstatus_compute_consensus(votes, 3,
  1767. cert2->identity_key,
  1768. sign_skey_2, NULL,NULL,
  1769. FLAV_MICRODESC);
  1770. smartlist_shuffle(votes);
  1771. consensus_text3 = networkstatus_compute_consensus(votes, 3,
  1772. cert1->identity_key,
  1773. sign_skey_1, NULL,NULL,
  1774. FLAV_NS);
  1775. consensus_text_md3 = networkstatus_compute_consensus(votes, 3,
  1776. cert1->identity_key,
  1777. sign_skey_1, NULL,NULL,
  1778. FLAV_MICRODESC);
  1779. tt_assert(consensus_text2);
  1780. tt_assert(consensus_text3);
  1781. tt_assert(consensus_text_md2);
  1782. tt_assert(consensus_text_md3);
  1783. con2 = networkstatus_parse_vote_from_string(consensus_text2, NULL,
  1784. NS_TYPE_CONSENSUS);
  1785. con3 = networkstatus_parse_vote_from_string(consensus_text3, NULL,
  1786. NS_TYPE_CONSENSUS);
  1787. con_md2 = networkstatus_parse_vote_from_string(consensus_text_md2, NULL,
  1788. NS_TYPE_CONSENSUS);
  1789. con_md3 = networkstatus_parse_vote_from_string(consensus_text_md3, NULL,
  1790. NS_TYPE_CONSENSUS);
  1791. tt_assert(con2);
  1792. tt_assert(con3);
  1793. tt_assert(con_md2);
  1794. tt_assert(con_md3);
  1795. /* All three should have the same digest. */
  1796. tt_mem_op(&con->digests,OP_EQ, &con2->digests, sizeof(digests_t));
  1797. tt_mem_op(&con->digests,OP_EQ, &con3->digests, sizeof(digests_t));
  1798. tt_mem_op(&con_md->digests,OP_EQ, &con_md2->digests, sizeof(digests_t));
  1799. tt_mem_op(&con_md->digests,OP_EQ, &con_md3->digests, sizeof(digests_t));
  1800. /* Extract a detached signature from con3. */
  1801. detached_text1 = get_detached_sigs(con3, con_md3);
  1802. tt_assert(detached_text1);
  1803. /* Try to parse it. */
  1804. dsig1 = networkstatus_parse_detached_signatures(detached_text1, NULL);
  1805. tt_assert(dsig1);
  1806. /* Are parsed values as expected? */
  1807. tt_int_op(dsig1->valid_after,OP_EQ, con3->valid_after);
  1808. tt_int_op(dsig1->fresh_until,OP_EQ, con3->fresh_until);
  1809. tt_int_op(dsig1->valid_until,OP_EQ, con3->valid_until);
  1810. {
  1811. digests_t *dsig_digests = strmap_get(dsig1->digests, "ns");
  1812. tt_assert(dsig_digests);
  1813. tt_mem_op(dsig_digests->d[DIGEST_SHA1], OP_EQ,
  1814. con3->digests.d[DIGEST_SHA1], DIGEST_LEN);
  1815. dsig_digests = strmap_get(dsig1->digests, "microdesc");
  1816. tt_assert(dsig_digests);
  1817. tt_mem_op(dsig_digests->d[DIGEST_SHA256],OP_EQ,
  1818. con_md3->digests.d[DIGEST_SHA256],
  1819. DIGEST256_LEN);
  1820. }
  1821. {
  1822. smartlist_t *dsig_signatures = strmap_get(dsig1->signatures, "ns");
  1823. tt_assert(dsig_signatures);
  1824. tt_int_op(1,OP_EQ, smartlist_len(dsig_signatures));
  1825. sig = smartlist_get(dsig_signatures, 0);
  1826. tt_mem_op(sig->identity_digest,OP_EQ, cert1->cache_info.identity_digest,
  1827. DIGEST_LEN);
  1828. tt_int_op(sig->alg,OP_EQ, DIGEST_SHA1);
  1829. dsig_signatures = strmap_get(dsig1->signatures, "microdesc");
  1830. tt_assert(dsig_signatures);
  1831. tt_int_op(1,OP_EQ, smartlist_len(dsig_signatures));
  1832. sig = smartlist_get(dsig_signatures, 0);
  1833. tt_mem_op(sig->identity_digest,OP_EQ, cert1->cache_info.identity_digest,
  1834. DIGEST_LEN);
  1835. tt_int_op(sig->alg,OP_EQ, DIGEST_SHA256);
  1836. }
  1837. /* Try adding it to con2. */
  1838. detached_text2 = get_detached_sigs(con2,con_md2);
  1839. tt_int_op(1,OP_EQ, networkstatus_add_detached_signatures(con2, dsig1,
  1840. "test", LOG_INFO, &msg));
  1841. tor_free(detached_text2);
  1842. tt_int_op(1,OP_EQ,
  1843. networkstatus_add_detached_signatures(con_md2, dsig1, "test",
  1844. LOG_INFO, &msg));
  1845. tor_free(detached_text2);
  1846. detached_text2 = get_detached_sigs(con2,con_md2);
  1847. //printf("\n<%s>\n", detached_text2);
  1848. dsig2 = networkstatus_parse_detached_signatures(detached_text2, NULL);
  1849. tt_assert(dsig2);
  1850. /*
  1851. printf("\n");
  1852. SMARTLIST_FOREACH(dsig2->signatures, networkstatus_voter_info_t *, vi, {
  1853. char hd[64];
  1854. base16_encode(hd, sizeof(hd), vi->identity_digest, DIGEST_LEN);
  1855. printf("%s\n", hd);
  1856. });
  1857. */
  1858. tt_int_op(2,OP_EQ,
  1859. smartlist_len((smartlist_t*)strmap_get(dsig2->signatures, "ns")));
  1860. tt_int_op(2,OP_EQ,
  1861. smartlist_len((smartlist_t*)strmap_get(dsig2->signatures,
  1862. "microdesc")));
  1863. /* Try adding to con2 twice; verify that nothing changes. */
  1864. tt_int_op(0,OP_EQ, networkstatus_add_detached_signatures(con2, dsig1,
  1865. "test", LOG_INFO, &msg));
  1866. /* Add to con. */
  1867. tt_int_op(2,OP_EQ, networkstatus_add_detached_signatures(con, dsig2,
  1868. "test", LOG_INFO, &msg));
  1869. /* Check signatures */
  1870. voter = smartlist_get(con->voters, 1);
  1871. sig = smartlist_get(voter->sigs, 0);
  1872. tt_assert(sig);
  1873. tt_assert(!networkstatus_check_document_signature(con, sig, cert2));
  1874. voter = smartlist_get(con->voters, 2);
  1875. sig = smartlist_get(voter->sigs, 0);
  1876. tt_assert(sig);
  1877. tt_assert(!networkstatus_check_document_signature(con, sig, cert1));
  1878. }
  1879. done:
  1880. tor_free(cp);
  1881. smartlist_free(votes);
  1882. tor_free(consensus_text);
  1883. tor_free(consensus_text_md);
  1884. networkstatus_vote_free(vote);
  1885. networkstatus_vote_free(v1);
  1886. networkstatus_vote_free(v2);
  1887. networkstatus_vote_free(v3);
  1888. networkstatus_vote_free(con);
  1889. networkstatus_vote_free(con_md);
  1890. crypto_pk_free(sign_skey_1);
  1891. crypto_pk_free(sign_skey_2);
  1892. crypto_pk_free(sign_skey_3);
  1893. crypto_pk_free(sign_skey_leg1);
  1894. authority_cert_free(cert1);
  1895. authority_cert_free(cert2);
  1896. authority_cert_free(cert3);
  1897. tor_free(consensus_text2);
  1898. tor_free(consensus_text3);
  1899. tor_free(consensus_text_md2);
  1900. tor_free(consensus_text_md3);
  1901. tor_free(detached_text1);
  1902. tor_free(detached_text2);
  1903. networkstatus_vote_free(con2);
  1904. networkstatus_vote_free(con3);
  1905. networkstatus_vote_free(con_md2);
  1906. networkstatus_vote_free(con_md3);
  1907. ns_detached_signatures_free(dsig1);
  1908. ns_detached_signatures_free(dsig2);
  1909. }
  1910. /** Run unit tests for generating and parsing V3 consensus networkstatus
  1911. * documents. */
  1912. static void
  1913. test_dir_v3_networkstatus(void *arg)
  1914. {
  1915. (void)arg;
  1916. test_a_networkstatus(dir_common_gen_routerstatus_for_v3ns,
  1917. vote_tweaks_for_v3ns,
  1918. test_vrs_for_v3ns,
  1919. test_consensus_for_v3ns,
  1920. test_routerstatus_for_v3ns);
  1921. }
  1922. static void
  1923. test_dir_scale_bw(void *testdata)
  1924. {
  1925. double v[8] = { 2.0/3,
  1926. 7.0,
  1927. 1.0,
  1928. 3.0,
  1929. 1.0/5,
  1930. 1.0/7,
  1931. 12.0,
  1932. 24.0 };
  1933. u64_dbl_t vals[8];
  1934. uint64_t total;
  1935. int i;
  1936. (void) testdata;
  1937. for (i=0; i<8; ++i)
  1938. vals[i].dbl = v[i];
  1939. scale_array_elements_to_u64(vals, 8, &total);
  1940. tt_int_op((int)total, OP_EQ, 48);
  1941. total = 0;
  1942. for (i=0; i<8; ++i) {
  1943. total += vals[i].u64;
  1944. }
  1945. tt_assert(total >= (U64_LITERAL(1)<<60));
  1946. tt_assert(total <= (U64_LITERAL(1)<<62));
  1947. for (i=0; i<8; ++i) {
  1948. /* vals[2].u64 is the scaled value of 1.0 */
  1949. double ratio = ((double)vals[i].u64) / vals[2].u64;
  1950. tt_double_op(fabs(ratio - v[i]), OP_LT, .00001);
  1951. }
  1952. /* test handling of no entries */
  1953. total = 1;
  1954. scale_array_elements_to_u64(vals, 0, &total);
  1955. tt_assert(total == 0);
  1956. /* make sure we don't read the array when we have no entries
  1957. * may require compiler flags to catch NULL dereferences */
  1958. total = 1;
  1959. scale_array_elements_to_u64(NULL, 0, &total);
  1960. tt_assert(total == 0);
  1961. scale_array_elements_to_u64(NULL, 0, NULL);
  1962. /* test handling of zero totals */
  1963. total = 1;
  1964. vals[0].dbl = 0.0;
  1965. scale_array_elements_to_u64(vals, 1, &total);
  1966. tt_assert(total == 0);
  1967. tt_assert(vals[0].u64 == 0);
  1968. vals[0].dbl = 0.0;
  1969. vals[1].dbl = 0.0;
  1970. scale_array_elements_to_u64(vals, 2, NULL);
  1971. tt_assert(vals[0].u64 == 0);
  1972. tt_assert(vals[1].u64 == 0);
  1973. done:
  1974. ;
  1975. }
  1976. static void
  1977. test_dir_random_weighted(void *testdata)
  1978. {
  1979. int histogram[10];
  1980. uint64_t vals[10] = {3,1,2,4,6,0,7,5,8,9}, total=0;
  1981. u64_dbl_t inp[10];
  1982. int i, choice;
  1983. const int n = 50000;
  1984. double max_sq_error;
  1985. (void) testdata;
  1986. /* Try a ten-element array with values from 0 through 10. The values are
  1987. * in a scrambled order to make sure we don't depend on order. */
  1988. memset(histogram,0,sizeof(histogram));
  1989. for (i=0; i<10; ++i) {
  1990. inp[i].u64 = vals[i];
  1991. total += vals[i];
  1992. }
  1993. tt_u64_op(total, OP_EQ, 45);
  1994. for (i=0; i<n; ++i) {
  1995. choice = choose_array_element_by_weight(inp, 10);
  1996. tt_int_op(choice, OP_GE, 0);
  1997. tt_int_op(choice, OP_LT, 10);
  1998. histogram[choice]++;
  1999. }
  2000. /* Now see if we chose things about frequently enough. */
  2001. max_sq_error = 0;
  2002. for (i=0; i<10; ++i) {
  2003. int expected = (int)(n*vals[i]/total);
  2004. double frac_diff = 0, sq;
  2005. TT_BLATHER((" %d : %5d vs %5d\n", (int)vals[i], histogram[i], expected));
  2006. if (expected)
  2007. frac_diff = (histogram[i] - expected) / ((double)expected);
  2008. else
  2009. tt_int_op(histogram[i], OP_EQ, 0);
  2010. sq = frac_diff * frac_diff;
  2011. if (sq > max_sq_error)
  2012. max_sq_error = sq;
  2013. }
  2014. /* It should almost always be much much less than this. If you want to
  2015. * figure out the odds, please feel free. */
  2016. tt_double_op(max_sq_error, OP_LT, .05);
  2017. /* Now try a singleton; do we choose it? */
  2018. for (i = 0; i < 100; ++i) {
  2019. choice = choose_array_element_by_weight(inp, 1);
  2020. tt_int_op(choice, OP_EQ, 0);
  2021. }
  2022. /* Now try an array of zeros. We should choose randomly. */
  2023. memset(histogram,0,sizeof(histogram));
  2024. for (i = 0; i < 5; ++i)
  2025. inp[i].u64 = 0;
  2026. for (i = 0; i < n; ++i) {
  2027. choice = choose_array_element_by_weight(inp, 5);
  2028. tt_int_op(choice, OP_GE, 0);
  2029. tt_int_op(choice, OP_LT, 5);
  2030. histogram[choice]++;
  2031. }
  2032. /* Now see if we chose things about frequently enough. */
  2033. max_sq_error = 0;
  2034. for (i=0; i<5; ++i) {
  2035. int expected = n/5;
  2036. double frac_diff = 0, sq;
  2037. TT_BLATHER((" %d : %5d vs %5d\n", (int)vals[i], histogram[i], expected));
  2038. frac_diff = (histogram[i] - expected) / ((double)expected);
  2039. sq = frac_diff * frac_diff;
  2040. if (sq > max_sq_error)
  2041. max_sq_error = sq;
  2042. }
  2043. /* It should almost always be much much less than this. If you want to
  2044. * figure out the odds, please feel free. */
  2045. tt_double_op(max_sq_error, OP_LT, .05);
  2046. done:
  2047. ;
  2048. }
  2049. /* Function pointers for test_dir_clip_unmeasured_bw_kb() */
  2050. static uint32_t alternate_clip_bw = 0;
  2051. /**
  2052. * Generate a routerstatus for clip_unmeasured_bw_kb test; based on the
  2053. * v3_networkstatus ones.
  2054. */
  2055. static vote_routerstatus_t *
  2056. gen_routerstatus_for_umbw(int idx, time_t now)
  2057. {
  2058. vote_routerstatus_t *vrs = NULL;
  2059. routerstatus_t *rs;
  2060. tor_addr_t addr_ipv6;
  2061. uint32_t max_unmeasured_bw_kb = (alternate_clip_bw > 0) ?
  2062. alternate_clip_bw : DEFAULT_MAX_UNMEASURED_BW_KB;
  2063. switch (idx) {
  2064. case 0:
  2065. /* Generate the first routerstatus. */
  2066. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  2067. rs = &vrs->status;
  2068. vrs->version = tor_strdup("0.1.2.14");
  2069. rs->published_on = now-1500;
  2070. strlcpy(rs->nickname, "router2", sizeof(rs->nickname));
  2071. memset(rs->identity_digest, 3, DIGEST_LEN);
  2072. memset(rs->descriptor_digest, 78, DIGEST_LEN);
  2073. rs->addr = 0x99008801;
  2074. rs->or_port = 443;
  2075. rs->dir_port = 8000;
  2076. /* all flags but running cleared */
  2077. rs->is_flagged_running = 1;
  2078. /*
  2079. * This one has measured bandwidth below the clip cutoff, and
  2080. * so shouldn't be clipped; we'll have to test that it isn't
  2081. * later.
  2082. */
  2083. vrs->has_measured_bw = 1;
  2084. rs->has_bandwidth = 1;
  2085. vrs->measured_bw_kb = rs->bandwidth_kb = max_unmeasured_bw_kb / 2;
  2086. break;
  2087. case 1:
  2088. /* Generate the second routerstatus. */
  2089. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  2090. rs = &vrs->status;
  2091. vrs->version = tor_strdup("0.2.0.5");
  2092. rs->published_on = now-1000;
  2093. strlcpy(rs->nickname, "router1", sizeof(rs->nickname));
  2094. memset(rs->identity_digest, 5, DIGEST_LEN);
  2095. memset(rs->descriptor_digest, 77, DIGEST_LEN);
  2096. rs->addr = 0x99009901;
  2097. rs->or_port = 443;
  2098. rs->dir_port = 0;
  2099. tor_addr_parse(&addr_ipv6, "[1:2:3::4]");
  2100. tor_addr_copy(&rs->ipv6_addr, &addr_ipv6);
  2101. rs->ipv6_orport = 4711;
  2102. rs->is_exit = rs->is_stable = rs->is_fast = rs->is_flagged_running =
  2103. rs->is_valid = rs->is_possible_guard = 1;
  2104. /*
  2105. * This one has measured bandwidth above the clip cutoff, and
  2106. * so shouldn't be clipped; we'll have to test that it isn't
  2107. * later.
  2108. */
  2109. vrs->has_measured_bw = 1;
  2110. rs->has_bandwidth = 1;
  2111. vrs->measured_bw_kb = rs->bandwidth_kb = 2 * max_unmeasured_bw_kb;
  2112. break;
  2113. case 2:
  2114. /* Generate the third routerstatus. */
  2115. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  2116. rs = &vrs->status;
  2117. vrs->version = tor_strdup("0.1.0.3");
  2118. rs->published_on = now-1000;
  2119. strlcpy(rs->nickname, "router3", sizeof(rs->nickname));
  2120. memset(rs->identity_digest, 0x33, DIGEST_LEN);
  2121. memset(rs->descriptor_digest, 79, DIGEST_LEN);
  2122. rs->addr = 0xAA009901;
  2123. rs->or_port = 400;
  2124. rs->dir_port = 9999;
  2125. rs->is_authority = rs->is_exit = rs->is_stable = rs->is_fast =
  2126. rs->is_flagged_running = rs->is_valid =
  2127. rs->is_possible_guard = 1;
  2128. /*
  2129. * This one has unmeasured bandwidth above the clip cutoff, and
  2130. * so should be clipped; we'll have to test that it isn't
  2131. * later.
  2132. */
  2133. vrs->has_measured_bw = 0;
  2134. rs->has_bandwidth = 1;
  2135. vrs->measured_bw_kb = 0;
  2136. rs->bandwidth_kb = 2 * max_unmeasured_bw_kb;
  2137. break;
  2138. case 3:
  2139. /* Generate a fourth routerstatus that is not running. */
  2140. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  2141. rs = &vrs->status;
  2142. vrs->version = tor_strdup("0.1.6.3");
  2143. rs->published_on = now-1000;
  2144. strlcpy(rs->nickname, "router4", sizeof(rs->nickname));
  2145. memset(rs->identity_digest, 0x34, DIGEST_LEN);
  2146. memset(rs->descriptor_digest, 47, DIGEST_LEN);
  2147. rs->addr = 0xC0000203;
  2148. rs->or_port = 500;
  2149. rs->dir_port = 1999;
  2150. /* all flags but running cleared */
  2151. rs->is_flagged_running = 1;
  2152. /*
  2153. * This one has unmeasured bandwidth below the clip cutoff, and
  2154. * so shouldn't be clipped; we'll have to test that it isn't
  2155. * later.
  2156. */
  2157. vrs->has_measured_bw = 0;
  2158. rs->has_bandwidth = 1;
  2159. vrs->measured_bw_kb = 0;
  2160. rs->bandwidth_kb = max_unmeasured_bw_kb / 2;
  2161. break;
  2162. case 4:
  2163. /* No more for this test; return NULL */
  2164. vrs = NULL;
  2165. break;
  2166. default:
  2167. /* Shouldn't happen */
  2168. tt_assert(0);
  2169. }
  2170. if (vrs) {
  2171. vrs->microdesc = tor_malloc_zero(sizeof(vote_microdesc_hash_t));
  2172. tor_asprintf(&vrs->microdesc->microdesc_hash_line,
  2173. "m 9,10,11,12,13,14,15,16,17 "
  2174. "sha256=xyzajkldsdsajdadlsdjaslsdksdjlsdjsdaskdaaa%d\n",
  2175. idx);
  2176. }
  2177. done:
  2178. return vrs;
  2179. }
  2180. /** Apply tweaks to the vote list for each voter; for the umbw test this is
  2181. * just adding the right consensus methods to let clipping happen */
  2182. static int
  2183. vote_tweaks_for_umbw(networkstatus_t *v, int voter, time_t now)
  2184. {
  2185. char *maxbw_param = NULL;
  2186. int rv = 0;
  2187. tt_assert(v);
  2188. (void)voter;
  2189. (void)now;
  2190. tt_assert(v->supported_methods);
  2191. SMARTLIST_FOREACH(v->supported_methods, char *, c, tor_free(c));
  2192. smartlist_clear(v->supported_methods);
  2193. /* Method 17 is MIN_METHOD_TO_CLIP_UNMEASURED_BW_KB */
  2194. smartlist_split_string(v->supported_methods,
  2195. "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17",
  2196. NULL, 0, -1);
  2197. /* If we're using a non-default clip bandwidth, add it to net_params */
  2198. if (alternate_clip_bw > 0) {
  2199. tor_asprintf(&maxbw_param, "maxunmeasuredbw=%u", alternate_clip_bw);
  2200. tt_assert(maxbw_param);
  2201. if (maxbw_param) {
  2202. smartlist_add(v->net_params, maxbw_param);
  2203. rv = 1;
  2204. }
  2205. }
  2206. done:
  2207. return rv;
  2208. }
  2209. /**
  2210. * Test a parsed vote_routerstatus_t for umbw test.
  2211. */
  2212. static void
  2213. test_vrs_for_umbw(vote_routerstatus_t *vrs, int voter, time_t now)
  2214. {
  2215. routerstatus_t *rs;
  2216. tor_addr_t addr_ipv6;
  2217. uint32_t max_unmeasured_bw_kb = (alternate_clip_bw > 0) ?
  2218. alternate_clip_bw : DEFAULT_MAX_UNMEASURED_BW_KB;
  2219. (void)voter;
  2220. tt_assert(vrs);
  2221. rs = &(vrs->status);
  2222. tt_assert(rs);
  2223. /* Split out by digests to test */
  2224. if (tor_memeq(rs->identity_digest,
  2225. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  2226. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  2227. DIGEST_LEN)) {
  2228. /*
  2229. * Check the first routerstatus - measured bandwidth below the clip
  2230. * cutoff.
  2231. */
  2232. tt_str_op(vrs->version,OP_EQ, "0.1.2.14");
  2233. tt_int_op(rs->published_on,OP_EQ, now-1500);
  2234. tt_str_op(rs->nickname,OP_EQ, "router2");
  2235. tt_mem_op(rs->identity_digest,OP_EQ,
  2236. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  2237. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  2238. DIGEST_LEN);
  2239. tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN);
  2240. tt_int_op(rs->addr,OP_EQ, 0x99008801);
  2241. tt_int_op(rs->or_port,OP_EQ, 443);
  2242. tt_int_op(rs->dir_port,OP_EQ, 8000);
  2243. tt_assert(rs->has_bandwidth);
  2244. tt_assert(vrs->has_measured_bw);
  2245. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2);
  2246. tt_int_op(vrs->measured_bw_kb,OP_EQ, max_unmeasured_bw_kb / 2);
  2247. } else if (tor_memeq(rs->identity_digest,
  2248. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  2249. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  2250. DIGEST_LEN)) {
  2251. /*
  2252. * Check the second routerstatus - measured bandwidth above the clip
  2253. * cutoff.
  2254. */
  2255. tt_str_op(vrs->version,OP_EQ, "0.2.0.5");
  2256. tt_int_op(rs->published_on,OP_EQ, now-1000);
  2257. tt_str_op(rs->nickname,OP_EQ, "router1");
  2258. tt_mem_op(rs->identity_digest,OP_EQ,
  2259. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  2260. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  2261. DIGEST_LEN);
  2262. tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN);
  2263. tt_int_op(rs->addr,OP_EQ, 0x99009901);
  2264. tt_int_op(rs->or_port,OP_EQ, 443);
  2265. tt_int_op(rs->dir_port,OP_EQ, 0);
  2266. tor_addr_parse(&addr_ipv6, "[1:2:3::4]");
  2267. tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6));
  2268. tt_int_op(rs->ipv6_orport,OP_EQ, 4711);
  2269. tt_assert(rs->has_bandwidth);
  2270. tt_assert(vrs->has_measured_bw);
  2271. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb * 2);
  2272. tt_int_op(vrs->measured_bw_kb,OP_EQ, max_unmeasured_bw_kb * 2);
  2273. } else if (tor_memeq(rs->identity_digest,
  2274. "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33"
  2275. "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33",
  2276. DIGEST_LEN)) {
  2277. /*
  2278. * Check the third routerstatus - unmeasured bandwidth above the clip
  2279. * cutoff; this one should be clipped later on in the consensus, but
  2280. * appears unclipped in the vote.
  2281. */
  2282. tt_assert(rs->has_bandwidth);
  2283. tt_assert(!(vrs->has_measured_bw));
  2284. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb * 2);
  2285. tt_int_op(vrs->measured_bw_kb,OP_EQ, 0);
  2286. } else if (tor_memeq(rs->identity_digest,
  2287. "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34"
  2288. "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34",
  2289. DIGEST_LEN)) {
  2290. /*
  2291. * Check the fourth routerstatus - unmeasured bandwidth below the clip
  2292. * cutoff; this one should not be clipped.
  2293. */
  2294. tt_assert(rs->has_bandwidth);
  2295. tt_assert(!(vrs->has_measured_bw));
  2296. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2);
  2297. tt_int_op(vrs->measured_bw_kb,OP_EQ, 0);
  2298. } else {
  2299. tt_assert(0);
  2300. }
  2301. done:
  2302. return;
  2303. }
  2304. /**
  2305. * Test a consensus for v3_networkstatus_test
  2306. */
  2307. static void
  2308. test_consensus_for_umbw(networkstatus_t *con, time_t now)
  2309. {
  2310. (void)now;
  2311. tt_assert(con);
  2312. tt_assert(!con->cert);
  2313. // tt_assert(con->consensus_method >= MIN_METHOD_TO_CLIP_UNMEASURED_BW_KB);
  2314. tt_assert(con->consensus_method >= 16);
  2315. tt_int_op(4,OP_EQ, smartlist_len(con->routerstatus_list));
  2316. /* There should be four listed routers; all voters saw the same in this */
  2317. done:
  2318. return;
  2319. }
  2320. /**
  2321. * Test a router list entry for umbw test
  2322. */
  2323. static void
  2324. test_routerstatus_for_umbw(routerstatus_t *rs, time_t now)
  2325. {
  2326. tor_addr_t addr_ipv6;
  2327. uint32_t max_unmeasured_bw_kb = (alternate_clip_bw > 0) ?
  2328. alternate_clip_bw : DEFAULT_MAX_UNMEASURED_BW_KB;
  2329. tt_assert(rs);
  2330. /* There should be four listed routers, as constructed above */
  2331. if (tor_memeq(rs->identity_digest,
  2332. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  2333. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  2334. DIGEST_LEN)) {
  2335. tt_mem_op(rs->identity_digest,OP_EQ,
  2336. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3"
  2337. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  2338. DIGEST_LEN);
  2339. tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN);
  2340. tt_assert(!rs->is_authority);
  2341. tt_assert(!rs->is_exit);
  2342. tt_assert(!rs->is_fast);
  2343. tt_assert(!rs->is_possible_guard);
  2344. tt_assert(!rs->is_stable);
  2345. /* (If it wasn't running it wouldn't be here) */
  2346. tt_assert(rs->is_flagged_running);
  2347. tt_assert(!rs->is_valid);
  2348. tt_assert(!rs->is_named);
  2349. /* This one should have measured bandwidth below the clip cutoff */
  2350. tt_assert(rs->has_bandwidth);
  2351. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2);
  2352. tt_assert(!(rs->bw_is_unmeasured));
  2353. } else if (tor_memeq(rs->identity_digest,
  2354. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  2355. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  2356. DIGEST_LEN)) {
  2357. /* This one showed up in 3 digests. Twice with ID 'M', once with 'Z'. */
  2358. tt_mem_op(rs->identity_digest,OP_EQ,
  2359. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5"
  2360. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  2361. DIGEST_LEN);
  2362. tt_str_op(rs->nickname,OP_EQ, "router1");
  2363. tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN);
  2364. tt_int_op(rs->published_on,OP_EQ, now-1000);
  2365. tt_int_op(rs->addr,OP_EQ, 0x99009901);
  2366. tt_int_op(rs->or_port,OP_EQ, 443);
  2367. tt_int_op(rs->dir_port,OP_EQ, 0);
  2368. tor_addr_parse(&addr_ipv6, "[1:2:3::4]");
  2369. tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6));
  2370. tt_int_op(rs->ipv6_orport,OP_EQ, 4711);
  2371. tt_assert(!rs->is_authority);
  2372. tt_assert(rs->is_exit);
  2373. tt_assert(rs->is_fast);
  2374. tt_assert(rs->is_possible_guard);
  2375. tt_assert(rs->is_stable);
  2376. tt_assert(rs->is_flagged_running);
  2377. tt_assert(rs->is_valid);
  2378. tt_assert(!rs->is_named);
  2379. /* This one should have measured bandwidth above the clip cutoff */
  2380. tt_assert(rs->has_bandwidth);
  2381. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb * 2);
  2382. tt_assert(!(rs->bw_is_unmeasured));
  2383. } else if (tor_memeq(rs->identity_digest,
  2384. "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33"
  2385. "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33",
  2386. DIGEST_LEN)) {
  2387. /*
  2388. * This one should have unmeasured bandwidth above the clip cutoff,
  2389. * and so should be clipped
  2390. */
  2391. tt_assert(rs->has_bandwidth);
  2392. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb);
  2393. tt_assert(rs->bw_is_unmeasured);
  2394. } else if (tor_memeq(rs->identity_digest,
  2395. "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34"
  2396. "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34",
  2397. DIGEST_LEN)) {
  2398. /*
  2399. * This one should have unmeasured bandwidth below the clip cutoff,
  2400. * and so should not be clipped
  2401. */
  2402. tt_assert(rs->has_bandwidth);
  2403. tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2);
  2404. tt_assert(rs->bw_is_unmeasured);
  2405. } else {
  2406. /* Weren't expecting this... */
  2407. tt_assert(0);
  2408. }
  2409. done:
  2410. return;
  2411. }
  2412. /**
  2413. * Compute a consensus involving clipping unmeasured bandwidth with consensus
  2414. * method 17; this uses the same test_a_networkstatus() function that the
  2415. * v3_networkstatus test uses.
  2416. */
  2417. static void
  2418. test_dir_clip_unmeasured_bw_kb(void *arg)
  2419. {
  2420. /* Run the test with the default clip bandwidth */
  2421. (void)arg;
  2422. alternate_clip_bw = 0;
  2423. test_a_networkstatus(gen_routerstatus_for_umbw,
  2424. vote_tweaks_for_umbw,
  2425. test_vrs_for_umbw,
  2426. test_consensus_for_umbw,
  2427. test_routerstatus_for_umbw);
  2428. }
  2429. /**
  2430. * This version of test_dir_clip_unmeasured_bw_kb() uses a non-default choice
  2431. * of clip bandwidth.
  2432. */
  2433. static void
  2434. test_dir_clip_unmeasured_bw_kb_alt(void *arg)
  2435. {
  2436. /*
  2437. * Try a different one; this value is chosen so that the below-the-cutoff
  2438. * unmeasured nodes the test uses, at alternate_clip_bw / 2, will be above
  2439. * DEFAULT_MAX_UNMEASURED_BW_KB and if the consensus incorrectly uses that
  2440. * cutoff it will fail the test.
  2441. */
  2442. (void)arg;
  2443. alternate_clip_bw = 3 * DEFAULT_MAX_UNMEASURED_BW_KB;
  2444. test_a_networkstatus(gen_routerstatus_for_umbw,
  2445. vote_tweaks_for_umbw,
  2446. test_vrs_for_umbw,
  2447. test_consensus_for_umbw,
  2448. test_routerstatus_for_umbw);
  2449. }
  2450. static void
  2451. test_dir_fmt_control_ns(void *arg)
  2452. {
  2453. char *s = NULL;
  2454. routerstatus_t rs;
  2455. (void)arg;
  2456. memset(&rs, 0, sizeof(rs));
  2457. rs.published_on = 1364925198;
  2458. strlcpy(rs.nickname, "TetsuoMilk", sizeof(rs.nickname));
  2459. memcpy(rs.identity_digest, "Stately, plump Buck ", DIGEST_LEN);
  2460. memcpy(rs.descriptor_digest, "Mulligan came up fro", DIGEST_LEN);
  2461. rs.addr = 0x20304050;
  2462. rs.or_port = 9001;
  2463. rs.dir_port = 9002;
  2464. rs.is_exit = 1;
  2465. rs.is_fast = 1;
  2466. rs.is_flagged_running = 1;
  2467. rs.has_bandwidth = 1;
  2468. rs.is_v2_dir = 1;
  2469. rs.bandwidth_kb = 1000;
  2470. s = networkstatus_getinfo_helper_single(&rs);
  2471. tt_assert(s);
  2472. tt_str_op(s, OP_EQ,
  2473. "r TetsuoMilk U3RhdGVseSwgcGx1bXAgQnVjayA "
  2474. "TXVsbGlnYW4gY2FtZSB1cCBmcm8 2013-04-02 17:53:18 "
  2475. "32.48.64.80 9001 9002\n"
  2476. "s Exit Fast Running V2Dir\n"
  2477. "w Bandwidth=1000\n");
  2478. done:
  2479. tor_free(s);
  2480. }
  2481. static int mock_get_options_calls = 0;
  2482. static or_options_t *mock_options = NULL;
  2483. static void
  2484. reset_options(or_options_t *options, int *get_options_calls)
  2485. {
  2486. memset(options, 0, sizeof(or_options_t));
  2487. options->TestingTorNetwork = 1;
  2488. *get_options_calls = 0;
  2489. }
  2490. static const or_options_t *
  2491. mock_get_options(void)
  2492. {
  2493. ++mock_get_options_calls;
  2494. tor_assert(mock_options);
  2495. return mock_options;
  2496. }
  2497. static void
  2498. reset_routerstatus(routerstatus_t *rs,
  2499. const char *hex_identity_digest,
  2500. int32_t ipv4_addr)
  2501. {
  2502. memset(rs, 0, sizeof(routerstatus_t));
  2503. base16_decode(rs->identity_digest, sizeof(rs->identity_digest),
  2504. hex_identity_digest, HEX_DIGEST_LEN);
  2505. /* A zero address matches everything, so the address needs to be set.
  2506. * But the specific value is irrelevant. */
  2507. rs->addr = ipv4_addr;
  2508. }
  2509. #define ROUTER_A_ID_STR "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
  2510. #define ROUTER_A_IPV4 0xAA008801
  2511. #define ROUTER_B_ID_STR "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB"
  2512. #define ROUTER_B_IPV4 0xBB008801
  2513. #define ROUTERSET_ALL_STR "*"
  2514. #define ROUTERSET_A_STR ROUTER_A_ID_STR
  2515. #define ROUTERSET_NONE_STR ""
  2516. /*
  2517. * Test that dirserv_set_routerstatus_testing sets router flags correctly
  2518. * Using "*" sets flags on A and B
  2519. * Using "A" sets flags on A
  2520. * Using "" sets flags on Neither
  2521. * If the router is not included:
  2522. * - if *Strict is set, the flag is set to 0,
  2523. * - otherwise, the flag is not modified. */
  2524. static void
  2525. test_dir_dirserv_set_routerstatus_testing(void *arg)
  2526. {
  2527. (void)arg;
  2528. /* Init options */
  2529. mock_options = malloc(sizeof(or_options_t));
  2530. reset_options(mock_options, &mock_get_options_calls);
  2531. MOCK(get_options, mock_get_options);
  2532. /* Init routersets */
  2533. routerset_t *routerset_all = routerset_new();
  2534. routerset_parse(routerset_all, ROUTERSET_ALL_STR, "All routers");
  2535. routerset_t *routerset_a = routerset_new();
  2536. routerset_parse(routerset_a, ROUTERSET_A_STR, "Router A only");
  2537. routerset_t *routerset_none = routerset_new();
  2538. /* Routersets are empty when provided by routerset_new(),
  2539. * so this is not strictly necessary */
  2540. routerset_parse(routerset_none, ROUTERSET_NONE_STR, "No routers");
  2541. /* Init routerstatuses */
  2542. routerstatus_t *rs_a = malloc(sizeof(routerstatus_t));
  2543. reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4);
  2544. routerstatus_t *rs_b = malloc(sizeof(routerstatus_t));
  2545. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2546. /* Sanity check that routersets correspond to routerstatuses.
  2547. * Return values are {2, 3, 4} */
  2548. /* We want 3 ("*" means match all addresses) */
  2549. tt_assert(routerset_contains_routerstatus(routerset_all, rs_a, 0) == 3);
  2550. tt_assert(routerset_contains_routerstatus(routerset_all, rs_b, 0) == 3);
  2551. /* We want 4 (match id_digest [or nickname]) */
  2552. tt_assert(routerset_contains_routerstatus(routerset_a, rs_a, 0) == 4);
  2553. tt_assert(routerset_contains_routerstatus(routerset_a, rs_b, 0) == 0);
  2554. tt_assert(routerset_contains_routerstatus(routerset_none, rs_a, 0) == 0);
  2555. tt_assert(routerset_contains_routerstatus(routerset_none, rs_b, 0) == 0);
  2556. /* Check that "*" sets flags on all routers: Exit
  2557. * Check the flags aren't being confused with each other */
  2558. reset_options(mock_options, &mock_get_options_calls);
  2559. reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4);
  2560. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2561. mock_options->TestingDirAuthVoteExit = routerset_all;
  2562. mock_options->TestingDirAuthVoteExitIsStrict = 0;
  2563. dirserv_set_routerstatus_testing(rs_a);
  2564. tt_assert(mock_get_options_calls == 1);
  2565. dirserv_set_routerstatus_testing(rs_b);
  2566. tt_assert(mock_get_options_calls == 2);
  2567. tt_assert(rs_a->is_exit == 1);
  2568. tt_assert(rs_b->is_exit == 1);
  2569. /* Be paranoid - check no other flags are set */
  2570. tt_assert(rs_a->is_possible_guard == 0);
  2571. tt_assert(rs_b->is_possible_guard == 0);
  2572. tt_assert(rs_a->is_hs_dir == 0);
  2573. tt_assert(rs_b->is_hs_dir == 0);
  2574. /* Check that "*" sets flags on all routers: Guard & HSDir
  2575. * Cover the remaining flags in one test */
  2576. reset_options(mock_options, &mock_get_options_calls);
  2577. reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4);
  2578. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2579. mock_options->TestingDirAuthVoteGuard = routerset_all;
  2580. mock_options->TestingDirAuthVoteGuardIsStrict = 0;
  2581. mock_options->TestingDirAuthVoteHSDir = routerset_all;
  2582. mock_options->TestingDirAuthVoteHSDirIsStrict = 0;
  2583. dirserv_set_routerstatus_testing(rs_a);
  2584. tt_assert(mock_get_options_calls == 1);
  2585. dirserv_set_routerstatus_testing(rs_b);
  2586. tt_assert(mock_get_options_calls == 2);
  2587. tt_assert(rs_a->is_possible_guard == 1);
  2588. tt_assert(rs_b->is_possible_guard == 1);
  2589. tt_assert(rs_a->is_hs_dir == 1);
  2590. tt_assert(rs_b->is_hs_dir == 1);
  2591. /* Be paranoid - check exit isn't set */
  2592. tt_assert(rs_a->is_exit == 0);
  2593. tt_assert(rs_b->is_exit == 0);
  2594. /* Check routerset A sets all flags on router A,
  2595. * but leaves router B unmodified */
  2596. reset_options(mock_options, &mock_get_options_calls);
  2597. reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4);
  2598. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2599. mock_options->TestingDirAuthVoteExit = routerset_a;
  2600. mock_options->TestingDirAuthVoteExitIsStrict = 0;
  2601. mock_options->TestingDirAuthVoteGuard = routerset_a;
  2602. mock_options->TestingDirAuthVoteGuardIsStrict = 0;
  2603. mock_options->TestingDirAuthVoteHSDir = routerset_a;
  2604. mock_options->TestingDirAuthVoteHSDirIsStrict = 0;
  2605. dirserv_set_routerstatus_testing(rs_a);
  2606. tt_assert(mock_get_options_calls == 1);
  2607. dirserv_set_routerstatus_testing(rs_b);
  2608. tt_assert(mock_get_options_calls == 2);
  2609. tt_assert(rs_a->is_exit == 1);
  2610. tt_assert(rs_b->is_exit == 0);
  2611. tt_assert(rs_a->is_possible_guard == 1);
  2612. tt_assert(rs_b->is_possible_guard == 0);
  2613. tt_assert(rs_a->is_hs_dir == 1);
  2614. tt_assert(rs_b->is_hs_dir == 0);
  2615. /* Check routerset A unsets all flags on router B when Strict is set */
  2616. reset_options(mock_options, &mock_get_options_calls);
  2617. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2618. mock_options->TestingDirAuthVoteExit = routerset_a;
  2619. mock_options->TestingDirAuthVoteExitIsStrict = 1;
  2620. mock_options->TestingDirAuthVoteGuard = routerset_a;
  2621. mock_options->TestingDirAuthVoteGuardIsStrict = 1;
  2622. mock_options->TestingDirAuthVoteHSDir = routerset_a;
  2623. mock_options->TestingDirAuthVoteHSDirIsStrict = 1;
  2624. rs_b->is_exit = 1;
  2625. rs_b->is_possible_guard = 1;
  2626. rs_b->is_hs_dir = 1;
  2627. dirserv_set_routerstatus_testing(rs_b);
  2628. tt_assert(mock_get_options_calls == 1);
  2629. tt_assert(rs_b->is_exit == 0);
  2630. tt_assert(rs_b->is_possible_guard == 0);
  2631. tt_assert(rs_b->is_hs_dir == 0);
  2632. /* Check routerset A doesn't modify flags on router B without Strict set */
  2633. reset_options(mock_options, &mock_get_options_calls);
  2634. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2635. mock_options->TestingDirAuthVoteExit = routerset_a;
  2636. mock_options->TestingDirAuthVoteExitIsStrict = 0;
  2637. mock_options->TestingDirAuthVoteGuard = routerset_a;
  2638. mock_options->TestingDirAuthVoteGuardIsStrict = 0;
  2639. mock_options->TestingDirAuthVoteHSDir = routerset_a;
  2640. mock_options->TestingDirAuthVoteHSDirIsStrict = 0;
  2641. rs_b->is_exit = 1;
  2642. rs_b->is_possible_guard = 1;
  2643. rs_b->is_hs_dir = 1;
  2644. dirserv_set_routerstatus_testing(rs_b);
  2645. tt_assert(mock_get_options_calls == 1);
  2646. tt_assert(rs_b->is_exit == 1);
  2647. tt_assert(rs_b->is_possible_guard == 1);
  2648. tt_assert(rs_b->is_hs_dir == 1);
  2649. /* Check the empty routerset zeroes all flags
  2650. * on routers A & B with Strict set */
  2651. reset_options(mock_options, &mock_get_options_calls);
  2652. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2653. mock_options->TestingDirAuthVoteExit = routerset_none;
  2654. mock_options->TestingDirAuthVoteExitIsStrict = 1;
  2655. mock_options->TestingDirAuthVoteGuard = routerset_none;
  2656. mock_options->TestingDirAuthVoteGuardIsStrict = 1;
  2657. mock_options->TestingDirAuthVoteHSDir = routerset_none;
  2658. mock_options->TestingDirAuthVoteHSDirIsStrict = 1;
  2659. rs_b->is_exit = 1;
  2660. rs_b->is_possible_guard = 1;
  2661. rs_b->is_hs_dir = 1;
  2662. dirserv_set_routerstatus_testing(rs_b);
  2663. tt_assert(mock_get_options_calls == 1);
  2664. tt_assert(rs_b->is_exit == 0);
  2665. tt_assert(rs_b->is_possible_guard == 0);
  2666. tt_assert(rs_b->is_hs_dir == 0);
  2667. /* Check the empty routerset doesn't modify any flags
  2668. * on A or B without Strict set */
  2669. reset_options(mock_options, &mock_get_options_calls);
  2670. reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4);
  2671. reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4);
  2672. mock_options->TestingDirAuthVoteExit = routerset_none;
  2673. mock_options->TestingDirAuthVoteExitIsStrict = 0;
  2674. mock_options->TestingDirAuthVoteGuard = routerset_none;
  2675. mock_options->TestingDirAuthVoteGuardIsStrict = 0;
  2676. mock_options->TestingDirAuthVoteHSDir = routerset_none;
  2677. mock_options->TestingDirAuthVoteHSDirIsStrict = 0;
  2678. rs_b->is_exit = 1;
  2679. rs_b->is_possible_guard = 1;
  2680. rs_b->is_hs_dir = 1;
  2681. dirserv_set_routerstatus_testing(rs_a);
  2682. tt_assert(mock_get_options_calls == 1);
  2683. dirserv_set_routerstatus_testing(rs_b);
  2684. tt_assert(mock_get_options_calls == 2);
  2685. tt_assert(rs_a->is_exit == 0);
  2686. tt_assert(rs_a->is_possible_guard == 0);
  2687. tt_assert(rs_a->is_hs_dir == 0);
  2688. tt_assert(rs_b->is_exit == 1);
  2689. tt_assert(rs_b->is_possible_guard == 1);
  2690. tt_assert(rs_b->is_hs_dir == 1);
  2691. done:
  2692. free(mock_options);
  2693. mock_options = NULL;
  2694. UNMOCK(get_options);
  2695. routerset_free(routerset_all);
  2696. routerset_free(routerset_a);
  2697. routerset_free(routerset_none);
  2698. free(rs_a);
  2699. free(rs_b);
  2700. }
  2701. static void
  2702. test_dir_http_handling(void *args)
  2703. {
  2704. char *url = NULL;
  2705. (void)args;
  2706. /* Parse http url tests: */
  2707. /* Good headers */
  2708. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.1\r\n"
  2709. "Host: example.com\r\n"
  2710. "User-Agent: Mozilla/5.0 (Windows;"
  2711. " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n",
  2712. &url),OP_EQ, 0);
  2713. tt_str_op(url,OP_EQ, "/tor/a/b/c.txt");
  2714. tor_free(url);
  2715. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.0\r\n", &url),OP_EQ, 0);
  2716. tt_str_op(url,OP_EQ, "/tor/a/b/c.txt");
  2717. tor_free(url);
  2718. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.600\r\n", &url),
  2719. OP_EQ, 0);
  2720. tt_str_op(url,OP_EQ, "/tor/a/b/c.txt");
  2721. tor_free(url);
  2722. /* Should prepend '/tor/' to url if required */
  2723. tt_int_op(parse_http_url("GET /a/b/c.txt HTTP/1.1\r\n"
  2724. "Host: example.com\r\n"
  2725. "User-Agent: Mozilla/5.0 (Windows;"
  2726. " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n",
  2727. &url),OP_EQ, 0);
  2728. tt_str_op(url,OP_EQ, "/tor/a/b/c.txt");
  2729. tor_free(url);
  2730. /* Bad headers -- no HTTP/1.x*/
  2731. tt_int_op(parse_http_url("GET /a/b/c.txt\r\n"
  2732. "Host: example.com\r\n"
  2733. "User-Agent: Mozilla/5.0 (Windows;"
  2734. " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n",
  2735. &url),OP_EQ, -1);
  2736. tt_assert(!url);
  2737. /* Bad headers */
  2738. tt_int_op(parse_http_url("GET /a/b/c.txt\r\n"
  2739. "Host: example.com\r\n"
  2740. "User-Agent: Mozilla/5.0 (Windows;"
  2741. " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n",
  2742. &url),OP_EQ, -1);
  2743. tt_assert(!url);
  2744. tt_int_op(parse_http_url("GET /tor/a/b/c.txt", &url),OP_EQ, -1);
  2745. tt_assert(!url);
  2746. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.1", &url),OP_EQ, -1);
  2747. tt_assert(!url);
  2748. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.1x\r\n", &url),
  2749. OP_EQ, -1);
  2750. tt_assert(!url);
  2751. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.", &url),OP_EQ, -1);
  2752. tt_assert(!url);
  2753. tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.\r", &url),OP_EQ, -1);
  2754. tt_assert(!url);
  2755. done:
  2756. tor_free(url);
  2757. }
  2758. static void
  2759. test_dir_purpose_needs_anonymity(void *arg)
  2760. {
  2761. (void)arg;
  2762. tt_int_op(1, ==, purpose_needs_anonymity(0, ROUTER_PURPOSE_BRIDGE));
  2763. tt_int_op(1, ==, purpose_needs_anonymity(0, ROUTER_PURPOSE_GENERAL));
  2764. tt_int_op(0, ==, purpose_needs_anonymity(DIR_PURPOSE_FETCH_MICRODESC,
  2765. ROUTER_PURPOSE_GENERAL));
  2766. done: ;
  2767. }
  2768. static void
  2769. test_dir_fetch_type(void *arg)
  2770. {
  2771. (void)arg;
  2772. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_EXTRAINFO, ROUTER_PURPOSE_BRIDGE,
  2773. NULL), OP_EQ, EXTRAINFO_DIRINFO | BRIDGE_DIRINFO);
  2774. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_EXTRAINFO, ROUTER_PURPOSE_GENERAL,
  2775. NULL), OP_EQ, EXTRAINFO_DIRINFO | V3_DIRINFO);
  2776. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_SERVERDESC, ROUTER_PURPOSE_BRIDGE,
  2777. NULL), OP_EQ, BRIDGE_DIRINFO);
  2778. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_SERVERDESC,
  2779. ROUTER_PURPOSE_GENERAL, NULL), OP_EQ, V3_DIRINFO);
  2780. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_STATUS_VOTE,
  2781. ROUTER_PURPOSE_GENERAL, NULL), OP_EQ, V3_DIRINFO);
  2782. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES,
  2783. ROUTER_PURPOSE_GENERAL, NULL), OP_EQ, V3_DIRINFO);
  2784. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_CERTIFICATE,
  2785. ROUTER_PURPOSE_GENERAL, NULL), OP_EQ, V3_DIRINFO);
  2786. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_CONSENSUS, ROUTER_PURPOSE_GENERAL,
  2787. "microdesc"), OP_EQ, V3_DIRINFO|MICRODESC_DIRINFO);
  2788. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_CONSENSUS, ROUTER_PURPOSE_GENERAL,
  2789. NULL), OP_EQ, V3_DIRINFO);
  2790. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_MICRODESC, ROUTER_PURPOSE_GENERAL,
  2791. NULL), OP_EQ, MICRODESC_DIRINFO);
  2792. tt_int_op(dir_fetch_type(DIR_PURPOSE_FETCH_RENDDESC_V2,
  2793. ROUTER_PURPOSE_GENERAL, NULL), OP_EQ, NO_DIRINFO);
  2794. done: ;
  2795. }
  2796. static void
  2797. test_dir_packages(void *arg)
  2798. {
  2799. smartlist_t *votes = smartlist_new();
  2800. char *res = NULL;
  2801. (void)arg;
  2802. #define BAD(s) \
  2803. tt_int_op(0, ==, validate_recommended_package_line(s));
  2804. #define GOOD(s) \
  2805. tt_int_op(1, ==, validate_recommended_package_line(s));
  2806. GOOD("tor 0.2.6.3-alpha "
  2807. "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz "
  2808. "sha256=sssdlkfjdsklfjdskfljasdklfj");
  2809. GOOD("tor 0.2.6.3-alpha "
  2810. "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz "
  2811. "sha256=sssdlkfjdsklfjdskfljasdklfj blake2b=fred");
  2812. BAD("tor 0.2.6.3-alpha "
  2813. "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz "
  2814. "sha256=sssdlkfjdsklfjdskfljasdklfj=");
  2815. BAD("tor 0.2.6.3-alpha "
  2816. "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz "
  2817. "sha256=sssdlkfjdsklfjdskfljasdklfj blake2b");
  2818. BAD("tor 0.2.6.3-alpha "
  2819. "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz ");
  2820. BAD("tor 0.2.6.3-alpha "
  2821. "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz");
  2822. BAD("tor 0.2.6.3-alpha ");
  2823. BAD("tor 0.2.6.3-alpha");
  2824. BAD("tor ");
  2825. BAD("tor");
  2826. BAD("");
  2827. BAD("=foobar sha256="
  2828. "3c179f46ca77069a6a0bac70212a9b3b838b2f66129cb52d568837fc79d8fcc7");
  2829. BAD("= = sha256="
  2830. "3c179f46ca77069a6a0bac70212a9b3b838b2f66129cb52d568837fc79d8fcc7");
  2831. BAD("sha512= sha256="
  2832. "3c179f46ca77069a6a0bac70212a9b3b838b2f66129cb52d568837fc79d8fcc7");
  2833. smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t)));
  2834. smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t)));
  2835. smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t)));
  2836. smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t)));
  2837. smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t)));
  2838. smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t)));
  2839. SMARTLIST_FOREACH(votes, networkstatus_t *, ns,
  2840. ns->package_lines = smartlist_new());
  2841. #define ADD(i, s) \
  2842. smartlist_add(((networkstatus_t*)smartlist_get(votes, (i)))->package_lines, \
  2843. (void*)(s));
  2844. /* Only one vote for this one. */
  2845. ADD(4, "cisco 99z http://foobar.example.com/ sha256=blahblah");
  2846. /* Only two matching entries for this one, but 3 voters */
  2847. ADD(1, "mystic 99y http://barfoo.example.com/ sha256=blahblah");
  2848. ADD(3, "mystic 99y http://foobar.example.com/ sha256=blahblah");
  2849. ADD(4, "mystic 99y http://foobar.example.com/ sha256=blahblah");
  2850. /* Only two matching entries for this one, but at least 4 voters */
  2851. ADD(1, "mystic 99p http://barfoo.example.com/ sha256=ggggggg");
  2852. ADD(3, "mystic 99p http://foobar.example.com/ sha256=blahblah");
  2853. ADD(4, "mystic 99p http://foobar.example.com/ sha256=blahblah");
  2854. ADD(5, "mystic 99p http://foobar.example.com/ sha256=ggggggg");
  2855. /* This one has only invalid votes. */
  2856. ADD(0, "haffenreffer 1.2 http://foobar.example.com/ sha256");
  2857. ADD(1, "haffenreffer 1.2 http://foobar.example.com/ ");
  2858. ADD(2, "haffenreffer 1.2 ");
  2859. ADD(3, "haffenreffer ");
  2860. ADD(4, "haffenreffer");
  2861. /* Three matching votes for this; it should actually go in! */
  2862. ADD(2, "element 0.66.1 http://quux.example.com/ sha256=abcdef");
  2863. ADD(3, "element 0.66.1 http://quux.example.com/ sha256=abcdef");
  2864. ADD(4, "element 0.66.1 http://quux.example.com/ sha256=abcdef");
  2865. ADD(1, "element 0.66.1 http://quum.example.com/ sha256=abcdef");
  2866. ADD(0, "element 0.66.1 http://quux.example.com/ sha256=abcde");
  2867. /* Three votes for A, three votes for B */
  2868. ADD(0, "clownshoes 22alpha1 http://quumble.example.com/ blake2=foob");
  2869. ADD(1, "clownshoes 22alpha1 http://quumble.example.com/ blake2=foob");
  2870. ADD(2, "clownshoes 22alpha1 http://quumble.example.com/ blake2=foob");
  2871. ADD(3, "clownshoes 22alpha1 http://quumble.example.com/ blake2=fooz");
  2872. ADD(4, "clownshoes 22alpha1 http://quumble.example.com/ blake2=fooz");
  2873. ADD(5, "clownshoes 22alpha1 http://quumble.example.com/ blake2=fooz");
  2874. /* Three votes for A, two votes for B */
  2875. ADD(1, "clownshoes 22alpha3 http://quumble.example.com/ blake2=foob");
  2876. ADD(2, "clownshoes 22alpha3 http://quumble.example.com/ blake2=foob");
  2877. ADD(3, "clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz");
  2878. ADD(4, "clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz");
  2879. ADD(5, "clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz");
  2880. /* Four votes for A, two for B. */
  2881. ADD(0, "clownshoes 22alpha4 http://quumble.example.com/ blake2=foob");
  2882. ADD(1, "clownshoes 22alpha4 http://quumble.example.com/ blake2=foob");
  2883. ADD(2, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa");
  2884. ADD(3, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa");
  2885. ADD(4, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa");
  2886. ADD(5, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa");
  2887. /* Five votes for A ... all from the same guy. Three for B. */
  2888. ADD(0, "cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m");
  2889. ADD(1, "cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m");
  2890. ADD(3, "cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m");
  2891. ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy");
  2892. ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy");
  2893. ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy");
  2894. ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy");
  2895. ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy");
  2896. /* As above but new replaces old: no two match. */
  2897. ADD(0, "cbc 99.1.11.1.2 http://example.com/cbc/ cubehash=ahooy sha512=m");
  2898. ADD(1, "cbc 99.1.11.1.2 http://example.com/cbc/ cubehash=ahooy sha512=m");
  2899. ADD(1, "cbc 99.1.11.1.2 http://example.com/cbc/x cubehash=ahooy sha512=m");
  2900. ADD(2, "cbc 99.1.11.1.2 http://example.com/cbc/ cubehash=ahooy sha512=m");
  2901. ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy");
  2902. ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy");
  2903. ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy");
  2904. ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy");
  2905. ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy");
  2906. res = compute_consensus_package_lines(votes);
  2907. tt_assert(res);
  2908. tt_str_op(res, ==,
  2909. "package cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m\n"
  2910. "package clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz\n"
  2911. "package clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa\n"
  2912. "package element 0.66.1 http://quux.example.com/ sha256=abcdef\n"
  2913. "package mystic 99y http://foobar.example.com/ sha256=blahblah\n"
  2914. );
  2915. #undef ADD
  2916. #undef BAD
  2917. #undef GOOD
  2918. done:
  2919. SMARTLIST_FOREACH(votes, networkstatus_t *, ns,
  2920. { smartlist_free(ns->package_lines); tor_free(ns); });
  2921. smartlist_free(votes);
  2922. tor_free(res);
  2923. }
  2924. static void
  2925. test_dir_download_status_schedule(void *arg)
  2926. {
  2927. (void)arg;
  2928. download_status_t dls_failure = { 0, 0, 0, DL_SCHED_GENERIC,
  2929. DL_WANT_AUTHORITY,
  2930. DL_SCHED_INCREMENT_FAILURE };
  2931. download_status_t dls_attempt = { 0, 0, 0, DL_SCHED_CONSENSUS,
  2932. DL_WANT_ANY_DIRSERVER,
  2933. DL_SCHED_INCREMENT_ATTEMPT};
  2934. download_status_t dls_bridge = { 0, 0, 0, DL_SCHED_BRIDGE,
  2935. DL_WANT_AUTHORITY,
  2936. DL_SCHED_INCREMENT_FAILURE};
  2937. int increment = -1;
  2938. int expected_increment = -1;
  2939. time_t current_time = time(NULL);
  2940. int delay1 = -1;
  2941. int delay2 = -1;
  2942. smartlist_t *schedule = smartlist_new();
  2943. /* Make a dummy schedule */
  2944. smartlist_add(schedule, (void *)&delay1);
  2945. smartlist_add(schedule, (void *)&delay2);
  2946. /* check a range of values */
  2947. delay1 = 1000;
  2948. increment = download_status_schedule_get_delay(&dls_failure,
  2949. schedule,
  2950. TIME_MIN);
  2951. expected_increment = delay1;
  2952. tt_assert(increment == expected_increment);
  2953. tt_assert(dls_failure.next_attempt_at == TIME_MIN + expected_increment);
  2954. #if TIME_T_IS_SIGNED
  2955. delay1 = INT_MAX;
  2956. increment = download_status_schedule_get_delay(&dls_failure,
  2957. schedule,
  2958. -1);
  2959. expected_increment = delay1;
  2960. tt_assert(increment == expected_increment);
  2961. tt_assert(dls_failure.next_attempt_at == TIME_MAX);
  2962. #endif
  2963. delay1 = 0;
  2964. increment = download_status_schedule_get_delay(&dls_attempt,
  2965. schedule,
  2966. 0);
  2967. expected_increment = delay1;
  2968. tt_assert(increment == expected_increment);
  2969. tt_assert(dls_attempt.next_attempt_at == 0 + expected_increment);
  2970. delay1 = 1000;
  2971. increment = download_status_schedule_get_delay(&dls_attempt,
  2972. schedule,
  2973. 1);
  2974. expected_increment = delay1;
  2975. tt_assert(increment == expected_increment);
  2976. tt_assert(dls_attempt.next_attempt_at == 1 + expected_increment);
  2977. delay1 = INT_MAX;
  2978. increment = download_status_schedule_get_delay(&dls_bridge,
  2979. schedule,
  2980. current_time);
  2981. expected_increment = delay1;
  2982. tt_assert(increment == expected_increment);
  2983. tt_assert(dls_bridge.next_attempt_at == TIME_MAX);
  2984. delay1 = 1;
  2985. increment = download_status_schedule_get_delay(&dls_bridge,
  2986. schedule,
  2987. TIME_MAX);
  2988. expected_increment = delay1;
  2989. tt_assert(increment == expected_increment);
  2990. tt_assert(dls_bridge.next_attempt_at == TIME_MAX);
  2991. /* see what happens when we reach the end */
  2992. dls_attempt.n_download_attempts++;
  2993. dls_bridge.n_download_failures++;
  2994. delay2 = 100;
  2995. increment = download_status_schedule_get_delay(&dls_attempt,
  2996. schedule,
  2997. current_time);
  2998. expected_increment = delay2;
  2999. tt_assert(increment == expected_increment);
  3000. tt_assert(dls_attempt.next_attempt_at == current_time + delay2);
  3001. delay2 = 1;
  3002. increment = download_status_schedule_get_delay(&dls_bridge,
  3003. schedule,
  3004. current_time);
  3005. expected_increment = delay2;
  3006. tt_assert(increment == expected_increment);
  3007. tt_assert(dls_bridge.next_attempt_at == current_time + delay2);
  3008. /* see what happens when we try to go off the end */
  3009. dls_attempt.n_download_attempts++;
  3010. dls_bridge.n_download_failures++;
  3011. delay2 = 5;
  3012. increment = download_status_schedule_get_delay(&dls_attempt,
  3013. schedule,
  3014. current_time);
  3015. expected_increment = delay2;
  3016. tt_assert(increment == expected_increment);
  3017. tt_assert(dls_attempt.next_attempt_at == current_time + delay2);
  3018. delay2 = 17;
  3019. increment = download_status_schedule_get_delay(&dls_bridge,
  3020. schedule,
  3021. current_time);
  3022. expected_increment = delay2;
  3023. tt_assert(increment == expected_increment);
  3024. tt_assert(dls_bridge.next_attempt_at == current_time + delay2);
  3025. /* see what happens when we reach IMPOSSIBLE_TO_DOWNLOAD */
  3026. dls_attempt.n_download_attempts = IMPOSSIBLE_TO_DOWNLOAD;
  3027. dls_bridge.n_download_failures = IMPOSSIBLE_TO_DOWNLOAD;
  3028. delay2 = 35;
  3029. increment = download_status_schedule_get_delay(&dls_attempt,
  3030. schedule,
  3031. current_time);
  3032. expected_increment = INT_MAX;
  3033. tt_assert(increment == expected_increment);
  3034. tt_assert(dls_attempt.next_attempt_at == TIME_MAX);
  3035. delay2 = 99;
  3036. increment = download_status_schedule_get_delay(&dls_bridge,
  3037. schedule,
  3038. current_time);
  3039. expected_increment = INT_MAX;
  3040. tt_assert(increment == expected_increment);
  3041. tt_assert(dls_bridge.next_attempt_at == TIME_MAX);
  3042. done:
  3043. /* the pointers in schedule are allocated on the stack */
  3044. smartlist_free(schedule);
  3045. }
  3046. static void
  3047. test_dir_download_status_increment(void *arg)
  3048. {
  3049. (void)arg;
  3050. download_status_t dls_failure = { 0, 0, 0, DL_SCHED_GENERIC,
  3051. DL_WANT_AUTHORITY,
  3052. DL_SCHED_INCREMENT_FAILURE };
  3053. download_status_t dls_attempt = { 0, 0, 0, DL_SCHED_BRIDGE,
  3054. DL_WANT_ANY_DIRSERVER,
  3055. DL_SCHED_INCREMENT_ATTEMPT};
  3056. int delay0 = -1;
  3057. int delay1 = -1;
  3058. int delay2 = -1;
  3059. smartlist_t *schedule = smartlist_new();
  3060. or_options_t test_options;
  3061. time_t next_at = TIME_MAX;
  3062. time_t current_time = time(NULL);
  3063. /* Provide some values for the schedule */
  3064. delay0 = 10;
  3065. delay1 = 99;
  3066. delay2 = 20;
  3067. /* Make the schedule */
  3068. smartlist_add(schedule, (void *)&delay0);
  3069. smartlist_add(schedule, (void *)&delay1);
  3070. smartlist_add(schedule, (void *)&delay2);
  3071. /* Put it in the options */
  3072. mock_options = &test_options;
  3073. reset_options(mock_options, &mock_get_options_calls);
  3074. mock_options->TestingClientDownloadSchedule = schedule;
  3075. mock_options->TestingBridgeDownloadSchedule = schedule;
  3076. MOCK(get_options, mock_get_options);
  3077. /* Check that a failure reset works */
  3078. mock_get_options_calls = 0;
  3079. download_status_reset(&dls_failure);
  3080. /* we really want to test that it's equal to time(NULL) + delay0, but that's
  3081. * an unrealiable test, because time(NULL) might change. */
  3082. tt_assert(download_status_get_next_attempt_at(&dls_failure)
  3083. >= current_time + delay0);
  3084. tt_assert(download_status_get_next_attempt_at(&dls_failure)
  3085. != TIME_MAX);
  3086. tt_assert(download_status_get_n_failures(&dls_failure) == 0);
  3087. tt_assert(download_status_get_n_attempts(&dls_failure) == 0);
  3088. tt_assert(mock_get_options_calls >= 1);
  3089. /* avoid timing inconsistencies */
  3090. dls_failure.next_attempt_at = current_time + delay0;
  3091. /* check that a reset schedule becomes ready at the right time */
  3092. tt_assert(download_status_is_ready(&dls_failure,
  3093. current_time + delay0 - 1,
  3094. 1) == 0);
  3095. tt_assert(download_status_is_ready(&dls_failure,
  3096. current_time + delay0,
  3097. 1) == 1);
  3098. tt_assert(download_status_is_ready(&dls_failure,
  3099. current_time + delay0 + 1,
  3100. 1) == 1);
  3101. /* Check that a failure increment works */
  3102. mock_get_options_calls = 0;
  3103. next_at = download_status_increment_failure(&dls_failure, 404, "test", 0,
  3104. current_time);
  3105. tt_assert(next_at == current_time + delay1);
  3106. tt_assert(download_status_get_n_failures(&dls_failure) == 1);
  3107. tt_assert(download_status_get_n_attempts(&dls_failure) == 1);
  3108. tt_assert(mock_get_options_calls >= 1);
  3109. /* check that an incremented schedule becomes ready at the right time */
  3110. tt_assert(download_status_is_ready(&dls_failure,
  3111. current_time + delay1 - 1,
  3112. 1) == 0);
  3113. tt_assert(download_status_is_ready(&dls_failure,
  3114. current_time + delay1,
  3115. 1) == 1);
  3116. tt_assert(download_status_is_ready(&dls_failure,
  3117. current_time + delay1 + 1,
  3118. 1) == 1);
  3119. /* check that a schedule isn't ready if it's had too many failures */
  3120. tt_assert(download_status_is_ready(&dls_failure,
  3121. current_time + delay1 + 10,
  3122. 0) == 0);
  3123. /* Check that failure increments don't happen on 503 for clients, but that
  3124. * attempt increments do. */
  3125. mock_get_options_calls = 0;
  3126. next_at = download_status_increment_failure(&dls_failure, 503, "test", 0,
  3127. current_time);
  3128. tt_assert(next_at == current_time + delay1);
  3129. tt_assert(download_status_get_n_failures(&dls_failure) == 1);
  3130. tt_assert(download_status_get_n_attempts(&dls_failure) == 2);
  3131. tt_assert(mock_get_options_calls >= 1);
  3132. /* Check that failure increments do happen on 503 for servers */
  3133. mock_get_options_calls = 0;
  3134. next_at = download_status_increment_failure(&dls_failure, 503, "test", 1,
  3135. current_time);
  3136. tt_assert(next_at == current_time + delay2);
  3137. tt_assert(download_status_get_n_failures(&dls_failure) == 2);
  3138. tt_assert(download_status_get_n_attempts(&dls_failure) == 3);
  3139. tt_assert(mock_get_options_calls >= 1);
  3140. /* Check what happens when we run off the end of the schedule */
  3141. mock_get_options_calls = 0;
  3142. next_at = download_status_increment_failure(&dls_failure, 404, "test", 0,
  3143. current_time);
  3144. tt_assert(next_at == current_time + delay2);
  3145. tt_assert(download_status_get_n_failures(&dls_failure) == 3);
  3146. tt_assert(download_status_get_n_attempts(&dls_failure) == 4);
  3147. tt_assert(mock_get_options_calls >= 1);
  3148. /* Check what happens when we hit the failure limit */
  3149. mock_get_options_calls = 0;
  3150. download_status_mark_impossible(&dls_failure);
  3151. next_at = download_status_increment_failure(&dls_failure, 404, "test", 0,
  3152. current_time);
  3153. tt_assert(next_at == TIME_MAX);
  3154. tt_assert(download_status_get_n_failures(&dls_failure)
  3155. == IMPOSSIBLE_TO_DOWNLOAD);
  3156. tt_assert(download_status_get_n_attempts(&dls_failure)
  3157. == IMPOSSIBLE_TO_DOWNLOAD);
  3158. tt_assert(mock_get_options_calls >= 1);
  3159. /* Check that a failure reset doesn't reset at the limit */
  3160. mock_get_options_calls = 0;
  3161. download_status_reset(&dls_failure);
  3162. tt_assert(download_status_get_next_attempt_at(&dls_failure)
  3163. == TIME_MAX);
  3164. tt_assert(download_status_get_n_failures(&dls_failure)
  3165. == IMPOSSIBLE_TO_DOWNLOAD);
  3166. tt_assert(download_status_get_n_attempts(&dls_failure)
  3167. == IMPOSSIBLE_TO_DOWNLOAD);
  3168. tt_assert(mock_get_options_calls == 0);
  3169. /* Check that a failure reset resets just before the limit */
  3170. mock_get_options_calls = 0;
  3171. dls_failure.n_download_failures = IMPOSSIBLE_TO_DOWNLOAD - 1;
  3172. dls_failure.n_download_attempts = IMPOSSIBLE_TO_DOWNLOAD - 1;
  3173. download_status_reset(&dls_failure);
  3174. /* we really want to test that it's equal to time(NULL) + delay0, but that's
  3175. * an unrealiable test, because time(NULL) might change. */
  3176. tt_assert(download_status_get_next_attempt_at(&dls_failure)
  3177. >= current_time + delay0);
  3178. tt_assert(download_status_get_next_attempt_at(&dls_failure)
  3179. != TIME_MAX);
  3180. tt_assert(download_status_get_n_failures(&dls_failure) == 0);
  3181. tt_assert(download_status_get_n_attempts(&dls_failure) == 0);
  3182. tt_assert(mock_get_options_calls >= 1);
  3183. /* Check that failure increments do happen on attempt-based schedules,
  3184. * but that the retry is set at the end of time */
  3185. mock_get_options_calls = 0;
  3186. next_at = download_status_increment_failure(&dls_attempt, 404, "test", 0,
  3187. current_time);
  3188. tt_assert(next_at == TIME_MAX);
  3189. tt_assert(download_status_get_n_failures(&dls_attempt) == 1);
  3190. tt_assert(download_status_get_n_attempts(&dls_attempt) == 0);
  3191. tt_assert(mock_get_options_calls == 0);
  3192. /* Check that an attempt reset works */
  3193. mock_get_options_calls = 0;
  3194. download_status_reset(&dls_attempt);
  3195. /* we really want to test that it's equal to time(NULL) + delay0, but that's
  3196. * an unrealiable test, because time(NULL) might change. */
  3197. tt_assert(download_status_get_next_attempt_at(&dls_attempt)
  3198. >= current_time + delay0);
  3199. tt_assert(download_status_get_next_attempt_at(&dls_attempt)
  3200. != TIME_MAX);
  3201. tt_assert(download_status_get_n_failures(&dls_attempt) == 0);
  3202. tt_assert(download_status_get_n_attempts(&dls_attempt) == 0);
  3203. tt_assert(mock_get_options_calls >= 1);
  3204. /* avoid timing inconsistencies */
  3205. dls_attempt.next_attempt_at = current_time + delay0;
  3206. /* check that a reset schedule becomes ready at the right time */
  3207. tt_assert(download_status_is_ready(&dls_attempt,
  3208. current_time + delay0 - 1,
  3209. 1) == 0);
  3210. tt_assert(download_status_is_ready(&dls_attempt,
  3211. current_time + delay0,
  3212. 1) == 1);
  3213. tt_assert(download_status_is_ready(&dls_attempt,
  3214. current_time + delay0 + 1,
  3215. 1) == 1);
  3216. /* Check that an attempt increment works */
  3217. mock_get_options_calls = 0;
  3218. next_at = download_status_increment_attempt(&dls_attempt, "test",
  3219. current_time);
  3220. tt_assert(next_at == current_time + delay1);
  3221. tt_assert(download_status_get_n_failures(&dls_attempt) == 0);
  3222. tt_assert(download_status_get_n_attempts(&dls_attempt) == 1);
  3223. tt_assert(mock_get_options_calls >= 1);
  3224. /* check that an incremented schedule becomes ready at the right time */
  3225. tt_assert(download_status_is_ready(&dls_attempt,
  3226. current_time + delay1 - 1,
  3227. 1) == 0);
  3228. tt_assert(download_status_is_ready(&dls_attempt,
  3229. current_time + delay1,
  3230. 1) == 1);
  3231. tt_assert(download_status_is_ready(&dls_attempt,
  3232. current_time + delay1 + 1,
  3233. 1) == 1);
  3234. /* check that a schedule isn't ready if it's had too many attempts */
  3235. tt_assert(download_status_is_ready(&dls_attempt,
  3236. current_time + delay1 + 10,
  3237. 0) == 0);
  3238. /* Check what happens when we reach then run off the end of the schedule */
  3239. mock_get_options_calls = 0;
  3240. next_at = download_status_increment_attempt(&dls_attempt, "test",
  3241. current_time);
  3242. tt_assert(next_at == current_time + delay2);
  3243. tt_assert(download_status_get_n_failures(&dls_attempt) == 0);
  3244. tt_assert(download_status_get_n_attempts(&dls_attempt) == 2);
  3245. tt_assert(mock_get_options_calls >= 1);
  3246. mock_get_options_calls = 0;
  3247. next_at = download_status_increment_attempt(&dls_attempt, "test",
  3248. current_time);
  3249. tt_assert(next_at == current_time + delay2);
  3250. tt_assert(download_status_get_n_failures(&dls_attempt) == 0);
  3251. tt_assert(download_status_get_n_attempts(&dls_attempt) == 3);
  3252. tt_assert(mock_get_options_calls >= 1);
  3253. /* Check what happens when we hit the attempt limit */
  3254. mock_get_options_calls = 0;
  3255. download_status_mark_impossible(&dls_attempt);
  3256. next_at = download_status_increment_attempt(&dls_attempt, "test",
  3257. current_time);
  3258. tt_assert(next_at == TIME_MAX);
  3259. tt_assert(download_status_get_n_failures(&dls_attempt)
  3260. == IMPOSSIBLE_TO_DOWNLOAD);
  3261. tt_assert(download_status_get_n_attempts(&dls_attempt)
  3262. == IMPOSSIBLE_TO_DOWNLOAD);
  3263. tt_assert(mock_get_options_calls >= 1);
  3264. /* Check that an attempt reset doesn't reset at the limit */
  3265. mock_get_options_calls = 0;
  3266. download_status_reset(&dls_attempt);
  3267. tt_assert(download_status_get_next_attempt_at(&dls_attempt)
  3268. == TIME_MAX);
  3269. tt_assert(download_status_get_n_failures(&dls_attempt)
  3270. == IMPOSSIBLE_TO_DOWNLOAD);
  3271. tt_assert(download_status_get_n_attempts(&dls_attempt)
  3272. == IMPOSSIBLE_TO_DOWNLOAD);
  3273. tt_assert(mock_get_options_calls == 0);
  3274. /* Check that an attempt reset resets just before the limit */
  3275. mock_get_options_calls = 0;
  3276. dls_attempt.n_download_failures = IMPOSSIBLE_TO_DOWNLOAD - 1;
  3277. dls_attempt.n_download_attempts = IMPOSSIBLE_TO_DOWNLOAD - 1;
  3278. download_status_reset(&dls_attempt);
  3279. /* we really want to test that it's equal to time(NULL) + delay0, but that's
  3280. * an unrealiable test, because time(NULL) might change. */
  3281. tt_assert(download_status_get_next_attempt_at(&dls_attempt)
  3282. >= current_time + delay0);
  3283. tt_assert(download_status_get_next_attempt_at(&dls_attempt)
  3284. != TIME_MAX);
  3285. tt_assert(download_status_get_n_failures(&dls_attempt) == 0);
  3286. tt_assert(download_status_get_n_attempts(&dls_attempt) == 0);
  3287. tt_assert(mock_get_options_calls >= 1);
  3288. /* Check that attempt increments don't happen on failure-based schedules,
  3289. * and that the attempt is set at the end of time */
  3290. mock_get_options_calls = 0;
  3291. next_at = download_status_increment_attempt(&dls_failure, "test",
  3292. current_time);
  3293. tt_assert(next_at == TIME_MAX);
  3294. tt_assert(download_status_get_n_failures(&dls_failure) == 0);
  3295. tt_assert(download_status_get_n_attempts(&dls_failure) == 0);
  3296. tt_assert(mock_get_options_calls == 0);
  3297. done:
  3298. /* the pointers in schedule are allocated on the stack */
  3299. smartlist_free(schedule);
  3300. UNMOCK(get_options);
  3301. mock_options = NULL;
  3302. mock_get_options_calls = 0;
  3303. }
  3304. static void
  3305. test_dir_authdir_type_to_string(void *data)
  3306. {
  3307. (void)data;
  3308. char *res;
  3309. tt_str_op(res = authdir_type_to_string(NO_DIRINFO), OP_EQ,
  3310. "[Not an authority]");
  3311. tor_free(res);
  3312. tt_str_op(res = authdir_type_to_string(EXTRAINFO_DIRINFO), OP_EQ,
  3313. "[Not an authority]");
  3314. tor_free(res);
  3315. tt_str_op(res = authdir_type_to_string(MICRODESC_DIRINFO), OP_EQ,
  3316. "[Not an authority]");
  3317. tor_free(res);
  3318. tt_str_op(res = authdir_type_to_string(V3_DIRINFO), OP_EQ, "V3");
  3319. tor_free(res);
  3320. tt_str_op(res = authdir_type_to_string(BRIDGE_DIRINFO), OP_EQ, "Bridge");
  3321. tor_free(res);
  3322. tt_str_op(res = authdir_type_to_string(
  3323. V3_DIRINFO | BRIDGE_DIRINFO | EXTRAINFO_DIRINFO), OP_EQ,
  3324. "V3, Bridge");
  3325. done:
  3326. tor_free(res);
  3327. }
  3328. static void
  3329. test_dir_conn_purpose_to_string(void *data)
  3330. {
  3331. (void)data;
  3332. #define EXPECT_CONN_PURPOSE(purpose, expected) \
  3333. tt_str_op(dir_conn_purpose_to_string(purpose), OP_EQ, expected);
  3334. EXPECT_CONN_PURPOSE(DIR_PURPOSE_UPLOAD_DIR, "server descriptor upload");
  3335. EXPECT_CONN_PURPOSE(DIR_PURPOSE_UPLOAD_VOTE, "server vote upload");
  3336. EXPECT_CONN_PURPOSE(DIR_PURPOSE_UPLOAD_SIGNATURES,
  3337. "consensus signature upload");
  3338. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_SERVERDESC, "server descriptor fetch");
  3339. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_EXTRAINFO, "extra-info fetch");
  3340. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_CONSENSUS,
  3341. "consensus network-status fetch");
  3342. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_CERTIFICATE, "authority cert fetch");
  3343. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_STATUS_VOTE, "status vote fetch");
  3344. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES,
  3345. "consensus signature fetch");
  3346. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_RENDDESC_V2,
  3347. "hidden-service v2 descriptor fetch");
  3348. EXPECT_CONN_PURPOSE(DIR_PURPOSE_UPLOAD_RENDDESC_V2,
  3349. "hidden-service v2 descriptor upload");
  3350. EXPECT_CONN_PURPOSE(DIR_PURPOSE_FETCH_MICRODESC, "microdescriptor fetch");
  3351. EXPECT_CONN_PURPOSE(1024, "(unknown)");
  3352. done: ;
  3353. }
  3354. NS_DECL(int,
  3355. public_server_mode, (const or_options_t *options));
  3356. static int
  3357. NS(public_server_mode)(const or_options_t *options)
  3358. {
  3359. (void)options;
  3360. if (CALLED(public_server_mode)++ == 0) {
  3361. return 1;
  3362. }
  3363. return 0;
  3364. }
  3365. static void
  3366. test_dir_should_use_directory_guards(void *data)
  3367. {
  3368. or_options_t *options;
  3369. char *errmsg = NULL;
  3370. (void)data;
  3371. NS_MOCK(public_server_mode);
  3372. options = options_new();
  3373. options_init(options);
  3374. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3375. tt_int_op(CALLED(public_server_mode), OP_EQ, 1);
  3376. options->UseEntryGuardsAsDirGuards = 1;
  3377. options->UseEntryGuards = 1;
  3378. options->DownloadExtraInfo = 0;
  3379. options->FetchDirInfoEarly = 0;
  3380. options->FetchDirInfoExtraEarly = 0;
  3381. options->FetchUselessDescriptors = 0;
  3382. tt_int_op(should_use_directory_guards(options), OP_EQ, 1);
  3383. tt_int_op(CALLED(public_server_mode), OP_EQ, 2);
  3384. options->UseEntryGuards = 0;
  3385. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3386. tt_int_op(CALLED(public_server_mode), OP_EQ, 3);
  3387. options->UseEntryGuards = 1;
  3388. options->UseEntryGuardsAsDirGuards = 0;
  3389. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3390. tt_int_op(CALLED(public_server_mode), OP_EQ, 4);
  3391. options->UseEntryGuardsAsDirGuards = 1;
  3392. options->DownloadExtraInfo = 1;
  3393. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3394. tt_int_op(CALLED(public_server_mode), OP_EQ, 5);
  3395. options->DownloadExtraInfo = 0;
  3396. options->FetchDirInfoEarly = 1;
  3397. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3398. tt_int_op(CALLED(public_server_mode), OP_EQ, 6);
  3399. options->FetchDirInfoEarly = 0;
  3400. options->FetchDirInfoExtraEarly = 1;
  3401. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3402. tt_int_op(CALLED(public_server_mode), OP_EQ, 7);
  3403. options->FetchDirInfoExtraEarly = 0;
  3404. options->FetchUselessDescriptors = 1;
  3405. tt_int_op(should_use_directory_guards(options), OP_EQ, 0);
  3406. tt_int_op(CALLED(public_server_mode), OP_EQ, 8);
  3407. options->FetchUselessDescriptors = 0;
  3408. done:
  3409. NS_UNMOCK(public_server_mode);
  3410. or_options_free(options);
  3411. tor_free(errmsg);
  3412. }
  3413. NS_DECL(void,
  3414. directory_initiate_command_routerstatus, (const routerstatus_t *status,
  3415. uint8_t dir_purpose,
  3416. uint8_t router_purpose,
  3417. dir_indirection_t indirection,
  3418. const char *resource,
  3419. const char *payload,
  3420. size_t payload_len,
  3421. time_t if_modified_since));
  3422. static void
  3423. test_dir_should_not_init_request_to_ourselves(void *data)
  3424. {
  3425. char digest[DIGEST_LEN];
  3426. dir_server_t *ourself = NULL;
  3427. crypto_pk_t *key = pk_generate(2);
  3428. (void) data;
  3429. NS_MOCK(directory_initiate_command_routerstatus);
  3430. clear_dir_servers();
  3431. routerlist_free_all();
  3432. set_server_identity_key(key);
  3433. crypto_pk_get_digest(key, (char*) &digest);
  3434. ourself = trusted_dir_server_new("ourself", "127.0.0.1", 9059, 9060,
  3435. NULL, digest,
  3436. NULL, V3_DIRINFO, 1.0);
  3437. tt_assert(ourself);
  3438. dir_server_add(ourself);
  3439. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_STATUS_VOTE, 0, NULL);
  3440. tt_int_op(CALLED(directory_initiate_command_routerstatus), OP_EQ, 0);
  3441. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES, 0,
  3442. NULL);
  3443. tt_int_op(CALLED(directory_initiate_command_routerstatus), OP_EQ, 0);
  3444. done:
  3445. NS_UNMOCK(directory_initiate_command_routerstatus);
  3446. clear_dir_servers();
  3447. routerlist_free_all();
  3448. crypto_pk_free(key);
  3449. }
  3450. static void
  3451. test_dir_should_not_init_request_to_dir_auths_without_v3_info(void *data)
  3452. {
  3453. dir_server_t *ds = NULL;
  3454. dirinfo_type_t dirinfo_type = BRIDGE_DIRINFO | EXTRAINFO_DIRINFO \
  3455. | MICRODESC_DIRINFO;
  3456. (void) data;
  3457. NS_MOCK(directory_initiate_command_routerstatus);
  3458. clear_dir_servers();
  3459. routerlist_free_all();
  3460. ds = trusted_dir_server_new("ds", "10.0.0.1", 9059, 9060, NULL,
  3461. "12345678901234567890", NULL, dirinfo_type, 1.0);
  3462. tt_assert(ds);
  3463. dir_server_add(ds);
  3464. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_STATUS_VOTE, 0, NULL);
  3465. tt_int_op(CALLED(directory_initiate_command_routerstatus), OP_EQ, 0);
  3466. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES, 0,
  3467. NULL);
  3468. tt_int_op(CALLED(directory_initiate_command_routerstatus), OP_EQ, 0);
  3469. done:
  3470. NS_UNMOCK(directory_initiate_command_routerstatus);
  3471. clear_dir_servers();
  3472. routerlist_free_all();
  3473. }
  3474. static void
  3475. test_dir_should_init_request_to_dir_auths(void *data)
  3476. {
  3477. dir_server_t *ds = NULL;
  3478. (void) data;
  3479. NS_MOCK(directory_initiate_command_routerstatus);
  3480. clear_dir_servers();
  3481. routerlist_free_all();
  3482. ds = trusted_dir_server_new("ds", "10.0.0.1", 9059, 9060, NULL,
  3483. "12345678901234567890", NULL, V3_DIRINFO, 1.0);
  3484. tt_assert(ds);
  3485. dir_server_add(ds);
  3486. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_STATUS_VOTE, 0, NULL);
  3487. tt_int_op(CALLED(directory_initiate_command_routerstatus), OP_EQ, 1);
  3488. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES, 0,
  3489. NULL);
  3490. tt_int_op(CALLED(directory_initiate_command_routerstatus), OP_EQ, 2);
  3491. done:
  3492. NS_UNMOCK(directory_initiate_command_routerstatus);
  3493. clear_dir_servers();
  3494. routerlist_free_all();
  3495. }
  3496. void
  3497. NS(directory_initiate_command_routerstatus)(const routerstatus_t *status,
  3498. uint8_t dir_purpose,
  3499. uint8_t router_purpose,
  3500. dir_indirection_t indirection,
  3501. const char *resource,
  3502. const char *payload,
  3503. size_t payload_len,
  3504. time_t if_modified_since)
  3505. {
  3506. (void)status;
  3507. (void)dir_purpose;
  3508. (void)router_purpose;
  3509. (void)indirection;
  3510. (void)resource;
  3511. (void)payload;
  3512. (void)payload_len;
  3513. (void)if_modified_since;
  3514. CALLED(directory_initiate_command_routerstatus)++;
  3515. }
  3516. static void
  3517. test_dir_choose_compression_level(void* data)
  3518. {
  3519. (void)data;
  3520. /* It starts under_memory_pressure */
  3521. tt_int_op(have_been_under_memory_pressure(), OP_EQ, 1);
  3522. tt_assert(HIGH_COMPRESSION == choose_compression_level(-1));
  3523. tt_assert(LOW_COMPRESSION == choose_compression_level(1024-1));
  3524. tt_assert(MEDIUM_COMPRESSION == choose_compression_level(2048-1));
  3525. tt_assert(HIGH_COMPRESSION == choose_compression_level(2048));
  3526. /* Reset under_memory_pressure timer */
  3527. cell_queues_check_size();
  3528. tt_int_op(have_been_under_memory_pressure(), OP_EQ, 0);
  3529. tt_assert(HIGH_COMPRESSION == choose_compression_level(-1));
  3530. tt_assert(HIGH_COMPRESSION == choose_compression_level(1024-1));
  3531. tt_assert(HIGH_COMPRESSION == choose_compression_level(2048-1));
  3532. tt_assert(HIGH_COMPRESSION == choose_compression_level(2048));
  3533. done: ;
  3534. }
  3535. static void
  3536. test_dir_find_dl_schedule(void* data)
  3537. {
  3538. download_status_t dls;
  3539. smartlist_t server, client, server_cons, client_cons, bridge;
  3540. (void)data;
  3541. mock_options = malloc(sizeof(or_options_t));
  3542. reset_options(mock_options, &mock_get_options_calls);
  3543. MOCK(get_options, mock_get_options);
  3544. mock_options->TestingServerDownloadSchedule = &server;
  3545. mock_options->TestingClientDownloadSchedule = &client;
  3546. mock_options->TestingServerConsensusDownloadSchedule = &server_cons;
  3547. mock_options->TestingClientConsensusDownloadSchedule = &client_cons;
  3548. mock_options->TestingBridgeDownloadSchedule = &bridge;
  3549. dls.schedule = DL_SCHED_GENERIC;
  3550. mock_options->ClientOnly = 1;
  3551. tt_ptr_op(find_dl_schedule(&dls, mock_options), OP_EQ, &client);
  3552. mock_options->ClientOnly = 0;
  3553. mock_options->DirPort_set = 1;
  3554. mock_options->ORPort_set = 1;
  3555. mock_options->DirCache = 1;
  3556. tt_ptr_op(find_dl_schedule(&dls, mock_options), OP_EQ, &server);
  3557. #if 0
  3558. dls.schedule = DL_SCHED_CONSENSUS;
  3559. mock_options->ClientOnly = 1;
  3560. mock_options->DirCache = 0;
  3561. tt_ptr_op(find_dl_schedule(&dls, mock_options), OP_EQ, &client_cons);
  3562. mock_options->ClientOnly = 0;
  3563. mock_options->DirCache = 1;
  3564. tt_ptr_op(find_dl_schedule(&dls, mock_options), OP_EQ, &server_cons);
  3565. #endif
  3566. dls.schedule = DL_SCHED_BRIDGE;
  3567. mock_options->ClientOnly = 1;
  3568. tt_ptr_op(find_dl_schedule(&dls, mock_options), OP_EQ, &bridge);
  3569. mock_options->ClientOnly = 0;
  3570. tt_ptr_op(find_dl_schedule(&dls, mock_options), OP_EQ, &bridge);
  3571. done:
  3572. UNMOCK(get_options);
  3573. }
  3574. #define DIR_LEGACY(name) \
  3575. { #name, test_dir_ ## name , TT_FORK, NULL, NULL }
  3576. #define DIR(name,flags) \
  3577. { #name, test_dir_##name, (flags), NULL, NULL }
  3578. struct testcase_t dir_tests[] = {
  3579. DIR_LEGACY(nicknames),
  3580. DIR_LEGACY(formats),
  3581. DIR(routerinfo_parsing, 0),
  3582. DIR(extrainfo_parsing, 0),
  3583. DIR(parse_router_list, TT_FORK),
  3584. DIR(load_routers, TT_FORK),
  3585. DIR(load_extrainfo, TT_FORK),
  3586. DIR_LEGACY(versions),
  3587. DIR_LEGACY(fp_pairs),
  3588. DIR(split_fps, 0),
  3589. DIR_LEGACY(measured_bw_kb),
  3590. DIR_LEGACY(measured_bw_kb_cache),
  3591. DIR_LEGACY(param_voting),
  3592. DIR_LEGACY(v3_networkstatus),
  3593. DIR(random_weighted, 0),
  3594. DIR(scale_bw, 0),
  3595. DIR_LEGACY(clip_unmeasured_bw_kb),
  3596. DIR_LEGACY(clip_unmeasured_bw_kb_alt),
  3597. DIR(fmt_control_ns, 0),
  3598. DIR(dirserv_set_routerstatus_testing, 0),
  3599. DIR(http_handling, 0),
  3600. DIR(purpose_needs_anonymity, 0),
  3601. DIR(fetch_type, 0),
  3602. DIR(packages, 0),
  3603. DIR(download_status_schedule, 0),
  3604. DIR(download_status_increment, 0),
  3605. DIR(authdir_type_to_string, 0),
  3606. DIR(conn_purpose_to_string, 0),
  3607. DIR(should_use_directory_guards, 0),
  3608. DIR(should_not_init_request_to_ourselves, TT_FORK),
  3609. DIR(should_not_init_request_to_dir_auths_without_v3_info, 0),
  3610. DIR(should_init_request_to_dir_auths, 0),
  3611. DIR(choose_compression_level, 0),
  3612. DIR(find_dl_schedule, 0),
  3613. END_OF_TESTCASES
  3614. };