config.c 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson. */
  4. /* See LICENSE for licensing information */
  5. /* $Id$ */
  6. const char config_c_id[] = \
  7. "$Id$";
  8. /**
  9. * \file config.c
  10. * \brief Code to parse and interpret configuration files.
  11. **/
  12. #define CONFIG_PRIVATE
  13. #include "or.h"
  14. #ifdef MS_WINDOWS
  15. #include <shlobj.h>
  16. #endif
  17. /** Enumeration of types which option values can take */
  18. typedef enum config_type_t {
  19. CONFIG_TYPE_STRING = 0, /**< An arbitrary string. */
  20. CONFIG_TYPE_UINT, /**< A non-negative integer less than MAX_INT */
  21. CONFIG_TYPE_INTERVAL, /**< A number of seconds, with optional units*/
  22. CONFIG_TYPE_MEMUNIT, /**< A number of bytes, with optional units*/
  23. CONFIG_TYPE_DOUBLE, /**< A floating-point value */
  24. CONFIG_TYPE_BOOL, /**< A boolean value, expressed as 0 or 1. */
  25. CONFIG_TYPE_ISOTIME, /**< An ISO-formated time relative to GMT. */
  26. CONFIG_TYPE_CSV, /**< A list of strings, separated by commas and
  27. * optional whitespace. */
  28. CONFIG_TYPE_LINELIST, /**< Uninterpreted config lines */
  29. CONFIG_TYPE_LINELIST_S, /**< Uninterpreted, context-sensitive config lines,
  30. * mixed with other keywords. */
  31. CONFIG_TYPE_LINELIST_V, /**< Catch-all "virtual" option to summarize
  32. * context-sensitive config lines when fetching.
  33. */
  34. CONFIG_TYPE_OBSOLETE, /**< Obsolete (ignored) option. */
  35. } config_type_t;
  36. /** An abbreviation for a configuration option allowed on the command line. */
  37. typedef struct config_abbrev_t {
  38. const char *abbreviated;
  39. const char *full;
  40. int commandline_only;
  41. int warn;
  42. } config_abbrev_t;
  43. /* Handy macro for declaring "In the config file or on the command line,
  44. * you can abbreviate <b>tok</b>s as <b>tok</b>". */
  45. #define PLURAL(tok) { #tok, #tok "s", 0, 0 }
  46. /* A list of command-line abbreviations. */
  47. static config_abbrev_t _option_abbrevs[] = {
  48. PLURAL(ExitNode),
  49. PLURAL(EntryNode),
  50. PLURAL(ExcludeNode),
  51. PLURAL(FirewallPort),
  52. PLURAL(LongLivedPort),
  53. PLURAL(HiddenServiceNode),
  54. PLURAL(HiddenServiceExcludeNode),
  55. PLURAL(NumCpu),
  56. PLURAL(RendNode),
  57. PLURAL(RendExcludeNode),
  58. PLURAL(StrictEntryNode),
  59. PLURAL(StrictExitNode),
  60. { "l", "Log", 1, 0},
  61. { "AllowUnverifiedNodes", "AllowInvalidNodes", 0, 0},
  62. { "AutomapHostSuffixes", "AutomapHostsSuffixes", 0, 0},
  63. { "AutomapHostOnResolve", "AutomapHostsOnResolve", 0, 0},
  64. { "BandwidthRateBytes", "BandwidthRate", 0, 0},
  65. { "BandwidthBurstBytes", "BandwidthBurst", 0, 0},
  66. { "DirFetchPostPeriod", "StatusFetchPeriod", 0, 0},
  67. { "MaxConn", "ConnLimit", 0, 1},
  68. { "ORBindAddress", "ORListenAddress", 0, 0},
  69. { "DirBindAddress", "DirListenAddress", 0, 0},
  70. { "SocksBindAddress", "SocksListenAddress", 0, 0},
  71. { "UseHelperNodes", "UseEntryGuards", 0, 0},
  72. { "NumHelperNodes", "NumEntryGuards", 0, 0},
  73. { "UseEntryNodes", "UseEntryGuards", 0, 0},
  74. { "NumEntryNodes", "NumEntryGuards", 0, 0},
  75. { "ResolvConf", "ServerDNSResolvConfFile", 0, 1},
  76. { "SearchDomains", "ServerDNSSearchDomains", 0, 1},
  77. { NULL, NULL, 0, 0},
  78. };
  79. /* A list of state-file abbreviations, for compatibility. */
  80. static config_abbrev_t _state_abbrevs[] = {
  81. { "AccountingBytesReadInterval", "AccountingBytesReadInInterval", 0, 0 },
  82. { "HelperNode", "EntryGuard", 0, 0 },
  83. { "HelperNodeDownSince", "EntryGuardDownSince", 0, 0 },
  84. { "HelperNodeUnlistedSince", "EntryGuardUnlistedSince", 0, 0 },
  85. { "EntryNode", "EntryGuard", 0, 0 },
  86. { "EntryNodeDownSince", "EntryGuardDownSince", 0, 0 },
  87. { "EntryNodeUnlistedSince", "EntryGuardUnlistedSince", 0, 0 },
  88. { NULL, NULL, 0, 0},
  89. };
  90. #undef PLURAL
  91. /** A variable allowed in the configuration file or on the command line. */
  92. typedef struct config_var_t {
  93. const char *name; /**< The full keyword (case insensitive). */
  94. config_type_t type; /**< How to interpret the type and turn it into a
  95. * value. */
  96. off_t var_offset; /**< Offset of the corresponding member of or_options_t. */
  97. const char *initvalue; /**< String (or null) describing initial value. */
  98. } config_var_t;
  99. /** An entry for config_vars: "The option <b>name</b> has type
  100. * CONFIG_TYPE_<b>conftype</b>, and corresponds to
  101. * or_options_t.<b>member</b>"
  102. */
  103. #define VAR(name,conftype,member,initvalue) \
  104. { name, CONFIG_TYPE_ ## conftype, STRUCT_OFFSET(or_options_t, member), \
  105. initvalue }
  106. /** As VAR, but the option name and member name are the same. */
  107. #define V(member,conftype,initvalue) \
  108. VAR(#member, conftype, member, initvalue)
  109. /** An entry for config_vars: "The option <b>name</b> is obsolete." */
  110. #define OBSOLETE(name) { name, CONFIG_TYPE_OBSOLETE, 0, NULL }
  111. /** Array of configuration options. Until we disallow nonstandard
  112. * abbreviations, order is significant, since the first matching option will
  113. * be chosen first.
  114. */
  115. static config_var_t _option_vars[] = {
  116. OBSOLETE("AccountingMaxKB"),
  117. V(AccountingMax, MEMUNIT, "0 bytes"),
  118. V(AccountingStart, STRING, NULL),
  119. V(Address, STRING, NULL),
  120. V(AllowInvalidNodes, CSV, "middle,rendezvous"),
  121. V(AllowNonRFC953Hostnames, BOOL, "0"),
  122. V(AssumeReachable, BOOL, "0"),
  123. V(AuthDirBadExit, LINELIST, NULL),
  124. V(AuthDirInvalid, LINELIST, NULL),
  125. V(AuthDirReject, LINELIST, NULL),
  126. V(AuthDirRejectUnlisted, BOOL, "0"),
  127. V(AuthDirListBadExits, BOOL, "0"),
  128. VAR("AuthoritativeDirectory", BOOL, AuthoritativeDir, "0"),
  129. V(AutomapHostsOnResolve, BOOL, "0"),
  130. V(AutomapHostsSuffixes, CSV, ".onion,.exit"),
  131. V(AvoidDiskWrites, BOOL, "0"),
  132. V(BandwidthBurst, MEMUNIT, "6 MB"),
  133. V(BandwidthRate, MEMUNIT, "3 MB"),
  134. V(BridgeAuthoritativeDir, BOOL, "0"),
  135. VAR("Bridge", LINELIST, Bridges, NULL),
  136. V(CircuitBuildTimeout, INTERVAL, "1 minute"),
  137. V(CircuitIdleTimeout, INTERVAL, "1 hour"),
  138. V(ClientDNSRejectInternalAddresses, BOOL,"1"),
  139. V(ClientOnly, BOOL, "0"),
  140. V(ConnLimit, UINT, "1000"),
  141. V(ConstrainedSockets, BOOL, "0"),
  142. V(ConstrainedSockSize, MEMUNIT, "8192"),
  143. V(ContactInfo, STRING, NULL),
  144. V(ControlListenAddress, LINELIST, NULL),
  145. V(ControlPort, UINT, "0"),
  146. V(ControlSocket, LINELIST, NULL),
  147. V(CookieAuthentication, BOOL, "0"),
  148. V(CookieAuthFileGroupReadable, BOOL, "0"),
  149. V(CookieAuthFile, STRING, NULL),
  150. V(DataDirectory, STRING, NULL),
  151. OBSOLETE("DebugLogFile"),
  152. V(DirAllowPrivateAddresses, BOOL, NULL),
  153. V(DirListenAddress, LINELIST, NULL),
  154. OBSOLETE("DirFetchPeriod"),
  155. V(DirPolicy, LINELIST, NULL),
  156. V(DirPort, UINT, "0"),
  157. OBSOLETE("DirPostPeriod"),
  158. VAR("DirServer", LINELIST, DirServers, NULL),
  159. V(DNSPort, UINT, "0"),
  160. V(DNSListenAddress, LINELIST, NULL),
  161. V(DownloadExtraInfo, BOOL, "0"),
  162. V(EnforceDistinctSubnets, BOOL, "1"),
  163. V(EntryNodes, STRING, NULL),
  164. V(ExcludeNodes, STRING, NULL),
  165. V(ExitNodes, STRING, NULL),
  166. V(ExitPolicy, LINELIST, NULL),
  167. V(ExitPolicyRejectPrivate, BOOL, "1"),
  168. V(FascistFirewall, BOOL, "0"),
  169. V(FirewallPorts, CSV, ""),
  170. V(FastFirstHopPK, BOOL, "1"),
  171. V(FetchServerDescriptors, BOOL, "1"),
  172. V(FetchHidServDescriptors, BOOL, "1"),
  173. V(FetchUselessDescriptors, BOOL, "0"),
  174. V(Group, STRING, NULL),
  175. V(HardwareAccel, BOOL, "0"),
  176. V(HashedControlPassword, STRING, NULL),
  177. VAR("HiddenServiceDir", LINELIST_S, RendConfigLines, NULL),
  178. VAR("HiddenServiceExcludeNodes", LINELIST_S, RendConfigLines, NULL),
  179. VAR("HiddenServiceNodes", LINELIST_S, RendConfigLines, NULL),
  180. VAR("HiddenServiceOptions",LINELIST_V, RendConfigLines, NULL),
  181. VAR("HiddenServicePort", LINELIST_S, RendConfigLines, NULL),
  182. V(HSAuthoritativeDir, BOOL, "0"),
  183. V(HSAuthorityRecordStats, BOOL, "0"),
  184. V(HttpProxy, STRING, NULL),
  185. V(HttpProxyAuthenticator, STRING, NULL),
  186. V(HttpsProxy, STRING, NULL),
  187. V(HttpsProxyAuthenticator, STRING, NULL),
  188. OBSOLETE("IgnoreVersion"),
  189. V(KeepalivePeriod, INTERVAL, "5 minutes"),
  190. VAR("Log", LINELIST, Logs, NULL),
  191. OBSOLETE("LinkPadding"),
  192. OBSOLETE("LogLevel"),
  193. OBSOLETE("LogFile"),
  194. V(LongLivedPorts, CSV,
  195. "21,22,706,1863,5050,5190,5222,5223,6667,6697,8300"),
  196. VAR("MapAddress", LINELIST, AddressMap, NULL),
  197. V(MaxAdvertisedBandwidth, MEMUNIT, "1 GB"),
  198. V(MaxCircuitDirtiness, INTERVAL, "10 minutes"),
  199. V(MaxOnionsPending, UINT, "100"),
  200. OBSOLETE("MonthlyAccountingStart"),
  201. V(MyFamily, STRING, NULL),
  202. V(NewCircuitPeriod, INTERVAL, "30 seconds"),
  203. VAR("NamingAuthoritativeDirectory",BOOL, NamingAuthoritativeDir, "0"),
  204. V(NatdListenAddress, LINELIST, NULL),
  205. V(NatdPort, UINT, "0"),
  206. V(Nickname, STRING, NULL),
  207. V(NoPublish, BOOL, "0"),
  208. VAR("NodeFamily", LINELIST, NodeFamilies, NULL),
  209. V(NumCpus, UINT, "1"),
  210. V(NumEntryGuards, UINT, "3"),
  211. V(ORListenAddress, LINELIST, NULL),
  212. V(ORPort, UINT, "0"),
  213. V(OutboundBindAddress, STRING, NULL),
  214. OBSOLETE("PathlenCoinWeight"),
  215. V(PidFile, STRING, NULL),
  216. V(PreferTunneledDirConns, BOOL, "0"),
  217. V(ProtocolWarnings, BOOL, "0"),
  218. V(PublishServerDescriptor, CSV, "v1,v2"),
  219. V(PublishHidServDescriptors, BOOL, "1"),
  220. V(ReachableAddresses, LINELIST, NULL),
  221. V(ReachableDirAddresses, LINELIST, NULL),
  222. V(ReachableORAddresses, LINELIST, NULL),
  223. V(RecommendedVersions, LINELIST, NULL),
  224. V(RecommendedClientVersions, LINELIST, NULL),
  225. V(RecommendedServerVersions, LINELIST, NULL),
  226. V(RedirectExit, LINELIST, NULL),
  227. V(RelayBandwidthBurst, MEMUNIT, "0"),
  228. V(RelayBandwidthRate, MEMUNIT, "0"),
  229. V(RendExcludeNodes, STRING, NULL),
  230. V(RendNodes, STRING, NULL),
  231. V(RendPostPeriod, INTERVAL, "1 hour"),
  232. V(RephistTrackTime, INTERVAL, "24 hours"),
  233. OBSOLETE("RouterFile"),
  234. V(RunAsDaemon, BOOL, "0"),
  235. V(RunTesting, BOOL, "0"),
  236. V(SafeLogging, BOOL, "1"),
  237. V(SafeSocks, BOOL, "0"),
  238. V(ServerDNSAllowNonRFC953Hostnames, BOOL,"0"),
  239. V(ServerDNSDetectHijacking, BOOL, "1"),
  240. V(ServerDNSResolvConfFile, STRING, NULL),
  241. V(ServerDNSSearchDomains, BOOL, "0"),
  242. V(ServerDNSTestAddresses, CSV,
  243. "www.google.com,www.mit.edu,www.yahoo.com,www.slashdot.org"),
  244. V(ShutdownWaitLength, INTERVAL, "30 seconds"),
  245. V(SocksListenAddress, LINELIST, NULL),
  246. V(SocksPolicy, LINELIST, NULL),
  247. V(SocksPort, UINT, "9050"),
  248. V(SocksTimeout, INTERVAL, "2 minutes"),
  249. OBSOLETE("StatusFetchPeriod"),
  250. V(StrictEntryNodes, BOOL, "0"),
  251. V(StrictExitNodes, BOOL, "0"),
  252. OBSOLETE("SysLog"),
  253. V(TestSocks, BOOL, "0"),
  254. V(TestVia, STRING, NULL),
  255. V(TrackHostExits, CSV, NULL),
  256. V(TrackHostExitsExpire, INTERVAL, "30 minutes"),
  257. OBSOLETE("TrafficShaping"),
  258. V(TransListenAddress, LINELIST, NULL),
  259. V(TransPort, UINT, "0"),
  260. V(TunnelDirConns, BOOL, "0"),
  261. V(UpdateBridgesFromAuthority, BOOL, "0"),
  262. V(UseBridges, BOOL, "0"),
  263. V(UseEntryGuards, BOOL, "1"),
  264. V(User, STRING, NULL),
  265. VAR("V1AuthoritativeDirectory",BOOL, V1AuthoritativeDir, "0"),
  266. VAR("V2AuthoritativeDirectory",BOOL, V2AuthoritativeDir, "0"),
  267. VAR("V3AuthoritativeDirectory",BOOL, V3AuthoritativeDir, "0"),
  268. V(V3AuthVotingInterval, INTERVAL, "1 hour"),
  269. V(V3AuthVoteDelay, INTERVAL, "5 minutes"),
  270. V(V3AuthDistDelay, INTERVAL, "5 minutes"),
  271. V(V3AuthNIntervalsValid, UINT, "3"),
  272. VAR("VersioningAuthoritativeDirectory",BOOL,VersioningAuthoritativeDir, "0"),
  273. V(VirtualAddrNetwork, STRING, "127.192.0.0/10"),
  274. VAR("__AllDirActionsPrivate", BOOL, AllDirActionsPrivate, "0"),
  275. VAR("__DisablePredictedCircuits",BOOL,DisablePredictedCircuits, "0"),
  276. VAR("__LeaveStreamsUnattached",BOOL, LeaveStreamsUnattached, "0"),
  277. { NULL, CONFIG_TYPE_OBSOLETE, 0, NULL }
  278. };
  279. #undef VAR
  280. #define VAR(name,conftype,member,initvalue) \
  281. { name, CONFIG_TYPE_ ## conftype, STRUCT_OFFSET(or_state_t, member), \
  282. initvalue }
  283. static config_var_t _state_vars[] = {
  284. V(AccountingBytesReadInInterval, MEMUNIT, NULL),
  285. V(AccountingBytesWrittenInInterval, MEMUNIT, NULL),
  286. V(AccountingExpectedUsage, MEMUNIT, NULL),
  287. V(AccountingIntervalStart, ISOTIME, NULL),
  288. V(AccountingSecondsActive, INTERVAL, NULL),
  289. VAR("EntryGuard", LINELIST_S, EntryGuards, NULL),
  290. VAR("EntryGuardDownSince", LINELIST_S, EntryGuards, NULL),
  291. VAR("EntryGuardUnlistedSince", LINELIST_S, EntryGuards, NULL),
  292. VAR("EntryGuardAddedBy", LINELIST_S, EntryGuards, NULL),
  293. V(EntryGuards, LINELIST_V, NULL),
  294. V(BWHistoryReadEnds, ISOTIME, NULL),
  295. V(BWHistoryReadInterval, UINT, "900"),
  296. V(BWHistoryReadValues, CSV, ""),
  297. V(BWHistoryWriteEnds, ISOTIME, NULL),
  298. V(BWHistoryWriteInterval, UINT, "900"),
  299. V(BWHistoryWriteValues, CSV, ""),
  300. V(TorVersion, STRING, NULL),
  301. V(LastRotatedOnionKey, ISOTIME, NULL),
  302. V(LastWritten, ISOTIME, NULL),
  303. { NULL, CONFIG_TYPE_OBSOLETE, 0, NULL }
  304. };
  305. #undef VAR
  306. #undef V
  307. #undef OBSOLETE
  308. /** Represents an English description of a configuration variable; used when
  309. * generating configuration file comments. */
  310. typedef struct config_var_description_t {
  311. const char *name;
  312. const char *description;
  313. } config_var_description_t;
  314. static config_var_description_t options_description[] = {
  315. /* ==== general options */
  316. { "AvoidDiskWrites", "If non-zero, try to write to disk less frequently than"
  317. " we would otherwise." },
  318. { "BandwidthRate", "A token bucket limits the average incoming bandwidth on "
  319. "this node to the specified number of bytes per second." },
  320. { "BandwidthBurst", "Limit the maximum token buffer size (also known as "
  321. "burst) to the given number of bytes." },
  322. { "ConnLimit", "Maximum number of simultaneous sockets allowed." },
  323. { "ConstrainedSockets", "Shrink tx and rx buffers for sockets to avoid "
  324. "system limits on vservers and related environments. See man page for "
  325. "more information regarding this option." },
  326. { "ConstrainedSockSize", "Limit socket buffers to this size when "
  327. "ConstrainedSockets is enabled." },
  328. /* ControlListenAddress */
  329. { "ControlPort", "If set, Tor will accept connections from the same machine "
  330. "(localhost only) on this port, and allow those connections to control "
  331. "the Tor process using the Tor Control Protocol (described in"
  332. "control-spec.txt).", },
  333. { "CookieAuthentication", "If this option is set to 1, don't allow any "
  334. "connections to the control port except when the connecting process "
  335. "can read a file that Tor creates in its data directory." },
  336. { "DataDirectory", "Store working data, state, keys, and caches here." },
  337. { "DirServer", "Tor only trusts directories signed with one of these "
  338. "servers' keys. Used to override the standard list of directory "
  339. "authorities." },
  340. /* { "FastFirstHopPK", "" }, */
  341. /* FetchServerDescriptors, FetchHidServDescriptors,
  342. * FetchUselessDescriptors */
  343. { "Group", "On startup, setgid to this group." },
  344. { "HardwareAccel", "If set, Tor tries to use hardware crypto accelerators "
  345. "when it can." },
  346. /* HashedControlPassword */
  347. { "HTTPProxy", "Force Tor to make all HTTP directory requests through this "
  348. "host:port (or host:80 if port is not set)." },
  349. { "HTTPProxyAuthenticator", "A username:password pair to be used with "
  350. "HTTPProxy." },
  351. { "HTTPSProxy", "Force Tor to make all TLS (SSL) connectinos through this "
  352. "host:port (or host:80 if port is not set)." },
  353. { "HTTPSProxyAuthenticator", "A username:password pair to be used with "
  354. "HTTPSProxy." },
  355. { "KeepalivePeriod", "Send a padding cell every N seconds to keep firewalls "
  356. "from closing our connections while Tor is not in use." },
  357. { "Log", "Where to send logging messages. Format is "
  358. "minSeverity[-maxSeverity] (stderr|stdout|syslog|file FILENAME)." },
  359. { "OutboundBindAddress", "Make all outbound connections originate from the "
  360. "provided IP address (only useful for multiple network interfaces)." },
  361. { "PIDFile", "On startup, write our PID to this file. On clean shutdown, "
  362. "remove the file." },
  363. { "PreferTunneledDirConns", "If non-zero, avoid directory servers that "
  364. "don't support tunneled connections." },
  365. /* PreferTunneledDirConns */
  366. /* ProtocolWarnings */
  367. /* RephistTrackTime */
  368. { "RunAsDaemon", "If set, Tor forks and daemonizes to the background when "
  369. "started. Unix only." },
  370. { "SafeLogging", "If set to 0, Tor logs potentially sensitive strings "
  371. "rather than replacing them with the string [scrubbed]." },
  372. { "TunnelDirConns", "If non-zero, when a directory server we contact "
  373. "supports it, we will build a one-hop circuit and make an encrypted "
  374. "connection via its ORPort." },
  375. { "User", "On startup, setuid to this user" },
  376. /* ==== client options */
  377. { "AllowInvalidNodes", "Where on our circuits should Tor allow servers "
  378. "that the directory authorities haven't called \"valid\"?" },
  379. { "AllowNonRFC953Hostnames", "If set to 1, we don't automatically reject "
  380. "hostnames for having invalid characters." },
  381. /* CircuitBuildTimeout, CircuitIdleTimeout */
  382. { "ClientOnly", "If set to 1, Tor will under no circumstances run as a "
  383. "server, even if ORPort is enabled." },
  384. { "EntryNodes", "A list of preferred entry nodes to use for the first hop "
  385. "in circuits, when possible." },
  386. /* { "EnforceDistinctSubnets" , "" }, */
  387. { "ExitNodes", "A list of preferred nodes to use for the last hop in "
  388. "circuits, when possible." },
  389. { "ExcludeNodes", "A list of nodes never to use when building a circuit." },
  390. { "FascistFirewall", "If set, Tor will only create outgoing connections to "
  391. "servers running on the ports listed in FirewallPorts." },
  392. { "FirewallPorts", "A list of ports that we can connect to. Only used "
  393. "when FascistFirewall is set." },
  394. { "LongLivedPorts", "A list of ports for services that tend to require "
  395. "high-uptime connections." },
  396. { "MapAddress", "Force Tor to treat all requests for one address as if "
  397. "they were for another." },
  398. { "NewCircuitPeriod", "Force Tor to consider whether to build a new circuit "
  399. "every NUM seconds." },
  400. { "MaxCircuitDirtiness", "Do not attach new streams to a circuit that has "
  401. "been used more than this many seconds ago." },
  402. /* NatdPort, NatdListenAddress */
  403. { "NodeFamily", "A list of servers that constitute a 'family' and should "
  404. "never be used in the same circuit." },
  405. { "NumEntryGuards", "How many entry guards should we keep at a time?" },
  406. /* PathlenCoinWeight */
  407. { "ReachableAddresses", "Addresses we can connect to, as IP/bits:port-port. "
  408. "By default, we assume all addresses are reachable." },
  409. /* reachablediraddresses, reachableoraddresses. */
  410. { "RendNodes", "A list of preferred nodes to use for a rendezvous point, "
  411. "when possible." },
  412. { "RendExcludenodes", "A list of nodes never to use as rendezvous points." },
  413. /* SafeSOCKS */
  414. { "SOCKSPort", "The port where we listen for SOCKS connections from "
  415. "applications." },
  416. { "SOCKSListenAddress", "Bind to this address to listen to connections from "
  417. "SOCKS-speaking applications." },
  418. { "SOCKSPolicy", "Set an entry policy to limit which addresses can connect "
  419. "to the SOCKSPort." },
  420. /* SocksTimeout */
  421. { "StrictExitNodes", "If set, Tor will fail to operate when none of the "
  422. "configured ExitNodes can be used." },
  423. { "StrictEntryNodes", "If set, Tor will fail to operate when none of the "
  424. "configured EntryNodes can be used." },
  425. /* TestSocks */
  426. { "TrackHostsExit", "Hosts and domains which should, if possible, be "
  427. "accessed from the same exit node each time we connect to them." },
  428. { "TrackHostsExitExpire", "Time after which we forget which exit we were "
  429. "using to connect to hosts in TrackHostsExit." },
  430. /* "TransPort", "TransListenAddress */
  431. { "UseEntryGuards", "Set to 0 if we want to pick from the whole set of "
  432. "servers for the first position in each circuit, rather than picking a "
  433. "set of 'Guards' to prevent profiling attacks." },
  434. /* === server options */
  435. { "Address", "The advertised (external) address we should use." },
  436. /* Accounting* options. */
  437. /* AssumeReachable */
  438. { "ContactInfo", "Administrative contact information to advertise for this "
  439. "server." },
  440. { "ExitPolicy", "Address/port ranges for which to accept or reject outgoing "
  441. "connections on behalf of Tor users." },
  442. /* { "ExitPolicyRejectPrivate, "" }, */
  443. { "MaxAdvertisedBandwidth", "If set, we will not advertise more than this "
  444. "amount of bandwidth for our bandwidth rate, regardless of how much "
  445. "bandwidth we actually detect." },
  446. { "MaxOnionsPending", "Reject new attempts to extend circuits when we "
  447. "already have this many pending." },
  448. { "MyFamily", "Declare a list of other servers as belonging to the same "
  449. "family as this one, so that clients will not use two from the same "
  450. "family in the same circuit." },
  451. { "Nickname", "Set the server nickname." },
  452. { "NoPublish", "{DEPRECATED}" },
  453. { "NumCPUs", "How many processes to use at once for public-key crypto." },
  454. { "ORPort", "Advertise this port to listen for connections from Tor clients "
  455. "and servers." },
  456. { "ORListenAddress", "Bind to this address to listen for connections from "
  457. "clients and servers, instead of the default 0.0.0.0:ORPort." },
  458. { "PublishServerDescriptor", "Set to \"\" to keep the server from "
  459. "uploading info to the directory authorities." },
  460. /*{ "RedirectExit", "When an outgoing connection tries to connect to a "
  461. *"given address, redirect it to another address instead." },
  462. */
  463. /* ServerDNS: DetectHijacking, ResolvConfFile, SearchDomains */
  464. { "ShutdownWaitLength", "Wait this long for clients to finish when "
  465. "shutting down because of a SIGINT." },
  466. /* { "TestVia", } */
  467. /* === directory cache options */
  468. { "DirPort", "Serve directory information from this port, and act as a "
  469. "directory cache." },
  470. { "DirListenAddress", "Bind to this address to listen for connections from "
  471. "clients and servers, instead of the default 0.0.0.0:DirPort." },
  472. { "DirPolicy", "Set a policy to limit who can connect to the directory "
  473. "port" },
  474. /* Authority options: AuthDirBadExit, AuthDirInvalid, AuthDirReject,
  475. * AuthDirRejectUnlisted, AuthDirListBadExits, AuthoritativeDirectory,
  476. * DirAllowPrivateAddresses, HSAuthoritativeDir,
  477. * NamingAuthoritativeDirectory, RecommendedVersions,
  478. * RecommendedClientVersions, RecommendedServerVersions, RendPostPeriod,
  479. * RunTesting, V1AuthoritativeDirectory, VersioningAuthoritativeDirectory, */
  480. /* Hidden service options: HiddenService: dir,excludenodes, nodes,
  481. * options, port. PublishHidServDescriptor */
  482. /* Nonpersistent options: __LeaveStreamsUnattached, __AllDirActionsPrivate */
  483. { NULL, NULL },
  484. };
  485. static config_var_description_t state_description[] = {
  486. { "AccountingBytesReadInInterval",
  487. "How many bytes have we read in this accounting period?" },
  488. { "AccountingBytesWrittenInInterval",
  489. "How many bytes have we written in this accounting period?" },
  490. { "AccountingExpectedUsage",
  491. "How many bytes did we expect to use per minute? (0 for no estimate.)" },
  492. { "AccountingIntervalStart", "When did this accounting period begin?" },
  493. { "AccountingSecondsActive", "How long have we been awake in this period?" },
  494. { "BWHistoryReadEnds", "When does the last-recorded read-interval end?" },
  495. { "BWHistoryReadInterval", "How long is each read-interval (in seconds)?" },
  496. { "BWHistoryReadValues", "Number of bytes read in each interval." },
  497. { "BWHistoryWriteEnds", "When does the last-recorded write-interval end?" },
  498. { "BWHistoryWriteInterval", "How long is each write-interval (in seconds)?"},
  499. { "BWHistoryWriteValues", "Number of bytes written in each interval." },
  500. { "EntryGuard", "One of the nodes we have chosen as a fixed entry" },
  501. { "EntryGuardDownSince",
  502. "The last entry guard has been unreachable since this time." },
  503. { "EntryGuardUnlistedSince",
  504. "The last entry guard has been unusable since this time." },
  505. { "LastRotatedOnionKey",
  506. "The last time at which we changed the medium-term private key used for "
  507. "building circuits." },
  508. { "LastWritten", "When was this state file last regenerated?" },
  509. { "TorVersion", "Which version of Tor generated this state file?" },
  510. { NULL, NULL },
  511. };
  512. /** Type of a callback to validate whether a given configuration is
  513. * well-formed and consistent. See options_trial_assign() for documentation
  514. * of arguments. */
  515. typedef int (*validate_fn_t)(void*,void*,int,char**);
  516. /** Information on the keys, value types, key-to-struct-member mappings,
  517. * variable descriptions, validation functions, and abbreviations for a
  518. * configuration or storage format. */
  519. typedef struct {
  520. size_t size; /**< Size of the struct that everything gets parsed into. */
  521. uint32_t magic; /**< Required 'magic value' to make sure we have a struct
  522. * of the right type. */
  523. off_t magic_offset; /**< Offset of the magic value within the struct. */
  524. config_abbrev_t *abbrevs; /**< List of abbreviations that we expand when
  525. * parsing this format. */
  526. config_var_t *vars; /**< List of variables we recognize, their default
  527. * values, and where we stick them in the structure. */
  528. validate_fn_t validate_fn; /**< Function to validate config. */
  529. /** Documentation for configuration variables. */
  530. config_var_description_t *descriptions;
  531. /** If present, extra is a LINELIST variable for unrecognized
  532. * lines. Otherwise, unrecognized lines are an error. */
  533. config_var_t *extra;
  534. } config_format_t;
  535. /** Macro: assert that <b>cfg</b> has the right magic field for format
  536. * <b>fmt</b>. */
  537. #define CHECK(fmt, cfg) STMT_BEGIN \
  538. tor_assert(fmt && cfg); \
  539. tor_assert((fmt)->magic == \
  540. *(uint32_t*)STRUCT_VAR_P(cfg,fmt->magic_offset)); \
  541. STMT_END
  542. static void config_line_append(config_line_t **lst,
  543. const char *key, const char *val);
  544. static void option_clear(config_format_t *fmt, or_options_t *options,
  545. config_var_t *var);
  546. static void option_reset(config_format_t *fmt, or_options_t *options,
  547. config_var_t *var, int use_defaults);
  548. static void config_free(config_format_t *fmt, void *options);
  549. static int option_is_same(config_format_t *fmt,
  550. or_options_t *o1, or_options_t *o2,
  551. const char *name);
  552. static or_options_t *options_dup(config_format_t *fmt, or_options_t *old);
  553. static int options_validate(or_options_t *old_options, or_options_t *options,
  554. int from_setconf, char **msg);
  555. static int options_act_reversible(or_options_t *old_options, char **msg);
  556. static int options_act(or_options_t *old_options);
  557. static int options_transition_allowed(or_options_t *old, or_options_t *new,
  558. char **msg);
  559. static int options_transition_affects_workers(or_options_t *old_options,
  560. or_options_t *new_options);
  561. static int options_transition_affects_descriptor(or_options_t *old_options,
  562. or_options_t *new_options);
  563. static int check_nickname_list(const char *lst, const char *name, char **msg);
  564. static void config_register_addressmaps(or_options_t *options);
  565. static int parse_bridge_line(const char *line, int validate_only);
  566. static int parse_dir_server_line(const char *line, int validate_only);
  567. static int parse_redirect_line(smartlist_t *result,
  568. config_line_t *line, char **msg);
  569. static int parse_log_severity_range(const char *range, int *min_out,
  570. int *max_out);
  571. static int validate_data_directory(or_options_t *options);
  572. static int write_configuration_file(const char *fname, or_options_t *options);
  573. static config_line_t *get_assigned_option(config_format_t *fmt,
  574. or_options_t *options, const char *key);
  575. static void config_init(config_format_t *fmt, void *options);
  576. static int or_state_validate(or_state_t *old_options, or_state_t *options,
  577. int from_setconf, char **msg);
  578. static int or_state_load(void);
  579. static int options_init_logs(or_options_t *options, int validate_only);
  580. static uint64_t config_parse_memunit(const char *s, int *ok);
  581. static int config_parse_interval(const char *s, int *ok);
  582. static void print_svn_version(void);
  583. static void init_libevent(void);
  584. static int opt_streq(const char *s1, const char *s2);
  585. /** Versions of libevent. */
  586. typedef enum {
  587. /* Note: we compare these, so it's important that "old" precede everything,
  588. * and that "other" come last. */
  589. LE_OLD=0, LE_10C, LE_10D, LE_10E, LE_11, LE_11A, LE_11B, LE_12, LE_12A,
  590. LE_13, LE_13A, LE_13B, LE_13C, LE_13D,
  591. LE_OTHER
  592. } le_version_t;
  593. static le_version_t decode_libevent_version(void);
  594. #if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
  595. static void check_libevent_version(const char *m, int server);
  596. #endif
  597. /** Magic value for or_options_t. */
  598. #define OR_OPTIONS_MAGIC 9090909
  599. /** Configuration format for or_options_t. */
  600. static config_format_t options_format = {
  601. sizeof(or_options_t),
  602. OR_OPTIONS_MAGIC,
  603. STRUCT_OFFSET(or_options_t, _magic),
  604. _option_abbrevs,
  605. _option_vars,
  606. (validate_fn_t)options_validate,
  607. options_description,
  608. NULL
  609. };
  610. /** Magic value for or_state_t. */
  611. #define OR_STATE_MAGIC 0x57A73f57
  612. /** "Extra" variable in the state that receives lines we can't parse. This
  613. * lets us preserve options from versions of Tor newer than us. */
  614. static config_var_t state_extra_var = {
  615. "__extra", CONFIG_TYPE_LINELIST, STRUCT_OFFSET(or_state_t, ExtraLines), NULL
  616. };
  617. /** Configuration format for or_state_t. */
  618. static config_format_t state_format = {
  619. sizeof(or_state_t),
  620. OR_STATE_MAGIC,
  621. STRUCT_OFFSET(or_state_t, _magic),
  622. _state_abbrevs,
  623. _state_vars,
  624. (validate_fn_t)or_state_validate,
  625. state_description,
  626. &state_extra_var,
  627. };
  628. /*
  629. * Functions to read and write the global options pointer.
  630. */
  631. /** Command-line and config-file options. */
  632. static or_options_t *global_options = NULL;
  633. /** Name of most recently read torrc file. */
  634. static char *torrc_fname = NULL;
  635. /** Persistent serialized state. */
  636. static or_state_t *global_state = NULL;
  637. /** Allocate an empty configuration object of a given format type. */
  638. static void *
  639. config_alloc(config_format_t *fmt)
  640. {
  641. void *opts = tor_malloc_zero(fmt->size);
  642. *(uint32_t*)STRUCT_VAR_P(opts, fmt->magic_offset) = fmt->magic;
  643. CHECK(fmt, opts);
  644. return opts;
  645. }
  646. /** Return the currently configured options. */
  647. or_options_t *
  648. get_options(void)
  649. {
  650. tor_assert(global_options);
  651. return global_options;
  652. }
  653. /** Change the current global options to contain <b>new_val</b> instead of
  654. * their current value; take action based on the new value; free the old value
  655. * as necessary.
  656. */
  657. int
  658. set_options(or_options_t *new_val, char **msg)
  659. {
  660. or_options_t *old_options = global_options;
  661. global_options = new_val;
  662. /* Note that we pass the *old* options below, for comparison. It
  663. * pulls the new options directly out of global_options. */
  664. if (options_act_reversible(old_options, msg)<0) {
  665. tor_assert(*msg);
  666. global_options = old_options;
  667. return -1;
  668. }
  669. if (options_act(old_options) < 0) { /* acting on the options failed. die. */
  670. log_err(LD_BUG,
  671. "Acting on config options left us in a broken state. Dying.");
  672. exit(1);
  673. }
  674. if (old_options)
  675. config_free(&options_format, old_options);
  676. return 0;
  677. }
  678. extern const char tor_svn_revision[]; /* from tor_main.c */
  679. static char *_version = NULL;
  680. /** Return the current Tor version, possibly */
  681. const char *
  682. get_version(void)
  683. {
  684. if (_version == NULL) {
  685. if (strlen(tor_svn_revision)) {
  686. size_t len = strlen(VERSION)+strlen(tor_svn_revision)+8;
  687. _version = tor_malloc(len);
  688. tor_snprintf(_version, len, "%s (r%s)", VERSION, tor_svn_revision);
  689. } else {
  690. _version = tor_strdup(VERSION);
  691. }
  692. }
  693. return _version;
  694. }
  695. /** Release all memory and resources held by global configuration structures.
  696. */
  697. void
  698. config_free_all(void)
  699. {
  700. if (global_options) {
  701. config_free(&options_format, global_options);
  702. global_options = NULL;
  703. }
  704. if (global_state) {
  705. config_free(&state_format, global_state);
  706. global_state = NULL;
  707. }
  708. tor_free(torrc_fname);
  709. tor_free(_version);
  710. }
  711. /** If options->SafeLogging is on, return a not very useful string,
  712. * else return address.
  713. */
  714. const char *
  715. safe_str(const char *address)
  716. {
  717. tor_assert(address);
  718. if (get_options()->SafeLogging)
  719. return "[scrubbed]";
  720. else
  721. return address;
  722. }
  723. /** Equivalent to escaped(safe_str(address)). See reentrancy note on
  724. * escaped(): don't use this outside the main thread, or twice in the same
  725. * log statement. */
  726. const char *
  727. escaped_safe_str(const char *address)
  728. {
  729. if (get_options()->SafeLogging)
  730. return "[scrubbed]";
  731. else
  732. return escaped(address);
  733. }
  734. /** Add the default directory servers directly into the trusted dir list. */
  735. static void
  736. add_default_trusted_dirservers(void)
  737. {
  738. int i;
  739. const char *dirservers[] = {
  740. "moria1 v1 orport=9001 v3ident=5420FD8EA46BD4290F1D07A1883C9D85ECC486C4 "
  741. "128.31.0.34:9031 FFCB 46DB 1339 DA84 674C 70D7 CB58 6434 C437 0441",
  742. "moria2 v1 orport=9002 128.31.0.34:9032 "
  743. "719B E45D E224 B607 C537 07D0 E214 3E2D 423E 74CF",
  744. "tor26 v1 orport=443 v3ident=A9AC67E64B200BBF2FA26DF194AC0469E2A948C6 "
  745. "86.59.21.38:80 847B 1F85 0344 D787 6491 A548 92F9 0493 4E4E B85D",
  746. "lefkada orport=443 140.247.60.64:80 "
  747. "38D4 F5FC F7B1 0232 28B8 95EA 56ED E7D5 CCDC AF32",
  748. "dizum 194.109.206.212:80 "
  749. "7EA6 EAD6 FD83 083C 538F 4403 8BBF A077 587D D755",
  750. "Tonga orport=443 bridge no-v2 82.94.251.206:80 "
  751. "4A0C CD2D DC79 9508 3D73 F5D6 6710 0C8A 5831 F16D",
  752. NULL
  753. };
  754. for (i=0; dirservers[i]; i++)
  755. parse_dir_server_line(dirservers[i], 0);
  756. }
  757. /** Fetch the active option list, and take actions based on it. All of the
  758. * things we do should survive being done repeatedly. If present,
  759. * <b>old_options</b> contains the previous value of the options.
  760. *
  761. * Return 0 if all goes well, return -1 if things went badly.
  762. */
  763. static int
  764. options_act_reversible(or_options_t *old_options, char **msg)
  765. {
  766. smartlist_t *new_listeners = smartlist_create();
  767. smartlist_t *replaced_listeners = smartlist_create();
  768. static int libevent_initialized = 0;
  769. or_options_t *options = get_options();
  770. int running_tor = options->command == CMD_RUN_TOR;
  771. int set_conn_limit = 0;
  772. int r = -1;
  773. int logs_marked = 0;
  774. /* Daemonize _first_, since we only want to open most of this stuff in
  775. * the subprocess. Libevent bases can't be reliably inherited across
  776. * processes. */
  777. if (running_tor && options->RunAsDaemon) {
  778. /* No need to roll back, since you can't change the value. */
  779. start_daemon();
  780. }
  781. #ifndef HAVE_SYS_UN_H
  782. if (options->ControlSocket) {
  783. *msg = tor_strdup("Unix domain sockets (ControlSocket) not supported"
  784. " on this OS/with this build.");
  785. goto rollback;
  786. }
  787. #endif
  788. if (running_tor) {
  789. /* We need to set the connection limit before we can open the listeners. */
  790. options->_ConnLimit =
  791. set_max_file_descriptors((unsigned)options->ConnLimit, MAXCONNECTIONS);
  792. if (options->_ConnLimit < 0) {
  793. *msg = tor_strdup("Problem with ConnLimit value. See logs for details.");
  794. goto rollback;
  795. }
  796. set_conn_limit = 1;
  797. /* Set up libevent. (We need to do this before we can register the
  798. * listeners as listeners.) */
  799. if (running_tor && !libevent_initialized) {
  800. init_libevent();
  801. libevent_initialized = 1;
  802. }
  803. /* Launch the listeners. (We do this before we setuid, so we can bind to
  804. * ports under 1024.) */
  805. if (retry_all_listeners(replaced_listeners, new_listeners) < 0) {
  806. *msg = tor_strdup("Failed to bind one of the listener ports.");
  807. goto rollback;
  808. }
  809. }
  810. /* Setuid/setgid as appropriate */
  811. if (options->User || options->Group) {
  812. if (switch_id(options->User, options->Group) != 0) {
  813. /* No need to roll back, since you can't change the value. */
  814. *msg = tor_strdup("Problem with User or Group value. "
  815. "See logs for details.");
  816. goto done;
  817. }
  818. }
  819. /* Ensure data directory is private; create if possible. */
  820. if (check_private_dir(options->DataDirectory, CPD_CREATE)<0) {
  821. char buf[1024];
  822. int tmp = tor_snprintf(buf, sizeof(buf),
  823. "Couldn't access/create private data directory \"%s\"",
  824. options->DataDirectory);
  825. *msg = tor_strdup(tmp >= 0 ? buf : "internal error");
  826. goto done;
  827. /* No need to roll back, since you can't change the value. */
  828. }
  829. /* Bail out at this point if we're not going to be a client or server:
  830. * we don't run Tor itself. */
  831. if (!running_tor)
  832. goto commit;
  833. mark_logs_temp(); /* Close current logs once new logs are open. */
  834. logs_marked = 1;
  835. if (options_init_logs(options, 0)<0) { /* Configure the log(s) */
  836. *msg = tor_strdup("Failed to init Log options. See logs for details.");
  837. goto rollback;
  838. }
  839. commit:
  840. r = 0;
  841. if (logs_marked) {
  842. close_temp_logs();
  843. add_callback_log(LOG_ERR, LOG_ERR, control_event_logmsg);
  844. control_adjust_event_log_severity();
  845. }
  846. SMARTLIST_FOREACH(replaced_listeners, connection_t *, conn,
  847. {
  848. log_notice(LD_NET, "Closing old %s on %s:%d",
  849. conn_type_to_string(conn->type), conn->address, conn->port);
  850. connection_close_immediate(conn);
  851. connection_mark_for_close(conn);
  852. });
  853. goto done;
  854. rollback:
  855. r = -1;
  856. tor_assert(*msg);
  857. if (logs_marked) {
  858. rollback_log_changes();
  859. control_adjust_event_log_severity();
  860. }
  861. if (set_conn_limit && old_options)
  862. set_max_file_descriptors((unsigned)old_options->ConnLimit,MAXCONNECTIONS);
  863. SMARTLIST_FOREACH(new_listeners, connection_t *, conn,
  864. {
  865. log_notice(LD_NET, "Closing partially-constructed listener %s on %s:%d",
  866. conn_type_to_string(conn->type), conn->address, conn->port);
  867. connection_close_immediate(conn);
  868. connection_mark_for_close(conn);
  869. });
  870. done:
  871. smartlist_free(new_listeners);
  872. smartlist_free(replaced_listeners);
  873. return r;
  874. }
  875. /** Fetch the active option list, and take actions based on it. All of the
  876. * things we do should survive being done repeatedly. If present,
  877. * <b>old_options</b> contains the previous value of the options.
  878. *
  879. * Return 0 if all goes well, return -1 if it's time to die.
  880. *
  881. * Note: We haven't moved all the "act on new configuration" logic
  882. * here yet. Some is still in do_hup() and other places.
  883. */
  884. static int
  885. options_act(or_options_t *old_options)
  886. {
  887. config_line_t *cl;
  888. char *fn;
  889. size_t len;
  890. or_options_t *options = get_options();
  891. int running_tor = options->command == CMD_RUN_TOR;
  892. char *msg;
  893. if (options->DirServers) {
  894. clear_trusted_dir_servers();
  895. for (cl = options->DirServers; cl; cl = cl->next) {
  896. if (parse_dir_server_line(cl->value, 0)<0) {
  897. log_warn(LD_BUG,
  898. "Previously validated DirServer line could not be added!");
  899. return -1;
  900. }
  901. }
  902. } else {
  903. if (!smartlist_len(router_get_trusted_dir_servers()))
  904. add_default_trusted_dirservers();
  905. }
  906. clear_bridge_list();
  907. if (options->Bridges) {
  908. for (cl = options->Bridges; cl; cl = cl->next) {
  909. if (parse_bridge_line(cl->value, 0)<0) {
  910. log_warn(LD_BUG,
  911. "Previously validated Bridge line could not be added!");
  912. return -1;
  913. }
  914. }
  915. }
  916. if (running_tor && rend_config_services(options, 0)<0) {
  917. log_warn(LD_BUG,
  918. "Previously validated hidden services line could not be added!");
  919. return -1;
  920. }
  921. if (running_tor) {
  922. len = strlen(options->DataDirectory)+32;
  923. fn = tor_malloc(len);
  924. tor_snprintf(fn, len, "%s"PATH_SEPARATOR"cached-status",
  925. options->DataDirectory);
  926. if (check_private_dir(fn, CPD_CREATE) != 0) {
  927. log_warn(LD_CONFIG,
  928. "Couldn't access/create private data directory \"%s\"", fn);
  929. tor_free(fn);
  930. return -1;
  931. }
  932. tor_free(fn);
  933. }
  934. /* Load state */
  935. if (! global_state && options->command == CMD_RUN_TOR) {
  936. if (or_state_load())
  937. return -1;
  938. rep_hist_load_mtbf_data(time(NULL));
  939. }
  940. /* Bail out at this point if we're not going to be a client or server:
  941. * we want to not fork, and to log stuff to stderr. */
  942. if (options->command != CMD_RUN_TOR)
  943. return 0;
  944. {
  945. smartlist_t *sl = smartlist_create();
  946. char *errmsg = NULL;
  947. for (cl = options->RedirectExit; cl; cl = cl->next) {
  948. if (parse_redirect_line(sl, cl, &errmsg)<0) {
  949. log_warn(LD_CONFIG, "%s", errmsg);
  950. tor_free(errmsg);
  951. return -1;
  952. }
  953. }
  954. set_exit_redirects(sl);
  955. }
  956. /* Finish backgrounding the process */
  957. if (running_tor && options->RunAsDaemon) {
  958. /* We may be calling this for the n'th time (on SIGHUP), but it's safe. */
  959. finish_daemon(options->DataDirectory);
  960. }
  961. /* Write our pid to the pid file. If we do not have write permissions we
  962. * will log a warning */
  963. if (running_tor && options->PidFile)
  964. write_pidfile(options->PidFile);
  965. /* Register addressmap directives */
  966. config_register_addressmaps(options);
  967. parse_virtual_addr_network(options->VirtualAddrNetwork, 0, &msg);
  968. /* Update address policies. */
  969. policies_parse_from_options(options);
  970. if (init_cookie_authentication(options->CookieAuthentication) < 0) {
  971. log_warn(LD_CONFIG,"Error creating cookie authentication file.");
  972. return -1;
  973. }
  974. /* reload keys as needed for rendezvous services. */
  975. if (rend_service_load_keys()<0) {
  976. log_warn(LD_GENERAL,"Error loading rendezvous service keys");
  977. return -1;
  978. }
  979. /* Set up accounting */
  980. if (accounting_parse_options(options, 0)<0) {
  981. log_warn(LD_CONFIG,"Error in accounting options");
  982. return -1;
  983. }
  984. if (accounting_is_enabled(options))
  985. configure_accounting(time(NULL));
  986. if (!running_tor)
  987. return 0;
  988. /* Check for transitions that need action. */
  989. if (old_options) {
  990. if (options->UseEntryGuards && !old_options->UseEntryGuards) {
  991. log_info(LD_CIRC,
  992. "Switching to entry guards; abandoning previous circuits");
  993. circuit_mark_all_unused_circs();
  994. circuit_expire_all_dirty_circs();
  995. }
  996. if (options_transition_affects_workers(old_options, options)) {
  997. log_info(LD_GENERAL,
  998. "Worker-related options changed. Rotating workers.");
  999. if (server_mode(options) && !server_mode(old_options)) {
  1000. if (init_keys() < 0) {
  1001. log_warn(LD_BUG,"Error initializing keys; exiting");
  1002. return -1;
  1003. }
  1004. ip_address_changed(0);
  1005. if (has_completed_circuit || !any_predicted_circuits(time(NULL)))
  1006. inform_testing_reachability();
  1007. }
  1008. cpuworkers_rotate();
  1009. if (dns_reset())
  1010. return -1;
  1011. } else {
  1012. if (dns_reset())
  1013. return -1;
  1014. }
  1015. if (options->V3AuthoritativeDir && !old_options->V3AuthoritativeDir)
  1016. init_keys();
  1017. }
  1018. /* Check if we need to parse and add the EntryNodes config option. */
  1019. if (options->EntryNodes &&
  1020. (!old_options ||
  1021. !opt_streq(old_options->EntryNodes, options->EntryNodes)))
  1022. entry_nodes_should_be_added();
  1023. /* Since our options changed, we might need to regenerate and upload our
  1024. * server descriptor.
  1025. */
  1026. if (!old_options ||
  1027. options_transition_affects_descriptor(old_options, options))
  1028. mark_my_descriptor_dirty();
  1029. return 0;
  1030. }
  1031. /*
  1032. * Functions to parse config options
  1033. */
  1034. /** If <b>option</b> is an official abbreviation for a longer option,
  1035. * return the longer option. Otherwise return <b>option</b>.
  1036. * If <b>command_line</b> is set, apply all abbreviations. Otherwise, only
  1037. * apply abbreviations that work for the config file and the command line.
  1038. * If <b>warn_obsolete</b> is set, warn about deprecated names. */
  1039. static const char *
  1040. expand_abbrev(config_format_t *fmt, const char *option, int command_line,
  1041. int warn_obsolete)
  1042. {
  1043. int i;
  1044. if (! fmt->abbrevs)
  1045. return option;
  1046. for (i=0; fmt->abbrevs[i].abbreviated; ++i) {
  1047. /* Abbreviations are casei. */
  1048. if (!strcasecmp(option,fmt->abbrevs[i].abbreviated) &&
  1049. (command_line || !fmt->abbrevs[i].commandline_only)) {
  1050. if (warn_obsolete && fmt->abbrevs[i].warn) {
  1051. log_warn(LD_CONFIG,
  1052. "The configuration option '%s' is deprecated; "
  1053. "use '%s' instead.",
  1054. fmt->abbrevs[i].abbreviated,
  1055. fmt->abbrevs[i].full);
  1056. }
  1057. return fmt->abbrevs[i].full;
  1058. }
  1059. }
  1060. return option;
  1061. }
  1062. /** Helper: Read a list of configuration options from the command line.
  1063. * If successful, put them in *<b>result</b> and return 0, and return
  1064. * -1 and leave *<b>result</b> alone. */
  1065. static int
  1066. config_get_commandlines(int argc, char **argv, config_line_t **result)
  1067. {
  1068. config_line_t *front = NULL;
  1069. config_line_t **new = &front;
  1070. char *s;
  1071. int i = 1;
  1072. while (i < argc) {
  1073. if (!strcmp(argv[i],"-f") ||
  1074. !strcmp(argv[i],"--hash-password")) {
  1075. i += 2; /* command-line option with argument. ignore them. */
  1076. continue;
  1077. } else if (!strcmp(argv[i],"--list-fingerprint") ||
  1078. !strcmp(argv[i],"--verify-config") ||
  1079. !strcmp(argv[i],"--ignore-missing-torrc")) {
  1080. i += 1; /* command-line option. ignore it. */
  1081. continue;
  1082. } else if (!strcmp(argv[i],"--nt-service") ||
  1083. !strcmp(argv[i],"-nt-service")) {
  1084. i += 1;
  1085. continue;
  1086. }
  1087. if (i == argc-1) {
  1088. log_warn(LD_CONFIG,"Command-line option '%s' with no value. Failing.",
  1089. argv[i]);
  1090. config_free_lines(front);
  1091. return -1;
  1092. }
  1093. *new = tor_malloc_zero(sizeof(config_line_t));
  1094. s = argv[i];
  1095. while (*s == '-')
  1096. s++;
  1097. (*new)->key = tor_strdup(expand_abbrev(&options_format, s, 1, 1));
  1098. (*new)->value = tor_strdup(argv[i+1]);
  1099. (*new)->next = NULL;
  1100. log(LOG_DEBUG, LD_CONFIG, "Commandline: parsed keyword '%s', value '%s'",
  1101. (*new)->key, (*new)->value);
  1102. new = &((*new)->next);
  1103. i += 2;
  1104. }
  1105. *result = front;
  1106. return 0;
  1107. }
  1108. /** Helper: allocate a new configuration option mapping 'key' to 'val',
  1109. * append it to *<b>lst</b>. */
  1110. static void
  1111. config_line_append(config_line_t **lst,
  1112. const char *key,
  1113. const char *val)
  1114. {
  1115. config_line_t *newline;
  1116. newline = tor_malloc(sizeof(config_line_t));
  1117. newline->key = tor_strdup(key);
  1118. newline->value = tor_strdup(val);
  1119. newline->next = NULL;
  1120. while (*lst)
  1121. lst = &((*lst)->next);
  1122. (*lst) = newline;
  1123. }
  1124. /** Helper: parse the config string and strdup into key/value
  1125. * strings. Set *result to the list, or NULL if parsing the string
  1126. * failed. Return 0 on success, -1 on failure. Warn and ignore any
  1127. * misformatted lines. Modifies the contents of <b>string</b>. */
  1128. int
  1129. config_get_lines(char *string, config_line_t **result)
  1130. {
  1131. config_line_t *list = NULL, **next;
  1132. char *k, *v;
  1133. next = &list;
  1134. do {
  1135. string = parse_line_from_str(string, &k, &v);
  1136. if (!string) {
  1137. config_free_lines(list);
  1138. return -1;
  1139. }
  1140. if (k && v) {
  1141. /* This list can get long, so we keep a pointer to the end of it
  1142. * rather than using config_line_append over and over and getting n^2
  1143. * performance. This is the only really long list. */
  1144. *next = tor_malloc(sizeof(config_line_t));
  1145. (*next)->key = tor_strdup(k);
  1146. (*next)->value = tor_strdup(v);
  1147. (*next)->next = NULL;
  1148. next = &((*next)->next);
  1149. }
  1150. } while (*string);
  1151. *result = list;
  1152. return 0;
  1153. }
  1154. /**
  1155. * Free all the configuration lines on the linked list <b>front</b>.
  1156. */
  1157. void
  1158. config_free_lines(config_line_t *front)
  1159. {
  1160. config_line_t *tmp;
  1161. while (front) {
  1162. tmp = front;
  1163. front = tmp->next;
  1164. tor_free(tmp->key);
  1165. tor_free(tmp->value);
  1166. tor_free(tmp);
  1167. }
  1168. }
  1169. /** Return the description for a given configuration variable, or NULL if no
  1170. * description exists. */
  1171. static const char *
  1172. config_find_description(config_format_t *fmt, const char *name)
  1173. {
  1174. int i;
  1175. for (i=0; fmt->descriptions[i].name; ++i) {
  1176. if (!strcasecmp(name, fmt->descriptions[i].name))
  1177. return fmt->descriptions[i].description;
  1178. }
  1179. return NULL;
  1180. }
  1181. /** If <b>key</b> is a configuration option, return the corresponding
  1182. * config_var_t. Otherwise, if <b>key</b> is a non-standard abbreviation,
  1183. * warn, and return the corresponding config_var_t. Otherwise return NULL.
  1184. */
  1185. static config_var_t *
  1186. config_find_option(config_format_t *fmt, const char *key)
  1187. {
  1188. int i;
  1189. size_t keylen = strlen(key);
  1190. if (!keylen)
  1191. return NULL; /* if they say "--" on the commandline, it's not an option */
  1192. /* First, check for an exact (case-insensitive) match */
  1193. for (i=0; fmt->vars[i].name; ++i) {
  1194. if (!strcasecmp(key, fmt->vars[i].name)) {
  1195. return &fmt->vars[i];
  1196. }
  1197. }
  1198. /* If none, check for an abbreviated match */
  1199. for (i=0; fmt->vars[i].name; ++i) {
  1200. if (!strncasecmp(key, fmt->vars[i].name, keylen)) {
  1201. log_warn(LD_CONFIG, "The abbreviation '%s' is deprecated. "
  1202. "Please use '%s' instead",
  1203. key, fmt->vars[i].name);
  1204. return &fmt->vars[i];
  1205. }
  1206. }
  1207. /* Okay, unrecognized option */
  1208. return NULL;
  1209. }
  1210. /*
  1211. * Functions to assign config options.
  1212. */
  1213. /** <b>c</b>-\>key is known to be a real key. Update <b>options</b>
  1214. * with <b>c</b>-\>value and return 0, or return -1 if bad value.
  1215. *
  1216. * Called from config_assign_line() and option_reset().
  1217. */
  1218. static int
  1219. config_assign_value(config_format_t *fmt, or_options_t *options,
  1220. config_line_t *c, char **msg)
  1221. {
  1222. int i, r, ok;
  1223. char buf[1024];
  1224. config_var_t *var;
  1225. void *lvalue;
  1226. CHECK(fmt, options);
  1227. var = config_find_option(fmt, c->key);
  1228. tor_assert(var);
  1229. lvalue = STRUCT_VAR_P(options, var->var_offset);
  1230. switch (var->type) {
  1231. case CONFIG_TYPE_UINT:
  1232. i = tor_parse_long(c->value, 10, 0, INT_MAX, &ok, NULL);
  1233. if (!ok) {
  1234. r = tor_snprintf(buf, sizeof(buf),
  1235. "Int keyword '%s %s' is malformed or out of bounds.",
  1236. c->key, c->value);
  1237. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  1238. return -1;
  1239. }
  1240. *(int *)lvalue = i;
  1241. break;
  1242. case CONFIG_TYPE_INTERVAL: {
  1243. i = config_parse_interval(c->value, &ok);
  1244. if (!ok) {
  1245. r = tor_snprintf(buf, sizeof(buf),
  1246. "Interval '%s %s' is malformed or out of bounds.",
  1247. c->key, c->value);
  1248. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  1249. return -1;
  1250. }
  1251. *(int *)lvalue = i;
  1252. break;
  1253. }
  1254. case CONFIG_TYPE_MEMUNIT: {
  1255. uint64_t u64 = config_parse_memunit(c->value, &ok);
  1256. if (!ok) {
  1257. r = tor_snprintf(buf, sizeof(buf),
  1258. "Value '%s %s' is malformed or out of bounds.",
  1259. c->key, c->value);
  1260. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  1261. return -1;
  1262. }
  1263. *(uint64_t *)lvalue = u64;
  1264. break;
  1265. }
  1266. case CONFIG_TYPE_BOOL:
  1267. i = tor_parse_long(c->value, 10, 0, 1, &ok, NULL);
  1268. if (!ok) {
  1269. r = tor_snprintf(buf, sizeof(buf),
  1270. "Boolean '%s %s' expects 0 or 1.",
  1271. c->key, c->value);
  1272. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  1273. return -1;
  1274. }
  1275. *(int *)lvalue = i;
  1276. break;
  1277. case CONFIG_TYPE_STRING:
  1278. tor_free(*(char **)lvalue);
  1279. *(char **)lvalue = tor_strdup(c->value);
  1280. break;
  1281. case CONFIG_TYPE_DOUBLE:
  1282. *(double *)lvalue = atof(c->value);
  1283. break;
  1284. case CONFIG_TYPE_ISOTIME:
  1285. if (parse_iso_time(c->value, (time_t *)lvalue)) {
  1286. r = tor_snprintf(buf, sizeof(buf),
  1287. "Invalid time '%s' for keyword '%s'", c->value, c->key);
  1288. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  1289. return -1;
  1290. }
  1291. break;
  1292. case CONFIG_TYPE_CSV:
  1293. if (*(smartlist_t**)lvalue) {
  1294. SMARTLIST_FOREACH(*(smartlist_t**)lvalue, char *, cp, tor_free(cp));
  1295. smartlist_clear(*(smartlist_t**)lvalue);
  1296. } else {
  1297. *(smartlist_t**)lvalue = smartlist_create();
  1298. }
  1299. smartlist_split_string(*(smartlist_t**)lvalue, c->value, ",",
  1300. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1301. break;
  1302. case CONFIG_TYPE_LINELIST:
  1303. case CONFIG_TYPE_LINELIST_S:
  1304. config_line_append((config_line_t**)lvalue, c->key, c->value);
  1305. break;
  1306. case CONFIG_TYPE_OBSOLETE:
  1307. log_warn(LD_CONFIG, "Skipping obsolete configuration option '%s'", c->key);
  1308. break;
  1309. case CONFIG_TYPE_LINELIST_V:
  1310. r = tor_snprintf(buf, sizeof(buf),
  1311. "You may not provide a value for virtual option '%s'", c->key);
  1312. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  1313. return -1;
  1314. default:
  1315. tor_assert(0);
  1316. break;
  1317. }
  1318. return 0;
  1319. }
  1320. /** If <b>c</b> is a syntactically valid configuration line, update
  1321. * <b>options</b> with its value and return 0. Otherwise return -1 for bad
  1322. * key, -2 for bad value.
  1323. *
  1324. * If <b>clear_first</b> is set, clear the value first. Then if
  1325. * <b>use_defaults</b> is set, set the value to the default.
  1326. *
  1327. * Called from config_assign().
  1328. */
  1329. static int
  1330. config_assign_line(config_format_t *fmt, or_options_t *options,
  1331. config_line_t *c, int use_defaults,
  1332. int clear_first, char **msg)
  1333. {
  1334. config_var_t *var;
  1335. CHECK(fmt, options);
  1336. var = config_find_option(fmt, c->key);
  1337. if (!var) {
  1338. if (fmt->extra) {
  1339. void *lvalue = STRUCT_VAR_P(options, fmt->extra->var_offset);
  1340. log_info(LD_CONFIG,
  1341. "Found unrecognized option '%s'; saving it.", c->key);
  1342. config_line_append((config_line_t**)lvalue, c->key, c->value);
  1343. return 0;
  1344. } else {
  1345. char buf[1024];
  1346. int tmp = tor_snprintf(buf, sizeof(buf),
  1347. "Unknown option '%s'. Failing.", c->key);
  1348. *msg = tor_strdup(tmp >= 0 ? buf : "internal error");
  1349. return -1;
  1350. }
  1351. }
  1352. /* Put keyword into canonical case. */
  1353. if (strcmp(var->name, c->key)) {
  1354. tor_free(c->key);
  1355. c->key = tor_strdup(var->name);
  1356. }
  1357. if (!strlen(c->value)) {
  1358. /* reset or clear it, then return */
  1359. if (!clear_first) {
  1360. if (var->type == CONFIG_TYPE_LINELIST ||
  1361. var->type == CONFIG_TYPE_LINELIST_S) {
  1362. /* We got an empty linelist from the torrc or commandline.
  1363. As a special case, call this an error. Warn and ignore. */
  1364. log_warn(LD_CONFIG,
  1365. "Linelist option '%s' has no value. Skipping.", c->key);
  1366. } else { /* not already cleared */
  1367. option_reset(fmt, options, var, use_defaults);
  1368. }
  1369. }
  1370. return 0;
  1371. }
  1372. if (config_assign_value(fmt, options, c, msg) < 0)
  1373. return -2;
  1374. return 0;
  1375. }
  1376. /** Restore the option named <b>key</b> in options to its default value.
  1377. * Called from config_assign(). */
  1378. static void
  1379. config_reset_line(config_format_t *fmt, or_options_t *options,
  1380. const char *key, int use_defaults)
  1381. {
  1382. config_var_t *var;
  1383. CHECK(fmt, options);
  1384. var = config_find_option(fmt, key);
  1385. if (!var)
  1386. return; /* give error on next pass. */
  1387. option_reset(fmt, options, var, use_defaults);
  1388. }
  1389. /** Return true iff key is a valid configuration option. */
  1390. int
  1391. option_is_recognized(const char *key)
  1392. {
  1393. config_var_t *var = config_find_option(&options_format, key);
  1394. return (var != NULL);
  1395. }
  1396. /** Return the canonical name of a configuration option. */
  1397. const char *
  1398. option_get_canonical_name(const char *key)
  1399. {
  1400. config_var_t *var = config_find_option(&options_format, key);
  1401. return var->name;
  1402. }
  1403. /** Return a canonicalized list of the options assigned for key.
  1404. */
  1405. config_line_t *
  1406. option_get_assignment(or_options_t *options, const char *key)
  1407. {
  1408. return get_assigned_option(&options_format, options, key);
  1409. }
  1410. /** Return a newly allocated deep copy of the lines in <b>inp</b>. */
  1411. static config_line_t *
  1412. config_lines_dup(const config_line_t *inp)
  1413. {
  1414. config_line_t *result = NULL;
  1415. config_line_t **next_out = &result;
  1416. while (inp) {
  1417. *next_out = tor_malloc(sizeof(config_line_t));
  1418. (*next_out)->key = tor_strdup(inp->key);
  1419. (*next_out)->value = tor_strdup(inp->value);
  1420. inp = inp->next;
  1421. next_out = &((*next_out)->next);
  1422. }
  1423. (*next_out) = NULL;
  1424. return result;
  1425. }
  1426. /** Return newly allocated line or lines corresponding to <b>key</b> in the
  1427. * configuration <b>options</b>. Return NULL if no such key exists. */
  1428. static config_line_t *
  1429. get_assigned_option(config_format_t *fmt, or_options_t *options,
  1430. const char *key)
  1431. /* XXXX argument is options, but fmt is provided. Inconsistent. */
  1432. {
  1433. config_var_t *var;
  1434. const void *value;
  1435. char buf[32];
  1436. config_line_t *result;
  1437. tor_assert(options && key);
  1438. CHECK(fmt, options);
  1439. var = config_find_option(fmt, key);
  1440. if (!var) {
  1441. log_warn(LD_CONFIG, "Unknown option '%s'. Failing.", key);
  1442. return NULL;
  1443. }
  1444. value = STRUCT_VAR_P(options, var->var_offset);
  1445. result = tor_malloc_zero(sizeof(config_line_t));
  1446. result->key = tor_strdup(var->name);
  1447. switch (var->type)
  1448. {
  1449. case CONFIG_TYPE_STRING:
  1450. if (*(char**)value) {
  1451. result->value = tor_strdup(*(char**)value);
  1452. } else {
  1453. tor_free(result->key);
  1454. tor_free(result);
  1455. return NULL;
  1456. }
  1457. break;
  1458. case CONFIG_TYPE_ISOTIME:
  1459. if (*(time_t*)value) {
  1460. result->value = tor_malloc(ISO_TIME_LEN+1);
  1461. format_iso_time(result->value, *(time_t*)value);
  1462. } else {
  1463. tor_free(result->key);
  1464. tor_free(result);
  1465. }
  1466. break;
  1467. case CONFIG_TYPE_INTERVAL:
  1468. case CONFIG_TYPE_UINT:
  1469. /* This means every or_options_t uint or bool element
  1470. * needs to be an int. Not, say, a uint16_t or char. */
  1471. tor_snprintf(buf, sizeof(buf), "%d", *(int*)value);
  1472. result->value = tor_strdup(buf);
  1473. break;
  1474. case CONFIG_TYPE_MEMUNIT:
  1475. tor_snprintf(buf, sizeof(buf), U64_FORMAT,
  1476. U64_PRINTF_ARG(*(uint64_t*)value));
  1477. result->value = tor_strdup(buf);
  1478. break;
  1479. case CONFIG_TYPE_DOUBLE:
  1480. tor_snprintf(buf, sizeof(buf), "%f", *(double*)value);
  1481. result->value = tor_strdup(buf);
  1482. break;
  1483. case CONFIG_TYPE_BOOL:
  1484. result->value = tor_strdup(*(int*)value ? "1" : "0");
  1485. break;
  1486. case CONFIG_TYPE_CSV:
  1487. if (*(smartlist_t**)value)
  1488. result->value =
  1489. smartlist_join_strings(*(smartlist_t**)value, ",", 0, NULL);
  1490. else
  1491. result->value = tor_strdup("");
  1492. break;
  1493. case CONFIG_TYPE_OBSOLETE:
  1494. log_warn(LD_CONFIG,
  1495. "You asked me for the value of an obsolete config option '%s'.",
  1496. key);
  1497. tor_free(result->key);
  1498. tor_free(result);
  1499. return NULL;
  1500. case CONFIG_TYPE_LINELIST_S:
  1501. log_warn(LD_CONFIG,
  1502. "Can't return context-sensitive '%s' on its own", key);
  1503. tor_free(result->key);
  1504. tor_free(result);
  1505. return NULL;
  1506. case CONFIG_TYPE_LINELIST:
  1507. case CONFIG_TYPE_LINELIST_V:
  1508. tor_free(result->key);
  1509. tor_free(result);
  1510. return config_lines_dup(*(const config_line_t**)value);
  1511. default:
  1512. tor_free(result->key);
  1513. tor_free(result);
  1514. log_warn(LD_BUG,"Unknown type %d for known key '%s'",
  1515. var->type, key);
  1516. return NULL;
  1517. }
  1518. return result;
  1519. }
  1520. /** Iterate through the linked list of requested options <b>list</b>.
  1521. * For each item, convert as appropriate and assign to <b>options</b>.
  1522. * If an item is unrecognized, set *msg and return -1 immediately,
  1523. * else return 0 for success.
  1524. *
  1525. * If <b>clear_first</b>, interpret config options as replacing (not
  1526. * extending) their previous values. If <b>clear_first</b> is set,
  1527. * then <b>use_defaults</b> to decide if you set to defaults after
  1528. * clearing, or make the value 0 or NULL.
  1529. *
  1530. * Here are the use cases:
  1531. * 1. A non-empty AllowInvalid line in your torrc. Appends to current
  1532. * if linelist, replaces current if csv.
  1533. * 2. An empty AllowInvalid line in your torrc. Should clear it.
  1534. * 3. "RESETCONF AllowInvalid" sets it to default.
  1535. * 4. "SETCONF AllowInvalid" makes it NULL.
  1536. * 5. "SETCONF AllowInvalid=foo" clears it and sets it to "foo".
  1537. *
  1538. * Use_defaults Clear_first
  1539. * 0 0 "append"
  1540. * 1 0 undefined, don't use
  1541. * 0 1 "set to null first"
  1542. * 1 1 "set to defaults first"
  1543. * Return 0 on success, -1 on bad key, -2 on bad value.
  1544. *
  1545. * As an additional special case, if a LINELIST config option has
  1546. * no value and clear_first is 0, then warn and ignore it.
  1547. */
  1548. /*
  1549. There are three call cases for config_assign() currently.
  1550. Case one: Torrc entry
  1551. options_init_from_torrc() calls config_assign(0, 0)
  1552. calls config_assign_line(0, 0).
  1553. if value is empty, calls option_reset(0) and returns.
  1554. calls config_assign_value(), appends.
  1555. Case two: setconf
  1556. options_trial_assign() calls config_assign(0, 1)
  1557. calls config_reset_line(0)
  1558. calls option_reset(0)
  1559. calls option_clear().
  1560. calls config_assign_line(0, 1).
  1561. if value is empty, returns.
  1562. calls config_assign_value(), appends.
  1563. Case three: resetconf
  1564. options_trial_assign() calls config_assign(1, 1)
  1565. calls config_reset_line(1)
  1566. calls option_reset(1)
  1567. calls option_clear().
  1568. calls config_assign_value(default)
  1569. calls config_assign_line(1, 1).
  1570. returns.
  1571. */
  1572. static int
  1573. config_assign(config_format_t *fmt, void *options, config_line_t *list,
  1574. int use_defaults, int clear_first, char **msg)
  1575. {
  1576. config_line_t *p;
  1577. CHECK(fmt, options);
  1578. /* pass 1: normalize keys */
  1579. for (p = list; p; p = p->next) {
  1580. const char *full = expand_abbrev(fmt, p->key, 0, 1);
  1581. if (strcmp(full,p->key)) {
  1582. tor_free(p->key);
  1583. p->key = tor_strdup(full);
  1584. }
  1585. }
  1586. /* pass 2: if we're reading from a resetting source, clear all
  1587. * mentioned config options, and maybe set to their defaults. */
  1588. if (clear_first) {
  1589. for (p = list; p; p = p->next)
  1590. config_reset_line(fmt, options, p->key, use_defaults);
  1591. }
  1592. /* pass 3: assign. */
  1593. while (list) {
  1594. int r;
  1595. if ((r=config_assign_line(fmt, options, list, use_defaults,
  1596. clear_first, msg)))
  1597. return r;
  1598. list = list->next;
  1599. }
  1600. return 0;
  1601. }
  1602. /** Try assigning <b>list</b> to the global options. You do this by duping
  1603. * options, assigning list to the new one, then validating it. If it's
  1604. * ok, then throw out the old one and stick with the new one. Else,
  1605. * revert to old and return failure. Return 0 on success, -1 on bad
  1606. * keys, -2 on bad values, -3 on bad transition, and -4 on failed-to-set.
  1607. *
  1608. * If not success, point *<b>msg</b> to a newly allocated string describing
  1609. * what went wrong.
  1610. */
  1611. int
  1612. options_trial_assign(config_line_t *list, int use_defaults,
  1613. int clear_first, char **msg)
  1614. {
  1615. int r;
  1616. or_options_t *trial_options = options_dup(&options_format, get_options());
  1617. if ((r=config_assign(&options_format, trial_options,
  1618. list, use_defaults, clear_first, msg)) < 0) {
  1619. config_free(&options_format, trial_options);
  1620. return r;
  1621. }
  1622. if (options_validate(get_options(), trial_options, 1, msg) < 0) {
  1623. config_free(&options_format, trial_options);
  1624. return -2;
  1625. }
  1626. if (options_transition_allowed(get_options(), trial_options, msg) < 0) {
  1627. config_free(&options_format, trial_options);
  1628. return -3;
  1629. }
  1630. if (set_options(trial_options, msg)<0) {
  1631. config_free(&options_format, trial_options);
  1632. return -4;
  1633. }
  1634. /* we liked it. put it in place. */
  1635. return 0;
  1636. }
  1637. /** Reset config option <b>var</b> to 0, 0.0, NULL, or the equivalent.
  1638. * Called from option_reset() and config_free(). */
  1639. static void
  1640. option_clear(config_format_t *fmt, or_options_t *options, config_var_t *var)
  1641. {
  1642. void *lvalue = STRUCT_VAR_P(options, var->var_offset);
  1643. (void)fmt; /* unused */
  1644. switch (var->type) {
  1645. case CONFIG_TYPE_STRING:
  1646. tor_free(*(char**)lvalue);
  1647. break;
  1648. case CONFIG_TYPE_DOUBLE:
  1649. *(double*)lvalue = 0.0;
  1650. break;
  1651. case CONFIG_TYPE_ISOTIME:
  1652. *(time_t*)lvalue = 0;
  1653. case CONFIG_TYPE_INTERVAL:
  1654. case CONFIG_TYPE_UINT:
  1655. case CONFIG_TYPE_BOOL:
  1656. *(int*)lvalue = 0;
  1657. break;
  1658. case CONFIG_TYPE_MEMUNIT:
  1659. *(uint64_t*)lvalue = 0;
  1660. break;
  1661. case CONFIG_TYPE_CSV:
  1662. if (*(smartlist_t**)lvalue) {
  1663. SMARTLIST_FOREACH(*(smartlist_t **)lvalue, char *, cp, tor_free(cp));
  1664. smartlist_free(*(smartlist_t **)lvalue);
  1665. *(smartlist_t **)lvalue = NULL;
  1666. }
  1667. break;
  1668. case CONFIG_TYPE_LINELIST:
  1669. case CONFIG_TYPE_LINELIST_S:
  1670. config_free_lines(*(config_line_t **)lvalue);
  1671. *(config_line_t **)lvalue = NULL;
  1672. break;
  1673. case CONFIG_TYPE_LINELIST_V:
  1674. /* handled by linelist_s. */
  1675. break;
  1676. case CONFIG_TYPE_OBSOLETE:
  1677. break;
  1678. }
  1679. }
  1680. /** Clear the option indexed by <b>var</b> in <b>options</b>. Then if
  1681. * <b>use_defaults</b>, set it to its default value.
  1682. * Called by config_init() and option_reset_line() and option_assign_line(). */
  1683. static void
  1684. option_reset(config_format_t *fmt, or_options_t *options,
  1685. config_var_t *var, int use_defaults)
  1686. {
  1687. config_line_t *c;
  1688. char *msg = NULL;
  1689. CHECK(fmt, options);
  1690. option_clear(fmt, options, var); /* clear it first */
  1691. if (!use_defaults)
  1692. return; /* all done */
  1693. if (var->initvalue) {
  1694. c = tor_malloc_zero(sizeof(config_line_t));
  1695. c->key = tor_strdup(var->name);
  1696. c->value = tor_strdup(var->initvalue);
  1697. if (config_assign_value(fmt, options, c, &msg) < 0) {
  1698. log_warn(LD_BUG, "Failed to assign default: %s", msg);
  1699. tor_free(msg); /* if this happens it's a bug */
  1700. }
  1701. config_free_lines(c);
  1702. }
  1703. }
  1704. /** Print a usage message for tor. */
  1705. static void
  1706. print_usage(void)
  1707. {
  1708. printf(
  1709. "Copyright 2001-2007 Roger Dingledine, Nick Mathewson.\n\n"
  1710. "tor -f <torrc> [args]\n"
  1711. "See man page for options, or http://tor.eff.org/ for documentation.\n");
  1712. }
  1713. /** Print all non-obsolete torrc options. */
  1714. static void
  1715. list_torrc_options(void)
  1716. {
  1717. int i;
  1718. smartlist_t *lines = smartlist_create();
  1719. for (i = 0; _option_vars[i].name; ++i) {
  1720. config_var_t *var = &_option_vars[i];
  1721. const char *desc;
  1722. if (var->type == CONFIG_TYPE_OBSOLETE ||
  1723. var->type == CONFIG_TYPE_LINELIST_V)
  1724. continue;
  1725. desc = config_find_description(&options_format, var->name);
  1726. printf("%s\n", var->name);
  1727. if (desc) {
  1728. wrap_string(lines, desc, 76, " ", " ");
  1729. SMARTLIST_FOREACH(lines, char *, cp, {
  1730. printf("%s", cp);
  1731. tor_free(cp);
  1732. });
  1733. smartlist_clear(lines);
  1734. }
  1735. }
  1736. }
  1737. /** Last value actually set by resolve_my_address. */
  1738. static uint32_t last_resolved_addr = 0;
  1739. /**
  1740. * Based on <b>options-\>Address</b>, guess our public IP address and put it
  1741. * (in host order) into *<b>addr_out</b>. If <b>hostname_out</b> is provided,
  1742. * set *<b>hostname_out</b> to a new string holding the hostname we used to
  1743. * get the address. Return 0 if all is well, or -1 if we can't find a suitable
  1744. * public IP address.
  1745. */
  1746. int
  1747. resolve_my_address(int warn_severity, or_options_t *options,
  1748. uint32_t *addr_out, char **hostname_out)
  1749. {
  1750. struct in_addr in;
  1751. struct hostent *rent;
  1752. char hostname[256];
  1753. int explicit_ip=1;
  1754. int explicit_hostname=1;
  1755. int from_interface=0;
  1756. char tmpbuf[INET_NTOA_BUF_LEN];
  1757. const char *address = options->Address;
  1758. int notice_severity = warn_severity <= LOG_NOTICE ?
  1759. LOG_NOTICE : warn_severity;
  1760. tor_assert(addr_out);
  1761. if (address && *address) {
  1762. strlcpy(hostname, address, sizeof(hostname));
  1763. } else { /* then we need to guess our address */
  1764. explicit_ip = 0; /* it's implicit */
  1765. explicit_hostname = 0; /* it's implicit */
  1766. if (gethostname(hostname, sizeof(hostname)) < 0) {
  1767. log_fn(warn_severity, LD_NET,"Error obtaining local hostname");
  1768. return -1;
  1769. }
  1770. log_debug(LD_CONFIG,"Guessed local host name as '%s'",hostname);
  1771. }
  1772. /* now we know hostname. resolve it and keep only the IP address */
  1773. if (tor_inet_aton(hostname, &in) == 0) {
  1774. /* then we have to resolve it */
  1775. explicit_ip = 0;
  1776. rent = (struct hostent *)gethostbyname(hostname);
  1777. if (!rent) {
  1778. uint32_t interface_ip;
  1779. if (explicit_hostname) {
  1780. log_fn(warn_severity, LD_CONFIG,
  1781. "Could not resolve local Address '%s'. Failing.", hostname);
  1782. return -1;
  1783. }
  1784. log_fn(notice_severity, LD_CONFIG,
  1785. "Could not resolve guessed local hostname '%s'. "
  1786. "Trying something else.", hostname);
  1787. if (get_interface_address(warn_severity, &interface_ip)) {
  1788. log_fn(warn_severity, LD_CONFIG,
  1789. "Could not get local interface IP address. Failing.");
  1790. return -1;
  1791. }
  1792. from_interface = 1;
  1793. in.s_addr = htonl(interface_ip);
  1794. tor_inet_ntoa(&in,tmpbuf,sizeof(tmpbuf));
  1795. log_fn(notice_severity, LD_CONFIG, "Learned IP address '%s' for "
  1796. "local interface. Using that.", tmpbuf);
  1797. strlcpy(hostname, "<guessed from interfaces>", sizeof(hostname));
  1798. } else {
  1799. tor_assert(rent->h_length == 4);
  1800. memcpy(&in.s_addr, rent->h_addr, rent->h_length);
  1801. if (!explicit_hostname &&
  1802. is_internal_IP(ntohl(in.s_addr), 0)) {
  1803. uint32_t interface_ip;
  1804. tor_inet_ntoa(&in,tmpbuf,sizeof(tmpbuf));
  1805. log_fn(notice_severity, LD_CONFIG, "Guessed local hostname '%s' "
  1806. "resolves to a private IP address (%s). Trying something "
  1807. "else.", hostname, tmpbuf);
  1808. if (get_interface_address(warn_severity, &interface_ip)) {
  1809. log_fn(warn_severity, LD_CONFIG,
  1810. "Could not get local interface IP address. Too bad.");
  1811. } else if (is_internal_IP(interface_ip, 0)) {
  1812. struct in_addr in2;
  1813. in2.s_addr = htonl(interface_ip);
  1814. tor_inet_ntoa(&in2,tmpbuf,sizeof(tmpbuf));
  1815. log_fn(notice_severity, LD_CONFIG,
  1816. "Interface IP address '%s' is a private address too. "
  1817. "Ignoring.", tmpbuf);
  1818. } else {
  1819. from_interface = 1;
  1820. in.s_addr = htonl(interface_ip);
  1821. tor_inet_ntoa(&in,tmpbuf,sizeof(tmpbuf));
  1822. log_fn(notice_severity, LD_CONFIG,
  1823. "Learned IP address '%s' for local interface."
  1824. " Using that.", tmpbuf);
  1825. strlcpy(hostname, "<guessed from interfaces>", sizeof(hostname));
  1826. }
  1827. }
  1828. }
  1829. }
  1830. tor_inet_ntoa(&in,tmpbuf,sizeof(tmpbuf));
  1831. if (is_internal_IP(ntohl(in.s_addr), 0) &&
  1832. options->_PublishServerDescriptor) {
  1833. /* make sure we're ok with publishing an internal IP */
  1834. if (!options->DirServers) {
  1835. /* if they are using the default dirservers, disallow internal IPs
  1836. * always. */
  1837. log_fn(warn_severity, LD_CONFIG,
  1838. "Address '%s' resolves to private IP address '%s'. "
  1839. "Tor servers that use the default DirServers must have public "
  1840. "IP addresses.", hostname, tmpbuf);
  1841. return -1;
  1842. }
  1843. if (!explicit_ip) {
  1844. /* even if they've set their own dirservers, require an explicit IP if
  1845. * they're using an internal address. */
  1846. log_fn(warn_severity, LD_CONFIG, "Address '%s' resolves to private "
  1847. "IP address '%s'. Please set the Address config option to be "
  1848. "the IP address you want to use.", hostname, tmpbuf);
  1849. return -1;
  1850. }
  1851. }
  1852. log_debug(LD_CONFIG, "Resolved Address to '%s'.", tmpbuf);
  1853. *addr_out = ntohl(in.s_addr);
  1854. if (last_resolved_addr && last_resolved_addr != *addr_out) {
  1855. /* Leave this as a notice, regardless of the requested severity,
  1856. * at least until dynamic IP address support becomes bulletproof. */
  1857. log_notice(LD_NET, "Your IP address seems to have changed. Updating.");
  1858. ip_address_changed(0);
  1859. }
  1860. if (last_resolved_addr != *addr_out) {
  1861. const char *method;
  1862. const char *h = hostname;
  1863. if (explicit_ip) {
  1864. method = "CONFIGURED";
  1865. h = NULL;
  1866. } else if (explicit_hostname) {
  1867. method = "RESOLVED";
  1868. } else if (from_interface) {
  1869. method = "INTERFACE";
  1870. h = NULL;
  1871. } else {
  1872. method = "GETHOSTNAME";
  1873. }
  1874. control_event_server_status(LOG_NOTICE,
  1875. "EXTERNAL_ADDRESS ADDRESS=%s METHOD=%s %s%s",
  1876. tmpbuf, method, h?"HOSTNAME=":"", h);
  1877. }
  1878. last_resolved_addr = *addr_out;
  1879. if (hostname_out)
  1880. *hostname_out = tor_strdup(hostname);
  1881. return 0;
  1882. }
  1883. /** Return true iff <b>ip</b> (in host order) is judged to be on the
  1884. * same network as us, or on a private network.
  1885. */
  1886. int
  1887. is_local_IP(uint32_t ip)
  1888. {
  1889. if (is_internal_IP(ip, 0))
  1890. return 1;
  1891. /* Check whether ip is on the same /24 as we are. */
  1892. if (get_options()->EnforceDistinctSubnets == 0)
  1893. return 0;
  1894. /* It's possible that this next check will hit before the first time
  1895. * resolve_my_address actually succeeds. (For clients, it is likely that
  1896. * resolve_my_address will never be called at all). In those cases,
  1897. * last_resolved_addr will be 0, and so checking to see whether ip is on the
  1898. * same /24 as last_resolved_addr will be the same as checking whether it
  1899. * was on net 0, which is already done by is_internal_IP.
  1900. */
  1901. if ((last_resolved_addr & 0xffffff00ul) == (ip & 0xffffff00ul))
  1902. return 1;
  1903. return 0;
  1904. }
  1905. /** Called when we don't have a nickname set. Try to guess a good nickname
  1906. * based on the hostname, and return it in a newly allocated string. If we
  1907. * can't, return NULL and let the caller warn if it wants to. */
  1908. static char *
  1909. get_default_nickname(void)
  1910. {
  1911. static const char * const bad_default_nicknames[] = {
  1912. "localhost",
  1913. NULL,
  1914. };
  1915. char localhostname[256];
  1916. char *cp, *out, *outp;
  1917. int i;
  1918. if (gethostname(localhostname, sizeof(localhostname)) < 0)
  1919. return NULL;
  1920. /* Put it in lowercase; stop at the first dot. */
  1921. if ((cp = strchr(localhostname, '.')))
  1922. *cp = '\0';
  1923. tor_strlower(localhostname);
  1924. /* Strip invalid characters. */
  1925. cp = localhostname;
  1926. out = outp = tor_malloc(strlen(localhostname) + 1);
  1927. while (*cp) {
  1928. if (strchr(LEGAL_NICKNAME_CHARACTERS, *cp))
  1929. *outp++ = *cp++;
  1930. else
  1931. cp++;
  1932. }
  1933. *outp = '\0';
  1934. /* Enforce length. */
  1935. if (strlen(out) > MAX_NICKNAME_LEN)
  1936. out[MAX_NICKNAME_LEN]='\0';
  1937. /* Check for dumb names. */
  1938. for (i = 0; bad_default_nicknames[i]; ++i) {
  1939. if (!strcmp(out, bad_default_nicknames[i])) {
  1940. tor_free(out);
  1941. return NULL;
  1942. }
  1943. }
  1944. return out;
  1945. }
  1946. /** Release storage held by <b>options</b>. */
  1947. static void
  1948. config_free(config_format_t *fmt, void *options)
  1949. {
  1950. int i;
  1951. tor_assert(options);
  1952. for (i=0; fmt->vars[i].name; ++i)
  1953. option_clear(fmt, options, &(fmt->vars[i]));
  1954. if (fmt->extra) {
  1955. config_line_t **linep = STRUCT_VAR_P(options, fmt->extra->var_offset);
  1956. config_free_lines(*linep);
  1957. *linep = NULL;
  1958. }
  1959. tor_free(options);
  1960. }
  1961. /** Return true iff a and b contain identical keys and values in identical
  1962. * order. */
  1963. static int
  1964. config_lines_eq(config_line_t *a, config_line_t *b)
  1965. {
  1966. while (a && b) {
  1967. if (strcasecmp(a->key, b->key) || strcmp(a->value, b->value))
  1968. return 0;
  1969. a = a->next;
  1970. b = b->next;
  1971. }
  1972. if (a || b)
  1973. return 0;
  1974. return 1;
  1975. }
  1976. /** Return true iff the option <b>var</b> has the same value in <b>o1</b>
  1977. * and <b>o2</b>. Must not be called for LINELIST_S or OBSOLETE options.
  1978. */
  1979. static int
  1980. option_is_same(config_format_t *fmt,
  1981. or_options_t *o1, or_options_t *o2, const char *name)
  1982. {
  1983. config_line_t *c1, *c2;
  1984. int r = 1;
  1985. CHECK(fmt, o1);
  1986. CHECK(fmt, o2);
  1987. c1 = get_assigned_option(fmt, o1, name);
  1988. c2 = get_assigned_option(fmt, o2, name);
  1989. r = config_lines_eq(c1, c2);
  1990. config_free_lines(c1);
  1991. config_free_lines(c2);
  1992. return r;
  1993. }
  1994. /** Copy storage held by <b>old</b> into a new or_options_t and return it. */
  1995. static or_options_t *
  1996. options_dup(config_format_t *fmt, or_options_t *old)
  1997. {
  1998. or_options_t *newopts;
  1999. int i;
  2000. config_line_t *line;
  2001. newopts = config_alloc(fmt);
  2002. for (i=0; fmt->vars[i].name; ++i) {
  2003. if (fmt->vars[i].type == CONFIG_TYPE_LINELIST_S)
  2004. continue;
  2005. if (fmt->vars[i].type == CONFIG_TYPE_OBSOLETE)
  2006. continue;
  2007. line = get_assigned_option(fmt, old, fmt->vars[i].name);
  2008. if (line) {
  2009. char *msg = NULL;
  2010. if (config_assign(fmt, newopts, line, 0, 0, &msg) < 0) {
  2011. log_err(LD_BUG, "Config_get_assigned_option() generated "
  2012. "something we couldn't config_assign(): %s", msg);
  2013. tor_free(msg);
  2014. tor_assert(0);
  2015. }
  2016. }
  2017. config_free_lines(line);
  2018. }
  2019. return newopts;
  2020. }
  2021. /** Return a new empty or_options_t. Used for testing. */
  2022. or_options_t *
  2023. options_new(void)
  2024. {
  2025. return config_alloc(&options_format);
  2026. }
  2027. /** Set <b>options</b> to hold reasonable defaults for most options.
  2028. * Each option defaults to zero. */
  2029. void
  2030. options_init(or_options_t *options)
  2031. {
  2032. config_init(&options_format, options);
  2033. }
  2034. /* Set all vars in the configuration object 'options' to their default
  2035. * values. */
  2036. static void
  2037. config_init(config_format_t *fmt, void *options)
  2038. {
  2039. int i;
  2040. config_var_t *var;
  2041. CHECK(fmt, options);
  2042. for (i=0; fmt->vars[i].name; ++i) {
  2043. var = &fmt->vars[i];
  2044. if (!var->initvalue)
  2045. continue; /* defaults to NULL or 0 */
  2046. option_reset(fmt, options, var, 1);
  2047. }
  2048. }
  2049. /** Allocate and return a new string holding the written-out values of the vars
  2050. * in 'options'. If 'minimal', do not write out any default-valued vars.
  2051. * Else, if comment_defaults, write default values as comments.
  2052. */
  2053. static char *
  2054. config_dump(config_format_t *fmt, void *options, int minimal,
  2055. int comment_defaults)
  2056. {
  2057. smartlist_t *elements;
  2058. or_options_t *defaults;
  2059. config_line_t *line, *assigned;
  2060. char *result;
  2061. int i;
  2062. const char *desc;
  2063. char *msg = NULL;
  2064. defaults = config_alloc(fmt);
  2065. config_init(fmt, defaults);
  2066. /* XXX use a 1 here so we don't add a new log line while dumping */
  2067. if (fmt->validate_fn(NULL,defaults, 1, &msg) < 0) {
  2068. log_err(LD_BUG, "Failed to validate default config.");
  2069. tor_free(msg);
  2070. tor_assert(0);
  2071. }
  2072. elements = smartlist_create();
  2073. for (i=0; fmt->vars[i].name; ++i) {
  2074. int comment_option = 0;
  2075. if (fmt->vars[i].type == CONFIG_TYPE_OBSOLETE ||
  2076. fmt->vars[i].type == CONFIG_TYPE_LINELIST_S)
  2077. continue;
  2078. /* Don't save 'hidden' control variables. */
  2079. if (!strcmpstart(fmt->vars[i].name, "__"))
  2080. continue;
  2081. if (minimal && option_is_same(fmt, options, defaults, fmt->vars[i].name))
  2082. continue;
  2083. else if (comment_defaults &&
  2084. option_is_same(fmt, options, defaults, fmt->vars[i].name))
  2085. comment_option = 1;
  2086. desc = config_find_description(fmt, fmt->vars[i].name);
  2087. line = assigned = get_assigned_option(fmt, options, fmt->vars[i].name);
  2088. if (line && desc) {
  2089. /* Only dump the description if there's something to describe. */
  2090. wrap_string(elements, desc, 78, "# ", "# ");
  2091. }
  2092. for (; line; line = line->next) {
  2093. size_t len = strlen(line->key) + strlen(line->value) + 5;
  2094. char *tmp;
  2095. tmp = tor_malloc(len);
  2096. if (tor_snprintf(tmp, len, "%s%s %s\n",
  2097. comment_option ? "# " : "",
  2098. line->key, line->value)<0) {
  2099. log_err(LD_BUG,"Internal error writing option value");
  2100. tor_assert(0);
  2101. }
  2102. smartlist_add(elements, tmp);
  2103. }
  2104. config_free_lines(assigned);
  2105. }
  2106. if (fmt->extra) {
  2107. line = *(config_line_t**)STRUCT_VAR_P(options, fmt->extra->var_offset);
  2108. for (; line; line = line->next) {
  2109. size_t len = strlen(line->key) + strlen(line->value) + 3;
  2110. char *tmp;
  2111. tmp = tor_malloc(len);
  2112. if (tor_snprintf(tmp, len, "%s %s\n", line->key, line->value)<0) {
  2113. log_err(LD_BUG,"Internal error writing option value");
  2114. tor_assert(0);
  2115. }
  2116. smartlist_add(elements, tmp);
  2117. }
  2118. }
  2119. result = smartlist_join_strings(elements, "", 0, NULL);
  2120. SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
  2121. smartlist_free(elements);
  2122. config_free(fmt, defaults);
  2123. return result;
  2124. }
  2125. /** Return a string containing a possible configuration file that would give
  2126. * the configuration in <b>options</b>. If <b>minimal</b> is true, do not
  2127. * include options that are the same as Tor's defaults.
  2128. */
  2129. static char *
  2130. options_dump(or_options_t *options, int minimal)
  2131. {
  2132. return config_dump(&options_format, options, minimal, 0);
  2133. }
  2134. /** Return 0 if every element of sl is a string holding a decimal
  2135. * representation of a port number, or if sl is NULL.
  2136. * Otherwise set *msg and return -1. */
  2137. static int
  2138. validate_ports_csv(smartlist_t *sl, const char *name, char **msg)
  2139. {
  2140. int i;
  2141. char buf[1024];
  2142. tor_assert(name);
  2143. if (!sl)
  2144. return 0;
  2145. SMARTLIST_FOREACH(sl, const char *, cp,
  2146. {
  2147. i = atoi(cp);
  2148. if (i < 1 || i > 65535) {
  2149. int r = tor_snprintf(buf, sizeof(buf),
  2150. "Port '%s' out of range in %s", cp, name);
  2151. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2152. return -1;
  2153. }
  2154. });
  2155. return 0;
  2156. }
  2157. /** If <b>value</b> exceeds ROUTER_MAX_DECLARED_BANDWIDTH, write
  2158. * a complaint into *<b>msg</b> using string <b>desc</b>, and return -1.
  2159. * Else return 0.
  2160. */
  2161. static int
  2162. ensure_bandwidth_cap(uint64_t *value, const char *desc, char **msg)
  2163. {
  2164. int r;
  2165. char buf[1024];
  2166. if (*value > ROUTER_MAX_DECLARED_BANDWIDTH) {
  2167. /* This handles an understandable special case where somebody says "2gb"
  2168. * whereas our actual maximum is 2gb-1 (INT_MAX) */
  2169. --*value;
  2170. }
  2171. if (*value > ROUTER_MAX_DECLARED_BANDWIDTH) {
  2172. r = tor_snprintf(buf, sizeof(buf), "%s ("U64_FORMAT") must be at most %d",
  2173. desc, U64_PRINTF_ARG(*value),
  2174. ROUTER_MAX_DECLARED_BANDWIDTH);
  2175. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2176. return -1;
  2177. }
  2178. return 0;
  2179. }
  2180. /** Parse an authority type from <b>list</b> and write it to *<b>auth</b>. If
  2181. * <b>compatible</b> is non-zero, treat "1" as "v1,v2" and treat "0" as "".
  2182. * Return 0 on success or -1 if not a recognized authority type (in which
  2183. * case the value of *<b>auth</b> is undefined). */
  2184. static int
  2185. parse_authority_type_from_list(smartlist_t *list, authority_type_t *auth,
  2186. int compatible)
  2187. {
  2188. tor_assert(auth);
  2189. *auth = NO_AUTHORITY;
  2190. if (!list) /* empty list, answer is none */
  2191. return 0;
  2192. SMARTLIST_FOREACH(list, const char *, string, {
  2193. if (!strcasecmp(string, "v1"))
  2194. *auth |= V1_AUTHORITY;
  2195. else if (compatible && !strcmp(string, "1"))
  2196. *auth |= V1_AUTHORITY | V2_AUTHORITY;
  2197. else if (!strcasecmp(string, "v2"))
  2198. *auth |= V2_AUTHORITY;
  2199. else if (!strcasecmp(string, "v3"))
  2200. *auth |= V3_AUTHORITY;
  2201. else if (!strcasecmp(string, "bridge"))
  2202. *auth |= BRIDGE_AUTHORITY;
  2203. else if (!strcasecmp(string, "hidserv"))
  2204. *auth |= HIDSERV_AUTHORITY;
  2205. else if (!strcasecmp(string, "") || (compatible && !strcmp(string, "0")))
  2206. /* no authority */;
  2207. else
  2208. return -1;
  2209. });
  2210. return 0;
  2211. }
  2212. /** Lowest allowable value for RendPostPeriod; if this is too low, hidden
  2213. * services can overload the directory system. */
  2214. #define MIN_REND_POST_PERIOD (10*60)
  2215. /** Highest allowable value for RendPostPeriod. */
  2216. #define MAX_DIR_PERIOD (MIN_ONION_KEY_LIFETIME/2)
  2217. /** Return 0 if every setting in <b>options</b> is reasonable, and a
  2218. * permissible transition from <b>old_options</b>. Else return -1.
  2219. * Should have no side effects, except for normalizing the contents of
  2220. * <b>options</b>.
  2221. *
  2222. * On error, tor_strdup an error explanation into *<b>msg</b>.
  2223. *
  2224. * XXX
  2225. * If <b>from_setconf</b>, we were called by the controller, and our
  2226. * Log line should stay empty. If it's 0, then give us a default log
  2227. * if there are no logs defined.
  2228. */
  2229. static int
  2230. options_validate(or_options_t *old_options, or_options_t *options,
  2231. int from_setconf, char **msg)
  2232. {
  2233. int i, r;
  2234. config_line_t *cl;
  2235. const char *uname = get_uname();
  2236. char buf[1024];
  2237. #define REJECT(arg) \
  2238. STMT_BEGIN *msg = tor_strdup(arg); return -1; STMT_END
  2239. #define COMPLAIN(arg) STMT_BEGIN log(LOG_WARN, LD_CONFIG, arg); STMT_END
  2240. tor_assert(msg);
  2241. *msg = NULL;
  2242. if (options->ORPort < 0 || options->ORPort > 65535)
  2243. REJECT("ORPort option out of bounds.");
  2244. if (server_mode(options) &&
  2245. (!strcmpstart(uname, "Windows 95") ||
  2246. !strcmpstart(uname, "Windows 98") ||
  2247. !strcmpstart(uname, "Windows Me"))) {
  2248. log(LOG_WARN, LD_CONFIG, "Tor is running as a server, but you are "
  2249. "running %s; this probably won't work. See "
  2250. "http://wiki.noreply.org/noreply/TheOnionRouter/TorFAQ#ServerOS "
  2251. "for details.", uname);
  2252. }
  2253. if (options->ORPort == 0 && options->ORListenAddress != NULL)
  2254. REJECT("ORPort must be defined if ORListenAddress is defined.");
  2255. if (options->DirPort == 0 && options->DirListenAddress != NULL)
  2256. REJECT("DirPort must be defined if DirListenAddress is defined.");
  2257. if (options->DNSPort == 0 && options->DNSListenAddress != NULL)
  2258. REJECT("DNSPort must be defined if DNSListenAddress is defined.");
  2259. if (options->ControlPort == 0 && options->ControlListenAddress != NULL)
  2260. REJECT("ControlPort must be defined if ControlListenAddress is defined.");
  2261. if (options->TransPort == 0 && options->TransListenAddress != NULL)
  2262. REJECT("TransPort must be defined if TransListenAddress is defined.");
  2263. if (options->NatdPort == 0 && options->NatdListenAddress != NULL)
  2264. REJECT("NatdPort must be defined if NatdListenAddress is defined.");
  2265. /* Don't gripe about SocksPort 0 with SocksListenAddress set; a standard
  2266. * configuration does this. */
  2267. for (i = 0; i < 3; ++i) {
  2268. int is_socks = i==0;
  2269. int is_trans = i==1;
  2270. config_line_t *line, *opt, *old;
  2271. const char *tp;
  2272. if (is_socks) {
  2273. opt = options->SocksListenAddress;
  2274. old = old_options ? old_options->SocksListenAddress : NULL;
  2275. tp = "SOCKS proxy";
  2276. } else if (is_trans) {
  2277. opt = options->TransListenAddress;
  2278. old = old_options ? old_options->TransListenAddress : NULL;
  2279. tp = "transparent proxy";
  2280. } else {
  2281. opt = options->NatdListenAddress;
  2282. old = old_options ? old_options->NatdListenAddress : NULL;
  2283. tp = "natd proxy";
  2284. }
  2285. for (line = opt; line; line = line->next) {
  2286. char *address = NULL;
  2287. uint16_t port;
  2288. uint32_t addr;
  2289. if (parse_addr_port(LOG_WARN, line->value, &address, &addr, &port)<0)
  2290. continue; /* We'll warn about this later. */
  2291. if (!is_internal_IP(addr, 1) &&
  2292. (!old_options || !config_lines_eq(old, opt))) {
  2293. log_warn(LD_CONFIG,
  2294. "You specified a public address '%s' for a %s. Other "
  2295. "people on the Internet might find your computer and use it as "
  2296. "an open %s. Please don't allow this unless you have "
  2297. "a good reason.", address, tp, tp);
  2298. }
  2299. tor_free(address);
  2300. }
  2301. }
  2302. if (validate_data_directory(options)<0)
  2303. REJECT("Invalid DataDirectory");
  2304. if (options->Nickname == NULL) {
  2305. if (server_mode(options)) {
  2306. if (!(options->Nickname = get_default_nickname())) {
  2307. log_notice(LD_CONFIG, "Couldn't pick a nickname based on "
  2308. "our hostname; using %s instead.", UNNAMED_ROUTER_NICKNAME);
  2309. options->Nickname = tor_strdup(UNNAMED_ROUTER_NICKNAME);
  2310. } else {
  2311. log_notice(LD_CONFIG, "Choosing default nickname '%s'",
  2312. options->Nickname);
  2313. }
  2314. }
  2315. } else {
  2316. if (!is_legal_nickname(options->Nickname)) {
  2317. r = tor_snprintf(buf, sizeof(buf),
  2318. "Nickname '%s' is wrong length or contains illegal characters.",
  2319. options->Nickname);
  2320. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2321. return -1;
  2322. }
  2323. }
  2324. if (server_mode(options) && !options->ContactInfo)
  2325. log(LOG_NOTICE, LD_CONFIG, "Your ContactInfo config option is not set. "
  2326. "Please consider setting it, so we can contact you if your server is "
  2327. "misconfigured or something else goes wrong.");
  2328. /* Special case on first boot if no Log options are given. */
  2329. if (!options->Logs && !options->RunAsDaemon && !from_setconf)
  2330. config_line_append(&options->Logs, "Log", "notice stdout");
  2331. if (options_init_logs(options, 1)<0) /* Validate the log(s) */
  2332. REJECT("Failed to validate Log options. See logs for details.");
  2333. if (options->NoPublish) {
  2334. log(LOG_WARN, LD_CONFIG,
  2335. "NoPublish is obsolete. Use PublishServerDescriptor instead.");
  2336. SMARTLIST_FOREACH(options->PublishServerDescriptor, char *, s,
  2337. tor_free(s));
  2338. smartlist_clear(options->PublishServerDescriptor);
  2339. }
  2340. if (authdir_mode(options)) {
  2341. /* confirm that our address isn't broken, so we can complain now */
  2342. uint32_t tmp;
  2343. if (resolve_my_address(LOG_WARN, options, &tmp, NULL) < 0)
  2344. REJECT("Failed to resolve/guess local address. See logs for details.");
  2345. }
  2346. #ifndef MS_WINDOWS
  2347. if (options->RunAsDaemon && torrc_fname && path_is_relative(torrc_fname))
  2348. REJECT("Can't use a relative path to torrc when RunAsDaemon is set.");
  2349. #endif
  2350. if (options->SocksPort < 0 || options->SocksPort > 65535)
  2351. REJECT("SocksPort option out of bounds.");
  2352. if (options->DNSPort < 0 || options->DNSPort > 65535)
  2353. REJECT("DNSPort option out of bounds.");
  2354. if (options->TransPort < 0 || options->TransPort > 65535)
  2355. REJECT("TransPort option out of bounds.");
  2356. if (options->NatdPort < 0 || options->NatdPort > 65535)
  2357. REJECT("NatdPort option out of bounds.");
  2358. if (options->SocksPort == 0 && options->TransPort == 0 &&
  2359. options->NatdPort == 0 && options->ORPort == 0)
  2360. REJECT("SocksPort, TransPort, NatdPort, and ORPort are all undefined? "
  2361. "Quitting.");
  2362. if (options->ControlPort < 0 || options->ControlPort > 65535)
  2363. REJECT("ControlPort option out of bounds.");
  2364. if (options->DirPort < 0 || options->DirPort > 65535)
  2365. REJECT("DirPort option out of bounds.");
  2366. #ifndef USE_TRANSPARENT
  2367. if (options->TransPort || options->TransListenAddress)
  2368. REJECT("TransPort and TransListenAddress are disabled in this build.");
  2369. #endif
  2370. if (options->StrictExitNodes &&
  2371. (!options->ExitNodes || !strlen(options->ExitNodes)) &&
  2372. (!old_options ||
  2373. (old_options->StrictExitNodes != options->StrictExitNodes) ||
  2374. (!opt_streq(old_options->ExitNodes, options->ExitNodes))))
  2375. COMPLAIN("StrictExitNodes set, but no ExitNodes listed.");
  2376. if (options->StrictEntryNodes &&
  2377. (!options->EntryNodes || !strlen(options->EntryNodes)) &&
  2378. (!old_options ||
  2379. (old_options->StrictEntryNodes != options->StrictEntryNodes) ||
  2380. (!opt_streq(old_options->EntryNodes, options->EntryNodes))))
  2381. COMPLAIN("StrictEntryNodes set, but no EntryNodes listed.");
  2382. if (options->AuthoritativeDir) {
  2383. if (!options->ContactInfo)
  2384. REJECT("Authoritative directory servers must set ContactInfo");
  2385. if (options->V1AuthoritativeDir && !options->RecommendedVersions)
  2386. REJECT("V1 auth dir servers must set RecommendedVersions.");
  2387. if (!options->RecommendedClientVersions)
  2388. options->RecommendedClientVersions =
  2389. config_lines_dup(options->RecommendedVersions);
  2390. if (!options->RecommendedServerVersions)
  2391. options->RecommendedServerVersions =
  2392. config_lines_dup(options->RecommendedVersions);
  2393. if (options->VersioningAuthoritativeDir &&
  2394. (!options->RecommendedClientVersions ||
  2395. !options->RecommendedServerVersions))
  2396. REJECT("Versioning auth dir servers must set Recommended*Versions.");
  2397. if (options->UseEntryGuards) {
  2398. log_info(LD_CONFIG, "Authoritative directory servers can't set "
  2399. "UseEntryGuards. Disabling.");
  2400. options->UseEntryGuards = 0;
  2401. }
  2402. if (!options->DownloadExtraInfo) {
  2403. log_info(LD_CONFIG, "Authoritative directories always try to download "
  2404. "extra-info documents. Setting DownloadExtraInfo.");
  2405. options->DownloadExtraInfo = 1;
  2406. }
  2407. if (!(options->BridgeAuthoritativeDir || options->HSAuthoritativeDir ||
  2408. options->V1AuthoritativeDir || options->V2AuthoritativeDir ||
  2409. options->V3AuthoritativeDir))
  2410. REJECT("AuthoritativeDir is set, but none of "
  2411. "(Bridge/HS/V1/V2/V3)AuthoriativeDir is set.");
  2412. }
  2413. if (options->AuthoritativeDir && !options->DirPort)
  2414. REJECT("Running as authoritative directory, but no DirPort set.");
  2415. if (options->AuthoritativeDir && !options->ORPort)
  2416. REJECT("Running as authoritative directory, but no ORPort set.");
  2417. if (options->AuthoritativeDir && options->ClientOnly)
  2418. REJECT("Running as authoritative directory, but ClientOnly also set.");
  2419. if (options->HSAuthorityRecordStats && !options->HSAuthoritativeDir)
  2420. REJECT("HSAuthorityRecordStats is set but we're not running as "
  2421. "a hidden service authority.");
  2422. if (options->ConnLimit <= 0) {
  2423. r = tor_snprintf(buf, sizeof(buf),
  2424. "ConnLimit must be greater than 0, but was set to %d",
  2425. options->ConnLimit);
  2426. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2427. return -1;
  2428. }
  2429. if (validate_ports_csv(options->FirewallPorts, "FirewallPorts", msg) < 0)
  2430. return -1;
  2431. if (validate_ports_csv(options->LongLivedPorts, "LongLivedPorts", msg) < 0)
  2432. return -1;
  2433. if (options->FascistFirewall && !options->ReachableAddresses) {
  2434. if (options->FirewallPorts && smartlist_len(options->FirewallPorts)) {
  2435. /* We already have firewall ports set, so migrate them to
  2436. * ReachableAddresses, which will set ReachableORAddresses and
  2437. * ReachableDirAddresses if they aren't set explicitly. */
  2438. smartlist_t *instead = smartlist_create();
  2439. config_line_t *new_line = tor_malloc_zero(sizeof(config_line_t));
  2440. new_line->key = tor_strdup("ReachableAddresses");
  2441. /* If we're configured with the old format, we need to prepend some
  2442. * open ports. */
  2443. SMARTLIST_FOREACH(options->FirewallPorts, const char *, portno,
  2444. {
  2445. int p = atoi(portno);
  2446. char *s;
  2447. if (p<0) continue;
  2448. s = tor_malloc(16);
  2449. tor_snprintf(s, 16, "*:%d", p);
  2450. smartlist_add(instead, s);
  2451. });
  2452. new_line->value = smartlist_join_strings(instead,",",0,NULL);
  2453. /* These have been deprecated since 0.1.1.5-alpha-cvs */
  2454. log(LOG_NOTICE, LD_CONFIG,
  2455. "Converting FascistFirewall and FirewallPorts "
  2456. "config options to new format: \"ReachableAddresses %s\"",
  2457. new_line->value);
  2458. options->ReachableAddresses = new_line;
  2459. SMARTLIST_FOREACH(instead, char *, cp, tor_free(cp));
  2460. smartlist_free(instead);
  2461. } else {
  2462. /* We do not have FirewallPorts set, so add 80 to
  2463. * ReachableDirAddresses, and 443 to ReachableORAddresses. */
  2464. if (!options->ReachableDirAddresses) {
  2465. config_line_t *new_line = tor_malloc_zero(sizeof(config_line_t));
  2466. new_line->key = tor_strdup("ReachableDirAddresses");
  2467. new_line->value = tor_strdup("*:80");
  2468. options->ReachableDirAddresses = new_line;
  2469. log(LOG_NOTICE, LD_CONFIG, "Converting FascistFirewall config option "
  2470. "to new format: \"ReachableDirAddresses *:80\"");
  2471. }
  2472. if (!options->ReachableORAddresses) {
  2473. config_line_t *new_line = tor_malloc_zero(sizeof(config_line_t));
  2474. new_line->key = tor_strdup("ReachableORAddresses");
  2475. new_line->value = tor_strdup("*:443");
  2476. options->ReachableORAddresses = new_line;
  2477. log(LOG_NOTICE, LD_CONFIG, "Converting FascistFirewall config option "
  2478. "to new format: \"ReachableORAddresses *:443\"");
  2479. }
  2480. }
  2481. }
  2482. for (i=0; i<3; i++) {
  2483. config_line_t **linep =
  2484. (i==0) ? &options->ReachableAddresses :
  2485. (i==1) ? &options->ReachableORAddresses :
  2486. &options->ReachableDirAddresses;
  2487. if (!*linep)
  2488. continue;
  2489. /* We need to end with a reject *:*, not an implicit accept *:* */
  2490. for (;;) {
  2491. if (!strcmp((*linep)->value, "reject *:*")) /* already there */
  2492. break;
  2493. linep = &((*linep)->next);
  2494. if (!*linep) {
  2495. *linep = tor_malloc_zero(sizeof(config_line_t));
  2496. (*linep)->key = tor_strdup(
  2497. (i==0) ? "ReachableAddresses" :
  2498. (i==1) ? "ReachableORAddresses" :
  2499. "ReachableDirAddresses");
  2500. (*linep)->value = tor_strdup("reject *:*");
  2501. break;
  2502. }
  2503. }
  2504. }
  2505. if ((options->ReachableAddresses ||
  2506. options->ReachableORAddresses ||
  2507. options->ReachableDirAddresses) &&
  2508. server_mode(options))
  2509. REJECT("Servers must be able to freely connect to the rest "
  2510. "of the Internet, so they must not set Reachable*Addresses "
  2511. "or FascistFirewall.");
  2512. options->_AllowInvalid = 0;
  2513. if (options->AllowInvalidNodes) {
  2514. SMARTLIST_FOREACH(options->AllowInvalidNodes, const char *, cp, {
  2515. if (!strcasecmp(cp, "entry"))
  2516. options->_AllowInvalid |= ALLOW_INVALID_ENTRY;
  2517. else if (!strcasecmp(cp, "exit"))
  2518. options->_AllowInvalid |= ALLOW_INVALID_EXIT;
  2519. else if (!strcasecmp(cp, "middle"))
  2520. options->_AllowInvalid |= ALLOW_INVALID_MIDDLE;
  2521. else if (!strcasecmp(cp, "introduction"))
  2522. options->_AllowInvalid |= ALLOW_INVALID_INTRODUCTION;
  2523. else if (!strcasecmp(cp, "rendezvous"))
  2524. options->_AllowInvalid |= ALLOW_INVALID_RENDEZVOUS;
  2525. else {
  2526. r = tor_snprintf(buf, sizeof(buf),
  2527. "Unrecognized value '%s' in AllowInvalidNodes", cp);
  2528. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2529. return -1;
  2530. }
  2531. });
  2532. }
  2533. if ((i = parse_authority_type_from_list(options->PublishServerDescriptor,
  2534. &options->_PublishServerDescriptor, 1) < 0)) {
  2535. r = tor_snprintf(buf, sizeof(buf),
  2536. "Unrecognized value '%s' for PublishServerDescriptor",
  2537. (char*)smartlist_get(options->PublishServerDescriptor, -i));
  2538. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2539. return -1;
  2540. }
  2541. if (options->RendPostPeriod < MIN_REND_POST_PERIOD) {
  2542. log(LOG_WARN,LD_CONFIG,"RendPostPeriod option must be at least %d seconds."
  2543. " Clipping.", MIN_REND_POST_PERIOD);
  2544. options->RendPostPeriod = MIN_REND_POST_PERIOD;
  2545. }
  2546. if (options->RendPostPeriod > MAX_DIR_PERIOD) {
  2547. log(LOG_WARN, LD_CONFIG, "RendPostPeriod is too large; clipping to %ds.",
  2548. MAX_DIR_PERIOD);
  2549. options->RendPostPeriod = MAX_DIR_PERIOD;
  2550. }
  2551. if (options->KeepalivePeriod < 1)
  2552. REJECT("KeepalivePeriod option must be positive.");
  2553. if (ensure_bandwidth_cap(&options->BandwidthRate,
  2554. "BandwidthRate", msg) < 0)
  2555. return -1;
  2556. if (ensure_bandwidth_cap(&options->BandwidthBurst,
  2557. "BandwidthBurst", msg) < 0)
  2558. return -1;
  2559. if (ensure_bandwidth_cap(&options->MaxAdvertisedBandwidth,
  2560. "MaxAdvertisedBandwidth", msg) < 0)
  2561. return -1;
  2562. if (ensure_bandwidth_cap(&options->RelayBandwidthRate,
  2563. "RelayBandwidthRate", msg) < 0)
  2564. return -1;
  2565. if (ensure_bandwidth_cap(&options->RelayBandwidthBurst,
  2566. "RelayBandwidthBurst", msg) < 0)
  2567. return -1;
  2568. if (server_mode(options)) {
  2569. if (options->BandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH*2) {
  2570. r = tor_snprintf(buf, sizeof(buf),
  2571. "BandwidthRate is set to %d bytes/second. "
  2572. "For servers, it must be at least %d.",
  2573. (int)options->BandwidthRate,
  2574. ROUTER_REQUIRED_MIN_BANDWIDTH*2);
  2575. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2576. return -1;
  2577. } else if (options->MaxAdvertisedBandwidth <
  2578. ROUTER_REQUIRED_MIN_BANDWIDTH) {
  2579. r = tor_snprintf(buf, sizeof(buf),
  2580. "MaxAdvertisedBandwidth is set to %d bytes/second. "
  2581. "For servers, it must be at least %d.",
  2582. (int)options->MaxAdvertisedBandwidth,
  2583. ROUTER_REQUIRED_MIN_BANDWIDTH);
  2584. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2585. return -1;
  2586. }
  2587. if (options->RelayBandwidthRate > options->RelayBandwidthBurst)
  2588. REJECT("RelayBandwidthBurst must be at least equal "
  2589. "to RelayBandwidthRate.");
  2590. if (options->RelayBandwidthRate &&
  2591. options->RelayBandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH) {
  2592. r = tor_snprintf(buf, sizeof(buf),
  2593. "RelayBandwidthRate is set to %d bytes/second. "
  2594. "For servers, it must be at least %d.",
  2595. (int)options->RelayBandwidthRate,
  2596. ROUTER_REQUIRED_MIN_BANDWIDTH);
  2597. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2598. return -1;
  2599. }
  2600. }
  2601. if (options->BandwidthRate > options->BandwidthBurst)
  2602. REJECT("BandwidthBurst must be at least equal to BandwidthRate.");
  2603. if (accounting_parse_options(options, 1)<0)
  2604. REJECT("Failed to parse accounting options. See logs for details.");
  2605. if (options->HttpProxy) { /* parse it now */
  2606. if (parse_addr_port(LOG_WARN, options->HttpProxy, NULL,
  2607. &options->HttpProxyAddr, &options->HttpProxyPort) < 0)
  2608. REJECT("HttpProxy failed to parse or resolve. Please fix.");
  2609. if (options->HttpProxyPort == 0) { /* give it a default */
  2610. options->HttpProxyPort = 80;
  2611. }
  2612. }
  2613. if (options->HttpProxyAuthenticator) {
  2614. if (strlen(options->HttpProxyAuthenticator) >= 48)
  2615. REJECT("HttpProxyAuthenticator is too long (>= 48 chars).");
  2616. }
  2617. if (options->HttpsProxy) { /* parse it now */
  2618. if (parse_addr_port(LOG_WARN, options->HttpsProxy, NULL,
  2619. &options->HttpsProxyAddr, &options->HttpsProxyPort) <0)
  2620. REJECT("HttpsProxy failed to parse or resolve. Please fix.");
  2621. if (options->HttpsProxyPort == 0) { /* give it a default */
  2622. options->HttpsProxyPort = 443;
  2623. }
  2624. }
  2625. if (options->HttpsProxyAuthenticator) {
  2626. if (strlen(options->HttpsProxyAuthenticator) >= 48)
  2627. REJECT("HttpsProxyAuthenticator is too long (>= 48 chars).");
  2628. }
  2629. if (options->HashedControlPassword) {
  2630. if (decode_hashed_password(NULL, options->HashedControlPassword)<0)
  2631. REJECT("Bad HashedControlPassword: wrong length or bad encoding");
  2632. }
  2633. if (options->ControlListenAddress) {
  2634. int all_are_local = 1;
  2635. config_line_t *ln;
  2636. for (ln = options->ControlListenAddress; ln; ln = ln->next) {
  2637. if (strcmpstart(ln->value, "127."))
  2638. all_are_local = 0;
  2639. }
  2640. if (!all_are_local) {
  2641. if (!options->HashedControlPassword && !options->CookieAuthentication) {
  2642. log_warn(LD_CONFIG, "You have a ControlListenAddress set to accept "
  2643. "connections from a non-local address. This means that "
  2644. "any program on the internet can reconfigure your Tor. "
  2645. "That's so bad that I'm closing your ControlPort for you.");
  2646. options->ControlPort = 0;
  2647. } else {
  2648. log_warn(LD_CONFIG, "You have a ControlListenAddress set to accept "
  2649. "connections from a non-local address. This means that "
  2650. "programs not running on your computer can reconfigure your "
  2651. "Tor. That's pretty bad!");
  2652. }
  2653. }
  2654. }
  2655. if (options->ControlPort && !options->HashedControlPassword &&
  2656. !options->CookieAuthentication) {
  2657. log_warn(LD_CONFIG, "ControlPort is open, but no authentication method "
  2658. "has been configured. This means that any program on your "
  2659. "computer can reconfigure your Tor. That's bad! You should "
  2660. "upgrade your Tor controller as soon as possible.");
  2661. }
  2662. if (options->UseEntryGuards && ! options->NumEntryGuards)
  2663. REJECT("Cannot enable UseEntryGuards with NumEntryGuards set to 0");
  2664. if (check_nickname_list(options->ExitNodes, "ExitNodes", msg))
  2665. return -1;
  2666. if (check_nickname_list(options->EntryNodes, "EntryNodes", msg))
  2667. return -1;
  2668. if (check_nickname_list(options->ExcludeNodes, "ExcludeNodes", msg))
  2669. return -1;
  2670. if (check_nickname_list(options->RendNodes, "RendNodes", msg))
  2671. return -1;
  2672. if (check_nickname_list(options->RendNodes, "RendExcludeNodes", msg))
  2673. return -1;
  2674. if (check_nickname_list(options->TestVia, "TestVia", msg))
  2675. return -1;
  2676. if (check_nickname_list(options->MyFamily, "MyFamily", msg))
  2677. return -1;
  2678. for (cl = options->NodeFamilies; cl; cl = cl->next) {
  2679. if (check_nickname_list(cl->value, "NodeFamily", msg))
  2680. return -1;
  2681. }
  2682. if (validate_addr_policies(options, msg) < 0)
  2683. return -1;
  2684. for (cl = options->RedirectExit; cl; cl = cl->next) {
  2685. if (parse_redirect_line(NULL, cl, msg)<0)
  2686. return -1;
  2687. }
  2688. if (options->DirServers) {
  2689. if (!old_options ||
  2690. !config_lines_eq(options->DirServers, old_options->DirServers))
  2691. COMPLAIN("You have used DirServer to specify directory authorities in "
  2692. "your configuration. This is potentially dangerous: it can "
  2693. "make you look different from all other Tor users, and hurt "
  2694. "your anonymity. Even if you've specified the same "
  2695. "authorities as Tor uses by default, the defaults could "
  2696. "change in the future. Be sure you know what you're doing.");
  2697. for (cl = options->DirServers; cl; cl = cl->next) {
  2698. if (parse_dir_server_line(cl->value, 1)<0)
  2699. REJECT("DirServer line did not parse. See logs for details.");
  2700. }
  2701. }
  2702. if (options->UseBridges && !options->Bridges)
  2703. REJECT("If you set UseBridges, you must specify at least one bridge.");
  2704. if (options->UseBridges && !options->TunnelDirConns)
  2705. REJECT("If you set UseBridges, you must set TunnelDirConns.");
  2706. if (options->Bridges) {
  2707. for (cl = options->Bridges; cl; cl = cl->next) {
  2708. if (parse_bridge_line(cl->value, 1)<0)
  2709. REJECT("Bridge line did not parse. See logs for details.");
  2710. }
  2711. }
  2712. if (options->ConstrainedSockets) {
  2713. /* If the user wants to constrain socket buffer use, make sure the desired
  2714. * limit is between MIN|MAX_TCPSOCK_BUFFER in k increments. */
  2715. if (options->ConstrainedSockSize < MIN_CONSTRAINED_TCP_BUFFER ||
  2716. options->ConstrainedSockSize > MAX_CONSTRAINED_TCP_BUFFER ||
  2717. options->ConstrainedSockSize % 1024) {
  2718. r = tor_snprintf(buf, sizeof(buf),
  2719. "ConstrainedSockSize is invalid. Must be a value between %d and %d "
  2720. "in 1024 byte increments.",
  2721. MIN_CONSTRAINED_TCP_BUFFER, MAX_CONSTRAINED_TCP_BUFFER);
  2722. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2723. return -1;
  2724. }
  2725. if (options->DirPort) {
  2726. /* Providing cached directory entries while system TCP buffers are scarce
  2727. * will exacerbate the socket errors. Suggest that this be disabled. */
  2728. COMPLAIN("You have requested constrained socket buffers while also "
  2729. "serving directory entries via DirPort. It is strongly "
  2730. "suggested that you disable serving directory requests when "
  2731. "system TCP buffer resources are scarce.");
  2732. }
  2733. }
  2734. if (options->V3AuthVoteDelay + options->V3AuthDistDelay >=
  2735. options->V3AuthVotingInterval/2) {
  2736. REJECT("V3AuthVoteDelay and V3AuthDistDelay must be no more than half "
  2737. "V3AuthVotingInterval");
  2738. }
  2739. if (options->V3AuthVoteDelay < MIN_VOTE_SECONDS)
  2740. REJECT("V3AuthVoteDelay is way too low.");
  2741. if (options->V3AuthDistDelay < MIN_DIST_SECONDS)
  2742. REJECT("V3AuthDistDelay is way too low.");
  2743. if (options->V3AuthNIntervalsValid < 2)
  2744. REJECT("V3AuthNIntervalsValid must be at least 2.");
  2745. if (options->V3AuthVotingInterval < MIN_VOTE_INTERVAL) {
  2746. REJECT("V3AuthVotingInterval is insanely low.");
  2747. } else if (options->V3AuthVotingInterval > 24*60*60) {
  2748. REJECT("V3AuthVotingInterval is insanely high.");
  2749. } else if (((24*60*60) % options->V3AuthVotingInterval) != 0) {
  2750. COMPLAIN("V3AuthVotingInterval does not divide evenly into 24 hours.");
  2751. }
  2752. if (rend_config_services(options, 1) < 0)
  2753. REJECT("Failed to configure rendezvous options. See logs for details.");
  2754. if (parse_virtual_addr_network(options->VirtualAddrNetwork, 1, NULL)<0)
  2755. return -1;
  2756. if (options->PreferTunneledDirConns && !options->TunnelDirConns)
  2757. REJECT("Must set TunnelDirConns if PreferTunneledDirConns is set.");
  2758. if (options->AutomapHostsSuffixes) {
  2759. SMARTLIST_FOREACH(options->AutomapHostsSuffixes, char *, suf,
  2760. {
  2761. size_t len = strlen(suf);
  2762. if (len && suf[len-1] == '.')
  2763. suf[len-1] = '\0';
  2764. });
  2765. }
  2766. return 0;
  2767. #undef REJECT
  2768. #undef COMPLAIN
  2769. }
  2770. /** Helper: return true iff s1 and s2 are both NULL, or both non-NULL
  2771. * equal strings. */
  2772. static int
  2773. opt_streq(const char *s1, const char *s2)
  2774. {
  2775. if (!s1 && !s2)
  2776. return 1;
  2777. else if (s1 && s2 && !strcmp(s1,s2))
  2778. return 1;
  2779. else
  2780. return 0;
  2781. }
  2782. /** Check if any of the previous options have changed but aren't allowed to. */
  2783. static int
  2784. options_transition_allowed(or_options_t *old, or_options_t *new_val,
  2785. char **msg)
  2786. {
  2787. if (!old)
  2788. return 0;
  2789. if (!opt_streq(old->PidFile, new_val->PidFile)) {
  2790. *msg = tor_strdup("PidFile is not allowed to change.");
  2791. return -1;
  2792. }
  2793. if (old->RunAsDaemon != new_val->RunAsDaemon) {
  2794. *msg = tor_strdup("While Tor is running, changing RunAsDaemon "
  2795. "is not allowed.");
  2796. return -1;
  2797. }
  2798. if (strcmp(old->DataDirectory,new_val->DataDirectory)!=0) {
  2799. char buf[1024];
  2800. int r = tor_snprintf(buf, sizeof(buf),
  2801. "While Tor is running, changing DataDirectory "
  2802. "(\"%s\"->\"%s\") is not allowed.",
  2803. old->DataDirectory, new_val->DataDirectory);
  2804. *msg = tor_strdup(r >= 0 ? buf : "internal error");
  2805. return -1;
  2806. }
  2807. if (!opt_streq(old->User, new_val->User)) {
  2808. *msg = tor_strdup("While Tor is running, changing User is not allowed.");
  2809. return -1;
  2810. }
  2811. if (!opt_streq(old->Group, new_val->Group)) {
  2812. *msg = tor_strdup("While Tor is running, changing Group is not allowed.");
  2813. return -1;
  2814. }
  2815. if (old->HardwareAccel != new_val->HardwareAccel) {
  2816. *msg = tor_strdup("While Tor is running, changing HardwareAccel is "
  2817. "not allowed.");
  2818. return -1;
  2819. }
  2820. return 0;
  2821. }
  2822. /** Return 1 if any change from <b>old_options</b> to <b>new_options</b>
  2823. * will require us to rotate the cpu and dns workers; else return 0. */
  2824. static int
  2825. options_transition_affects_workers(or_options_t *old_options,
  2826. or_options_t *new_options)
  2827. {
  2828. if (!opt_streq(old_options->DataDirectory, new_options->DataDirectory) ||
  2829. old_options->NumCpus != new_options->NumCpus ||
  2830. old_options->ORPort != new_options->ORPort ||
  2831. old_options->ServerDNSSearchDomains !=
  2832. new_options->ServerDNSSearchDomains ||
  2833. old_options->SafeLogging != new_options->SafeLogging ||
  2834. old_options->ClientOnly != new_options->ClientOnly ||
  2835. !config_lines_eq(old_options->Logs, new_options->Logs))
  2836. return 1;
  2837. /* Check whether log options match. */
  2838. /* Nothing that changed matters. */
  2839. return 0;
  2840. }
  2841. /** Return 1 if any change from <b>old_options</b> to <b>new_options</b>
  2842. * will require us to generate a new descriptor; else return 0. */
  2843. static int
  2844. options_transition_affects_descriptor(or_options_t *old_options,
  2845. or_options_t *new_options)
  2846. {
  2847. if (!opt_streq(old_options->DataDirectory, new_options->DataDirectory) ||
  2848. !opt_streq(old_options->Nickname,new_options->Nickname) ||
  2849. !opt_streq(old_options->Address,new_options->Address) ||
  2850. !config_lines_eq(old_options->ExitPolicy,new_options->ExitPolicy) ||
  2851. old_options->ORPort != new_options->ORPort ||
  2852. old_options->DirPort != new_options->DirPort ||
  2853. old_options->ClientOnly != new_options->ClientOnly ||
  2854. old_options->NoPublish != new_options->NoPublish ||
  2855. old_options->_PublishServerDescriptor !=
  2856. new_options->_PublishServerDescriptor ||
  2857. old_options->BandwidthRate != new_options->BandwidthRate ||
  2858. old_options->BandwidthBurst != new_options->BandwidthBurst ||
  2859. !opt_streq(old_options->ContactInfo, new_options->ContactInfo) ||
  2860. !opt_streq(old_options->MyFamily, new_options->MyFamily) ||
  2861. !opt_streq(old_options->AccountingStart, new_options->AccountingStart) ||
  2862. old_options->AccountingMax != new_options->AccountingMax)
  2863. return 1;
  2864. return 0;
  2865. }
  2866. #ifdef MS_WINDOWS
  2867. /** Return the directory on windows where we expect to find our application
  2868. * data. */
  2869. static char *
  2870. get_windows_conf_root(void)
  2871. {
  2872. static int is_set = 0;
  2873. static char path[MAX_PATH+1];
  2874. LPITEMIDLIST idl;
  2875. IMalloc *m;
  2876. HRESULT result;
  2877. if (is_set)
  2878. return path;
  2879. /* Find X:\documents and settings\username\application data\ .
  2880. * We would use SHGetSpecialFolder path, but that wasn't added until IE4.
  2881. */
  2882. if (!SUCCEEDED(SHGetSpecialFolderLocation(NULL, CSIDL_APPDATA,
  2883. &idl))) {
  2884. GetCurrentDirectory(MAX_PATH, path);
  2885. is_set = 1;
  2886. log_warn(LD_CONFIG,
  2887. "I couldn't find your application data folder: are you "
  2888. "running an ancient version of Windows 95? Defaulting to \"%s\"",
  2889. path);
  2890. return path;
  2891. }
  2892. /* Convert the path from an "ID List" (whatever that is!) to a path. */
  2893. result = SHGetPathFromIDList(idl, path);
  2894. /* Now we need to free the */
  2895. SHGetMalloc(&m);
  2896. if (m) {
  2897. m->lpVtbl->Free(m, idl);
  2898. m->lpVtbl->Release(m);
  2899. }
  2900. if (!SUCCEEDED(result)) {
  2901. return NULL;
  2902. }
  2903. strlcat(path,"\\tor",MAX_PATH);
  2904. is_set = 1;
  2905. return path;
  2906. }
  2907. #endif
  2908. /** Return the default location for our torrc file. */
  2909. static const char *
  2910. get_default_conf_file(void)
  2911. {
  2912. #ifdef MS_WINDOWS
  2913. static char path[MAX_PATH+1];
  2914. strlcpy(path, get_windows_conf_root(), MAX_PATH);
  2915. strlcat(path,"\\torrc",MAX_PATH);
  2916. return path;
  2917. #else
  2918. return (CONFDIR "/torrc");
  2919. #endif
  2920. }
  2921. /** Verify whether lst is a string containing valid-looking space-separated
  2922. * nicknames, or NULL. Return 0 on success. Warn and return -1 on failure.
  2923. */
  2924. static int
  2925. check_nickname_list(const char *lst, const char *name, char **msg)
  2926. {
  2927. int r = 0;
  2928. smartlist_t *sl;
  2929. if (!lst)
  2930. return 0;
  2931. sl = smartlist_create();
  2932. smartlist_split_string(sl, lst, ",", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2933. SMARTLIST_FOREACH(sl, const char *, s,
  2934. {
  2935. if (!is_legal_nickname_or_hexdigest(s)) {
  2936. char buf[1024];
  2937. int tmp = tor_snprintf(buf, sizeof(buf),
  2938. "Invalid nickname '%s' in %s line", s, name);
  2939. *msg = tor_strdup(tmp >= 0 ? buf : "internal error");
  2940. r = -1;
  2941. break;
  2942. }
  2943. });
  2944. SMARTLIST_FOREACH(sl, char *, s, tor_free(s));
  2945. smartlist_free(sl);
  2946. return r;
  2947. }
  2948. /** Read a configuration file into <b>options</b>, finding the configuration
  2949. * file location based on the command line. After loading the options,
  2950. * validate them for consistency, then take actions based on them.
  2951. * Return 0 if success, -1 if failure. */
  2952. int
  2953. options_init_from_torrc(int argc, char **argv)
  2954. {
  2955. or_options_t *oldoptions, *newoptions;
  2956. config_line_t *cl;
  2957. char *cf=NULL, *fname=NULL, *errmsg=NULL;
  2958. int i, retval;
  2959. int using_default_torrc;
  2960. int ignore_missing_torrc;
  2961. static char **backup_argv;
  2962. static int backup_argc;
  2963. if (argv) { /* first time we're called. save commandline args */
  2964. backup_argv = argv;
  2965. backup_argc = argc;
  2966. oldoptions = NULL;
  2967. } else { /* we're reloading. need to clean up old options first. */
  2968. argv = backup_argv;
  2969. argc = backup_argc;
  2970. oldoptions = get_options();
  2971. }
  2972. if (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1],"--help"))) {
  2973. print_usage();
  2974. exit(0);
  2975. }
  2976. if (argc > 1 && !strcmp(argv[1], "--list-torrc-options")) {
  2977. /* For documenting validating whether we've documented everything. */
  2978. list_torrc_options();
  2979. exit(0);
  2980. }
  2981. if (argc > 1 && (!strcmp(argv[1],"--version"))) {
  2982. printf("Tor version %s.\n",get_version());
  2983. if (argc > 2 && (!strcmp(argv[2],"--version"))) {
  2984. print_svn_version();
  2985. }
  2986. exit(0);
  2987. }
  2988. newoptions = tor_malloc_zero(sizeof(or_options_t));
  2989. newoptions->_magic = OR_OPTIONS_MAGIC;
  2990. options_init(newoptions);
  2991. /* learn config file name */
  2992. fname = NULL;
  2993. using_default_torrc = 1;
  2994. ignore_missing_torrc = 0;
  2995. newoptions->command = CMD_RUN_TOR;
  2996. for (i = 1; i < argc; ++i) {
  2997. if (i < argc-1 && !strcmp(argv[i],"-f")) {
  2998. if (fname) {
  2999. log(LOG_WARN, LD_CONFIG, "Duplicate -f options on command line.");
  3000. tor_free(fname);
  3001. }
  3002. #ifdef MS_WINDOWS
  3003. /* XXX one day we might want to extend expand_filename to work
  3004. * under Windows as well. */
  3005. fname = tor_strdup(argv[i+1]);
  3006. #else
  3007. fname = expand_filename(argv[i+1]);
  3008. #endif
  3009. using_default_torrc = 0;
  3010. ++i;
  3011. } else if (!strcmp(argv[i],"--ignore-missing-torrc")) {
  3012. ignore_missing_torrc = 1;
  3013. } else if (!strcmp(argv[i],"--list-fingerprint")) {
  3014. newoptions->command = CMD_LIST_FINGERPRINT;
  3015. } else if (!strcmp(argv[i],"--hash-password")) {
  3016. newoptions->command = CMD_HASH_PASSWORD;
  3017. newoptions->command_arg = tor_strdup( (i < argc-1) ? argv[i+1] : "");
  3018. ++i;
  3019. } else if (!strcmp(argv[i],"--verify-config")) {
  3020. newoptions->command = CMD_VERIFY_CONFIG;
  3021. }
  3022. }
  3023. if (using_default_torrc) {
  3024. /* didn't find one, try CONFDIR */
  3025. const char *dflt = get_default_conf_file();
  3026. if (dflt && file_status(dflt) == FN_FILE) {
  3027. fname = tor_strdup(dflt);
  3028. } else {
  3029. #ifndef MS_WINDOWS
  3030. char *fn;
  3031. fn = expand_filename("~/.torrc");
  3032. if (fn && file_status(fn) == FN_FILE) {
  3033. fname = fn;
  3034. } else {
  3035. tor_free(fn);
  3036. fname = tor_strdup(dflt);
  3037. }
  3038. #else
  3039. fname = tor_strdup(dflt);
  3040. #endif
  3041. }
  3042. }
  3043. tor_assert(fname);
  3044. log(LOG_DEBUG, LD_CONFIG, "Opening config file \"%s\"", fname);
  3045. tor_free(torrc_fname);
  3046. torrc_fname = fname;
  3047. /* get config lines, assign them */
  3048. if (file_status(fname) != FN_FILE ||
  3049. !(cf = read_file_to_str(fname,0,NULL))) {
  3050. if (using_default_torrc == 1 || ignore_missing_torrc ) {
  3051. log(LOG_NOTICE, LD_CONFIG, "Configuration file \"%s\" not present, "
  3052. "using reasonable defaults.", fname);
  3053. tor_free(fname); /* sets fname to NULL */
  3054. torrc_fname = NULL;
  3055. } else {
  3056. log(LOG_WARN, LD_CONFIG,
  3057. "Unable to open configuration file \"%s\".", fname);
  3058. goto err;
  3059. }
  3060. } else { /* it opened successfully. use it. */
  3061. retval = config_get_lines(cf, &cl);
  3062. tor_free(cf);
  3063. if (retval < 0)
  3064. goto err;
  3065. retval = config_assign(&options_format, newoptions, cl, 0, 0, &errmsg);
  3066. config_free_lines(cl);
  3067. if (retval < 0)
  3068. goto err;
  3069. }
  3070. /* Go through command-line variables too */
  3071. if (config_get_commandlines(argc, argv, &cl) < 0)
  3072. goto err;
  3073. retval = config_assign(&options_format, newoptions, cl, 0, 0, &errmsg);
  3074. config_free_lines(cl);
  3075. if (retval < 0)
  3076. goto err;
  3077. /* Validate newoptions */
  3078. if (options_validate(oldoptions, newoptions, 0, &errmsg) < 0)
  3079. goto err;
  3080. if (options_transition_allowed(oldoptions, newoptions, &errmsg) < 0)
  3081. goto err;
  3082. if (set_options(newoptions, &errmsg))
  3083. goto err; /* frees and replaces old options */
  3084. return 0;
  3085. err:
  3086. tor_free(fname);
  3087. torrc_fname = NULL;
  3088. config_free(&options_format, newoptions);
  3089. if (errmsg) {
  3090. log(LOG_WARN,LD_CONFIG,"Failed to parse/validate config: %s", errmsg);
  3091. tor_free(errmsg);
  3092. }
  3093. return -1;
  3094. }
  3095. /** Return the location for our configuration file.
  3096. */
  3097. const char *
  3098. get_torrc_fname(void)
  3099. {
  3100. if (torrc_fname)
  3101. return torrc_fname;
  3102. else
  3103. return get_default_conf_file();
  3104. }
  3105. /** Adjust the address map mased on the MapAddress elements in the
  3106. * configuration <b>options</b>
  3107. */
  3108. static void
  3109. config_register_addressmaps(or_options_t *options)
  3110. {
  3111. smartlist_t *elts;
  3112. config_line_t *opt;
  3113. char *from, *to;
  3114. addressmap_clear_configured();
  3115. elts = smartlist_create();
  3116. for (opt = options->AddressMap; opt; opt = opt->next) {
  3117. smartlist_split_string(elts, opt->value, NULL,
  3118. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 2);
  3119. if (smartlist_len(elts) >= 2) {
  3120. from = smartlist_get(elts,0);
  3121. to = smartlist_get(elts,1);
  3122. if (address_is_invalid_destination(to, 1)) {
  3123. log_warn(LD_CONFIG,
  3124. "Skipping invalid argument '%s' to MapAddress", to);
  3125. } else {
  3126. addressmap_register(from, tor_strdup(to), 0);
  3127. if (smartlist_len(elts)>2) {
  3128. log_warn(LD_CONFIG,"Ignoring extra arguments to MapAddress.");
  3129. }
  3130. }
  3131. } else {
  3132. log_warn(LD_CONFIG,"MapAddress '%s' has too few arguments. Ignoring.",
  3133. opt->value);
  3134. }
  3135. SMARTLIST_FOREACH(elts, char*, cp, tor_free(cp));
  3136. smartlist_clear(elts);
  3137. }
  3138. smartlist_free(elts);
  3139. }
  3140. /** If <b>range</b> is of the form MIN-MAX, for MIN and MAX both
  3141. * recognized log severity levels, set *<b>min_out</b> to MIN and
  3142. * *<b>max_out</b> to MAX and return 0. Else, if <b>range</b> is of
  3143. * the form MIN, act as if MIN-err had been specified. Else, warn and
  3144. * return -1.
  3145. */
  3146. static int
  3147. parse_log_severity_range(const char *range, int *min_out, int *max_out)
  3148. {
  3149. int levelMin, levelMax;
  3150. const char *cp;
  3151. cp = strchr(range, '-');
  3152. if (cp) {
  3153. if (cp == range) {
  3154. levelMin = LOG_DEBUG;
  3155. } else {
  3156. char *tmp_sev = tor_strndup(range, cp - range);
  3157. levelMin = parse_log_level(tmp_sev);
  3158. if (levelMin < 0) {
  3159. log_warn(LD_CONFIG, "Unrecognized minimum log severity '%s': must be "
  3160. "one of err|warn|notice|info|debug", tmp_sev);
  3161. tor_free(tmp_sev);
  3162. return -1;
  3163. }
  3164. tor_free(tmp_sev);
  3165. }
  3166. if (!*(cp+1)) {
  3167. levelMax = LOG_ERR;
  3168. } else {
  3169. levelMax = parse_log_level(cp+1);
  3170. if (levelMax < 0) {
  3171. log_warn(LD_CONFIG, "Unrecognized maximum log severity '%s': must be "
  3172. "one of err|warn|notice|info|debug", cp+1);
  3173. return -1;
  3174. }
  3175. }
  3176. } else {
  3177. levelMin = parse_log_level(range);
  3178. if (levelMin < 0) {
  3179. log_warn(LD_CONFIG, "Unrecognized log severity '%s': must be one of "
  3180. "err|warn|notice|info|debug", range);
  3181. return -1;
  3182. }
  3183. levelMax = LOG_ERR;
  3184. }
  3185. *min_out = levelMin;
  3186. *max_out = levelMax;
  3187. return 0;
  3188. }
  3189. /**
  3190. * Initialize the logs based on the configuration file.
  3191. */
  3192. static int
  3193. options_init_logs(or_options_t *options, int validate_only)
  3194. {
  3195. config_line_t *opt;
  3196. int ok;
  3197. smartlist_t *elts;
  3198. int daemon =
  3199. #ifdef MS_WINDOWS
  3200. 0;
  3201. #else
  3202. options->RunAsDaemon;
  3203. #endif
  3204. ok = 1;
  3205. elts = smartlist_create();
  3206. for (opt = options->Logs; opt; opt = opt->next) {
  3207. int levelMin=LOG_DEBUG, levelMax=LOG_ERR;
  3208. smartlist_split_string(elts, opt->value, NULL,
  3209. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 3);
  3210. if (smartlist_len(elts) == 0) {
  3211. log_warn(LD_CONFIG, "No arguments to Log option 'Log %s'", opt->value);
  3212. ok = 0; goto cleanup;
  3213. }
  3214. if (parse_log_severity_range(smartlist_get(elts,0), &levelMin,
  3215. &levelMax)) {
  3216. ok = 0; goto cleanup;
  3217. }
  3218. if (smartlist_len(elts) < 2) { /* only loglevels were provided */
  3219. if (!validate_only) {
  3220. if (daemon) {
  3221. log_warn(LD_CONFIG,
  3222. "Can't log to stdout with RunAsDaemon set; skipping stdout");
  3223. } else {
  3224. add_stream_log(levelMin, levelMax, "<stdout>", stdout);
  3225. }
  3226. }
  3227. goto cleanup;
  3228. }
  3229. if (!strcasecmp(smartlist_get(elts,1), "file")) {
  3230. if (smartlist_len(elts) != 3) {
  3231. log_warn(LD_CONFIG, "Bad syntax on file Log option 'Log %s'",
  3232. opt->value);
  3233. ok = 0; goto cleanup;
  3234. }
  3235. if (!validate_only) {
  3236. if (add_file_log(levelMin, levelMax, smartlist_get(elts, 2)) < 0) {
  3237. log_warn(LD_CONFIG, "Couldn't open file for 'Log %s'", opt->value);
  3238. ok = 0;
  3239. }
  3240. }
  3241. goto cleanup;
  3242. }
  3243. if (smartlist_len(elts) != 2) {
  3244. log_warn(LD_CONFIG, "Wrong number of arguments on Log option 'Log %s'",
  3245. opt->value);
  3246. ok = 0; goto cleanup;
  3247. }
  3248. if (!strcasecmp(smartlist_get(elts,1), "stdout")) {
  3249. if (daemon) {
  3250. log_warn(LD_CONFIG, "Can't log to stdout with RunAsDaemon set.");
  3251. ok = 0; goto cleanup;
  3252. }
  3253. if (!validate_only) {
  3254. add_stream_log(levelMin, levelMax, "<stdout>", stdout);
  3255. }
  3256. } else if (!strcasecmp(smartlist_get(elts,1), "stderr")) {
  3257. if (daemon) {
  3258. log_warn(LD_CONFIG, "Can't log to stderr with RunAsDaemon set.");
  3259. ok = 0; goto cleanup;
  3260. }
  3261. if (!validate_only) {
  3262. add_stream_log(levelMin, levelMax, "<stderr>", stderr);
  3263. }
  3264. } else if (!strcasecmp(smartlist_get(elts,1), "syslog")) {
  3265. #ifdef HAVE_SYSLOG_H
  3266. if (!validate_only)
  3267. add_syslog_log(levelMin, levelMax);
  3268. #else
  3269. log_warn(LD_CONFIG, "Syslog is not supported on this system. Sorry.");
  3270. #endif
  3271. } else {
  3272. log_warn(LD_CONFIG, "Unrecognized log type %s",
  3273. (const char*)smartlist_get(elts,1));
  3274. if (strchr(smartlist_get(elts,1), '/') ||
  3275. strchr(smartlist_get(elts,1), '\\')) {
  3276. log_warn(LD_CONFIG, "Did you mean to say 'Log %s file %s' ?",
  3277. (const char *)smartlist_get(elts,0),
  3278. (const char *)smartlist_get(elts,1));
  3279. }
  3280. ok = 0; goto cleanup;
  3281. }
  3282. cleanup:
  3283. SMARTLIST_FOREACH(elts, char*, cp, tor_free(cp));
  3284. smartlist_clear(elts);
  3285. }
  3286. smartlist_free(elts);
  3287. return ok?0:-1;
  3288. }
  3289. /** Parse a single RedirectExit line's contents from <b>line</b>. If
  3290. * they are valid, and <b>result</b> is not NULL, add an element to
  3291. * <b>result</b> and return 0. Else if they are valid, return 0.
  3292. * Else set *msg and return -1. */
  3293. static int
  3294. parse_redirect_line(smartlist_t *result, config_line_t *line, char **msg)
  3295. {
  3296. smartlist_t *elements = NULL;
  3297. exit_redirect_t *r;
  3298. tor_assert(line);
  3299. r = tor_malloc_zero(sizeof(exit_redirect_t));
  3300. elements = smartlist_create();
  3301. smartlist_split_string(elements, line->value, NULL,
  3302. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  3303. if (smartlist_len(elements) != 2) {
  3304. *msg = tor_strdup("Wrong number of elements in RedirectExit line");
  3305. goto err;
  3306. }
  3307. if (parse_addr_and_port_range(smartlist_get(elements,0),&r->addr,
  3308. &r->maskbits,&r->port_min,&r->port_max)) {
  3309. *msg = tor_strdup("Error parsing source address in RedirectExit line");
  3310. goto err;
  3311. }
  3312. if (0==strcasecmp(smartlist_get(elements,1), "pass")) {
  3313. r->is_redirect = 0;
  3314. } else {
  3315. if (parse_addr_port(LOG_WARN, smartlist_get(elements,1),NULL,
  3316. &r->addr_dest, &r->port_dest)) {
  3317. *msg = tor_strdup("Error parsing dest address in RedirectExit line");
  3318. goto err;
  3319. }
  3320. r->is_redirect = 1;
  3321. }
  3322. goto done;
  3323. err:
  3324. tor_free(r);
  3325. done:
  3326. SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
  3327. smartlist_free(elements);
  3328. if (r) {
  3329. if (result)
  3330. smartlist_add(result, r);
  3331. else
  3332. tor_free(r);
  3333. return 0;
  3334. } else {
  3335. tor_assert(*msg);
  3336. return -1;
  3337. }
  3338. }
  3339. /** Read the contents of a Bridge line from <b>line</b>. Return 0
  3340. * if the line is well-formed, and -1 if it isn't. If
  3341. * <b>validate_only</b> is 0, and the line is well-formed, then add
  3342. * the bridge described in the line to our internal bridge list. */
  3343. static int
  3344. parse_bridge_line(const char *line, int validate_only)
  3345. {
  3346. smartlist_t *items = NULL;
  3347. int r;
  3348. char *addrport=NULL, *address=NULL, *fingerprint=NULL;
  3349. uint32_t addr = 0;
  3350. uint16_t port = 0;
  3351. char digest[DIGEST_LEN];
  3352. items = smartlist_create();
  3353. smartlist_split_string(items, line, NULL,
  3354. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1);
  3355. if (smartlist_len(items) < 1) {
  3356. log_warn(LD_CONFIG, "Too few arguments to Bridge line.");
  3357. goto err;
  3358. }
  3359. addrport = smartlist_get(items, 0);
  3360. smartlist_del_keeporder(items, 0);
  3361. if (parse_addr_port(LOG_WARN, addrport, &address, &addr, &port)<0) {
  3362. log_warn(LD_CONFIG, "Error parsing Bridge address '%s'", addrport);
  3363. goto err;
  3364. }
  3365. if (!port) {
  3366. log_warn(LD_CONFIG, "Missing port in Bridge address '%s'",addrport);
  3367. goto err;
  3368. }
  3369. if (smartlist_len(items)) {
  3370. fingerprint = smartlist_join_strings(items, "", 0, NULL);
  3371. if (strlen(fingerprint) != HEX_DIGEST_LEN) {
  3372. log_warn(LD_CONFIG, "Key digest for Bridge is wrong length.");
  3373. goto err;
  3374. }
  3375. if (base16_decode(digest, DIGEST_LEN, fingerprint, HEX_DIGEST_LEN)<0) {
  3376. log_warn(LD_CONFIG, "Unable to decode Bridge key digest.");
  3377. goto err;
  3378. }
  3379. }
  3380. if (!validate_only) {
  3381. log_debug(LD_DIR, "Bridge at %s:%d (%s)", address,
  3382. (int)port,
  3383. fingerprint ? fingerprint : "no key listed");
  3384. bridge_add_from_config(addr, port, fingerprint ? digest : NULL);
  3385. }
  3386. r = 0;
  3387. goto done;
  3388. err:
  3389. r = -1;
  3390. done:
  3391. SMARTLIST_FOREACH(items, char*, s, tor_free(s));
  3392. smartlist_free(items);
  3393. tor_free(addrport);
  3394. tor_free(address);
  3395. tor_free(fingerprint);
  3396. return r;
  3397. }
  3398. /** Read the contents of a DirServer line from <b>line</b>. Return 0
  3399. * if the line is well-formed, and -1 if it isn't. If
  3400. * <b>validate_only</b> is 0, and the line is well-formed, then add
  3401. * the dirserver described in the line as a valid authority. */
  3402. static int
  3403. parse_dir_server_line(const char *line, int validate_only)
  3404. {
  3405. smartlist_t *items = NULL;
  3406. int r;
  3407. char *addrport=NULL, *address=NULL, *nickname=NULL, *fingerprint=NULL;
  3408. uint16_t dir_port = 0, or_port = 0;
  3409. char digest[DIGEST_LEN];
  3410. char v3_digest[DIGEST_LEN];
  3411. authority_type_t type = V2_AUTHORITY;
  3412. int is_not_hidserv_authority = 0, is_not_v2_authority = 0;
  3413. items = smartlist_create();
  3414. smartlist_split_string(items, line, NULL,
  3415. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1);
  3416. if (smartlist_len(items) < 1) {
  3417. log_warn(LD_CONFIG, "No arguments on DirServer line.");
  3418. goto err;
  3419. }
  3420. if (is_legal_nickname(smartlist_get(items, 0))) {
  3421. nickname = smartlist_get(items, 0);
  3422. smartlist_del_keeporder(items, 0);
  3423. }
  3424. while (smartlist_len(items)) {
  3425. char *flag = smartlist_get(items, 0);
  3426. if (TOR_ISDIGIT(flag[0]))
  3427. break;
  3428. if (!strcasecmp(flag, "v1")) {
  3429. type |= (V1_AUTHORITY | HIDSERV_AUTHORITY);
  3430. } else if (!strcasecmp(flag, "hs")) {
  3431. type |= HIDSERV_AUTHORITY;
  3432. } else if (!strcasecmp(flag, "no-hs")) {
  3433. is_not_hidserv_authority = 1;
  3434. } else if (!strcasecmp(flag, "bridge")) {
  3435. type |= BRIDGE_AUTHORITY;
  3436. } else if (!strcasecmp(flag, "no-v2")) {
  3437. is_not_v2_authority = 1;
  3438. } else if (!strcasecmpstart(flag, "orport=")) {
  3439. int ok;
  3440. char *portstring = flag + strlen("orport=");
  3441. or_port = (uint16_t) tor_parse_long(portstring, 10, 1, 65535, &ok, NULL);
  3442. if (!ok)
  3443. log_warn(LD_CONFIG, "Invalid orport '%s' on DirServer line.",
  3444. portstring);
  3445. } else if (!strcasecmpstart(flag, "v3ident=")) {
  3446. char *idstr = flag + strlen("v3ident=");
  3447. if (strlen(idstr) != HEX_DIGEST_LEN ||
  3448. base16_decode(v3_digest, DIGEST_LEN, idstr, HEX_DIGEST_LEN)<0) {
  3449. log_warn(LD_CONFIG, "Bad v3 identity digest '%s' on DirServer line",
  3450. flag);
  3451. } else {
  3452. type |= V3_AUTHORITY;
  3453. }
  3454. } else {
  3455. log_warn(LD_CONFIG, "Unrecognized flag '%s' on DirServer line",
  3456. flag);
  3457. }
  3458. tor_free(flag);
  3459. smartlist_del_keeporder(items, 0);
  3460. }
  3461. if (is_not_hidserv_authority)
  3462. type &= ~HIDSERV_AUTHORITY;
  3463. if (is_not_v2_authority)
  3464. type &= ~V2_AUTHORITY;
  3465. if (smartlist_len(items) < 2) {
  3466. log_warn(LD_CONFIG, "Too few arguments to DirServer line.");
  3467. goto err;
  3468. }
  3469. addrport = smartlist_get(items, 0);
  3470. smartlist_del_keeporder(items, 0);
  3471. if (parse_addr_port(LOG_WARN, addrport, &address, NULL, &dir_port)<0) {
  3472. log_warn(LD_CONFIG, "Error parsing DirServer address '%s'", addrport);
  3473. goto err;
  3474. }
  3475. if (!dir_port) {
  3476. log_warn(LD_CONFIG, "Missing port in DirServer address '%s'",addrport);
  3477. goto err;
  3478. }
  3479. fingerprint = smartlist_join_strings(items, "", 0, NULL);
  3480. if (strlen(fingerprint) != HEX_DIGEST_LEN) {
  3481. log_warn(LD_CONFIG, "Key digest for DirServer is wrong length %d.",
  3482. (int)strlen(fingerprint));
  3483. goto err;
  3484. }
  3485. if (!strcmp(fingerprint, "E623F7625FBE0C87820F11EC5F6D5377ED816294")) {
  3486. /* a known bad fingerprint. refuse to use it. */
  3487. log_warn(LD_CONFIG, "Dangerous dirserver line. To correct, erase your "
  3488. "torrc file (%s), or reinstall Tor and use the default torrc.",
  3489. get_torrc_fname());
  3490. goto err;
  3491. }
  3492. if (base16_decode(digest, DIGEST_LEN, fingerprint, HEX_DIGEST_LEN)<0) {
  3493. log_warn(LD_CONFIG, "Unable to decode DirServer key digest.");
  3494. goto err;
  3495. }
  3496. if (!validate_only) {
  3497. log_debug(LD_DIR, "Trusted dirserver at %s:%d (%s)", address,
  3498. (int)dir_port,
  3499. (char*)smartlist_get(items,0));
  3500. add_trusted_dir_server(nickname, address, dir_port, or_port, digest,
  3501. v3_digest, type);
  3502. }
  3503. r = 0;
  3504. goto done;
  3505. err:
  3506. r = -1;
  3507. done:
  3508. SMARTLIST_FOREACH(items, char*, s, tor_free(s));
  3509. smartlist_free(items);
  3510. tor_free(addrport);
  3511. tor_free(address);
  3512. tor_free(nickname);
  3513. tor_free(fingerprint);
  3514. return r;
  3515. }
  3516. /** Adjust the value of options->DataDirectory, or fill it in if it's
  3517. * absent. Return 0 on success, -1 on failure. */
  3518. static int
  3519. normalize_data_directory(or_options_t *options)
  3520. {
  3521. #ifdef MS_WINDOWS
  3522. char *p;
  3523. if (options->DataDirectory)
  3524. return 0; /* all set */
  3525. p = tor_malloc(MAX_PATH);
  3526. strlcpy(p,get_windows_conf_root(),MAX_PATH);
  3527. options->DataDirectory = p;
  3528. return 0;
  3529. #else
  3530. const char *d = options->DataDirectory;
  3531. if (!d)
  3532. d = "~/.tor";
  3533. if (strncmp(d,"~/",2) == 0) {
  3534. char *fn = expand_filename(d);
  3535. if (!fn) {
  3536. log_warn(LD_CONFIG,"Failed to expand filename \"%s\".", d);
  3537. return -1;
  3538. }
  3539. if (!options->DataDirectory && !strcmp(fn,"/.tor")) {
  3540. /* If our homedir is /, we probably don't want to use it. */
  3541. /* Default to LOCALSTATEDIR/tor which is probably closer to what we
  3542. * want. */
  3543. log_warn(LD_CONFIG,
  3544. "Default DataDirectory is \"~/.tor\". This expands to "
  3545. "\"%s\", which is probably not what you want. Using "
  3546. "\"%s"PATH_SEPARATOR"tor\" instead", fn, LOCALSTATEDIR);
  3547. tor_free(fn);
  3548. fn = tor_strdup(LOCALSTATEDIR PATH_SEPARATOR "tor");
  3549. }
  3550. tor_free(options->DataDirectory);
  3551. options->DataDirectory = fn;
  3552. }
  3553. return 0;
  3554. #endif
  3555. }
  3556. /** Check and normalize the value of options->DataDirectory; return 0 if it
  3557. * sane, -1 otherwise. */
  3558. static int
  3559. validate_data_directory(or_options_t *options)
  3560. {
  3561. if (normalize_data_directory(options) < 0)
  3562. return -1;
  3563. tor_assert(options->DataDirectory);
  3564. if (strlen(options->DataDirectory) > (512-128)) {
  3565. log_warn(LD_CONFIG, "DataDirectory is too long.");
  3566. return -1;
  3567. }
  3568. return 0;
  3569. }
  3570. /** This string must remain the same forevermore. It is how we
  3571. * recognize that the torrc file doesn't need to be backed up. */
  3572. #define GENERATED_FILE_PREFIX "# This file was generated by Tor; " \
  3573. "if you edit it, comments will not be preserved"
  3574. /** This string can change; it tries to give the reader an idea
  3575. * that editing this file by hand is not a good plan. */
  3576. #define GENERATED_FILE_COMMENT "# The old torrc file was renamed " \
  3577. "to torrc.orig.1 or similar, and Tor will ignore it"
  3578. /** Save a configuration file for the configuration in <b>options</b>
  3579. * into the file <b>fname</b>. If the file already exists, and
  3580. * doesn't begin with GENERATED_FILE_PREFIX, rename it. Otherwise
  3581. * replace it. Return 0 on success, -1 on failure. */
  3582. static int
  3583. write_configuration_file(const char *fname, or_options_t *options)
  3584. {
  3585. char *old_val=NULL, *new_val=NULL, *new_conf=NULL;
  3586. int rename_old = 0, r;
  3587. size_t len;
  3588. if (fname) {
  3589. switch (file_status(fname)) {
  3590. case FN_FILE:
  3591. old_val = read_file_to_str(fname, 0, NULL);
  3592. if (strcmpstart(old_val, GENERATED_FILE_PREFIX)) {
  3593. rename_old = 1;
  3594. }
  3595. tor_free(old_val);
  3596. break;
  3597. case FN_NOENT:
  3598. break;
  3599. case FN_ERROR:
  3600. case FN_DIR:
  3601. default:
  3602. log_warn(LD_CONFIG,
  3603. "Config file \"%s\" is not a file? Failing.", fname);
  3604. return -1;
  3605. }
  3606. }
  3607. if (!(new_conf = options_dump(options, 1))) {
  3608. log_warn(LD_BUG, "Couldn't get configuration string");
  3609. goto err;
  3610. }
  3611. len = strlen(new_conf)+256;
  3612. new_val = tor_malloc(len);
  3613. tor_snprintf(new_val, len, "%s\n%s\n\n%s",
  3614. GENERATED_FILE_PREFIX, GENERATED_FILE_COMMENT, new_conf);
  3615. if (rename_old) {
  3616. int i = 1;
  3617. size_t fn_tmp_len = strlen(fname)+32;
  3618. char *fn_tmp;
  3619. tor_assert(fn_tmp_len > strlen(fname)); /*check for overflow*/
  3620. fn_tmp = tor_malloc(fn_tmp_len);
  3621. while (1) {
  3622. if (tor_snprintf(fn_tmp, fn_tmp_len, "%s.orig.%d", fname, i)<0) {
  3623. log_warn(LD_BUG, "tor_snprintf failed inexplicably");
  3624. tor_free(fn_tmp);
  3625. goto err;
  3626. }
  3627. if (file_status(fn_tmp) == FN_NOENT)
  3628. break;
  3629. ++i;
  3630. }
  3631. log_notice(LD_CONFIG, "Renaming old configuration file to \"%s\"", fn_tmp);
  3632. if (rename(fname, fn_tmp) < 0) {
  3633. log_warn(LD_FS,
  3634. "Couldn't rename configuration file \"%s\" to \"%s\": %s",
  3635. fname, fn_tmp, strerror(errno));
  3636. tor_free(fn_tmp);
  3637. goto err;
  3638. }
  3639. tor_free(fn_tmp);
  3640. }
  3641. if (write_str_to_file(fname, new_val, 0) < 0)
  3642. goto err;
  3643. r = 0;
  3644. goto done;
  3645. err:
  3646. r = -1;
  3647. done:
  3648. tor_free(new_val);
  3649. tor_free(new_conf);
  3650. return r;
  3651. }
  3652. /**
  3653. * Save the current configuration file value to disk. Return 0 on
  3654. * success, -1 on failure.
  3655. **/
  3656. int
  3657. options_save_current(void)
  3658. {
  3659. if (torrc_fname) {
  3660. /* This fails if we can't write to our configuration file.
  3661. *
  3662. * If we try falling back to datadirectory or something, we have a better
  3663. * chance of saving the configuration, but a better chance of doing
  3664. * something the user never expected. Let's just warn instead. */
  3665. return write_configuration_file(torrc_fname, get_options());
  3666. }
  3667. return write_configuration_file(get_default_conf_file(), get_options());
  3668. }
  3669. /** Mapping from a unit name to a multiplier for converting that unit into a
  3670. * base unit. */
  3671. struct unit_table_t {
  3672. const char *unit;
  3673. uint64_t multiplier;
  3674. };
  3675. static struct unit_table_t memory_units[] = {
  3676. { "", 1 },
  3677. { "b", 1<< 0 },
  3678. { "byte", 1<< 0 },
  3679. { "bytes", 1<< 0 },
  3680. { "kb", 1<<10 },
  3681. { "kilobyte", 1<<10 },
  3682. { "kilobytes", 1<<10 },
  3683. { "m", 1<<20 },
  3684. { "mb", 1<<20 },
  3685. { "megabyte", 1<<20 },
  3686. { "megabytes", 1<<20 },
  3687. { "gb", 1<<30 },
  3688. { "gigabyte", 1<<30 },
  3689. { "gigabytes", 1<<30 },
  3690. { "tb", U64_LITERAL(1)<<40 },
  3691. { "terabyte", U64_LITERAL(1)<<40 },
  3692. { "terabytes", U64_LITERAL(1)<<40 },
  3693. { NULL, 0 },
  3694. };
  3695. static struct unit_table_t time_units[] = {
  3696. { "", 1 },
  3697. { "second", 1 },
  3698. { "seconds", 1 },
  3699. { "minute", 60 },
  3700. { "minutes", 60 },
  3701. { "hour", 60*60 },
  3702. { "hours", 60*60 },
  3703. { "day", 24*60*60 },
  3704. { "days", 24*60*60 },
  3705. { "week", 7*24*60*60 },
  3706. { "weeks", 7*24*60*60 },
  3707. { NULL, 0 },
  3708. };
  3709. /** Parse a string <b>val</b> containing a number, zero or more
  3710. * spaces, and an optional unit string. If the unit appears in the
  3711. * table <b>u</b>, then multiply the number by the unit multiplier.
  3712. * On success, set *<b>ok</b> to 1 and return this product.
  3713. * Otherwise, set *<b>ok</b> to 0.
  3714. */
  3715. static uint64_t
  3716. config_parse_units(const char *val, struct unit_table_t *u, int *ok)
  3717. {
  3718. uint64_t v;
  3719. char *cp;
  3720. tor_assert(ok);
  3721. v = tor_parse_uint64(val, 10, 0, UINT64_MAX, ok, &cp);
  3722. if (!*ok)
  3723. return 0;
  3724. if (!cp) {
  3725. *ok = 1;
  3726. return v;
  3727. }
  3728. while (TOR_ISSPACE(*cp))
  3729. ++cp;
  3730. for ( ;u->unit;++u) {
  3731. if (!strcasecmp(u->unit, cp)) {
  3732. v *= u->multiplier;
  3733. *ok = 1;
  3734. return v;
  3735. }
  3736. }
  3737. log_warn(LD_CONFIG, "Unknown unit '%s'.", cp);
  3738. *ok = 0;
  3739. return 0;
  3740. }
  3741. /** Parse a string in the format "number unit", where unit is a unit of
  3742. * information (byte, KB, M, etc). On success, set *<b>ok</b> to true
  3743. * and return the number of bytes specified. Otherwise, set
  3744. * *<b>ok</b> to false and return 0. */
  3745. static uint64_t
  3746. config_parse_memunit(const char *s, int *ok)
  3747. {
  3748. return config_parse_units(s, memory_units, ok);
  3749. }
  3750. /** Parse a string in the format "number unit", where unit is a unit of time.
  3751. * On success, set *<b>ok</b> to true and return the number of seconds in
  3752. * the provided interval. Otherwise, set *<b>ok</b> to 0 and return -1.
  3753. */
  3754. static int
  3755. config_parse_interval(const char *s, int *ok)
  3756. {
  3757. uint64_t r;
  3758. r = config_parse_units(s, time_units, ok);
  3759. if (!ok)
  3760. return -1;
  3761. if (r > INT_MAX) {
  3762. log_warn(LD_CONFIG, "Interval '%s' is too long", s);
  3763. *ok = 0;
  3764. return -1;
  3765. }
  3766. return (int)r;
  3767. }
  3768. /**
  3769. * Initialize the libevent library.
  3770. */
  3771. static void
  3772. init_libevent(void)
  3773. {
  3774. configure_libevent_logging();
  3775. /* If the kernel complains that some method (say, epoll) doesn't
  3776. * exist, we don't care about it, since libevent will cope.
  3777. */
  3778. suppress_libevent_log_msg("Function not implemented");
  3779. #ifdef __APPLE__
  3780. if (decode_libevent_version() < LE_11B) {
  3781. setenv("EVENT_NOKQUEUE","1",1);
  3782. }
  3783. #endif
  3784. event_init();
  3785. suppress_libevent_log_msg(NULL);
  3786. #if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
  3787. /* Making this a NOTICE for now so we can link bugs to a libevent versions
  3788. * or methods better. */
  3789. log(LOG_NOTICE, LD_GENERAL,
  3790. "Initialized libevent version %s using method %s. Good.",
  3791. event_get_version(), event_get_method());
  3792. check_libevent_version(event_get_method(), get_options()->ORPort != 0);
  3793. #else
  3794. log(LOG_NOTICE, LD_GENERAL,
  3795. "Initialized old libevent (version 1.0b or earlier).");
  3796. log(LOG_WARN, LD_GENERAL,
  3797. "You have a *VERY* old version of libevent. It is likely to be buggy; "
  3798. "please build Tor with a more recent version.");
  3799. #endif
  3800. }
  3801. #if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
  3802. /** Table mapping return value of event_get_version() to le_version_t. */
  3803. static const struct {
  3804. const char *name; le_version_t version;
  3805. } le_version_table[] = {
  3806. /* earlier versions don't have get_version. */
  3807. { "1.0c", LE_10C },
  3808. { "1.0d", LE_10D },
  3809. { "1.0e", LE_10E },
  3810. { "1.1", LE_11 },
  3811. { "1.1a", LE_11A },
  3812. { "1.1b", LE_11B },
  3813. { "1.2", LE_12 },
  3814. { "1.2a", LE_12A },
  3815. { "1.3", LE_13 },
  3816. { "1.3a", LE_13A },
  3817. { "1.3b", LE_13B },
  3818. { "1.3c", LE_13C },
  3819. { "1.3d", LE_13D },
  3820. { NULL, LE_OTHER }
  3821. };
  3822. /** Return the le_version_t for the current version of libevent. If the
  3823. * version is very new, return LE_OTHER. If the version is so old that it
  3824. * doesn't support event_get_version(), return LE_OLD. */
  3825. static le_version_t
  3826. decode_libevent_version(void)
  3827. {
  3828. const char *v = event_get_version();
  3829. int i;
  3830. for (i=0; le_version_table[i].name; ++i) {
  3831. if (!strcmp(le_version_table[i].name, v)) {
  3832. return le_version_table[i].version;
  3833. }
  3834. }
  3835. return LE_OTHER;
  3836. }
  3837. /**
  3838. * Compare the given libevent method and version to a list of versions
  3839. * which are known not to work. Warn the user as appropriate.
  3840. */
  3841. static void
  3842. check_libevent_version(const char *m, int server)
  3843. {
  3844. int buggy = 0, iffy = 0, slow = 0, thread_unsafe = 0;
  3845. le_version_t version;
  3846. const char *v = event_get_version();
  3847. const char *badness = NULL;
  3848. const char *sad_os = "";
  3849. version = decode_libevent_version();
  3850. /* XXX Would it be worthwhile disabling the methods that we know
  3851. * are buggy, rather than just warning about them and then proceeding
  3852. * to use them? If so, we should probably not wrap this whole thing
  3853. * in HAVE_EVENT_GET_VERSION and HAVE_EVENT_GET_METHOD. -RD */
  3854. /* XXXX The problem is that it's not trivial to get libevent to change it's
  3855. * method once it's initialized, and it's not trivial to tell what method it
  3856. * will use without initializing it. I guess we could preemptively disable
  3857. * buggy libevent modes based on the version _before_ initializing it,
  3858. * though, but then there's no good way (afaict) to warn "I would have used
  3859. * kqueue, but instead I'm using select." -NM */
  3860. if (!strcmp(m, "kqueue")) {
  3861. if (version < LE_11B)
  3862. buggy = 1;
  3863. } else if (!strcmp(m, "epoll")) {
  3864. if (version < LE_11)
  3865. iffy = 1;
  3866. } else if (!strcmp(m, "poll")) {
  3867. if (version < LE_10E)
  3868. buggy = 1;
  3869. else if (version < LE_11)
  3870. slow = 1;
  3871. } else if (!strcmp(m, "select")) {
  3872. if (version < LE_11)
  3873. slow = 1;
  3874. } else if (!strcmp(m, "win32")) {
  3875. if (version < LE_11B)
  3876. buggy = 1;
  3877. }
  3878. /* Libevent versions before 1.3b do very badly on operating systems with
  3879. * user-space threading implementations. */
  3880. #if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__)
  3881. if (server && version < LE_13B) {
  3882. thread_unsafe = 1;
  3883. sad_os = "BSD variants";
  3884. }
  3885. #elif defined(__APPLE__) || defined(__darwin__)
  3886. if (server && version < LE_13B) {
  3887. thread_unsafe = 1;
  3888. sad_os = "Mac OS X";
  3889. }
  3890. #endif
  3891. if (thread_unsafe) {
  3892. log(LOG_WARN, LD_GENERAL,
  3893. "Libevent version %s often crashes when running a Tor server with %s. "
  3894. "Please use the latest version of libevent (1.3b or later)",v,sad_os);
  3895. badness = "BROKEN";
  3896. } else if (buggy) {
  3897. log(LOG_WARN, LD_GENERAL,
  3898. "There are serious bugs in using %s with libevent %s. "
  3899. "Please use the latest version of libevent.", m, v);
  3900. badness = "BROKEN";
  3901. } else if (iffy) {
  3902. log(LOG_WARN, LD_GENERAL,
  3903. "There are minor bugs in using %s with libevent %s. "
  3904. "You may want to use the latest version of libevent.", m, v);
  3905. badness = "BUGGY";
  3906. } else if (slow && server) {
  3907. log(LOG_WARN, LD_GENERAL,
  3908. "libevent %s can be very slow with %s. "
  3909. "When running a server, please use the latest version of libevent.",
  3910. v,m);
  3911. badness = "SLOW";
  3912. }
  3913. if (badness) {
  3914. control_event_general_status(LOG_WARN,
  3915. "BAD_LIBEVENT VERSION=%s METHOD=%s BADNESS=%s RECOVERED=NO",
  3916. v, m, badness);
  3917. }
  3918. }
  3919. #else
  3920. static le_version_t
  3921. decode_libevent_version(void)
  3922. {
  3923. return LE_OLD;
  3924. }
  3925. #endif
  3926. /** Return the persistent state struct for this Tor. */
  3927. or_state_t *
  3928. get_or_state(void)
  3929. {
  3930. tor_assert(global_state);
  3931. return global_state;
  3932. }
  3933. /** Return a newly allocated string holding a filename relative to the data
  3934. * directory. If <b>sub1</b> is present, it is the first path component after
  3935. * the data directory. If <b>sub2</b> is also present, it is the second path
  3936. * component after the data directory. If <b>suffix</b> is present, it
  3937. * is appended to the filename.
  3938. *
  3939. * Examples:
  3940. * get_datadir_fname2_suffix("a", NULL, NULL) -> $DATADIR/a
  3941. * get_datadir_fname2_suffix("a", NULL, ".tmp") -> $DATADIR/a.tmp
  3942. * get_datadir_fname2_suffix("a", "b", ".tmp") -> $DATADIR/a/b/.tmp
  3943. * get_datadir_fname2_suffix("a", "b", NULL) -> $DATADIR/a/b
  3944. *
  3945. * Note: Consider using the get_datadir_fname* macros in or.h.
  3946. */
  3947. char *
  3948. get_datadir_fname2_suffix(const char *sub1, const char *sub2,
  3949. const char *suffix)
  3950. {
  3951. or_options_t *options = get_options();
  3952. char *fname = NULL;
  3953. size_t len;
  3954. tor_assert(options);
  3955. tor_assert(options->DataDirectory);
  3956. tor_assert(sub1 || !sub2); /* If sub2 is present, sub1 must be present. */
  3957. len = strlen(options->DataDirectory);
  3958. if (sub1) {
  3959. len += strlen(sub1)+1;
  3960. if (sub2)
  3961. len += strlen(sub2)+1;
  3962. }
  3963. if (suffix)
  3964. len += strlen(suffix);
  3965. len++;
  3966. fname = tor_malloc(len);
  3967. if (sub1) {
  3968. if (sub2) {
  3969. tor_snprintf(fname, len, "%s"PATH_SEPARATOR"%s"PATH_SEPARATOR"%s",
  3970. options->DataDirectory, sub1, sub2);
  3971. } else {
  3972. tor_snprintf(fname, len, "%s"PATH_SEPARATOR"%s",
  3973. options->DataDirectory, sub1);
  3974. }
  3975. } else {
  3976. strlcpy(fname, options->DataDirectory, len);
  3977. }
  3978. if (suffix)
  3979. strlcat(fname, suffix, len);
  3980. return fname;
  3981. }
  3982. /** Return 0 if every setting in <b>state</b> is reasonable, and a
  3983. * permissible transition from <b>old_state</b>. Else warn and return -1.
  3984. * Should have no side effects, except for normalizing the contents of
  3985. * <b>state</b>.
  3986. */
  3987. /* XXX from_setconf is here because of bug 238 */
  3988. static int
  3989. or_state_validate(or_state_t *old_state, or_state_t *state,
  3990. int from_setconf, char **msg)
  3991. {
  3992. /* We don't use these; only options do. Still, we need to match that
  3993. * signature. */
  3994. (void) from_setconf;
  3995. (void) old_state;
  3996. if (entry_guards_parse_state(state, 0, msg)<0)
  3997. return -1;
  3998. return 0;
  3999. }
  4000. /** Replace the current persistent state with <b>new_state</b> */
  4001. static void
  4002. or_state_set(or_state_t *new_state)
  4003. {
  4004. char *err = NULL;
  4005. tor_assert(new_state);
  4006. if (global_state)
  4007. config_free(&state_format, global_state);
  4008. global_state = new_state;
  4009. if (entry_guards_parse_state(global_state, 1, &err)<0) {
  4010. log_warn(LD_GENERAL,"%s",err);
  4011. tor_free(err);
  4012. }
  4013. if (rep_hist_load_state(global_state, &err)<0) {
  4014. log_warn(LD_GENERAL,"Unparseable bandwidth history state: %s",err);
  4015. tor_free(err);
  4016. }
  4017. }
  4018. /** Reload the persistent state from disk, generating a new state as needed.
  4019. * Return 0 on success, less than 0 on failure.
  4020. */
  4021. static int
  4022. or_state_load(void)
  4023. {
  4024. or_state_t *new_state = NULL;
  4025. char *contents = NULL, *fname;
  4026. char *errmsg = NULL;
  4027. int r = -1, badstate = 0;
  4028. fname = get_datadir_fname("state");
  4029. switch (file_status(fname)) {
  4030. case FN_FILE:
  4031. if (!(contents = read_file_to_str(fname, 0, NULL))) {
  4032. log_warn(LD_FS, "Unable to read state file \"%s\"", fname);
  4033. goto done;
  4034. }
  4035. break;
  4036. case FN_NOENT:
  4037. break;
  4038. case FN_ERROR:
  4039. case FN_DIR:
  4040. default:
  4041. log_warn(LD_GENERAL,"State file \"%s\" is not a file? Failing.", fname);
  4042. goto done;
  4043. }
  4044. new_state = tor_malloc_zero(sizeof(or_state_t));
  4045. new_state->_magic = OR_STATE_MAGIC;
  4046. config_init(&state_format, new_state);
  4047. if (contents) {
  4048. config_line_t *lines=NULL;
  4049. int assign_retval;
  4050. if (config_get_lines(contents, &lines)<0)
  4051. goto done;
  4052. assign_retval = config_assign(&state_format, new_state,
  4053. lines, 0, 0, &errmsg);
  4054. config_free_lines(lines);
  4055. if (assign_retval<0)
  4056. badstate = 1;
  4057. if (errmsg) {
  4058. log_warn(LD_GENERAL, "%s", errmsg);
  4059. tor_free(errmsg);
  4060. }
  4061. }
  4062. if (!badstate && or_state_validate(NULL, new_state, 1, &errmsg) < 0)
  4063. badstate = 1;
  4064. if (errmsg) {
  4065. log_warn(LD_GENERAL, "%s", errmsg);
  4066. tor_free(errmsg);
  4067. }
  4068. if (badstate && !contents) {
  4069. log_warn(LD_BUG, "Uh oh. We couldn't even validate our own default state."
  4070. " This is a bug in Tor.");
  4071. goto done;
  4072. } else if (badstate && contents) {
  4073. int i;
  4074. file_status_t status;
  4075. size_t len = strlen(fname)+16;
  4076. char *fname2 = tor_malloc(len);
  4077. for (i = 0; i < 100; ++i) {
  4078. tor_snprintf(fname2, len, "%s.%d", fname, i);
  4079. status = file_status(fname2);
  4080. if (status == FN_NOENT)
  4081. break;
  4082. }
  4083. if (i == 100) {
  4084. log_warn(LD_BUG, "Unable to parse state in \"%s\"; too many saved bad "
  4085. "state files to move aside. Discarding the old state file.",
  4086. fname);
  4087. unlink(fname);
  4088. } else {
  4089. log_warn(LD_BUG, "Unable to parse state in \"%s\". Moving it aside "
  4090. "to \"%s\". This could be a bug in Tor; please tell "
  4091. "the developers.", fname, fname2);
  4092. rename(fname, fname2);
  4093. }
  4094. tor_free(fname2);
  4095. tor_free(contents);
  4096. config_free(&state_format, new_state);
  4097. new_state = tor_malloc_zero(sizeof(or_state_t));
  4098. new_state->_magic = OR_STATE_MAGIC;
  4099. config_init(&state_format, new_state);
  4100. } else if (contents) {
  4101. log_info(LD_GENERAL, "Loaded state from \"%s\"", fname);
  4102. } else {
  4103. log_info(LD_GENERAL, "Initialized state");
  4104. }
  4105. or_state_set(new_state);
  4106. new_state = NULL;
  4107. if (!contents) {
  4108. global_state->next_write = 0;
  4109. or_state_save(time(NULL));
  4110. }
  4111. r = 0;
  4112. done:
  4113. tor_free(fname);
  4114. tor_free(contents);
  4115. if (new_state)
  4116. config_free(&state_format, new_state);
  4117. return r;
  4118. }
  4119. /** Write the persistent state to disk. Return 0 for success, <0 on failure. */
  4120. int
  4121. or_state_save(time_t now)
  4122. {
  4123. char *state, *contents;
  4124. char tbuf[ISO_TIME_LEN+1];
  4125. size_t len;
  4126. char *fname;
  4127. tor_assert(global_state);
  4128. if (global_state->next_write > now)
  4129. return 0;
  4130. /* Call everything else that might dirty the state even more, in order
  4131. * to avoid redundant writes. */
  4132. entry_guards_update_state(global_state);
  4133. rep_hist_update_state(global_state);
  4134. if (accounting_is_enabled(get_options()))
  4135. accounting_run_housekeeping(now);
  4136. global_state->LastWritten = time(NULL);
  4137. tor_free(global_state->TorVersion);
  4138. len = strlen(get_version())+8;
  4139. global_state->TorVersion = tor_malloc(len);
  4140. tor_snprintf(global_state->TorVersion, len, "Tor %s", get_version());
  4141. state = config_dump(&state_format, global_state, 1, 0);
  4142. len = strlen(state)+256;
  4143. contents = tor_malloc(len);
  4144. format_local_iso_time(tbuf, time(NULL));
  4145. tor_snprintf(contents, len,
  4146. "# Tor state file last generated on %s local time\n"
  4147. "# Other times below are in GMT\n"
  4148. "# You *do not* need to edit this file.\n\n%s",
  4149. tbuf, state);
  4150. tor_free(state);
  4151. fname = get_datadir_fname("state");
  4152. if (write_str_to_file(fname, contents, 0)<0) {
  4153. log_warn(LD_FS, "Unable to write state to file \"%s\"", fname);
  4154. tor_free(fname);
  4155. tor_free(contents);
  4156. return -1;
  4157. }
  4158. log_info(LD_GENERAL, "Saved state to \"%s\"", fname);
  4159. tor_free(fname);
  4160. tor_free(contents);
  4161. global_state->next_write = TIME_MAX;
  4162. return 0;
  4163. }
  4164. /** Given a file name check to see whether the file exists but has not been
  4165. * modified for a very long time. If so, remove it. */
  4166. void
  4167. remove_file_if_very_old(const char *fname, time_t now)
  4168. {
  4169. #define VERY_OLD_FILE_AGE (28*24*60*60)
  4170. struct stat st;
  4171. if (stat(fname, &st)==0 && st.st_mtime < now-VERY_OLD_FILE_AGE) {
  4172. char buf[ISO_TIME_LEN+1];
  4173. format_local_iso_time(buf, st.st_mtime);
  4174. log_notice(LD_GENERAL, "Obsolete file %s hasn't been modified since %s. "
  4175. "Removing it.", fname, buf);
  4176. unlink(fname);
  4177. }
  4178. }
  4179. /** Helper to implement GETINFO functions about configuration variables (not
  4180. * their values). Given a "config/names" question, set *<b>answer</b> to a
  4181. * new string describing the supported configuration variables and their
  4182. * types. */
  4183. int
  4184. getinfo_helper_config(control_connection_t *conn,
  4185. const char *question, char **answer)
  4186. {
  4187. (void) conn;
  4188. if (!strcmp(question, "config/names")) {
  4189. smartlist_t *sl = smartlist_create();
  4190. int i;
  4191. for (i = 0; _option_vars[i].name; ++i) {
  4192. config_var_t *var = &_option_vars[i];
  4193. const char *type, *desc;
  4194. char *line;
  4195. size_t len;
  4196. desc = config_find_description(&options_format, var->name);
  4197. switch (var->type) {
  4198. case CONFIG_TYPE_STRING: type = "String"; break;
  4199. case CONFIG_TYPE_UINT: type = "Integer"; break;
  4200. case CONFIG_TYPE_INTERVAL: type = "TimeInterval"; break;
  4201. case CONFIG_TYPE_MEMUNIT: type = "DataSize"; break;
  4202. case CONFIG_TYPE_DOUBLE: type = "Float"; break;
  4203. case CONFIG_TYPE_BOOL: type = "Boolean"; break;
  4204. case CONFIG_TYPE_ISOTIME: type = "Time"; break;
  4205. case CONFIG_TYPE_CSV: type = "CommaList"; break;
  4206. case CONFIG_TYPE_LINELIST: type = "LineList"; break;
  4207. case CONFIG_TYPE_LINELIST_S: type = "Dependant"; break;
  4208. case CONFIG_TYPE_LINELIST_V: type = "Virtual"; break;
  4209. default:
  4210. case CONFIG_TYPE_OBSOLETE:
  4211. type = NULL; break;
  4212. }
  4213. if (!type)
  4214. continue;
  4215. len = strlen(var->name)+strlen(type)+16;
  4216. if (desc)
  4217. len += strlen(desc);
  4218. line = tor_malloc(len);
  4219. if (desc)
  4220. tor_snprintf(line, len, "%s %s %s\n",var->name,type,desc);
  4221. else
  4222. tor_snprintf(line, len, "%s %s\n",var->name,type);
  4223. smartlist_add(sl, line);
  4224. }
  4225. *answer = smartlist_join_strings(sl, "", 0, NULL);
  4226. SMARTLIST_FOREACH(sl, char *, c, tor_free(c));
  4227. smartlist_free(sl);
  4228. }
  4229. return 0;
  4230. }
  4231. #include "aes.h"
  4232. #include "ht.h"
  4233. #include "test.h"
  4234. extern const char aes_c_id[];
  4235. extern const char compat_c_id[];
  4236. extern const char container_c_id[];
  4237. extern const char crypto_c_id[];
  4238. extern const char log_c_id[];
  4239. extern const char torgzip_c_id[];
  4240. extern const char tortls_c_id[];
  4241. extern const char util_c_id[];
  4242. extern const char buffers_c_id[];
  4243. extern const char circuitbuild_c_id[];
  4244. extern const char circuitlist_c_id[];
  4245. extern const char circuituse_c_id[];
  4246. extern const char command_c_id[];
  4247. // extern const char config_c_id[];
  4248. extern const char connection_c_id[];
  4249. extern const char connection_edge_c_id[];
  4250. extern const char connection_or_c_id[];
  4251. extern const char control_c_id[];
  4252. extern const char cpuworker_c_id[];
  4253. extern const char directory_c_id[];
  4254. extern const char dirserv_c_id[];
  4255. extern const char dns_c_id[];
  4256. extern const char hibernate_c_id[];
  4257. extern const char main_c_id[];
  4258. #ifdef NT_SERVICE
  4259. extern const char ntmain_c_id[];
  4260. #endif
  4261. extern const char onion_c_id[];
  4262. extern const char policies_c_id[];
  4263. extern const char relay_c_id[];
  4264. extern const char rendclient_c_id[];
  4265. extern const char rendcommon_c_id[];
  4266. extern const char rendmid_c_id[];
  4267. extern const char rendservice_c_id[];
  4268. extern const char rephist_c_id[];
  4269. extern const char router_c_id[];
  4270. extern const char routerlist_c_id[];
  4271. extern const char routerparse_c_id[];
  4272. /** Dump the version of every file to the log. */
  4273. static void
  4274. print_svn_version(void)
  4275. {
  4276. puts(AES_H_ID);
  4277. puts(COMPAT_H_ID);
  4278. puts(CONTAINER_H_ID);
  4279. puts(CRYPTO_H_ID);
  4280. puts(HT_H_ID);
  4281. puts(TEST_H_ID);
  4282. puts(LOG_H_ID);
  4283. puts(TORGZIP_H_ID);
  4284. puts(TORINT_H_ID);
  4285. puts(TORTLS_H_ID);
  4286. puts(UTIL_H_ID);
  4287. puts(aes_c_id);
  4288. puts(compat_c_id);
  4289. puts(container_c_id);
  4290. puts(crypto_c_id);
  4291. puts(log_c_id);
  4292. puts(torgzip_c_id);
  4293. puts(tortls_c_id);
  4294. puts(util_c_id);
  4295. puts(OR_H_ID);
  4296. puts(buffers_c_id);
  4297. puts(circuitbuild_c_id);
  4298. puts(circuitlist_c_id);
  4299. puts(circuituse_c_id);
  4300. puts(command_c_id);
  4301. puts(config_c_id);
  4302. puts(connection_c_id);
  4303. puts(connection_edge_c_id);
  4304. puts(connection_or_c_id);
  4305. puts(control_c_id);
  4306. puts(cpuworker_c_id);
  4307. puts(directory_c_id);
  4308. puts(dirserv_c_id);
  4309. puts(dns_c_id);
  4310. puts(hibernate_c_id);
  4311. puts(main_c_id);
  4312. #ifdef NT_SERVICE
  4313. puts(ntmain_c_id);
  4314. #endif
  4315. puts(onion_c_id);
  4316. puts(policies_c_id);
  4317. puts(relay_c_id);
  4318. puts(rendclient_c_id);
  4319. puts(rendcommon_c_id);
  4320. puts(rendmid_c_id);
  4321. puts(rendservice_c_id);
  4322. puts(rephist_c_id);
  4323. puts(router_c_id);
  4324. puts(routerlist_c_id);
  4325. puts(routerparse_c_id);
  4326. }