control.c 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701
  1. /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  2. * Copyright (c) 2007-2012, The Tor Project, Inc. */
  3. /* See LICENSE for licensing information */
  4. /**
  5. * \file control.c
  6. * \brief Implementation for Tor's control-socket interface.
  7. * See doc/spec/control-spec.txt for full details on protocol.
  8. **/
  9. #define CONTROL_PRIVATE
  10. #include "or.h"
  11. #include "buffers.h"
  12. #include "circuitbuild.h"
  13. #include "circuitlist.h"
  14. #include "circuituse.h"
  15. #include "config.h"
  16. #include "connection.h"
  17. #include "connection_edge.h"
  18. #include "connection_or.h"
  19. #include "control.h"
  20. #include "directory.h"
  21. #include "dirserv.h"
  22. #include "dnsserv.h"
  23. #include "geoip.h"
  24. #include "hibernate.h"
  25. #include "main.h"
  26. #include "networkstatus.h"
  27. #include "nodelist.h"
  28. #include "policies.h"
  29. #include "reasons.h"
  30. #include "rephist.h"
  31. #include "router.h"
  32. #include "routerlist.h"
  33. #include "routerparse.h"
  34. #ifndef _WIN32
  35. #include <pwd.h>
  36. #include <sys/resource.h>
  37. #endif
  38. #include "procmon.h"
  39. /** Yield true iff <b>s</b> is the state of a control_connection_t that has
  40. * finished authentication and is accepting commands. */
  41. #define STATE_IS_OPEN(s) ((s) == CONTROL_CONN_STATE_OPEN)
  42. /* Recognized asynchronous event types. It's okay to expand this list
  43. * because it is used both as a list of v0 event types, and as indices
  44. * into the bitfield to determine which controllers want which events.
  45. */
  46. #define _EVENT_MIN 0x0001
  47. #define EVENT_CIRCUIT_STATUS 0x0001
  48. #define EVENT_STREAM_STATUS 0x0002
  49. #define EVENT_OR_CONN_STATUS 0x0003
  50. #define EVENT_BANDWIDTH_USED 0x0004
  51. #define EVENT_CIRCUIT_STATUS_MINOR 0x0005
  52. #define EVENT_NEW_DESC 0x0006
  53. #define EVENT_DEBUG_MSG 0x0007
  54. #define EVENT_INFO_MSG 0x0008
  55. #define EVENT_NOTICE_MSG 0x0009
  56. #define EVENT_WARN_MSG 0x000A
  57. #define EVENT_ERR_MSG 0x000B
  58. #define EVENT_ADDRMAP 0x000C
  59. // #define EVENT_AUTHDIR_NEWDESCS 0x000D
  60. #define EVENT_DESCCHANGED 0x000E
  61. // #define EVENT_NS 0x000F
  62. #define EVENT_STATUS_CLIENT 0x0010
  63. #define EVENT_STATUS_SERVER 0x0011
  64. #define EVENT_STATUS_GENERAL 0x0012
  65. #define EVENT_GUARD 0x0013
  66. #define EVENT_STREAM_BANDWIDTH_USED 0x0014
  67. #define EVENT_CLIENTS_SEEN 0x0015
  68. #define EVENT_NEWCONSENSUS 0x0016
  69. #define EVENT_BUILDTIMEOUT_SET 0x0017
  70. #define EVENT_SIGNAL 0x0018
  71. #define EVENT_CONF_CHANGED 0x0019
  72. #define _EVENT_MAX 0x0019
  73. /* If _EVENT_MAX ever hits 0x0020, we need to make the mask wider. */
  74. /** Bitfield: The bit 1&lt;&lt;e is set if <b>any</b> open control
  75. * connection is interested in events of type <b>e</b>. We use this
  76. * so that we can decide to skip generating event messages that nobody
  77. * has interest in without having to walk over the global connection
  78. * list to find out.
  79. **/
  80. typedef uint32_t event_mask_t;
  81. /** An event mask of all the events that any controller is interested in
  82. * receiving. */
  83. static event_mask_t global_event_mask = 0;
  84. /** True iff we have disabled log messages from being sent to the controller */
  85. static int disable_log_messages = 0;
  86. /** Macro: true if any control connection is interested in events of type
  87. * <b>e</b>. */
  88. #define EVENT_IS_INTERESTING(e) \
  89. (global_event_mask & (1<<(e)))
  90. /** If we're using cookie-type authentication, how long should our cookies be?
  91. */
  92. #define AUTHENTICATION_COOKIE_LEN 32
  93. /** If true, we've set authentication_cookie to a secret code and
  94. * stored it to disk. */
  95. static int authentication_cookie_is_set = 0;
  96. /** If authentication_cookie_is_set, a secret cookie that we've stored to disk
  97. * and which we're using to authenticate controllers. (If the controller can
  98. * read it off disk, it has permission to connect.) */
  99. static char authentication_cookie[AUTHENTICATION_COOKIE_LEN];
  100. #define SAFECOOKIE_SERVER_TO_CONTROLLER_CONSTANT \
  101. "Tor safe cookie authentication server-to-controller hash"
  102. #define SAFECOOKIE_CONTROLLER_TO_SERVER_CONSTANT \
  103. "Tor safe cookie authentication controller-to-server hash"
  104. #define SAFECOOKIE_SERVER_NONCE_LEN DIGEST256_LEN
  105. /** A sufficiently large size to record the last bootstrap phase string. */
  106. #define BOOTSTRAP_MSG_LEN 1024
  107. /** What was the last bootstrap phase message we sent? We keep track
  108. * of this so we can respond to getinfo status/bootstrap-phase queries. */
  109. static char last_sent_bootstrap_message[BOOTSTRAP_MSG_LEN];
  110. /** Flag for event_format_t. Indicates that we should use the one standard
  111. format.
  112. */
  113. #define ALL_FORMATS 1
  114. /** Bit field of flags to select how to format a controller event. Recognized
  115. * flag is ALL_FORMATS. */
  116. typedef int event_format_t;
  117. static void connection_printf_to_buf(control_connection_t *conn,
  118. const char *format, ...)
  119. CHECK_PRINTF(2,3);
  120. static void send_control_event_impl(uint16_t event, event_format_t which,
  121. const char *format, va_list ap)
  122. CHECK_PRINTF(3,0);
  123. static int control_event_status(int type, int severity, const char *format,
  124. va_list args)
  125. CHECK_PRINTF(3,0);
  126. static void send_control_done(control_connection_t *conn);
  127. static void send_control_event(uint16_t event, event_format_t which,
  128. const char *format, ...)
  129. CHECK_PRINTF(3,4);
  130. static int handle_control_setconf(control_connection_t *conn, uint32_t len,
  131. char *body);
  132. static int handle_control_resetconf(control_connection_t *conn, uint32_t len,
  133. char *body);
  134. static int handle_control_getconf(control_connection_t *conn, uint32_t len,
  135. const char *body);
  136. static int handle_control_loadconf(control_connection_t *conn, uint32_t len,
  137. const char *body);
  138. static int handle_control_setevents(control_connection_t *conn, uint32_t len,
  139. const char *body);
  140. static int handle_control_authenticate(control_connection_t *conn,
  141. uint32_t len,
  142. const char *body);
  143. static int handle_control_signal(control_connection_t *conn, uint32_t len,
  144. const char *body);
  145. static int handle_control_mapaddress(control_connection_t *conn, uint32_t len,
  146. const char *body);
  147. static char *list_getinfo_options(void);
  148. static int handle_control_getinfo(control_connection_t *conn, uint32_t len,
  149. const char *body);
  150. static int handle_control_extendcircuit(control_connection_t *conn,
  151. uint32_t len,
  152. const char *body);
  153. static int handle_control_setcircuitpurpose(control_connection_t *conn,
  154. uint32_t len, const char *body);
  155. static int handle_control_attachstream(control_connection_t *conn,
  156. uint32_t len,
  157. const char *body);
  158. static int handle_control_postdescriptor(control_connection_t *conn,
  159. uint32_t len,
  160. const char *body);
  161. static int handle_control_redirectstream(control_connection_t *conn,
  162. uint32_t len,
  163. const char *body);
  164. static int handle_control_closestream(control_connection_t *conn, uint32_t len,
  165. const char *body);
  166. static int handle_control_closecircuit(control_connection_t *conn,
  167. uint32_t len,
  168. const char *body);
  169. static int handle_control_resolve(control_connection_t *conn, uint32_t len,
  170. const char *body);
  171. static int handle_control_usefeature(control_connection_t *conn,
  172. uint32_t len,
  173. const char *body);
  174. static int write_stream_target_to_buf(entry_connection_t *conn, char *buf,
  175. size_t len);
  176. static void orconn_target_get_name(char *buf, size_t len,
  177. or_connection_t *conn);
  178. static char *get_cookie_file(void);
  179. /** Given a control event code for a message event, return the corresponding
  180. * log severity. */
  181. static INLINE int
  182. event_to_log_severity(int event)
  183. {
  184. switch (event) {
  185. case EVENT_DEBUG_MSG: return LOG_DEBUG;
  186. case EVENT_INFO_MSG: return LOG_INFO;
  187. case EVENT_NOTICE_MSG: return LOG_NOTICE;
  188. case EVENT_WARN_MSG: return LOG_WARN;
  189. case EVENT_ERR_MSG: return LOG_ERR;
  190. default: return -1;
  191. }
  192. }
  193. /** Given a log severity, return the corresponding control event code. */
  194. static INLINE int
  195. log_severity_to_event(int severity)
  196. {
  197. switch (severity) {
  198. case LOG_DEBUG: return EVENT_DEBUG_MSG;
  199. case LOG_INFO: return EVENT_INFO_MSG;
  200. case LOG_NOTICE: return EVENT_NOTICE_MSG;
  201. case LOG_WARN: return EVENT_WARN_MSG;
  202. case LOG_ERR: return EVENT_ERR_MSG;
  203. default: return -1;
  204. }
  205. }
  206. /** Set <b>global_event_mask*</b> to the bitwise OR of each live control
  207. * connection's event_mask field. */
  208. void
  209. control_update_global_event_mask(void)
  210. {
  211. smartlist_t *conns = get_connection_array();
  212. event_mask_t old_mask, new_mask;
  213. old_mask = global_event_mask;
  214. global_event_mask = 0;
  215. SMARTLIST_FOREACH(conns, connection_t *, _conn,
  216. {
  217. if (_conn->type == CONN_TYPE_CONTROL &&
  218. STATE_IS_OPEN(_conn->state)) {
  219. control_connection_t *conn = TO_CONTROL_CONN(_conn);
  220. global_event_mask |= conn->event_mask;
  221. }
  222. });
  223. new_mask = global_event_mask;
  224. /* Handle the aftermath. Set up the log callback to tell us only what
  225. * we want to hear...*/
  226. control_adjust_event_log_severity();
  227. /* ...then, if we've started logging stream bw, clear the appropriate
  228. * fields. */
  229. if (! (old_mask & EVENT_STREAM_BANDWIDTH_USED) &&
  230. (new_mask & EVENT_STREAM_BANDWIDTH_USED)) {
  231. SMARTLIST_FOREACH(conns, connection_t *, conn,
  232. {
  233. if (conn->type == CONN_TYPE_AP) {
  234. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  235. edge_conn->n_written = edge_conn->n_read = 0;
  236. }
  237. });
  238. }
  239. }
  240. /** Adjust the log severities that result in control_event_logmsg being called
  241. * to match the severity of log messages that any controllers are interested
  242. * in. */
  243. void
  244. control_adjust_event_log_severity(void)
  245. {
  246. int i;
  247. int min_log_event=EVENT_ERR_MSG, max_log_event=EVENT_DEBUG_MSG;
  248. for (i = EVENT_DEBUG_MSG; i <= EVENT_ERR_MSG; ++i) {
  249. if (EVENT_IS_INTERESTING(i)) {
  250. min_log_event = i;
  251. break;
  252. }
  253. }
  254. for (i = EVENT_ERR_MSG; i >= EVENT_DEBUG_MSG; --i) {
  255. if (EVENT_IS_INTERESTING(i)) {
  256. max_log_event = i;
  257. break;
  258. }
  259. }
  260. if (EVENT_IS_INTERESTING(EVENT_STATUS_GENERAL)) {
  261. if (min_log_event > EVENT_NOTICE_MSG)
  262. min_log_event = EVENT_NOTICE_MSG;
  263. if (max_log_event < EVENT_ERR_MSG)
  264. max_log_event = EVENT_ERR_MSG;
  265. }
  266. if (min_log_event <= max_log_event)
  267. change_callback_log_severity(event_to_log_severity(min_log_event),
  268. event_to_log_severity(max_log_event),
  269. control_event_logmsg);
  270. else
  271. change_callback_log_severity(LOG_ERR, LOG_ERR,
  272. control_event_logmsg);
  273. }
  274. /** Return true iff the event with code <b>c</b> is being sent to any current
  275. * control connection. This is useful if the amount of work needed to prepare
  276. * to call the appropriate control_event_...() function is high.
  277. */
  278. int
  279. control_event_is_interesting(int event)
  280. {
  281. return EVENT_IS_INTERESTING(event);
  282. }
  283. /** Append a NUL-terminated string <b>s</b> to the end of
  284. * <b>conn</b>-\>outbuf.
  285. */
  286. static INLINE void
  287. connection_write_str_to_buf(const char *s, control_connection_t *conn)
  288. {
  289. size_t len = strlen(s);
  290. connection_write_to_buf(s, len, TO_CONN(conn));
  291. }
  292. /** Given a <b>len</b>-character string in <b>data</b>, made of lines
  293. * terminated by CRLF, allocate a new string in *<b>out</b>, and copy the
  294. * contents of <b>data</b> into *<b>out</b>, adding a period before any period
  295. * that appears at the start of a line, and adding a period-CRLF line at
  296. * the end. Replace all LF characters sequences with CRLF. Return the number
  297. * of bytes in *<b>out</b>.
  298. */
  299. /* static */ size_t
  300. write_escaped_data(const char *data, size_t len, char **out)
  301. {
  302. size_t sz_out = len+8;
  303. char *outp;
  304. const char *start = data, *end;
  305. int i;
  306. int start_of_line;
  307. for (i=0; i<(int)len; ++i) {
  308. if (data[i]== '\n')
  309. sz_out += 2; /* Maybe add a CR; maybe add a dot. */
  310. }
  311. *out = outp = tor_malloc(sz_out+1);
  312. end = data+len;
  313. start_of_line = 1;
  314. while (data < end) {
  315. if (*data == '\n') {
  316. if (data > start && data[-1] != '\r')
  317. *outp++ = '\r';
  318. start_of_line = 1;
  319. } else if (*data == '.') {
  320. if (start_of_line) {
  321. start_of_line = 0;
  322. *outp++ = '.';
  323. }
  324. } else {
  325. start_of_line = 0;
  326. }
  327. *outp++ = *data++;
  328. }
  329. if (outp < *out+2 || fast_memcmp(outp-2, "\r\n", 2)) {
  330. *outp++ = '\r';
  331. *outp++ = '\n';
  332. }
  333. *outp++ = '.';
  334. *outp++ = '\r';
  335. *outp++ = '\n';
  336. *outp = '\0'; /* NUL-terminate just in case. */
  337. tor_assert((outp - *out) <= (int)sz_out);
  338. return outp - *out;
  339. }
  340. /** Given a <b>len</b>-character string in <b>data</b>, made of lines
  341. * terminated by CRLF, allocate a new string in *<b>out</b>, and copy
  342. * the contents of <b>data</b> into *<b>out</b>, removing any period
  343. * that appears at the start of a line, and replacing all CRLF sequences
  344. * with LF. Return the number of
  345. * bytes in *<b>out</b>. */
  346. /* static */ size_t
  347. read_escaped_data(const char *data, size_t len, char **out)
  348. {
  349. char *outp;
  350. const char *next;
  351. const char *end;
  352. *out = outp = tor_malloc(len+1);
  353. end = data+len;
  354. while (data < end) {
  355. /* we're at the start of a line. */
  356. if (*data == '.')
  357. ++data;
  358. next = memchr(data, '\n', end-data);
  359. if (next) {
  360. size_t n_to_copy = next-data;
  361. /* Don't copy a CR that precedes this LF. */
  362. if (n_to_copy && *(next-1) == '\r')
  363. --n_to_copy;
  364. memcpy(outp, data, n_to_copy);
  365. outp += n_to_copy;
  366. data = next+1; /* This will point at the start of the next line,
  367. * or the end of the string, or a period. */
  368. } else {
  369. memcpy(outp, data, end-data);
  370. outp += (end-data);
  371. *outp = '\0';
  372. return outp - *out;
  373. }
  374. *outp++ = '\n';
  375. }
  376. *outp = '\0';
  377. return outp - *out;
  378. }
  379. /** If the first <b>in_len_max</b> characters in <b>start</b> contain a
  380. * double-quoted string with escaped characters, return the length of that
  381. * string (as encoded, including quotes). Otherwise return -1. */
  382. static INLINE int
  383. get_escaped_string_length(const char *start, size_t in_len_max,
  384. int *chars_out)
  385. {
  386. const char *cp, *end;
  387. int chars = 0;
  388. if (*start != '\"')
  389. return -1;
  390. cp = start+1;
  391. end = start+in_len_max;
  392. /* Calculate length. */
  393. while (1) {
  394. if (cp >= end) {
  395. return -1; /* Too long. */
  396. } else if (*cp == '\\') {
  397. if (++cp == end)
  398. return -1; /* Can't escape EOS. */
  399. ++cp;
  400. ++chars;
  401. } else if (*cp == '\"') {
  402. break;
  403. } else {
  404. ++cp;
  405. ++chars;
  406. }
  407. }
  408. if (chars_out)
  409. *chars_out = chars;
  410. return (int)(cp - start+1);
  411. }
  412. /** As decode_escaped_string, but does not decode the string: copies the
  413. * entire thing, including quotation marks. */
  414. static const char *
  415. extract_escaped_string(const char *start, size_t in_len_max,
  416. char **out, size_t *out_len)
  417. {
  418. int length = get_escaped_string_length(start, in_len_max, NULL);
  419. if (length<0)
  420. return NULL;
  421. *out_len = length;
  422. *out = tor_strndup(start, *out_len);
  423. return start+length;
  424. }
  425. /** Given a pointer to a string starting at <b>start</b> containing
  426. * <b>in_len_max</b> characters, decode a string beginning with one double
  427. * quote, containing any number of non-quote characters or characters escaped
  428. * with a backslash, and ending with a final double quote. Place the resulting
  429. * string (unquoted, unescaped) into a newly allocated string in *<b>out</b>;
  430. * store its length in <b>out_len</b>. On success, return a pointer to the
  431. * character immediately following the escaped string. On failure, return
  432. * NULL. */
  433. static const char *
  434. decode_escaped_string(const char *start, size_t in_len_max,
  435. char **out, size_t *out_len)
  436. {
  437. const char *cp, *end;
  438. char *outp;
  439. int len, n_chars = 0;
  440. len = get_escaped_string_length(start, in_len_max, &n_chars);
  441. if (len<0)
  442. return NULL;
  443. end = start+len-1; /* Index of last quote. */
  444. tor_assert(*end == '\"');
  445. outp = *out = tor_malloc(len+1);
  446. *out_len = n_chars;
  447. cp = start+1;
  448. while (cp < end) {
  449. if (*cp == '\\')
  450. ++cp;
  451. *outp++ = *cp++;
  452. }
  453. *outp = '\0';
  454. tor_assert((outp - *out) == (int)*out_len);
  455. return end+1;
  456. }
  457. /** Acts like sprintf, but writes its formatted string to the end of
  458. * <b>conn</b>-\>outbuf. */
  459. static void
  460. connection_printf_to_buf(control_connection_t *conn, const char *format, ...)
  461. {
  462. va_list ap;
  463. char *buf = NULL;
  464. int len;
  465. va_start(ap,format);
  466. len = tor_vasprintf(&buf, format, ap);
  467. va_end(ap);
  468. if (len < 0) {
  469. log_err(LD_BUG, "Unable to format string for controller.");
  470. tor_assert(0);
  471. }
  472. connection_write_to_buf(buf, (size_t)len, TO_CONN(conn));
  473. tor_free(buf);
  474. }
  475. /** Write all of the open control ports to ControlPortWriteToFile */
  476. void
  477. control_ports_write_to_file(void)
  478. {
  479. smartlist_t *lines;
  480. char *joined = NULL;
  481. const or_options_t *options = get_options();
  482. if (!options->ControlPortWriteToFile)
  483. return;
  484. lines = smartlist_new();
  485. SMARTLIST_FOREACH_BEGIN(get_connection_array(), const connection_t *, conn) {
  486. if (conn->type != CONN_TYPE_CONTROL_LISTENER || conn->marked_for_close)
  487. continue;
  488. #ifdef AF_UNIX
  489. if (conn->socket_family == AF_UNIX) {
  490. smartlist_add_asprintf(lines, "UNIX_PORT=%s\n", conn->address);
  491. continue;
  492. }
  493. #endif
  494. smartlist_add_asprintf(lines, "PORT=%s:%d\n", conn->address, conn->port);
  495. } SMARTLIST_FOREACH_END(conn);
  496. joined = smartlist_join_strings(lines, "", 0, NULL);
  497. if (write_str_to_file(options->ControlPortWriteToFile, joined, 0) < 0) {
  498. log_warn(LD_CONTROL, "Writing %s failed: %s",
  499. options->ControlPortWriteToFile, strerror(errno));
  500. }
  501. #ifndef _WIN32
  502. if (options->ControlPortFileGroupReadable) {
  503. if (chmod(options->ControlPortWriteToFile, 0640)) {
  504. log_warn(LD_FS,"Unable to make %s group-readable.",
  505. options->ControlPortWriteToFile);
  506. }
  507. }
  508. #endif
  509. tor_free(joined);
  510. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  511. smartlist_free(lines);
  512. }
  513. /** Send a "DONE" message down the control connection <b>conn</b>. */
  514. static void
  515. send_control_done(control_connection_t *conn)
  516. {
  517. connection_write_str_to_buf("250 OK\r\n", conn);
  518. }
  519. /** Send an event to all v1 controllers that are listening for code
  520. * <b>event</b>. The event's body is given by <b>msg</b>.
  521. *
  522. * If <b>which</b> & SHORT_NAMES, the event contains short-format names: send
  523. * it to controllers that haven't enabled the VERBOSE_NAMES feature. If
  524. * <b>which</b> & LONG_NAMES, the event contains long-format names: send it
  525. * to controllers that <em>have</em> enabled VERBOSE_NAMES.
  526. *
  527. * The EXTENDED_FORMAT and NONEXTENDED_FORMAT flags behave similarly with
  528. * respect to the EXTENDED_EVENTS feature. */
  529. static void
  530. send_control_event_string(uint16_t event, event_format_t which,
  531. const char *msg)
  532. {
  533. smartlist_t *conns = get_connection_array();
  534. (void)which;
  535. tor_assert(event >= _EVENT_MIN && event <= _EVENT_MAX);
  536. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) {
  537. if (conn->type == CONN_TYPE_CONTROL &&
  538. !conn->marked_for_close &&
  539. conn->state == CONTROL_CONN_STATE_OPEN) {
  540. control_connection_t *control_conn = TO_CONTROL_CONN(conn);
  541. if (control_conn->event_mask & (1<<event)) {
  542. int is_err = 0;
  543. connection_write_to_buf(msg, strlen(msg), TO_CONN(control_conn));
  544. if (event == EVENT_ERR_MSG)
  545. is_err = 1;
  546. else if (event == EVENT_STATUS_GENERAL)
  547. is_err = !strcmpstart(msg, "STATUS_GENERAL ERR ");
  548. else if (event == EVENT_STATUS_CLIENT)
  549. is_err = !strcmpstart(msg, "STATUS_CLIENT ERR ");
  550. else if (event == EVENT_STATUS_SERVER)
  551. is_err = !strcmpstart(msg, "STATUS_SERVER ERR ");
  552. if (is_err)
  553. connection_flush(TO_CONN(control_conn));
  554. }
  555. }
  556. } SMARTLIST_FOREACH_END(conn);
  557. }
  558. /** Helper for send_control_event and control_event_status:
  559. * Send an event to all v1 controllers that are listening for code
  560. * <b>event</b>. The event's body is created by the printf-style format in
  561. * <b>format</b>, and other arguments as provided. */
  562. static void
  563. send_control_event_impl(uint16_t event, event_format_t which,
  564. const char *format, va_list ap)
  565. {
  566. char *buf = NULL;
  567. int len;
  568. len = tor_vasprintf(&buf, format, ap);
  569. if (len < 0) {
  570. log_warn(LD_BUG, "Unable to format event for controller.");
  571. return;
  572. }
  573. send_control_event_string(event, which|ALL_FORMATS, buf);
  574. tor_free(buf);
  575. }
  576. /** Send an event to all v1 controllers that are listening for code
  577. * <b>event</b>. The event's body is created by the printf-style format in
  578. * <b>format</b>, and other arguments as provided. */
  579. static void
  580. send_control_event(uint16_t event, event_format_t which,
  581. const char *format, ...)
  582. {
  583. va_list ap;
  584. va_start(ap, format);
  585. send_control_event_impl(event, which, format, ap);
  586. va_end(ap);
  587. }
  588. /** Given a text circuit <b>id</b>, return the corresponding circuit. */
  589. static origin_circuit_t *
  590. get_circ(const char *id)
  591. {
  592. uint32_t n_id;
  593. int ok;
  594. n_id = (uint32_t) tor_parse_ulong(id, 10, 0, UINT32_MAX, &ok, NULL);
  595. if (!ok)
  596. return NULL;
  597. return circuit_get_by_global_id(n_id);
  598. }
  599. /** Given a text stream <b>id</b>, return the corresponding AP connection. */
  600. static entry_connection_t *
  601. get_stream(const char *id)
  602. {
  603. uint64_t n_id;
  604. int ok;
  605. connection_t *conn;
  606. n_id = tor_parse_uint64(id, 10, 0, UINT64_MAX, &ok, NULL);
  607. if (!ok)
  608. return NULL;
  609. conn = connection_get_by_global_id(n_id);
  610. if (!conn || conn->type != CONN_TYPE_AP || conn->marked_for_close)
  611. return NULL;
  612. return TO_ENTRY_CONN(conn);
  613. }
  614. /** Helper for setconf and resetconf. Acts like setconf, except
  615. * it passes <b>use_defaults</b> on to options_trial_assign(). Modifies the
  616. * contents of body.
  617. */
  618. static int
  619. control_setconf_helper(control_connection_t *conn, uint32_t len, char *body,
  620. int use_defaults)
  621. {
  622. setopt_err_t opt_err;
  623. config_line_t *lines=NULL;
  624. char *start = body;
  625. char *errstring = NULL;
  626. const int clear_first = 1;
  627. char *config;
  628. smartlist_t *entries = smartlist_new();
  629. /* We have a string, "body", of the format '(key(=val|="val")?)' entries
  630. * separated by space. break it into a list of configuration entries. */
  631. while (*body) {
  632. char *eq = body;
  633. char *key;
  634. char *entry;
  635. while (!TOR_ISSPACE(*eq) && *eq != '=')
  636. ++eq;
  637. key = tor_strndup(body, eq-body);
  638. body = eq+1;
  639. if (*eq == '=') {
  640. char *val=NULL;
  641. size_t val_len=0;
  642. if (*body != '\"') {
  643. char *val_start = body;
  644. while (!TOR_ISSPACE(*body))
  645. body++;
  646. val = tor_strndup(val_start, body-val_start);
  647. val_len = strlen(val);
  648. } else {
  649. body = (char*)extract_escaped_string(body, (len - (body-start)),
  650. &val, &val_len);
  651. if (!body) {
  652. connection_write_str_to_buf("551 Couldn't parse string\r\n", conn);
  653. SMARTLIST_FOREACH(entries, char *, cp, tor_free(cp));
  654. smartlist_free(entries);
  655. tor_free(key);
  656. return 0;
  657. }
  658. }
  659. tor_asprintf(&entry, "%s %s", key, val);
  660. tor_free(key);
  661. tor_free(val);
  662. } else {
  663. entry = key;
  664. }
  665. smartlist_add(entries, entry);
  666. while (TOR_ISSPACE(*body))
  667. ++body;
  668. }
  669. smartlist_add(entries, tor_strdup(""));
  670. config = smartlist_join_strings(entries, "\n", 0, NULL);
  671. SMARTLIST_FOREACH(entries, char *, cp, tor_free(cp));
  672. smartlist_free(entries);
  673. if (config_get_lines(config, &lines, 0) < 0) {
  674. log_warn(LD_CONTROL,"Controller gave us config lines we can't parse.");
  675. connection_write_str_to_buf("551 Couldn't parse configuration\r\n",
  676. conn);
  677. tor_free(config);
  678. return 0;
  679. }
  680. tor_free(config);
  681. opt_err = options_trial_assign(lines, use_defaults, clear_first, &errstring);
  682. {
  683. const char *msg;
  684. switch (opt_err) {
  685. case SETOPT_ERR_MISC:
  686. msg = "552 Unrecognized option";
  687. break;
  688. case SETOPT_ERR_PARSE:
  689. msg = "513 Unacceptable option value";
  690. break;
  691. case SETOPT_ERR_TRANSITION:
  692. msg = "553 Transition not allowed";
  693. break;
  694. case SETOPT_ERR_SETTING:
  695. default:
  696. msg = "553 Unable to set option";
  697. break;
  698. case SETOPT_OK:
  699. config_free_lines(lines);
  700. send_control_done(conn);
  701. return 0;
  702. }
  703. log_warn(LD_CONTROL,
  704. "Controller gave us config lines that didn't validate: %s",
  705. errstring);
  706. connection_printf_to_buf(conn, "%s: %s\r\n", msg, errstring);
  707. config_free_lines(lines);
  708. tor_free(errstring);
  709. return 0;
  710. }
  711. }
  712. /** Called when we receive a SETCONF message: parse the body and try
  713. * to update our configuration. Reply with a DONE or ERROR message.
  714. * Modifies the contents of body.*/
  715. static int
  716. handle_control_setconf(control_connection_t *conn, uint32_t len, char *body)
  717. {
  718. return control_setconf_helper(conn, len, body, 0);
  719. }
  720. /** Called when we receive a RESETCONF message: parse the body and try
  721. * to update our configuration. Reply with a DONE or ERROR message.
  722. * Modifies the contents of body. */
  723. static int
  724. handle_control_resetconf(control_connection_t *conn, uint32_t len, char *body)
  725. {
  726. return control_setconf_helper(conn, len, body, 1);
  727. }
  728. /** Called when we receive a GETCONF message. Parse the request, and
  729. * reply with a CONFVALUE or an ERROR message */
  730. static int
  731. handle_control_getconf(control_connection_t *conn, uint32_t body_len,
  732. const char *body)
  733. {
  734. smartlist_t *questions = smartlist_new();
  735. smartlist_t *answers = smartlist_new();
  736. smartlist_t *unrecognized = smartlist_new();
  737. char *msg = NULL;
  738. size_t msg_len;
  739. const or_options_t *options = get_options();
  740. int i, len;
  741. (void) body_len; /* body is NUL-terminated; so we can ignore len. */
  742. smartlist_split_string(questions, body, " ",
  743. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  744. SMARTLIST_FOREACH(questions, const char *, q,
  745. {
  746. if (!option_is_recognized(q)) {
  747. smartlist_add(unrecognized, (char*) q);
  748. } else {
  749. config_line_t *answer = option_get_assignment(options,q);
  750. if (!answer) {
  751. const char *name = option_get_canonical_name(q);
  752. smartlist_add_asprintf(answers, "250-%s\r\n", name);
  753. }
  754. while (answer) {
  755. config_line_t *next;
  756. smartlist_add_asprintf(answers, "250-%s=%s\r\n",
  757. answer->key, answer->value);
  758. next = answer->next;
  759. tor_free(answer->key);
  760. tor_free(answer->value);
  761. tor_free(answer);
  762. answer = next;
  763. }
  764. }
  765. });
  766. if ((len = smartlist_len(unrecognized))) {
  767. for (i=0; i < len-1; ++i)
  768. connection_printf_to_buf(conn,
  769. "552-Unrecognized configuration key \"%s\"\r\n",
  770. (char*)smartlist_get(unrecognized, i));
  771. connection_printf_to_buf(conn,
  772. "552 Unrecognized configuration key \"%s\"\r\n",
  773. (char*)smartlist_get(unrecognized, len-1));
  774. } else if ((len = smartlist_len(answers))) {
  775. char *tmp = smartlist_get(answers, len-1);
  776. tor_assert(strlen(tmp)>4);
  777. tmp[3] = ' ';
  778. msg = smartlist_join_strings(answers, "", 0, &msg_len);
  779. connection_write_to_buf(msg, msg_len, TO_CONN(conn));
  780. } else {
  781. connection_write_str_to_buf("250 OK\r\n", conn);
  782. }
  783. SMARTLIST_FOREACH(answers, char *, cp, tor_free(cp));
  784. smartlist_free(answers);
  785. SMARTLIST_FOREACH(questions, char *, cp, tor_free(cp));
  786. smartlist_free(questions);
  787. smartlist_free(unrecognized);
  788. tor_free(msg);
  789. return 0;
  790. }
  791. /** Called when we get a +LOADCONF message. */
  792. static int
  793. handle_control_loadconf(control_connection_t *conn, uint32_t len,
  794. const char *body)
  795. {
  796. setopt_err_t retval;
  797. char *errstring = NULL;
  798. const char *msg = NULL;
  799. (void) len;
  800. retval = options_init_from_string(NULL, body, CMD_RUN_TOR, NULL, &errstring);
  801. if (retval != SETOPT_OK)
  802. log_warn(LD_CONTROL,
  803. "Controller gave us config file that didn't validate: %s",
  804. errstring);
  805. switch (retval) {
  806. case SETOPT_ERR_PARSE:
  807. msg = "552 Invalid config file";
  808. break;
  809. case SETOPT_ERR_TRANSITION:
  810. msg = "553 Transition not allowed";
  811. break;
  812. case SETOPT_ERR_SETTING:
  813. msg = "553 Unable to set option";
  814. break;
  815. case SETOPT_ERR_MISC:
  816. default:
  817. msg = "550 Unable to load config";
  818. break;
  819. case SETOPT_OK:
  820. break;
  821. }
  822. if (msg) {
  823. if (errstring)
  824. connection_printf_to_buf(conn, "%s: %s\r\n", msg, errstring);
  825. else
  826. connection_printf_to_buf(conn, "%s\r\n", msg);
  827. } else {
  828. send_control_done(conn);
  829. }
  830. tor_free(errstring);
  831. return 0;
  832. }
  833. /** Helper structure: maps event values to their names. */
  834. struct control_event_t {
  835. uint16_t event_code;
  836. const char *event_name;
  837. };
  838. /** Table mapping event values to their names. Used to implement SETEVENTS
  839. * and GETINFO events/names, and to keep they in sync. */
  840. static const struct control_event_t control_event_table[] = {
  841. { EVENT_CIRCUIT_STATUS, "CIRC" },
  842. { EVENT_CIRCUIT_STATUS_MINOR, "CIRC_MINOR" },
  843. { EVENT_STREAM_STATUS, "STREAM" },
  844. { EVENT_OR_CONN_STATUS, "ORCONN" },
  845. { EVENT_BANDWIDTH_USED, "BW" },
  846. { EVENT_DEBUG_MSG, "DEBUG" },
  847. { EVENT_INFO_MSG, "INFO" },
  848. { EVENT_NOTICE_MSG, "NOTICE" },
  849. { EVENT_WARN_MSG, "WARN" },
  850. { EVENT_ERR_MSG, "ERR" },
  851. { EVENT_NEW_DESC, "NEWDESC" },
  852. { EVENT_ADDRMAP, "ADDRMAP" },
  853. { EVENT_AUTHDIR_NEWDESCS, "AUTHDIR_NEWDESCS" },
  854. { EVENT_DESCCHANGED, "DESCCHANGED" },
  855. { EVENT_NS, "NS" },
  856. { EVENT_STATUS_GENERAL, "STATUS_GENERAL" },
  857. { EVENT_STATUS_CLIENT, "STATUS_CLIENT" },
  858. { EVENT_STATUS_SERVER, "STATUS_SERVER" },
  859. { EVENT_GUARD, "GUARD" },
  860. { EVENT_STREAM_BANDWIDTH_USED, "STREAM_BW" },
  861. { EVENT_CLIENTS_SEEN, "CLIENTS_SEEN" },
  862. { EVENT_NEWCONSENSUS, "NEWCONSENSUS" },
  863. { EVENT_BUILDTIMEOUT_SET, "BUILDTIMEOUT_SET" },
  864. { EVENT_SIGNAL, "SIGNAL" },
  865. { EVENT_CONF_CHANGED, "CONF_CHANGED"},
  866. { 0, NULL },
  867. };
  868. /** Called when we get a SETEVENTS message: update conn->event_mask,
  869. * and reply with DONE or ERROR. */
  870. static int
  871. handle_control_setevents(control_connection_t *conn, uint32_t len,
  872. const char *body)
  873. {
  874. int event_code = -1;
  875. uint32_t event_mask = 0;
  876. smartlist_t *events = smartlist_new();
  877. (void) len;
  878. smartlist_split_string(events, body, " ",
  879. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  880. SMARTLIST_FOREACH_BEGIN(events, const char *, ev)
  881. {
  882. if (!strcasecmp(ev, "EXTENDED")) {
  883. continue;
  884. } else {
  885. int i;
  886. for (i = 0; control_event_table[i].event_name != NULL; ++i) {
  887. if (!strcasecmp(ev, control_event_table[i].event_name)) {
  888. event_code = control_event_table[i].event_code;
  889. break;
  890. }
  891. }
  892. if (event_code == -1) {
  893. connection_printf_to_buf(conn, "552 Unrecognized event \"%s\"\r\n",
  894. ev);
  895. SMARTLIST_FOREACH(events, char *, e, tor_free(e));
  896. smartlist_free(events);
  897. return 0;
  898. }
  899. }
  900. event_mask |= (1 << event_code);
  901. }
  902. SMARTLIST_FOREACH_END(ev);
  903. SMARTLIST_FOREACH(events, char *, e, tor_free(e));
  904. smartlist_free(events);
  905. conn->event_mask = event_mask;
  906. control_update_global_event_mask();
  907. send_control_done(conn);
  908. return 0;
  909. }
  910. /** Decode the hashed, base64'd passwords stored in <b>passwords</b>.
  911. * Return a smartlist of acceptable passwords (unterminated strings of
  912. * length S2K_SPECIFIER_LEN+DIGEST_LEN) on success, or NULL on failure.
  913. */
  914. smartlist_t *
  915. decode_hashed_passwords(config_line_t *passwords)
  916. {
  917. char decoded[64];
  918. config_line_t *cl;
  919. smartlist_t *sl = smartlist_new();
  920. tor_assert(passwords);
  921. for (cl = passwords; cl; cl = cl->next) {
  922. const char *hashed = cl->value;
  923. if (!strcmpstart(hashed, "16:")) {
  924. if (base16_decode(decoded, sizeof(decoded), hashed+3, strlen(hashed+3))<0
  925. || strlen(hashed+3) != (S2K_SPECIFIER_LEN+DIGEST_LEN)*2) {
  926. goto err;
  927. }
  928. } else {
  929. if (base64_decode(decoded, sizeof(decoded), hashed, strlen(hashed))
  930. != S2K_SPECIFIER_LEN+DIGEST_LEN) {
  931. goto err;
  932. }
  933. }
  934. smartlist_add(sl, tor_memdup(decoded, S2K_SPECIFIER_LEN+DIGEST_LEN));
  935. }
  936. return sl;
  937. err:
  938. SMARTLIST_FOREACH(sl, char*, cp, tor_free(cp));
  939. smartlist_free(sl);
  940. return NULL;
  941. }
  942. /** Called when we get an AUTHENTICATE message. Check whether the
  943. * authentication is valid, and if so, update the connection's state to
  944. * OPEN. Reply with DONE or ERROR.
  945. */
  946. static int
  947. handle_control_authenticate(control_connection_t *conn, uint32_t len,
  948. const char *body)
  949. {
  950. int used_quoted_string = 0;
  951. const or_options_t *options = get_options();
  952. const char *errstr = NULL;
  953. char *password;
  954. size_t password_len;
  955. const char *cp;
  956. int i;
  957. int bad_cookie=0, bad_password=0;
  958. smartlist_t *sl = NULL;
  959. if (!len) {
  960. password = tor_strdup("");
  961. password_len = 0;
  962. } else if (TOR_ISXDIGIT(body[0])) {
  963. cp = body;
  964. while (TOR_ISXDIGIT(*cp))
  965. ++cp;
  966. i = (int)(cp - body);
  967. tor_assert(i>0);
  968. password_len = i/2;
  969. password = tor_malloc(password_len + 1);
  970. if (base16_decode(password, password_len+1, body, i)<0) {
  971. connection_write_str_to_buf(
  972. "551 Invalid hexadecimal encoding. Maybe you tried a plain text "
  973. "password? If so, the standard requires that you put it in "
  974. "double quotes.\r\n", conn);
  975. connection_mark_for_close(TO_CONN(conn));
  976. tor_free(password);
  977. return 0;
  978. }
  979. } else {
  980. if (!decode_escaped_string(body, len, &password, &password_len)) {
  981. connection_write_str_to_buf("551 Invalid quoted string. You need "
  982. "to put the password in double quotes.\r\n", conn);
  983. connection_mark_for_close(TO_CONN(conn));
  984. return 0;
  985. }
  986. used_quoted_string = 1;
  987. }
  988. if (conn->safecookie_client_hash != NULL) {
  989. /* The controller has chosen safe cookie authentication; the only
  990. * acceptable authentication value is the controller-to-server
  991. * response. */
  992. tor_assert(authentication_cookie_is_set);
  993. if (password_len != DIGEST256_LEN) {
  994. log_warn(LD_CONTROL,
  995. "Got safe cookie authentication response with wrong length "
  996. "(%d)", (int)password_len);
  997. errstr = "Wrong length for safe cookie response.";
  998. goto err;
  999. }
  1000. if (tor_memneq(conn->safecookie_client_hash, password, DIGEST256_LEN)) {
  1001. log_warn(LD_CONTROL,
  1002. "Got incorrect safe cookie authentication response");
  1003. errstr = "Safe cookie response did not match expected value.";
  1004. goto err;
  1005. }
  1006. tor_free(conn->safecookie_client_hash);
  1007. goto ok;
  1008. }
  1009. if (!options->CookieAuthentication && !options->HashedControlPassword &&
  1010. !options->HashedControlSessionPassword) {
  1011. /* if Tor doesn't demand any stronger authentication, then
  1012. * the controller can get in with anything. */
  1013. goto ok;
  1014. }
  1015. if (options->CookieAuthentication) {
  1016. int also_password = options->HashedControlPassword != NULL ||
  1017. options->HashedControlSessionPassword != NULL;
  1018. if (password_len != AUTHENTICATION_COOKIE_LEN) {
  1019. if (!also_password) {
  1020. log_warn(LD_CONTROL, "Got authentication cookie with wrong length "
  1021. "(%d)", (int)password_len);
  1022. errstr = "Wrong length on authentication cookie.";
  1023. goto err;
  1024. }
  1025. bad_cookie = 1;
  1026. } else if (tor_memneq(authentication_cookie, password, password_len)) {
  1027. if (!also_password) {
  1028. log_warn(LD_CONTROL, "Got mismatched authentication cookie");
  1029. errstr = "Authentication cookie did not match expected value.";
  1030. goto err;
  1031. }
  1032. bad_cookie = 1;
  1033. } else {
  1034. goto ok;
  1035. }
  1036. }
  1037. if (options->HashedControlPassword ||
  1038. options->HashedControlSessionPassword) {
  1039. int bad = 0;
  1040. smartlist_t *sl_tmp;
  1041. char received[DIGEST_LEN];
  1042. int also_cookie = options->CookieAuthentication;
  1043. sl = smartlist_new();
  1044. if (options->HashedControlPassword) {
  1045. sl_tmp = decode_hashed_passwords(options->HashedControlPassword);
  1046. if (!sl_tmp)
  1047. bad = 1;
  1048. else {
  1049. smartlist_add_all(sl, sl_tmp);
  1050. smartlist_free(sl_tmp);
  1051. }
  1052. }
  1053. if (options->HashedControlSessionPassword) {
  1054. sl_tmp = decode_hashed_passwords(options->HashedControlSessionPassword);
  1055. if (!sl_tmp)
  1056. bad = 1;
  1057. else {
  1058. smartlist_add_all(sl, sl_tmp);
  1059. smartlist_free(sl_tmp);
  1060. }
  1061. }
  1062. if (bad) {
  1063. if (!also_cookie) {
  1064. log_warn(LD_CONTROL,
  1065. "Couldn't decode HashedControlPassword: invalid base16");
  1066. errstr="Couldn't decode HashedControlPassword value in configuration.";
  1067. }
  1068. bad_password = 1;
  1069. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1070. smartlist_free(sl);
  1071. } else {
  1072. SMARTLIST_FOREACH(sl, char *, expected,
  1073. {
  1074. secret_to_key(received,DIGEST_LEN,password,password_len,expected);
  1075. if (tor_memeq(expected+S2K_SPECIFIER_LEN, received, DIGEST_LEN))
  1076. goto ok;
  1077. });
  1078. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1079. smartlist_free(sl);
  1080. if (used_quoted_string)
  1081. errstr = "Password did not match HashedControlPassword value from "
  1082. "configuration";
  1083. else
  1084. errstr = "Password did not match HashedControlPassword value from "
  1085. "configuration. Maybe you tried a plain text password? "
  1086. "If so, the standard requires that you put it in double quotes.";
  1087. bad_password = 1;
  1088. if (!also_cookie)
  1089. goto err;
  1090. }
  1091. }
  1092. /** We only get here if both kinds of authentication failed. */
  1093. tor_assert(bad_password && bad_cookie);
  1094. log_warn(LD_CONTROL, "Bad password or authentication cookie on controller.");
  1095. errstr = "Password did not match HashedControlPassword *or* authentication "
  1096. "cookie.";
  1097. err:
  1098. tor_free(password);
  1099. connection_printf_to_buf(conn, "515 Authentication failed: %s\r\n",
  1100. errstr ? errstr : "Unknown reason.");
  1101. connection_mark_for_close(TO_CONN(conn));
  1102. return 0;
  1103. ok:
  1104. log_info(LD_CONTROL, "Authenticated control connection (%d)", conn->_base.s);
  1105. send_control_done(conn);
  1106. conn->_base.state = CONTROL_CONN_STATE_OPEN;
  1107. tor_free(password);
  1108. if (sl) { /* clean up */
  1109. SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp));
  1110. smartlist_free(sl);
  1111. }
  1112. return 0;
  1113. }
  1114. /** Called when we get a SAVECONF command. Try to flush the current options to
  1115. * disk, and report success or failure. */
  1116. static int
  1117. handle_control_saveconf(control_connection_t *conn, uint32_t len,
  1118. const char *body)
  1119. {
  1120. (void) len;
  1121. (void) body;
  1122. if (options_save_current()<0) {
  1123. connection_write_str_to_buf(
  1124. "551 Unable to write configuration to disk.\r\n", conn);
  1125. } else {
  1126. send_control_done(conn);
  1127. }
  1128. return 0;
  1129. }
  1130. /** Called when we get a SIGNAL command. React to the provided signal, and
  1131. * report success or failure. (If the signal results in a shutdown, success
  1132. * may not be reported.) */
  1133. static int
  1134. handle_control_signal(control_connection_t *conn, uint32_t len,
  1135. const char *body)
  1136. {
  1137. int sig;
  1138. int n = 0;
  1139. char *s;
  1140. (void) len;
  1141. while (body[n] && ! TOR_ISSPACE(body[n]))
  1142. ++n;
  1143. s = tor_strndup(body, n);
  1144. if (!strcasecmp(s, "RELOAD") || !strcasecmp(s, "HUP"))
  1145. sig = SIGHUP;
  1146. else if (!strcasecmp(s, "SHUTDOWN") || !strcasecmp(s, "INT"))
  1147. sig = SIGINT;
  1148. else if (!strcasecmp(s, "DUMP") || !strcasecmp(s, "USR1"))
  1149. sig = SIGUSR1;
  1150. else if (!strcasecmp(s, "DEBUG") || !strcasecmp(s, "USR2"))
  1151. sig = SIGUSR2;
  1152. else if (!strcasecmp(s, "HALT") || !strcasecmp(s, "TERM"))
  1153. sig = SIGTERM;
  1154. else if (!strcasecmp(s, "NEWNYM"))
  1155. sig = SIGNEWNYM;
  1156. else if (!strcasecmp(s, "CLEARDNSCACHE"))
  1157. sig = SIGCLEARDNSCACHE;
  1158. else {
  1159. connection_printf_to_buf(conn, "552 Unrecognized signal code \"%s\"\r\n",
  1160. s);
  1161. sig = -1;
  1162. }
  1163. tor_free(s);
  1164. if (sig<0)
  1165. return 0;
  1166. send_control_done(conn);
  1167. /* Flush the "done" first if the signal might make us shut down. */
  1168. if (sig == SIGTERM || sig == SIGINT)
  1169. connection_flush(TO_CONN(conn));
  1170. process_signal(sig);
  1171. return 0;
  1172. }
  1173. /** Called when we get a TAKEOWNERSHIP command. Mark this connection
  1174. * as an owning connection, so that we will exit if the connection
  1175. * closes. */
  1176. static int
  1177. handle_control_takeownership(control_connection_t *conn, uint32_t len,
  1178. const char *body)
  1179. {
  1180. (void)len;
  1181. (void)body;
  1182. conn->is_owning_control_connection = 1;
  1183. log_info(LD_CONTROL, "Control connection %d has taken ownership of this "
  1184. "Tor instance.",
  1185. (int)(conn->_base.s));
  1186. send_control_done(conn);
  1187. return 0;
  1188. }
  1189. /** Return true iff <b>addr</b> is unusable as a mapaddress target because of
  1190. * containing funny characters. */
  1191. static int
  1192. address_is_invalid_mapaddress_target(const char *addr)
  1193. {
  1194. if (!strcmpstart(addr, "*."))
  1195. return address_is_invalid_destination(addr+2, 1);
  1196. else
  1197. return address_is_invalid_destination(addr, 1);
  1198. }
  1199. /** Called when we get a MAPADDRESS command; try to bind all listed addresses,
  1200. * and report success or failure. */
  1201. static int
  1202. handle_control_mapaddress(control_connection_t *conn, uint32_t len,
  1203. const char *body)
  1204. {
  1205. smartlist_t *elts;
  1206. smartlist_t *lines;
  1207. smartlist_t *reply;
  1208. char *r;
  1209. size_t sz;
  1210. (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */
  1211. lines = smartlist_new();
  1212. elts = smartlist_new();
  1213. reply = smartlist_new();
  1214. smartlist_split_string(lines, body, " ",
  1215. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  1216. SMARTLIST_FOREACH_BEGIN(lines, char *, line) {
  1217. tor_strlower(line);
  1218. smartlist_split_string(elts, line, "=", 0, 2);
  1219. if (smartlist_len(elts) == 2) {
  1220. const char *from = smartlist_get(elts,0);
  1221. const char *to = smartlist_get(elts,1);
  1222. if (address_is_invalid_mapaddress_target(to)) {
  1223. smartlist_add_asprintf(reply,
  1224. "512-syntax error: invalid address '%s'", to);
  1225. log_warn(LD_CONTROL,
  1226. "Skipping invalid argument '%s' in MapAddress msg", to);
  1227. } else if (!strcmp(from, ".") || !strcmp(from, "0.0.0.0")) {
  1228. const char *address = addressmap_register_virtual_address(
  1229. !strcmp(from,".") ? RESOLVED_TYPE_HOSTNAME : RESOLVED_TYPE_IPV4,
  1230. tor_strdup(to));
  1231. if (!address) {
  1232. smartlist_add_asprintf(reply,
  1233. "451-resource exhausted: skipping '%s'", line);
  1234. log_warn(LD_CONTROL,
  1235. "Unable to allocate address for '%s' in MapAddress msg",
  1236. safe_str_client(line));
  1237. } else {
  1238. smartlist_add_asprintf(reply, "250-%s=%s", address, to);
  1239. }
  1240. } else {
  1241. addressmap_register(from, tor_strdup(to), 1,
  1242. ADDRMAPSRC_CONTROLLER, 0, 0);
  1243. smartlist_add_asprintf(reply, "250-%s", line);
  1244. }
  1245. } else {
  1246. smartlist_add_asprintf(reply, "512-syntax error: mapping '%s' is "
  1247. "not of expected form 'foo=bar'.", line);
  1248. log_info(LD_CONTROL, "Skipping MapAddress '%s': wrong "
  1249. "number of items.",
  1250. safe_str_client(line));
  1251. }
  1252. SMARTLIST_FOREACH(elts, char *, cp, tor_free(cp));
  1253. smartlist_clear(elts);
  1254. } SMARTLIST_FOREACH_END(line);
  1255. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  1256. smartlist_free(lines);
  1257. smartlist_free(elts);
  1258. if (smartlist_len(reply)) {
  1259. ((char*)smartlist_get(reply,smartlist_len(reply)-1))[3] = ' ';
  1260. r = smartlist_join_strings(reply, "\r\n", 1, &sz);
  1261. connection_write_to_buf(r, sz, TO_CONN(conn));
  1262. tor_free(r);
  1263. } else {
  1264. const char *response =
  1265. "512 syntax error: not enough arguments to mapaddress.\r\n";
  1266. connection_write_to_buf(response, strlen(response), TO_CONN(conn));
  1267. }
  1268. SMARTLIST_FOREACH(reply, char *, cp, tor_free(cp));
  1269. smartlist_free(reply);
  1270. return 0;
  1271. }
  1272. /** Implementation helper for GETINFO: knows the answers for various
  1273. * trivial-to-implement questions. */
  1274. static int
  1275. getinfo_helper_misc(control_connection_t *conn, const char *question,
  1276. char **answer, const char **errmsg)
  1277. {
  1278. (void) conn;
  1279. if (!strcmp(question, "version")) {
  1280. *answer = tor_strdup(get_version());
  1281. } else if (!strcmp(question, "config-file")) {
  1282. *answer = tor_strdup(get_torrc_fname(0));
  1283. } else if (!strcmp(question, "config-defaults-file")) {
  1284. *answer = tor_strdup(get_torrc_fname(1));
  1285. } else if (!strcmp(question, "config-text")) {
  1286. *answer = options_dump(get_options(), 1);
  1287. } else if (!strcmp(question, "info/names")) {
  1288. *answer = list_getinfo_options();
  1289. } else if (!strcmp(question, "dormant")) {
  1290. int dormant = rep_hist_circbuilding_dormant(time(NULL));
  1291. *answer = tor_strdup(dormant ? "1" : "0");
  1292. } else if (!strcmp(question, "events/names")) {
  1293. int i;
  1294. smartlist_t *event_names = smartlist_new();
  1295. for (i = 0; control_event_table[i].event_name != NULL; ++i) {
  1296. smartlist_add(event_names, (char *)control_event_table[i].event_name);
  1297. }
  1298. *answer = smartlist_join_strings(event_names, " ", 0, NULL);
  1299. smartlist_free(event_names);
  1300. } else if (!strcmp(question, "features/names")) {
  1301. *answer = tor_strdup("VERBOSE_NAMES EXTENDED_EVENTS");
  1302. } else if (!strcmp(question, "address")) {
  1303. uint32_t addr;
  1304. if (router_pick_published_address(get_options(), &addr) < 0) {
  1305. *errmsg = "Address unknown";
  1306. return -1;
  1307. }
  1308. *answer = tor_dup_ip(addr);
  1309. } else if (!strcmp(question, "traffic/read")) {
  1310. tor_asprintf(answer, U64_FORMAT, U64_PRINTF_ARG(get_bytes_read()));
  1311. } else if (!strcmp(question, "traffic/written")) {
  1312. tor_asprintf(answer, U64_FORMAT, U64_PRINTF_ARG(get_bytes_written()));
  1313. } else if (!strcmp(question, "process/pid")) {
  1314. int myPid = -1;
  1315. #ifdef _WIN32
  1316. myPid = _getpid();
  1317. #else
  1318. myPid = getpid();
  1319. #endif
  1320. tor_asprintf(answer, "%d", myPid);
  1321. } else if (!strcmp(question, "process/uid")) {
  1322. #ifdef _WIN32
  1323. *answer = tor_strdup("-1");
  1324. #else
  1325. int myUid = geteuid();
  1326. tor_asprintf(answer, "%d", myUid);
  1327. #endif
  1328. } else if (!strcmp(question, "process/user")) {
  1329. #ifdef _WIN32
  1330. *answer = tor_strdup("");
  1331. #else
  1332. int myUid = geteuid();
  1333. struct passwd *myPwEntry = getpwuid(myUid);
  1334. if (myPwEntry) {
  1335. *answer = tor_strdup(myPwEntry->pw_name);
  1336. } else {
  1337. *answer = tor_strdup("");
  1338. }
  1339. #endif
  1340. } else if (!strcmp(question, "process/descriptor-limit")) {
  1341. int max_fds=-1;
  1342. set_max_file_descriptors(0, &max_fds);
  1343. tor_asprintf(answer, "%d", max_fds);
  1344. } else if (!strcmp(question, "dir-usage")) {
  1345. *answer = directory_dump_request_log();
  1346. } else if (!strcmp(question, "fingerprint")) {
  1347. crypto_pk_t *server_key;
  1348. if (!server_mode(get_options())) {
  1349. *errmsg = "Not running in server mode";
  1350. return -1;
  1351. }
  1352. server_key = get_server_identity_key();
  1353. *answer = tor_malloc(HEX_DIGEST_LEN+1);
  1354. crypto_pk_get_fingerprint(server_key, *answer, 0);
  1355. }
  1356. return 0;
  1357. }
  1358. /** Awful hack: return a newly allocated string based on a routerinfo and
  1359. * (possibly) an extrainfo, sticking the read-history and write-history from
  1360. * <b>ei</b> into the resulting string. The thing you get back won't
  1361. * necessarily have a valid signature.
  1362. *
  1363. * New code should never use this; it's for backward compatibility.
  1364. *
  1365. * NOTE: <b>ri_body</b> is as returned by signed_descriptor_get_body: it might
  1366. * not be NUL-terminated. */
  1367. static char *
  1368. munge_extrainfo_into_routerinfo(const char *ri_body,
  1369. const signed_descriptor_t *ri,
  1370. const signed_descriptor_t *ei)
  1371. {
  1372. char *out = NULL, *outp;
  1373. int i;
  1374. const char *router_sig;
  1375. const char *ei_body = signed_descriptor_get_body(ei);
  1376. size_t ri_len = ri->signed_descriptor_len;
  1377. size_t ei_len = ei->signed_descriptor_len;
  1378. if (!ei_body)
  1379. goto bail;
  1380. outp = out = tor_malloc(ri_len+ei_len+1);
  1381. if (!(router_sig = tor_memstr(ri_body, ri_len, "\nrouter-signature")))
  1382. goto bail;
  1383. ++router_sig;
  1384. memcpy(out, ri_body, router_sig-ri_body);
  1385. outp += router_sig-ri_body;
  1386. for (i=0; i < 2; ++i) {
  1387. const char *kwd = i?"\nwrite-history ":"\nread-history ";
  1388. const char *cp, *eol;
  1389. if (!(cp = tor_memstr(ei_body, ei_len, kwd)))
  1390. continue;
  1391. ++cp;
  1392. eol = memchr(cp, '\n', ei_len - (cp-ei_body));
  1393. memcpy(outp, cp, eol-cp+1);
  1394. outp += eol-cp+1;
  1395. }
  1396. memcpy(outp, router_sig, ri_len - (router_sig-ri_body));
  1397. *outp++ = '\0';
  1398. tor_assert(outp-out < (int)(ri_len+ei_len+1));
  1399. return out;
  1400. bail:
  1401. tor_free(out);
  1402. return tor_strndup(ri_body, ri->signed_descriptor_len);
  1403. }
  1404. /** Implementation helper for GETINFO: answers requests for information about
  1405. * which ports are bound. */
  1406. static int
  1407. getinfo_helper_listeners(control_connection_t *control_conn,
  1408. const char *question,
  1409. char **answer, const char **errmsg)
  1410. {
  1411. int type;
  1412. smartlist_t *res;
  1413. (void)control_conn;
  1414. (void)errmsg;
  1415. if (!strcmp(question, "net/listeners/or"))
  1416. type = CONN_TYPE_OR_LISTENER;
  1417. else if (!strcmp(question, "net/listeners/dir"))
  1418. type = CONN_TYPE_DIR_LISTENER;
  1419. else if (!strcmp(question, "net/listeners/socks"))
  1420. type = CONN_TYPE_AP_LISTENER;
  1421. else if (!strcmp(question, "net/listeners/trans"))
  1422. type = CONN_TYPE_AP_TRANS_LISTENER;
  1423. else if (!strcmp(question, "net/listeners/natd"))
  1424. type = CONN_TYPE_AP_NATD_LISTENER;
  1425. else if (!strcmp(question, "net/listeners/dns"))
  1426. type = CONN_TYPE_AP_DNS_LISTENER;
  1427. else if (!strcmp(question, "net/listeners/control"))
  1428. type = CONN_TYPE_CONTROL_LISTENER;
  1429. else
  1430. return 0; /* unknown key */
  1431. res = smartlist_new();
  1432. SMARTLIST_FOREACH_BEGIN(get_connection_array(), connection_t *, conn) {
  1433. struct sockaddr_storage ss;
  1434. socklen_t ss_len = sizeof(ss);
  1435. if (conn->type != type || conn->marked_for_close || !SOCKET_OK(conn->s))
  1436. continue;
  1437. if (getsockname(conn->s, (struct sockaddr *)&ss, &ss_len) < 0) {
  1438. smartlist_add_asprintf(res, "%s:%d", conn->address, (int)conn->port);
  1439. } else {
  1440. char *tmp = tor_sockaddr_to_str((struct sockaddr *)&ss);
  1441. smartlist_add(res, esc_for_log(tmp));
  1442. tor_free(tmp);
  1443. }
  1444. } SMARTLIST_FOREACH_END(conn);
  1445. *answer = smartlist_join_strings(res, " ", 0, NULL);
  1446. SMARTLIST_FOREACH(res, char *, cp, tor_free(cp));
  1447. smartlist_free(res);
  1448. return 0;
  1449. }
  1450. /** Implementation helper for GETINFO: knows the answers for questions about
  1451. * directory information. */
  1452. static int
  1453. getinfo_helper_dir(control_connection_t *control_conn,
  1454. const char *question, char **answer,
  1455. const char **errmsg)
  1456. {
  1457. const routerinfo_t *ri;
  1458. (void) control_conn;
  1459. if (!strcmpstart(question, "desc/id/")) {
  1460. ri = router_get_by_hexdigest(question+strlen("desc/id/"));
  1461. if (ri) {
  1462. const char *body = signed_descriptor_get_body(&ri->cache_info);
  1463. if (body)
  1464. *answer = tor_strndup(body, ri->cache_info.signed_descriptor_len);
  1465. }
  1466. } else if (!strcmpstart(question, "desc/name/")) {
  1467. /* XXX023 Setting 'warn_if_unnamed' here is a bit silly -- the
  1468. * warning goes to the user, not to the controller. */
  1469. ri = router_get_by_nickname(question+strlen("desc/name/"),1);
  1470. if (ri) {
  1471. const char *body = signed_descriptor_get_body(&ri->cache_info);
  1472. if (body)
  1473. *answer = tor_strndup(body, ri->cache_info.signed_descriptor_len);
  1474. }
  1475. } else if (!strcmp(question, "desc/all-recent")) {
  1476. routerlist_t *routerlist = router_get_routerlist();
  1477. smartlist_t *sl = smartlist_new();
  1478. if (routerlist && routerlist->routers) {
  1479. SMARTLIST_FOREACH(routerlist->routers, const routerinfo_t *, ri,
  1480. {
  1481. const char *body = signed_descriptor_get_body(&ri->cache_info);
  1482. if (body)
  1483. smartlist_add(sl,
  1484. tor_strndup(body, ri->cache_info.signed_descriptor_len));
  1485. });
  1486. }
  1487. *answer = smartlist_join_strings(sl, "", 0, NULL);
  1488. SMARTLIST_FOREACH(sl, char *, c, tor_free(c));
  1489. smartlist_free(sl);
  1490. } else if (!strcmp(question, "desc/all-recent-extrainfo-hack")) {
  1491. /* XXXX Remove this once Torstat asks for extrainfos. */
  1492. routerlist_t *routerlist = router_get_routerlist();
  1493. smartlist_t *sl = smartlist_new();
  1494. if (routerlist && routerlist->routers) {
  1495. SMARTLIST_FOREACH(routerlist->routers, const routerinfo_t *, ri,
  1496. {
  1497. const char *body = signed_descriptor_get_body(&ri->cache_info);
  1498. signed_descriptor_t *ei = extrainfo_get_by_descriptor_digest(
  1499. ri->cache_info.extra_info_digest);
  1500. if (ei && body) {
  1501. smartlist_add(sl, munge_extrainfo_into_routerinfo(body,
  1502. &ri->cache_info, ei));
  1503. } else if (body) {
  1504. smartlist_add(sl,
  1505. tor_strndup(body, ri->cache_info.signed_descriptor_len));
  1506. }
  1507. });
  1508. }
  1509. *answer = smartlist_join_strings(sl, "", 0, NULL);
  1510. SMARTLIST_FOREACH(sl, char *, c, tor_free(c));
  1511. smartlist_free(sl);
  1512. } else if (!strcmpstart(question, "md/id/")) {
  1513. const node_t *node = node_get_by_hex_id(question+strlen("md/id/"));
  1514. const microdesc_t *md = NULL;
  1515. if (node) md = node->md;
  1516. if (md) {
  1517. tor_assert(md->body);
  1518. *answer = tor_strndup(md->body, md->bodylen);
  1519. }
  1520. } else if (!strcmpstart(question, "md/name/")) {
  1521. /* XXX023 Setting 'warn_if_unnamed' here is a bit silly -- the
  1522. * warning goes to the user, not to the controller. */
  1523. const node_t *node = node_get_by_nickname(question+strlen("md/name/"), 1);
  1524. /* XXXX duplicated code */
  1525. const microdesc_t *md = NULL;
  1526. if (node) md = node->md;
  1527. if (md) {
  1528. tor_assert(md->body);
  1529. *answer = tor_strndup(md->body, md->bodylen);
  1530. }
  1531. } else if (!strcmpstart(question, "desc-annotations/id/")) {
  1532. ri = router_get_by_hexdigest(question+
  1533. strlen("desc-annotations/id/"));
  1534. if (ri) {
  1535. const char *annotations =
  1536. signed_descriptor_get_annotations(&ri->cache_info);
  1537. if (annotations)
  1538. *answer = tor_strndup(annotations,
  1539. ri->cache_info.annotations_len);
  1540. }
  1541. } else if (!strcmpstart(question, "dir/server/")) {
  1542. size_t answer_len = 0;
  1543. char *url = NULL;
  1544. smartlist_t *descs = smartlist_new();
  1545. const char *msg;
  1546. int res;
  1547. char *cp;
  1548. tor_asprintf(&url, "/tor/%s", question+4);
  1549. res = dirserv_get_routerdescs(descs, url, &msg);
  1550. if (res) {
  1551. log_warn(LD_CONTROL, "getinfo '%s': %s", question, msg);
  1552. smartlist_free(descs);
  1553. tor_free(url);
  1554. *errmsg = msg;
  1555. return -1;
  1556. }
  1557. SMARTLIST_FOREACH(descs, signed_descriptor_t *, sd,
  1558. answer_len += sd->signed_descriptor_len);
  1559. cp = *answer = tor_malloc(answer_len+1);
  1560. SMARTLIST_FOREACH(descs, signed_descriptor_t *, sd,
  1561. {
  1562. memcpy(cp, signed_descriptor_get_body(sd),
  1563. sd->signed_descriptor_len);
  1564. cp += sd->signed_descriptor_len;
  1565. });
  1566. *cp = '\0';
  1567. tor_free(url);
  1568. smartlist_free(descs);
  1569. } else if (!strcmpstart(question, "dir/status/")) {
  1570. if (directory_permits_controller_requests(get_options())) {
  1571. size_t len=0;
  1572. char *cp;
  1573. smartlist_t *status_list = smartlist_new();
  1574. dirserv_get_networkstatus_v2(status_list,
  1575. question+strlen("dir/status/"));
  1576. SMARTLIST_FOREACH(status_list, cached_dir_t *, d, len += d->dir_len);
  1577. cp = *answer = tor_malloc(len+1);
  1578. SMARTLIST_FOREACH(status_list, cached_dir_t *, d, {
  1579. memcpy(cp, d->dir, d->dir_len);
  1580. cp += d->dir_len;
  1581. });
  1582. *cp = '\0';
  1583. smartlist_free(status_list);
  1584. } else {
  1585. smartlist_t *fp_list = smartlist_new();
  1586. smartlist_t *status_list = smartlist_new();
  1587. dirserv_get_networkstatus_v2_fingerprints(
  1588. fp_list, question+strlen("dir/status/"));
  1589. SMARTLIST_FOREACH(fp_list, const char *, fp, {
  1590. char *s;
  1591. char *fname = networkstatus_get_cache_filename(fp);
  1592. s = read_file_to_str(fname, 0, NULL);
  1593. if (s)
  1594. smartlist_add(status_list, s);
  1595. tor_free(fname);
  1596. });
  1597. SMARTLIST_FOREACH(fp_list, char *, fp, tor_free(fp));
  1598. smartlist_free(fp_list);
  1599. *answer = smartlist_join_strings(status_list, "", 0, NULL);
  1600. SMARTLIST_FOREACH(status_list, char *, s, tor_free(s));
  1601. smartlist_free(status_list);
  1602. }
  1603. } else if (!strcmp(question, "dir/status-vote/current/consensus")) { /* v3 */
  1604. if (directory_caches_dir_info(get_options())) {
  1605. const cached_dir_t *consensus = dirserv_get_consensus("ns");
  1606. if (consensus)
  1607. *answer = tor_strdup(consensus->dir);
  1608. }
  1609. if (!*answer) { /* try loading it from disk */
  1610. char *filename = get_datadir_fname("cached-consensus");
  1611. *answer = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
  1612. tor_free(filename);
  1613. }
  1614. } else if (!strcmp(question, "network-status")) { /* v1 */
  1615. routerlist_t *routerlist = router_get_routerlist();
  1616. if (!routerlist || !routerlist->routers ||
  1617. list_server_status_v1(routerlist->routers, answer, 1) < 0) {
  1618. return -1;
  1619. }
  1620. } else if (!strcmpstart(question, "extra-info/digest/")) {
  1621. question += strlen("extra-info/digest/");
  1622. if (strlen(question) == HEX_DIGEST_LEN) {
  1623. char d[DIGEST_LEN];
  1624. signed_descriptor_t *sd = NULL;
  1625. if (base16_decode(d, sizeof(d), question, strlen(question))==0) {
  1626. /* XXXX this test should move into extrainfo_get_by_descriptor_digest,
  1627. * but I don't want to risk affecting other parts of the code,
  1628. * especially since the rules for using our own extrainfo (including
  1629. * when it might be freed) are different from those for using one
  1630. * we have downloaded. */
  1631. if (router_extrainfo_digest_is_me(d))
  1632. sd = &(router_get_my_extrainfo()->cache_info);
  1633. else
  1634. sd = extrainfo_get_by_descriptor_digest(d);
  1635. }
  1636. if (sd) {
  1637. const char *body = signed_descriptor_get_body(sd);
  1638. if (body)
  1639. *answer = tor_strndup(body, sd->signed_descriptor_len);
  1640. }
  1641. }
  1642. }
  1643. return 0;
  1644. }
  1645. /** Allocate and return a description of <b>circ</b>'s current status,
  1646. * including its path (if any). */
  1647. static char *
  1648. circuit_describe_status_for_controller(origin_circuit_t *circ)
  1649. {
  1650. char *rv;
  1651. smartlist_t *descparts = smartlist_new();
  1652. {
  1653. char *vpath = circuit_list_path_for_controller(circ);
  1654. if (*vpath) {
  1655. smartlist_add(descparts, vpath);
  1656. } else {
  1657. tor_free(vpath); /* empty path; don't put an extra space in the result */
  1658. }
  1659. }
  1660. {
  1661. cpath_build_state_t *build_state = circ->build_state;
  1662. smartlist_t *flaglist = smartlist_new();
  1663. char *flaglist_joined;
  1664. if (build_state->onehop_tunnel)
  1665. smartlist_add(flaglist, (void *)"ONEHOP_TUNNEL");
  1666. if (build_state->is_internal)
  1667. smartlist_add(flaglist, (void *)"IS_INTERNAL");
  1668. if (build_state->need_capacity)
  1669. smartlist_add(flaglist, (void *)"NEED_CAPACITY");
  1670. if (build_state->need_uptime)
  1671. smartlist_add(flaglist, (void *)"NEED_UPTIME");
  1672. /* Only emit a BUILD_FLAGS argument if it will have a non-empty value. */
  1673. if (smartlist_len(flaglist)) {
  1674. flaglist_joined = smartlist_join_strings(flaglist, ",", 0, NULL);
  1675. smartlist_add_asprintf(descparts, "BUILD_FLAGS=%s", flaglist_joined);
  1676. tor_free(flaglist_joined);
  1677. }
  1678. smartlist_free(flaglist);
  1679. }
  1680. smartlist_add_asprintf(descparts, "PURPOSE=%s",
  1681. circuit_purpose_to_controller_string(circ->_base.purpose));
  1682. {
  1683. const char *hs_state =
  1684. circuit_purpose_to_controller_hs_state_string(circ->_base.purpose);
  1685. if (hs_state != NULL) {
  1686. smartlist_add_asprintf(descparts, "HS_STATE=%s", hs_state);
  1687. }
  1688. }
  1689. if (circ->rend_data != NULL) {
  1690. smartlist_add_asprintf(descparts, "REND_QUERY=%s",
  1691. circ->rend_data->onion_address);
  1692. }
  1693. {
  1694. char tbuf[ISO_TIME_USEC_LEN+1];
  1695. format_iso_time_nospace_usec(tbuf, &circ->_base.timestamp_created);
  1696. smartlist_add_asprintf(descparts, "TIME_CREATED=%s", tbuf);
  1697. }
  1698. rv = smartlist_join_strings(descparts, " ", 0, NULL);
  1699. SMARTLIST_FOREACH(descparts, char *, cp, tor_free(cp));
  1700. smartlist_free(descparts);
  1701. return rv;
  1702. }
  1703. /** Implementation helper for GETINFO: knows how to generate summaries of the
  1704. * current states of things we send events about. */
  1705. static int
  1706. getinfo_helper_events(control_connection_t *control_conn,
  1707. const char *question, char **answer,
  1708. const char **errmsg)
  1709. {
  1710. (void) control_conn;
  1711. if (!strcmp(question, "circuit-status")) {
  1712. circuit_t *circ_;
  1713. smartlist_t *status = smartlist_new();
  1714. for (circ_ = _circuit_get_global_list(); circ_; circ_ = circ_->next) {
  1715. origin_circuit_t *circ;
  1716. char *circdesc;
  1717. const char *state;
  1718. if (! CIRCUIT_IS_ORIGIN(circ_) || circ_->marked_for_close)
  1719. continue;
  1720. circ = TO_ORIGIN_CIRCUIT(circ_);
  1721. if (circ->_base.state == CIRCUIT_STATE_OPEN)
  1722. state = "BUILT";
  1723. else if (circ->cpath)
  1724. state = "EXTENDED";
  1725. else
  1726. state = "LAUNCHED";
  1727. circdesc = circuit_describe_status_for_controller(circ);
  1728. smartlist_add_asprintf(status, "%lu %s%s%s",
  1729. (unsigned long)circ->global_identifier,
  1730. state, *circdesc ? " " : "", circdesc);
  1731. tor_free(circdesc);
  1732. }
  1733. *answer = smartlist_join_strings(status, "\r\n", 0, NULL);
  1734. SMARTLIST_FOREACH(status, char *, cp, tor_free(cp));
  1735. smartlist_free(status);
  1736. } else if (!strcmp(question, "stream-status")) {
  1737. smartlist_t *conns = get_connection_array();
  1738. smartlist_t *status = smartlist_new();
  1739. char buf[256];
  1740. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, base_conn) {
  1741. const char *state;
  1742. entry_connection_t *conn;
  1743. circuit_t *circ;
  1744. origin_circuit_t *origin_circ = NULL;
  1745. if (base_conn->type != CONN_TYPE_AP ||
  1746. base_conn->marked_for_close ||
  1747. base_conn->state == AP_CONN_STATE_SOCKS_WAIT ||
  1748. base_conn->state == AP_CONN_STATE_NATD_WAIT)
  1749. continue;
  1750. conn = TO_ENTRY_CONN(base_conn);
  1751. switch (base_conn->state)
  1752. {
  1753. case AP_CONN_STATE_CONTROLLER_WAIT:
  1754. case AP_CONN_STATE_CIRCUIT_WAIT:
  1755. if (conn->socks_request &&
  1756. SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command))
  1757. state = "NEWRESOLVE";
  1758. else
  1759. state = "NEW";
  1760. break;
  1761. case AP_CONN_STATE_RENDDESC_WAIT:
  1762. case AP_CONN_STATE_CONNECT_WAIT:
  1763. state = "SENTCONNECT"; break;
  1764. case AP_CONN_STATE_RESOLVE_WAIT:
  1765. state = "SENTRESOLVE"; break;
  1766. case AP_CONN_STATE_OPEN:
  1767. state = "SUCCEEDED"; break;
  1768. default:
  1769. log_warn(LD_BUG, "Asked for stream in unknown state %d",
  1770. base_conn->state);
  1771. continue;
  1772. }
  1773. circ = circuit_get_by_edge_conn(ENTRY_TO_EDGE_CONN(conn));
  1774. if (circ && CIRCUIT_IS_ORIGIN(circ))
  1775. origin_circ = TO_ORIGIN_CIRCUIT(circ);
  1776. write_stream_target_to_buf(conn, buf, sizeof(buf));
  1777. smartlist_add_asprintf(status, "%lu %s %lu %s",
  1778. (unsigned long) base_conn->global_identifier,state,
  1779. origin_circ?
  1780. (unsigned long)origin_circ->global_identifier : 0ul,
  1781. buf);
  1782. } SMARTLIST_FOREACH_END(base_conn);
  1783. *answer = smartlist_join_strings(status, "\r\n", 0, NULL);
  1784. SMARTLIST_FOREACH(status, char *, cp, tor_free(cp));
  1785. smartlist_free(status);
  1786. } else if (!strcmp(question, "orconn-status")) {
  1787. smartlist_t *conns = get_connection_array();
  1788. smartlist_t *status = smartlist_new();
  1789. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, base_conn) {
  1790. const char *state;
  1791. char name[128];
  1792. or_connection_t *conn;
  1793. if (base_conn->type != CONN_TYPE_OR || base_conn->marked_for_close)
  1794. continue;
  1795. conn = TO_OR_CONN(base_conn);
  1796. if (conn->_base.state == OR_CONN_STATE_OPEN)
  1797. state = "CONNECTED";
  1798. else if (conn->nickname)
  1799. state = "LAUNCHED";
  1800. else
  1801. state = "NEW";
  1802. orconn_target_get_name(name, sizeof(name), conn);
  1803. smartlist_add_asprintf(status, "%s %s", name, state);
  1804. } SMARTLIST_FOREACH_END(base_conn);
  1805. *answer = smartlist_join_strings(status, "\r\n", 0, NULL);
  1806. SMARTLIST_FOREACH(status, char *, cp, tor_free(cp));
  1807. smartlist_free(status);
  1808. } else if (!strcmpstart(question, "address-mappings/")) {
  1809. time_t min_e, max_e;
  1810. smartlist_t *mappings;
  1811. question += strlen("address-mappings/");
  1812. if (!strcmp(question, "all")) {
  1813. min_e = 0; max_e = TIME_MAX;
  1814. } else if (!strcmp(question, "cache")) {
  1815. min_e = 2; max_e = TIME_MAX;
  1816. } else if (!strcmp(question, "config")) {
  1817. min_e = 0; max_e = 0;
  1818. } else if (!strcmp(question, "control")) {
  1819. min_e = 1; max_e = 1;
  1820. } else {
  1821. return 0;
  1822. }
  1823. mappings = smartlist_new();
  1824. addressmap_get_mappings(mappings, min_e, max_e, 1);
  1825. *answer = smartlist_join_strings(mappings, "\r\n", 0, NULL);
  1826. SMARTLIST_FOREACH(mappings, char *, cp, tor_free(cp));
  1827. smartlist_free(mappings);
  1828. } else if (!strcmpstart(question, "status/")) {
  1829. /* Note that status/ is not a catch-all for events; there's only supposed
  1830. * to be a status GETINFO if there's a corresponding STATUS event. */
  1831. if (!strcmp(question, "status/circuit-established")) {
  1832. *answer = tor_strdup(can_complete_circuit ? "1" : "0");
  1833. } else if (!strcmp(question, "status/enough-dir-info")) {
  1834. *answer = tor_strdup(router_have_minimum_dir_info() ? "1" : "0");
  1835. } else if (!strcmp(question, "status/good-server-descriptor") ||
  1836. !strcmp(question, "status/accepted-server-descriptor")) {
  1837. /* They're equivalent for now, until we can figure out how to make
  1838. * good-server-descriptor be what we want. See comment in
  1839. * control-spec.txt. */
  1840. *answer = tor_strdup(directories_have_accepted_server_descriptor()
  1841. ? "1" : "0");
  1842. } else if (!strcmp(question, "status/reachability-succeeded/or")) {
  1843. *answer = tor_strdup(check_whether_orport_reachable() ? "1" : "0");
  1844. } else if (!strcmp(question, "status/reachability-succeeded/dir")) {
  1845. *answer = tor_strdup(check_whether_dirport_reachable() ? "1" : "0");
  1846. } else if (!strcmp(question, "status/reachability-succeeded")) {
  1847. tor_asprintf(answer, "OR=%d DIR=%d",
  1848. check_whether_orport_reachable() ? 1 : 0,
  1849. check_whether_dirport_reachable() ? 1 : 0);
  1850. } else if (!strcmp(question, "status/bootstrap-phase")) {
  1851. *answer = tor_strdup(last_sent_bootstrap_message);
  1852. } else if (!strcmpstart(question, "status/version/")) {
  1853. int is_server = server_mode(get_options());
  1854. networkstatus_t *c = networkstatus_get_latest_consensus();
  1855. version_status_t status;
  1856. const char *recommended;
  1857. if (c) {
  1858. recommended = is_server ? c->server_versions : c->client_versions;
  1859. status = tor_version_is_obsolete(VERSION, recommended);
  1860. } else {
  1861. recommended = "?";
  1862. status = VS_UNKNOWN;
  1863. }
  1864. if (!strcmp(question, "status/version/recommended")) {
  1865. *answer = tor_strdup(recommended);
  1866. return 0;
  1867. }
  1868. if (!strcmp(question, "status/version/current")) {
  1869. switch (status)
  1870. {
  1871. case VS_RECOMMENDED: *answer = tor_strdup("recommended"); break;
  1872. case VS_OLD: *answer = tor_strdup("obsolete"); break;
  1873. case VS_NEW: *answer = tor_strdup("new"); break;
  1874. case VS_NEW_IN_SERIES: *answer = tor_strdup("new in series"); break;
  1875. case VS_UNRECOMMENDED: *answer = tor_strdup("unrecommended"); break;
  1876. case VS_EMPTY: *answer = tor_strdup("none recommended"); break;
  1877. case VS_UNKNOWN: *answer = tor_strdup("unknown"); break;
  1878. default: tor_fragile_assert();
  1879. }
  1880. } else if (!strcmp(question, "status/version/num-versioning") ||
  1881. !strcmp(question, "status/version/num-concurring")) {
  1882. tor_asprintf(answer, "%d", get_n_authorities(V3_DIRINFO));
  1883. log_warn(LD_GENERAL, "%s is deprecated; it no longer gives useful "
  1884. "information", question);
  1885. }
  1886. } else if (!strcmp(question, "status/clients-seen")) {
  1887. char *bridge_stats = geoip_get_bridge_stats_controller(time(NULL));
  1888. if (!bridge_stats) {
  1889. *errmsg = "No bridge-client stats available";
  1890. return -1;
  1891. }
  1892. *answer = bridge_stats;
  1893. } else {
  1894. return 0;
  1895. }
  1896. }
  1897. return 0;
  1898. }
  1899. /** Callback function for GETINFO: on a given control connection, try to
  1900. * answer the question <b>q</b> and store the newly-allocated answer in
  1901. * *<b>a</b>. If an internal error occurs, return -1 and optionally set
  1902. * *<b>error_out</b> to point to an error message to be delivered to the
  1903. * controller. On success, _or if the key is not recognized_, return 0. Do not
  1904. * set <b>a</b> if the key is not recognized.
  1905. */
  1906. typedef int (*getinfo_helper_t)(control_connection_t *,
  1907. const char *q, char **a,
  1908. const char **error_out);
  1909. /** A single item for the GETINFO question-to-answer-function table. */
  1910. typedef struct getinfo_item_t {
  1911. const char *varname; /**< The value (or prefix) of the question. */
  1912. getinfo_helper_t fn; /**< The function that knows the answer: NULL if
  1913. * this entry is documentation-only. */
  1914. const char *desc; /**< Description of the variable. */
  1915. int is_prefix; /** Must varname match exactly, or must it be a prefix? */
  1916. } getinfo_item_t;
  1917. #define ITEM(name, fn, desc) { name, getinfo_helper_##fn, desc, 0 }
  1918. #define PREFIX(name, fn, desc) { name, getinfo_helper_##fn, desc, 1 }
  1919. #define DOC(name, desc) { name, NULL, desc, 0 }
  1920. /** Table mapping questions accepted by GETINFO to the functions that know how
  1921. * to answer them. */
  1922. static const getinfo_item_t getinfo_items[] = {
  1923. ITEM("version", misc, "The current version of Tor."),
  1924. ITEM("config-file", misc, "Current location of the \"torrc\" file."),
  1925. ITEM("config-defaults-file", misc, "Current location of the defaults file."),
  1926. ITEM("config-text", misc,
  1927. "Return the string that would be written by a saveconf command."),
  1928. ITEM("accounting/bytes", accounting,
  1929. "Number of bytes read/written so far in the accounting interval."),
  1930. ITEM("accounting/bytes-left", accounting,
  1931. "Number of bytes left to write/read so far in the accounting interval."),
  1932. ITEM("accounting/enabled", accounting, "Is accounting currently enabled?"),
  1933. ITEM("accounting/hibernating", accounting, "Are we hibernating or awake?"),
  1934. ITEM("accounting/interval-start", accounting,
  1935. "Time when the accounting period starts."),
  1936. ITEM("accounting/interval-end", accounting,
  1937. "Time when the accounting period ends."),
  1938. ITEM("accounting/interval-wake", accounting,
  1939. "Time to wake up in this accounting period."),
  1940. ITEM("helper-nodes", entry_guards, NULL), /* deprecated */
  1941. ITEM("entry-guards", entry_guards,
  1942. "Which nodes are we using as entry guards?"),
  1943. ITEM("fingerprint", misc, NULL),
  1944. PREFIX("config/", config, "Current configuration values."),
  1945. DOC("config/names",
  1946. "List of configuration options, types, and documentation."),
  1947. ITEM("info/names", misc,
  1948. "List of GETINFO options, types, and documentation."),
  1949. ITEM("events/names", misc,
  1950. "Events that the controller can ask for with SETEVENTS."),
  1951. ITEM("features/names", misc, "What arguments can USEFEATURE take?"),
  1952. PREFIX("desc/id/", dir, "Router descriptors by ID."),
  1953. PREFIX("desc/name/", dir, "Router descriptors by nickname."),
  1954. ITEM("desc/all-recent", dir,
  1955. "All non-expired, non-superseded router descriptors."),
  1956. ITEM("desc/all-recent-extrainfo-hack", dir, NULL), /* Hack. */
  1957. PREFIX("md/id/", dir, "Microdescriptors by ID"),
  1958. PREFIX("md/name/", dir, "Microdescriptors by name"),
  1959. PREFIX("extra-info/digest/", dir, "Extra-info documents by digest."),
  1960. PREFIX("net/listeners/", listeners, "Bound addresses by type"),
  1961. ITEM("ns/all", networkstatus,
  1962. "Brief summary of router status (v2 directory format)"),
  1963. PREFIX("ns/id/", networkstatus,
  1964. "Brief summary of router status by ID (v2 directory format)."),
  1965. PREFIX("ns/name/", networkstatus,
  1966. "Brief summary of router status by nickname (v2 directory format)."),
  1967. PREFIX("ns/purpose/", networkstatus,
  1968. "Brief summary of router status by purpose (v2 directory format)."),
  1969. ITEM("network-status", dir,
  1970. "Brief summary of router status (v1 directory format)"),
  1971. ITEM("circuit-status", events, "List of current circuits originating here."),
  1972. ITEM("stream-status", events,"List of current streams."),
  1973. ITEM("orconn-status", events, "A list of current OR connections."),
  1974. ITEM("dormant", misc,
  1975. "Is Tor dormant (not building circuits because it's idle)?"),
  1976. PREFIX("address-mappings/", events, NULL),
  1977. DOC("address-mappings/all", "Current address mappings."),
  1978. DOC("address-mappings/cache", "Current cached DNS replies."),
  1979. DOC("address-mappings/config",
  1980. "Current address mappings from configuration."),
  1981. DOC("address-mappings/control", "Current address mappings from controller."),
  1982. PREFIX("status/", events, NULL),
  1983. DOC("status/circuit-established",
  1984. "Whether we think client functionality is working."),
  1985. DOC("status/enough-dir-info",
  1986. "Whether we have enough up-to-date directory information to build "
  1987. "circuits."),
  1988. DOC("status/bootstrap-phase",
  1989. "The last bootstrap phase status event that Tor sent."),
  1990. DOC("status/clients-seen",
  1991. "Breakdown of client countries seen by a bridge."),
  1992. DOC("status/version/recommended", "List of currently recommended versions."),
  1993. DOC("status/version/current", "Status of the current version."),
  1994. DOC("status/version/num-versioning", "Number of versioning authorities."),
  1995. DOC("status/version/num-concurring",
  1996. "Number of versioning authorities agreeing on the status of the "
  1997. "current version"),
  1998. ITEM("address", misc, "IP address of this Tor host, if we can guess it."),
  1999. ITEM("traffic/read", misc,"Bytes read since the process was started."),
  2000. ITEM("traffic/written", misc,
  2001. "Bytes written since the process was started."),
  2002. ITEM("process/pid", misc, "Process id belonging to the main tor process."),
  2003. ITEM("process/uid", misc, "User id running the tor process."),
  2004. ITEM("process/user", misc,
  2005. "Username under which the tor process is running."),
  2006. ITEM("process/descriptor-limit", misc, "File descriptor limit."),
  2007. ITEM("dir-usage", misc, "Breakdown of bytes transferred over DirPort."),
  2008. PREFIX("desc-annotations/id/", dir, "Router annotations by hexdigest."),
  2009. PREFIX("dir/server/", dir,"Router descriptors as retrieved from a DirPort."),
  2010. PREFIX("dir/status/", dir,
  2011. "v2 networkstatus docs as retrieved from a DirPort."),
  2012. ITEM("dir/status-vote/current/consensus", dir,
  2013. "v3 Networkstatus consensus as retrieved from a DirPort."),
  2014. ITEM("exit-policy/default", policies,
  2015. "The default value appended to the configured exit policy."),
  2016. PREFIX("ip-to-country/", geoip, "Perform a GEOIP lookup"),
  2017. { NULL, NULL, NULL, 0 }
  2018. };
  2019. /** Allocate and return a list of recognized GETINFO options. */
  2020. static char *
  2021. list_getinfo_options(void)
  2022. {
  2023. int i;
  2024. smartlist_t *lines = smartlist_new();
  2025. char *ans;
  2026. for (i = 0; getinfo_items[i].varname; ++i) {
  2027. if (!getinfo_items[i].desc)
  2028. continue;
  2029. smartlist_add_asprintf(lines, "%s%s -- %s\n",
  2030. getinfo_items[i].varname,
  2031. getinfo_items[i].is_prefix ? "*" : "",
  2032. getinfo_items[i].desc);
  2033. }
  2034. smartlist_sort_strings(lines);
  2035. ans = smartlist_join_strings(lines, "", 0, NULL);
  2036. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  2037. smartlist_free(lines);
  2038. return ans;
  2039. }
  2040. /** Lookup the 'getinfo' entry <b>question</b>, and return
  2041. * the answer in <b>*answer</b> (or NULL if key not recognized).
  2042. * Return 0 if success or unrecognized, or -1 if recognized but
  2043. * internal error. */
  2044. static int
  2045. handle_getinfo_helper(control_connection_t *control_conn,
  2046. const char *question, char **answer,
  2047. const char **err_out)
  2048. {
  2049. int i;
  2050. *answer = NULL; /* unrecognized key by default */
  2051. for (i = 0; getinfo_items[i].varname; ++i) {
  2052. int match;
  2053. if (getinfo_items[i].is_prefix)
  2054. match = !strcmpstart(question, getinfo_items[i].varname);
  2055. else
  2056. match = !strcmp(question, getinfo_items[i].varname);
  2057. if (match) {
  2058. tor_assert(getinfo_items[i].fn);
  2059. return getinfo_items[i].fn(control_conn, question, answer, err_out);
  2060. }
  2061. }
  2062. return 0; /* unrecognized */
  2063. }
  2064. /** Called when we receive a GETINFO command. Try to fetch all requested
  2065. * information, and reply with information or error message. */
  2066. static int
  2067. handle_control_getinfo(control_connection_t *conn, uint32_t len,
  2068. const char *body)
  2069. {
  2070. smartlist_t *questions = smartlist_new();
  2071. smartlist_t *answers = smartlist_new();
  2072. smartlist_t *unrecognized = smartlist_new();
  2073. char *msg = NULL, *ans = NULL;
  2074. int i;
  2075. (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */
  2076. smartlist_split_string(questions, body, " ",
  2077. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2078. SMARTLIST_FOREACH_BEGIN(questions, const char *, q) {
  2079. const char *errmsg = NULL;
  2080. if (handle_getinfo_helper(conn, q, &ans, &errmsg) < 0) {
  2081. if (!errmsg)
  2082. errmsg = "Internal error";
  2083. connection_printf_to_buf(conn, "551 %s\r\n", errmsg);
  2084. goto done;
  2085. }
  2086. if (!ans) {
  2087. smartlist_add(unrecognized, (char*)q);
  2088. } else {
  2089. smartlist_add(answers, tor_strdup(q));
  2090. smartlist_add(answers, ans);
  2091. }
  2092. } SMARTLIST_FOREACH_END(q);
  2093. if (smartlist_len(unrecognized)) {
  2094. for (i=0; i < smartlist_len(unrecognized)-1; ++i)
  2095. connection_printf_to_buf(conn,
  2096. "552-Unrecognized key \"%s\"\r\n",
  2097. (char*)smartlist_get(unrecognized, i));
  2098. connection_printf_to_buf(conn,
  2099. "552 Unrecognized key \"%s\"\r\n",
  2100. (char*)smartlist_get(unrecognized, i));
  2101. goto done;
  2102. }
  2103. for (i = 0; i < smartlist_len(answers); i += 2) {
  2104. char *k = smartlist_get(answers, i);
  2105. char *v = smartlist_get(answers, i+1);
  2106. if (!strchr(v, '\n') && !strchr(v, '\r')) {
  2107. connection_printf_to_buf(conn, "250-%s=", k);
  2108. connection_write_str_to_buf(v, conn);
  2109. connection_write_str_to_buf("\r\n", conn);
  2110. } else {
  2111. char *esc = NULL;
  2112. size_t esc_len;
  2113. esc_len = write_escaped_data(v, strlen(v), &esc);
  2114. connection_printf_to_buf(conn, "250+%s=\r\n", k);
  2115. connection_write_to_buf(esc, esc_len, TO_CONN(conn));
  2116. tor_free(esc);
  2117. }
  2118. }
  2119. connection_write_str_to_buf("250 OK\r\n", conn);
  2120. done:
  2121. SMARTLIST_FOREACH(answers, char *, cp, tor_free(cp));
  2122. smartlist_free(answers);
  2123. SMARTLIST_FOREACH(questions, char *, cp, tor_free(cp));
  2124. smartlist_free(questions);
  2125. smartlist_free(unrecognized);
  2126. tor_free(msg);
  2127. return 0;
  2128. }
  2129. /** Given a string, convert it to a circuit purpose. */
  2130. static uint8_t
  2131. circuit_purpose_from_string(const char *string)
  2132. {
  2133. if (!strcasecmpstart(string, "purpose="))
  2134. string += strlen("purpose=");
  2135. if (!strcasecmp(string, "general"))
  2136. return CIRCUIT_PURPOSE_C_GENERAL;
  2137. else if (!strcasecmp(string, "controller"))
  2138. return CIRCUIT_PURPOSE_CONTROLLER;
  2139. else
  2140. return CIRCUIT_PURPOSE_UNKNOWN;
  2141. }
  2142. /** Return a newly allocated smartlist containing the arguments to the command
  2143. * waiting in <b>body</b>. If there are fewer than <b>min_args</b> arguments,
  2144. * or if <b>max_args</b> is nonnegative and there are more than
  2145. * <b>max_args</b> arguments, send a 512 error to the controller, using
  2146. * <b>command</b> as the command name in the error message. */
  2147. static smartlist_t *
  2148. getargs_helper(const char *command, control_connection_t *conn,
  2149. const char *body, int min_args, int max_args)
  2150. {
  2151. smartlist_t *args = smartlist_new();
  2152. smartlist_split_string(args, body, " ",
  2153. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2154. if (smartlist_len(args) < min_args) {
  2155. connection_printf_to_buf(conn, "512 Missing argument to %s\r\n",command);
  2156. goto err;
  2157. } else if (max_args >= 0 && smartlist_len(args) > max_args) {
  2158. connection_printf_to_buf(conn, "512 Too many arguments to %s\r\n",command);
  2159. goto err;
  2160. }
  2161. return args;
  2162. err:
  2163. SMARTLIST_FOREACH(args, char *, s, tor_free(s));
  2164. smartlist_free(args);
  2165. return NULL;
  2166. }
  2167. /** Helper. Return the first element of <b>sl</b> at index <b>start_at</b> or
  2168. * higher that starts with <b>prefix</b>, case-insensitive. Return NULL if no
  2169. * such element exists. */
  2170. static const char *
  2171. find_element_starting_with(smartlist_t *sl, int start_at, const char *prefix)
  2172. {
  2173. int i;
  2174. for (i = start_at; i < smartlist_len(sl); ++i) {
  2175. const char *elt = smartlist_get(sl, i);
  2176. if (!strcasecmpstart(elt, prefix))
  2177. return elt;
  2178. }
  2179. return NULL;
  2180. }
  2181. /** Helper. Return true iff s is an argument that we should treat as a
  2182. * key-value pair. */
  2183. static int
  2184. is_keyval_pair(const char *s)
  2185. {
  2186. /* An argument is a key-value pair if it has an =, and it isn't of the form
  2187. * $fingeprint=name */
  2188. return strchr(s, '=') && s[0] != '$';
  2189. }
  2190. /** Called when we get an EXTENDCIRCUIT message. Try to extend the listed
  2191. * circuit, and report success or failure. */
  2192. static int
  2193. handle_control_extendcircuit(control_connection_t *conn, uint32_t len,
  2194. const char *body)
  2195. {
  2196. smartlist_t *router_nicknames=NULL, *nodes=NULL;
  2197. origin_circuit_t *circ = NULL;
  2198. int zero_circ;
  2199. uint8_t intended_purpose = CIRCUIT_PURPOSE_C_GENERAL;
  2200. smartlist_t *args;
  2201. (void) len;
  2202. router_nicknames = smartlist_new();
  2203. args = getargs_helper("EXTENDCIRCUIT", conn, body, 1, -1);
  2204. if (!args)
  2205. goto done;
  2206. zero_circ = !strcmp("0", (char*)smartlist_get(args,0));
  2207. if (zero_circ) {
  2208. const char *purp = find_element_starting_with(args, 1, "PURPOSE=");
  2209. if (purp) {
  2210. intended_purpose = circuit_purpose_from_string(purp);
  2211. if (intended_purpose == CIRCUIT_PURPOSE_UNKNOWN) {
  2212. connection_printf_to_buf(conn, "552 Unknown purpose \"%s\"\r\n", purp);
  2213. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2214. smartlist_free(args);
  2215. goto done;
  2216. }
  2217. }
  2218. if ((smartlist_len(args) == 1) ||
  2219. (smartlist_len(args) >= 2 && is_keyval_pair(smartlist_get(args, 1)))) {
  2220. // "EXTENDCIRCUIT 0" || EXTENDCIRCUIT 0 foo=bar"
  2221. circ = circuit_launch(intended_purpose, CIRCLAUNCH_NEED_CAPACITY);
  2222. if (!circ) {
  2223. connection_write_str_to_buf("551 Couldn't start circuit\r\n", conn);
  2224. } else {
  2225. connection_printf_to_buf(conn, "250 EXTENDED %lu\r\n",
  2226. (unsigned long)circ->global_identifier);
  2227. }
  2228. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2229. smartlist_free(args);
  2230. goto done;
  2231. }
  2232. // "EXTENDCIRCUIT 0 router1,router2" ||
  2233. // "EXTENDCIRCUIT 0 router1,router2 PURPOSE=foo"
  2234. }
  2235. if (!zero_circ && !(circ = get_circ(smartlist_get(args,0)))) {
  2236. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2237. (char*)smartlist_get(args, 0));
  2238. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2239. smartlist_free(args);
  2240. goto done;
  2241. }
  2242. smartlist_split_string(router_nicknames, smartlist_get(args,1), ",", 0, 0);
  2243. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2244. smartlist_free(args);
  2245. nodes = smartlist_new();
  2246. SMARTLIST_FOREACH(router_nicknames, const char *, n,
  2247. {
  2248. const node_t *node = node_get_by_nickname(n, 1);
  2249. if (!node) {
  2250. connection_printf_to_buf(conn, "552 No such router \"%s\"\r\n", n);
  2251. goto done;
  2252. }
  2253. if (!node_has_descriptor(node)) {
  2254. connection_printf_to_buf(conn, "552 descriptor for \"%s\"\r\n", n);
  2255. goto done;
  2256. }
  2257. smartlist_add(nodes, (void*)node);
  2258. });
  2259. if (!smartlist_len(nodes)) {
  2260. connection_write_str_to_buf("512 No router names provided\r\n", conn);
  2261. goto done;
  2262. }
  2263. if (zero_circ) {
  2264. /* start a new circuit */
  2265. circ = origin_circuit_init(intended_purpose, 0);
  2266. }
  2267. /* now circ refers to something that is ready to be extended */
  2268. SMARTLIST_FOREACH(nodes, const node_t *, node,
  2269. {
  2270. extend_info_t *info = extend_info_from_node(node, 0);
  2271. tor_assert(info); /* True, since node_has_descriptor(node) == true */
  2272. circuit_append_new_exit(circ, info);
  2273. extend_info_free(info);
  2274. });
  2275. /* now that we've populated the cpath, start extending */
  2276. if (zero_circ) {
  2277. int err_reason = 0;
  2278. if ((err_reason = circuit_handle_first_hop(circ)) < 0) {
  2279. circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
  2280. connection_write_str_to_buf("551 Couldn't start circuit\r\n", conn);
  2281. goto done;
  2282. }
  2283. } else {
  2284. if (circ->_base.state == CIRCUIT_STATE_OPEN) {
  2285. int err_reason = 0;
  2286. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_BUILDING);
  2287. if ((err_reason = circuit_send_next_onion_skin(circ)) < 0) {
  2288. log_info(LD_CONTROL,
  2289. "send_next_onion_skin failed; circuit marked for closing.");
  2290. circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
  2291. connection_write_str_to_buf("551 Couldn't send onion skin\r\n", conn);
  2292. goto done;
  2293. }
  2294. }
  2295. }
  2296. connection_printf_to_buf(conn, "250 EXTENDED %lu\r\n",
  2297. (unsigned long)circ->global_identifier);
  2298. if (zero_circ) /* send a 'launched' event, for completeness */
  2299. control_event_circuit_status(circ, CIRC_EVENT_LAUNCHED, 0);
  2300. done:
  2301. SMARTLIST_FOREACH(router_nicknames, char *, n, tor_free(n));
  2302. smartlist_free(router_nicknames);
  2303. smartlist_free(nodes);
  2304. return 0;
  2305. }
  2306. /** Called when we get a SETCIRCUITPURPOSE message. If we can find the
  2307. * circuit and it's a valid purpose, change it. */
  2308. static int
  2309. handle_control_setcircuitpurpose(control_connection_t *conn,
  2310. uint32_t len, const char *body)
  2311. {
  2312. origin_circuit_t *circ = NULL;
  2313. uint8_t new_purpose;
  2314. smartlist_t *args;
  2315. (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */
  2316. args = getargs_helper("SETCIRCUITPURPOSE", conn, body, 2, -1);
  2317. if (!args)
  2318. goto done;
  2319. if (!(circ = get_circ(smartlist_get(args,0)))) {
  2320. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2321. (char*)smartlist_get(args, 0));
  2322. goto done;
  2323. }
  2324. {
  2325. const char *purp = find_element_starting_with(args,1,"PURPOSE=");
  2326. if (!purp) {
  2327. connection_write_str_to_buf("552 No purpose given\r\n", conn);
  2328. goto done;
  2329. }
  2330. new_purpose = circuit_purpose_from_string(purp);
  2331. if (new_purpose == CIRCUIT_PURPOSE_UNKNOWN) {
  2332. connection_printf_to_buf(conn, "552 Unknown purpose \"%s\"\r\n", purp);
  2333. goto done;
  2334. }
  2335. }
  2336. circuit_change_purpose(TO_CIRCUIT(circ), new_purpose);
  2337. connection_write_str_to_buf("250 OK\r\n", conn);
  2338. done:
  2339. if (args) {
  2340. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2341. smartlist_free(args);
  2342. }
  2343. return 0;
  2344. }
  2345. /** Called when we get an ATTACHSTREAM message. Try to attach the requested
  2346. * stream, and report success or failure. */
  2347. static int
  2348. handle_control_attachstream(control_connection_t *conn, uint32_t len,
  2349. const char *body)
  2350. {
  2351. entry_connection_t *ap_conn = NULL;
  2352. origin_circuit_t *circ = NULL;
  2353. int zero_circ;
  2354. smartlist_t *args;
  2355. crypt_path_t *cpath=NULL;
  2356. int hop=0, hop_line_ok=1;
  2357. (void) len;
  2358. args = getargs_helper("ATTACHSTREAM", conn, body, 2, -1);
  2359. if (!args)
  2360. return 0;
  2361. zero_circ = !strcmp("0", (char*)smartlist_get(args,1));
  2362. if (!(ap_conn = get_stream(smartlist_get(args, 0)))) {
  2363. connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n",
  2364. (char*)smartlist_get(args, 0));
  2365. } else if (!zero_circ && !(circ = get_circ(smartlist_get(args, 1)))) {
  2366. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2367. (char*)smartlist_get(args, 1));
  2368. } else if (circ) {
  2369. const char *hopstring = find_element_starting_with(args,2,"HOP=");
  2370. if (hopstring) {
  2371. hopstring += strlen("HOP=");
  2372. hop = (int) tor_parse_ulong(hopstring, 10, 0, INT_MAX,
  2373. &hop_line_ok, NULL);
  2374. if (!hop_line_ok) { /* broken hop line */
  2375. connection_printf_to_buf(conn, "552 Bad value hop=%s\r\n", hopstring);
  2376. }
  2377. }
  2378. }
  2379. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2380. smartlist_free(args);
  2381. if (!ap_conn || (!zero_circ && !circ) || !hop_line_ok)
  2382. return 0;
  2383. if (ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_CONTROLLER_WAIT &&
  2384. ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_CONNECT_WAIT &&
  2385. ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_RESOLVE_WAIT) {
  2386. connection_write_str_to_buf(
  2387. "555 Connection is not managed by controller.\r\n",
  2388. conn);
  2389. return 0;
  2390. }
  2391. /* Do we need to detach it first? */
  2392. if (ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_CONTROLLER_WAIT) {
  2393. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn);
  2394. circuit_t *tmpcirc = circuit_get_by_edge_conn(edge_conn);
  2395. connection_edge_end(edge_conn, END_STREAM_REASON_TIMEOUT);
  2396. /* Un-mark it as ending, since we're going to reuse it. */
  2397. edge_conn->edge_has_sent_end = 0;
  2398. edge_conn->end_reason = 0;
  2399. if (tmpcirc)
  2400. circuit_detach_stream(tmpcirc, edge_conn);
  2401. TO_CONN(edge_conn)->state = AP_CONN_STATE_CONTROLLER_WAIT;
  2402. }
  2403. if (circ && (circ->_base.state != CIRCUIT_STATE_OPEN)) {
  2404. connection_write_str_to_buf(
  2405. "551 Can't attach stream to non-open origin circuit\r\n",
  2406. conn);
  2407. return 0;
  2408. }
  2409. /* Is this a single hop circuit? */
  2410. if (circ && (circuit_get_cpath_len(circ)<2 || hop==1)) {
  2411. const node_t *node = NULL;
  2412. char *exit_digest;
  2413. if (circ->build_state &&
  2414. circ->build_state->chosen_exit &&
  2415. !tor_digest_is_zero(circ->build_state->chosen_exit->identity_digest)) {
  2416. exit_digest = circ->build_state->chosen_exit->identity_digest;
  2417. node = node_get_by_id(exit_digest);
  2418. }
  2419. /* Do both the client and relay allow one-hop exit circuits? */
  2420. if (!node ||
  2421. !node_allows_single_hop_exits(node) ||
  2422. !get_options()->AllowSingleHopCircuits) {
  2423. connection_write_str_to_buf(
  2424. "551 Can't attach stream to this one-hop circuit.\r\n", conn);
  2425. return 0;
  2426. }
  2427. ap_conn->chosen_exit_name = tor_strdup(hex_str(exit_digest, DIGEST_LEN));
  2428. }
  2429. if (circ && hop>0) {
  2430. /* find this hop in the circuit, and set cpath */
  2431. cpath = circuit_get_cpath_hop(circ, hop);
  2432. if (!cpath) {
  2433. connection_printf_to_buf(conn,
  2434. "551 Circuit doesn't have %d hops.\r\n", hop);
  2435. return 0;
  2436. }
  2437. }
  2438. if (connection_ap_handshake_rewrite_and_attach(ap_conn, circ, cpath) < 0) {
  2439. connection_write_str_to_buf("551 Unable to attach stream\r\n", conn);
  2440. return 0;
  2441. }
  2442. send_control_done(conn);
  2443. return 0;
  2444. }
  2445. /** Called when we get a POSTDESCRIPTOR message. Try to learn the provided
  2446. * descriptor, and report success or failure. */
  2447. static int
  2448. handle_control_postdescriptor(control_connection_t *conn, uint32_t len,
  2449. const char *body)
  2450. {
  2451. char *desc;
  2452. const char *msg=NULL;
  2453. uint8_t purpose = ROUTER_PURPOSE_GENERAL;
  2454. int cache = 0; /* eventually, we may switch this to 1 */
  2455. char *cp = memchr(body, '\n', len);
  2456. smartlist_t *args = smartlist_new();
  2457. tor_assert(cp);
  2458. *cp++ = '\0';
  2459. smartlist_split_string(args, body, " ",
  2460. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2461. SMARTLIST_FOREACH(args, char *, option,
  2462. {
  2463. if (!strcasecmpstart(option, "purpose=")) {
  2464. option += strlen("purpose=");
  2465. purpose = router_purpose_from_string(option);
  2466. if (purpose == ROUTER_PURPOSE_UNKNOWN) {
  2467. connection_printf_to_buf(conn, "552 Unknown purpose \"%s\"\r\n",
  2468. option);
  2469. goto done;
  2470. }
  2471. } else if (!strcasecmpstart(option, "cache=")) {
  2472. option += strlen("cache=");
  2473. if (!strcasecmp(option, "no"))
  2474. cache = 0;
  2475. else if (!strcasecmp(option, "yes"))
  2476. cache = 1;
  2477. else {
  2478. connection_printf_to_buf(conn, "552 Unknown cache request \"%s\"\r\n",
  2479. option);
  2480. goto done;
  2481. }
  2482. } else { /* unrecognized argument? */
  2483. connection_printf_to_buf(conn,
  2484. "512 Unexpected argument \"%s\" to postdescriptor\r\n", option);
  2485. goto done;
  2486. }
  2487. });
  2488. read_escaped_data(cp, len-(cp-body), &desc);
  2489. switch (router_load_single_router(desc, purpose, cache, &msg)) {
  2490. case -1:
  2491. if (!msg) msg = "Could not parse descriptor";
  2492. connection_printf_to_buf(conn, "554 %s\r\n", msg);
  2493. break;
  2494. case 0:
  2495. if (!msg) msg = "Descriptor not added";
  2496. connection_printf_to_buf(conn, "251 %s\r\n",msg);
  2497. break;
  2498. case 1:
  2499. send_control_done(conn);
  2500. break;
  2501. }
  2502. tor_free(desc);
  2503. done:
  2504. SMARTLIST_FOREACH(args, char *, arg, tor_free(arg));
  2505. smartlist_free(args);
  2506. return 0;
  2507. }
  2508. /** Called when we receive a REDIRECTSTERAM command. Try to change the target
  2509. * address of the named AP stream, and report success or failure. */
  2510. static int
  2511. handle_control_redirectstream(control_connection_t *conn, uint32_t len,
  2512. const char *body)
  2513. {
  2514. entry_connection_t *ap_conn = NULL;
  2515. char *new_addr = NULL;
  2516. uint16_t new_port = 0;
  2517. smartlist_t *args;
  2518. (void) len;
  2519. args = getargs_helper("REDIRECTSTREAM", conn, body, 2, -1);
  2520. if (!args)
  2521. return 0;
  2522. if (!(ap_conn = get_stream(smartlist_get(args, 0)))
  2523. || !ap_conn->socks_request) {
  2524. connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n",
  2525. (char*)smartlist_get(args, 0));
  2526. } else {
  2527. int ok = 1;
  2528. if (smartlist_len(args) > 2) { /* they included a port too */
  2529. new_port = (uint16_t) tor_parse_ulong(smartlist_get(args, 2),
  2530. 10, 1, 65535, &ok, NULL);
  2531. }
  2532. if (!ok) {
  2533. connection_printf_to_buf(conn, "512 Cannot parse port \"%s\"\r\n",
  2534. (char*)smartlist_get(args, 2));
  2535. } else {
  2536. new_addr = tor_strdup(smartlist_get(args, 1));
  2537. }
  2538. }
  2539. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2540. smartlist_free(args);
  2541. if (!new_addr)
  2542. return 0;
  2543. strlcpy(ap_conn->socks_request->address, new_addr,
  2544. sizeof(ap_conn->socks_request->address));
  2545. if (new_port)
  2546. ap_conn->socks_request->port = new_port;
  2547. tor_free(new_addr);
  2548. send_control_done(conn);
  2549. return 0;
  2550. }
  2551. /** Called when we get a CLOSESTREAM command; try to close the named stream
  2552. * and report success or failure. */
  2553. static int
  2554. handle_control_closestream(control_connection_t *conn, uint32_t len,
  2555. const char *body)
  2556. {
  2557. entry_connection_t *ap_conn=NULL;
  2558. uint8_t reason=0;
  2559. smartlist_t *args;
  2560. int ok;
  2561. (void) len;
  2562. args = getargs_helper("CLOSESTREAM", conn, body, 2, -1);
  2563. if (!args)
  2564. return 0;
  2565. else if (!(ap_conn = get_stream(smartlist_get(args, 0))))
  2566. connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n",
  2567. (char*)smartlist_get(args, 0));
  2568. else {
  2569. reason = (uint8_t) tor_parse_ulong(smartlist_get(args,1), 10, 0, 255,
  2570. &ok, NULL);
  2571. if (!ok) {
  2572. connection_printf_to_buf(conn, "552 Unrecognized reason \"%s\"\r\n",
  2573. (char*)smartlist_get(args, 1));
  2574. ap_conn = NULL;
  2575. }
  2576. }
  2577. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2578. smartlist_free(args);
  2579. if (!ap_conn)
  2580. return 0;
  2581. connection_mark_unattached_ap(ap_conn, reason);
  2582. send_control_done(conn);
  2583. return 0;
  2584. }
  2585. /** Called when we get a CLOSECIRCUIT command; try to close the named circuit
  2586. * and report success or failure. */
  2587. static int
  2588. handle_control_closecircuit(control_connection_t *conn, uint32_t len,
  2589. const char *body)
  2590. {
  2591. origin_circuit_t *circ = NULL;
  2592. int safe = 0;
  2593. smartlist_t *args;
  2594. (void) len;
  2595. args = getargs_helper("CLOSECIRCUIT", conn, body, 1, -1);
  2596. if (!args)
  2597. return 0;
  2598. if (!(circ=get_circ(smartlist_get(args, 0))))
  2599. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2600. (char*)smartlist_get(args, 0));
  2601. else {
  2602. int i;
  2603. for (i=1; i < smartlist_len(args); ++i) {
  2604. if (!strcasecmp(smartlist_get(args, i), "IfUnused"))
  2605. safe = 1;
  2606. else
  2607. log_info(LD_CONTROL, "Skipping unknown option %s",
  2608. (char*)smartlist_get(args,i));
  2609. }
  2610. }
  2611. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2612. smartlist_free(args);
  2613. if (!circ)
  2614. return 0;
  2615. if (!safe || !circ->p_streams) {
  2616. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_REQUESTED);
  2617. }
  2618. send_control_done(conn);
  2619. return 0;
  2620. }
  2621. /** Called when we get a RESOLVE command: start trying to resolve
  2622. * the listed addresses. */
  2623. static int
  2624. handle_control_resolve(control_connection_t *conn, uint32_t len,
  2625. const char *body)
  2626. {
  2627. smartlist_t *args, *failed;
  2628. int is_reverse = 0;
  2629. (void) len; /* body is nul-terminated; it's safe to ignore the length */
  2630. if (!(conn->event_mask & ((uint32_t)1L<<EVENT_ADDRMAP))) {
  2631. log_warn(LD_CONTROL, "Controller asked us to resolve an address, but "
  2632. "isn't listening for ADDRMAP events. It probably won't see "
  2633. "the answer.");
  2634. }
  2635. args = smartlist_new();
  2636. smartlist_split_string(args, body, " ",
  2637. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2638. {
  2639. const char *modearg = find_element_starting_with(args, 0, "mode=");
  2640. if (modearg && !strcasecmp(modearg, "mode=reverse"))
  2641. is_reverse = 1;
  2642. }
  2643. failed = smartlist_new();
  2644. SMARTLIST_FOREACH(args, const char *, arg, {
  2645. if (!is_keyval_pair(arg)) {
  2646. if (dnsserv_launch_request(arg, is_reverse)<0)
  2647. smartlist_add(failed, (char*)arg);
  2648. }
  2649. });
  2650. send_control_done(conn);
  2651. SMARTLIST_FOREACH(failed, const char *, arg, {
  2652. control_event_address_mapped(arg, arg, time(NULL),
  2653. "Unable to launch resolve request");
  2654. });
  2655. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2656. smartlist_free(args);
  2657. smartlist_free(failed);
  2658. return 0;
  2659. }
  2660. /** Called when we get a PROTOCOLINFO command: send back a reply. */
  2661. static int
  2662. handle_control_protocolinfo(control_connection_t *conn, uint32_t len,
  2663. const char *body)
  2664. {
  2665. const char *bad_arg = NULL;
  2666. smartlist_t *args;
  2667. (void)len;
  2668. conn->have_sent_protocolinfo = 1;
  2669. args = smartlist_new();
  2670. smartlist_split_string(args, body, " ",
  2671. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2672. SMARTLIST_FOREACH(args, const char *, arg, {
  2673. int ok;
  2674. tor_parse_long(arg, 10, 0, LONG_MAX, &ok, NULL);
  2675. if (!ok) {
  2676. bad_arg = arg;
  2677. break;
  2678. }
  2679. });
  2680. if (bad_arg) {
  2681. connection_printf_to_buf(conn, "513 No such version %s\r\n",
  2682. escaped(bad_arg));
  2683. /* Don't tolerate bad arguments when not authenticated. */
  2684. if (!STATE_IS_OPEN(TO_CONN(conn)->state))
  2685. connection_mark_for_close(TO_CONN(conn));
  2686. goto done;
  2687. } else {
  2688. const or_options_t *options = get_options();
  2689. int cookies = options->CookieAuthentication;
  2690. char *cfile = get_cookie_file();
  2691. char *abs_cfile;
  2692. char *esc_cfile;
  2693. char *methods;
  2694. abs_cfile = make_path_absolute(cfile);
  2695. esc_cfile = esc_for_log(abs_cfile);
  2696. {
  2697. int passwd = (options->HashedControlPassword != NULL ||
  2698. options->HashedControlSessionPassword != NULL);
  2699. smartlist_t *mlist = smartlist_new();
  2700. if (cookies) {
  2701. smartlist_add(mlist, (char*)"COOKIE");
  2702. smartlist_add(mlist, (char*)"SAFECOOKIE");
  2703. }
  2704. if (passwd)
  2705. smartlist_add(mlist, (char*)"HASHEDPASSWORD");
  2706. if (!cookies && !passwd)
  2707. smartlist_add(mlist, (char*)"NULL");
  2708. methods = smartlist_join_strings(mlist, ",", 0, NULL);
  2709. smartlist_free(mlist);
  2710. }
  2711. connection_printf_to_buf(conn,
  2712. "250-PROTOCOLINFO 1\r\n"
  2713. "250-AUTH METHODS=%s%s%s\r\n"
  2714. "250-VERSION Tor=%s\r\n"
  2715. "250 OK\r\n",
  2716. methods,
  2717. cookies?" COOKIEFILE=":"",
  2718. cookies?esc_cfile:"",
  2719. escaped(VERSION));
  2720. tor_free(methods);
  2721. tor_free(cfile);
  2722. tor_free(abs_cfile);
  2723. tor_free(esc_cfile);
  2724. }
  2725. done:
  2726. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2727. smartlist_free(args);
  2728. return 0;
  2729. }
  2730. /** Called when we get an AUTHCHALLENGE command. */
  2731. static int
  2732. handle_control_authchallenge(control_connection_t *conn, uint32_t len,
  2733. const char *body)
  2734. {
  2735. const char *cp = body;
  2736. char *client_nonce;
  2737. size_t client_nonce_len;
  2738. char server_hash[DIGEST256_LEN];
  2739. char server_hash_encoded[HEX_DIGEST256_LEN+1];
  2740. char server_nonce[SAFECOOKIE_SERVER_NONCE_LEN];
  2741. char server_nonce_encoded[(2*SAFECOOKIE_SERVER_NONCE_LEN) + 1];
  2742. cp += strspn(cp, " \t\n\r");
  2743. if (!strcasecmpstart(cp, "SAFECOOKIE")) {
  2744. cp += strlen("SAFECOOKIE");
  2745. } else {
  2746. connection_write_str_to_buf("513 AUTHCHALLENGE only supports SAFECOOKIE "
  2747. "authentication\r\n", conn);
  2748. connection_mark_for_close(TO_CONN(conn));
  2749. return -1;
  2750. }
  2751. if (!authentication_cookie_is_set) {
  2752. connection_write_str_to_buf("515 Cookie authentication is disabled\r\n",
  2753. conn);
  2754. connection_mark_for_close(TO_CONN(conn));
  2755. return -1;
  2756. }
  2757. cp += strspn(cp, " \t\n\r");
  2758. if (*cp == '"') {
  2759. const char *newcp =
  2760. decode_escaped_string(cp, len - (cp - body),
  2761. &client_nonce, &client_nonce_len);
  2762. if (newcp == NULL) {
  2763. connection_write_str_to_buf("513 Invalid quoted client nonce\r\n",
  2764. conn);
  2765. connection_mark_for_close(TO_CONN(conn));
  2766. return -1;
  2767. }
  2768. cp = newcp;
  2769. } else {
  2770. size_t client_nonce_encoded_len = strspn(cp, "0123456789ABCDEFabcdef");
  2771. client_nonce_len = client_nonce_encoded_len / 2;
  2772. client_nonce = tor_malloc_zero(client_nonce_len);
  2773. if (base16_decode(client_nonce, client_nonce_len,
  2774. cp, client_nonce_encoded_len) < 0) {
  2775. connection_write_str_to_buf("513 Invalid base16 client nonce\r\n",
  2776. conn);
  2777. connection_mark_for_close(TO_CONN(conn));
  2778. tor_free(client_nonce);
  2779. return -1;
  2780. }
  2781. cp += client_nonce_encoded_len;
  2782. }
  2783. cp += strspn(cp, " \t\n\r");
  2784. if (*cp != '\0' ||
  2785. cp != body + len) {
  2786. connection_write_str_to_buf("513 Junk at end of AUTHCHALLENGE command\r\n",
  2787. conn);
  2788. connection_mark_for_close(TO_CONN(conn));
  2789. tor_free(client_nonce);
  2790. return -1;
  2791. }
  2792. tor_assert(!crypto_rand(server_nonce, SAFECOOKIE_SERVER_NONCE_LEN));
  2793. /* Now compute and send the server-to-controller response, and the
  2794. * server's nonce. */
  2795. tor_assert(authentication_cookie != NULL);
  2796. {
  2797. size_t tmp_len = (AUTHENTICATION_COOKIE_LEN +
  2798. client_nonce_len +
  2799. SAFECOOKIE_SERVER_NONCE_LEN);
  2800. char *tmp = tor_malloc_zero(tmp_len);
  2801. char *client_hash = tor_malloc_zero(DIGEST256_LEN);
  2802. memcpy(tmp, authentication_cookie, AUTHENTICATION_COOKIE_LEN);
  2803. memcpy(tmp + AUTHENTICATION_COOKIE_LEN, client_nonce, client_nonce_len);
  2804. memcpy(tmp + AUTHENTICATION_COOKIE_LEN + client_nonce_len,
  2805. server_nonce, SAFECOOKIE_SERVER_NONCE_LEN);
  2806. crypto_hmac_sha256(server_hash,
  2807. SAFECOOKIE_SERVER_TO_CONTROLLER_CONSTANT,
  2808. strlen(SAFECOOKIE_SERVER_TO_CONTROLLER_CONSTANT),
  2809. tmp,
  2810. tmp_len);
  2811. crypto_hmac_sha256(client_hash,
  2812. SAFECOOKIE_CONTROLLER_TO_SERVER_CONSTANT,
  2813. strlen(SAFECOOKIE_CONTROLLER_TO_SERVER_CONSTANT),
  2814. tmp,
  2815. tmp_len);
  2816. conn->safecookie_client_hash = client_hash;
  2817. tor_free(tmp);
  2818. }
  2819. base16_encode(server_hash_encoded, sizeof(server_hash_encoded),
  2820. server_hash, sizeof(server_hash));
  2821. base16_encode(server_nonce_encoded, sizeof(server_nonce_encoded),
  2822. server_nonce, sizeof(server_nonce));
  2823. connection_printf_to_buf(conn,
  2824. "250 AUTHCHALLENGE SERVERHASH=%s "
  2825. "SERVERNONCE=%s\r\n",
  2826. server_hash_encoded,
  2827. server_nonce_encoded);
  2828. return 0;
  2829. }
  2830. /** Called when we get a USEFEATURE command: parse the feature list, and
  2831. * set up the control_connection's options properly. */
  2832. static int
  2833. handle_control_usefeature(control_connection_t *conn,
  2834. uint32_t len,
  2835. const char *body)
  2836. {
  2837. smartlist_t *args;
  2838. int bad = 0;
  2839. (void) len; /* body is nul-terminated; it's safe to ignore the length */
  2840. args = smartlist_new();
  2841. smartlist_split_string(args, body, " ",
  2842. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2843. SMARTLIST_FOREACH(args, const char *, arg, {
  2844. if (!strcasecmp(arg, "VERBOSE_NAMES"))
  2845. ;
  2846. else if (!strcasecmp(arg, "EXTENDED_EVENTS"))
  2847. ;
  2848. else {
  2849. connection_printf_to_buf(conn, "552 Unrecognized feature \"%s\"\r\n",
  2850. arg);
  2851. bad = 1;
  2852. break;
  2853. }
  2854. });
  2855. if (!bad) {
  2856. send_control_done(conn);
  2857. }
  2858. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2859. smartlist_free(args);
  2860. return 0;
  2861. }
  2862. /** Called when <b>conn</b> has no more bytes left on its outbuf. */
  2863. int
  2864. connection_control_finished_flushing(control_connection_t *conn)
  2865. {
  2866. tor_assert(conn);
  2867. return 0;
  2868. }
  2869. /** Called when <b>conn</b> has gotten its socket closed. */
  2870. int
  2871. connection_control_reached_eof(control_connection_t *conn)
  2872. {
  2873. tor_assert(conn);
  2874. log_info(LD_CONTROL,"Control connection reached EOF. Closing.");
  2875. connection_mark_for_close(TO_CONN(conn));
  2876. return 0;
  2877. }
  2878. /** Shut down this Tor instance in the same way that SIGINT would, but
  2879. * with a log message appropriate for the loss of an owning controller. */
  2880. static void
  2881. lost_owning_controller(const char *owner_type, const char *loss_manner)
  2882. {
  2883. int shutdown_slowly = server_mode(get_options());
  2884. log_notice(LD_CONTROL, "Owning controller %s has %s -- %s.",
  2885. owner_type, loss_manner,
  2886. shutdown_slowly ? "shutting down" : "exiting now");
  2887. /* XXXX Perhaps this chunk of code should be a separate function,
  2888. * called here and by process_signal(SIGINT). */
  2889. if (!shutdown_slowly) {
  2890. tor_cleanup();
  2891. exit(0);
  2892. }
  2893. /* XXXX This will close all listening sockets except control-port
  2894. * listeners. Perhaps we should close those too. */
  2895. hibernate_begin_shutdown();
  2896. }
  2897. /** Called when <b>conn</b> is being freed. */
  2898. void
  2899. connection_control_closed(control_connection_t *conn)
  2900. {
  2901. tor_assert(conn);
  2902. conn->event_mask = 0;
  2903. control_update_global_event_mask();
  2904. if (conn->is_owning_control_connection) {
  2905. lost_owning_controller("connection", "closed");
  2906. }
  2907. }
  2908. /** Return true iff <b>cmd</b> is allowable (or at least forgivable) at this
  2909. * stage of the protocol. */
  2910. static int
  2911. is_valid_initial_command(control_connection_t *conn, const char *cmd)
  2912. {
  2913. if (conn->_base.state == CONTROL_CONN_STATE_OPEN)
  2914. return 1;
  2915. if (!strcasecmp(cmd, "PROTOCOLINFO"))
  2916. return (!conn->have_sent_protocolinfo &&
  2917. conn->safecookie_client_hash == NULL);
  2918. if (!strcasecmp(cmd, "AUTHCHALLENGE"))
  2919. return (conn->safecookie_client_hash == NULL);
  2920. if (!strcasecmp(cmd, "AUTHENTICATE") ||
  2921. !strcasecmp(cmd, "QUIT"))
  2922. return 1;
  2923. return 0;
  2924. }
  2925. /** Do not accept any control command of more than 1MB in length. Anything
  2926. * that needs to be anywhere near this long probably means that one of our
  2927. * interfaces is broken. */
  2928. #define MAX_COMMAND_LINE_LENGTH (1024*1024)
  2929. /** Wrapper around peek_(evbuffer|buf)_has_control0 command: presents the same
  2930. * interface as those underlying functions, but takes a connection_t intead of
  2931. * an evbuffer or a buf_t.
  2932. */
  2933. static int
  2934. peek_connection_has_control0_command(connection_t *conn)
  2935. {
  2936. IF_HAS_BUFFEREVENT(conn, {
  2937. struct evbuffer *input = bufferevent_get_input(conn->bufev);
  2938. return peek_evbuffer_has_control0_command(input);
  2939. }) ELSE_IF_NO_BUFFEREVENT {
  2940. return peek_buf_has_control0_command(conn->inbuf);
  2941. }
  2942. }
  2943. /** Called when data has arrived on a v1 control connection: Try to fetch
  2944. * commands from conn->inbuf, and execute them.
  2945. */
  2946. int
  2947. connection_control_process_inbuf(control_connection_t *conn)
  2948. {
  2949. size_t data_len;
  2950. uint32_t cmd_data_len;
  2951. int cmd_len;
  2952. char *args;
  2953. tor_assert(conn);
  2954. tor_assert(conn->_base.state == CONTROL_CONN_STATE_OPEN ||
  2955. conn->_base.state == CONTROL_CONN_STATE_NEEDAUTH);
  2956. if (!conn->incoming_cmd) {
  2957. conn->incoming_cmd = tor_malloc(1024);
  2958. conn->incoming_cmd_len = 1024;
  2959. conn->incoming_cmd_cur_len = 0;
  2960. }
  2961. if (conn->_base.state == CONTROL_CONN_STATE_NEEDAUTH &&
  2962. peek_connection_has_control0_command(TO_CONN(conn))) {
  2963. /* Detect v0 commands and send a "no more v0" message. */
  2964. size_t body_len;
  2965. char buf[128];
  2966. set_uint16(buf+2, htons(0x0000)); /* type == error */
  2967. set_uint16(buf+4, htons(0x0001)); /* code == internal error */
  2968. strlcpy(buf+6, "The v0 control protocol is not supported by Tor 0.1.2.17 "
  2969. "and later; upgrade your controller.",
  2970. sizeof(buf)-6);
  2971. body_len = 2+strlen(buf+6)+2; /* code, msg, nul. */
  2972. set_uint16(buf+0, htons(body_len));
  2973. connection_write_to_buf(buf, 4+body_len, TO_CONN(conn));
  2974. connection_mark_and_flush(TO_CONN(conn));
  2975. return 0;
  2976. }
  2977. again:
  2978. while (1) {
  2979. size_t last_idx;
  2980. int r;
  2981. /* First, fetch a line. */
  2982. do {
  2983. data_len = conn->incoming_cmd_len - conn->incoming_cmd_cur_len;
  2984. r = connection_fetch_from_buf_line(TO_CONN(conn),
  2985. conn->incoming_cmd+conn->incoming_cmd_cur_len,
  2986. &data_len);
  2987. if (r == 0)
  2988. /* Line not all here yet. Wait. */
  2989. return 0;
  2990. else if (r == -1) {
  2991. if (data_len + conn->incoming_cmd_cur_len > MAX_COMMAND_LINE_LENGTH) {
  2992. connection_write_str_to_buf("500 Line too long.\r\n", conn);
  2993. connection_stop_reading(TO_CONN(conn));
  2994. connection_mark_and_flush(TO_CONN(conn));
  2995. }
  2996. while (conn->incoming_cmd_len < data_len+conn->incoming_cmd_cur_len)
  2997. conn->incoming_cmd_len *= 2;
  2998. conn->incoming_cmd = tor_realloc(conn->incoming_cmd,
  2999. conn->incoming_cmd_len);
  3000. }
  3001. } while (r != 1);
  3002. tor_assert(data_len);
  3003. last_idx = conn->incoming_cmd_cur_len;
  3004. conn->incoming_cmd_cur_len += (int)data_len;
  3005. /* We have appended a line to incoming_cmd. Is the command done? */
  3006. if (last_idx == 0 && *conn->incoming_cmd != '+')
  3007. /* One line command, didn't start with '+'. */
  3008. break;
  3009. /* XXXX this code duplication is kind of dumb. */
  3010. if (last_idx+3 == conn->incoming_cmd_cur_len &&
  3011. tor_memeq(conn->incoming_cmd + last_idx, ".\r\n", 3)) {
  3012. /* Just appended ".\r\n"; we're done. Remove it. */
  3013. conn->incoming_cmd[last_idx] = '\0';
  3014. conn->incoming_cmd_cur_len -= 3;
  3015. break;
  3016. } else if (last_idx+2 == conn->incoming_cmd_cur_len &&
  3017. tor_memeq(conn->incoming_cmd + last_idx, ".\n", 2)) {
  3018. /* Just appended ".\n"; we're done. Remove it. */
  3019. conn->incoming_cmd[last_idx] = '\0';
  3020. conn->incoming_cmd_cur_len -= 2;
  3021. break;
  3022. }
  3023. /* Otherwise, read another line. */
  3024. }
  3025. data_len = conn->incoming_cmd_cur_len;
  3026. /* Okay, we now have a command sitting on conn->incoming_cmd. See if we
  3027. * recognize it.
  3028. */
  3029. cmd_len = 0;
  3030. while ((size_t)cmd_len < data_len
  3031. && !TOR_ISSPACE(conn->incoming_cmd[cmd_len]))
  3032. ++cmd_len;
  3033. conn->incoming_cmd[cmd_len]='\0';
  3034. args = conn->incoming_cmd+cmd_len+1;
  3035. tor_assert(data_len>(size_t)cmd_len);
  3036. data_len -= (cmd_len+1); /* skip the command and NUL we added after it */
  3037. while (TOR_ISSPACE(*args)) {
  3038. ++args;
  3039. --data_len;
  3040. }
  3041. /* If the connection is already closing, ignore further commands */
  3042. if (TO_CONN(conn)->marked_for_close) {
  3043. return 0;
  3044. }
  3045. /* Otherwise, Quit is always valid. */
  3046. if (!strcasecmp(conn->incoming_cmd, "QUIT")) {
  3047. connection_write_str_to_buf("250 closing connection\r\n", conn);
  3048. connection_mark_and_flush(TO_CONN(conn));
  3049. return 0;
  3050. }
  3051. if (conn->_base.state == CONTROL_CONN_STATE_NEEDAUTH &&
  3052. !is_valid_initial_command(conn, conn->incoming_cmd)) {
  3053. connection_write_str_to_buf("514 Authentication required.\r\n", conn);
  3054. connection_mark_for_close(TO_CONN(conn));
  3055. return 0;
  3056. }
  3057. if (data_len >= UINT32_MAX) {
  3058. connection_write_str_to_buf("500 A 4GB command? Nice try.\r\n", conn);
  3059. connection_mark_for_close(TO_CONN(conn));
  3060. return 0;
  3061. }
  3062. /* XXXX Why is this not implemented as a table like the GETINFO
  3063. * items are? Even handling the plus signs at the beginnings of
  3064. * commands wouldn't be very hard with proper macros. */
  3065. cmd_data_len = (uint32_t)data_len;
  3066. if (!strcasecmp(conn->incoming_cmd, "SETCONF")) {
  3067. if (handle_control_setconf(conn, cmd_data_len, args))
  3068. return -1;
  3069. } else if (!strcasecmp(conn->incoming_cmd, "RESETCONF")) {
  3070. if (handle_control_resetconf(conn, cmd_data_len, args))
  3071. return -1;
  3072. } else if (!strcasecmp(conn->incoming_cmd, "GETCONF")) {
  3073. if (handle_control_getconf(conn, cmd_data_len, args))
  3074. return -1;
  3075. } else if (!strcasecmp(conn->incoming_cmd, "+LOADCONF")) {
  3076. if (handle_control_loadconf(conn, cmd_data_len, args))
  3077. return -1;
  3078. } else if (!strcasecmp(conn->incoming_cmd, "SETEVENTS")) {
  3079. if (handle_control_setevents(conn, cmd_data_len, args))
  3080. return -1;
  3081. } else if (!strcasecmp(conn->incoming_cmd, "AUTHENTICATE")) {
  3082. if (handle_control_authenticate(conn, cmd_data_len, args))
  3083. return -1;
  3084. } else if (!strcasecmp(conn->incoming_cmd, "SAVECONF")) {
  3085. if (handle_control_saveconf(conn, cmd_data_len, args))
  3086. return -1;
  3087. } else if (!strcasecmp(conn->incoming_cmd, "SIGNAL")) {
  3088. if (handle_control_signal(conn, cmd_data_len, args))
  3089. return -1;
  3090. } else if (!strcasecmp(conn->incoming_cmd, "TAKEOWNERSHIP")) {
  3091. if (handle_control_takeownership(conn, cmd_data_len, args))
  3092. return -1;
  3093. } else if (!strcasecmp(conn->incoming_cmd, "MAPADDRESS")) {
  3094. if (handle_control_mapaddress(conn, cmd_data_len, args))
  3095. return -1;
  3096. } else if (!strcasecmp(conn->incoming_cmd, "GETINFO")) {
  3097. if (handle_control_getinfo(conn, cmd_data_len, args))
  3098. return -1;
  3099. } else if (!strcasecmp(conn->incoming_cmd, "EXTENDCIRCUIT")) {
  3100. if (handle_control_extendcircuit(conn, cmd_data_len, args))
  3101. return -1;
  3102. } else if (!strcasecmp(conn->incoming_cmd, "SETCIRCUITPURPOSE")) {
  3103. if (handle_control_setcircuitpurpose(conn, cmd_data_len, args))
  3104. return -1;
  3105. } else if (!strcasecmp(conn->incoming_cmd, "SETROUTERPURPOSE")) {
  3106. connection_write_str_to_buf("511 SETROUTERPURPOSE is obsolete.\r\n", conn);
  3107. } else if (!strcasecmp(conn->incoming_cmd, "ATTACHSTREAM")) {
  3108. if (handle_control_attachstream(conn, cmd_data_len, args))
  3109. return -1;
  3110. } else if (!strcasecmp(conn->incoming_cmd, "+POSTDESCRIPTOR")) {
  3111. if (handle_control_postdescriptor(conn, cmd_data_len, args))
  3112. return -1;
  3113. } else if (!strcasecmp(conn->incoming_cmd, "REDIRECTSTREAM")) {
  3114. if (handle_control_redirectstream(conn, cmd_data_len, args))
  3115. return -1;
  3116. } else if (!strcasecmp(conn->incoming_cmd, "CLOSESTREAM")) {
  3117. if (handle_control_closestream(conn, cmd_data_len, args))
  3118. return -1;
  3119. } else if (!strcasecmp(conn->incoming_cmd, "CLOSECIRCUIT")) {
  3120. if (handle_control_closecircuit(conn, cmd_data_len, args))
  3121. return -1;
  3122. } else if (!strcasecmp(conn->incoming_cmd, "USEFEATURE")) {
  3123. if (handle_control_usefeature(conn, cmd_data_len, args))
  3124. return -1;
  3125. } else if (!strcasecmp(conn->incoming_cmd, "RESOLVE")) {
  3126. if (handle_control_resolve(conn, cmd_data_len, args))
  3127. return -1;
  3128. } else if (!strcasecmp(conn->incoming_cmd, "PROTOCOLINFO")) {
  3129. if (handle_control_protocolinfo(conn, cmd_data_len, args))
  3130. return -1;
  3131. } else if (!strcasecmp(conn->incoming_cmd, "AUTHCHALLENGE")) {
  3132. if (handle_control_authchallenge(conn, cmd_data_len, args))
  3133. return -1;
  3134. } else {
  3135. connection_printf_to_buf(conn, "510 Unrecognized command \"%s\"\r\n",
  3136. conn->incoming_cmd);
  3137. }
  3138. conn->incoming_cmd_cur_len = 0;
  3139. goto again;
  3140. }
  3141. /** Something major has happened to circuit <b>circ</b>: tell any
  3142. * interested control connections. */
  3143. int
  3144. control_event_circuit_status(origin_circuit_t *circ, circuit_status_event_t tp,
  3145. int reason_code)
  3146. {
  3147. const char *status;
  3148. char reasons[64] = "";
  3149. if (!EVENT_IS_INTERESTING(EVENT_CIRCUIT_STATUS))
  3150. return 0;
  3151. tor_assert(circ);
  3152. switch (tp)
  3153. {
  3154. case CIRC_EVENT_LAUNCHED: status = "LAUNCHED"; break;
  3155. case CIRC_EVENT_BUILT: status = "BUILT"; break;
  3156. case CIRC_EVENT_EXTENDED: status = "EXTENDED"; break;
  3157. case CIRC_EVENT_FAILED: status = "FAILED"; break;
  3158. case CIRC_EVENT_CLOSED: status = "CLOSED"; break;
  3159. default:
  3160. log_warn(LD_BUG, "Unrecognized status code %d", (int)tp);
  3161. tor_fragile_assert();
  3162. return 0;
  3163. }
  3164. if (tp == CIRC_EVENT_FAILED || tp == CIRC_EVENT_CLOSED) {
  3165. const char *reason_str = circuit_end_reason_to_control_string(reason_code);
  3166. char unk_reason_buf[16];
  3167. if (!reason_str) {
  3168. tor_snprintf(unk_reason_buf, 16, "UNKNOWN_%d", reason_code);
  3169. reason_str = unk_reason_buf;
  3170. }
  3171. if (reason_code > 0 && reason_code & END_CIRC_REASON_FLAG_REMOTE) {
  3172. tor_snprintf(reasons, sizeof(reasons),
  3173. " REASON=DESTROYED REMOTE_REASON=%s", reason_str);
  3174. } else {
  3175. tor_snprintf(reasons, sizeof(reasons),
  3176. " REASON=%s", reason_str);
  3177. }
  3178. }
  3179. {
  3180. char *circdesc = circuit_describe_status_for_controller(circ);
  3181. const char *sp = strlen(circdesc) ? " " : "";
  3182. send_control_event(EVENT_CIRCUIT_STATUS, ALL_FORMATS,
  3183. "650 CIRC %lu %s%s%s%s\r\n",
  3184. (unsigned long)circ->global_identifier,
  3185. status, sp,
  3186. circdesc,
  3187. reasons);
  3188. tor_free(circdesc);
  3189. }
  3190. return 0;
  3191. }
  3192. /** Something minor has happened to circuit <b>circ</b>: tell any
  3193. * interested control connections. */
  3194. static int
  3195. control_event_circuit_status_minor(origin_circuit_t *circ,
  3196. circuit_status_minor_event_t e,
  3197. int purpose, const struct timeval *tv)
  3198. {
  3199. const char *event_desc;
  3200. char event_tail[160] = "";
  3201. if (!EVENT_IS_INTERESTING(EVENT_CIRCUIT_STATUS_MINOR))
  3202. return 0;
  3203. tor_assert(circ);
  3204. switch (e)
  3205. {
  3206. case CIRC_MINOR_EVENT_PURPOSE_CHANGED:
  3207. event_desc = "PURPOSE_CHANGED";
  3208. {
  3209. /* event_tail can currently be up to 68 chars long */
  3210. const char *hs_state_str =
  3211. circuit_purpose_to_controller_hs_state_string(purpose);
  3212. tor_snprintf(event_tail, sizeof(event_tail),
  3213. " OLD_PURPOSE=%s%s%s",
  3214. circuit_purpose_to_controller_string(purpose),
  3215. (hs_state_str != NULL) ? " OLD_HS_STATE=" : "",
  3216. (hs_state_str != NULL) ? hs_state_str : "");
  3217. }
  3218. break;
  3219. case CIRC_MINOR_EVENT_CANNIBALIZED:
  3220. event_desc = "CANNIBALIZED";
  3221. {
  3222. /* event_tail can currently be up to 130 chars long */
  3223. const char *hs_state_str =
  3224. circuit_purpose_to_controller_hs_state_string(purpose);
  3225. const struct timeval *old_timestamp_created = tv;
  3226. char tbuf[ISO_TIME_USEC_LEN+1];
  3227. format_iso_time_nospace_usec(tbuf, old_timestamp_created);
  3228. tor_snprintf(event_tail, sizeof(event_tail),
  3229. " OLD_PURPOSE=%s%s%s OLD_TIME_CREATED=%s",
  3230. circuit_purpose_to_controller_string(purpose),
  3231. (hs_state_str != NULL) ? " OLD_HS_STATE=" : "",
  3232. (hs_state_str != NULL) ? hs_state_str : "",
  3233. tbuf);
  3234. }
  3235. break;
  3236. default:
  3237. log_warn(LD_BUG, "Unrecognized status code %d", (int)e);
  3238. tor_fragile_assert();
  3239. return 0;
  3240. }
  3241. {
  3242. char *circdesc = circuit_describe_status_for_controller(circ);
  3243. const char *sp = strlen(circdesc) ? " " : "";
  3244. send_control_event(EVENT_CIRCUIT_STATUS_MINOR, ALL_FORMATS,
  3245. "650 CIRC_MINOR %lu %s%s%s%s\r\n",
  3246. (unsigned long)circ->global_identifier,
  3247. event_desc, sp,
  3248. circdesc,
  3249. event_tail);
  3250. tor_free(circdesc);
  3251. }
  3252. return 0;
  3253. }
  3254. /**
  3255. * <b>circ</b> has changed its purpose from <b>old_purpose</b>: tell any
  3256. * interested controllers.
  3257. */
  3258. int
  3259. control_event_circuit_purpose_changed(origin_circuit_t *circ,
  3260. int old_purpose)
  3261. {
  3262. return control_event_circuit_status_minor(circ,
  3263. CIRC_MINOR_EVENT_PURPOSE_CHANGED,
  3264. old_purpose,
  3265. NULL);
  3266. }
  3267. /**
  3268. * <b>circ</b> has changed its purpose from <b>old_purpose</b>, and its
  3269. * created-time from <b>old_tv_created</b>: tell any interested controllers.
  3270. */
  3271. int
  3272. control_event_circuit_cannibalized(origin_circuit_t *circ,
  3273. int old_purpose,
  3274. const struct timeval *old_tv_created)
  3275. {
  3276. return control_event_circuit_status_minor(circ,
  3277. CIRC_MINOR_EVENT_CANNIBALIZED,
  3278. old_purpose,
  3279. old_tv_created);
  3280. }
  3281. /** Given an AP connection <b>conn</b> and a <b>len</b>-character buffer
  3282. * <b>buf</b>, determine the address:port combination requested on
  3283. * <b>conn</b>, and write it to <b>buf</b>. Return 0 on success, -1 on
  3284. * failure. */
  3285. static int
  3286. write_stream_target_to_buf(entry_connection_t *conn, char *buf, size_t len)
  3287. {
  3288. char buf2[256];
  3289. if (conn->chosen_exit_name)
  3290. if (tor_snprintf(buf2, sizeof(buf2), ".%s.exit", conn->chosen_exit_name)<0)
  3291. return -1;
  3292. if (!conn->socks_request)
  3293. return -1;
  3294. if (tor_snprintf(buf, len, "%s%s%s:%d",
  3295. conn->socks_request->address,
  3296. conn->chosen_exit_name ? buf2 : "",
  3297. !conn->chosen_exit_name && connection_edge_is_rendezvous_stream(
  3298. ENTRY_TO_EDGE_CONN(conn)) ? ".onion" : "",
  3299. conn->socks_request->port)<0)
  3300. return -1;
  3301. return 0;
  3302. }
  3303. /** Something has happened to the stream associated with AP connection
  3304. * <b>conn</b>: tell any interested control connections. */
  3305. int
  3306. control_event_stream_status(entry_connection_t *conn, stream_status_event_t tp,
  3307. int reason_code)
  3308. {
  3309. char reason_buf[64];
  3310. char addrport_buf[64];
  3311. const char *status;
  3312. circuit_t *circ;
  3313. origin_circuit_t *origin_circ = NULL;
  3314. char buf[256];
  3315. const char *purpose = "";
  3316. tor_assert(conn->socks_request);
  3317. if (!EVENT_IS_INTERESTING(EVENT_STREAM_STATUS))
  3318. return 0;
  3319. if (tp == STREAM_EVENT_CLOSED &&
  3320. (reason_code & END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED))
  3321. return 0;
  3322. write_stream_target_to_buf(conn, buf, sizeof(buf));
  3323. reason_buf[0] = '\0';
  3324. switch (tp)
  3325. {
  3326. case STREAM_EVENT_SENT_CONNECT: status = "SENTCONNECT"; break;
  3327. case STREAM_EVENT_SENT_RESOLVE: status = "SENTRESOLVE"; break;
  3328. case STREAM_EVENT_SUCCEEDED: status = "SUCCEEDED"; break;
  3329. case STREAM_EVENT_FAILED: status = "FAILED"; break;
  3330. case STREAM_EVENT_CLOSED: status = "CLOSED"; break;
  3331. case STREAM_EVENT_NEW: status = "NEW"; break;
  3332. case STREAM_EVENT_NEW_RESOLVE: status = "NEWRESOLVE"; break;
  3333. case STREAM_EVENT_FAILED_RETRIABLE: status = "DETACHED"; break;
  3334. case STREAM_EVENT_REMAP: status = "REMAP"; break;
  3335. default:
  3336. log_warn(LD_BUG, "Unrecognized status code %d", (int)tp);
  3337. return 0;
  3338. }
  3339. if (reason_code && (tp == STREAM_EVENT_FAILED ||
  3340. tp == STREAM_EVENT_CLOSED ||
  3341. tp == STREAM_EVENT_FAILED_RETRIABLE)) {
  3342. const char *reason_str = stream_end_reason_to_control_string(reason_code);
  3343. char *r = NULL;
  3344. if (!reason_str) {
  3345. tor_asprintf(&r, " UNKNOWN_%d", reason_code);
  3346. reason_str = r;
  3347. }
  3348. if (reason_code & END_STREAM_REASON_FLAG_REMOTE)
  3349. tor_snprintf(reason_buf, sizeof(reason_buf),
  3350. " REASON=END REMOTE_REASON=%s", reason_str);
  3351. else
  3352. tor_snprintf(reason_buf, sizeof(reason_buf),
  3353. " REASON=%s", reason_str);
  3354. tor_free(r);
  3355. } else if (reason_code && tp == STREAM_EVENT_REMAP) {
  3356. switch (reason_code) {
  3357. case REMAP_STREAM_SOURCE_CACHE:
  3358. strlcpy(reason_buf, " SOURCE=CACHE", sizeof(reason_buf));
  3359. break;
  3360. case REMAP_STREAM_SOURCE_EXIT:
  3361. strlcpy(reason_buf, " SOURCE=EXIT", sizeof(reason_buf));
  3362. break;
  3363. default:
  3364. tor_snprintf(reason_buf, sizeof(reason_buf), " REASON=UNKNOWN_%d",
  3365. reason_code);
  3366. /* XXX do we want SOURCE=UNKNOWN_%d above instead? -RD */
  3367. break;
  3368. }
  3369. }
  3370. if (tp == STREAM_EVENT_NEW) {
  3371. tor_snprintf(addrport_buf,sizeof(addrport_buf), " SOURCE_ADDR=%s:%d",
  3372. ENTRY_TO_CONN(conn)->address, ENTRY_TO_CONN(conn)->port);
  3373. } else {
  3374. addrport_buf[0] = '\0';
  3375. }
  3376. if (tp == STREAM_EVENT_NEW_RESOLVE) {
  3377. purpose = " PURPOSE=DNS_REQUEST";
  3378. } else if (tp == STREAM_EVENT_NEW) {
  3379. if (ENTRY_TO_EDGE_CONN(conn)->is_dns_request ||
  3380. (conn->socks_request &&
  3381. SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)))
  3382. purpose = " PURPOSE=DNS_REQUEST";
  3383. else if (conn->use_begindir) {
  3384. connection_t *linked = ENTRY_TO_CONN(conn)->linked_conn;
  3385. int linked_dir_purpose = -1;
  3386. if (linked && linked->type == CONN_TYPE_DIR)
  3387. linked_dir_purpose = linked->purpose;
  3388. if (DIR_PURPOSE_IS_UPLOAD(linked_dir_purpose))
  3389. purpose = " PURPOSE=DIR_UPLOAD";
  3390. else
  3391. purpose = " PURPOSE=DIR_FETCH";
  3392. } else
  3393. purpose = " PURPOSE=USER";
  3394. }
  3395. circ = circuit_get_by_edge_conn(ENTRY_TO_EDGE_CONN(conn));
  3396. if (circ && CIRCUIT_IS_ORIGIN(circ))
  3397. origin_circ = TO_ORIGIN_CIRCUIT(circ);
  3398. send_control_event(EVENT_STREAM_STATUS, ALL_FORMATS,
  3399. "650 STREAM "U64_FORMAT" %s %lu %s%s%s%s\r\n",
  3400. U64_PRINTF_ARG(ENTRY_TO_CONN(conn)->global_identifier),
  3401. status,
  3402. origin_circ?
  3403. (unsigned long)origin_circ->global_identifier : 0ul,
  3404. buf, reason_buf, addrport_buf, purpose);
  3405. /* XXX need to specify its intended exit, etc? */
  3406. return 0;
  3407. }
  3408. /** Figure out the best name for the target router of an OR connection
  3409. * <b>conn</b>, and write it into the <b>len</b>-character buffer
  3410. * <b>name</b>. */
  3411. static void
  3412. orconn_target_get_name(char *name, size_t len, or_connection_t *conn)
  3413. {
  3414. const node_t *node = node_get_by_id(conn->identity_digest);
  3415. if (node) {
  3416. tor_assert(len > MAX_VERBOSE_NICKNAME_LEN);
  3417. node_get_verbose_nickname(node, name);
  3418. } else if (! tor_digest_is_zero(conn->identity_digest)) {
  3419. name[0] = '$';
  3420. base16_encode(name+1, len-1, conn->identity_digest,
  3421. DIGEST_LEN);
  3422. } else {
  3423. tor_snprintf(name, len, "%s:%d",
  3424. conn->_base.address, conn->_base.port);
  3425. }
  3426. }
  3427. /** Called when the status of an OR connection <b>conn</b> changes: tell any
  3428. * interested control connections. <b>tp</b> is the new status for the
  3429. * connection. If <b>conn</b> has just closed or failed, then <b>reason</b>
  3430. * may be the reason why.
  3431. */
  3432. int
  3433. control_event_or_conn_status(or_connection_t *conn, or_conn_status_event_t tp,
  3434. int reason)
  3435. {
  3436. int ncircs = 0;
  3437. const char *status;
  3438. char name[128];
  3439. char ncircs_buf[32] = {0}; /* > 8 + log10(2^32)=10 + 2 */
  3440. if (!EVENT_IS_INTERESTING(EVENT_OR_CONN_STATUS))
  3441. return 0;
  3442. switch (tp)
  3443. {
  3444. case OR_CONN_EVENT_LAUNCHED: status = "LAUNCHED"; break;
  3445. case OR_CONN_EVENT_CONNECTED: status = "CONNECTED"; break;
  3446. case OR_CONN_EVENT_FAILED: status = "FAILED"; break;
  3447. case OR_CONN_EVENT_CLOSED: status = "CLOSED"; break;
  3448. case OR_CONN_EVENT_NEW: status = "NEW"; break;
  3449. default:
  3450. log_warn(LD_BUG, "Unrecognized status code %d", (int)tp);
  3451. return 0;
  3452. }
  3453. ncircs = circuit_count_pending_on_or_conn(conn);
  3454. ncircs += conn->n_circuits;
  3455. if (ncircs && (tp == OR_CONN_EVENT_FAILED || tp == OR_CONN_EVENT_CLOSED)) {
  3456. tor_snprintf(ncircs_buf, sizeof(ncircs_buf), "%sNCIRCS=%d",
  3457. reason ? " " : "", ncircs);
  3458. }
  3459. orconn_target_get_name(name, sizeof(name), conn);
  3460. send_control_event(EVENT_OR_CONN_STATUS, ALL_FORMATS,
  3461. "650 ORCONN %s %s %s%s%s\r\n",
  3462. name, status,
  3463. reason ? "REASON=" : "",
  3464. orconn_end_reason_to_control_string(reason),
  3465. ncircs_buf);
  3466. return 0;
  3467. }
  3468. /**
  3469. * Print out STREAM_BW event for a single conn
  3470. */
  3471. int
  3472. control_event_stream_bandwidth(edge_connection_t *edge_conn)
  3473. {
  3474. if (EVENT_IS_INTERESTING(EVENT_STREAM_BANDWIDTH_USED)) {
  3475. if (!edge_conn->n_read && !edge_conn->n_written)
  3476. return 0;
  3477. send_control_event(EVENT_STREAM_BANDWIDTH_USED, ALL_FORMATS,
  3478. "650 STREAM_BW "U64_FORMAT" %lu %lu\r\n",
  3479. U64_PRINTF_ARG(edge_conn->_base.global_identifier),
  3480. (unsigned long)edge_conn->n_read,
  3481. (unsigned long)edge_conn->n_written);
  3482. edge_conn->n_written = edge_conn->n_read = 0;
  3483. }
  3484. return 0;
  3485. }
  3486. /** A second or more has elapsed: tell any interested control
  3487. * connections how much bandwidth streams have used. */
  3488. int
  3489. control_event_stream_bandwidth_used(void)
  3490. {
  3491. if (EVENT_IS_INTERESTING(EVENT_STREAM_BANDWIDTH_USED)) {
  3492. smartlist_t *conns = get_connection_array();
  3493. edge_connection_t *edge_conn;
  3494. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn)
  3495. {
  3496. if (conn->type != CONN_TYPE_AP)
  3497. continue;
  3498. edge_conn = TO_EDGE_CONN(conn);
  3499. if (!edge_conn->n_read && !edge_conn->n_written)
  3500. continue;
  3501. send_control_event(EVENT_STREAM_BANDWIDTH_USED, ALL_FORMATS,
  3502. "650 STREAM_BW "U64_FORMAT" %lu %lu\r\n",
  3503. U64_PRINTF_ARG(edge_conn->_base.global_identifier),
  3504. (unsigned long)edge_conn->n_read,
  3505. (unsigned long)edge_conn->n_written);
  3506. edge_conn->n_written = edge_conn->n_read = 0;
  3507. }
  3508. SMARTLIST_FOREACH_END(conn);
  3509. }
  3510. return 0;
  3511. }
  3512. /** A second or more has elapsed: tell any interested control
  3513. * connections how much bandwidth we used. */
  3514. int
  3515. control_event_bandwidth_used(uint32_t n_read, uint32_t n_written)
  3516. {
  3517. if (EVENT_IS_INTERESTING(EVENT_BANDWIDTH_USED)) {
  3518. send_control_event(EVENT_BANDWIDTH_USED, ALL_FORMATS,
  3519. "650 BW %lu %lu\r\n",
  3520. (unsigned long)n_read,
  3521. (unsigned long)n_written);
  3522. }
  3523. return 0;
  3524. }
  3525. /** Called when we are sending a log message to the controllers: suspend
  3526. * sending further log messages to the controllers until we're done. Used by
  3527. * CONN_LOG_PROTECT. */
  3528. void
  3529. disable_control_logging(void)
  3530. {
  3531. ++disable_log_messages;
  3532. }
  3533. /** We're done sending a log message to the controllers: re-enable controller
  3534. * logging. Used by CONN_LOG_PROTECT. */
  3535. void
  3536. enable_control_logging(void)
  3537. {
  3538. if (--disable_log_messages < 0)
  3539. tor_assert(0);
  3540. }
  3541. /** We got a log message: tell any interested control connections. */
  3542. void
  3543. control_event_logmsg(int severity, uint32_t domain, const char *msg)
  3544. {
  3545. int event;
  3546. /* Don't even think of trying to add stuff to a buffer from a cpuworker
  3547. * thread. */
  3548. if (! in_main_thread())
  3549. return;
  3550. if (disable_log_messages)
  3551. return;
  3552. if (domain == LD_BUG && EVENT_IS_INTERESTING(EVENT_STATUS_GENERAL) &&
  3553. severity <= LOG_NOTICE) {
  3554. char *esc = esc_for_log(msg);
  3555. ++disable_log_messages;
  3556. control_event_general_status(severity, "BUG REASON=%s", esc);
  3557. --disable_log_messages;
  3558. tor_free(esc);
  3559. }
  3560. event = log_severity_to_event(severity);
  3561. if (event >= 0 && EVENT_IS_INTERESTING(event)) {
  3562. char *b = NULL;
  3563. const char *s;
  3564. if (strchr(msg, '\n')) {
  3565. char *cp;
  3566. b = tor_strdup(msg);
  3567. for (cp = b; *cp; ++cp)
  3568. if (*cp == '\r' || *cp == '\n')
  3569. *cp = ' ';
  3570. }
  3571. switch (severity) {
  3572. case LOG_DEBUG: s = "DEBUG"; break;
  3573. case LOG_INFO: s = "INFO"; break;
  3574. case LOG_NOTICE: s = "NOTICE"; break;
  3575. case LOG_WARN: s = "WARN"; break;
  3576. case LOG_ERR: s = "ERR"; break;
  3577. default: s = "UnknownLogSeverity"; break;
  3578. }
  3579. ++disable_log_messages;
  3580. send_control_event(event, ALL_FORMATS, "650 %s %s\r\n", s, b?b:msg);
  3581. --disable_log_messages;
  3582. tor_free(b);
  3583. }
  3584. }
  3585. /** Called whenever we receive new router descriptors: tell any
  3586. * interested control connections. <b>routers</b> is a list of
  3587. * routerinfo_t's.
  3588. */
  3589. int
  3590. control_event_descriptors_changed(smartlist_t *routers)
  3591. {
  3592. char *msg;
  3593. if (!EVENT_IS_INTERESTING(EVENT_NEW_DESC))
  3594. return 0;
  3595. {
  3596. smartlist_t *names = smartlist_new();
  3597. char *ids;
  3598. SMARTLIST_FOREACH(routers, routerinfo_t *, ri, {
  3599. char *b = tor_malloc(MAX_VERBOSE_NICKNAME_LEN+1);
  3600. router_get_verbose_nickname(b, ri);
  3601. smartlist_add(names, b);
  3602. });
  3603. ids = smartlist_join_strings(names, " ", 0, NULL);
  3604. tor_asprintf(&msg, "650 NEWDESC %s\r\n", ids);
  3605. send_control_event_string(EVENT_NEW_DESC, ALL_FORMATS, msg);
  3606. tor_free(ids);
  3607. tor_free(msg);
  3608. SMARTLIST_FOREACH(names, char *, cp, tor_free(cp));
  3609. smartlist_free(names);
  3610. }
  3611. return 0;
  3612. }
  3613. /** Called when an address mapping on <b>from</b> from changes to <b>to</b>.
  3614. * <b>expires</b> values less than 3 are special; see connection_edge.c. If
  3615. * <b>error</b> is non-NULL, it is an error code describing the failure
  3616. * mode of the mapping.
  3617. */
  3618. int
  3619. control_event_address_mapped(const char *from, const char *to, time_t expires,
  3620. const char *error)
  3621. {
  3622. if (!EVENT_IS_INTERESTING(EVENT_ADDRMAP))
  3623. return 0;
  3624. if (expires < 3 || expires == TIME_MAX)
  3625. send_control_event(EVENT_ADDRMAP, ALL_FORMATS,
  3626. "650 ADDRMAP %s %s NEVER %s\r\n", from, to,
  3627. error?error:"");
  3628. else {
  3629. char buf[ISO_TIME_LEN+1];
  3630. char buf2[ISO_TIME_LEN+1];
  3631. format_local_iso_time(buf,expires);
  3632. format_iso_time(buf2,expires);
  3633. send_control_event(EVENT_ADDRMAP, ALL_FORMATS,
  3634. "650 ADDRMAP %s %s \"%s\""
  3635. " %s%sEXPIRES=\"%s\"\r\n",
  3636. from, to, buf,
  3637. error?error:"", error?" ":"",
  3638. buf2);
  3639. }
  3640. return 0;
  3641. }
  3642. /** The authoritative dirserver has received a new descriptor that
  3643. * has passed basic syntax checks and is properly self-signed.
  3644. *
  3645. * Notify any interested party of the new descriptor and what has
  3646. * been done with it, and also optionally give an explanation/reason. */
  3647. int
  3648. control_event_or_authdir_new_descriptor(const char *action,
  3649. const char *desc, size_t desclen,
  3650. const char *msg)
  3651. {
  3652. char firstline[1024];
  3653. char *buf;
  3654. size_t totallen;
  3655. char *esc = NULL;
  3656. size_t esclen;
  3657. if (!EVENT_IS_INTERESTING(EVENT_AUTHDIR_NEWDESCS))
  3658. return 0;
  3659. tor_snprintf(firstline, sizeof(firstline),
  3660. "650+AUTHDIR_NEWDESC=\r\n%s\r\n%s\r\n",
  3661. action,
  3662. msg ? msg : "");
  3663. /* Escape the server descriptor properly */
  3664. esclen = write_escaped_data(desc, desclen, &esc);
  3665. totallen = strlen(firstline) + esclen + 1;
  3666. buf = tor_malloc(totallen);
  3667. strlcpy(buf, firstline, totallen);
  3668. strlcpy(buf+strlen(firstline), esc, totallen);
  3669. send_control_event_string(EVENT_AUTHDIR_NEWDESCS, ALL_FORMATS,
  3670. buf);
  3671. send_control_event_string(EVENT_AUTHDIR_NEWDESCS, ALL_FORMATS,
  3672. "650 OK\r\n");
  3673. tor_free(esc);
  3674. tor_free(buf);
  3675. return 0;
  3676. }
  3677. /** Helper function for NS-style events. Constructs and sends an event
  3678. * of type <b>event</b> with string <b>event_string</b> out of the set of
  3679. * networkstatuses <b>statuses</b>. Currently it is used for NS events
  3680. * and NEWCONSENSUS events. */
  3681. static int
  3682. control_event_networkstatus_changed_helper(smartlist_t *statuses,
  3683. uint16_t event,
  3684. const char *event_string)
  3685. {
  3686. smartlist_t *strs;
  3687. char *s, *esc = NULL;
  3688. if (!EVENT_IS_INTERESTING(event) || !smartlist_len(statuses))
  3689. return 0;
  3690. strs = smartlist_new();
  3691. smartlist_add(strs, tor_strdup("650+"));
  3692. smartlist_add(strs, tor_strdup(event_string));
  3693. smartlist_add(strs, tor_strdup("\r\n"));
  3694. SMARTLIST_FOREACH(statuses, const routerstatus_t *, rs,
  3695. {
  3696. s = networkstatus_getinfo_helper_single(rs);
  3697. if (!s) continue;
  3698. smartlist_add(strs, s);
  3699. });
  3700. s = smartlist_join_strings(strs, "", 0, NULL);
  3701. write_escaped_data(s, strlen(s), &esc);
  3702. SMARTLIST_FOREACH(strs, char *, cp, tor_free(cp));
  3703. smartlist_free(strs);
  3704. tor_free(s);
  3705. send_control_event_string(event, ALL_FORMATS, esc);
  3706. send_control_event_string(event, ALL_FORMATS,
  3707. "650 OK\r\n");
  3708. tor_free(esc);
  3709. return 0;
  3710. }
  3711. /** Called when the routerstatus_ts <b>statuses</b> have changed: sends
  3712. * an NS event to any controller that cares. */
  3713. int
  3714. control_event_networkstatus_changed(smartlist_t *statuses)
  3715. {
  3716. return control_event_networkstatus_changed_helper(statuses, EVENT_NS, "NS");
  3717. }
  3718. /** Called when we get a new consensus networkstatus. Sends a NEWCONSENSUS
  3719. * event consisting of an NS-style line for each relay in the consensus. */
  3720. int
  3721. control_event_newconsensus(const networkstatus_t *consensus)
  3722. {
  3723. if (!control_event_is_interesting(EVENT_NEWCONSENSUS))
  3724. return 0;
  3725. return control_event_networkstatus_changed_helper(
  3726. consensus->routerstatus_list, EVENT_NEWCONSENSUS, "NEWCONSENSUS");
  3727. }
  3728. /** Called when we compute a new circuitbuildtimeout */
  3729. int
  3730. control_event_buildtimeout_set(const circuit_build_times_t *cbt,
  3731. buildtimeout_set_event_t type)
  3732. {
  3733. const char *type_string = NULL;
  3734. double qnt;
  3735. if (!control_event_is_interesting(EVENT_BUILDTIMEOUT_SET))
  3736. return 0;
  3737. qnt = circuit_build_times_quantile_cutoff();
  3738. switch (type) {
  3739. case BUILDTIMEOUT_SET_EVENT_COMPUTED:
  3740. type_string = "COMPUTED";
  3741. break;
  3742. case BUILDTIMEOUT_SET_EVENT_RESET:
  3743. type_string = "RESET";
  3744. qnt = 1.0;
  3745. break;
  3746. case BUILDTIMEOUT_SET_EVENT_SUSPENDED:
  3747. type_string = "SUSPENDED";
  3748. qnt = 1.0;
  3749. break;
  3750. case BUILDTIMEOUT_SET_EVENT_DISCARD:
  3751. type_string = "DISCARD";
  3752. qnt = 1.0;
  3753. break;
  3754. case BUILDTIMEOUT_SET_EVENT_RESUME:
  3755. type_string = "RESUME";
  3756. break;
  3757. default:
  3758. type_string = "UNKNOWN";
  3759. break;
  3760. }
  3761. send_control_event(EVENT_BUILDTIMEOUT_SET, ALL_FORMATS,
  3762. "650 BUILDTIMEOUT_SET %s TOTAL_TIMES=%lu "
  3763. "TIMEOUT_MS=%lu XM=%lu ALPHA=%f CUTOFF_QUANTILE=%f "
  3764. "TIMEOUT_RATE=%f CLOSE_MS=%lu CLOSE_RATE=%f\r\n",
  3765. type_string, (unsigned long)cbt->total_build_times,
  3766. (unsigned long)cbt->timeout_ms,
  3767. (unsigned long)cbt->Xm, cbt->alpha, qnt,
  3768. circuit_build_times_timeout_rate(cbt),
  3769. (unsigned long)cbt->close_ms,
  3770. circuit_build_times_close_rate(cbt));
  3771. return 0;
  3772. }
  3773. /** Called when a signal has been processed from signal_callback */
  3774. int
  3775. control_event_signal(uintptr_t signal)
  3776. {
  3777. const char *signal_string = NULL;
  3778. if (!control_event_is_interesting(EVENT_SIGNAL))
  3779. return 0;
  3780. switch (signal) {
  3781. case SIGHUP:
  3782. signal_string = "RELOAD";
  3783. break;
  3784. case SIGUSR1:
  3785. signal_string = "DUMP";
  3786. break;
  3787. case SIGUSR2:
  3788. signal_string = "DEBUG";
  3789. break;
  3790. case SIGNEWNYM:
  3791. signal_string = "NEWNYM";
  3792. break;
  3793. case SIGCLEARDNSCACHE:
  3794. signal_string = "CLEARDNSCACHE";
  3795. break;
  3796. default:
  3797. log_warn(LD_BUG, "Unrecognized signal %lu in control_event_signal",
  3798. (unsigned long)signal);
  3799. return -1;
  3800. }
  3801. send_control_event(EVENT_SIGNAL, ALL_FORMATS, "650 SIGNAL %s\r\n",
  3802. signal_string);
  3803. return 0;
  3804. }
  3805. /** Called when a single local_routerstatus_t has changed: Sends an NS event
  3806. * to any controller that cares. */
  3807. int
  3808. control_event_networkstatus_changed_single(const routerstatus_t *rs)
  3809. {
  3810. smartlist_t *statuses;
  3811. int r;
  3812. if (!EVENT_IS_INTERESTING(EVENT_NS))
  3813. return 0;
  3814. statuses = smartlist_new();
  3815. smartlist_add(statuses, (void*)rs);
  3816. r = control_event_networkstatus_changed(statuses);
  3817. smartlist_free(statuses);
  3818. return r;
  3819. }
  3820. /** Our own router descriptor has changed; tell any controllers that care.
  3821. */
  3822. int
  3823. control_event_my_descriptor_changed(void)
  3824. {
  3825. send_control_event(EVENT_DESCCHANGED, ALL_FORMATS, "650 DESCCHANGED\r\n");
  3826. return 0;
  3827. }
  3828. /** Helper: sends a status event where <b>type</b> is one of
  3829. * EVENT_STATUS_{GENERAL,CLIENT,SERVER}, where <b>severity</b> is one of
  3830. * LOG_{NOTICE,WARN,ERR}, and where <b>format</b> is a printf-style format
  3831. * string corresponding to <b>args</b>. */
  3832. static int
  3833. control_event_status(int type, int severity, const char *format, va_list args)
  3834. {
  3835. char *user_buf = NULL;
  3836. char format_buf[160];
  3837. const char *status, *sev;
  3838. switch (type) {
  3839. case EVENT_STATUS_GENERAL:
  3840. status = "STATUS_GENERAL";
  3841. break;
  3842. case EVENT_STATUS_CLIENT:
  3843. status = "STATUS_CLIENT";
  3844. break;
  3845. case EVENT_STATUS_SERVER:
  3846. status = "STATUS_SERVER";
  3847. break;
  3848. default:
  3849. log_warn(LD_BUG, "Unrecognized status type %d", type);
  3850. return -1;
  3851. }
  3852. switch (severity) {
  3853. case LOG_NOTICE:
  3854. sev = "NOTICE";
  3855. break;
  3856. case LOG_WARN:
  3857. sev = "WARN";
  3858. break;
  3859. case LOG_ERR:
  3860. sev = "ERR";
  3861. break;
  3862. default:
  3863. log_warn(LD_BUG, "Unrecognized status severity %d", severity);
  3864. return -1;
  3865. }
  3866. if (tor_snprintf(format_buf, sizeof(format_buf), "650 %s %s",
  3867. status, sev)<0) {
  3868. log_warn(LD_BUG, "Format string too long.");
  3869. return -1;
  3870. }
  3871. tor_vasprintf(&user_buf, format, args);
  3872. send_control_event(type, ALL_FORMATS, "%s %s\r\n", format_buf, user_buf);
  3873. tor_free(user_buf);
  3874. return 0;
  3875. }
  3876. /** Format and send an EVENT_STATUS_GENERAL event whose main text is obtained
  3877. * by formatting the arguments using the printf-style <b>format</b>. */
  3878. int
  3879. control_event_general_status(int severity, const char *format, ...)
  3880. {
  3881. va_list ap;
  3882. int r;
  3883. if (!EVENT_IS_INTERESTING(EVENT_STATUS_GENERAL))
  3884. return 0;
  3885. va_start(ap, format);
  3886. r = control_event_status(EVENT_STATUS_GENERAL, severity, format, ap);
  3887. va_end(ap);
  3888. return r;
  3889. }
  3890. /** Format and send an EVENT_STATUS_CLIENT event whose main text is obtained
  3891. * by formatting the arguments using the printf-style <b>format</b>. */
  3892. int
  3893. control_event_client_status(int severity, const char *format, ...)
  3894. {
  3895. va_list ap;
  3896. int r;
  3897. if (!EVENT_IS_INTERESTING(EVENT_STATUS_CLIENT))
  3898. return 0;
  3899. va_start(ap, format);
  3900. r = control_event_status(EVENT_STATUS_CLIENT, severity, format, ap);
  3901. va_end(ap);
  3902. return r;
  3903. }
  3904. /** Format and send an EVENT_STATUS_SERVER event whose main text is obtained
  3905. * by formatting the arguments using the printf-style <b>format</b>. */
  3906. int
  3907. control_event_server_status(int severity, const char *format, ...)
  3908. {
  3909. va_list ap;
  3910. int r;
  3911. if (!EVENT_IS_INTERESTING(EVENT_STATUS_SERVER))
  3912. return 0;
  3913. va_start(ap, format);
  3914. r = control_event_status(EVENT_STATUS_SERVER, severity, format, ap);
  3915. va_end(ap);
  3916. return r;
  3917. }
  3918. /** Called when the status of an entry guard with the given <b>nickname</b>
  3919. * and identity <b>digest</b> has changed to <b>status</b>: tells any
  3920. * controllers that care. */
  3921. int
  3922. control_event_guard(const char *nickname, const char *digest,
  3923. const char *status)
  3924. {
  3925. char hbuf[HEX_DIGEST_LEN+1];
  3926. base16_encode(hbuf, sizeof(hbuf), digest, DIGEST_LEN);
  3927. if (!EVENT_IS_INTERESTING(EVENT_GUARD))
  3928. return 0;
  3929. {
  3930. char buf[MAX_VERBOSE_NICKNAME_LEN+1];
  3931. const node_t *node = node_get_by_id(digest);
  3932. if (node) {
  3933. node_get_verbose_nickname(node, buf);
  3934. } else {
  3935. tor_snprintf(buf, sizeof(buf), "$%s~%s", hbuf, nickname);
  3936. }
  3937. send_control_event(EVENT_GUARD, ALL_FORMATS,
  3938. "650 GUARD ENTRY %s %s\r\n", buf, status);
  3939. }
  3940. return 0;
  3941. }
  3942. /** Called when a configuration option changes. This is generally triggered
  3943. * by SETCONF requests and RELOAD/SIGHUP signals. The <b>elements</b> is
  3944. * a smartlist_t containing (key, value, ...) pairs in sequence.
  3945. * <b>value</b> can be NULL. */
  3946. int
  3947. control_event_conf_changed(smartlist_t *elements)
  3948. {
  3949. int i;
  3950. char *result;
  3951. smartlist_t *lines;
  3952. if (!EVENT_IS_INTERESTING(EVENT_CONF_CHANGED) ||
  3953. smartlist_len(elements) == 0) {
  3954. return 0;
  3955. }
  3956. lines = smartlist_new();
  3957. for (i = 0; i < smartlist_len(elements); i += 2) {
  3958. char *k = smartlist_get(elements, i);
  3959. char *v = smartlist_get(elements, i+1);
  3960. if (v == NULL) {
  3961. smartlist_add_asprintf(lines, "650-%s", k);
  3962. } else {
  3963. smartlist_add_asprintf(lines, "650-%s=%s", k, v);
  3964. }
  3965. }
  3966. result = smartlist_join_strings(lines, "\r\n", 0, NULL);
  3967. send_control_event(EVENT_CONF_CHANGED, 0,
  3968. "650-CONF_CHANGED\r\n%s\r\n650 OK\r\n", result);
  3969. tor_free(result);
  3970. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  3971. smartlist_free(lines);
  3972. return 0;
  3973. }
  3974. /** Helper: Return a newly allocated string containing a path to the
  3975. * file where we store our authentication cookie. */
  3976. static char *
  3977. get_cookie_file(void)
  3978. {
  3979. const or_options_t *options = get_options();
  3980. if (options->CookieAuthFile && strlen(options->CookieAuthFile)) {
  3981. return tor_strdup(options->CookieAuthFile);
  3982. } else {
  3983. return get_datadir_fname("control_auth_cookie");
  3984. }
  3985. }
  3986. /** Choose a random authentication cookie and write it to disk.
  3987. * Anybody who can read the cookie from disk will be considered
  3988. * authorized to use the control connection. Return -1 if we can't
  3989. * write the file, or 0 on success. */
  3990. int
  3991. init_cookie_authentication(int enabled)
  3992. {
  3993. char *fname;
  3994. if (!enabled) {
  3995. authentication_cookie_is_set = 0;
  3996. return 0;
  3997. }
  3998. /* We don't want to generate a new cookie every time we call
  3999. * options_act(). One should be enough. */
  4000. if (authentication_cookie_is_set)
  4001. return 0; /* all set */
  4002. fname = get_cookie_file();
  4003. crypto_rand(authentication_cookie, AUTHENTICATION_COOKIE_LEN);
  4004. authentication_cookie_is_set = 1;
  4005. if (write_bytes_to_file(fname, authentication_cookie,
  4006. AUTHENTICATION_COOKIE_LEN, 1)) {
  4007. log_warn(LD_FS,"Error writing authentication cookie to %s.",
  4008. escaped(fname));
  4009. tor_free(fname);
  4010. return -1;
  4011. }
  4012. #ifndef _WIN32
  4013. if (get_options()->CookieAuthFileGroupReadable) {
  4014. if (chmod(fname, 0640)) {
  4015. log_warn(LD_FS,"Unable to make %s group-readable.", escaped(fname));
  4016. }
  4017. }
  4018. #endif
  4019. tor_free(fname);
  4020. return 0;
  4021. }
  4022. /** A copy of the process specifier of Tor's owning controller, or
  4023. * NULL if this Tor instance is not currently owned by a process. */
  4024. static char *owning_controller_process_spec = NULL;
  4025. /** A process-termination monitor for Tor's owning controller, or NULL
  4026. * if this Tor instance is not currently owned by a process. */
  4027. static tor_process_monitor_t *owning_controller_process_monitor = NULL;
  4028. /** Process-termination monitor callback for Tor's owning controller
  4029. * process. */
  4030. static void
  4031. owning_controller_procmon_cb(void *unused)
  4032. {
  4033. (void)unused;
  4034. lost_owning_controller("process", "vanished");
  4035. }
  4036. /** Set <b>process_spec</b> as Tor's owning controller process.
  4037. * Exit on failure. */
  4038. void
  4039. monitor_owning_controller_process(const char *process_spec)
  4040. {
  4041. const char *msg;
  4042. tor_assert((owning_controller_process_spec == NULL) ==
  4043. (owning_controller_process_monitor == NULL));
  4044. if (owning_controller_process_spec != NULL) {
  4045. if ((process_spec != NULL) && !strcmp(process_spec,
  4046. owning_controller_process_spec)) {
  4047. /* Same process -- return now, instead of disposing of and
  4048. * recreating the process-termination monitor. */
  4049. return;
  4050. }
  4051. /* We are currently owned by a process, and we should no longer be
  4052. * owned by it. Free the process-termination monitor. */
  4053. tor_process_monitor_free(owning_controller_process_monitor);
  4054. owning_controller_process_monitor = NULL;
  4055. tor_free(owning_controller_process_spec);
  4056. owning_controller_process_spec = NULL;
  4057. }
  4058. tor_assert((owning_controller_process_spec == NULL) &&
  4059. (owning_controller_process_monitor == NULL));
  4060. if (process_spec == NULL)
  4061. return;
  4062. owning_controller_process_spec = tor_strdup(process_spec);
  4063. owning_controller_process_monitor =
  4064. tor_process_monitor_new(tor_libevent_get_base(),
  4065. owning_controller_process_spec,
  4066. LD_CONTROL,
  4067. owning_controller_procmon_cb, NULL,
  4068. &msg);
  4069. if (owning_controller_process_monitor == NULL) {
  4070. log_err(LD_BUG, "Couldn't create process-termination monitor for "
  4071. "owning controller: %s. Exiting.",
  4072. msg);
  4073. owning_controller_process_spec = NULL;
  4074. tor_cleanup();
  4075. exit(0);
  4076. }
  4077. }
  4078. /** Convert the name of a bootstrapping phase <b>s</b> into strings
  4079. * <b>tag</b> and <b>summary</b> suitable for display by the controller. */
  4080. static int
  4081. bootstrap_status_to_string(bootstrap_status_t s, const char **tag,
  4082. const char **summary)
  4083. {
  4084. switch (s) {
  4085. case BOOTSTRAP_STATUS_UNDEF:
  4086. *tag = "undef";
  4087. *summary = "Undefined";
  4088. break;
  4089. case BOOTSTRAP_STATUS_STARTING:
  4090. *tag = "starting";
  4091. *summary = "Starting";
  4092. break;
  4093. case BOOTSTRAP_STATUS_CONN_DIR:
  4094. *tag = "conn_dir";
  4095. *summary = "Connecting to directory server";
  4096. break;
  4097. case BOOTSTRAP_STATUS_HANDSHAKE:
  4098. *tag = "status_handshake";
  4099. *summary = "Finishing handshake";
  4100. break;
  4101. case BOOTSTRAP_STATUS_HANDSHAKE_DIR:
  4102. *tag = "handshake_dir";
  4103. *summary = "Finishing handshake with directory server";
  4104. break;
  4105. case BOOTSTRAP_STATUS_ONEHOP_CREATE:
  4106. *tag = "onehop_create";
  4107. *summary = "Establishing an encrypted directory connection";
  4108. break;
  4109. case BOOTSTRAP_STATUS_REQUESTING_STATUS:
  4110. *tag = "requesting_status";
  4111. *summary = "Asking for networkstatus consensus";
  4112. break;
  4113. case BOOTSTRAP_STATUS_LOADING_STATUS:
  4114. *tag = "loading_status";
  4115. *summary = "Loading networkstatus consensus";
  4116. break;
  4117. case BOOTSTRAP_STATUS_LOADING_KEYS:
  4118. *tag = "loading_keys";
  4119. *summary = "Loading authority key certs";
  4120. break;
  4121. case BOOTSTRAP_STATUS_REQUESTING_DESCRIPTORS:
  4122. *tag = "requesting_descriptors";
  4123. *summary = "Asking for relay descriptors";
  4124. break;
  4125. case BOOTSTRAP_STATUS_LOADING_DESCRIPTORS:
  4126. *tag = "loading_descriptors";
  4127. *summary = "Loading relay descriptors";
  4128. break;
  4129. case BOOTSTRAP_STATUS_CONN_OR:
  4130. *tag = "conn_or";
  4131. *summary = "Connecting to the Tor network";
  4132. break;
  4133. case BOOTSTRAP_STATUS_HANDSHAKE_OR:
  4134. *tag = "handshake_or";
  4135. *summary = "Finishing handshake with first hop";
  4136. break;
  4137. case BOOTSTRAP_STATUS_CIRCUIT_CREATE:
  4138. *tag = "circuit_create";
  4139. *summary = "Establishing a Tor circuit";
  4140. break;
  4141. case BOOTSTRAP_STATUS_DONE:
  4142. *tag = "done";
  4143. *summary = "Done";
  4144. break;
  4145. default:
  4146. // log_warn(LD_BUG, "Unrecognized bootstrap status code %d", s);
  4147. *tag = *summary = "unknown";
  4148. return -1;
  4149. }
  4150. return 0;
  4151. }
  4152. /** What percentage through the bootstrap process are we? We remember
  4153. * this so we can avoid sending redundant bootstrap status events, and
  4154. * so we can guess context for the bootstrap messages which are
  4155. * ambiguous. It starts at 'undef', but gets set to 'starting' while
  4156. * Tor initializes. */
  4157. static int bootstrap_percent = BOOTSTRAP_STATUS_UNDEF;
  4158. /** How many problems have we had getting to the next bootstrapping phase?
  4159. * These include failure to establish a connection to a Tor relay,
  4160. * failures to finish the TLS handshake, failures to validate the
  4161. * consensus document, etc. */
  4162. static int bootstrap_problems = 0;
  4163. /* We only tell the controller once we've hit a threshold of problems
  4164. * for the current phase. */
  4165. #define BOOTSTRAP_PROBLEM_THRESHOLD 10
  4166. /** Called when Tor has made progress at bootstrapping its directory
  4167. * information and initial circuits.
  4168. *
  4169. * <b>status</b> is the new status, that is, what task we will be doing
  4170. * next. <b>progress</b> is zero if we just started this task, else it
  4171. * represents progress on the task. */
  4172. void
  4173. control_event_bootstrap(bootstrap_status_t status, int progress)
  4174. {
  4175. const char *tag, *summary;
  4176. char buf[BOOTSTRAP_MSG_LEN];
  4177. if (bootstrap_percent == BOOTSTRAP_STATUS_DONE)
  4178. return; /* already bootstrapped; nothing to be done here. */
  4179. /* special case for handshaking status, since our TLS handshaking code
  4180. * can't distinguish what the connection is going to be for. */
  4181. if (status == BOOTSTRAP_STATUS_HANDSHAKE) {
  4182. if (bootstrap_percent < BOOTSTRAP_STATUS_CONN_OR) {
  4183. status = BOOTSTRAP_STATUS_HANDSHAKE_DIR;
  4184. } else {
  4185. status = BOOTSTRAP_STATUS_HANDSHAKE_OR;
  4186. }
  4187. }
  4188. if (status > bootstrap_percent ||
  4189. (progress && progress > bootstrap_percent)) {
  4190. bootstrap_status_to_string(status, &tag, &summary);
  4191. log(status ? LOG_NOTICE : LOG_INFO, LD_CONTROL,
  4192. "Bootstrapped %d%%: %s.", progress ? progress : status, summary);
  4193. tor_snprintf(buf, sizeof(buf),
  4194. "BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\"",
  4195. progress ? progress : status, tag, summary);
  4196. tor_snprintf(last_sent_bootstrap_message,
  4197. sizeof(last_sent_bootstrap_message),
  4198. "NOTICE %s", buf);
  4199. control_event_client_status(LOG_NOTICE, "%s", buf);
  4200. if (status > bootstrap_percent) {
  4201. bootstrap_percent = status; /* new milestone reached */
  4202. }
  4203. if (progress > bootstrap_percent) {
  4204. /* incremental progress within a milestone */
  4205. bootstrap_percent = progress;
  4206. bootstrap_problems = 0; /* Progress! Reset our problem counter. */
  4207. }
  4208. }
  4209. }
  4210. /** Called when Tor has failed to make bootstrapping progress in a way
  4211. * that indicates a problem. <b>warn</b> gives a hint as to why, and
  4212. * <b>reason</b> provides an "or_conn_end_reason" tag.
  4213. */
  4214. void
  4215. control_event_bootstrap_problem(const char *warn, int reason)
  4216. {
  4217. int status = bootstrap_percent;
  4218. const char *tag, *summary;
  4219. char buf[BOOTSTRAP_MSG_LEN];
  4220. const char *recommendation = "ignore";
  4221. int severity;
  4222. /* bootstrap_percent must not be in "undefined" state here. */
  4223. tor_assert(status >= 0);
  4224. if (bootstrap_percent == 100)
  4225. return; /* already bootstrapped; nothing to be done here. */
  4226. bootstrap_problems++;
  4227. if (bootstrap_problems >= BOOTSTRAP_PROBLEM_THRESHOLD)
  4228. recommendation = "warn";
  4229. if (reason == END_OR_CONN_REASON_NO_ROUTE)
  4230. recommendation = "warn";
  4231. if (get_options()->UseBridges &&
  4232. !any_bridge_descriptors_known() &&
  4233. !any_pending_bridge_descriptor_fetches())
  4234. recommendation = "warn";
  4235. while (status>=0 && bootstrap_status_to_string(status, &tag, &summary) < 0)
  4236. status--; /* find a recognized status string based on current progress */
  4237. status = bootstrap_percent; /* set status back to the actual number */
  4238. severity = !strcmp(recommendation, "warn") ? LOG_WARN : LOG_INFO;
  4239. log_fn(severity,
  4240. LD_CONTROL, "Problem bootstrapping. Stuck at %d%%: %s. (%s; %s; "
  4241. "count %d; recommendation %s)",
  4242. status, summary, warn,
  4243. orconn_end_reason_to_control_string(reason),
  4244. bootstrap_problems, recommendation);
  4245. connection_or_report_broken_states(severity, LD_HANDSHAKE);
  4246. tor_snprintf(buf, sizeof(buf),
  4247. "BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\" WARNING=\"%s\" REASON=%s "
  4248. "COUNT=%d RECOMMENDATION=%s",
  4249. bootstrap_percent, tag, summary, warn,
  4250. orconn_end_reason_to_control_string(reason), bootstrap_problems,
  4251. recommendation);
  4252. tor_snprintf(last_sent_bootstrap_message,
  4253. sizeof(last_sent_bootstrap_message),
  4254. "WARN %s", buf);
  4255. control_event_client_status(LOG_WARN, "%s", buf);
  4256. }
  4257. /** We just generated a new summary of which countries we've seen clients
  4258. * from recently. Send a copy to the controller in case it wants to
  4259. * display it for the user. */
  4260. void
  4261. control_event_clients_seen(const char *controller_str)
  4262. {
  4263. send_control_event(EVENT_CLIENTS_SEEN, 0,
  4264. "650 CLIENTS_SEEN %s\r\n", controller_str);
  4265. }