test.c 167 KB

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