test.c 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2011, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /* Ordinarily defined in tor_main.c; this bit is just here to provide one
  6. * since we're not linking to tor_main.c */
  7. const char tor_svn_revision[] = "";
  8. /**
  9. * \file test.c
  10. * \brief Unit tests for many pieces of the lower level Tor modules.
  11. **/
  12. #include "orconfig.h"
  13. #include <stdio.h>
  14. #ifdef HAVE_FCNTL_H
  15. #include <fcntl.h>
  16. #endif
  17. #ifdef MS_WINDOWS
  18. /* For mkdir() */
  19. #include <direct.h>
  20. #else
  21. #include <dirent.h>
  22. #endif
  23. /* These macros pull in declarations for some functions and structures that
  24. * are typically file-private. */
  25. #define BUFFERS_PRIVATE
  26. #define CONFIG_PRIVATE
  27. #define CONTROL_PRIVATE
  28. #define CRYPTO_PRIVATE
  29. #define DIRSERV_PRIVATE
  30. #define DIRVOTE_PRIVATE
  31. #define GEOIP_PRIVATE
  32. #define MEMPOOL_PRIVATE
  33. #define ROUTER_PRIVATE
  34. #include "or.h"
  35. #include "test.h"
  36. #include "torgzip.h"
  37. #include "mempool.h"
  38. #include "memarea.h"
  39. #ifdef USE_DMALLOC
  40. #include <dmalloc.h>
  41. #include <openssl/crypto.h>
  42. #endif
  43. /** Set to true if any unit test has failed. Mostly, this is set by the macros
  44. * in test.h */
  45. int have_failed = 0;
  46. /** Temporary directory (set up by setup_directory) under which we store all
  47. * our files during testing. */
  48. static char temp_dir[256];
  49. /** Select and create the temporary directory we'll use to run our unit tests.
  50. * Store it in <b>temp_dir</b>. Exit immediately if we can't create it.
  51. * idempotent. */
  52. static void
  53. setup_directory(void)
  54. {
  55. static int is_setup = 0;
  56. int r;
  57. if (is_setup) return;
  58. #ifdef MS_WINDOWS
  59. // XXXX
  60. tor_snprintf(temp_dir, sizeof(temp_dir),
  61. "c:\\windows\\temp\\tor_test_%d", (int)getpid());
  62. r = mkdir(temp_dir);
  63. #else
  64. tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d", (int) getpid());
  65. r = mkdir(temp_dir, 0700);
  66. #endif
  67. if (r) {
  68. fprintf(stderr, "Can't create directory %s:", temp_dir);
  69. perror("");
  70. exit(1);
  71. }
  72. is_setup = 1;
  73. }
  74. /** Return a filename relative to our testing temporary directory */
  75. static const char *
  76. get_fname(const char *name)
  77. {
  78. static char buf[1024];
  79. setup_directory();
  80. tor_snprintf(buf,sizeof(buf),"%s/%s",temp_dir,name);
  81. return buf;
  82. }
  83. /** Remove all files stored under the temporary directory, and the directory
  84. * itself. */
  85. static void
  86. remove_directory(void)
  87. {
  88. smartlist_t *elements = tor_listdir(temp_dir);
  89. if (elements) {
  90. SMARTLIST_FOREACH(elements, const char *, cp,
  91. {
  92. size_t len = strlen(cp)+strlen(temp_dir)+16;
  93. char *tmp = tor_malloc(len);
  94. tor_snprintf(tmp, len, "%s"PATH_SEPARATOR"%s", temp_dir, cp);
  95. unlink(tmp);
  96. tor_free(tmp);
  97. });
  98. SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
  99. smartlist_free(elements);
  100. }
  101. rmdir(temp_dir);
  102. }
  103. /** Define this if unit tests spend too much time generating public keys*/
  104. #undef CACHE_GENERATED_KEYS
  105. static crypto_pk_env_t *pregen_keys[5] = {NULL, NULL, NULL, NULL, NULL};
  106. #define N_PREGEN_KEYS ((int)(sizeof(pregen_keys)/sizeof(pregen_keys[0])))
  107. /** Generate and return a new keypair for use in unit tests. If we're using
  108. * the key cache optimization, we might reuse keys: we only guarantee that
  109. * keys made with distinct values for <b>idx</b> are different. The value of
  110. * <b>idx</b> must be at least 0, and less than N_PREGEN_KEYS. */
  111. static crypto_pk_env_t *
  112. pk_generate(int idx)
  113. {
  114. #ifdef CACHE_GENERATED_KEYS
  115. tor_assert(idx < N_PREGEN_KEYS);
  116. if (! pregen_keys[idx]) {
  117. pregen_keys[idx] = crypto_new_pk_env();
  118. tor_assert(!crypto_pk_generate_key(pregen_keys[idx]));
  119. }
  120. return crypto_pk_dup_key(pregen_keys[idx]);
  121. #else
  122. crypto_pk_env_t *result;
  123. (void) idx;
  124. result = crypto_new_pk_env();
  125. tor_assert(!crypto_pk_generate_key(result));
  126. return result;
  127. #endif
  128. }
  129. /** Free all storage used for the cached key optimization. */
  130. static void
  131. free_pregenerated_keys(void)
  132. {
  133. unsigned idx;
  134. for (idx = 0; idx < N_PREGEN_KEYS; ++idx) {
  135. if (pregen_keys[idx]) {
  136. crypto_free_pk_env(pregen_keys[idx]);
  137. pregen_keys[idx] = NULL;
  138. }
  139. }
  140. }
  141. /** Run unit tests for buffers.c */
  142. static void
  143. test_buffers(void)
  144. {
  145. char str[256];
  146. char str2[256];
  147. buf_t *buf = NULL, *buf2 = NULL;
  148. const char *cp;
  149. int j;
  150. size_t r;
  151. /****
  152. * buf_new
  153. ****/
  154. if (!(buf = buf_new()))
  155. test_fail();
  156. //test_eq(buf_capacity(buf), 4096);
  157. test_eq(buf_datalen(buf), 0);
  158. /****
  159. * General pointer frobbing
  160. */
  161. for (j=0;j<256;++j) {
  162. str[j] = (char)j;
  163. }
  164. write_to_buf(str, 256, buf);
  165. write_to_buf(str, 256, buf);
  166. test_eq(buf_datalen(buf), 512);
  167. fetch_from_buf(str2, 200, buf);
  168. test_memeq(str, str2, 200);
  169. test_eq(buf_datalen(buf), 312);
  170. memset(str2, 0, sizeof(str2));
  171. fetch_from_buf(str2, 256, buf);
  172. test_memeq(str+200, str2, 56);
  173. test_memeq(str, str2+56, 200);
  174. test_eq(buf_datalen(buf), 56);
  175. memset(str2, 0, sizeof(str2));
  176. /* Okay, now we should be 512 bytes into the 4096-byte buffer. If we add
  177. * another 3584 bytes, we hit the end. */
  178. for (j=0;j<15;++j) {
  179. write_to_buf(str, 256, buf);
  180. }
  181. assert_buf_ok(buf);
  182. test_eq(buf_datalen(buf), 3896);
  183. fetch_from_buf(str2, 56, buf);
  184. test_eq(buf_datalen(buf), 3840);
  185. test_memeq(str+200, str2, 56);
  186. for (j=0;j<15;++j) {
  187. memset(str2, 0, sizeof(str2));
  188. fetch_from_buf(str2, 256, buf);
  189. test_memeq(str, str2, 256);
  190. }
  191. test_eq(buf_datalen(buf), 0);
  192. buf_free(buf);
  193. buf = NULL;
  194. /* Okay, now make sure growing can work. */
  195. buf = buf_new_with_capacity(16);
  196. //test_eq(buf_capacity(buf), 16);
  197. write_to_buf(str+1, 255, buf);
  198. //test_eq(buf_capacity(buf), 256);
  199. fetch_from_buf(str2, 254, buf);
  200. test_memeq(str+1, str2, 254);
  201. //test_eq(buf_capacity(buf), 256);
  202. assert_buf_ok(buf);
  203. write_to_buf(str, 32, buf);
  204. //test_eq(buf_capacity(buf), 256);
  205. assert_buf_ok(buf);
  206. write_to_buf(str, 256, buf);
  207. assert_buf_ok(buf);
  208. //test_eq(buf_capacity(buf), 512);
  209. test_eq(buf_datalen(buf), 33+256);
  210. fetch_from_buf(str2, 33, buf);
  211. test_eq(*str2, str[255]);
  212. test_memeq(str2+1, str, 32);
  213. //test_eq(buf_capacity(buf), 512);
  214. test_eq(buf_datalen(buf), 256);
  215. fetch_from_buf(str2, 256, buf);
  216. test_memeq(str, str2, 256);
  217. /* now try shrinking: case 1. */
  218. buf_free(buf);
  219. buf = buf_new_with_capacity(33668);
  220. for (j=0;j<67;++j) {
  221. write_to_buf(str,255, buf);
  222. }
  223. //test_eq(buf_capacity(buf), 33668);
  224. test_eq(buf_datalen(buf), 17085);
  225. for (j=0; j < 40; ++j) {
  226. fetch_from_buf(str2, 255,buf);
  227. test_memeq(str2, str, 255);
  228. }
  229. /* now try shrinking: case 2. */
  230. buf_free(buf);
  231. buf = buf_new_with_capacity(33668);
  232. for (j=0;j<67;++j) {
  233. write_to_buf(str,255, buf);
  234. }
  235. for (j=0; j < 20; ++j) {
  236. fetch_from_buf(str2, 255,buf);
  237. test_memeq(str2, str, 255);
  238. }
  239. for (j=0;j<80;++j) {
  240. write_to_buf(str,255, buf);
  241. }
  242. //test_eq(buf_capacity(buf),33668);
  243. for (j=0; j < 120; ++j) {
  244. fetch_from_buf(str2, 255,buf);
  245. test_memeq(str2, str, 255);
  246. }
  247. /* Move from buf to buf. */
  248. buf_free(buf);
  249. buf = buf_new_with_capacity(4096);
  250. buf2 = buf_new_with_capacity(4096);
  251. for (j=0;j<100;++j)
  252. write_to_buf(str, 255, buf);
  253. test_eq(buf_datalen(buf), 25500);
  254. for (j=0;j<100;++j) {
  255. r = 10;
  256. move_buf_to_buf(buf2, buf, &r);
  257. test_eq(r, 0);
  258. }
  259. test_eq(buf_datalen(buf), 24500);
  260. test_eq(buf_datalen(buf2), 1000);
  261. for (j=0;j<3;++j) {
  262. fetch_from_buf(str2, 255, buf2);
  263. test_memeq(str2, str, 255);
  264. }
  265. r = 8192; /*big move*/
  266. move_buf_to_buf(buf2, buf, &r);
  267. test_eq(r, 0);
  268. r = 30000; /* incomplete move */
  269. move_buf_to_buf(buf2, buf, &r);
  270. test_eq(r, 13692);
  271. for (j=0;j<97;++j) {
  272. fetch_from_buf(str2, 255, buf2);
  273. test_memeq(str2, str, 255);
  274. }
  275. buf_free(buf);
  276. buf_free(buf2);
  277. buf = buf2 = NULL;
  278. buf = buf_new_with_capacity(5);
  279. cp = "Testing. This is a moderately long Testing string.";
  280. for (j = 0; cp[j]; j++)
  281. write_to_buf(cp+j, 1, buf);
  282. test_eq(0, buf_find_string_offset(buf, "Testing", 7));
  283. test_eq(1, buf_find_string_offset(buf, "esting", 6));
  284. test_eq(1, buf_find_string_offset(buf, "est", 3));
  285. test_eq(39, buf_find_string_offset(buf, "ing str", 7));
  286. test_eq(35, buf_find_string_offset(buf, "Testing str", 11));
  287. test_eq(32, buf_find_string_offset(buf, "ng ", 3));
  288. test_eq(43, buf_find_string_offset(buf, "string.", 7));
  289. test_eq(-1, buf_find_string_offset(buf, "shrdlu", 6));
  290. test_eq(-1, buf_find_string_offset(buf, "Testing thing", 13));
  291. test_eq(-1, buf_find_string_offset(buf, "ngx", 3));
  292. buf_free(buf);
  293. buf = NULL;
  294. #if 0
  295. {
  296. int s;
  297. int eof;
  298. int i;
  299. buf_t *buf2;
  300. /****
  301. * read_to_buf
  302. ****/
  303. s = open(get_fname("data"), O_WRONLY|O_CREAT|O_TRUNC, 0600);
  304. write(s, str, 256);
  305. close(s);
  306. s = open(get_fname("data"), O_RDONLY, 0);
  307. eof = 0;
  308. errno = 0; /* XXXX */
  309. i = read_to_buf(s, 10, buf, &eof);
  310. printf("%s\n", strerror(errno));
  311. test_eq(i, 10);
  312. test_eq(eof, 0);
  313. //test_eq(buf_capacity(buf), 4096);
  314. test_eq(buf_datalen(buf), 10);
  315. test_memeq(str, (char*)_buf_peek_raw_buffer(buf), 10);
  316. /* Test reading 0 bytes. */
  317. i = read_to_buf(s, 0, buf, &eof);
  318. //test_eq(buf_capacity(buf), 512*1024);
  319. test_eq(buf_datalen(buf), 10);
  320. test_eq(eof, 0);
  321. test_eq(i, 0);
  322. /* Now test when buffer is filled exactly. */
  323. buf2 = buf_new_with_capacity(6);
  324. i = read_to_buf(s, 6, buf2, &eof);
  325. //test_eq(buf_capacity(buf2), 6);
  326. test_eq(buf_datalen(buf2), 6);
  327. test_eq(eof, 0);
  328. test_eq(i, 6);
  329. test_memeq(str+10, (char*)_buf_peek_raw_buffer(buf2), 6);
  330. buf_free(buf2);
  331. buf2 = NULL;
  332. /* Now test when buffer is filled with more data to read. */
  333. buf2 = buf_new_with_capacity(32);
  334. i = read_to_buf(s, 128, buf2, &eof);
  335. //test_eq(buf_capacity(buf2), 128);
  336. test_eq(buf_datalen(buf2), 32);
  337. test_eq(eof, 0);
  338. test_eq(i, 32);
  339. buf_free(buf2);
  340. buf2 = NULL;
  341. /* Now read to eof. */
  342. test_assert(buf_capacity(buf) > 256);
  343. i = read_to_buf(s, 1024, buf, &eof);
  344. test_eq(i, (256-32-10-6));
  345. test_eq(buf_capacity(buf), MAX_BUF_SIZE);
  346. test_eq(buf_datalen(buf), 256-6-32);
  347. test_memeq(str, (char*)_buf_peek_raw_buffer(buf), 10); /* XXX Check rest. */
  348. test_eq(eof, 0);
  349. i = read_to_buf(s, 1024, buf, &eof);
  350. test_eq(i, 0);
  351. test_eq(buf_capacity(buf), MAX_BUF_SIZE);
  352. test_eq(buf_datalen(buf), 256-6-32);
  353. test_eq(eof, 1);
  354. }
  355. #endif
  356. done:
  357. if (buf)
  358. buf_free(buf);
  359. if (buf2)
  360. buf_free(buf2);
  361. }
  362. /** Run unit tests for Diffie-Hellman functionality. */
  363. static void
  364. test_crypto_dh(void)
  365. {
  366. crypto_dh_env_t *dh1 = crypto_dh_new();
  367. crypto_dh_env_t *dh2 = crypto_dh_new();
  368. char p1[DH_BYTES];
  369. char p2[DH_BYTES];
  370. char s1[DH_BYTES];
  371. char s2[DH_BYTES];
  372. ssize_t s1len, s2len;
  373. test_eq(crypto_dh_get_bytes(dh1), DH_BYTES);
  374. test_eq(crypto_dh_get_bytes(dh2), DH_BYTES);
  375. memset(p1, 0, DH_BYTES);
  376. memset(p2, 0, DH_BYTES);
  377. test_memeq(p1, p2, DH_BYTES);
  378. test_assert(! crypto_dh_get_public(dh1, p1, DH_BYTES));
  379. test_memneq(p1, p2, DH_BYTES);
  380. test_assert(! crypto_dh_get_public(dh2, p2, DH_BYTES));
  381. test_memneq(p1, p2, DH_BYTES);
  382. memset(s1, 0, DH_BYTES);
  383. memset(s2, 0xFF, DH_BYTES);
  384. s1len = crypto_dh_compute_secret(dh1, p2, DH_BYTES, s1, 50);
  385. s2len = crypto_dh_compute_secret(dh2, p1, DH_BYTES, s2, 50);
  386. test_assert(s1len > 0);
  387. test_eq(s1len, s2len);
  388. test_memeq(s1, s2, s1len);
  389. {
  390. /* XXXX Now fabricate some bad values and make sure they get caught,
  391. * Check 0, 1, N-1, >= N, etc.
  392. */
  393. }
  394. done:
  395. crypto_dh_free(dh1);
  396. crypto_dh_free(dh2);
  397. }
  398. /** Run unit tests for our random number generation function and its wrappers.
  399. */
  400. static void
  401. test_crypto_rng(void)
  402. {
  403. int i, j, allok;
  404. char data1[100], data2[100];
  405. /* Try out RNG. */
  406. test_assert(! crypto_seed_rng(0));
  407. crypto_rand(data1, 100);
  408. crypto_rand(data2, 100);
  409. test_memneq(data1,data2,100);
  410. allok = 1;
  411. for (i = 0; i < 100; ++i) {
  412. uint64_t big;
  413. char *host;
  414. j = crypto_rand_int(100);
  415. if (i < 0 || i >= 100)
  416. allok = 0;
  417. big = crypto_rand_uint64(U64_LITERAL(1)<<40);
  418. if (big >= (U64_LITERAL(1)<<40))
  419. allok = 0;
  420. big = crypto_rand_uint64(U64_LITERAL(5));
  421. if (big >= 5)
  422. allok = 0;
  423. host = crypto_random_hostname(3,8,"www.",".onion");
  424. if (strcmpstart(host,"www.") ||
  425. strcmpend(host,".onion") ||
  426. strlen(host) < 13 ||
  427. strlen(host) > 18)
  428. allok = 0;
  429. tor_free(host);
  430. }
  431. test_assert(allok);
  432. done:
  433. ;
  434. }
  435. /** Run unit tests for our AES functionality */
  436. static void
  437. test_crypto_aes(void)
  438. {
  439. char *data1 = NULL, *data2 = NULL, *data3 = NULL;
  440. crypto_cipher_env_t *env1 = NULL, *env2 = NULL;
  441. int i, j;
  442. data1 = tor_malloc(1024);
  443. data2 = tor_malloc(1024);
  444. data3 = tor_malloc(1024);
  445. /* Now, test encryption and decryption with stream cipher. */
  446. data1[0]='\0';
  447. for (i = 1023; i>0; i -= 35)
  448. strncat(data1, "Now is the time for all good onions", i);
  449. memset(data2, 0, 1024);
  450. memset(data3, 0, 1024);
  451. env1 = crypto_new_cipher_env();
  452. test_neq(env1, 0);
  453. env2 = crypto_new_cipher_env();
  454. test_neq(env2, 0);
  455. j = crypto_cipher_generate_key(env1);
  456. crypto_cipher_set_key(env2, crypto_cipher_get_key(env1));
  457. crypto_cipher_encrypt_init_cipher(env1);
  458. crypto_cipher_decrypt_init_cipher(env2);
  459. /* Try encrypting 512 chars. */
  460. crypto_cipher_encrypt(env1, data2, data1, 512);
  461. crypto_cipher_decrypt(env2, data3, data2, 512);
  462. test_memeq(data1, data3, 512);
  463. test_memneq(data1, data2, 512);
  464. /* Now encrypt 1 at a time, and get 1 at a time. */
  465. for (j = 512; j < 560; ++j) {
  466. crypto_cipher_encrypt(env1, data2+j, data1+j, 1);
  467. }
  468. for (j = 512; j < 560; ++j) {
  469. crypto_cipher_decrypt(env2, data3+j, data2+j, 1);
  470. }
  471. test_memeq(data1, data3, 560);
  472. /* Now encrypt 3 at a time, and get 5 at a time. */
  473. for (j = 560; j < 1024-5; j += 3) {
  474. crypto_cipher_encrypt(env1, data2+j, data1+j, 3);
  475. }
  476. for (j = 560; j < 1024-5; j += 5) {
  477. crypto_cipher_decrypt(env2, data3+j, data2+j, 5);
  478. }
  479. test_memeq(data1, data3, 1024-5);
  480. /* Now make sure that when we encrypt with different chunk sizes, we get
  481. the same results. */
  482. crypto_free_cipher_env(env2);
  483. env2 = NULL;
  484. memset(data3, 0, 1024);
  485. env2 = crypto_new_cipher_env();
  486. test_neq(env2, 0);
  487. crypto_cipher_set_key(env2, crypto_cipher_get_key(env1));
  488. crypto_cipher_encrypt_init_cipher(env2);
  489. for (j = 0; j < 1024-16; j += 17) {
  490. crypto_cipher_encrypt(env2, data3+j, data1+j, 17);
  491. }
  492. for (j= 0; j < 1024-16; ++j) {
  493. if (data2[j] != data3[j]) {
  494. printf("%d: %d\t%d\n", j, (int) data2[j], (int) data3[j]);
  495. }
  496. }
  497. test_memeq(data2, data3, 1024-16);
  498. crypto_free_cipher_env(env1);
  499. env1 = NULL;
  500. crypto_free_cipher_env(env2);
  501. env2 = NULL;
  502. /* NIST test vector for aes. */
  503. env1 = crypto_new_cipher_env(); /* IV starts at 0 */
  504. crypto_cipher_set_key(env1, "\x80\x00\x00\x00\x00\x00\x00\x00"
  505. "\x00\x00\x00\x00\x00\x00\x00\x00");
  506. crypto_cipher_encrypt_init_cipher(env1);
  507. crypto_cipher_encrypt(env1, data1,
  508. "\x00\x00\x00\x00\x00\x00\x00\x00"
  509. "\x00\x00\x00\x00\x00\x00\x00\x00", 16);
  510. test_memeq_hex(data1, "0EDD33D3C621E546455BD8BA1418BEC8");
  511. /* Now test rollover. All these values are originally from a python
  512. * script. */
  513. crypto_cipher_set_iv(env1, "\x00\x00\x00\x00\x00\x00\x00\x00"
  514. "\xff\xff\xff\xff\xff\xff\xff\xff");
  515. memset(data2, 0, 1024);
  516. crypto_cipher_encrypt(env1, data1, data2, 32);
  517. test_memeq_hex(data1, "335fe6da56f843199066c14a00a40231"
  518. "cdd0b917dbc7186908a6bfb5ffd574d3");
  519. crypto_cipher_set_iv(env1, "\x00\x00\x00\x00\xff\xff\xff\xff"
  520. "\xff\xff\xff\xff\xff\xff\xff\xff");
  521. memset(data2, 0, 1024);
  522. crypto_cipher_encrypt(env1, data1, data2, 32);
  523. test_memeq_hex(data1, "e627c6423fa2d77832a02b2794094b73"
  524. "3e63c721df790d2c6469cc1953a3ffac");
  525. crypto_cipher_set_iv(env1, "\xff\xff\xff\xff\xff\xff\xff\xff"
  526. "\xff\xff\xff\xff\xff\xff\xff\xff");
  527. memset(data2, 0, 1024);
  528. crypto_cipher_encrypt(env1, data1, data2, 32);
  529. test_memeq_hex(data1, "2aed2bff0de54f9328efd070bf48f70a"
  530. "0EDD33D3C621E546455BD8BA1418BEC8");
  531. /* Now check rollover on inplace cipher. */
  532. crypto_cipher_set_iv(env1, "\xff\xff\xff\xff\xff\xff\xff\xff"
  533. "\xff\xff\xff\xff\xff\xff\xff\xff");
  534. crypto_cipher_crypt_inplace(env1, data2, 64);
  535. test_memeq_hex(data2, "2aed2bff0de54f9328efd070bf48f70a"
  536. "0EDD33D3C621E546455BD8BA1418BEC8"
  537. "93e2c5243d6839eac58503919192f7ae"
  538. "1908e67cafa08d508816659c2e693191");
  539. crypto_cipher_set_iv(env1, "\xff\xff\xff\xff\xff\xff\xff\xff"
  540. "\xff\xff\xff\xff\xff\xff\xff\xff");
  541. crypto_cipher_crypt_inplace(env1, data2, 64);
  542. test_assert(tor_mem_is_zero(data2, 64));
  543. done:
  544. if (env1)
  545. crypto_free_cipher_env(env1);
  546. if (env2)
  547. crypto_free_cipher_env(env2);
  548. tor_free(data1);
  549. tor_free(data2);
  550. tor_free(data3);
  551. }
  552. /** Run unit tests for our SHA-1 functionality */
  553. static void
  554. test_crypto_sha(void)
  555. {
  556. crypto_digest_env_t *d1 = NULL, *d2 = NULL;
  557. int i;
  558. char key[80];
  559. char digest[20];
  560. char data[50];
  561. char d_out1[DIGEST_LEN], d_out2[DIGEST_LEN];
  562. /* Test SHA-1 with a test vector from the specification. */
  563. i = crypto_digest(data, "abc", 3);
  564. test_memeq_hex(data, "A9993E364706816ABA3E25717850C26C9CD0D89D");
  565. /* Test HMAC-SHA-1 with test cases from RFC2202. */
  566. /* Case 1. */
  567. memset(key, 0x0b, 20);
  568. crypto_hmac_sha1(digest, key, 20, "Hi There", 8);
  569. test_streq(hex_str(digest, 20),
  570. "B617318655057264E28BC0B6FB378C8EF146BE00");
  571. /* Case 2. */
  572. crypto_hmac_sha1(digest, "Jefe", 4, "what do ya want for nothing?", 28);
  573. test_streq(hex_str(digest, 20),
  574. "EFFCDF6AE5EB2FA2D27416D5F184DF9C259A7C79");
  575. /* Case 4. */
  576. base16_decode(key, 25,
  577. "0102030405060708090a0b0c0d0e0f10111213141516171819", 50);
  578. memset(data, 0xcd, 50);
  579. crypto_hmac_sha1(digest, key, 25, data, 50);
  580. test_streq(hex_str(digest, 20),
  581. "4C9007F4026250C6BC8414F9BF50C86C2D7235DA");
  582. /* Case . */
  583. memset(key, 0xaa, 80);
  584. crypto_hmac_sha1(digest, key, 80,
  585. "Test Using Larger Than Block-Size Key - Hash Key First",
  586. 54);
  587. test_streq(hex_str(digest, 20),
  588. "AA4AE5E15272D00E95705637CE8A3B55ED402112");
  589. /* Incremental digest code. */
  590. d1 = crypto_new_digest_env();
  591. test_assert(d1);
  592. crypto_digest_add_bytes(d1, "abcdef", 6);
  593. d2 = crypto_digest_dup(d1);
  594. test_assert(d2);
  595. crypto_digest_add_bytes(d2, "ghijkl", 6);
  596. crypto_digest_get_digest(d2, d_out1, sizeof(d_out1));
  597. crypto_digest(d_out2, "abcdefghijkl", 12);
  598. test_memeq(d_out1, d_out2, DIGEST_LEN);
  599. crypto_digest_assign(d2, d1);
  600. crypto_digest_add_bytes(d2, "mno", 3);
  601. crypto_digest_get_digest(d2, d_out1, sizeof(d_out1));
  602. crypto_digest(d_out2, "abcdefmno", 9);
  603. test_memeq(d_out1, d_out2, DIGEST_LEN);
  604. crypto_digest_get_digest(d1, d_out1, sizeof(d_out1));
  605. crypto_digest(d_out2, "abcdef", 6);
  606. test_memeq(d_out1, d_out2, DIGEST_LEN);
  607. done:
  608. if (d1)
  609. crypto_free_digest_env(d1);
  610. if (d2)
  611. crypto_free_digest_env(d2);
  612. }
  613. /** Run unit tests for our public key crypto functions */
  614. static void
  615. test_crypto_pk(void)
  616. {
  617. crypto_pk_env_t *pk1 = NULL, *pk2 = NULL;
  618. char *encoded = NULL;
  619. char data1[1024], data2[1024], data3[1024];
  620. size_t size;
  621. int i, j, p, len;
  622. /* Public-key ciphers */
  623. pk1 = pk_generate(0);
  624. pk2 = crypto_new_pk_env();
  625. test_assert(pk1 && pk2);
  626. test_assert(! crypto_pk_write_public_key_to_string(pk1, &encoded, &size));
  627. test_assert(! crypto_pk_read_public_key_from_string(pk2, encoded, size));
  628. test_eq(0, crypto_pk_cmp_keys(pk1, pk2));
  629. test_eq(128, crypto_pk_keysize(pk1));
  630. test_eq(128, crypto_pk_keysize(pk2));
  631. test_eq(128, crypto_pk_public_encrypt(pk2, data1, "Hello whirled.", 15,
  632. PK_PKCS1_OAEP_PADDING));
  633. test_eq(128, crypto_pk_public_encrypt(pk1, data2, "Hello whirled.", 15,
  634. PK_PKCS1_OAEP_PADDING));
  635. /* oaep padding should make encryption not match */
  636. test_memneq(data1, data2, 128);
  637. test_eq(15, crypto_pk_private_decrypt(pk1, data3, data1, 128,
  638. PK_PKCS1_OAEP_PADDING,1));
  639. test_streq(data3, "Hello whirled.");
  640. memset(data3, 0, 1024);
  641. test_eq(15, crypto_pk_private_decrypt(pk1, data3, data2, 128,
  642. PK_PKCS1_OAEP_PADDING,1));
  643. test_streq(data3, "Hello whirled.");
  644. /* Can't decrypt with public key. */
  645. test_eq(-1, crypto_pk_private_decrypt(pk2, data3, data2, 128,
  646. PK_PKCS1_OAEP_PADDING,1));
  647. /* Try again with bad padding */
  648. memcpy(data2+1, "XYZZY", 5); /* This has fails ~ once-in-2^40 */
  649. test_eq(-1, crypto_pk_private_decrypt(pk1, data3, data2, 128,
  650. PK_PKCS1_OAEP_PADDING,1));
  651. /* File operations: save and load private key */
  652. test_assert(! crypto_pk_write_private_key_to_filename(pk1,
  653. get_fname("pkey1")));
  654. /* failing case for read: can't read. */
  655. test_assert(crypto_pk_read_private_key_from_filename(pk2,
  656. get_fname("xyzzy")) < 0);
  657. write_str_to_file(get_fname("xyzzy"), "foobar", 6);
  658. /* Failing case for read: no key. */
  659. test_assert(crypto_pk_read_private_key_from_filename(pk2,
  660. get_fname("xyzzy")) < 0);
  661. test_assert(! crypto_pk_read_private_key_from_filename(pk2,
  662. get_fname("pkey1")));
  663. test_eq(15, crypto_pk_private_decrypt(pk2, data3, data1, 128,
  664. PK_PKCS1_OAEP_PADDING,1));
  665. /* Now try signing. */
  666. strlcpy(data1, "Ossifrage", 1024);
  667. test_eq(128, crypto_pk_private_sign(pk1, data2, data1, 10));
  668. test_eq(10, crypto_pk_public_checksig(pk1, data3, data2, 128));
  669. test_streq(data3, "Ossifrage");
  670. /* Try signing digests. */
  671. test_eq(128, crypto_pk_private_sign_digest(pk1, data2, data1, 10));
  672. test_eq(20, crypto_pk_public_checksig(pk1, data3, data2, 128));
  673. test_eq(0, crypto_pk_public_checksig_digest(pk1, data1, 10, data2, 128));
  674. test_eq(-1, crypto_pk_public_checksig_digest(pk1, data1, 11, data2, 128));
  675. /*XXXX test failed signing*/
  676. /* Try encoding */
  677. crypto_free_pk_env(pk2);
  678. pk2 = NULL;
  679. i = crypto_pk_asn1_encode(pk1, data1, 1024);
  680. test_assert(i>0);
  681. pk2 = crypto_pk_asn1_decode(data1, i);
  682. test_assert(crypto_pk_cmp_keys(pk1,pk2) == 0);
  683. /* Try with hybrid encryption wrappers. */
  684. crypto_rand(data1, 1024);
  685. for (i = 0; i < 3; ++i) {
  686. for (j = 85; j < 140; ++j) {
  687. memset(data2,0,1024);
  688. memset(data3,0,1024);
  689. if (i == 0 && j < 129)
  690. continue;
  691. p = (i==0)?PK_NO_PADDING:
  692. (i==1)?PK_PKCS1_PADDING:PK_PKCS1_OAEP_PADDING;
  693. len = crypto_pk_public_hybrid_encrypt(pk1,data2,data1,j,p,0);
  694. test_assert(len>=0);
  695. len = crypto_pk_private_hybrid_decrypt(pk1,data3,data2,len,p,1);
  696. test_eq(len,j);
  697. test_memeq(data1,data3,j);
  698. }
  699. }
  700. /* Try copy_full */
  701. crypto_free_pk_env(pk2);
  702. pk2 = crypto_pk_copy_full(pk1);
  703. test_assert(pk2 != NULL);
  704. test_neq_ptr(pk1, pk2);
  705. test_assert(crypto_pk_cmp_keys(pk1,pk2) == 0);
  706. done:
  707. if (pk1)
  708. crypto_free_pk_env(pk1);
  709. if (pk2)
  710. crypto_free_pk_env(pk2);
  711. tor_free(encoded);
  712. }
  713. /** Run unit tests for misc crypto functionality. */
  714. static void
  715. test_crypto(void)
  716. {
  717. char *data1 = NULL, *data2 = NULL, *data3 = NULL;
  718. int i, j, idx;
  719. data1 = tor_malloc(1024);
  720. data2 = tor_malloc(1024);
  721. data3 = tor_malloc(1024);
  722. test_assert(data1 && data2 && data3);
  723. /* Base64 tests */
  724. memset(data1, 6, 1024);
  725. for (idx = 0; idx < 10; ++idx) {
  726. i = base64_encode(data2, 1024, data1, idx);
  727. test_assert(i >= 0);
  728. j = base64_decode(data3, 1024, data2, i);
  729. test_eq(j,idx);
  730. test_memeq(data3, data1, idx);
  731. }
  732. strlcpy(data1, "Test string that contains 35 chars.", 1024);
  733. strlcat(data1, " 2nd string that contains 35 chars.", 1024);
  734. i = base64_encode(data2, 1024, data1, 71);
  735. j = base64_decode(data3, 1024, data2, i);
  736. test_eq(j, 71);
  737. test_streq(data3, data1);
  738. test_assert(data2[i] == '\0');
  739. crypto_rand(data1, DIGEST_LEN);
  740. memset(data2, 100, 1024);
  741. digest_to_base64(data2, data1);
  742. test_eq(BASE64_DIGEST_LEN, strlen(data2));
  743. test_eq(100, data2[BASE64_DIGEST_LEN+2]);
  744. memset(data3, 99, 1024);
  745. test_eq(digest_from_base64(data3, data2), 0);
  746. test_memeq(data1, data3, DIGEST_LEN);
  747. test_eq(99, data3[DIGEST_LEN+1]);
  748. test_assert(digest_from_base64(data3, "###") < 0);
  749. /* Base32 tests */
  750. strlcpy(data1, "5chrs", 1024);
  751. /* bit pattern is: [35 63 68 72 73] ->
  752. * [00110101 01100011 01101000 01110010 01110011]
  753. * By 5s: [00110 10101 10001 10110 10000 11100 10011 10011]
  754. */
  755. base32_encode(data2, 9, data1, 5);
  756. test_streq(data2, "gvrwq4tt");
  757. strlcpy(data1, "\xFF\xF5\x6D\x44\xAE\x0D\x5C\xC9\x62\xC4", 1024);
  758. base32_encode(data2, 30, data1, 10);
  759. test_streq(data2, "772w2rfobvomsywe");
  760. /* Base16 tests */
  761. strlcpy(data1, "6chrs\xff", 1024);
  762. base16_encode(data2, 13, data1, 6);
  763. test_streq(data2, "3663687273FF");
  764. strlcpy(data1, "f0d678affc000100", 1024);
  765. i = base16_decode(data2, 8, data1, 16);
  766. test_eq(i,0);
  767. test_memeq(data2, "\xf0\xd6\x78\xaf\xfc\x00\x01\x00",8);
  768. /* now try some failing base16 decodes */
  769. test_eq(-1, base16_decode(data2, 8, data1, 15)); /* odd input len */
  770. test_eq(-1, base16_decode(data2, 7, data1, 16)); /* dest too short */
  771. strlcpy(data1, "f0dz!8affc000100", 1024);
  772. test_eq(-1, base16_decode(data2, 8, data1, 16));
  773. tor_free(data1);
  774. tor_free(data2);
  775. tor_free(data3);
  776. /* Add spaces to fingerprint */
  777. {
  778. data1 = tor_strdup("ABCD1234ABCD56780000ABCD1234ABCD56780000");
  779. test_eq(strlen(data1), 40);
  780. data2 = tor_malloc(FINGERPRINT_LEN+1);
  781. add_spaces_to_fp(data2, FINGERPRINT_LEN+1, data1);
  782. test_streq(data2, "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 0000");
  783. tor_free(data1);
  784. tor_free(data2);
  785. }
  786. /* Check fingerprint */
  787. {
  788. test_assert(crypto_pk_check_fingerprint_syntax(
  789. "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 0000"));
  790. test_assert(!crypto_pk_check_fingerprint_syntax(
  791. "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 000"));
  792. test_assert(!crypto_pk_check_fingerprint_syntax(
  793. "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 00000"));
  794. test_assert(!crypto_pk_check_fingerprint_syntax(
  795. "ABCD 1234 ABCD 5678 0000 ABCD1234 ABCD 5678 0000"));
  796. test_assert(!crypto_pk_check_fingerprint_syntax(
  797. "ABCD 1234 ABCD 5678 0000 ABCD1234 ABCD 5678 00000"));
  798. test_assert(!crypto_pk_check_fingerprint_syntax(
  799. "ACD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 00000"));
  800. }
  801. done:
  802. tor_free(data1);
  803. tor_free(data2);
  804. tor_free(data3);
  805. }
  806. /** Run unit tests for our secret-to-key passphrase hashing functionality. */
  807. static void
  808. test_crypto_s2k(void)
  809. {
  810. char buf[29];
  811. char buf2[29];
  812. char *buf3 = NULL;
  813. int i;
  814. memset(buf, 0, sizeof(buf));
  815. memset(buf2, 0, sizeof(buf2));
  816. buf3 = tor_malloc(65536);
  817. memset(buf3, 0, 65536);
  818. secret_to_key(buf+9, 20, "", 0, buf);
  819. crypto_digest(buf2+9, buf3, 1024);
  820. test_memeq(buf, buf2, 29);
  821. memcpy(buf,"vrbacrda",8);
  822. memcpy(buf2,"vrbacrda",8);
  823. buf[8] = 96;
  824. buf2[8] = 96;
  825. secret_to_key(buf+9, 20, "12345678", 8, buf);
  826. for (i = 0; i < 65536; i += 16) {
  827. memcpy(buf3+i, "vrbacrda12345678", 16);
  828. }
  829. crypto_digest(buf2+9, buf3, 65536);
  830. test_memeq(buf, buf2, 29);
  831. done:
  832. tor_free(buf3);
  833. }
  834. /** Helper: return a tristate based on comparing the strings in *<b>a</b> and
  835. * *<b>b</b>. */
  836. static int
  837. _compare_strs(const void **a, const void **b)
  838. {
  839. const char *s1 = *a, *s2 = *b;
  840. return strcmp(s1, s2);
  841. }
  842. /** Helper: return a tristate based on comparing the strings in *<b>a</b> and
  843. * *<b>b</b>, excluding a's first character, and ignoring case. */
  844. static int
  845. _compare_without_first_ch(const void *a, const void **b)
  846. {
  847. const char *s1 = a, *s2 = *b;
  848. return strcasecmp(s1+1, s2);
  849. }
  850. /** Test basic utility functionality. */
  851. static void
  852. test_util(void)
  853. {
  854. struct timeval start, end;
  855. struct tm a_time;
  856. char timestr[RFC1123_TIME_LEN+1];
  857. char buf[1024];
  858. time_t t_res;
  859. int i;
  860. uint32_t u32;
  861. uint16_t u16;
  862. char *cp, *k, *v;
  863. const char *str;
  864. start.tv_sec = 5;
  865. start.tv_usec = 5000;
  866. end.tv_sec = 5;
  867. end.tv_usec = 5000;
  868. test_eq(0L, tv_udiff(&start, &end));
  869. end.tv_usec = 7000;
  870. test_eq(2000L, tv_udiff(&start, &end));
  871. end.tv_sec = 6;
  872. test_eq(1002000L, tv_udiff(&start, &end));
  873. end.tv_usec = 0;
  874. test_eq(995000L, tv_udiff(&start, &end));
  875. end.tv_sec = 4;
  876. test_eq(-1005000L, tv_udiff(&start, &end));
  877. end.tv_usec = 999990;
  878. start.tv_sec = 1;
  879. start.tv_usec = 500;
  880. /* The test values here are confirmed to be correct on a platform
  881. * with a working timegm. */
  882. a_time.tm_year = 2003-1900;
  883. a_time.tm_mon = 7;
  884. a_time.tm_mday = 30;
  885. a_time.tm_hour = 6;
  886. a_time.tm_min = 14;
  887. a_time.tm_sec = 55;
  888. test_eq((time_t) 1062224095UL, tor_timegm(&a_time));
  889. a_time.tm_year = 2004-1900; /* Try a leap year, after feb. */
  890. test_eq((time_t) 1093846495UL, tor_timegm(&a_time));
  891. a_time.tm_mon = 1; /* Try a leap year, in feb. */
  892. a_time.tm_mday = 10;
  893. test_eq((time_t) 1076393695UL, tor_timegm(&a_time));
  894. format_rfc1123_time(timestr, 0);
  895. test_streq("Thu, 01 Jan 1970 00:00:00 GMT", timestr);
  896. format_rfc1123_time(timestr, (time_t)1091580502UL);
  897. test_streq("Wed, 04 Aug 2004 00:48:22 GMT", timestr);
  898. t_res = 0;
  899. i = parse_rfc1123_time(timestr, &t_res);
  900. test_eq(i,0);
  901. test_eq(t_res, (time_t)1091580502UL);
  902. test_eq(-1, parse_rfc1123_time("Wed, zz Aug 2004 99-99x99 GMT", &t_res));
  903. tor_gettimeofday(&start);
  904. /* Tests for corner cases of strl operations */
  905. test_eq(5, strlcpy(buf, "Hello", 0));
  906. strlcpy(buf, "Hello", sizeof(buf));
  907. test_eq(10, strlcat(buf, "Hello", 5));
  908. /* Test tor_strstrip() */
  909. strlcpy(buf, "Testing 1 2 3", sizeof(buf));
  910. tor_strstrip(buf, ",!");
  911. test_streq(buf, "Testing 1 2 3");
  912. strlcpy(buf, "!Testing 1 2 3?", sizeof(buf));
  913. tor_strstrip(buf, "!? ");
  914. test_streq(buf, "Testing123");
  915. /* Test parse_addr_port */
  916. cp = NULL; u32 = 3; u16 = 3;
  917. test_assert(!parse_addr_port(LOG_WARN, "1.2.3.4", &cp, &u32, &u16));
  918. test_streq(cp, "1.2.3.4");
  919. test_eq(u32, 0x01020304u);
  920. test_eq(u16, 0);
  921. tor_free(cp);
  922. test_assert(!parse_addr_port(LOG_WARN, "4.3.2.1:99", &cp, &u32, &u16));
  923. test_streq(cp, "4.3.2.1");
  924. test_eq(u32, 0x04030201u);
  925. test_eq(u16, 99);
  926. tor_free(cp);
  927. test_assert(!parse_addr_port(LOG_WARN, "nonexistent.address:4040",
  928. &cp, NULL, &u16));
  929. test_streq(cp, "nonexistent.address");
  930. test_eq(u16, 4040);
  931. tor_free(cp);
  932. test_assert(!parse_addr_port(LOG_WARN, "localhost:9999", &cp, &u32, &u16));
  933. test_streq(cp, "localhost");
  934. test_eq(u32, 0x7f000001u);
  935. test_eq(u16, 9999);
  936. tor_free(cp);
  937. u32 = 3;
  938. test_assert(!parse_addr_port(LOG_WARN, "localhost", NULL, &u32, &u16));
  939. test_eq(cp, NULL);
  940. test_eq(u32, 0x7f000001u);
  941. test_eq(u16, 0);
  942. tor_free(cp);
  943. test_eq(0, addr_mask_get_bits(0x0u));
  944. test_eq(32, addr_mask_get_bits(0xFFFFFFFFu));
  945. test_eq(16, addr_mask_get_bits(0xFFFF0000u));
  946. test_eq(31, addr_mask_get_bits(0xFFFFFFFEu));
  947. test_eq(1, addr_mask_get_bits(0x80000000u));
  948. /* Test tor_parse_long. */
  949. test_eq(10L, tor_parse_long("10",10,0,100,NULL,NULL));
  950. test_eq(0L, tor_parse_long("10",10,50,100,NULL,NULL));
  951. test_eq(-50L, tor_parse_long("-50",10,-100,100,NULL,NULL));
  952. /* Test tor_parse_ulong */
  953. test_eq(10UL, tor_parse_ulong("10",10,0,100,NULL,NULL));
  954. test_eq(0UL, tor_parse_ulong("10",10,50,100,NULL,NULL));
  955. /* Test tor_parse_uint64. */
  956. test_assert(U64_LITERAL(10) == tor_parse_uint64("10 x",10,0,100, &i, &cp));
  957. test_assert(i == 1);
  958. test_streq(cp, " x");
  959. test_assert(U64_LITERAL(12345678901) ==
  960. tor_parse_uint64("12345678901",10,0,UINT64_MAX, &i, &cp));
  961. test_assert(i == 1);
  962. test_streq(cp, "");
  963. test_assert(U64_LITERAL(0) ==
  964. tor_parse_uint64("12345678901",10,500,INT32_MAX, &i, &cp));
  965. test_assert(i == 0);
  966. /* Test failing snprintf cases */
  967. test_eq(-1, tor_snprintf(buf, 0, "Foo"));
  968. test_eq(-1, tor_snprintf(buf, 2, "Foo"));
  969. /* Test printf with uint64 */
  970. tor_snprintf(buf, sizeof(buf), "x!"U64_FORMAT"!x",
  971. U64_PRINTF_ARG(U64_LITERAL(12345678901)));
  972. test_streq(buf, "x!12345678901!x");
  973. /* Test parse_config_line_from_str */
  974. strlcpy(buf, "k v\n" " key value with spaces \n" "keykey val\n"
  975. "k2\n"
  976. "k3 \n" "\n" " \n" "#comment\n"
  977. "k4#a\n" "k5#abc\n" "k6 val #with comment\n"
  978. "kseven \"a quoted 'string\"\n"
  979. "k8 \"a \\x71uoted\\n\\\"str\\\\ing\\t\\001\\01\\1\\\"\"\n"
  980. , sizeof(buf));
  981. str = buf;
  982. str = parse_config_line_from_str(str, &k, &v);
  983. test_streq(k, "k");
  984. test_streq(v, "v");
  985. tor_free(k); tor_free(v);
  986. test_assert(!strcmpstart(str, "key value with"));
  987. str = parse_config_line_from_str(str, &k, &v);
  988. test_streq(k, "key");
  989. test_streq(v, "value with spaces");
  990. tor_free(k); tor_free(v);
  991. test_assert(!strcmpstart(str, "keykey"));
  992. str = parse_config_line_from_str(str, &k, &v);
  993. test_streq(k, "keykey");
  994. test_streq(v, "val");
  995. tor_free(k); tor_free(v);
  996. test_assert(!strcmpstart(str, "k2\n"));
  997. str = parse_config_line_from_str(str, &k, &v);
  998. test_streq(k, "k2");
  999. test_streq(v, "");
  1000. tor_free(k); tor_free(v);
  1001. test_assert(!strcmpstart(str, "k3 \n"));
  1002. str = parse_config_line_from_str(str, &k, &v);
  1003. test_streq(k, "k3");
  1004. test_streq(v, "");
  1005. tor_free(k); tor_free(v);
  1006. test_assert(!strcmpstart(str, "#comment"));
  1007. str = parse_config_line_from_str(str, &k, &v);
  1008. test_streq(k, "k4");
  1009. test_streq(v, "");
  1010. tor_free(k); tor_free(v);
  1011. test_assert(!strcmpstart(str, "k5#abc"));
  1012. str = parse_config_line_from_str(str, &k, &v);
  1013. test_streq(k, "k5");
  1014. test_streq(v, "");
  1015. tor_free(k); tor_free(v);
  1016. test_assert(!strcmpstart(str, "k6"));
  1017. str = parse_config_line_from_str(str, &k, &v);
  1018. test_streq(k, "k6");
  1019. test_streq(v, "val");
  1020. tor_free(k); tor_free(v);
  1021. test_assert(!strcmpstart(str, "kseven"));
  1022. str = parse_config_line_from_str(str, &k, &v);
  1023. test_streq(k, "kseven");
  1024. test_streq(v, "a quoted \'string");
  1025. tor_free(k); tor_free(v);
  1026. test_assert(!strcmpstart(str, "k8 "));
  1027. str = parse_config_line_from_str(str, &k, &v);
  1028. test_streq(k, "k8");
  1029. test_streq(v, "a quoted\n\"str\\ing\t\x01\x01\x01\"");
  1030. tor_free(k); tor_free(v);
  1031. test_streq(str, "");
  1032. /* Test for strcmpstart and strcmpend. */
  1033. test_assert(strcmpstart("abcdef", "abcdef")==0);
  1034. test_assert(strcmpstart("abcdef", "abc")==0);
  1035. test_assert(strcmpstart("abcdef", "abd")<0);
  1036. test_assert(strcmpstart("abcdef", "abb")>0);
  1037. test_assert(strcmpstart("ab", "abb")<0);
  1038. test_assert(strcmpend("abcdef", "abcdef")==0);
  1039. test_assert(strcmpend("abcdef", "def")==0);
  1040. test_assert(strcmpend("abcdef", "deg")<0);
  1041. test_assert(strcmpend("abcdef", "dee")>0);
  1042. test_assert(strcmpend("ab", "abb")<0);
  1043. test_assert(strcasecmpend("AbcDEF", "abcdef")==0);
  1044. test_assert(strcasecmpend("abcdef", "dEF")==0);
  1045. test_assert(strcasecmpend("abcDEf", "deg")<0);
  1046. test_assert(strcasecmpend("abcdef", "DEE")>0);
  1047. test_assert(strcasecmpend("ab", "abB")<0);
  1048. /* Test mem_is_zero */
  1049. memset(buf,0,128);
  1050. buf[128] = 'x';
  1051. test_assert(tor_digest_is_zero(buf));
  1052. test_assert(tor_mem_is_zero(buf, 10));
  1053. test_assert(tor_mem_is_zero(buf, 20));
  1054. test_assert(tor_mem_is_zero(buf, 128));
  1055. test_assert(!tor_mem_is_zero(buf, 129));
  1056. buf[60] = (char)255;
  1057. test_assert(!tor_mem_is_zero(buf, 128));
  1058. buf[0] = (char)1;
  1059. test_assert(!tor_mem_is_zero(buf, 10));
  1060. /* Test inet_ntop */
  1061. {
  1062. char tmpbuf[TOR_ADDR_BUF_LEN];
  1063. const char *ip = "176.192.208.224";
  1064. struct in_addr in;
  1065. tor_inet_pton(AF_INET, ip, &in);
  1066. tor_inet_ntop(AF_INET, &in, tmpbuf, sizeof(tmpbuf));
  1067. test_streq(tmpbuf, ip);
  1068. }
  1069. /* Test 'escaped' */
  1070. test_streq("\"\"", escaped(""));
  1071. test_streq("\"abcd\"", escaped("abcd"));
  1072. test_streq("\"\\\\\\n\\r\\t\\\"\\'\"", escaped("\\\n\r\t\"\'"));
  1073. test_streq("\"z\\001abc\\277d\"", escaped("z\001abc\277d"));
  1074. test_assert(NULL == escaped(NULL));
  1075. /* Test strndup and memdup */
  1076. {
  1077. const char *s = "abcdefghijklmnopqrstuvwxyz";
  1078. cp = tor_strndup(s, 30);
  1079. test_streq(cp, s); /* same string, */
  1080. test_neq(cp, s); /* but different pointers. */
  1081. tor_free(cp);
  1082. cp = tor_strndup(s, 5);
  1083. test_streq(cp, "abcde");
  1084. tor_free(cp);
  1085. s = "a\0b\0c\0d\0e\0";
  1086. cp = tor_memdup(s,10);
  1087. test_memeq(cp, s, 10); /* same ram, */
  1088. test_neq(cp, s); /* but different pointers. */
  1089. tor_free(cp);
  1090. }
  1091. /* Test str-foo functions */
  1092. cp = tor_strdup("abcdef");
  1093. test_assert(tor_strisnonupper(cp));
  1094. cp[3] = 'D';
  1095. test_assert(!tor_strisnonupper(cp));
  1096. tor_strupper(cp);
  1097. test_streq(cp, "ABCDEF");
  1098. test_assert(tor_strisprint(cp));
  1099. cp[3] = 3;
  1100. test_assert(!tor_strisprint(cp));
  1101. tor_free(cp);
  1102. /* Test eat_whitespace. */
  1103. {
  1104. const char *s = " \n a";
  1105. test_eq_ptr(eat_whitespace(s), s+4);
  1106. s = "abcd";
  1107. test_eq_ptr(eat_whitespace(s), s);
  1108. s = "#xyz\nab";
  1109. test_eq_ptr(eat_whitespace(s), s+5);
  1110. }
  1111. /* Test memmem and memstr */
  1112. {
  1113. const char *haystack = "abcde";
  1114. tor_assert(!tor_memmem(haystack, 5, "ef", 2));
  1115. test_eq_ptr(tor_memmem(haystack, 5, "cd", 2), haystack + 2);
  1116. test_eq_ptr(tor_memmem(haystack, 5, "cde", 3), haystack + 2);
  1117. haystack = "ababcad";
  1118. test_eq_ptr(tor_memmem(haystack, 7, "abc", 3), haystack + 2);
  1119. test_eq_ptr(tor_memstr(haystack, 7, "abc"), haystack + 2);
  1120. test_assert(!tor_memstr(haystack, 7, "fe"));
  1121. test_assert(!tor_memstr(haystack, 7, "longerthantheoriginal"));
  1122. }
  1123. /* Test wrap_string */
  1124. {
  1125. smartlist_t *sl = smartlist_create();
  1126. wrap_string(sl, "This is a test of string wrapping functionality: woot.",
  1127. 10, "", "");
  1128. cp = smartlist_join_strings(sl, "", 0, NULL);
  1129. test_streq(cp,
  1130. "This is a\ntest of\nstring\nwrapping\nfunctional\nity: woot.\n");
  1131. tor_free(cp);
  1132. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1133. smartlist_clear(sl);
  1134. wrap_string(sl, "This is a test of string wrapping functionality: woot.",
  1135. 16, "### ", "# ");
  1136. cp = smartlist_join_strings(sl, "", 0, NULL);
  1137. test_streq(cp,
  1138. "### This is a\n# test of string\n# wrapping\n# functionality:\n"
  1139. "# woot.\n");
  1140. tor_free(cp);
  1141. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1142. smartlist_free(sl);
  1143. }
  1144. tor_gettimeofday(&start);
  1145. /* now make sure time works. */
  1146. tor_gettimeofday(&end);
  1147. /* We might've timewarped a little. */
  1148. test_assert(tv_udiff(&start, &end) >= -5000);
  1149. /* Test tor_log2(). */
  1150. test_eq(tor_log2(64), 6);
  1151. test_eq(tor_log2(65), 6);
  1152. test_eq(tor_log2(63), 5);
  1153. test_eq(tor_log2(1), 0);
  1154. test_eq(tor_log2(2), 1);
  1155. test_eq(tor_log2(3), 1);
  1156. test_eq(tor_log2(4), 2);
  1157. test_eq(tor_log2(5), 2);
  1158. test_eq(tor_log2(U64_LITERAL(40000000000000000)), 55);
  1159. test_eq(tor_log2(UINT64_MAX), 63);
  1160. /* Test round_to_power_of_2 */
  1161. test_eq(round_to_power_of_2(120), 128);
  1162. test_eq(round_to_power_of_2(128), 128);
  1163. test_eq(round_to_power_of_2(130), 128);
  1164. test_eq(round_to_power_of_2(U64_LITERAL(40000000000000000)),
  1165. U64_LITERAL(1)<<55);
  1166. test_eq(round_to_power_of_2(0), 2);
  1167. done:
  1168. ;
  1169. }
  1170. /** Helper: assert that IPv6 addresses <b>a</b> and <b>b</b> are the same. On
  1171. * failure, reports an error, describing the addresses as <b>e1</b> and
  1172. * <b>e2</b>, and reporting the line number as <b>line</b>. */
  1173. static void
  1174. _test_eq_ip6(struct in6_addr *a, struct in6_addr *b, const char *e1,
  1175. const char *e2, int line)
  1176. {
  1177. int i;
  1178. int ok = 1;
  1179. for (i = 0; i < 16; ++i) {
  1180. if (a->s6_addr[i] != b->s6_addr[i]) {
  1181. ok = 0;
  1182. break;
  1183. }
  1184. }
  1185. if (ok) {
  1186. printf("."); fflush(stdout);
  1187. } else {
  1188. char buf1[128], *cp1;
  1189. char buf2[128], *cp2;
  1190. have_failed = 1;
  1191. cp1 = buf1; cp2 = buf2;
  1192. for (i=0; i<16; ++i) {
  1193. tor_snprintf(cp1, sizeof(buf1)-(cp1-buf1), "%02x", a->s6_addr[i]);
  1194. tor_snprintf(cp2, sizeof(buf2)-(cp2-buf2), "%02x", b->s6_addr[i]);
  1195. cp1 += 2; cp2 += 2;
  1196. if ((i%2)==1 && i != 15) {
  1197. *cp1++ = ':';
  1198. *cp2++ = ':';
  1199. }
  1200. }
  1201. *cp1 = *cp2 = '\0';
  1202. printf("Line %d: assertion failed: (%s == %s)\n"
  1203. " %s != %s\n", line, e1, e2, buf1, buf2);
  1204. fflush(stdout);
  1205. }
  1206. }
  1207. /** Helper: Assert that two strings both decode as IPv6 addresses with
  1208. * tor_inet_pton(), and both decode to the same address. */
  1209. #define test_pton6_same(a,b) STMT_BEGIN \
  1210. test_eq(tor_inet_pton(AF_INET6, a, &a1), 1); \
  1211. test_eq(tor_inet_pton(AF_INET6, b, &a2), 1); \
  1212. _test_eq_ip6(&a1,&a2,#a,#b,__LINE__); \
  1213. STMT_END
  1214. /** Helper: Assert that <b>a</b> is recognized as a bad IPv6 address by
  1215. * tor_inet_pton(). */
  1216. #define test_pton6_bad(a) \
  1217. test_eq(0, tor_inet_pton(AF_INET6, a, &a1))
  1218. /** Helper: assert that <b>a</b>, when parsed by tor_inet_pton() and displayed
  1219. * with tor_inet_ntop(), yields <b>b</b>. Also assert that <b>b</b> parses to
  1220. * the same value as <b>a</b>. */
  1221. #define test_ntop6_reduces(a,b) STMT_BEGIN \
  1222. test_eq(tor_inet_pton(AF_INET6, a, &a1), 1); \
  1223. test_streq(tor_inet_ntop(AF_INET6, &a1, buf, sizeof(buf)), b); \
  1224. test_eq(tor_inet_pton(AF_INET6, b, &a2), 1); \
  1225. _test_eq_ip6(&a1, &a2, a, b, __LINE__); \
  1226. STMT_END
  1227. /** Helper: assert that <b>a</b> parses by tor_inet_pton() into a address that
  1228. * passes tor_addr_is_internal() with <b>for_listening</b>. */
  1229. #define test_internal_ip(a,for_listening) STMT_BEGIN \
  1230. test_eq(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), 1); \
  1231. t1.family = AF_INET6; \
  1232. if (!tor_addr_is_internal(&t1, for_listening)) \
  1233. test_fail_msg( a "was not internal."); \
  1234. STMT_END
  1235. /** Helper: assert that <b>a</b> parses by tor_inet_pton() into a address that
  1236. * does not pass tor_addr_is_internal() with <b>for_listening</b>. */
  1237. #define test_external_ip(a,for_listening) STMT_BEGIN \
  1238. test_eq(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), 1); \
  1239. t1.family = AF_INET6; \
  1240. if (tor_addr_is_internal(&t1, for_listening)) \
  1241. test_fail_msg(a "was not external."); \
  1242. STMT_END
  1243. /** Helper: Assert that <b>a</b> and <b>b</b>, when parsed by
  1244. * tor_inet_pton(), give addresses that compare in the order defined by
  1245. * <b>op</b> with tor_addr_compare(). */
  1246. #define test_addr_compare(a, op, b) STMT_BEGIN \
  1247. test_eq(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), 1); \
  1248. test_eq(tor_inet_pton(AF_INET6, b, &t2.addr.in6_addr), 1); \
  1249. t1.family = t2.family = AF_INET6; \
  1250. r = tor_addr_compare(&t1,&t2,CMP_SEMANTIC); \
  1251. if (!(r op 0)) \
  1252. test_fail_msg("failed: tor_addr_compare("a","b") "#op" 0"); \
  1253. STMT_END
  1254. /** Helper: Assert that <b>a</b> and <b>b</b>, when parsed by
  1255. * tor_inet_pton(), give addresses that compare in the order defined by
  1256. * <b>op</b> with tor_addr_compare_masked() with <b>m</b> masked. */
  1257. #define test_addr_compare_masked(a, op, b, m) STMT_BEGIN \
  1258. test_eq(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), 1); \
  1259. test_eq(tor_inet_pton(AF_INET6, b, &t2.addr.in6_addr), 1); \
  1260. t1.family = t2.family = AF_INET6; \
  1261. r = tor_addr_compare_masked(&t1,&t2,m,CMP_SEMANTIC); \
  1262. if (!(r op 0)) \
  1263. test_fail_msg("failed: tor_addr_compare_masked("a","b","#m") "#op" 0"); \
  1264. STMT_END
  1265. /** Helper: assert that <b>xx</b> is parseable as a masked IPv6 address with
  1266. * ports by tor_parse_mask_addr_ports(), with family <b>f</b>, IP address
  1267. * as 4 32-bit words <b>ip1...ip4</b>, mask bits as <b>mm</b>, and port range
  1268. * as <b>pt1..pt2</b>. */
  1269. #define test_addr_mask_ports_parse(xx, f, ip1, ip2, ip3, ip4, mm, pt1, pt2) \
  1270. STMT_BEGIN \
  1271. test_eq(tor_addr_parse_mask_ports(xx, &t1, &mask, &port1, &port2), f); \
  1272. p1=tor_inet_ntop(AF_INET6, &t1.addr.in6_addr, bug, sizeof(bug)); \
  1273. test_eq(htonl(ip1), tor_addr_to_in6_addr32(&t1)[0]); \
  1274. test_eq(htonl(ip2), tor_addr_to_in6_addr32(&t1)[1]); \
  1275. test_eq(htonl(ip3), tor_addr_to_in6_addr32(&t1)[2]); \
  1276. test_eq(htonl(ip4), tor_addr_to_in6_addr32(&t1)[3]); \
  1277. test_eq(mask, mm); \
  1278. test_eq(port1, pt1); \
  1279. test_eq(port2, pt2); \
  1280. STMT_END
  1281. /** Run unit tests for IPv6 encoding/decoding/manipulation functions. */
  1282. static void
  1283. test_util_ip6_helpers(void)
  1284. {
  1285. char buf[TOR_ADDR_BUF_LEN], bug[TOR_ADDR_BUF_LEN];
  1286. struct in6_addr a1, a2;
  1287. tor_addr_t t1, t2;
  1288. int r, i;
  1289. uint16_t port1, port2;
  1290. maskbits_t mask;
  1291. const char *p1;
  1292. struct sockaddr_storage sa_storage;
  1293. struct sockaddr_in *sin;
  1294. struct sockaddr_in6 *sin6;
  1295. // struct in_addr b1, b2;
  1296. /* Test tor_inet_ntop and tor_inet_pton: IPv6 */
  1297. /* ==== Converting to and from sockaddr_t. */
  1298. sin = (struct sockaddr_in *)&sa_storage;
  1299. sin->sin_family = AF_INET;
  1300. sin->sin_port = 9090;
  1301. sin->sin_addr.s_addr = htonl(0x7f7f0102); /*127.127.1.2*/
  1302. tor_addr_from_sockaddr(&t1, (struct sockaddr *)sin, NULL);
  1303. test_eq(tor_addr_family(&t1), AF_INET);
  1304. test_eq(tor_addr_to_ipv4h(&t1), 0x7f7f0102);
  1305. memset(&sa_storage, 0, sizeof(sa_storage));
  1306. test_eq(sizeof(struct sockaddr_in),
  1307. tor_addr_to_sockaddr(&t1, 1234, (struct sockaddr *)&sa_storage,
  1308. sizeof(sa_storage)));
  1309. test_eq(1234, ntohs(sin->sin_port));
  1310. test_eq(0x7f7f0102, ntohl(sin->sin_addr.s_addr));
  1311. memset(&sa_storage, 0, sizeof(sa_storage));
  1312. sin6 = (struct sockaddr_in6 *)&sa_storage;
  1313. sin6->sin6_family = AF_INET6;
  1314. sin6->sin6_port = htons(7070);
  1315. sin6->sin6_addr.s6_addr[0] = 128;
  1316. tor_addr_from_sockaddr(&t1, (struct sockaddr *)sin6, NULL);
  1317. test_eq(tor_addr_family(&t1), AF_INET6);
  1318. p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 0);
  1319. test_streq(p1, "8000::");
  1320. memset(&sa_storage, 0, sizeof(sa_storage));
  1321. test_eq(sizeof(struct sockaddr_in6),
  1322. tor_addr_to_sockaddr(&t1, 9999, (struct sockaddr *)&sa_storage,
  1323. sizeof(sa_storage)));
  1324. test_eq(AF_INET6, sin6->sin6_family);
  1325. test_eq(9999, ntohs(sin6->sin6_port));
  1326. test_eq(0x80000000, ntohl(S6_ADDR32(sin6->sin6_addr)[0]));
  1327. /* ==== tor_addr_lookup: static cases. (Can't test dns without knowing we
  1328. * have a good resolver. */
  1329. test_eq(0, tor_addr_lookup("127.128.129.130", AF_UNSPEC, &t1));
  1330. test_eq(AF_INET, tor_addr_family(&t1));
  1331. test_eq(tor_addr_to_ipv4h(&t1), 0x7f808182);
  1332. test_eq(0, tor_addr_lookup("9000::5", AF_UNSPEC, &t1));
  1333. test_eq(AF_INET6, tor_addr_family(&t1));
  1334. test_eq(0x90, tor_addr_to_in6_addr8(&t1)[0]);
  1335. test_assert(tor_mem_is_zero((char*)tor_addr_to_in6_addr8(&t1)+1, 14));
  1336. test_eq(0x05, tor_addr_to_in6_addr8(&t1)[15]);
  1337. /* === Test pton: valid af_inet6 */
  1338. /* Simple, valid parsing. */
  1339. r = tor_inet_pton(AF_INET6,
  1340. "0102:0304:0506:0708:090A:0B0C:0D0E:0F10", &a1);
  1341. test_assert(r==1);
  1342. for (i=0;i<16;++i) { test_eq(i+1, (int)a1.s6_addr[i]); }
  1343. /* ipv4 ending. */
  1344. test_pton6_same("0102:0304:0506:0708:090A:0B0C:0D0E:0F10",
  1345. "0102:0304:0506:0708:090A:0B0C:13.14.15.16");
  1346. /* shortened words. */
  1347. test_pton6_same("0001:0099:BEEF:0000:0123:FFFF:0001:0001",
  1348. "1:99:BEEF:0:0123:FFFF:1:1");
  1349. /* zeros at the beginning */
  1350. test_pton6_same("0000:0000:0000:0000:0009:C0A8:0001:0001",
  1351. "::9:c0a8:1:1");
  1352. test_pton6_same("0000:0000:0000:0000:0009:C0A8:0001:0001",
  1353. "::9:c0a8:0.1.0.1");
  1354. /* zeros in the middle. */
  1355. test_pton6_same("fe80:0000:0000:0000:0202:1111:0001:0001",
  1356. "fe80::202:1111:1:1");
  1357. /* zeros at the end. */
  1358. test_pton6_same("1000:0001:0000:0007:0000:0000:0000:0000",
  1359. "1000:1:0:7::");
  1360. /* === Test ntop: af_inet6 */
  1361. test_ntop6_reduces("0:0:0:0:0:0:0:0", "::");
  1362. test_ntop6_reduces("0001:0099:BEEF:0006:0123:FFFF:0001:0001",
  1363. "1:99:beef:6:123:ffff:1:1");
  1364. //test_ntop6_reduces("0:0:0:0:0:0:c0a8:0101", "::192.168.1.1");
  1365. test_ntop6_reduces("0:0:0:0:0:ffff:c0a8:0101", "::ffff:192.168.1.1");
  1366. test_ntop6_reduces("002:0:0000:0:3::4", "2::3:0:0:4");
  1367. test_ntop6_reduces("0:0::1:0:3", "::1:0:3");
  1368. test_ntop6_reduces("008:0::0", "8::");
  1369. test_ntop6_reduces("0:0:0:0:0:ffff::1", "::ffff:0.0.0.1");
  1370. test_ntop6_reduces("abcd:0:0:0:0:0:7f00::", "abcd::7f00:0");
  1371. test_ntop6_reduces("0000:0000:0000:0000:0009:C0A8:0001:0001",
  1372. "::9:c0a8:1:1");
  1373. test_ntop6_reduces("fe80:0000:0000:0000:0202:1111:0001:0001",
  1374. "fe80::202:1111:1:1");
  1375. test_ntop6_reduces("1000:0001:0000:0007:0000:0000:0000:0000",
  1376. "1000:1:0:7::");
  1377. /* === Test pton: invalid in6. */
  1378. test_pton6_bad("foobar.");
  1379. test_pton6_bad("55555::");
  1380. test_pton6_bad("9:-60::");
  1381. test_pton6_bad("1:2:33333:4:0002:3::");
  1382. //test_pton6_bad("1:2:3333:4:00002:3::");// BAD, but glibc doesn't say so.
  1383. test_pton6_bad("1:2:3333:4:fish:3::");
  1384. test_pton6_bad("1:2:3:4:5:6:7:8:9");
  1385. test_pton6_bad("1:2:3:4:5:6:7");
  1386. test_pton6_bad("1:2:3:4:5:6:1.2.3.4.5");
  1387. test_pton6_bad("1:2:3:4:5:6:1.2.3");
  1388. test_pton6_bad("::1.2.3");
  1389. test_pton6_bad("::1.2.3.4.5");
  1390. test_pton6_bad("99");
  1391. test_pton6_bad("");
  1392. test_pton6_bad("1::2::3:4");
  1393. test_pton6_bad("a:::b:c");
  1394. test_pton6_bad(":::a:b:c");
  1395. test_pton6_bad("a:b:c:::");
  1396. /* test internal checking */
  1397. test_external_ip("fbff:ffff::2:7", 0);
  1398. test_internal_ip("fc01::2:7", 0);
  1399. test_internal_ip("fdff:ffff::f:f", 0);
  1400. test_external_ip("fe00::3:f", 0);
  1401. test_external_ip("fe7f:ffff::2:7", 0);
  1402. test_internal_ip("fe80::2:7", 0);
  1403. test_internal_ip("febf:ffff::f:f", 0);
  1404. test_internal_ip("fec0::2:7:7", 0);
  1405. test_internal_ip("feff:ffff::e:7:7", 0);
  1406. test_external_ip("ff00::e:7:7", 0);
  1407. test_internal_ip("::", 0);
  1408. test_internal_ip("::1", 0);
  1409. test_internal_ip("::1", 1);
  1410. test_internal_ip("::", 0);
  1411. test_external_ip("::", 1);
  1412. test_external_ip("::2", 0);
  1413. test_external_ip("2001::", 0);
  1414. test_external_ip("ffff::", 0);
  1415. test_external_ip("::ffff:0.0.0.0", 1);
  1416. test_internal_ip("::ffff:0.0.0.0", 0);
  1417. test_internal_ip("::ffff:0.255.255.255", 0);
  1418. test_external_ip("::ffff:1.0.0.0", 0);
  1419. test_external_ip("::ffff:9.255.255.255", 0);
  1420. test_internal_ip("::ffff:10.0.0.0", 0);
  1421. test_internal_ip("::ffff:10.255.255.255", 0);
  1422. test_external_ip("::ffff:11.0.0.0", 0);
  1423. test_external_ip("::ffff:126.255.255.255", 0);
  1424. test_internal_ip("::ffff:127.0.0.0", 0);
  1425. test_internal_ip("::ffff:127.255.255.255", 0);
  1426. test_external_ip("::ffff:128.0.0.0", 0);
  1427. test_external_ip("::ffff:172.15.255.255", 0);
  1428. test_internal_ip("::ffff:172.16.0.0", 0);
  1429. test_internal_ip("::ffff:172.31.255.255", 0);
  1430. test_external_ip("::ffff:172.32.0.0", 0);
  1431. test_external_ip("::ffff:192.167.255.255", 0);
  1432. test_internal_ip("::ffff:192.168.0.0", 0);
  1433. test_internal_ip("::ffff:192.168.255.255", 0);
  1434. test_external_ip("::ffff:192.169.0.0", 0);
  1435. test_external_ip("::ffff:169.253.255.255", 0);
  1436. test_internal_ip("::ffff:169.254.0.0", 0);
  1437. test_internal_ip("::ffff:169.254.255.255", 0);
  1438. test_external_ip("::ffff:169.255.0.0", 0);
  1439. test_assert(is_internal_IP(0x7f000001, 0));
  1440. /* tor_addr_compare(tor_addr_t x2) */
  1441. test_addr_compare("ffff::", ==, "ffff::0");
  1442. test_addr_compare("0::3:2:1", <, "0::ffff:0.3.2.1");
  1443. test_addr_compare("0::2:2:1", <, "0::ffff:0.3.2.1");
  1444. test_addr_compare("0::ffff:0.3.2.1", >, "0::0:0:0");
  1445. test_addr_compare("0::ffff:5.2.2.1", <, "::ffff:6.0.0.0"); /* XXXX wrong. */
  1446. tor_addr_parse_mask_ports("[::ffff:2.3.4.5]", &t1, NULL, NULL, NULL);
  1447. tor_addr_parse_mask_ports("2.3.4.5", &t2, NULL, NULL, NULL);
  1448. test_assert(tor_addr_compare(&t1, &t2, CMP_SEMANTIC) == 0);
  1449. tor_addr_parse_mask_ports("[::ffff:2.3.4.4]", &t1, NULL, NULL, NULL);
  1450. tor_addr_parse_mask_ports("2.3.4.5", &t2, NULL, NULL, NULL);
  1451. test_assert(tor_addr_compare(&t1, &t2, CMP_SEMANTIC) < 0);
  1452. /* test compare_masked */
  1453. test_addr_compare_masked("ffff::", ==, "ffff::0", 128);
  1454. test_addr_compare_masked("ffff::", ==, "ffff::0", 64);
  1455. test_addr_compare_masked("0::2:2:1", <, "0::8000:2:1", 81);
  1456. test_addr_compare_masked("0::2:2:1", ==, "0::8000:2:1", 80);
  1457. /* Test decorated addr_to_string. */
  1458. test_eq(AF_INET6, tor_addr_from_str(&t1, "[123:45:6789::5005:11]"));
  1459. p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1);
  1460. test_streq(p1, "[123:45:6789::5005:11]");
  1461. test_eq(AF_INET, tor_addr_from_str(&t1, "18.0.0.1"));
  1462. p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1);
  1463. test_streq(p1, "18.0.0.1");
  1464. /* Test tor_addr_parse_reverse_lookup_name */
  1465. i = tor_addr_parse_reverse_lookup_name(&t1, "Foobar.baz", AF_UNSPEC, 0);
  1466. test_eq(0, i);
  1467. i = tor_addr_parse_reverse_lookup_name(&t1, "Foobar.baz", AF_UNSPEC, 1);
  1468. test_eq(0, i);
  1469. i = tor_addr_parse_reverse_lookup_name(&t1, "1.0.168.192.in-addr.arpa",
  1470. AF_UNSPEC, 1);
  1471. test_eq(1, i);
  1472. test_eq(tor_addr_family(&t1), AF_INET);
  1473. p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1);
  1474. test_streq(p1, "192.168.0.1");
  1475. i = tor_addr_parse_reverse_lookup_name(&t1, "192.168.0.99", AF_UNSPEC, 0);
  1476. test_eq(0, i);
  1477. i = tor_addr_parse_reverse_lookup_name(&t1, "192.168.0.99", AF_UNSPEC, 1);
  1478. test_eq(1, i);
  1479. p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1);
  1480. test_streq(p1, "192.168.0.99");
  1481. memset(&t1, 0, sizeof(t1));
  1482. i = tor_addr_parse_reverse_lookup_name(&t1,
  1483. "0.1.2.3.4.5.6.7.8.9.a.b.c.d.e.f."
  1484. "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9."
  1485. "ip6.ARPA",
  1486. AF_UNSPEC, 0);
  1487. test_eq(1, i);
  1488. p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1);
  1489. test_streq(p1, "[9dee:effe:ebe1:beef:fedc:ba98:7654:3210]");
  1490. /* Failing cases. */
  1491. i = tor_addr_parse_reverse_lookup_name(&t1,
  1492. "6.7.8.9.a.b.c.d.e.f."
  1493. "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9."
  1494. "ip6.ARPA",
  1495. AF_UNSPEC, 0);
  1496. test_eq(i, -1);
  1497. i = tor_addr_parse_reverse_lookup_name(&t1,
  1498. "6.7.8.9.a.b.c.d.e.f.a.b.c.d.e.f.0."
  1499. "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9."
  1500. "ip6.ARPA",
  1501. AF_UNSPEC, 0);
  1502. test_eq(i, -1);
  1503. i = tor_addr_parse_reverse_lookup_name(&t1,
  1504. "6.7.8.9.a.b.c.d.e.f.X.0.0.0.0.9."
  1505. "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9."
  1506. "ip6.ARPA",
  1507. AF_UNSPEC, 0);
  1508. test_eq(i, -1);
  1509. i = tor_addr_parse_reverse_lookup_name(&t1, "32.1.1.in-addr.arpa",
  1510. AF_UNSPEC, 0);
  1511. test_eq(i, -1);
  1512. i = tor_addr_parse_reverse_lookup_name(&t1, ".in-addr.arpa",
  1513. AF_UNSPEC, 0);
  1514. test_eq(i, -1);
  1515. i = tor_addr_parse_reverse_lookup_name(&t1, "1.2.3.4.5.in-addr.arpa",
  1516. AF_UNSPEC, 0);
  1517. test_eq(i, -1);
  1518. i = tor_addr_parse_reverse_lookup_name(&t1, "1.2.3.4.5.in-addr.arpa",
  1519. AF_INET6, 0);
  1520. test_eq(i, -1);
  1521. i = tor_addr_parse_reverse_lookup_name(&t1,
  1522. "6.7.8.9.a.b.c.d.e.f.a.b.c.d.e.0."
  1523. "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9."
  1524. "ip6.ARPA",
  1525. AF_INET, 0);
  1526. test_eq(i, -1);
  1527. /* test tor_addr_parse_mask_ports */
  1528. test_addr_mask_ports_parse("[::f]/17:47-95", AF_INET6,
  1529. 0, 0, 0, 0x0000000f, 17, 47, 95);
  1530. //test_addr_parse("[::fefe:4.1.1.7/120]:999-1000");
  1531. //test_addr_parse_check("::fefe:401:107", 120, 999, 1000);
  1532. test_addr_mask_ports_parse("[::ffff:4.1.1.7]/120:443", AF_INET6,
  1533. 0, 0, 0x0000ffff, 0x04010107, 120, 443, 443);
  1534. test_addr_mask_ports_parse("[abcd:2::44a:0]:2-65000", AF_INET6,
  1535. 0xabcd0002, 0, 0, 0x044a0000, 128, 2, 65000);
  1536. r=tor_addr_parse_mask_ports("[fefef::]/112", &t1, NULL, NULL, NULL);
  1537. test_assert(r == -1);
  1538. r=tor_addr_parse_mask_ports("efef::/112", &t1, NULL, NULL, NULL);
  1539. test_assert(r == -1);
  1540. r=tor_addr_parse_mask_ports("[f:f:f:f:f:f:f:f::]", &t1, NULL, NULL, NULL);
  1541. test_assert(r == -1);
  1542. r=tor_addr_parse_mask_ports("[::f:f:f:f:f:f:f:f]", &t1, NULL, NULL, NULL);
  1543. test_assert(r == -1);
  1544. r=tor_addr_parse_mask_ports("[f:f:f:f:f:f:f:f:f]", &t1, NULL, NULL, NULL);
  1545. test_assert(r == -1);
  1546. /* Test for V4-mapped address with mask < 96. (arguably not valid) */
  1547. r=tor_addr_parse_mask_ports("[::ffff:1.1.2.2/33]", &t1, &mask, NULL, NULL);
  1548. test_assert(r == -1);
  1549. r=tor_addr_parse_mask_ports("1.1.2.2/33", &t1, &mask, NULL, NULL);
  1550. test_assert(r == -1);
  1551. r=tor_addr_parse_mask_ports("1.1.2.2/31", &t1, &mask, NULL, NULL);
  1552. test_assert(r == AF_INET);
  1553. r=tor_addr_parse_mask_ports("[efef::]/112", &t1, &mask, &port1, &port2);
  1554. test_assert(r == AF_INET6);
  1555. test_assert(port1 == 1);
  1556. test_assert(port2 == 65535);
  1557. /* make sure inet address lengths >= max */
  1558. test_assert(INET_NTOA_BUF_LEN >= sizeof("255.255.255.255"));
  1559. test_assert(TOR_ADDR_BUF_LEN >=
  1560. sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255"));
  1561. test_assert(sizeof(tor_addr_t) >= sizeof(struct in6_addr));
  1562. /* get interface addresses */
  1563. r = get_interface_address6(LOG_DEBUG, AF_INET, &t1);
  1564. i = get_interface_address6(LOG_DEBUG, AF_INET6, &t2);
  1565. #if 0
  1566. tor_inet_ntop(AF_INET, &t1.sa.sin_addr, buf, sizeof(buf));
  1567. printf("\nv4 address: %s (family=%i)", buf, IN_FAMILY(&t1));
  1568. tor_inet_ntop(AF_INET6, &t2.sa6.sin6_addr, buf, sizeof(buf));
  1569. printf("\nv6 address: %s (family=%i)", buf, IN_FAMILY(&t2));
  1570. #endif
  1571. done:
  1572. ;
  1573. }
  1574. /** Run unit tests for basic dynamic-sized array functionality. */
  1575. static void
  1576. test_util_smartlist_basic(void)
  1577. {
  1578. smartlist_t *sl;
  1579. /* XXXX test sort_digests, uniq_strings, uniq_digests */
  1580. /* Test smartlist add, del_keeporder, insert, get. */
  1581. sl = smartlist_create();
  1582. smartlist_add(sl, (void*)1);
  1583. smartlist_add(sl, (void*)2);
  1584. smartlist_add(sl, (void*)3);
  1585. smartlist_add(sl, (void*)4);
  1586. smartlist_del_keeporder(sl, 1);
  1587. smartlist_insert(sl, 1, (void*)22);
  1588. smartlist_insert(sl, 0, (void*)0);
  1589. smartlist_insert(sl, 5, (void*)555);
  1590. test_eq_ptr((void*)0, smartlist_get(sl,0));
  1591. test_eq_ptr((void*)1, smartlist_get(sl,1));
  1592. test_eq_ptr((void*)22, smartlist_get(sl,2));
  1593. test_eq_ptr((void*)3, smartlist_get(sl,3));
  1594. test_eq_ptr((void*)4, smartlist_get(sl,4));
  1595. test_eq_ptr((void*)555, smartlist_get(sl,5));
  1596. /* Try deleting in the middle. */
  1597. smartlist_del(sl, 1);
  1598. test_eq_ptr((void*)555, smartlist_get(sl, 1));
  1599. /* Try deleting at the end. */
  1600. smartlist_del(sl, 4);
  1601. test_eq(4, smartlist_len(sl));
  1602. /* test isin. */
  1603. test_assert(smartlist_isin(sl, (void*)3));
  1604. test_assert(!smartlist_isin(sl, (void*)99));
  1605. done:
  1606. smartlist_free(sl);
  1607. }
  1608. /** Run unit tests for smartlist-of-strings functionality. */
  1609. static void
  1610. test_util_smartlist_strings(void)
  1611. {
  1612. smartlist_t *sl = smartlist_create();
  1613. char *cp=NULL, *cp_alloc=NULL;
  1614. size_t sz;
  1615. /* Test split and join */
  1616. test_eq(0, smartlist_len(sl));
  1617. smartlist_split_string(sl, "abc", ":", 0, 0);
  1618. test_eq(1, smartlist_len(sl));
  1619. test_streq("abc", smartlist_get(sl, 0));
  1620. smartlist_split_string(sl, "a::bc::", "::", 0, 0);
  1621. test_eq(4, smartlist_len(sl));
  1622. test_streq("a", smartlist_get(sl, 1));
  1623. test_streq("bc", smartlist_get(sl, 2));
  1624. test_streq("", smartlist_get(sl, 3));
  1625. cp_alloc = smartlist_join_strings(sl, "", 0, NULL);
  1626. test_streq(cp_alloc, "abcabc");
  1627. tor_free(cp_alloc);
  1628. cp_alloc = smartlist_join_strings(sl, "!", 0, NULL);
  1629. test_streq(cp_alloc, "abc!a!bc!");
  1630. tor_free(cp_alloc);
  1631. cp_alloc = smartlist_join_strings(sl, "XY", 0, NULL);
  1632. test_streq(cp_alloc, "abcXYaXYbcXY");
  1633. tor_free(cp_alloc);
  1634. cp_alloc = smartlist_join_strings(sl, "XY", 1, NULL);
  1635. test_streq(cp_alloc, "abcXYaXYbcXYXY");
  1636. tor_free(cp_alloc);
  1637. cp_alloc = smartlist_join_strings(sl, "", 1, NULL);
  1638. test_streq(cp_alloc, "abcabc");
  1639. tor_free(cp_alloc);
  1640. smartlist_split_string(sl, "/def/ /ghijk", "/", 0, 0);
  1641. test_eq(8, smartlist_len(sl));
  1642. test_streq("", smartlist_get(sl, 4));
  1643. test_streq("def", smartlist_get(sl, 5));
  1644. test_streq(" ", smartlist_get(sl, 6));
  1645. test_streq("ghijk", smartlist_get(sl, 7));
  1646. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1647. smartlist_clear(sl);
  1648. smartlist_split_string(sl, "a,bbd,cdef", ",", SPLIT_SKIP_SPACE, 0);
  1649. test_eq(3, smartlist_len(sl));
  1650. test_streq("a", smartlist_get(sl,0));
  1651. test_streq("bbd", smartlist_get(sl,1));
  1652. test_streq("cdef", smartlist_get(sl,2));
  1653. smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>",
  1654. SPLIT_SKIP_SPACE, 0);
  1655. test_eq(8, smartlist_len(sl));
  1656. test_streq("z", smartlist_get(sl,3));
  1657. test_streq("zhasd", smartlist_get(sl,4));
  1658. test_streq("", smartlist_get(sl,5));
  1659. test_streq("bnud", smartlist_get(sl,6));
  1660. test_streq("", smartlist_get(sl,7));
  1661. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1662. smartlist_clear(sl);
  1663. smartlist_split_string(sl, " ab\tc \td ef ", NULL,
  1664. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1665. test_eq(4, smartlist_len(sl));
  1666. test_streq("ab", smartlist_get(sl,0));
  1667. test_streq("c", smartlist_get(sl,1));
  1668. test_streq("d", smartlist_get(sl,2));
  1669. test_streq("ef", smartlist_get(sl,3));
  1670. smartlist_split_string(sl, "ghi\tj", NULL,
  1671. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1672. test_eq(6, smartlist_len(sl));
  1673. test_streq("ghi", smartlist_get(sl,4));
  1674. test_streq("j", smartlist_get(sl,5));
  1675. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1676. smartlist_clear(sl);
  1677. cp_alloc = smartlist_join_strings(sl, "XY", 0, NULL);
  1678. test_streq(cp_alloc, "");
  1679. tor_free(cp_alloc);
  1680. cp_alloc = smartlist_join_strings(sl, "XY", 1, NULL);
  1681. test_streq(cp_alloc, "XY");
  1682. tor_free(cp_alloc);
  1683. smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>",
  1684. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1685. test_eq(3, smartlist_len(sl));
  1686. test_streq("z", smartlist_get(sl, 0));
  1687. test_streq("zhasd", smartlist_get(sl, 1));
  1688. test_streq("bnud", smartlist_get(sl, 2));
  1689. smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>",
  1690. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 2);
  1691. test_eq(5, smartlist_len(sl));
  1692. test_streq("z", smartlist_get(sl, 3));
  1693. test_streq("zhasd <> <> bnud<>", smartlist_get(sl, 4));
  1694. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1695. smartlist_clear(sl);
  1696. smartlist_split_string(sl, "abcd\n", "\n",
  1697. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1698. test_eq(1, smartlist_len(sl));
  1699. test_streq("abcd", smartlist_get(sl, 0));
  1700. smartlist_split_string(sl, "efgh", "\n",
  1701. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1702. test_eq(2, smartlist_len(sl));
  1703. test_streq("efgh", smartlist_get(sl, 1));
  1704. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1705. smartlist_clear(sl);
  1706. /* Test swapping, shuffling, and sorting. */
  1707. smartlist_split_string(sl, "the,onion,router,by,arma,and,nickm", ",", 0, 0);
  1708. test_eq(7, smartlist_len(sl));
  1709. smartlist_sort(sl, _compare_strs);
  1710. cp_alloc = smartlist_join_strings(sl, ",", 0, NULL);
  1711. test_streq(cp_alloc,"and,arma,by,nickm,onion,router,the");
  1712. tor_free(cp_alloc);
  1713. smartlist_swap(sl, 1, 5);
  1714. cp_alloc = smartlist_join_strings(sl, ",", 0, NULL);
  1715. test_streq(cp_alloc,"and,router,by,nickm,onion,arma,the");
  1716. tor_free(cp_alloc);
  1717. smartlist_shuffle(sl);
  1718. test_eq(7, smartlist_len(sl));
  1719. test_assert(smartlist_string_isin(sl, "and"));
  1720. test_assert(smartlist_string_isin(sl, "router"));
  1721. test_assert(smartlist_string_isin(sl, "by"));
  1722. test_assert(smartlist_string_isin(sl, "nickm"));
  1723. test_assert(smartlist_string_isin(sl, "onion"));
  1724. test_assert(smartlist_string_isin(sl, "arma"));
  1725. test_assert(smartlist_string_isin(sl, "the"));
  1726. /* Test bsearch. */
  1727. smartlist_sort(sl, _compare_strs);
  1728. test_streq("nickm", smartlist_bsearch(sl, "zNicKM",
  1729. _compare_without_first_ch));
  1730. test_streq("and", smartlist_bsearch(sl, " AND", _compare_without_first_ch));
  1731. test_eq_ptr(NULL, smartlist_bsearch(sl, " ANz", _compare_without_first_ch));
  1732. /* Test bsearch_idx */
  1733. {
  1734. int f;
  1735. test_eq(0, smartlist_bsearch_idx(sl," aaa",_compare_without_first_ch,&f));
  1736. test_eq(f, 0);
  1737. test_eq(0, smartlist_bsearch_idx(sl," and",_compare_without_first_ch,&f));
  1738. test_eq(f, 1);
  1739. test_eq(1, smartlist_bsearch_idx(sl," arm",_compare_without_first_ch,&f));
  1740. test_eq(f, 0);
  1741. test_eq(1, smartlist_bsearch_idx(sl," arma",_compare_without_first_ch,&f));
  1742. test_eq(f, 1);
  1743. test_eq(2, smartlist_bsearch_idx(sl," armb",_compare_without_first_ch,&f));
  1744. test_eq(f, 0);
  1745. test_eq(7, smartlist_bsearch_idx(sl," zzzz",_compare_without_first_ch,&f));
  1746. test_eq(f, 0);
  1747. }
  1748. /* Test reverse() and pop_last() */
  1749. smartlist_reverse(sl);
  1750. cp_alloc = smartlist_join_strings(sl, ",", 0, NULL);
  1751. test_streq(cp_alloc,"the,router,onion,nickm,by,arma,and");
  1752. tor_free(cp_alloc);
  1753. cp_alloc = smartlist_pop_last(sl);
  1754. test_streq(cp_alloc, "and");
  1755. tor_free(cp_alloc);
  1756. test_eq(smartlist_len(sl), 6);
  1757. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1758. smartlist_clear(sl);
  1759. cp_alloc = smartlist_pop_last(sl);
  1760. test_eq(cp_alloc, NULL);
  1761. /* Test uniq() */
  1762. smartlist_split_string(sl,
  1763. "50,noon,radar,a,man,a,plan,a,canal,panama,radar,noon,50",
  1764. ",", 0, 0);
  1765. smartlist_sort(sl, _compare_strs);
  1766. smartlist_uniq(sl, _compare_strs, _tor_free);
  1767. cp_alloc = smartlist_join_strings(sl, ",", 0, NULL);
  1768. test_streq(cp_alloc, "50,a,canal,man,noon,panama,plan,radar");
  1769. tor_free(cp_alloc);
  1770. /* Test string_isin and isin_case and num_isin */
  1771. test_assert(smartlist_string_isin(sl, "noon"));
  1772. test_assert(!smartlist_string_isin(sl, "noonoon"));
  1773. test_assert(smartlist_string_isin_case(sl, "nOOn"));
  1774. test_assert(!smartlist_string_isin_case(sl, "nooNooN"));
  1775. test_assert(smartlist_string_num_isin(sl, 50));
  1776. test_assert(!smartlist_string_num_isin(sl, 60));
  1777. /* Test smartlist_choose */
  1778. {
  1779. int i;
  1780. int allsame = 1;
  1781. int allin = 1;
  1782. void *first = smartlist_choose(sl);
  1783. test_assert(smartlist_isin(sl, first));
  1784. for (i = 0; i < 100; ++i) {
  1785. void *second = smartlist_choose(sl);
  1786. if (second != first)
  1787. allsame = 0;
  1788. if (!smartlist_isin(sl, second))
  1789. allin = 0;
  1790. }
  1791. test_assert(!allsame);
  1792. test_assert(allin);
  1793. }
  1794. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1795. smartlist_clear(sl);
  1796. /* Test string_remove and remove and join_strings2 */
  1797. smartlist_split_string(sl,
  1798. "Some say the Earth will end in ice and some in fire",
  1799. " ", 0, 0);
  1800. cp = smartlist_get(sl, 4);
  1801. test_streq(cp, "will");
  1802. smartlist_add(sl, cp);
  1803. smartlist_remove(sl, cp);
  1804. tor_free(cp);
  1805. cp_alloc = smartlist_join_strings(sl, ",", 0, NULL);
  1806. test_streq(cp_alloc, "Some,say,the,Earth,fire,end,in,ice,and,some,in");
  1807. tor_free(cp_alloc);
  1808. smartlist_string_remove(sl, "in");
  1809. cp_alloc = smartlist_join_strings2(sl, "+XX", 1, 0, &sz);
  1810. test_streq(cp_alloc, "Some+say+the+Earth+fire+end+some+ice+and");
  1811. test_eq((int)sz, 40);
  1812. done:
  1813. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1814. smartlist_free(sl);
  1815. tor_free(cp_alloc);
  1816. }
  1817. /** Run unit tests for smartlist set manipulation functions. */
  1818. static void
  1819. test_util_smartlist_overlap(void)
  1820. {
  1821. smartlist_t *sl = smartlist_create();
  1822. smartlist_t *ints = smartlist_create();
  1823. smartlist_t *odds = smartlist_create();
  1824. smartlist_t *evens = smartlist_create();
  1825. smartlist_t *primes = smartlist_create();
  1826. int i;
  1827. for (i=1; i < 10; i += 2)
  1828. smartlist_add(odds, (void*)(uintptr_t)i);
  1829. for (i=0; i < 10; i += 2)
  1830. smartlist_add(evens, (void*)(uintptr_t)i);
  1831. /* add_all */
  1832. smartlist_add_all(ints, odds);
  1833. smartlist_add_all(ints, evens);
  1834. test_eq(smartlist_len(ints), 10);
  1835. smartlist_add(primes, (void*)2);
  1836. smartlist_add(primes, (void*)3);
  1837. smartlist_add(primes, (void*)5);
  1838. smartlist_add(primes, (void*)7);
  1839. /* overlap */
  1840. test_assert(smartlist_overlap(ints, odds));
  1841. test_assert(smartlist_overlap(odds, primes));
  1842. test_assert(smartlist_overlap(evens, primes));
  1843. test_assert(!smartlist_overlap(odds, evens));
  1844. /* intersect */
  1845. smartlist_add_all(sl, odds);
  1846. smartlist_intersect(sl, primes);
  1847. test_eq(smartlist_len(sl), 3);
  1848. test_assert(smartlist_isin(sl, (void*)3));
  1849. test_assert(smartlist_isin(sl, (void*)5));
  1850. test_assert(smartlist_isin(sl, (void*)7));
  1851. /* subtract */
  1852. smartlist_add_all(sl, primes);
  1853. smartlist_subtract(sl, odds);
  1854. test_eq(smartlist_len(sl), 1);
  1855. test_assert(smartlist_isin(sl, (void*)2));
  1856. done:
  1857. smartlist_free(odds);
  1858. smartlist_free(evens);
  1859. smartlist_free(ints);
  1860. smartlist_free(primes);
  1861. smartlist_free(sl);
  1862. }
  1863. /** Run unit tests for smartlist-of-digests functions. */
  1864. static void
  1865. test_util_smartlist_digests(void)
  1866. {
  1867. smartlist_t *sl = smartlist_create();
  1868. /* digest_isin. */
  1869. smartlist_add(sl, tor_memdup("AAAAAAAAAAAAAAAAAAAA", DIGEST_LEN));
  1870. smartlist_add(sl, tor_memdup("\00090AAB2AAAAaasdAAAAA", DIGEST_LEN));
  1871. smartlist_add(sl, tor_memdup("\00090AAB2AAAAaasdAAAAA", DIGEST_LEN));
  1872. test_eq(0, smartlist_digest_isin(NULL, "AAAAAAAAAAAAAAAAAAAA"));
  1873. test_assert(smartlist_digest_isin(sl, "AAAAAAAAAAAAAAAAAAAA"));
  1874. test_assert(smartlist_digest_isin(sl, "\00090AAB2AAAAaasdAAAAA"));
  1875. test_eq(0, smartlist_digest_isin(sl, "\00090AAB2AAABaasdAAAAA"));
  1876. /* sort digests */
  1877. smartlist_sort_digests(sl);
  1878. test_memeq(smartlist_get(sl, 0), "\00090AAB2AAAAaasdAAAAA", DIGEST_LEN);
  1879. test_memeq(smartlist_get(sl, 1), "\00090AAB2AAAAaasdAAAAA", DIGEST_LEN);
  1880. test_memeq(smartlist_get(sl, 2), "AAAAAAAAAAAAAAAAAAAA", DIGEST_LEN);
  1881. test_eq(3, smartlist_len(sl));
  1882. /* uniq_digests */
  1883. smartlist_uniq_digests(sl);
  1884. test_eq(2, smartlist_len(sl));
  1885. test_memeq(smartlist_get(sl, 0), "\00090AAB2AAAAaasdAAAAA", DIGEST_LEN);
  1886. test_memeq(smartlist_get(sl, 1), "AAAAAAAAAAAAAAAAAAAA", DIGEST_LEN);
  1887. done:
  1888. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1889. smartlist_free(sl);
  1890. }
  1891. /** Run unit tests for concatenate-a-smartlist-of-strings functions. */
  1892. static void
  1893. test_util_smartlist_join(void)
  1894. {
  1895. smartlist_t *sl = smartlist_create();
  1896. smartlist_t *sl2 = smartlist_create(), *sl3 = smartlist_create(),
  1897. *sl4 = smartlist_create();
  1898. char *joined=NULL;
  1899. /* unique, sorted. */
  1900. smartlist_split_string(sl,
  1901. "Abashments Ambush Anchorman Bacon Banks Borscht "
  1902. "Bunks Inhumane Insurance Knish Know Manners "
  1903. "Maraschinos Stamina Sunbonnets Unicorns Wombats",
  1904. " ", 0, 0);
  1905. /* non-unique, sorted. */
  1906. smartlist_split_string(sl2,
  1907. "Ambush Anchorman Anchorman Anemias Anemias Bacon "
  1908. "Crossbowmen Inhumane Insurance Knish Know Manners "
  1909. "Manners Maraschinos Wombats Wombats Work",
  1910. " ", 0, 0);
  1911. SMARTLIST_FOREACH_JOIN(sl, char *, cp1,
  1912. sl2, char *, cp2,
  1913. strcmp(cp1,cp2),
  1914. smartlist_add(sl3, cp2)) {
  1915. test_streq(cp1, cp2);
  1916. smartlist_add(sl4, cp1);
  1917. } SMARTLIST_FOREACH_JOIN_END(cp1, cp2);
  1918. SMARTLIST_FOREACH(sl3, const char *, cp,
  1919. test_assert(smartlist_isin(sl2, cp) &&
  1920. !smartlist_string_isin(sl, cp)));
  1921. SMARTLIST_FOREACH(sl4, const char *, cp,
  1922. test_assert(smartlist_isin(sl, cp) &&
  1923. smartlist_string_isin(sl2, cp)));
  1924. joined = smartlist_join_strings(sl3, ",", 0, NULL);
  1925. test_streq(joined, "Anemias,Anemias,Crossbowmen,Work");
  1926. tor_free(joined);
  1927. joined = smartlist_join_strings(sl4, ",", 0, NULL);
  1928. test_streq(joined, "Ambush,Anchorman,Anchorman,Bacon,Inhumane,Insurance,"
  1929. "Knish,Know,Manners,Manners,Maraschinos,Wombats,Wombats");
  1930. tor_free(joined);
  1931. done:
  1932. smartlist_free(sl4);
  1933. smartlist_free(sl3);
  1934. SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp));
  1935. smartlist_free(sl2);
  1936. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1937. smartlist_free(sl);
  1938. tor_free(joined);
  1939. }
  1940. /** Run unit tests for bitarray code */
  1941. static void
  1942. test_util_bitarray(void)
  1943. {
  1944. bitarray_t *ba = NULL;
  1945. int i, j, ok=1;
  1946. ba = bitarray_init_zero(1);
  1947. test_assert(ba);
  1948. test_assert(! bitarray_is_set(ba, 0));
  1949. bitarray_set(ba, 0);
  1950. test_assert(bitarray_is_set(ba, 0));
  1951. bitarray_clear(ba, 0);
  1952. test_assert(! bitarray_is_set(ba, 0));
  1953. bitarray_free(ba);
  1954. ba = bitarray_init_zero(1023);
  1955. for (i = 1; i < 64; ) {
  1956. for (j = 0; j < 1023; ++j) {
  1957. if (j % i)
  1958. bitarray_set(ba, j);
  1959. else
  1960. bitarray_clear(ba, j);
  1961. }
  1962. for (j = 0; j < 1023; ++j) {
  1963. if (!bool_eq(bitarray_is_set(ba, j), j%i))
  1964. ok = 0;
  1965. }
  1966. test_assert(ok);
  1967. if (i < 7)
  1968. ++i;
  1969. else if (i == 28)
  1970. i = 32;
  1971. else
  1972. i += 7;
  1973. }
  1974. done:
  1975. if (ba)
  1976. bitarray_free(ba);
  1977. }
  1978. /** Run unit tests for digest set code (implemented as a hashtable or as a
  1979. * bloom filter) */
  1980. static void
  1981. test_util_digestset(void)
  1982. {
  1983. smartlist_t *included = smartlist_create();
  1984. char d[DIGEST_LEN];
  1985. int i;
  1986. int ok = 1;
  1987. int false_positives = 0;
  1988. digestset_t *set = NULL;
  1989. for (i = 0; i < 1000; ++i) {
  1990. crypto_rand(d, DIGEST_LEN);
  1991. smartlist_add(included, tor_memdup(d, DIGEST_LEN));
  1992. }
  1993. set = digestset_new(1000);
  1994. SMARTLIST_FOREACH(included, const char *, cp,
  1995. if (digestset_isin(set, cp))
  1996. ok = 0);
  1997. test_assert(ok);
  1998. SMARTLIST_FOREACH(included, const char *, cp,
  1999. digestset_add(set, cp));
  2000. SMARTLIST_FOREACH(included, const char *, cp,
  2001. if (!digestset_isin(set, cp))
  2002. ok = 0);
  2003. test_assert(ok);
  2004. for (i = 0; i < 1000; ++i) {
  2005. crypto_rand(d, DIGEST_LEN);
  2006. if (digestset_isin(set, d))
  2007. ++false_positives;
  2008. }
  2009. test_assert(false_positives < 50); /* Should be far lower. */
  2010. done:
  2011. if (set)
  2012. digestset_free(set);
  2013. SMARTLIST_FOREACH(included, char *, cp, tor_free(cp));
  2014. smartlist_free(included);
  2015. }
  2016. /** mutex for thread test to stop the threads hitting data at the same time. */
  2017. static tor_mutex_t *_thread_test_mutex = NULL;
  2018. /** mutexes for the thread test to make sure that the threads have to
  2019. * interleave somewhat. */
  2020. static tor_mutex_t *_thread_test_start1 = NULL,
  2021. *_thread_test_start2 = NULL;
  2022. /** Shared strmap for the thread test. */
  2023. static strmap_t *_thread_test_strmap = NULL;
  2024. /** The name of thread1 for the thread test */
  2025. static char *_thread1_name = NULL;
  2026. /** The name of thread2 for the thread test */
  2027. static char *_thread2_name = NULL;
  2028. static void _thread_test_func(void* _s) ATTR_NORETURN;
  2029. /** How many iterations have the threads in the unit test run? */
  2030. static int t1_count = 0, t2_count = 0;
  2031. /** Helper function for threading unit tests: This function runs in a
  2032. * subthread. It grabs its own mutex (start1 or start2) to make sure that it
  2033. * should start, then it repeatedly alters _test_thread_strmap protected by
  2034. * _thread_test_mutex. */
  2035. static void
  2036. _thread_test_func(void* _s)
  2037. {
  2038. char *s = _s;
  2039. int i, *count;
  2040. tor_mutex_t *m;
  2041. char buf[64];
  2042. char **cp;
  2043. if (!strcmp(s, "thread 1")) {
  2044. m = _thread_test_start1;
  2045. cp = &_thread1_name;
  2046. count = &t1_count;
  2047. } else {
  2048. m = _thread_test_start2;
  2049. cp = &_thread2_name;
  2050. count = &t2_count;
  2051. }
  2052. tor_mutex_acquire(m);
  2053. tor_snprintf(buf, sizeof(buf), "%lu", tor_get_thread_id());
  2054. *cp = tor_strdup(buf);
  2055. for (i=0; i<10000; ++i) {
  2056. tor_mutex_acquire(_thread_test_mutex);
  2057. strmap_set(_thread_test_strmap, "last to run", *cp);
  2058. ++*count;
  2059. tor_mutex_release(_thread_test_mutex);
  2060. }
  2061. tor_mutex_acquire(_thread_test_mutex);
  2062. strmap_set(_thread_test_strmap, s, *cp);
  2063. tor_mutex_release(_thread_test_mutex);
  2064. tor_mutex_release(m);
  2065. spawn_exit();
  2066. }
  2067. /** Run unit tests for threading logic. */
  2068. static void
  2069. test_util_threads(void)
  2070. {
  2071. char *s1 = NULL, *s2 = NULL;
  2072. int done = 0, timedout = 0;
  2073. time_t started;
  2074. #ifndef MS_WINDOWS
  2075. struct timeval tv;
  2076. tv.tv_sec=0;
  2077. tv.tv_usec=10;
  2078. #endif
  2079. #ifndef TOR_IS_MULTITHREADED
  2080. /* Skip this test if we aren't threading. We should be threading most
  2081. * everywhere by now. */
  2082. if (1)
  2083. return;
  2084. #endif
  2085. _thread_test_mutex = tor_mutex_new();
  2086. _thread_test_start1 = tor_mutex_new();
  2087. _thread_test_start2 = tor_mutex_new();
  2088. _thread_test_strmap = strmap_new();
  2089. s1 = tor_strdup("thread 1");
  2090. s2 = tor_strdup("thread 2");
  2091. tor_mutex_acquire(_thread_test_start1);
  2092. tor_mutex_acquire(_thread_test_start2);
  2093. spawn_func(_thread_test_func, s1);
  2094. spawn_func(_thread_test_func, s2);
  2095. tor_mutex_release(_thread_test_start2);
  2096. tor_mutex_release(_thread_test_start1);
  2097. started = time(NULL);
  2098. while (!done) {
  2099. tor_mutex_acquire(_thread_test_mutex);
  2100. strmap_assert_ok(_thread_test_strmap);
  2101. if (strmap_get(_thread_test_strmap, "thread 1") &&
  2102. strmap_get(_thread_test_strmap, "thread 2")) {
  2103. done = 1;
  2104. } else if (time(NULL) > started + 25) {
  2105. timedout = done = 1;
  2106. }
  2107. tor_mutex_release(_thread_test_mutex);
  2108. #ifndef MS_WINDOWS
  2109. /* Prevent the main thread from starving the worker threads. */
  2110. select(0, NULL, NULL, NULL, &tv);
  2111. #endif
  2112. }
  2113. tor_mutex_acquire(_thread_test_start1);
  2114. tor_mutex_release(_thread_test_start1);
  2115. tor_mutex_acquire(_thread_test_start2);
  2116. tor_mutex_release(_thread_test_start2);
  2117. tor_mutex_free(_thread_test_mutex);
  2118. if (timedout) {
  2119. printf("\nTimed out: %d %d", t1_count, t2_count);
  2120. test_assert(strmap_get(_thread_test_strmap, "thread 1"));
  2121. test_assert(strmap_get(_thread_test_strmap, "thread 2"));
  2122. test_assert(!timedout);
  2123. }
  2124. /* different thread IDs. */
  2125. test_assert(strcmp(strmap_get(_thread_test_strmap, "thread 1"),
  2126. strmap_get(_thread_test_strmap, "thread 2")));
  2127. test_assert(!strcmp(strmap_get(_thread_test_strmap, "thread 1"),
  2128. strmap_get(_thread_test_strmap, "last to run")) ||
  2129. !strcmp(strmap_get(_thread_test_strmap, "thread 2"),
  2130. strmap_get(_thread_test_strmap, "last to run")));
  2131. done:
  2132. tor_free(s1);
  2133. tor_free(s2);
  2134. tor_free(_thread1_name);
  2135. tor_free(_thread2_name);
  2136. if (_thread_test_strmap)
  2137. strmap_free(_thread_test_strmap, NULL);
  2138. if (_thread_test_start1)
  2139. tor_mutex_free(_thread_test_start1);
  2140. if (_thread_test_start2)
  2141. tor_mutex_free(_thread_test_start2);
  2142. }
  2143. /** Helper: return a tristate based on comparing two strings. */
  2144. static int
  2145. _compare_strings_for_pqueue(const void *s1, const void *s2)
  2146. {
  2147. return strcmp((const char*)s1, (const char*)s2);
  2148. }
  2149. /** Run unit tests for heap-based priority queue functions. */
  2150. static void
  2151. test_util_pqueue(void)
  2152. {
  2153. smartlist_t *sl = smartlist_create();
  2154. int (*cmp)(const void *, const void*);
  2155. #define OK() smartlist_pqueue_assert_ok(sl, cmp)
  2156. cmp = _compare_strings_for_pqueue;
  2157. smartlist_pqueue_add(sl, cmp, (char*)"cows");
  2158. smartlist_pqueue_add(sl, cmp, (char*)"zebras");
  2159. smartlist_pqueue_add(sl, cmp, (char*)"fish");
  2160. smartlist_pqueue_add(sl, cmp, (char*)"frogs");
  2161. smartlist_pqueue_add(sl, cmp, (char*)"apples");
  2162. smartlist_pqueue_add(sl, cmp, (char*)"squid");
  2163. smartlist_pqueue_add(sl, cmp, (char*)"daschunds");
  2164. smartlist_pqueue_add(sl, cmp, (char*)"eggplants");
  2165. smartlist_pqueue_add(sl, cmp, (char*)"weissbier");
  2166. smartlist_pqueue_add(sl, cmp, (char*)"lobsters");
  2167. smartlist_pqueue_add(sl, cmp, (char*)"roquefort");
  2168. OK();
  2169. test_eq(smartlist_len(sl), 11);
  2170. test_streq(smartlist_get(sl, 0), "apples");
  2171. test_streq(smartlist_pqueue_pop(sl, cmp), "apples");
  2172. test_eq(smartlist_len(sl), 10);
  2173. OK();
  2174. test_streq(smartlist_pqueue_pop(sl, cmp), "cows");
  2175. test_streq(smartlist_pqueue_pop(sl, cmp), "daschunds");
  2176. smartlist_pqueue_add(sl, cmp, (char*)"chinchillas");
  2177. OK();
  2178. smartlist_pqueue_add(sl, cmp, (char*)"fireflies");
  2179. OK();
  2180. test_streq(smartlist_pqueue_pop(sl, cmp), "chinchillas");
  2181. test_streq(smartlist_pqueue_pop(sl, cmp), "eggplants");
  2182. test_streq(smartlist_pqueue_pop(sl, cmp), "fireflies");
  2183. OK();
  2184. test_streq(smartlist_pqueue_pop(sl, cmp), "fish");
  2185. test_streq(smartlist_pqueue_pop(sl, cmp), "frogs");
  2186. test_streq(smartlist_pqueue_pop(sl, cmp), "lobsters");
  2187. test_streq(smartlist_pqueue_pop(sl, cmp), "roquefort");
  2188. OK();
  2189. test_eq(smartlist_len(sl), 3);
  2190. test_streq(smartlist_pqueue_pop(sl, cmp), "squid");
  2191. test_streq(smartlist_pqueue_pop(sl, cmp), "weissbier");
  2192. test_streq(smartlist_pqueue_pop(sl, cmp), "zebras");
  2193. test_eq(smartlist_len(sl), 0);
  2194. OK();
  2195. #undef OK
  2196. done:
  2197. smartlist_free(sl);
  2198. }
  2199. /** Run unit tests for compression functions */
  2200. static void
  2201. test_util_gzip(void)
  2202. {
  2203. char *buf1=NULL, *buf2=NULL, *buf3=NULL, *cp1, *cp2;
  2204. const char *ccp2;
  2205. size_t len1, len2;
  2206. tor_zlib_state_t *state = NULL;
  2207. buf1 = tor_strdup("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ");
  2208. test_assert(detect_compression_method(buf1, strlen(buf1)) == UNKNOWN_METHOD);
  2209. if (is_gzip_supported()) {
  2210. test_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
  2211. GZIP_METHOD));
  2212. test_assert(buf2);
  2213. test_assert(!memcmp(buf2, "\037\213", 2)); /* Gzip magic. */
  2214. test_assert(detect_compression_method(buf2, len1) == GZIP_METHOD);
  2215. test_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1,
  2216. GZIP_METHOD, 1, LOG_INFO));
  2217. test_assert(buf3);
  2218. test_streq(buf1,buf3);
  2219. tor_free(buf2);
  2220. tor_free(buf3);
  2221. }
  2222. test_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
  2223. ZLIB_METHOD));
  2224. test_assert(buf2);
  2225. test_assert(!memcmp(buf2, "\x78\xDA", 2)); /* deflate magic. */
  2226. test_assert(detect_compression_method(buf2, len1) == ZLIB_METHOD);
  2227. test_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1,
  2228. ZLIB_METHOD, 1, LOG_INFO));
  2229. test_assert(buf3);
  2230. test_streq(buf1,buf3);
  2231. /* Check whether we can uncompress concatenated, compressed strings. */
  2232. tor_free(buf3);
  2233. buf2 = tor_realloc(buf2, len1*2);
  2234. memcpy(buf2+len1, buf2, len1);
  2235. test_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1*2,
  2236. ZLIB_METHOD, 1, LOG_INFO));
  2237. test_eq(len2, (strlen(buf1)+1)*2);
  2238. test_memeq(buf3,
  2239. "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ\0"
  2240. "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ\0",
  2241. (strlen(buf1)+1)*2);
  2242. tor_free(buf1);
  2243. tor_free(buf2);
  2244. tor_free(buf3);
  2245. /* Check whether we can uncompress partial strings. */
  2246. buf1 =
  2247. tor_strdup("String with low redundancy that won't be compressed much.");
  2248. test_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
  2249. ZLIB_METHOD));
  2250. tor_assert(len1>16);
  2251. /* when we allow an incomplete string, we should succeed.*/
  2252. tor_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1-16,
  2253. ZLIB_METHOD, 0, LOG_INFO));
  2254. buf3[len2]='\0';
  2255. tor_assert(len2 > 5);
  2256. tor_assert(!strcmpstart(buf1, buf3));
  2257. /* when we demand a complete string, this must fail. */
  2258. tor_free(buf3);
  2259. tor_assert(tor_gzip_uncompress(&buf3, &len2, buf2, len1-16,
  2260. ZLIB_METHOD, 1, LOG_INFO));
  2261. tor_assert(!buf3);
  2262. /* Now, try streaming compression. */
  2263. tor_free(buf1);
  2264. tor_free(buf2);
  2265. tor_free(buf3);
  2266. state = tor_zlib_new(1, ZLIB_METHOD);
  2267. tor_assert(state);
  2268. cp1 = buf1 = tor_malloc(1024);
  2269. len1 = 1024;
  2270. ccp2 = "ABCDEFGHIJABCDEFGHIJ";
  2271. len2 = 21;
  2272. test_assert(tor_zlib_process(state, &cp1, &len1, &ccp2, &len2, 0)
  2273. == TOR_ZLIB_OK);
  2274. test_eq(len2, 0); /* Make sure we compressed it all. */
  2275. test_assert(cp1 > buf1);
  2276. len2 = 0;
  2277. cp2 = cp1;
  2278. test_assert(tor_zlib_process(state, &cp1, &len1, &ccp2, &len2, 1)
  2279. == TOR_ZLIB_DONE);
  2280. test_eq(len2, 0);
  2281. test_assert(cp1 > cp2); /* Make sure we really added something. */
  2282. tor_assert(!tor_gzip_uncompress(&buf3, &len2, buf1, 1024-len1,
  2283. ZLIB_METHOD, 1, LOG_WARN));
  2284. test_streq(buf3, "ABCDEFGHIJABCDEFGHIJ"); /*Make sure it compressed right.*/
  2285. done:
  2286. if (state)
  2287. tor_zlib_free(state);
  2288. tor_free(buf2);
  2289. tor_free(buf3);
  2290. tor_free(buf1);
  2291. }
  2292. /** Run unit tests for string-to-void* map functions */
  2293. static void
  2294. test_util_strmap(void)
  2295. {
  2296. strmap_t *map;
  2297. strmap_iter_t *iter;
  2298. const char *k;
  2299. void *v;
  2300. char *visited = NULL;
  2301. smartlist_t *found_keys = NULL;
  2302. map = strmap_new();
  2303. test_assert(map);
  2304. test_eq(strmap_size(map), 0);
  2305. test_assert(strmap_isempty(map));
  2306. v = strmap_set(map, "K1", (void*)99);
  2307. test_eq(v, NULL);
  2308. test_assert(!strmap_isempty(map));
  2309. v = strmap_set(map, "K2", (void*)101);
  2310. test_eq(v, NULL);
  2311. v = strmap_set(map, "K1", (void*)100);
  2312. test_eq(v, (void*)99);
  2313. test_eq_ptr(strmap_get(map,"K1"), (void*)100);
  2314. test_eq_ptr(strmap_get(map,"K2"), (void*)101);
  2315. test_eq_ptr(strmap_get(map,"K-not-there"), NULL);
  2316. strmap_assert_ok(map);
  2317. v = strmap_remove(map,"K2");
  2318. strmap_assert_ok(map);
  2319. test_eq_ptr(v, (void*)101);
  2320. test_eq_ptr(strmap_get(map,"K2"), NULL);
  2321. test_eq_ptr(strmap_remove(map,"K2"), NULL);
  2322. strmap_set(map, "K2", (void*)101);
  2323. strmap_set(map, "K3", (void*)102);
  2324. strmap_set(map, "K4", (void*)103);
  2325. test_eq(strmap_size(map), 4);
  2326. strmap_assert_ok(map);
  2327. strmap_set(map, "K5", (void*)104);
  2328. strmap_set(map, "K6", (void*)105);
  2329. strmap_assert_ok(map);
  2330. /* Test iterator. */
  2331. iter = strmap_iter_init(map);
  2332. found_keys = smartlist_create();
  2333. while (!strmap_iter_done(iter)) {
  2334. strmap_iter_get(iter,&k,&v);
  2335. smartlist_add(found_keys, tor_strdup(k));
  2336. test_eq_ptr(v, strmap_get(map, k));
  2337. if (!strcmp(k, "K2")) {
  2338. iter = strmap_iter_next_rmv(map,iter);
  2339. } else {
  2340. iter = strmap_iter_next(map,iter);
  2341. }
  2342. }
  2343. /* Make sure we removed K2, but not the others. */
  2344. test_eq_ptr(strmap_get(map, "K2"), NULL);
  2345. test_eq_ptr(strmap_get(map, "K5"), (void*)104);
  2346. /* Make sure we visited everyone once */
  2347. smartlist_sort_strings(found_keys);
  2348. visited = smartlist_join_strings(found_keys, ":", 0, NULL);
  2349. test_streq(visited, "K1:K2:K3:K4:K5:K6");
  2350. strmap_assert_ok(map);
  2351. /* Clean up after ourselves. */
  2352. strmap_free(map, NULL);
  2353. map = NULL;
  2354. /* Now try some lc functions. */
  2355. map = strmap_new();
  2356. strmap_set_lc(map,"Ab.C", (void*)1);
  2357. test_eq_ptr(strmap_get(map,"ab.c"), (void*)1);
  2358. strmap_assert_ok(map);
  2359. test_eq_ptr(strmap_get_lc(map,"AB.C"), (void*)1);
  2360. test_eq_ptr(strmap_get(map,"AB.C"), NULL);
  2361. test_eq_ptr(strmap_remove_lc(map,"aB.C"), (void*)1);
  2362. strmap_assert_ok(map);
  2363. test_eq_ptr(strmap_get_lc(map,"AB.C"), NULL);
  2364. done:
  2365. if (map)
  2366. strmap_free(map,NULL);
  2367. if (found_keys) {
  2368. SMARTLIST_FOREACH(found_keys, char *, cp, tor_free(cp));
  2369. smartlist_free(found_keys);
  2370. }
  2371. tor_free(visited);
  2372. }
  2373. /** Run unit tests for mmap() wrapper functionality. */
  2374. static void
  2375. test_util_mmap(void)
  2376. {
  2377. char *fname1 = tor_strdup(get_fname("mapped_1"));
  2378. char *fname2 = tor_strdup(get_fname("mapped_2"));
  2379. char *fname3 = tor_strdup(get_fname("mapped_3"));
  2380. const size_t buflen = 17000;
  2381. char *buf = tor_malloc(17000);
  2382. tor_mmap_t *mapping = NULL;
  2383. crypto_rand(buf, buflen);
  2384. mapping = tor_mmap_file(fname1);
  2385. test_assert(! mapping);
  2386. write_str_to_file(fname1, "Short file.", 1);
  2387. write_bytes_to_file(fname2, buf, buflen, 1);
  2388. write_bytes_to_file(fname3, buf, 16384, 1);
  2389. mapping = tor_mmap_file(fname1);
  2390. test_assert(mapping);
  2391. test_eq(mapping->size, strlen("Short file."));
  2392. test_streq(mapping->data, "Short file.");
  2393. #ifdef MS_WINDOWS
  2394. tor_munmap_file(mapping);
  2395. mapping = NULL;
  2396. test_assert(unlink(fname1) == 0);
  2397. #else
  2398. /* make sure we can unlink. */
  2399. test_assert(unlink(fname1) == 0);
  2400. test_streq(mapping->data, "Short file.");
  2401. tor_munmap_file(mapping);
  2402. mapping = NULL;
  2403. #endif
  2404. /* Now a zero-length file. */
  2405. write_str_to_file(fname1, "", 1);
  2406. mapping = tor_mmap_file(fname1);
  2407. test_eq(mapping, NULL);
  2408. test_eq(ERANGE, errno);
  2409. unlink(fname1);
  2410. /* Make sure that we fail to map a no-longer-existent file. */
  2411. mapping = tor_mmap_file(fname1);
  2412. test_assert(mapping == NULL);
  2413. /* Now try a big file that stretches across a few pages and isn't aligned */
  2414. mapping = tor_mmap_file(fname2);
  2415. test_assert(mapping);
  2416. test_eq(mapping->size, buflen);
  2417. test_memeq(mapping->data, buf, buflen);
  2418. tor_munmap_file(mapping);
  2419. mapping = NULL;
  2420. /* Now try a big aligned file. */
  2421. mapping = tor_mmap_file(fname3);
  2422. test_assert(mapping);
  2423. test_eq(mapping->size, 16384);
  2424. test_memeq(mapping->data, buf, 16384);
  2425. tor_munmap_file(mapping);
  2426. mapping = NULL;
  2427. done:
  2428. unlink(fname1);
  2429. unlink(fname2);
  2430. unlink(fname3);
  2431. tor_free(fname1);
  2432. tor_free(fname2);
  2433. tor_free(fname3);
  2434. tor_free(buf);
  2435. if (mapping)
  2436. tor_munmap_file(mapping);
  2437. }
  2438. /** Run unit tests for escaping/unescaping data for use by controllers. */
  2439. static void
  2440. test_util_control_formats(void)
  2441. {
  2442. char *out = NULL;
  2443. const char *inp =
  2444. "..This is a test\r\nof the emergency \nbroadcast\r\n..system.\r\nZ.\r\n";
  2445. size_t sz;
  2446. sz = read_escaped_data(inp, strlen(inp), &out);
  2447. test_streq(out,
  2448. ".This is a test\nof the emergency \nbroadcast\n.system.\nZ.\n");
  2449. test_eq(sz, strlen(out));
  2450. done:
  2451. tor_free(out);
  2452. }
  2453. static void
  2454. test_util_sscanf(void)
  2455. {
  2456. unsigned u1, u2, u3;
  2457. char s1[10], s2[10], s3[10], ch;
  2458. int r;
  2459. r = tor_sscanf("hello world", "hello world"); /* String match: success */
  2460. test_eq(r, 0);
  2461. r = tor_sscanf("hello world 3", "hello worlb %u", &u1); /* String fail */
  2462. test_eq(r, 0);
  2463. r = tor_sscanf("12345", "%u", &u1); /* Simple number */
  2464. test_eq(r, 1);
  2465. test_eq(u1, 12345u);
  2466. r = tor_sscanf("", "%u", &u1); /* absent number */
  2467. test_eq(r, 0);
  2468. r = tor_sscanf("A", "%u", &u1); /* bogus number */
  2469. test_eq(r, 0);
  2470. r = tor_sscanf("4294967295", "%u", &u1); /* UINT32_MAX should work. */
  2471. test_eq(r, 1);
  2472. test_eq(u1, 4294967295u);
  2473. r = tor_sscanf("4294967296", "%u", &u1); /* Always say -1 at 32 bits. */
  2474. test_eq(r, 0);
  2475. r = tor_sscanf("123456", "%2u%u", &u1, &u2); /* Width */
  2476. test_eq(r, 2);
  2477. test_eq(u1, 12u);
  2478. test_eq(u2, 3456u);
  2479. r = tor_sscanf("!12:3:456", "!%2u:%2u:%3u", &u1, &u2, &u3); /* separators */
  2480. test_eq(r, 3);
  2481. test_eq(u1, 12u);
  2482. test_eq(u2, 3u);
  2483. test_eq(u3, 456u);
  2484. r = tor_sscanf("12:3:045", "%2u:%2u:%3u", &u1, &u2, &u3); /* 0s */
  2485. test_eq(r, 3);
  2486. test_eq(u1, 12u);
  2487. test_eq(u2, 3u);
  2488. test_eq(u3, 45u);
  2489. /* %u does not match space.*/
  2490. r = tor_sscanf("12:3: 45", "%2u:%2u:%3u", &u1, &u2, &u3);
  2491. test_eq(r, 2);
  2492. /* %u does not match negative numbers. */
  2493. r = tor_sscanf("12:3:-4", "%2u:%2u:%3u", &u1, &u2, &u3);
  2494. test_eq(r, 2);
  2495. /* Arbitrary amounts of 0-padding are okay */
  2496. r = tor_sscanf("12:03:000000000000000099", "%2u:%2u:%u", &u1, &u2, &u3);
  2497. test_eq(r, 3);
  2498. test_eq(u1, 12u);
  2499. test_eq(u2, 3u);
  2500. test_eq(u3, 99u);
  2501. r = tor_sscanf("99% fresh", "%3u%% fresh", &u1); /* percents are scannable.*/
  2502. test_eq(r, 1);
  2503. test_eq(u1, 99);
  2504. r = tor_sscanf("hello", "%s", s1); /* %s needs a number. */
  2505. test_eq(r, -1);
  2506. r = tor_sscanf("hello", "%3s%7s", s1, s2); /* %s matches characters. */
  2507. test_eq(r, 2);
  2508. test_streq(s1, "hel");
  2509. test_streq(s2, "lo");
  2510. r = tor_sscanf("WD40", "%2s%u", s3, &u1); /* %s%u */
  2511. test_eq(r, 2);
  2512. test_streq(s3, "WD");
  2513. test_eq(u1, 40);
  2514. r = tor_sscanf("76trombones", "%6u%9s", &u1, s1); /* %u%s */
  2515. test_eq(r, 2);
  2516. test_eq(u1, 76);
  2517. test_streq(s1, "trombones");
  2518. r = tor_sscanf("hello world", "%9s %9s", s1, s2); /* %s doesn't eat space. */
  2519. test_eq(r, 2);
  2520. test_streq(s1, "hello");
  2521. test_streq(s2, "world");
  2522. r = tor_sscanf("hi", "%9s%9s%3s", s1, s2, s3); /* %s can be empty. */
  2523. test_eq(r, 3);
  2524. test_streq(s1, "hi");
  2525. test_streq(s2, "");
  2526. test_streq(s3, "");
  2527. r = tor_sscanf("1.2.3", "%u.%u.%u%c", &u1, &u2, &u3, &ch);
  2528. test_eq(r, 3);
  2529. r = tor_sscanf("1.2.3 foobar", "%u.%u.%u%c", &u1, &u2, &u3, &ch);
  2530. test_eq(r, 4);
  2531. done:
  2532. ;
  2533. }
  2534. /** Run unit tests for the onion handshake code. */
  2535. static void
  2536. test_onion_handshake(void)
  2537. {
  2538. /* client-side */
  2539. crypto_dh_env_t *c_dh = NULL;
  2540. char c_buf[ONIONSKIN_CHALLENGE_LEN];
  2541. char c_keys[40];
  2542. /* server-side */
  2543. char s_buf[ONIONSKIN_REPLY_LEN];
  2544. char s_keys[40];
  2545. /* shared */
  2546. crypto_pk_env_t *pk = NULL;
  2547. pk = pk_generate(0);
  2548. /* client handshake 1. */
  2549. memset(c_buf, 0, ONIONSKIN_CHALLENGE_LEN);
  2550. test_assert(! onion_skin_create(pk, &c_dh, c_buf));
  2551. /* server handshake */
  2552. memset(s_buf, 0, ONIONSKIN_REPLY_LEN);
  2553. memset(s_keys, 0, 40);
  2554. test_assert(! onion_skin_server_handshake(c_buf, pk, NULL,
  2555. s_buf, s_keys, 40));
  2556. /* client handshake 2 */
  2557. memset(c_keys, 0, 40);
  2558. test_assert(! onion_skin_client_handshake(c_dh, s_buf, c_keys, 40));
  2559. if (memcmp(c_keys, s_keys, 40)) {
  2560. puts("Aiiiie");
  2561. exit(1);
  2562. }
  2563. test_memeq(c_keys, s_keys, 40);
  2564. memset(s_buf, 0, 40);
  2565. test_memneq(c_keys, s_buf, 40);
  2566. done:
  2567. if (c_dh)
  2568. crypto_dh_free(c_dh);
  2569. if (pk)
  2570. crypto_free_pk_env(pk);
  2571. }
  2572. /** Run unit tests for router descriptor generation logic. */
  2573. static void
  2574. test_dir_format(void)
  2575. {
  2576. char buf[8192], buf2[8192];
  2577. char platform[256];
  2578. char fingerprint[FINGERPRINT_LEN+1];
  2579. char *pk1_str = NULL, *pk2_str = NULL, *pk3_str = NULL, *cp;
  2580. size_t pk1_str_len, pk2_str_len, pk3_str_len;
  2581. routerinfo_t *r1=NULL, *r2=NULL;
  2582. crypto_pk_env_t *pk1 = NULL, *pk2 = NULL, *pk3 = NULL;
  2583. routerinfo_t *rp1 = NULL;
  2584. addr_policy_t *ex1, *ex2;
  2585. routerlist_t *dir1 = NULL, *dir2 = NULL;
  2586. tor_version_t ver1;
  2587. pk1 = pk_generate(0);
  2588. pk2 = pk_generate(1);
  2589. pk3 = pk_generate(2);
  2590. test_assert( is_legal_nickname("a"));
  2591. test_assert(!is_legal_nickname(""));
  2592. test_assert(!is_legal_nickname("abcdefghijklmnopqrst")); /* 20 chars */
  2593. test_assert(!is_legal_nickname("hyphen-")); /* bad char */
  2594. test_assert( is_legal_nickname("abcdefghijklmnopqrs")); /* 19 chars */
  2595. test_assert(!is_legal_nickname("$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  2596. /* valid */
  2597. test_assert( is_legal_nickname_or_hexdigest(
  2598. "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  2599. test_assert( is_legal_nickname_or_hexdigest(
  2600. "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA=fred"));
  2601. test_assert( is_legal_nickname_or_hexdigest(
  2602. "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA~fred"));
  2603. /* too short */
  2604. test_assert(!is_legal_nickname_or_hexdigest(
  2605. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  2606. /* illegal char */
  2607. test_assert(!is_legal_nickname_or_hexdigest(
  2608. "$AAAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  2609. /* hex part too long */
  2610. test_assert(!is_legal_nickname_or_hexdigest(
  2611. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"));
  2612. test_assert(!is_legal_nickname_or_hexdigest(
  2613. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=fred"));
  2614. /* Bad nickname */
  2615. test_assert(!is_legal_nickname_or_hexdigest(
  2616. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="));
  2617. test_assert(!is_legal_nickname_or_hexdigest(
  2618. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~"));
  2619. test_assert(!is_legal_nickname_or_hexdigest(
  2620. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~hyphen-"));
  2621. test_assert(!is_legal_nickname_or_hexdigest(
  2622. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~"
  2623. "abcdefghijklmnoppqrst"));
  2624. /* Bad extra char. */
  2625. test_assert(!is_legal_nickname_or_hexdigest(
  2626. "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA!"));
  2627. test_assert(is_legal_nickname_or_hexdigest("xyzzy"));
  2628. test_assert(is_legal_nickname_or_hexdigest("abcdefghijklmnopqrs"));
  2629. test_assert(!is_legal_nickname_or_hexdigest("abcdefghijklmnopqrst"));
  2630. get_platform_str(platform, sizeof(platform));
  2631. r1 = tor_malloc_zero(sizeof(routerinfo_t));
  2632. r1->address = tor_strdup("18.244.0.1");
  2633. r1->addr = 0xc0a80001u; /* 192.168.0.1 */
  2634. r1->cache_info.published_on = 0;
  2635. r1->or_port = 9000;
  2636. r1->dir_port = 9003;
  2637. r1->onion_pkey = crypto_pk_dup_key(pk1);
  2638. r1->identity_pkey = crypto_pk_dup_key(pk2);
  2639. r1->bandwidthrate = 1000;
  2640. r1->bandwidthburst = 5000;
  2641. r1->bandwidthcapacity = 10000;
  2642. r1->exit_policy = NULL;
  2643. r1->nickname = tor_strdup("Magri");
  2644. r1->platform = tor_strdup(platform);
  2645. ex1 = tor_malloc_zero(sizeof(addr_policy_t));
  2646. ex2 = tor_malloc_zero(sizeof(addr_policy_t));
  2647. ex1->policy_type = ADDR_POLICY_ACCEPT;
  2648. tor_addr_from_ipv4h(&ex1->addr, 0);
  2649. ex1->maskbits = 0;
  2650. ex1->prt_min = ex1->prt_max = 80;
  2651. ex2->policy_type = ADDR_POLICY_REJECT;
  2652. tor_addr_from_ipv4h(&ex2->addr, 18<<24);
  2653. ex2->maskbits = 8;
  2654. ex2->prt_min = ex2->prt_max = 24;
  2655. r2 = tor_malloc_zero(sizeof(routerinfo_t));
  2656. r2->address = tor_strdup("1.1.1.1");
  2657. r2->addr = 0x0a030201u; /* 10.3.2.1 */
  2658. r2->platform = tor_strdup(platform);
  2659. r2->cache_info.published_on = 5;
  2660. r2->or_port = 9005;
  2661. r2->dir_port = 0;
  2662. r2->onion_pkey = crypto_pk_dup_key(pk2);
  2663. r2->identity_pkey = crypto_pk_dup_key(pk1);
  2664. r2->bandwidthrate = r2->bandwidthburst = r2->bandwidthcapacity = 3000;
  2665. r2->exit_policy = smartlist_create();
  2666. smartlist_add(r2->exit_policy, ex2);
  2667. smartlist_add(r2->exit_policy, ex1);
  2668. r2->nickname = tor_strdup("Fred");
  2669. test_assert(!crypto_pk_write_public_key_to_string(pk1, &pk1_str,
  2670. &pk1_str_len));
  2671. test_assert(!crypto_pk_write_public_key_to_string(pk2 , &pk2_str,
  2672. &pk2_str_len));
  2673. test_assert(!crypto_pk_write_public_key_to_string(pk3 , &pk3_str,
  2674. &pk3_str_len));
  2675. memset(buf, 0, 2048);
  2676. test_assert(router_dump_router_to_string(buf, 2048, r1, pk2)>0);
  2677. strlcpy(buf2, "router Magri 18.244.0.1 9000 0 9003\n"
  2678. "platform Tor "VERSION" on ", sizeof(buf2));
  2679. strlcat(buf2, get_uname(), sizeof(buf2));
  2680. strlcat(buf2, "\n"
  2681. "opt protocols Link 1 2 Circuit 1\n"
  2682. "published 1970-01-01 00:00:00\n"
  2683. "opt fingerprint ", sizeof(buf2));
  2684. test_assert(!crypto_pk_get_fingerprint(pk2, fingerprint, 1));
  2685. strlcat(buf2, fingerprint, sizeof(buf2));
  2686. strlcat(buf2, "\nuptime 0\n"
  2687. /* XXX the "0" above is hard-coded, but even if we made it reflect
  2688. * uptime, that still wouldn't make it right, because the two
  2689. * descriptors might be made on different seconds... hm. */
  2690. "bandwidth 1000 5000 10000\n"
  2691. "opt extra-info-digest 0000000000000000000000000000000000000000\n"
  2692. "onion-key\n", sizeof(buf2));
  2693. strlcat(buf2, pk1_str, sizeof(buf2));
  2694. strlcat(buf2, "signing-key\n", sizeof(buf2));
  2695. strlcat(buf2, pk2_str, sizeof(buf2));
  2696. strlcat(buf2, "opt hidden-service-dir\n", sizeof(buf2));
  2697. strlcat(buf2, "reject *:*\nrouter-signature\n", sizeof(buf2));
  2698. buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same
  2699. * twice */
  2700. test_streq(buf, buf2);
  2701. test_assert(router_dump_router_to_string(buf, 2048, r1, pk2)>0);
  2702. cp = buf;
  2703. rp1 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL);
  2704. test_assert(rp1);
  2705. test_streq(rp1->address, r1->address);
  2706. test_eq(rp1->or_port, r1->or_port);
  2707. //test_eq(rp1->dir_port, r1->dir_port);
  2708. test_eq(rp1->bandwidthrate, r1->bandwidthrate);
  2709. test_eq(rp1->bandwidthburst, r1->bandwidthburst);
  2710. test_eq(rp1->bandwidthcapacity, r1->bandwidthcapacity);
  2711. test_assert(crypto_pk_cmp_keys(rp1->onion_pkey, pk1) == 0);
  2712. test_assert(crypto_pk_cmp_keys(rp1->identity_pkey, pk2) == 0);
  2713. //test_assert(rp1->exit_policy == NULL);
  2714. #if 0
  2715. /* XXX Once we have exit policies, test this again. XXX */
  2716. strlcpy(buf2, "router tor.tor.tor 9005 0 0 3000\n", sizeof(buf2));
  2717. strlcat(buf2, pk2_str, sizeof(buf2));
  2718. strlcat(buf2, "signing-key\n", sizeof(buf2));
  2719. strlcat(buf2, pk1_str, sizeof(buf2));
  2720. strlcat(buf2, "accept *:80\nreject 18.*:24\n\n", sizeof(buf2));
  2721. test_assert(router_dump_router_to_string(buf, 2048, &r2, pk2)>0);
  2722. test_streq(buf, buf2);
  2723. cp = buf;
  2724. rp2 = router_parse_entry_from_string(&cp,1);
  2725. test_assert(rp2);
  2726. test_streq(rp2->address, r2.address);
  2727. test_eq(rp2->or_port, r2.or_port);
  2728. test_eq(rp2->dir_port, r2.dir_port);
  2729. test_eq(rp2->bandwidth, r2.bandwidth);
  2730. test_assert(crypto_pk_cmp_keys(rp2->onion_pkey, pk2) == 0);
  2731. test_assert(crypto_pk_cmp_keys(rp2->identity_pkey, pk1) == 0);
  2732. test_eq(rp2->exit_policy->policy_type, EXIT_POLICY_ACCEPT);
  2733. test_streq(rp2->exit_policy->string, "accept *:80");
  2734. test_streq(rp2->exit_policy->address, "*");
  2735. test_streq(rp2->exit_policy->port, "80");
  2736. test_eq(rp2->exit_policy->next->policy_type, EXIT_POLICY_REJECT);
  2737. test_streq(rp2->exit_policy->next->string, "reject 18.*:24");
  2738. test_streq(rp2->exit_policy->next->address, "18.*");
  2739. test_streq(rp2->exit_policy->next->port, "24");
  2740. test_assert(rp2->exit_policy->next->next == NULL);
  2741. /* Okay, now for the directories. */
  2742. {
  2743. fingerprint_list = smartlist_create();
  2744. crypto_pk_get_fingerprint(pk2, buf, 1);
  2745. add_fingerprint_to_dir("Magri", buf, fingerprint_list);
  2746. crypto_pk_get_fingerprint(pk1, buf, 1);
  2747. add_fingerprint_to_dir("Fred", buf, fingerprint_list);
  2748. }
  2749. {
  2750. char d[DIGEST_LEN];
  2751. const char *m;
  2752. /* XXXX NM re-enable. */
  2753. /* Make sure routers aren't too far in the past any more. */
  2754. r1->cache_info.published_on = time(NULL);
  2755. r2->cache_info.published_on = time(NULL)-3*60*60;
  2756. test_assert(router_dump_router_to_string(buf, 2048, r1, pk2)>0);
  2757. test_eq(dirserv_add_descriptor(buf,&m,""), ROUTER_ADDED_NOTIFY_GENERATOR);
  2758. test_assert(router_dump_router_to_string(buf, 2048, r2, pk1)>0);
  2759. test_eq(dirserv_add_descriptor(buf,&m,""), ROUTER_ADDED_NOTIFY_GENERATOR);
  2760. get_options()->Nickname = tor_strdup("DirServer");
  2761. test_assert(!dirserv_dump_directory_to_string(&cp,pk3, 0));
  2762. crypto_pk_get_digest(pk3, d);
  2763. test_assert(!router_parse_directory(cp));
  2764. test_eq(2, smartlist_len(dir1->routers));
  2765. tor_free(cp);
  2766. }
  2767. #endif
  2768. dirserv_free_fingerprint_list();
  2769. /* Try out version parsing functionality */
  2770. test_eq(0, tor_version_parse("0.3.4pre2-cvs", &ver1));
  2771. test_eq(0, ver1.major);
  2772. test_eq(3, ver1.minor);
  2773. test_eq(4, ver1.micro);
  2774. test_eq(VER_PRE, ver1.status);
  2775. test_eq(2, ver1.patchlevel);
  2776. test_eq(0, tor_version_parse("0.3.4rc1", &ver1));
  2777. test_eq(0, ver1.major);
  2778. test_eq(3, ver1.minor);
  2779. test_eq(4, ver1.micro);
  2780. test_eq(VER_RC, ver1.status);
  2781. test_eq(1, ver1.patchlevel);
  2782. test_eq(0, tor_version_parse("1.3.4", &ver1));
  2783. test_eq(1, ver1.major);
  2784. test_eq(3, ver1.minor);
  2785. test_eq(4, ver1.micro);
  2786. test_eq(VER_RELEASE, ver1.status);
  2787. test_eq(0, ver1.patchlevel);
  2788. test_eq(0, tor_version_parse("1.3.4.999", &ver1));
  2789. test_eq(1, ver1.major);
  2790. test_eq(3, ver1.minor);
  2791. test_eq(4, ver1.micro);
  2792. test_eq(VER_RELEASE, ver1.status);
  2793. test_eq(999, ver1.patchlevel);
  2794. test_eq(0, tor_version_parse("0.1.2.4-alpha", &ver1));
  2795. test_eq(0, ver1.major);
  2796. test_eq(1, ver1.minor);
  2797. test_eq(2, ver1.micro);
  2798. test_eq(4, ver1.patchlevel);
  2799. test_eq(VER_RELEASE, ver1.status);
  2800. test_streq("alpha", ver1.status_tag);
  2801. test_eq(0, tor_version_parse("0.1.2.4", &ver1));
  2802. test_eq(0, ver1.major);
  2803. test_eq(1, ver1.minor);
  2804. test_eq(2, ver1.micro);
  2805. test_eq(4, ver1.patchlevel);
  2806. test_eq(VER_RELEASE, ver1.status);
  2807. test_streq("", ver1.status_tag);
  2808. #define test_eq_vs(vs1, vs2) test_eq_type(version_status_t, "%d", (vs1), (vs2))
  2809. #define test_v_i_o(val, ver, lst) \
  2810. test_eq_vs(val, tor_version_is_obsolete(ver, lst))
  2811. /* make sure tor_version_is_obsolete() works */
  2812. test_v_i_o(VS_OLD, "0.0.1", "Tor 0.0.2");
  2813. test_v_i_o(VS_OLD, "0.0.1", "0.0.2, Tor 0.0.3");
  2814. test_v_i_o(VS_OLD, "0.0.1", "0.0.2,Tor 0.0.3");
  2815. test_v_i_o(VS_OLD, "0.0.1","0.0.3,BetterTor 0.0.1");
  2816. test_v_i_o(VS_RECOMMENDED, "0.0.2", "Tor 0.0.2,Tor 0.0.3");
  2817. test_v_i_o(VS_NEW_IN_SERIES, "0.0.2", "Tor 0.0.2pre1,Tor 0.0.3");
  2818. test_v_i_o(VS_OLD, "0.0.2", "Tor 0.0.2.1,Tor 0.0.3");
  2819. test_v_i_o(VS_NEW, "0.1.0", "Tor 0.0.2,Tor 0.0.3");
  2820. test_v_i_o(VS_RECOMMENDED, "0.0.7rc2", "0.0.7,Tor 0.0.7rc2,Tor 0.0.8");
  2821. test_v_i_o(VS_OLD, "0.0.5.0", "0.0.5.1-cvs");
  2822. test_v_i_o(VS_NEW_IN_SERIES, "0.0.5.1-cvs", "0.0.5, 0.0.6");
  2823. /* Not on list, but newer than any in same series. */
  2824. test_v_i_o(VS_NEW_IN_SERIES, "0.1.0.3",
  2825. "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  2826. /* Series newer than any on list. */
  2827. 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");
  2828. /* Series older than any on list. */
  2829. 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");
  2830. /* Not on list, not newer than any on same series. */
  2831. test_v_i_o(VS_UNRECOMMENDED, "0.1.0.1",
  2832. "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  2833. /* On list, not newer than any on same series. */
  2834. test_v_i_o(VS_UNRECOMMENDED,
  2835. "0.1.0.1", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0");
  2836. test_eq(0, tor_version_as_new_as("Tor 0.0.5", "0.0.9pre1-cvs"));
  2837. test_eq(1, tor_version_as_new_as(
  2838. "Tor 0.0.8 on Darwin 64-121-192-100.c3-0."
  2839. "sfpo-ubr1.sfrn-sfpo.ca.cable.rcn.com Power Macintosh",
  2840. "0.0.8rc2"));
  2841. test_eq(0, tor_version_as_new_as(
  2842. "Tor 0.0.8 on Darwin 64-121-192-100.c3-0."
  2843. "sfpo-ubr1.sfrn-sfpo.ca.cable.rcn.com Power Macintosh", "0.0.8.2"));
  2844. /* Now try svn revisions. */
  2845. test_eq(1, tor_version_as_new_as("Tor 0.2.1.0-dev (r100)",
  2846. "Tor 0.2.1.0-dev (r99)"));
  2847. test_eq(1, tor_version_as_new_as("Tor 0.2.1.0-dev (r100) on Banana Jr",
  2848. "Tor 0.2.1.0-dev (r99) on Hal 9000"));
  2849. test_eq(1, tor_version_as_new_as("Tor 0.2.1.0-dev (r100)",
  2850. "Tor 0.2.1.0-dev on Colossus"));
  2851. test_eq(0, tor_version_as_new_as("Tor 0.2.1.0-dev (r99)",
  2852. "Tor 0.2.1.0-dev (r100)"));
  2853. test_eq(0, tor_version_as_new_as("Tor 0.2.1.0-dev (r99) on MCP",
  2854. "Tor 0.2.1.0-dev (r100) on AM"));
  2855. test_eq(0, tor_version_as_new_as("Tor 0.2.1.0-dev",
  2856. "Tor 0.2.1.0-dev (r99)"));
  2857. test_eq(1, tor_version_as_new_as("Tor 0.2.1.1",
  2858. "Tor 0.2.1.0-dev (r99)"));
  2859. done:
  2860. if (r1)
  2861. routerinfo_free(r1);
  2862. if (r2)
  2863. routerinfo_free(r2);
  2864. tor_free(pk1_str);
  2865. tor_free(pk2_str);
  2866. tor_free(pk3_str);
  2867. if (pk1) crypto_free_pk_env(pk1);
  2868. if (pk2) crypto_free_pk_env(pk2);
  2869. if (pk3) crypto_free_pk_env(pk3);
  2870. if (rp1) routerinfo_free(rp1);
  2871. tor_free(dir1); /* XXXX And more !*/
  2872. tor_free(dir2); /* And more !*/
  2873. }
  2874. /** Run unit tests for misc directory functions. */
  2875. static void
  2876. test_dirutil(void)
  2877. {
  2878. smartlist_t *sl = smartlist_create();
  2879. fp_pair_t *pair;
  2880. dir_split_resource_into_fingerprint_pairs(
  2881. /* Two pairs, out of order, with one duplicate. */
  2882. "73656372657420646174612E0000000000FFFFFF-"
  2883. "557365204145532d32353620696e73746561642e+"
  2884. "73656372657420646174612E0000000000FFFFFF-"
  2885. "557365204145532d32353620696e73746561642e+"
  2886. "48657861646563696d616c2069736e277420736f-"
  2887. "676f6f6420666f7220686964696e6720796f7572.z", sl);
  2888. test_eq(smartlist_len(sl), 2);
  2889. pair = smartlist_get(sl, 0);
  2890. test_memeq(pair->first, "Hexadecimal isn't so", DIGEST_LEN);
  2891. test_memeq(pair->second, "good for hiding your", DIGEST_LEN);
  2892. pair = smartlist_get(sl, 1);
  2893. test_memeq(pair->first, "secret data.\0\0\0\0\0\xff\xff\xff", DIGEST_LEN);
  2894. test_memeq(pair->second, "Use AES-256 instead.", DIGEST_LEN);
  2895. done:
  2896. SMARTLIST_FOREACH(sl, fp_pair_t *, pair, tor_free(pair));
  2897. smartlist_free(sl);
  2898. }
  2899. extern const char AUTHORITY_CERT_1[];
  2900. extern const char AUTHORITY_SIGNKEY_1[];
  2901. extern const char AUTHORITY_CERT_2[];
  2902. extern const char AUTHORITY_SIGNKEY_2[];
  2903. extern const char AUTHORITY_CERT_3[];
  2904. extern const char AUTHORITY_SIGNKEY_3[];
  2905. /** Helper: Test that two networkstatus_voter_info_t do in fact represent the
  2906. * same voting authority, and that they do in fact have all the same
  2907. * information. */
  2908. static void
  2909. test_same_voter(networkstatus_voter_info_t *v1,
  2910. networkstatus_voter_info_t *v2)
  2911. {
  2912. test_streq(v1->nickname, v2->nickname);
  2913. test_memeq(v1->identity_digest, v2->identity_digest, DIGEST_LEN);
  2914. test_streq(v1->address, v2->address);
  2915. test_eq(v1->addr, v2->addr);
  2916. test_eq(v1->dir_port, v2->dir_port);
  2917. test_eq(v1->or_port, v2->or_port);
  2918. test_streq(v1->contact, v2->contact);
  2919. test_memeq(v1->vote_digest, v2->vote_digest, DIGEST_LEN);
  2920. done:
  2921. ;
  2922. }
  2923. /** Run unit tests for getting the median of a list. */
  2924. static void
  2925. test_util_order_functions(void)
  2926. {
  2927. int lst[25], n = 0;
  2928. // int a=12,b=24,c=25,d=60,e=77;
  2929. #define median() median_int(lst, n)
  2930. lst[n++] = 12;
  2931. test_eq(12, median()); /* 12 */
  2932. lst[n++] = 77;
  2933. //smartlist_shuffle(sl);
  2934. test_eq(12, median()); /* 12, 77 */
  2935. lst[n++] = 77;
  2936. //smartlist_shuffle(sl);
  2937. test_eq(77, median()); /* 12, 77, 77 */
  2938. lst[n++] = 24;
  2939. test_eq(24, median()); /* 12,24,77,77 */
  2940. lst[n++] = 60;
  2941. lst[n++] = 12;
  2942. lst[n++] = 25;
  2943. //smartlist_shuffle(sl);
  2944. test_eq(25, median()); /* 12,12,24,25,60,77,77 */
  2945. #undef median
  2946. done:
  2947. ;
  2948. }
  2949. /** Helper: Make a new routerinfo containing the right information for a
  2950. * given vote_routerstatus_t. */
  2951. static routerinfo_t *
  2952. generate_ri_from_rs(const vote_routerstatus_t *vrs)
  2953. {
  2954. routerinfo_t *r;
  2955. const routerstatus_t *rs = &vrs->status;
  2956. static time_t published = 0;
  2957. r = tor_malloc_zero(sizeof(routerinfo_t));
  2958. memcpy(r->cache_info.identity_digest, rs->identity_digest, DIGEST_LEN);
  2959. memcpy(r->cache_info.signed_descriptor_digest, rs->descriptor_digest,
  2960. DIGEST_LEN);
  2961. r->cache_info.do_not_cache = 1;
  2962. r->cache_info.routerlist_index = -1;
  2963. r->cache_info.signed_descriptor_body =
  2964. tor_strdup("123456789012345678901234567890123");
  2965. r->cache_info.signed_descriptor_len =
  2966. strlen(r->cache_info.signed_descriptor_body);
  2967. r->exit_policy = smartlist_create();
  2968. r->cache_info.published_on = ++published + time(NULL);
  2969. return r;
  2970. }
  2971. /** Run unit tests for generating and parsing V3 consensus networkstatus
  2972. * documents. */
  2973. static void
  2974. test_v3_networkstatus(void)
  2975. {
  2976. authority_cert_t *cert1=NULL, *cert2=NULL, *cert3=NULL;
  2977. crypto_pk_env_t *sign_skey_1=NULL, *sign_skey_2=NULL, *sign_skey_3=NULL;
  2978. crypto_pk_env_t *sign_skey_leg1=NULL;
  2979. const char *msg=NULL;
  2980. time_t now = time(NULL);
  2981. networkstatus_voter_info_t *voter;
  2982. networkstatus_t *vote=NULL, *v1=NULL, *v2=NULL, *v3=NULL, *con=NULL;
  2983. vote_routerstatus_t *vrs;
  2984. routerstatus_t *rs;
  2985. char *v1_text=NULL, *v2_text=NULL, *v3_text=NULL, *consensus_text=NULL, *cp;
  2986. smartlist_t *votes = smartlist_create();
  2987. /* For generating the two other consensuses. */
  2988. char *detached_text1=NULL, *detached_text2=NULL;
  2989. char *consensus_text2=NULL, *consensus_text3=NULL;
  2990. networkstatus_t *con2=NULL, *con3=NULL;
  2991. ns_detached_signatures_t *dsig1=NULL, *dsig2=NULL;
  2992. /* Parse certificates and keys. */
  2993. cert1 = authority_cert_parse_from_string(AUTHORITY_CERT_1, NULL);
  2994. test_assert(cert1);
  2995. test_assert(cert1->is_cross_certified);
  2996. cert2 = authority_cert_parse_from_string(AUTHORITY_CERT_2, NULL);
  2997. test_assert(cert2);
  2998. cert3 = authority_cert_parse_from_string(AUTHORITY_CERT_3, NULL);
  2999. test_assert(cert3);
  3000. sign_skey_1 = crypto_new_pk_env();
  3001. sign_skey_2 = crypto_new_pk_env();
  3002. sign_skey_3 = crypto_new_pk_env();
  3003. sign_skey_leg1 = pk_generate(4);
  3004. test_assert(!crypto_pk_read_private_key_from_string(sign_skey_1,
  3005. AUTHORITY_SIGNKEY_1));
  3006. test_assert(!crypto_pk_read_private_key_from_string(sign_skey_2,
  3007. AUTHORITY_SIGNKEY_2));
  3008. test_assert(!crypto_pk_read_private_key_from_string(sign_skey_3,
  3009. AUTHORITY_SIGNKEY_3));
  3010. test_assert(!crypto_pk_cmp_keys(sign_skey_1, cert1->signing_key));
  3011. test_assert(!crypto_pk_cmp_keys(sign_skey_2, cert2->signing_key));
  3012. /*
  3013. * Set up a vote; generate it; try to parse it.
  3014. */
  3015. vote = tor_malloc_zero(sizeof(networkstatus_t));
  3016. vote->type = NS_TYPE_VOTE;
  3017. vote->published = now;
  3018. vote->valid_after = now+1000;
  3019. vote->fresh_until = now+2000;
  3020. vote->valid_until = now+3000;
  3021. vote->vote_seconds = 100;
  3022. vote->dist_seconds = 200;
  3023. vote->supported_methods = smartlist_create();
  3024. smartlist_split_string(vote->supported_methods, "1 2 3", NULL, 0, -1);
  3025. vote->client_versions = tor_strdup("0.1.2.14,0.1.2.15");
  3026. vote->server_versions = tor_strdup("0.1.2.14,0.1.2.15,0.1.2.16");
  3027. vote->known_flags = smartlist_create();
  3028. smartlist_split_string(vote->known_flags,
  3029. "Authority Exit Fast Guard Running Stable V2Dir Valid",
  3030. 0, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  3031. vote->voters = smartlist_create();
  3032. voter = tor_malloc_zero(sizeof(networkstatus_voter_info_t));
  3033. voter->nickname = tor_strdup("Voter1");
  3034. voter->address = tor_strdup("1.2.3.4");
  3035. voter->addr = 0x01020304;
  3036. voter->dir_port = 80;
  3037. voter->or_port = 9000;
  3038. voter->contact = tor_strdup("voter@example.com");
  3039. crypto_pk_get_digest(cert1->identity_key, voter->identity_digest);
  3040. smartlist_add(vote->voters, voter);
  3041. vote->cert = authority_cert_dup(cert1);
  3042. vote->routerstatus_list = smartlist_create();
  3043. /* add the first routerstatus. */
  3044. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  3045. rs = &vrs->status;
  3046. vrs->version = tor_strdup("0.1.2.14");
  3047. rs->published_on = now-1500;
  3048. strlcpy(rs->nickname, "router2", sizeof(rs->nickname));
  3049. memset(rs->identity_digest, 3, DIGEST_LEN);
  3050. memset(rs->descriptor_digest, 78, DIGEST_LEN);
  3051. rs->addr = 0x99008801;
  3052. rs->or_port = 443;
  3053. rs->dir_port = 8000;
  3054. /* all flags but running cleared */
  3055. rs->is_running = 1;
  3056. smartlist_add(vote->routerstatus_list, vrs);
  3057. test_assert(router_add_to_routerlist(generate_ri_from_rs(vrs), &msg,0,0)>=0);
  3058. /* add the second routerstatus. */
  3059. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  3060. rs = &vrs->status;
  3061. vrs->version = tor_strdup("0.2.0.5");
  3062. rs->published_on = now-1000;
  3063. strlcpy(rs->nickname, "router1", sizeof(rs->nickname));
  3064. memset(rs->identity_digest, 5, DIGEST_LEN);
  3065. memset(rs->descriptor_digest, 77, DIGEST_LEN);
  3066. rs->addr = 0x99009901;
  3067. rs->or_port = 443;
  3068. rs->dir_port = 0;
  3069. rs->is_exit = rs->is_stable = rs->is_fast = rs->is_running =
  3070. rs->is_valid = rs->is_v2_dir = rs->is_possible_guard = 1;
  3071. smartlist_add(vote->routerstatus_list, vrs);
  3072. test_assert(router_add_to_routerlist(generate_ri_from_rs(vrs), &msg,0,0)>=0);
  3073. /* add the third routerstatus. */
  3074. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  3075. rs = &vrs->status;
  3076. vrs->version = tor_strdup("0.1.0.3");
  3077. rs->published_on = now-1000;
  3078. strlcpy(rs->nickname, "router3", sizeof(rs->nickname));
  3079. memset(rs->identity_digest, 33, DIGEST_LEN);
  3080. memset(rs->descriptor_digest, 79, DIGEST_LEN);
  3081. rs->addr = 0xAA009901;
  3082. rs->or_port = 400;
  3083. rs->dir_port = 9999;
  3084. rs->is_authority = rs->is_exit = rs->is_stable = rs->is_fast =
  3085. rs->is_running = rs->is_valid = rs->is_v2_dir = rs->is_possible_guard = 1;
  3086. smartlist_add(vote->routerstatus_list, vrs);
  3087. test_assert(router_add_to_routerlist(generate_ri_from_rs(vrs), &msg,0,0)>=0);
  3088. /* add a fourth routerstatus that is not running. */
  3089. vrs = tor_malloc_zero(sizeof(vote_routerstatus_t));
  3090. rs = &vrs->status;
  3091. vrs->version = tor_strdup("0.1.6.3");
  3092. rs->published_on = now-1000;
  3093. strlcpy(rs->nickname, "router4", sizeof(rs->nickname));
  3094. memset(rs->identity_digest, 34, DIGEST_LEN);
  3095. memset(rs->descriptor_digest, 48, DIGEST_LEN);
  3096. rs->addr = 0xC0000203;
  3097. rs->or_port = 500;
  3098. rs->dir_port = 1999;
  3099. /* Running flag (and others) cleared */
  3100. smartlist_add(vote->routerstatus_list, vrs);
  3101. test_assert(router_add_to_routerlist(generate_ri_from_rs(vrs), &msg,0,0)>=0);
  3102. /* dump the vote and try to parse it. */
  3103. v1_text = format_networkstatus_vote(sign_skey_1, vote);
  3104. test_assert(v1_text);
  3105. v1 = networkstatus_parse_vote_from_string(v1_text, NULL, NS_TYPE_VOTE);
  3106. test_assert(v1);
  3107. /* Make sure the parsed thing was right. */
  3108. test_eq(v1->type, NS_TYPE_VOTE);
  3109. test_eq(v1->published, vote->published);
  3110. test_eq(v1->valid_after, vote->valid_after);
  3111. test_eq(v1->fresh_until, vote->fresh_until);
  3112. test_eq(v1->valid_until, vote->valid_until);
  3113. test_eq(v1->vote_seconds, vote->vote_seconds);
  3114. test_eq(v1->dist_seconds, vote->dist_seconds);
  3115. test_streq(v1->client_versions, vote->client_versions);
  3116. test_streq(v1->server_versions, vote->server_versions);
  3117. test_assert(v1->voters && smartlist_len(v1->voters));
  3118. voter = smartlist_get(v1->voters, 0);
  3119. test_streq(voter->nickname, "Voter1");
  3120. test_streq(voter->address, "1.2.3.4");
  3121. test_eq(voter->addr, 0x01020304);
  3122. test_eq(voter->dir_port, 80);
  3123. test_eq(voter->or_port, 9000);
  3124. test_streq(voter->contact, "voter@example.com");
  3125. test_assert(v1->cert);
  3126. test_assert(!crypto_pk_cmp_keys(sign_skey_1, v1->cert->signing_key));
  3127. cp = smartlist_join_strings(v1->known_flags, ":", 0, NULL);
  3128. test_streq(cp, "Authority:Exit:Fast:Guard:Running:Stable:V2Dir:Valid");
  3129. tor_free(cp);
  3130. test_eq(smartlist_len(v1->routerstatus_list), 4);
  3131. /* Check the first routerstatus. */
  3132. vrs = smartlist_get(v1->routerstatus_list, 0);
  3133. rs = &vrs->status;
  3134. test_streq(vrs->version, "0.1.2.14");
  3135. test_eq(rs->published_on, now-1500);
  3136. test_streq(rs->nickname, "router2");
  3137. test_memeq(rs->identity_digest,
  3138. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  3139. DIGEST_LEN);
  3140. test_memeq(rs->descriptor_digest, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN);
  3141. test_eq(rs->addr, 0x99008801);
  3142. test_eq(rs->or_port, 443);
  3143. test_eq(rs->dir_port, 8000);
  3144. test_eq(vrs->flags, U64_LITERAL(16)); // no flags except "running"
  3145. /* Check the second routerstatus. */
  3146. vrs = smartlist_get(v1->routerstatus_list, 1);
  3147. rs = &vrs->status;
  3148. test_streq(vrs->version, "0.2.0.5");
  3149. test_eq(rs->published_on, now-1000);
  3150. test_streq(rs->nickname, "router1");
  3151. test_memeq(rs->identity_digest,
  3152. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  3153. DIGEST_LEN);
  3154. test_memeq(rs->descriptor_digest, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN);
  3155. test_eq(rs->addr, 0x99009901);
  3156. test_eq(rs->or_port, 443);
  3157. test_eq(rs->dir_port, 0);
  3158. test_eq(vrs->flags, U64_LITERAL(254)); // all flags except "authority."
  3159. /* Generate second vote. It disagrees on some of the times,
  3160. * and doesn't list versions, and knows some crazy flags */
  3161. vote->published = now+1;
  3162. vote->fresh_until = now+3005;
  3163. vote->dist_seconds = 300;
  3164. authority_cert_free(vote->cert);
  3165. vote->cert = authority_cert_dup(cert2);
  3166. tor_free(vote->client_versions);
  3167. tor_free(vote->server_versions);
  3168. voter = smartlist_get(vote->voters, 0);
  3169. tor_free(voter->nickname);
  3170. tor_free(voter->address);
  3171. voter->nickname = tor_strdup("Voter2");
  3172. voter->address = tor_strdup("2.3.4.5");
  3173. voter->addr = 0x02030405;
  3174. crypto_pk_get_digest(cert2->identity_key, voter->identity_digest);
  3175. smartlist_add(vote->known_flags, tor_strdup("MadeOfCheese"));
  3176. smartlist_add(vote->known_flags, tor_strdup("MadeOfTin"));
  3177. smartlist_sort_strings(vote->known_flags);
  3178. vrs = smartlist_get(vote->routerstatus_list, 2);
  3179. smartlist_del_keeporder(vote->routerstatus_list, 2);
  3180. tor_free(vrs->version);
  3181. tor_free(vrs);
  3182. vrs = smartlist_get(vote->routerstatus_list, 0);
  3183. vrs->status.is_fast = 1;
  3184. /* generate and parse. */
  3185. v2_text = format_networkstatus_vote(sign_skey_2, vote);
  3186. test_assert(v2_text);
  3187. v2 = networkstatus_parse_vote_from_string(v2_text, NULL, NS_TYPE_VOTE);
  3188. test_assert(v2);
  3189. /* Check that flags come out right.*/
  3190. cp = smartlist_join_strings(v2->known_flags, ":", 0, NULL);
  3191. test_streq(cp, "Authority:Exit:Fast:Guard:MadeOfCheese:MadeOfTin:"
  3192. "Running:Stable:V2Dir:Valid");
  3193. tor_free(cp);
  3194. vrs = smartlist_get(v2->routerstatus_list, 1);
  3195. /* 1023 - authority(1) - madeofcheese(16) - madeoftin(32) */
  3196. test_eq(vrs->flags, U64_LITERAL(974));
  3197. /* Generate the third vote. */
  3198. vote->published = now;
  3199. vote->fresh_until = now+2003;
  3200. vote->dist_seconds = 250;
  3201. authority_cert_free(vote->cert);
  3202. vote->cert = authority_cert_dup(cert3);
  3203. smartlist_add(vote->supported_methods, tor_strdup("4"));
  3204. vote->client_versions = tor_strdup("0.1.2.14,0.1.2.17");
  3205. vote->server_versions = tor_strdup("0.1.2.10,0.1.2.15,0.1.2.16");
  3206. voter = smartlist_get(vote->voters, 0);
  3207. tor_free(voter->nickname);
  3208. tor_free(voter->address);
  3209. voter->nickname = tor_strdup("Voter3");
  3210. voter->address = tor_strdup("3.4.5.6");
  3211. voter->addr = 0x03040506;
  3212. crypto_pk_get_digest(cert3->identity_key, voter->identity_digest);
  3213. /* This one has a legacy id. */
  3214. memset(voter->legacy_id_digest, (int)'A', DIGEST_LEN);
  3215. vrs = smartlist_get(vote->routerstatus_list, 0);
  3216. smartlist_del_keeporder(vote->routerstatus_list, 0);
  3217. tor_free(vrs->version);
  3218. tor_free(vrs);
  3219. vrs = smartlist_get(vote->routerstatus_list, 0);
  3220. memset(vrs->status.descriptor_digest, (int)'Z', DIGEST_LEN);
  3221. test_assert(router_add_to_routerlist(generate_ri_from_rs(vrs), &msg,0,0)>=0);
  3222. v3_text = format_networkstatus_vote(sign_skey_3, vote);
  3223. test_assert(v3_text);
  3224. v3 = networkstatus_parse_vote_from_string(v3_text, NULL, NS_TYPE_VOTE);
  3225. test_assert(v3);
  3226. /* Compute a consensus as voter 3. */
  3227. smartlist_add(votes, v3);
  3228. smartlist_add(votes, v1);
  3229. smartlist_add(votes, v2);
  3230. consensus_text = networkstatus_compute_consensus(votes, 3,
  3231. cert3->identity_key,
  3232. sign_skey_3,
  3233. "AAAAAAAAAAAAAAAAAAAA",
  3234. sign_skey_leg1);
  3235. test_assert(consensus_text);
  3236. con = networkstatus_parse_vote_from_string(consensus_text, NULL,
  3237. NS_TYPE_CONSENSUS);
  3238. test_assert(con);
  3239. //log_notice(LD_GENERAL, "<<%s>>\n<<%s>>\n<<%s>>\n",
  3240. // v1_text, v2_text, v3_text);
  3241. /* Check consensus contents. */
  3242. test_assert(con->type == NS_TYPE_CONSENSUS);
  3243. test_eq(con->published, 0); /* this field only appears in votes. */
  3244. test_eq(con->valid_after, now+1000);
  3245. test_eq(con->fresh_until, now+2003); /* median */
  3246. test_eq(con->valid_until, now+3000);
  3247. test_eq(con->vote_seconds, 100);
  3248. test_eq(con->dist_seconds, 250); /* median */
  3249. test_streq(con->client_versions, "0.1.2.14");
  3250. test_streq(con->server_versions, "0.1.2.15,0.1.2.16");
  3251. cp = smartlist_join_strings(v2->known_flags, ":", 0, NULL);
  3252. test_streq(cp, "Authority:Exit:Fast:Guard:MadeOfCheese:MadeOfTin:"
  3253. "Running:Stable:V2Dir:Valid");
  3254. tor_free(cp);
  3255. test_eq(4, smartlist_len(con->voters)); /*3 voters, 1 legacy key.*/
  3256. /* The voter id digests should be in this order. */
  3257. test_assert(memcmp(cert2->cache_info.identity_digest,
  3258. cert1->cache_info.identity_digest,DIGEST_LEN)<0);
  3259. test_assert(memcmp(cert1->cache_info.identity_digest,
  3260. cert3->cache_info.identity_digest,DIGEST_LEN)<0);
  3261. test_same_voter(smartlist_get(con->voters, 1),
  3262. smartlist_get(v2->voters, 0));
  3263. test_same_voter(smartlist_get(con->voters, 2),
  3264. smartlist_get(v1->voters, 0));
  3265. test_same_voter(smartlist_get(con->voters, 3),
  3266. smartlist_get(v3->voters, 0));
  3267. test_assert(!con->cert);
  3268. test_eq(2, smartlist_len(con->routerstatus_list));
  3269. /* There should be two listed routers: one with identity 3, one with
  3270. * identity 5. */
  3271. /* This one showed up in 2 digests. */
  3272. rs = smartlist_get(con->routerstatus_list, 0);
  3273. test_memeq(rs->identity_digest,
  3274. "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3",
  3275. DIGEST_LEN);
  3276. test_memeq(rs->descriptor_digest, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN);
  3277. test_assert(!rs->is_authority);
  3278. test_assert(!rs->is_exit);
  3279. test_assert(!rs->is_fast);
  3280. test_assert(!rs->is_possible_guard);
  3281. test_assert(!rs->is_stable);
  3282. test_assert(rs->is_running); /* If it wasn't running it wouldn't be here */
  3283. test_assert(!rs->is_v2_dir);
  3284. test_assert(!rs->is_valid);
  3285. test_assert(!rs->is_named);
  3286. /* XXXX check version */
  3287. rs = smartlist_get(con->routerstatus_list, 1);
  3288. /* This one showed up in 3 digests. Twice with ID 'M', once with 'Z'. */
  3289. test_memeq(rs->identity_digest,
  3290. "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5",
  3291. DIGEST_LEN);
  3292. test_streq(rs->nickname, "router1");
  3293. test_memeq(rs->descriptor_digest, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN);
  3294. test_eq(rs->published_on, now-1000);
  3295. test_eq(rs->addr, 0x99009901);
  3296. test_eq(rs->or_port, 443);
  3297. test_eq(rs->dir_port, 0);
  3298. test_assert(!rs->is_authority);
  3299. test_assert(rs->is_exit);
  3300. test_assert(rs->is_fast);
  3301. test_assert(rs->is_possible_guard);
  3302. test_assert(rs->is_stable);
  3303. test_assert(rs->is_running);
  3304. test_assert(rs->is_v2_dir);
  3305. test_assert(rs->is_valid);
  3306. test_assert(!rs->is_named);
  3307. /* XXXX check version */
  3308. // x231
  3309. // x213
  3310. /* Check signatures. the first voter is a pseudo-entry with a legacy key.
  3311. * The second one hasn't signed. The fourth one has signed: validate it. */
  3312. voter = smartlist_get(con->voters, 1);
  3313. test_assert(!voter->signature);
  3314. test_assert(!voter->good_signature);
  3315. test_assert(!voter->bad_signature);
  3316. voter = smartlist_get(con->voters, 3);
  3317. test_assert(voter->signature);
  3318. test_assert(!voter->good_signature);
  3319. test_assert(!voter->bad_signature);
  3320. test_assert(!networkstatus_check_voter_signature(con,
  3321. smartlist_get(con->voters, 3),
  3322. cert3));
  3323. test_assert(voter->signature);
  3324. test_assert(voter->good_signature);
  3325. test_assert(!voter->bad_signature);
  3326. {
  3327. const char *msg=NULL;
  3328. /* Compute the other two signed consensuses. */
  3329. smartlist_shuffle(votes);
  3330. consensus_text2 = networkstatus_compute_consensus(votes, 3,
  3331. cert2->identity_key,
  3332. sign_skey_2, NULL,NULL);
  3333. smartlist_shuffle(votes);
  3334. consensus_text3 = networkstatus_compute_consensus(votes, 3,
  3335. cert1->identity_key,
  3336. sign_skey_1, NULL,NULL);
  3337. test_assert(consensus_text2);
  3338. test_assert(consensus_text3);
  3339. con2 = networkstatus_parse_vote_from_string(consensus_text2, NULL,
  3340. NS_TYPE_CONSENSUS);
  3341. con3 = networkstatus_parse_vote_from_string(consensus_text3, NULL,
  3342. NS_TYPE_CONSENSUS);
  3343. test_assert(con2);
  3344. test_assert(con3);
  3345. /* All three should have the same digest. */
  3346. test_memeq(con->networkstatus_digest, con2->networkstatus_digest,
  3347. DIGEST_LEN);
  3348. test_memeq(con->networkstatus_digest, con3->networkstatus_digest,
  3349. DIGEST_LEN);
  3350. /* Extract a detached signature from con3. */
  3351. detached_text1 = networkstatus_get_detached_signatures(con3);
  3352. tor_assert(detached_text1);
  3353. /* Try to parse it. */
  3354. dsig1 = networkstatus_parse_detached_signatures(detached_text1, NULL);
  3355. tor_assert(dsig1);
  3356. /* Are parsed values as expected? */
  3357. test_eq(dsig1->valid_after, con3->valid_after);
  3358. test_eq(dsig1->fresh_until, con3->fresh_until);
  3359. test_eq(dsig1->valid_until, con3->valid_until);
  3360. test_memeq(dsig1->networkstatus_digest, con3->networkstatus_digest,
  3361. DIGEST_LEN);
  3362. test_eq(1, smartlist_len(dsig1->signatures));
  3363. voter = smartlist_get(dsig1->signatures, 0);
  3364. test_memeq(voter->identity_digest, cert1->cache_info.identity_digest,
  3365. DIGEST_LEN);
  3366. /* Try adding it to con2. */
  3367. detached_text2 = networkstatus_get_detached_signatures(con2);
  3368. test_eq(1, networkstatus_add_detached_signatures(con2, dsig1, &msg));
  3369. tor_free(detached_text2);
  3370. detached_text2 = networkstatus_get_detached_signatures(con2);
  3371. //printf("\n<%s>\n", detached_text2);
  3372. dsig2 = networkstatus_parse_detached_signatures(detached_text2, NULL);
  3373. test_assert(dsig2);
  3374. /*
  3375. printf("\n");
  3376. SMARTLIST_FOREACH(dsig2->signatures, networkstatus_voter_info_t *, vi, {
  3377. char hd[64];
  3378. base16_encode(hd, sizeof(hd), vi->identity_digest, DIGEST_LEN);
  3379. printf("%s\n", hd);
  3380. });
  3381. */
  3382. test_eq(2, smartlist_len(dsig2->signatures));
  3383. /* Try adding to con2 twice; verify that nothing changes. */
  3384. test_eq(0, networkstatus_add_detached_signatures(con2, dsig1, &msg));
  3385. /* Add to con. */
  3386. test_eq(2, networkstatus_add_detached_signatures(con, dsig2, &msg));
  3387. /* Check signatures */
  3388. test_assert(!networkstatus_check_voter_signature(con,
  3389. smartlist_get(con->voters, 1),
  3390. cert2));
  3391. test_assert(!networkstatus_check_voter_signature(con,
  3392. smartlist_get(con->voters, 2),
  3393. cert1));
  3394. }
  3395. done:
  3396. smartlist_free(votes);
  3397. tor_free(v1_text);
  3398. tor_free(v2_text);
  3399. tor_free(v3_text);
  3400. tor_free(consensus_text);
  3401. if (vote)
  3402. networkstatus_vote_free(vote);
  3403. if (v1)
  3404. networkstatus_vote_free(v1);
  3405. if (v2)
  3406. networkstatus_vote_free(v2);
  3407. if (v3)
  3408. networkstatus_vote_free(v3);
  3409. if (con)
  3410. networkstatus_vote_free(con);
  3411. if (sign_skey_1)
  3412. crypto_free_pk_env(sign_skey_1);
  3413. if (sign_skey_2)
  3414. crypto_free_pk_env(sign_skey_2);
  3415. if (sign_skey_3)
  3416. crypto_free_pk_env(sign_skey_3);
  3417. if (sign_skey_leg1)
  3418. crypto_free_pk_env(sign_skey_leg1);
  3419. if (cert1)
  3420. authority_cert_free(cert1);
  3421. if (cert2)
  3422. authority_cert_free(cert2);
  3423. if (cert3)
  3424. authority_cert_free(cert3);
  3425. tor_free(consensus_text2);
  3426. tor_free(consensus_text3);
  3427. tor_free(detached_text1);
  3428. tor_free(detached_text2);
  3429. if (con2)
  3430. networkstatus_vote_free(con2);
  3431. if (con3)
  3432. networkstatus_vote_free(con3);
  3433. if (dsig1)
  3434. ns_detached_signatures_free(dsig1);
  3435. if (dsig2)
  3436. ns_detached_signatures_free(dsig2);
  3437. }
  3438. /** Helper: Parse the exit policy string in <b>policy_str</b>, and make sure
  3439. * that policies_summarize() produces the string <b>expected_summary</b> from
  3440. * it. */
  3441. static void
  3442. test_policy_summary_helper(const char *policy_str,
  3443. const char *expected_summary)
  3444. {
  3445. config_line_t line;
  3446. smartlist_t *policy = smartlist_create();
  3447. char *summary = NULL;
  3448. int r;
  3449. line.key = (char*)"foo";
  3450. line.value = (char *)policy_str;
  3451. line.next = NULL;
  3452. r = policies_parse_exit_policy(&line, &policy, 0, NULL);
  3453. test_eq(r, 0);
  3454. summary = policy_summarize(policy);
  3455. test_assert(summary != NULL);
  3456. test_streq(summary, expected_summary);
  3457. done:
  3458. tor_free(summary);
  3459. if (policy)
  3460. addr_policy_list_free(policy);
  3461. }
  3462. /** Run unit tests for generating summary lines of exit policies */
  3463. static void
  3464. test_policies(void)
  3465. {
  3466. int i;
  3467. smartlist_t *policy = NULL, *policy2 = NULL;
  3468. addr_policy_t *p;
  3469. tor_addr_t tar;
  3470. config_line_t line;
  3471. smartlist_t *sm = NULL;
  3472. char *policy_str = NULL;
  3473. policy = smartlist_create();
  3474. p = router_parse_addr_policy_item_from_string("reject 192.168.0.0/16:*",-1);
  3475. test_assert(p != NULL);
  3476. test_eq(ADDR_POLICY_REJECT, p->policy_type);
  3477. tor_addr_from_ipv4h(&tar, 0xc0a80000u);
  3478. test_eq(0, tor_addr_compare(&p->addr, &tar, CMP_EXACT));
  3479. test_eq(16, p->maskbits);
  3480. test_eq(1, p->prt_min);
  3481. test_eq(65535, p->prt_max);
  3482. smartlist_add(policy, p);
  3483. test_assert(ADDR_POLICY_ACCEPTED ==
  3484. compare_addr_to_addr_policy(0x01020304u, 2, policy));
  3485. test_assert(ADDR_POLICY_PROBABLY_ACCEPTED ==
  3486. compare_addr_to_addr_policy(0, 2, policy));
  3487. test_assert(ADDR_POLICY_REJECTED ==
  3488. compare_addr_to_addr_policy(0xc0a80102, 2, policy));
  3489. policy2 = NULL;
  3490. test_assert(0 == policies_parse_exit_policy(NULL, &policy2, 1, NULL));
  3491. test_assert(policy2);
  3492. test_assert(!exit_policy_is_general_exit(policy));
  3493. test_assert(exit_policy_is_general_exit(policy2));
  3494. test_assert(!exit_policy_is_general_exit(NULL));
  3495. test_assert(cmp_addr_policies(policy, policy2));
  3496. test_assert(cmp_addr_policies(policy, NULL));
  3497. test_assert(!cmp_addr_policies(policy2, policy2));
  3498. test_assert(!cmp_addr_policies(NULL, NULL));
  3499. test_assert(!policy_is_reject_star(policy2));
  3500. test_assert(policy_is_reject_star(policy));
  3501. test_assert(policy_is_reject_star(NULL));
  3502. addr_policy_list_free(policy);
  3503. policy = NULL;
  3504. /* make sure compacting logic works. */
  3505. policy = NULL;
  3506. line.key = (char*)"foo";
  3507. line.value = (char*)"accept *:80,reject private:*,reject *:*";
  3508. line.next = NULL;
  3509. test_assert(0 == policies_parse_exit_policy(&line, &policy, 0, NULL));
  3510. test_assert(policy);
  3511. //test_streq(policy->string, "accept *:80");
  3512. //test_streq(policy->next->string, "reject *:*");
  3513. test_eq(smartlist_len(policy), 2);
  3514. /* test policy summaries */
  3515. /* check if we properly ignore private IP addresses */
  3516. test_policy_summary_helper("reject 192.168.0.0/16:*,"
  3517. "reject 0.0.0.0/8:*,"
  3518. "reject 10.0.0.0/8:*,"
  3519. "accept *:10-30,"
  3520. "accept *:90,"
  3521. "reject *:*",
  3522. "accept 10-30,90");
  3523. /* check all accept policies, and proper counting of rejects */
  3524. test_policy_summary_helper("reject 11.0.0.0/9:80,"
  3525. "reject 12.0.0.0/9:80,"
  3526. "reject 13.0.0.0/9:80,"
  3527. "reject 14.0.0.0/9:80,"
  3528. "accept *:*", "accept 1-65535");
  3529. test_policy_summary_helper("reject 11.0.0.0/9:80,"
  3530. "reject 12.0.0.0/9:80,"
  3531. "reject 13.0.0.0/9:80,"
  3532. "reject 14.0.0.0/9:80,"
  3533. "reject 15.0.0.0:81,"
  3534. "accept *:*", "accept 1-65535");
  3535. test_policy_summary_helper("reject 11.0.0.0/9:80,"
  3536. "reject 12.0.0.0/9:80,"
  3537. "reject 13.0.0.0/9:80,"
  3538. "reject 14.0.0.0/9:80,"
  3539. "reject 15.0.0.0:80,"
  3540. "accept *:*",
  3541. "reject 80");
  3542. /* no exits */
  3543. test_policy_summary_helper("accept 11.0.0.0/9:80,"
  3544. "reject *:*",
  3545. "reject 1-65535");
  3546. /* port merging */
  3547. test_policy_summary_helper("accept *:80,"
  3548. "accept *:81,"
  3549. "accept *:100-110,"
  3550. "accept *:111,"
  3551. "reject *:*",
  3552. "accept 80-81,100-111");
  3553. /* border ports */
  3554. test_policy_summary_helper("accept *:1,"
  3555. "accept *:3,"
  3556. "accept *:65535,"
  3557. "reject *:*",
  3558. "accept 1,3,65535");
  3559. /* holes */
  3560. test_policy_summary_helper("accept *:1,"
  3561. "accept *:3,"
  3562. "accept *:5,"
  3563. "accept *:7,"
  3564. "reject *:*",
  3565. "accept 1,3,5,7");
  3566. test_policy_summary_helper("reject *:1,"
  3567. "reject *:3,"
  3568. "reject *:5,"
  3569. "reject *:7,"
  3570. "accept *:*",
  3571. "reject 1,3,5,7");
  3572. /* truncation ports */
  3573. sm = smartlist_create();
  3574. for (i=1; i<2000; i+=2) {
  3575. char buf[POLICY_BUF_LEN];
  3576. tor_snprintf(buf, sizeof(buf), "reject *:%d", i);
  3577. smartlist_add(sm, tor_strdup(buf));
  3578. }
  3579. smartlist_add(sm, tor_strdup("accept *:*"));
  3580. policy_str = smartlist_join_strings(sm, ",", 0, NULL);
  3581. test_policy_summary_helper( policy_str,
  3582. "accept 2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,"
  3583. "46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,"
  3584. "92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,"
  3585. "130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,"
  3586. "166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,"
  3587. "202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,"
  3588. "238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,"
  3589. "274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,"
  3590. "310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,"
  3591. "346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,"
  3592. "382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,"
  3593. "418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,"
  3594. "454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,"
  3595. "490,492,494,496,498,500,502,504,506,508,510,512,514,516,518,520,522");
  3596. done:
  3597. if (policy)
  3598. addr_policy_list_free(policy);
  3599. if (policy2)
  3600. addr_policy_list_free(policy2);
  3601. tor_free(policy_str);
  3602. if (sm) {
  3603. SMARTLIST_FOREACH(sm, char *, s, tor_free(s));
  3604. smartlist_free(sm);
  3605. }
  3606. }
  3607. /** Run unit tests for basic rendezvous functions. */
  3608. static void
  3609. test_rend_fns(void)
  3610. {
  3611. char address1[] = "fooaddress.onion";
  3612. char address2[] = "aaaaaaaaaaaaaaaa.onion";
  3613. char address3[] = "fooaddress.exit";
  3614. char address4[] = "www.torproject.org";
  3615. rend_service_descriptor_t *d1 =
  3616. tor_malloc_zero(sizeof(rend_service_descriptor_t));
  3617. rend_service_descriptor_t *d2 = NULL;
  3618. char *encoded = NULL;
  3619. size_t len;
  3620. time_t now;
  3621. int i;
  3622. crypto_pk_env_t *pk1 = pk_generate(0), *pk2 = pk_generate(1);
  3623. /* Test unversioned (v0) descriptor */
  3624. d1->pk = crypto_pk_dup_key(pk1);
  3625. now = time(NULL);
  3626. d1->timestamp = now;
  3627. d1->version = 0;
  3628. d1->intro_nodes = smartlist_create();
  3629. for (i = 0; i < 3; i++) {
  3630. rend_intro_point_t *intro = tor_malloc_zero(sizeof(rend_intro_point_t));
  3631. intro->extend_info = tor_malloc_zero(sizeof(extend_info_t));
  3632. crypto_rand(intro->extend_info->identity_digest, DIGEST_LEN);
  3633. intro->extend_info->nickname[0] = '$';
  3634. base16_encode(intro->extend_info->nickname+1, HEX_DIGEST_LEN+1,
  3635. intro->extend_info->identity_digest, DIGEST_LEN);
  3636. smartlist_add(d1->intro_nodes, intro);
  3637. }
  3638. test_assert(! rend_encode_service_descriptor(d1, pk1, &encoded, &len));
  3639. d2 = rend_parse_service_descriptor(encoded, len);
  3640. test_assert(d2);
  3641. test_assert(!crypto_pk_cmp_keys(d1->pk, d2->pk));
  3642. test_eq(d2->timestamp, now);
  3643. test_eq(d2->version, 0);
  3644. test_eq(d2->protocols, 1<<2);
  3645. test_eq(smartlist_len(d2->intro_nodes), 3);
  3646. for (i = 0; i < 3; i++) {
  3647. rend_intro_point_t *intro1 = smartlist_get(d1->intro_nodes, i);
  3648. rend_intro_point_t *intro2 = smartlist_get(d2->intro_nodes, i);
  3649. test_streq(intro1->extend_info->nickname,
  3650. intro2->extend_info->nickname);
  3651. }
  3652. test_assert(BAD_HOSTNAME == parse_extended_hostname(address1));
  3653. test_assert(ONION_HOSTNAME == parse_extended_hostname(address2));
  3654. test_assert(EXIT_HOSTNAME == parse_extended_hostname(address3));
  3655. test_assert(NORMAL_HOSTNAME == parse_extended_hostname(address4));
  3656. crypto_free_pk_env(pk1);
  3657. crypto_free_pk_env(pk2);
  3658. pk1 = pk2 = NULL;
  3659. rend_service_descriptor_free(d1);
  3660. rend_service_descriptor_free(d2);
  3661. d1 = d2 = NULL;
  3662. done:
  3663. if (pk1)
  3664. crypto_free_pk_env(pk1);
  3665. if (pk2)
  3666. crypto_free_pk_env(pk2);
  3667. if (d1)
  3668. rend_service_descriptor_free(d1);
  3669. if (d2)
  3670. rend_service_descriptor_free(d2);
  3671. tor_free(encoded);
  3672. }
  3673. /** Run AES performance benchmarks. */
  3674. static void
  3675. bench_aes(void)
  3676. {
  3677. int len, i;
  3678. char *b1, *b2;
  3679. crypto_cipher_env_t *c;
  3680. struct timeval start, end;
  3681. const int iters = 100000;
  3682. uint64_t nsec;
  3683. c = crypto_new_cipher_env();
  3684. crypto_cipher_generate_key(c);
  3685. crypto_cipher_encrypt_init_cipher(c);
  3686. for (len = 1; len <= 8192; len *= 2) {
  3687. b1 = tor_malloc_zero(len);
  3688. b2 = tor_malloc_zero(len);
  3689. tor_gettimeofday(&start);
  3690. for (i = 0; i < iters; ++i) {
  3691. crypto_cipher_encrypt(c, b1, b2, len);
  3692. }
  3693. tor_gettimeofday(&end);
  3694. tor_free(b1);
  3695. tor_free(b2);
  3696. nsec = (uint64_t) tv_udiff(&start,&end);
  3697. nsec *= 1000;
  3698. nsec /= (iters*len);
  3699. printf("%d bytes: "U64_FORMAT" nsec per byte\n", len,
  3700. U64_PRINTF_ARG(nsec));
  3701. }
  3702. crypto_free_cipher_env(c);
  3703. }
  3704. /** Run digestmap_t performance benchmarks. */
  3705. static void
  3706. bench_dmap(void)
  3707. {
  3708. smartlist_t *sl = smartlist_create();
  3709. smartlist_t *sl2 = smartlist_create();
  3710. struct timeval start, end, pt2, pt3, pt4;
  3711. const int iters = 10000;
  3712. const int elts = 4000;
  3713. const int fpostests = 1000000;
  3714. char d[20];
  3715. int i,n=0, fp = 0;
  3716. digestmap_t *dm = digestmap_new();
  3717. digestset_t *ds = digestset_new(elts);
  3718. for (i = 0; i < elts; ++i) {
  3719. crypto_rand(d, 20);
  3720. smartlist_add(sl, tor_memdup(d, 20));
  3721. }
  3722. for (i = 0; i < elts; ++i) {
  3723. crypto_rand(d, 20);
  3724. smartlist_add(sl2, tor_memdup(d, 20));
  3725. }
  3726. printf("nbits=%d\n", ds->mask+1);
  3727. tor_gettimeofday(&start);
  3728. for (i = 0; i < iters; ++i) {
  3729. SMARTLIST_FOREACH(sl, const char *, cp, digestmap_set(dm, cp, (void*)1));
  3730. }
  3731. tor_gettimeofday(&pt2);
  3732. for (i = 0; i < iters; ++i) {
  3733. SMARTLIST_FOREACH(sl, const char *, cp, digestmap_get(dm, cp));
  3734. SMARTLIST_FOREACH(sl2, const char *, cp, digestmap_get(dm, cp));
  3735. }
  3736. tor_gettimeofday(&pt3);
  3737. for (i = 0; i < iters; ++i) {
  3738. SMARTLIST_FOREACH(sl, const char *, cp, digestset_add(ds, cp));
  3739. }
  3740. tor_gettimeofday(&pt4);
  3741. for (i = 0; i < iters; ++i) {
  3742. SMARTLIST_FOREACH(sl, const char *, cp, n += digestset_isin(ds, cp));
  3743. SMARTLIST_FOREACH(sl2, const char *, cp, n += digestset_isin(ds, cp));
  3744. }
  3745. tor_gettimeofday(&end);
  3746. for (i = 0; i < fpostests; ++i) {
  3747. crypto_rand(d, 20);
  3748. if (digestset_isin(ds, d)) ++fp;
  3749. }
  3750. printf("%ld\n",(unsigned long)tv_udiff(&start, &pt2));
  3751. printf("%ld\n",(unsigned long)tv_udiff(&pt2, &pt3));
  3752. printf("%ld\n",(unsigned long)tv_udiff(&pt3, &pt4));
  3753. printf("%ld\n",(unsigned long)tv_udiff(&pt4, &end));
  3754. printf("-- %d\n", n);
  3755. printf("++ %f\n", fp/(double)fpostests);
  3756. digestmap_free(dm, NULL);
  3757. digestset_free(ds);
  3758. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  3759. SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp));
  3760. smartlist_free(sl);
  3761. smartlist_free(sl2);
  3762. }
  3763. /** Run unittests for memory pool allocator */
  3764. static void
  3765. test_util_mempool(void)
  3766. {
  3767. mp_pool_t *pool = NULL;
  3768. smartlist_t *allocated = NULL;
  3769. int i;
  3770. pool = mp_pool_new(1, 100);
  3771. test_assert(pool);
  3772. test_assert(pool->new_chunk_capacity >= 100);
  3773. test_assert(pool->item_alloc_size >= sizeof(void*)+1);
  3774. mp_pool_destroy(pool);
  3775. pool = NULL;
  3776. pool = mp_pool_new(241, 2500);
  3777. test_assert(pool);
  3778. test_assert(pool->new_chunk_capacity >= 10);
  3779. test_assert(pool->item_alloc_size >= sizeof(void*)+241);
  3780. test_eq(pool->item_alloc_size & 0x03, 0);
  3781. test_assert(pool->new_chunk_capacity < 60);
  3782. allocated = smartlist_create();
  3783. for (i = 0; i < 20000; ++i) {
  3784. if (smartlist_len(allocated) < 20 || crypto_rand_int(2)) {
  3785. void *m = mp_pool_get(pool);
  3786. memset(m, 0x09, 241);
  3787. smartlist_add(allocated, m);
  3788. //printf("%d: %p\n", i, m);
  3789. //mp_pool_assert_ok(pool);
  3790. } else {
  3791. int idx = crypto_rand_int(smartlist_len(allocated));
  3792. void *m = smartlist_get(allocated, idx);
  3793. //printf("%d: free %p\n", i, m);
  3794. smartlist_del(allocated, idx);
  3795. mp_pool_release(m);
  3796. //mp_pool_assert_ok(pool);
  3797. }
  3798. if (crypto_rand_int(777)==0)
  3799. mp_pool_clean(pool, 1, 1);
  3800. if (i % 777)
  3801. mp_pool_assert_ok(pool);
  3802. }
  3803. done:
  3804. if (allocated) {
  3805. SMARTLIST_FOREACH(allocated, void *, m, mp_pool_release(m));
  3806. mp_pool_assert_ok(pool);
  3807. mp_pool_clean(pool, 0, 0);
  3808. mp_pool_assert_ok(pool);
  3809. smartlist_free(allocated);
  3810. }
  3811. if (pool)
  3812. mp_pool_destroy(pool);
  3813. }
  3814. /** Run unittests for memory area allocator */
  3815. static void
  3816. test_util_memarea(void)
  3817. {
  3818. memarea_t *area = memarea_new();
  3819. char *p1, *p2, *p3, *p1_orig;
  3820. void *malloced_ptr = NULL;
  3821. int i;
  3822. test_assert(area);
  3823. p1_orig = p1 = memarea_alloc(area,64);
  3824. p2 = memarea_alloc_zero(area,52);
  3825. p3 = memarea_alloc(area,11);
  3826. test_assert(memarea_owns_ptr(area, p1));
  3827. test_assert(memarea_owns_ptr(area, p2));
  3828. test_assert(memarea_owns_ptr(area, p3));
  3829. /* Make sure we left enough space. */
  3830. test_assert(p1+64 <= p2);
  3831. test_assert(p2+52 <= p3);
  3832. /* Make sure we aligned. */
  3833. test_eq(((uintptr_t)p1) % sizeof(void*), 0);
  3834. test_eq(((uintptr_t)p2) % sizeof(void*), 0);
  3835. test_eq(((uintptr_t)p3) % sizeof(void*), 0);
  3836. test_assert(!memarea_owns_ptr(area, p3+8192));
  3837. test_assert(!memarea_owns_ptr(area, p3+30));
  3838. test_assert(tor_mem_is_zero(p2, 52));
  3839. /* Make sure we don't overalign. */
  3840. p1 = memarea_alloc(area, 1);
  3841. p2 = memarea_alloc(area, 1);
  3842. test_eq(p1+sizeof(void*), p2);
  3843. {
  3844. malloced_ptr = tor_malloc(64);
  3845. test_assert(!memarea_owns_ptr(area, malloced_ptr));
  3846. tor_free(malloced_ptr);
  3847. }
  3848. /* memarea_memdup */
  3849. {
  3850. malloced_ptr = tor_malloc(64);
  3851. crypto_rand((char*)malloced_ptr, 64);
  3852. p1 = memarea_memdup(area, malloced_ptr, 64);
  3853. test_assert(p1 != malloced_ptr);
  3854. test_memeq(p1, malloced_ptr, 64);
  3855. tor_free(malloced_ptr);
  3856. }
  3857. /* memarea_strdup. */
  3858. p1 = memarea_strdup(area,"");
  3859. p2 = memarea_strdup(area, "abcd");
  3860. test_assert(p1);
  3861. test_assert(p2);
  3862. test_streq(p1, "");
  3863. test_streq(p2, "abcd");
  3864. /* memarea_strndup. */
  3865. {
  3866. const char *s = "Ad ogni porta batte la morte e grida: il nome!";
  3867. /* (From Turandot, act 3.) */
  3868. size_t len = strlen(s);
  3869. p1 = memarea_strndup(area, s, 1000);
  3870. p2 = memarea_strndup(area, s, 10);
  3871. test_streq(p1, s);
  3872. test_assert(p2 >= p1 + len + 1);
  3873. test_memeq(s, p2, 10);
  3874. test_eq(p2[10], '\0');
  3875. p3 = memarea_strndup(area, s, len);
  3876. test_streq(p3, s);
  3877. p3 = memarea_strndup(area, s, len-1);
  3878. test_memeq(s, p3, len-1);
  3879. test_eq(p3[len-1], '\0');
  3880. }
  3881. memarea_clear(area);
  3882. p1 = memarea_alloc(area, 1);
  3883. test_eq(p1, p1_orig);
  3884. memarea_clear(area);
  3885. /* Check for running over an area's size. */
  3886. for (i = 0; i < 512; ++i) {
  3887. p1 = memarea_alloc(area, crypto_rand_int(5)+1);
  3888. test_assert(memarea_owns_ptr(area, p1));
  3889. }
  3890. memarea_assert_ok(area);
  3891. /* Make sure we can allocate a too-big object. */
  3892. p1 = memarea_alloc_zero(area, 9000);
  3893. p2 = memarea_alloc_zero(area, 16);
  3894. test_assert(memarea_owns_ptr(area, p1));
  3895. test_assert(memarea_owns_ptr(area, p2));
  3896. done:
  3897. memarea_drop_all(area);
  3898. tor_free(malloced_ptr);
  3899. }
  3900. /** Run unit tests for utility functions to get file names relative to
  3901. * the data directory. */
  3902. static void
  3903. test_util_datadir(void)
  3904. {
  3905. char buf[1024];
  3906. char *f = NULL;
  3907. f = get_datadir_fname(NULL);
  3908. test_streq(f, temp_dir);
  3909. tor_free(f);
  3910. f = get_datadir_fname("state");
  3911. tor_snprintf(buf, sizeof(buf), "%s"PATH_SEPARATOR"state", temp_dir);
  3912. test_streq(f, buf);
  3913. tor_free(f);
  3914. f = get_datadir_fname2("cache", "thingy");
  3915. tor_snprintf(buf, sizeof(buf),
  3916. "%s"PATH_SEPARATOR"cache"PATH_SEPARATOR"thingy", temp_dir);
  3917. test_streq(f, buf);
  3918. tor_free(f);
  3919. f = get_datadir_fname2_suffix("cache", "thingy", ".foo");
  3920. tor_snprintf(buf, sizeof(buf),
  3921. "%s"PATH_SEPARATOR"cache"PATH_SEPARATOR"thingy.foo", temp_dir);
  3922. test_streq(f, buf);
  3923. tor_free(f);
  3924. f = get_datadir_fname_suffix("cache", ".foo");
  3925. tor_snprintf(buf, sizeof(buf), "%s"PATH_SEPARATOR"cache.foo",
  3926. temp_dir);
  3927. test_streq(f, buf);
  3928. done:
  3929. tor_free(f);
  3930. }
  3931. /** Test AES-CTR encryption and decryption with IV. */
  3932. static void
  3933. test_crypto_aes_iv(void)
  3934. {
  3935. crypto_cipher_env_t *cipher;
  3936. char *plain, *encrypted1, *encrypted2, *decrypted1, *decrypted2;
  3937. char plain_1[1], plain_15[15], plain_16[16], plain_17[17];
  3938. char key1[16], key2[16];
  3939. ssize_t encrypted_size, decrypted_size;
  3940. plain = tor_malloc(4095);
  3941. encrypted1 = tor_malloc(4095 + 1 + 16);
  3942. encrypted2 = tor_malloc(4095 + 1 + 16);
  3943. decrypted1 = tor_malloc(4095 + 1);
  3944. decrypted2 = tor_malloc(4095 + 1);
  3945. crypto_rand(plain, 4095);
  3946. crypto_rand(key1, 16);
  3947. crypto_rand(key2, 16);
  3948. crypto_rand(plain_1, 1);
  3949. crypto_rand(plain_15, 15);
  3950. crypto_rand(plain_16, 16);
  3951. crypto_rand(plain_17, 17);
  3952. key1[0] = key2[0] + 128; /* Make sure that contents are different. */
  3953. /* Encrypt and decrypt with the same key. */
  3954. cipher = crypto_create_init_cipher(key1, 1);
  3955. encrypted_size = crypto_cipher_encrypt_with_iv(cipher, encrypted1, 16 + 4095,
  3956. plain, 4095);
  3957. crypto_free_cipher_env(cipher);
  3958. cipher = NULL;
  3959. test_eq(encrypted_size, 16 + 4095);
  3960. tor_assert(encrypted_size > 0); /* This is obviously true, since 4111 is
  3961. * greater than 0, but its truth is not
  3962. * obvious to all analysis tools. */
  3963. cipher = crypto_create_init_cipher(key1, 0);
  3964. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 4095,
  3965. encrypted1, encrypted_size);
  3966. crypto_free_cipher_env(cipher);
  3967. cipher = NULL;
  3968. test_eq(decrypted_size, 4095);
  3969. tor_assert(decrypted_size > 0);
  3970. test_memeq(plain, decrypted1, 4095);
  3971. /* Encrypt a second time (with a new random initialization vector). */
  3972. cipher = crypto_create_init_cipher(key1, 1);
  3973. encrypted_size = crypto_cipher_encrypt_with_iv(cipher, encrypted2, 16 + 4095,
  3974. plain, 4095);
  3975. crypto_free_cipher_env(cipher);
  3976. cipher = NULL;
  3977. test_eq(encrypted_size, 16 + 4095);
  3978. tor_assert(encrypted_size > 0);
  3979. cipher = crypto_create_init_cipher(key1, 0);
  3980. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted2, 4095,
  3981. encrypted2, encrypted_size);
  3982. crypto_free_cipher_env(cipher);
  3983. cipher = NULL;
  3984. test_eq(decrypted_size, 4095);
  3985. tor_assert(decrypted_size > 0);
  3986. test_memeq(plain, decrypted2, 4095);
  3987. test_memneq(encrypted1, encrypted2, encrypted_size);
  3988. /* Decrypt with the wrong key. */
  3989. cipher = crypto_create_init_cipher(key2, 0);
  3990. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted2, 4095,
  3991. encrypted1, encrypted_size);
  3992. crypto_free_cipher_env(cipher);
  3993. cipher = NULL;
  3994. test_memneq(plain, decrypted2, encrypted_size);
  3995. /* Alter the initialization vector. */
  3996. encrypted1[0] += 42;
  3997. cipher = crypto_create_init_cipher(key1, 0);
  3998. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 4095,
  3999. encrypted1, encrypted_size);
  4000. crypto_free_cipher_env(cipher);
  4001. cipher = NULL;
  4002. test_memneq(plain, decrypted2, 4095);
  4003. /* Special length case: 1. */
  4004. cipher = crypto_create_init_cipher(key1, 1);
  4005. encrypted_size = crypto_cipher_encrypt_with_iv(cipher, encrypted1, 16 + 1,
  4006. plain_1, 1);
  4007. crypto_free_cipher_env(cipher);
  4008. cipher = NULL;
  4009. test_eq(encrypted_size, 16 + 1);
  4010. tor_assert(encrypted_size > 0);
  4011. cipher = crypto_create_init_cipher(key1, 0);
  4012. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 1,
  4013. encrypted1, encrypted_size);
  4014. crypto_free_cipher_env(cipher);
  4015. cipher = NULL;
  4016. test_eq(decrypted_size, 1);
  4017. tor_assert(decrypted_size > 0);
  4018. test_memeq(plain_1, decrypted1, 1);
  4019. /* Special length case: 15. */
  4020. cipher = crypto_create_init_cipher(key1, 1);
  4021. encrypted_size = crypto_cipher_encrypt_with_iv(cipher, encrypted1, 16 + 15,
  4022. plain_15, 15);
  4023. crypto_free_cipher_env(cipher);
  4024. cipher = NULL;
  4025. test_eq(encrypted_size, 16 + 15);
  4026. tor_assert(encrypted_size > 0);
  4027. cipher = crypto_create_init_cipher(key1, 0);
  4028. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 15,
  4029. encrypted1, encrypted_size);
  4030. crypto_free_cipher_env(cipher);
  4031. cipher = NULL;
  4032. test_eq(decrypted_size, 15);
  4033. tor_assert(decrypted_size > 0);
  4034. test_memeq(plain_15, decrypted1, 15);
  4035. /* Special length case: 16. */
  4036. cipher = crypto_create_init_cipher(key1, 1);
  4037. encrypted_size = crypto_cipher_encrypt_with_iv(cipher, encrypted1, 16 + 16,
  4038. plain_16, 16);
  4039. crypto_free_cipher_env(cipher);
  4040. cipher = NULL;
  4041. test_eq(encrypted_size, 16 + 16);
  4042. tor_assert(encrypted_size > 0);
  4043. cipher = crypto_create_init_cipher(key1, 0);
  4044. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 16,
  4045. encrypted1, encrypted_size);
  4046. crypto_free_cipher_env(cipher);
  4047. cipher = NULL;
  4048. test_eq(decrypted_size, 16);
  4049. tor_assert(decrypted_size > 0);
  4050. test_memeq(plain_16, decrypted1, 16);
  4051. /* Special length case: 17. */
  4052. cipher = crypto_create_init_cipher(key1, 1);
  4053. encrypted_size = crypto_cipher_encrypt_with_iv(cipher, encrypted1, 16 + 17,
  4054. plain_17, 17);
  4055. crypto_free_cipher_env(cipher);
  4056. cipher = NULL;
  4057. test_eq(encrypted_size, 16 + 17);
  4058. tor_assert(encrypted_size > 0);
  4059. cipher = crypto_create_init_cipher(key1, 0);
  4060. decrypted_size = crypto_cipher_decrypt_with_iv(cipher, decrypted1, 17,
  4061. encrypted1, encrypted_size);
  4062. test_eq(decrypted_size, 17);
  4063. tor_assert(decrypted_size > 0);
  4064. test_memeq(plain_17, decrypted1, 17);
  4065. done:
  4066. /* Free memory. */
  4067. tor_free(plain);
  4068. tor_free(encrypted1);
  4069. tor_free(encrypted2);
  4070. tor_free(decrypted1);
  4071. tor_free(decrypted2);
  4072. if (cipher)
  4073. crypto_free_cipher_env(cipher);
  4074. }
  4075. /** Test base32 decoding. */
  4076. static void
  4077. test_crypto_base32_decode(void)
  4078. {
  4079. char plain[60], encoded[96 + 1], decoded[60];
  4080. int res;
  4081. crypto_rand(plain, 60);
  4082. /* Encode and decode a random string. */
  4083. base32_encode(encoded, 96 + 1, plain, 60);
  4084. res = base32_decode(decoded, 60, encoded, 96);
  4085. test_eq(res, 0);
  4086. test_memeq(plain, decoded, 60);
  4087. /* Encode, uppercase, and decode a random string. */
  4088. base32_encode(encoded, 96 + 1, plain, 60);
  4089. tor_strupper(encoded);
  4090. res = base32_decode(decoded, 60, encoded, 96);
  4091. test_eq(res, 0);
  4092. test_memeq(plain, decoded, 60);
  4093. /* Change encoded string and decode. */
  4094. if (encoded[0] == 'A' || encoded[0] == 'a')
  4095. encoded[0] = 'B';
  4096. else
  4097. encoded[0] = 'A';
  4098. res = base32_decode(decoded, 60, encoded, 96);
  4099. test_eq(res, 0);
  4100. test_memneq(plain, decoded, 60);
  4101. /* Bad encodings. */
  4102. encoded[0] = '!';
  4103. res = base32_decode(decoded, 60, encoded, 96);
  4104. test_assert(res < 0);
  4105. done:
  4106. ;
  4107. }
  4108. /** Test encoding and parsing of v2 rendezvous service descriptors. */
  4109. static void
  4110. test_rend_fns_v2(void)
  4111. {
  4112. rend_service_descriptor_t *generated = NULL, *parsed = NULL;
  4113. char service_id[DIGEST_LEN];
  4114. char service_id_base32[REND_SERVICE_ID_LEN_BASE32+1];
  4115. const char *next_desc;
  4116. smartlist_t *descs = smartlist_create();
  4117. char computed_desc_id[DIGEST_LEN];
  4118. char parsed_desc_id[DIGEST_LEN];
  4119. crypto_pk_env_t *pk1 = NULL, *pk2 = NULL;
  4120. time_t now;
  4121. char *intro_points_encrypted = NULL;
  4122. size_t intro_points_size;
  4123. size_t encoded_size;
  4124. int i;
  4125. pk1 = pk_generate(0);
  4126. pk2 = pk_generate(1);
  4127. generated = tor_malloc_zero(sizeof(rend_service_descriptor_t));
  4128. generated->pk = crypto_pk_dup_key(pk1);
  4129. crypto_pk_get_digest(generated->pk, service_id);
  4130. base32_encode(service_id_base32, REND_SERVICE_ID_LEN_BASE32+1,
  4131. service_id, REND_SERVICE_ID_LEN);
  4132. now = time(NULL);
  4133. generated->timestamp = now;
  4134. generated->version = 2;
  4135. generated->protocols = 42;
  4136. generated->intro_nodes = smartlist_create();
  4137. for (i = 0; i < 3; i++) {
  4138. rend_intro_point_t *intro = tor_malloc_zero(sizeof(rend_intro_point_t));
  4139. crypto_pk_env_t *okey = pk_generate(2 + i);
  4140. intro->extend_info = tor_malloc_zero(sizeof(extend_info_t));
  4141. intro->extend_info->onion_key = okey;
  4142. crypto_pk_get_digest(intro->extend_info->onion_key,
  4143. intro->extend_info->identity_digest);
  4144. //crypto_rand(info->identity_digest, DIGEST_LEN); /* Would this work? */
  4145. intro->extend_info->nickname[0] = '$';
  4146. base16_encode(intro->extend_info->nickname + 1,
  4147. sizeof(intro->extend_info->nickname) - 1,
  4148. intro->extend_info->identity_digest, DIGEST_LEN);
  4149. /* Does not cover all IP addresses. */
  4150. tor_addr_from_ipv4h(&intro->extend_info->addr, crypto_rand_int(65536));
  4151. intro->extend_info->port = crypto_rand_int(65536);
  4152. intro->intro_key = crypto_pk_dup_key(pk2);
  4153. smartlist_add(generated->intro_nodes, intro);
  4154. }
  4155. test_assert(rend_encode_v2_descriptors(descs, generated, now, 0,
  4156. REND_NO_AUTH, NULL, NULL) > 0);
  4157. test_assert(rend_compute_v2_desc_id(computed_desc_id, service_id_base32,
  4158. NULL, now, 0) == 0);
  4159. test_memeq(((rend_encoded_v2_service_descriptor_t *)
  4160. smartlist_get(descs, 0))->desc_id, computed_desc_id, DIGEST_LEN);
  4161. test_assert(rend_parse_v2_service_descriptor(&parsed, parsed_desc_id,
  4162. &intro_points_encrypted,
  4163. &intro_points_size,
  4164. &encoded_size,
  4165. &next_desc,
  4166. ((rend_encoded_v2_service_descriptor_t *)
  4167. smartlist_get(descs, 0))->desc_str) == 0);
  4168. test_assert(parsed);
  4169. test_memeq(((rend_encoded_v2_service_descriptor_t *)
  4170. smartlist_get(descs, 0))->desc_id, parsed_desc_id, DIGEST_LEN);
  4171. test_eq(rend_parse_introduction_points(parsed, intro_points_encrypted,
  4172. intro_points_size), 3);
  4173. test_assert(!crypto_pk_cmp_keys(generated->pk, parsed->pk));
  4174. test_eq(parsed->timestamp, now);
  4175. test_eq(parsed->version, 2);
  4176. test_eq(parsed->protocols, 42);
  4177. test_eq(smartlist_len(parsed->intro_nodes), 3);
  4178. for (i = 0; i < smartlist_len(parsed->intro_nodes); i++) {
  4179. rend_intro_point_t *par_intro = smartlist_get(parsed->intro_nodes, i),
  4180. *gen_intro = smartlist_get(generated->intro_nodes, i);
  4181. extend_info_t *par_info = par_intro->extend_info;
  4182. extend_info_t *gen_info = gen_intro->extend_info;
  4183. test_assert(!crypto_pk_cmp_keys(gen_info->onion_key, par_info->onion_key));
  4184. test_memeq(gen_info->identity_digest, par_info->identity_digest,
  4185. DIGEST_LEN);
  4186. test_streq(gen_info->nickname, par_info->nickname);
  4187. test_assert(tor_addr_eq(&gen_info->addr, &par_info->addr));
  4188. test_eq(gen_info->port, par_info->port);
  4189. }
  4190. rend_service_descriptor_free(parsed);
  4191. rend_service_descriptor_free(generated);
  4192. parsed = generated = NULL;
  4193. done:
  4194. if (descs) {
  4195. for (i = 0; i < smartlist_len(descs); i++)
  4196. rend_encoded_v2_service_descriptor_free(smartlist_get(descs, i));
  4197. smartlist_free(descs);
  4198. }
  4199. if (parsed)
  4200. rend_service_descriptor_free(parsed);
  4201. if (generated)
  4202. rend_service_descriptor_free(generated);
  4203. if (pk1)
  4204. crypto_free_pk_env(pk1);
  4205. if (pk2)
  4206. crypto_free_pk_env(pk2);
  4207. tor_free(intro_points_encrypted);
  4208. }
  4209. /** Run unit tests for GeoIP code. */
  4210. static void
  4211. test_geoip(void)
  4212. {
  4213. int i, j;
  4214. time_t now = time(NULL);
  4215. char *s = NULL;
  4216. /* Populate the DB a bit. Add these in order, since we can't do the final
  4217. * 'sort' step. These aren't very good IP addresses, but they're perfectly
  4218. * fine uint32_t values. */
  4219. test_eq(0, geoip_parse_entry("10,50,AB"));
  4220. test_eq(0, geoip_parse_entry("52,90,XY"));
  4221. test_eq(0, geoip_parse_entry("95,100,AB"));
  4222. test_eq(0, geoip_parse_entry("\"105\",\"140\",\"ZZ\""));
  4223. test_eq(0, geoip_parse_entry("\"150\",\"190\",\"XY\""));
  4224. test_eq(0, geoip_parse_entry("\"200\",\"250\",\"AB\""));
  4225. /* We should have 3 countries: ab, xy, zz. */
  4226. test_eq(3, geoip_get_n_countries());
  4227. /* Make sure that country ID actually works. */
  4228. #define NAMEFOR(x) geoip_get_country_name(geoip_get_country_by_ip(x))
  4229. test_streq("ab", NAMEFOR(32));
  4230. test_streq("??", NAMEFOR(5));
  4231. test_streq("??", NAMEFOR(51));
  4232. test_streq("xy", NAMEFOR(150));
  4233. test_streq("xy", NAMEFOR(190));
  4234. test_streq("??", NAMEFOR(2000));
  4235. #undef NAMEFOR
  4236. get_options()->BridgeRelay = 1;
  4237. get_options()->BridgeRecordUsageByCountry = 1;
  4238. /* Put 9 observations in AB... */
  4239. for (i=32; i < 40; ++i)
  4240. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now-7200);
  4241. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, 225, now-7200);
  4242. /* and 3 observations in XY, several times. */
  4243. for (j=0; j < 10; ++j)
  4244. for (i=52; i < 55; ++i)
  4245. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now-3600);
  4246. /* and 17 observations in ZZ... */
  4247. for (i=110; i < 127; ++i)
  4248. geoip_note_client_seen(GEOIP_CLIENT_CONNECT, i, now);
  4249. s = geoip_get_client_history(now+5*24*60*60, GEOIP_CLIENT_CONNECT);
  4250. test_assert(s);
  4251. test_streq("zz=24,ab=16,xy=8", s);
  4252. tor_free(s);
  4253. /* Now clear out all the AB observations. */
  4254. geoip_remove_old_clients(now-6000);
  4255. s = geoip_get_client_history(now+5*24*60*60, GEOIP_CLIENT_CONNECT);
  4256. test_assert(s);
  4257. test_streq("zz=24,xy=8", s);
  4258. done:
  4259. tor_free(s);
  4260. }
  4261. /** For test_array. Declare an CLI-invocable off-by-default function in the
  4262. * unit tests, with function name and user-visible name <b>x</b>*/
  4263. #define DISABLED(x) { #x, x, 0, 0, 0 }
  4264. /** For test_array. Declare an CLI-invocable unit test function, with function
  4265. * name test_<b>x</b>(), and user-visible name <b>x</b> */
  4266. #define ENT(x) { #x, test_ ## x, 0, 0, 1 }
  4267. /** For test_array. Declare an CLI-invocable unit test function, with function
  4268. * name test_<b>x</b>_<b>y</b>(), and user-visible name
  4269. * <b>x</b>/<b>y</b>. This function will be treated as a subentry of <b>x</b>,
  4270. * so that invoking <b>x</b> from the CLI invokes this test too. */
  4271. #define SUBENT(x,y) { #x "/" #y, test_ ## x ## _ ## y, 1, 0, 1 }
  4272. /** An array of functions and information for all the unit tests we can run. */
  4273. static struct {
  4274. const char *test_name; /**< How does the user refer to this test from the
  4275. * command line? */
  4276. void (*test_fn)(void); /**< What function is called to run this test? */
  4277. int is_subent; /**< Is this a subentry of a bigger set of related tests? */
  4278. int selected; /**< Are we planning to run this one? */
  4279. int is_default; /**< If the user doesn't say what tests they want, do they
  4280. * get this function by default? */
  4281. } test_array[] = {
  4282. ENT(buffers),
  4283. ENT(crypto),
  4284. SUBENT(crypto, rng),
  4285. SUBENT(crypto, aes),
  4286. SUBENT(crypto, sha),
  4287. SUBENT(crypto, pk),
  4288. SUBENT(crypto, dh),
  4289. SUBENT(crypto, s2k),
  4290. SUBENT(crypto, aes_iv),
  4291. SUBENT(crypto, base32_decode),
  4292. ENT(util),
  4293. SUBENT(util, ip6_helpers),
  4294. SUBENT(util, gzip),
  4295. SUBENT(util, datadir),
  4296. SUBENT(util, smartlist_basic),
  4297. SUBENT(util, smartlist_strings),
  4298. SUBENT(util, smartlist_overlap),
  4299. SUBENT(util, smartlist_digests),
  4300. SUBENT(util, smartlist_join),
  4301. SUBENT(util, bitarray),
  4302. SUBENT(util, digestset),
  4303. SUBENT(util, mempool),
  4304. SUBENT(util, memarea),
  4305. SUBENT(util, strmap),
  4306. SUBENT(util, control_formats),
  4307. SUBENT(util, pqueue),
  4308. SUBENT(util, mmap),
  4309. SUBENT(util, threads),
  4310. SUBENT(util, order_functions),
  4311. SUBENT(util, sscanf),
  4312. ENT(onion_handshake),
  4313. ENT(dir_format),
  4314. ENT(dirutil),
  4315. ENT(v3_networkstatus),
  4316. ENT(policies),
  4317. ENT(rend_fns),
  4318. SUBENT(rend_fns, v2),
  4319. ENT(geoip),
  4320. DISABLED(bench_aes),
  4321. DISABLED(bench_dmap),
  4322. { NULL, NULL, 0, 0, 0 },
  4323. };
  4324. static void syntax(void) ATTR_NORETURN;
  4325. /** Print a syntax usage message, and exit.*/
  4326. static void
  4327. syntax(void)
  4328. {
  4329. int i;
  4330. printf("Syntax:\n"
  4331. " test [-v|--verbose] [--warn|--notice|--info|--debug]\n"
  4332. " [testname...]\n"
  4333. "Recognized tests are:\n");
  4334. for (i = 0; test_array[i].test_name; ++i) {
  4335. printf(" %s\n", test_array[i].test_name);
  4336. }
  4337. exit(0);
  4338. }
  4339. /** Main entry point for unit test code: parse the command line, and run
  4340. * some unit tests. */
  4341. int
  4342. main(int c, char**v)
  4343. {
  4344. or_options_t *options;
  4345. char *errmsg = NULL;
  4346. int i;
  4347. int verbose = 0, any_selected = 0;
  4348. int loglevel = LOG_ERR;
  4349. #ifdef USE_DMALLOC
  4350. {
  4351. int r = CRYPTO_set_mem_ex_functions(_tor_malloc, _tor_realloc, _tor_free);
  4352. tor_assert(r);
  4353. }
  4354. #endif
  4355. update_approx_time(time(NULL));
  4356. options = options_new();
  4357. tor_threads_init();
  4358. init_logging();
  4359. for (i = 1; i < c; ++i) {
  4360. if (!strcmp(v[i], "-v") || !strcmp(v[i], "--verbose"))
  4361. verbose++;
  4362. else if (!strcmp(v[i], "--warn"))
  4363. loglevel = LOG_WARN;
  4364. else if (!strcmp(v[i], "--notice"))
  4365. loglevel = LOG_NOTICE;
  4366. else if (!strcmp(v[i], "--info"))
  4367. loglevel = LOG_INFO;
  4368. else if (!strcmp(v[i], "--debug"))
  4369. loglevel = LOG_DEBUG;
  4370. else if (!strcmp(v[i], "--help") || !strcmp(v[i], "-h") || v[i][0] == '-')
  4371. syntax();
  4372. else {
  4373. int j, found=0;
  4374. for (j = 0; test_array[j].test_name; ++j) {
  4375. if (!strcmp(v[i], test_array[j].test_name) ||
  4376. (test_array[j].is_subent &&
  4377. !strcmpstart(test_array[j].test_name, v[i]) &&
  4378. test_array[j].test_name[strlen(v[i])] == '/') ||
  4379. (v[i][0] == '=' && !strcmp(v[i]+1, test_array[j].test_name))) {
  4380. test_array[j].selected = 1;
  4381. any_selected = 1;
  4382. found = 1;
  4383. }
  4384. }
  4385. if (!found) {
  4386. printf("Unknown test: %s\n", v[i]);
  4387. syntax();
  4388. }
  4389. }
  4390. }
  4391. if (!any_selected) {
  4392. for (i = 0; test_array[i].test_name; ++i) {
  4393. test_array[i].selected = test_array[i].is_default;
  4394. }
  4395. }
  4396. {
  4397. log_severity_list_t s;
  4398. memset(&s, 0, sizeof(s));
  4399. set_log_severity_config(loglevel, LOG_ERR, &s);
  4400. add_stream_log(&s, "", fileno(stdout));
  4401. }
  4402. options->command = CMD_RUN_UNITTESTS;
  4403. crypto_global_init(0);
  4404. rep_hist_init();
  4405. network_init();
  4406. setup_directory();
  4407. options_init(options);
  4408. options->DataDirectory = tor_strdup(temp_dir);
  4409. if (set_options(options, &errmsg) < 0) {
  4410. printf("Failed to set initial options: %s\n", errmsg);
  4411. tor_free(errmsg);
  4412. return 1;
  4413. }
  4414. crypto_seed_rng(1);
  4415. atexit(remove_directory);
  4416. printf("Running Tor unit tests on %s\n", get_uname());
  4417. for (i = 0; test_array[i].test_name; ++i) {
  4418. if (!test_array[i].selected)
  4419. continue;
  4420. if (!test_array[i].is_subent) {
  4421. printf("\n============================== %s\n",test_array[i].test_name);
  4422. } else if (test_array[i].is_subent && verbose) {
  4423. printf("\n%s", test_array[i].test_name);
  4424. }
  4425. test_array[i].test_fn();
  4426. }
  4427. puts("");
  4428. free_pregenerated_keys();
  4429. #ifdef USE_DMALLOC
  4430. tor_free_all(0);
  4431. dmalloc_log_unfreed();
  4432. #endif
  4433. if (have_failed)
  4434. return 1;
  4435. else
  4436. return 0;
  4437. }