control.c 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704
  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. DOC("config/defaults",
  1948. "List of default values for configuration options. "
  1949. "See also config/names"),
  1950. ITEM("info/names", misc,
  1951. "List of GETINFO options, types, and documentation."),
  1952. ITEM("events/names", misc,
  1953. "Events that the controller can ask for with SETEVENTS."),
  1954. ITEM("features/names", misc, "What arguments can USEFEATURE take?"),
  1955. PREFIX("desc/id/", dir, "Router descriptors by ID."),
  1956. PREFIX("desc/name/", dir, "Router descriptors by nickname."),
  1957. ITEM("desc/all-recent", dir,
  1958. "All non-expired, non-superseded router descriptors."),
  1959. ITEM("desc/all-recent-extrainfo-hack", dir, NULL), /* Hack. */
  1960. PREFIX("md/id/", dir, "Microdescriptors by ID"),
  1961. PREFIX("md/name/", dir, "Microdescriptors by name"),
  1962. PREFIX("extra-info/digest/", dir, "Extra-info documents by digest."),
  1963. PREFIX("net/listeners/", listeners, "Bound addresses by type"),
  1964. ITEM("ns/all", networkstatus,
  1965. "Brief summary of router status (v2 directory format)"),
  1966. PREFIX("ns/id/", networkstatus,
  1967. "Brief summary of router status by ID (v2 directory format)."),
  1968. PREFIX("ns/name/", networkstatus,
  1969. "Brief summary of router status by nickname (v2 directory format)."),
  1970. PREFIX("ns/purpose/", networkstatus,
  1971. "Brief summary of router status by purpose (v2 directory format)."),
  1972. ITEM("network-status", dir,
  1973. "Brief summary of router status (v1 directory format)"),
  1974. ITEM("circuit-status", events, "List of current circuits originating here."),
  1975. ITEM("stream-status", events,"List of current streams."),
  1976. ITEM("orconn-status", events, "A list of current OR connections."),
  1977. ITEM("dormant", misc,
  1978. "Is Tor dormant (not building circuits because it's idle)?"),
  1979. PREFIX("address-mappings/", events, NULL),
  1980. DOC("address-mappings/all", "Current address mappings."),
  1981. DOC("address-mappings/cache", "Current cached DNS replies."),
  1982. DOC("address-mappings/config",
  1983. "Current address mappings from configuration."),
  1984. DOC("address-mappings/control", "Current address mappings from controller."),
  1985. PREFIX("status/", events, NULL),
  1986. DOC("status/circuit-established",
  1987. "Whether we think client functionality is working."),
  1988. DOC("status/enough-dir-info",
  1989. "Whether we have enough up-to-date directory information to build "
  1990. "circuits."),
  1991. DOC("status/bootstrap-phase",
  1992. "The last bootstrap phase status event that Tor sent."),
  1993. DOC("status/clients-seen",
  1994. "Breakdown of client countries seen by a bridge."),
  1995. DOC("status/version/recommended", "List of currently recommended versions."),
  1996. DOC("status/version/current", "Status of the current version."),
  1997. DOC("status/version/num-versioning", "Number of versioning authorities."),
  1998. DOC("status/version/num-concurring",
  1999. "Number of versioning authorities agreeing on the status of the "
  2000. "current version"),
  2001. ITEM("address", misc, "IP address of this Tor host, if we can guess it."),
  2002. ITEM("traffic/read", misc,"Bytes read since the process was started."),
  2003. ITEM("traffic/written", misc,
  2004. "Bytes written since the process was started."),
  2005. ITEM("process/pid", misc, "Process id belonging to the main tor process."),
  2006. ITEM("process/uid", misc, "User id running the tor process."),
  2007. ITEM("process/user", misc,
  2008. "Username under which the tor process is running."),
  2009. ITEM("process/descriptor-limit", misc, "File descriptor limit."),
  2010. ITEM("dir-usage", misc, "Breakdown of bytes transferred over DirPort."),
  2011. PREFIX("desc-annotations/id/", dir, "Router annotations by hexdigest."),
  2012. PREFIX("dir/server/", dir,"Router descriptors as retrieved from a DirPort."),
  2013. PREFIX("dir/status/", dir,
  2014. "v2 networkstatus docs as retrieved from a DirPort."),
  2015. ITEM("dir/status-vote/current/consensus", dir,
  2016. "v3 Networkstatus consensus as retrieved from a DirPort."),
  2017. ITEM("exit-policy/default", policies,
  2018. "The default value appended to the configured exit policy."),
  2019. PREFIX("ip-to-country/", geoip, "Perform a GEOIP lookup"),
  2020. { NULL, NULL, NULL, 0 }
  2021. };
  2022. /** Allocate and return a list of recognized GETINFO options. */
  2023. static char *
  2024. list_getinfo_options(void)
  2025. {
  2026. int i;
  2027. smartlist_t *lines = smartlist_new();
  2028. char *ans;
  2029. for (i = 0; getinfo_items[i].varname; ++i) {
  2030. if (!getinfo_items[i].desc)
  2031. continue;
  2032. smartlist_add_asprintf(lines, "%s%s -- %s\n",
  2033. getinfo_items[i].varname,
  2034. getinfo_items[i].is_prefix ? "*" : "",
  2035. getinfo_items[i].desc);
  2036. }
  2037. smartlist_sort_strings(lines);
  2038. ans = smartlist_join_strings(lines, "", 0, NULL);
  2039. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  2040. smartlist_free(lines);
  2041. return ans;
  2042. }
  2043. /** Lookup the 'getinfo' entry <b>question</b>, and return
  2044. * the answer in <b>*answer</b> (or NULL if key not recognized).
  2045. * Return 0 if success or unrecognized, or -1 if recognized but
  2046. * internal error. */
  2047. static int
  2048. handle_getinfo_helper(control_connection_t *control_conn,
  2049. const char *question, char **answer,
  2050. const char **err_out)
  2051. {
  2052. int i;
  2053. *answer = NULL; /* unrecognized key by default */
  2054. for (i = 0; getinfo_items[i].varname; ++i) {
  2055. int match;
  2056. if (getinfo_items[i].is_prefix)
  2057. match = !strcmpstart(question, getinfo_items[i].varname);
  2058. else
  2059. match = !strcmp(question, getinfo_items[i].varname);
  2060. if (match) {
  2061. tor_assert(getinfo_items[i].fn);
  2062. return getinfo_items[i].fn(control_conn, question, answer, err_out);
  2063. }
  2064. }
  2065. return 0; /* unrecognized */
  2066. }
  2067. /** Called when we receive a GETINFO command. Try to fetch all requested
  2068. * information, and reply with information or error message. */
  2069. static int
  2070. handle_control_getinfo(control_connection_t *conn, uint32_t len,
  2071. const char *body)
  2072. {
  2073. smartlist_t *questions = smartlist_new();
  2074. smartlist_t *answers = smartlist_new();
  2075. smartlist_t *unrecognized = smartlist_new();
  2076. char *msg = NULL, *ans = NULL;
  2077. int i;
  2078. (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */
  2079. smartlist_split_string(questions, body, " ",
  2080. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2081. SMARTLIST_FOREACH_BEGIN(questions, const char *, q) {
  2082. const char *errmsg = NULL;
  2083. if (handle_getinfo_helper(conn, q, &ans, &errmsg) < 0) {
  2084. if (!errmsg)
  2085. errmsg = "Internal error";
  2086. connection_printf_to_buf(conn, "551 %s\r\n", errmsg);
  2087. goto done;
  2088. }
  2089. if (!ans) {
  2090. smartlist_add(unrecognized, (char*)q);
  2091. } else {
  2092. smartlist_add(answers, tor_strdup(q));
  2093. smartlist_add(answers, ans);
  2094. }
  2095. } SMARTLIST_FOREACH_END(q);
  2096. if (smartlist_len(unrecognized)) {
  2097. for (i=0; i < smartlist_len(unrecognized)-1; ++i)
  2098. connection_printf_to_buf(conn,
  2099. "552-Unrecognized key \"%s\"\r\n",
  2100. (char*)smartlist_get(unrecognized, i));
  2101. connection_printf_to_buf(conn,
  2102. "552 Unrecognized key \"%s\"\r\n",
  2103. (char*)smartlist_get(unrecognized, i));
  2104. goto done;
  2105. }
  2106. for (i = 0; i < smartlist_len(answers); i += 2) {
  2107. char *k = smartlist_get(answers, i);
  2108. char *v = smartlist_get(answers, i+1);
  2109. if (!strchr(v, '\n') && !strchr(v, '\r')) {
  2110. connection_printf_to_buf(conn, "250-%s=", k);
  2111. connection_write_str_to_buf(v, conn);
  2112. connection_write_str_to_buf("\r\n", conn);
  2113. } else {
  2114. char *esc = NULL;
  2115. size_t esc_len;
  2116. esc_len = write_escaped_data(v, strlen(v), &esc);
  2117. connection_printf_to_buf(conn, "250+%s=\r\n", k);
  2118. connection_write_to_buf(esc, esc_len, TO_CONN(conn));
  2119. tor_free(esc);
  2120. }
  2121. }
  2122. connection_write_str_to_buf("250 OK\r\n", conn);
  2123. done:
  2124. SMARTLIST_FOREACH(answers, char *, cp, tor_free(cp));
  2125. smartlist_free(answers);
  2126. SMARTLIST_FOREACH(questions, char *, cp, tor_free(cp));
  2127. smartlist_free(questions);
  2128. smartlist_free(unrecognized);
  2129. tor_free(msg);
  2130. return 0;
  2131. }
  2132. /** Given a string, convert it to a circuit purpose. */
  2133. static uint8_t
  2134. circuit_purpose_from_string(const char *string)
  2135. {
  2136. if (!strcasecmpstart(string, "purpose="))
  2137. string += strlen("purpose=");
  2138. if (!strcasecmp(string, "general"))
  2139. return CIRCUIT_PURPOSE_C_GENERAL;
  2140. else if (!strcasecmp(string, "controller"))
  2141. return CIRCUIT_PURPOSE_CONTROLLER;
  2142. else
  2143. return CIRCUIT_PURPOSE_UNKNOWN;
  2144. }
  2145. /** Return a newly allocated smartlist containing the arguments to the command
  2146. * waiting in <b>body</b>. If there are fewer than <b>min_args</b> arguments,
  2147. * or if <b>max_args</b> is nonnegative and there are more than
  2148. * <b>max_args</b> arguments, send a 512 error to the controller, using
  2149. * <b>command</b> as the command name in the error message. */
  2150. static smartlist_t *
  2151. getargs_helper(const char *command, control_connection_t *conn,
  2152. const char *body, int min_args, int max_args)
  2153. {
  2154. smartlist_t *args = smartlist_new();
  2155. smartlist_split_string(args, body, " ",
  2156. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2157. if (smartlist_len(args) < min_args) {
  2158. connection_printf_to_buf(conn, "512 Missing argument to %s\r\n",command);
  2159. goto err;
  2160. } else if (max_args >= 0 && smartlist_len(args) > max_args) {
  2161. connection_printf_to_buf(conn, "512 Too many arguments to %s\r\n",command);
  2162. goto err;
  2163. }
  2164. return args;
  2165. err:
  2166. SMARTLIST_FOREACH(args, char *, s, tor_free(s));
  2167. smartlist_free(args);
  2168. return NULL;
  2169. }
  2170. /** Helper. Return the first element of <b>sl</b> at index <b>start_at</b> or
  2171. * higher that starts with <b>prefix</b>, case-insensitive. Return NULL if no
  2172. * such element exists. */
  2173. static const char *
  2174. find_element_starting_with(smartlist_t *sl, int start_at, const char *prefix)
  2175. {
  2176. int i;
  2177. for (i = start_at; i < smartlist_len(sl); ++i) {
  2178. const char *elt = smartlist_get(sl, i);
  2179. if (!strcasecmpstart(elt, prefix))
  2180. return elt;
  2181. }
  2182. return NULL;
  2183. }
  2184. /** Helper. Return true iff s is an argument that we should treat as a
  2185. * key-value pair. */
  2186. static int
  2187. is_keyval_pair(const char *s)
  2188. {
  2189. /* An argument is a key-value pair if it has an =, and it isn't of the form
  2190. * $fingeprint=name */
  2191. return strchr(s, '=') && s[0] != '$';
  2192. }
  2193. /** Called when we get an EXTENDCIRCUIT message. Try to extend the listed
  2194. * circuit, and report success or failure. */
  2195. static int
  2196. handle_control_extendcircuit(control_connection_t *conn, uint32_t len,
  2197. const char *body)
  2198. {
  2199. smartlist_t *router_nicknames=NULL, *nodes=NULL;
  2200. origin_circuit_t *circ = NULL;
  2201. int zero_circ;
  2202. uint8_t intended_purpose = CIRCUIT_PURPOSE_C_GENERAL;
  2203. smartlist_t *args;
  2204. (void) len;
  2205. router_nicknames = smartlist_new();
  2206. args = getargs_helper("EXTENDCIRCUIT", conn, body, 1, -1);
  2207. if (!args)
  2208. goto done;
  2209. zero_circ = !strcmp("0", (char*)smartlist_get(args,0));
  2210. if (zero_circ) {
  2211. const char *purp = find_element_starting_with(args, 1, "PURPOSE=");
  2212. if (purp) {
  2213. intended_purpose = circuit_purpose_from_string(purp);
  2214. if (intended_purpose == CIRCUIT_PURPOSE_UNKNOWN) {
  2215. connection_printf_to_buf(conn, "552 Unknown purpose \"%s\"\r\n", purp);
  2216. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2217. smartlist_free(args);
  2218. goto done;
  2219. }
  2220. }
  2221. if ((smartlist_len(args) == 1) ||
  2222. (smartlist_len(args) >= 2 && is_keyval_pair(smartlist_get(args, 1)))) {
  2223. // "EXTENDCIRCUIT 0" || EXTENDCIRCUIT 0 foo=bar"
  2224. circ = circuit_launch(intended_purpose, CIRCLAUNCH_NEED_CAPACITY);
  2225. if (!circ) {
  2226. connection_write_str_to_buf("551 Couldn't start circuit\r\n", conn);
  2227. } else {
  2228. connection_printf_to_buf(conn, "250 EXTENDED %lu\r\n",
  2229. (unsigned long)circ->global_identifier);
  2230. }
  2231. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2232. smartlist_free(args);
  2233. goto done;
  2234. }
  2235. // "EXTENDCIRCUIT 0 router1,router2" ||
  2236. // "EXTENDCIRCUIT 0 router1,router2 PURPOSE=foo"
  2237. }
  2238. if (!zero_circ && !(circ = get_circ(smartlist_get(args,0)))) {
  2239. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2240. (char*)smartlist_get(args, 0));
  2241. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2242. smartlist_free(args);
  2243. goto done;
  2244. }
  2245. smartlist_split_string(router_nicknames, smartlist_get(args,1), ",", 0, 0);
  2246. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2247. smartlist_free(args);
  2248. nodes = smartlist_new();
  2249. SMARTLIST_FOREACH(router_nicknames, const char *, n,
  2250. {
  2251. const node_t *node = node_get_by_nickname(n, 1);
  2252. if (!node) {
  2253. connection_printf_to_buf(conn, "552 No such router \"%s\"\r\n", n);
  2254. goto done;
  2255. }
  2256. if (!node_has_descriptor(node)) {
  2257. connection_printf_to_buf(conn, "552 descriptor for \"%s\"\r\n", n);
  2258. goto done;
  2259. }
  2260. smartlist_add(nodes, (void*)node);
  2261. });
  2262. if (!smartlist_len(nodes)) {
  2263. connection_write_str_to_buf("512 No router names provided\r\n", conn);
  2264. goto done;
  2265. }
  2266. if (zero_circ) {
  2267. /* start a new circuit */
  2268. circ = origin_circuit_init(intended_purpose, 0);
  2269. }
  2270. /* now circ refers to something that is ready to be extended */
  2271. SMARTLIST_FOREACH(nodes, const node_t *, node,
  2272. {
  2273. extend_info_t *info = extend_info_from_node(node, 0);
  2274. tor_assert(info); /* True, since node_has_descriptor(node) == true */
  2275. circuit_append_new_exit(circ, info);
  2276. extend_info_free(info);
  2277. });
  2278. /* now that we've populated the cpath, start extending */
  2279. if (zero_circ) {
  2280. int err_reason = 0;
  2281. if ((err_reason = circuit_handle_first_hop(circ)) < 0) {
  2282. circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
  2283. connection_write_str_to_buf("551 Couldn't start circuit\r\n", conn);
  2284. goto done;
  2285. }
  2286. } else {
  2287. if (circ->_base.state == CIRCUIT_STATE_OPEN) {
  2288. int err_reason = 0;
  2289. circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_BUILDING);
  2290. if ((err_reason = circuit_send_next_onion_skin(circ)) < 0) {
  2291. log_info(LD_CONTROL,
  2292. "send_next_onion_skin failed; circuit marked for closing.");
  2293. circuit_mark_for_close(TO_CIRCUIT(circ), -err_reason);
  2294. connection_write_str_to_buf("551 Couldn't send onion skin\r\n", conn);
  2295. goto done;
  2296. }
  2297. }
  2298. }
  2299. connection_printf_to_buf(conn, "250 EXTENDED %lu\r\n",
  2300. (unsigned long)circ->global_identifier);
  2301. if (zero_circ) /* send a 'launched' event, for completeness */
  2302. control_event_circuit_status(circ, CIRC_EVENT_LAUNCHED, 0);
  2303. done:
  2304. SMARTLIST_FOREACH(router_nicknames, char *, n, tor_free(n));
  2305. smartlist_free(router_nicknames);
  2306. smartlist_free(nodes);
  2307. return 0;
  2308. }
  2309. /** Called when we get a SETCIRCUITPURPOSE message. If we can find the
  2310. * circuit and it's a valid purpose, change it. */
  2311. static int
  2312. handle_control_setcircuitpurpose(control_connection_t *conn,
  2313. uint32_t len, const char *body)
  2314. {
  2315. origin_circuit_t *circ = NULL;
  2316. uint8_t new_purpose;
  2317. smartlist_t *args;
  2318. (void) len; /* body is NUL-terminated, so it's safe to ignore the length. */
  2319. args = getargs_helper("SETCIRCUITPURPOSE", conn, body, 2, -1);
  2320. if (!args)
  2321. goto done;
  2322. if (!(circ = get_circ(smartlist_get(args,0)))) {
  2323. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2324. (char*)smartlist_get(args, 0));
  2325. goto done;
  2326. }
  2327. {
  2328. const char *purp = find_element_starting_with(args,1,"PURPOSE=");
  2329. if (!purp) {
  2330. connection_write_str_to_buf("552 No purpose given\r\n", conn);
  2331. goto done;
  2332. }
  2333. new_purpose = circuit_purpose_from_string(purp);
  2334. if (new_purpose == CIRCUIT_PURPOSE_UNKNOWN) {
  2335. connection_printf_to_buf(conn, "552 Unknown purpose \"%s\"\r\n", purp);
  2336. goto done;
  2337. }
  2338. }
  2339. circuit_change_purpose(TO_CIRCUIT(circ), new_purpose);
  2340. connection_write_str_to_buf("250 OK\r\n", conn);
  2341. done:
  2342. if (args) {
  2343. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2344. smartlist_free(args);
  2345. }
  2346. return 0;
  2347. }
  2348. /** Called when we get an ATTACHSTREAM message. Try to attach the requested
  2349. * stream, and report success or failure. */
  2350. static int
  2351. handle_control_attachstream(control_connection_t *conn, uint32_t len,
  2352. const char *body)
  2353. {
  2354. entry_connection_t *ap_conn = NULL;
  2355. origin_circuit_t *circ = NULL;
  2356. int zero_circ;
  2357. smartlist_t *args;
  2358. crypt_path_t *cpath=NULL;
  2359. int hop=0, hop_line_ok=1;
  2360. (void) len;
  2361. args = getargs_helper("ATTACHSTREAM", conn, body, 2, -1);
  2362. if (!args)
  2363. return 0;
  2364. zero_circ = !strcmp("0", (char*)smartlist_get(args,1));
  2365. if (!(ap_conn = get_stream(smartlist_get(args, 0)))) {
  2366. connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n",
  2367. (char*)smartlist_get(args, 0));
  2368. } else if (!zero_circ && !(circ = get_circ(smartlist_get(args, 1)))) {
  2369. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2370. (char*)smartlist_get(args, 1));
  2371. } else if (circ) {
  2372. const char *hopstring = find_element_starting_with(args,2,"HOP=");
  2373. if (hopstring) {
  2374. hopstring += strlen("HOP=");
  2375. hop = (int) tor_parse_ulong(hopstring, 10, 0, INT_MAX,
  2376. &hop_line_ok, NULL);
  2377. if (!hop_line_ok) { /* broken hop line */
  2378. connection_printf_to_buf(conn, "552 Bad value hop=%s\r\n", hopstring);
  2379. }
  2380. }
  2381. }
  2382. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2383. smartlist_free(args);
  2384. if (!ap_conn || (!zero_circ && !circ) || !hop_line_ok)
  2385. return 0;
  2386. if (ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_CONTROLLER_WAIT &&
  2387. ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_CONNECT_WAIT &&
  2388. ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_RESOLVE_WAIT) {
  2389. connection_write_str_to_buf(
  2390. "555 Connection is not managed by controller.\r\n",
  2391. conn);
  2392. return 0;
  2393. }
  2394. /* Do we need to detach it first? */
  2395. if (ENTRY_TO_CONN(ap_conn)->state != AP_CONN_STATE_CONTROLLER_WAIT) {
  2396. edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn);
  2397. circuit_t *tmpcirc = circuit_get_by_edge_conn(edge_conn);
  2398. connection_edge_end(edge_conn, END_STREAM_REASON_TIMEOUT);
  2399. /* Un-mark it as ending, since we're going to reuse it. */
  2400. edge_conn->edge_has_sent_end = 0;
  2401. edge_conn->end_reason = 0;
  2402. if (tmpcirc)
  2403. circuit_detach_stream(tmpcirc, edge_conn);
  2404. TO_CONN(edge_conn)->state = AP_CONN_STATE_CONTROLLER_WAIT;
  2405. }
  2406. if (circ && (circ->_base.state != CIRCUIT_STATE_OPEN)) {
  2407. connection_write_str_to_buf(
  2408. "551 Can't attach stream to non-open origin circuit\r\n",
  2409. conn);
  2410. return 0;
  2411. }
  2412. /* Is this a single hop circuit? */
  2413. if (circ && (circuit_get_cpath_len(circ)<2 || hop==1)) {
  2414. const node_t *node = NULL;
  2415. char *exit_digest;
  2416. if (circ->build_state &&
  2417. circ->build_state->chosen_exit &&
  2418. !tor_digest_is_zero(circ->build_state->chosen_exit->identity_digest)) {
  2419. exit_digest = circ->build_state->chosen_exit->identity_digest;
  2420. node = node_get_by_id(exit_digest);
  2421. }
  2422. /* Do both the client and relay allow one-hop exit circuits? */
  2423. if (!node ||
  2424. !node_allows_single_hop_exits(node) ||
  2425. !get_options()->AllowSingleHopCircuits) {
  2426. connection_write_str_to_buf(
  2427. "551 Can't attach stream to this one-hop circuit.\r\n", conn);
  2428. return 0;
  2429. }
  2430. ap_conn->chosen_exit_name = tor_strdup(hex_str(exit_digest, DIGEST_LEN));
  2431. }
  2432. if (circ && hop>0) {
  2433. /* find this hop in the circuit, and set cpath */
  2434. cpath = circuit_get_cpath_hop(circ, hop);
  2435. if (!cpath) {
  2436. connection_printf_to_buf(conn,
  2437. "551 Circuit doesn't have %d hops.\r\n", hop);
  2438. return 0;
  2439. }
  2440. }
  2441. if (connection_ap_handshake_rewrite_and_attach(ap_conn, circ, cpath) < 0) {
  2442. connection_write_str_to_buf("551 Unable to attach stream\r\n", conn);
  2443. return 0;
  2444. }
  2445. send_control_done(conn);
  2446. return 0;
  2447. }
  2448. /** Called when we get a POSTDESCRIPTOR message. Try to learn the provided
  2449. * descriptor, and report success or failure. */
  2450. static int
  2451. handle_control_postdescriptor(control_connection_t *conn, uint32_t len,
  2452. const char *body)
  2453. {
  2454. char *desc;
  2455. const char *msg=NULL;
  2456. uint8_t purpose = ROUTER_PURPOSE_GENERAL;
  2457. int cache = 0; /* eventually, we may switch this to 1 */
  2458. char *cp = memchr(body, '\n', len);
  2459. smartlist_t *args = smartlist_new();
  2460. tor_assert(cp);
  2461. *cp++ = '\0';
  2462. smartlist_split_string(args, body, " ",
  2463. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2464. SMARTLIST_FOREACH(args, char *, option,
  2465. {
  2466. if (!strcasecmpstart(option, "purpose=")) {
  2467. option += strlen("purpose=");
  2468. purpose = router_purpose_from_string(option);
  2469. if (purpose == ROUTER_PURPOSE_UNKNOWN) {
  2470. connection_printf_to_buf(conn, "552 Unknown purpose \"%s\"\r\n",
  2471. option);
  2472. goto done;
  2473. }
  2474. } else if (!strcasecmpstart(option, "cache=")) {
  2475. option += strlen("cache=");
  2476. if (!strcasecmp(option, "no"))
  2477. cache = 0;
  2478. else if (!strcasecmp(option, "yes"))
  2479. cache = 1;
  2480. else {
  2481. connection_printf_to_buf(conn, "552 Unknown cache request \"%s\"\r\n",
  2482. option);
  2483. goto done;
  2484. }
  2485. } else { /* unrecognized argument? */
  2486. connection_printf_to_buf(conn,
  2487. "512 Unexpected argument \"%s\" to postdescriptor\r\n", option);
  2488. goto done;
  2489. }
  2490. });
  2491. read_escaped_data(cp, len-(cp-body), &desc);
  2492. switch (router_load_single_router(desc, purpose, cache, &msg)) {
  2493. case -1:
  2494. if (!msg) msg = "Could not parse descriptor";
  2495. connection_printf_to_buf(conn, "554 %s\r\n", msg);
  2496. break;
  2497. case 0:
  2498. if (!msg) msg = "Descriptor not added";
  2499. connection_printf_to_buf(conn, "251 %s\r\n",msg);
  2500. break;
  2501. case 1:
  2502. send_control_done(conn);
  2503. break;
  2504. }
  2505. tor_free(desc);
  2506. done:
  2507. SMARTLIST_FOREACH(args, char *, arg, tor_free(arg));
  2508. smartlist_free(args);
  2509. return 0;
  2510. }
  2511. /** Called when we receive a REDIRECTSTERAM command. Try to change the target
  2512. * address of the named AP stream, and report success or failure. */
  2513. static int
  2514. handle_control_redirectstream(control_connection_t *conn, uint32_t len,
  2515. const char *body)
  2516. {
  2517. entry_connection_t *ap_conn = NULL;
  2518. char *new_addr = NULL;
  2519. uint16_t new_port = 0;
  2520. smartlist_t *args;
  2521. (void) len;
  2522. args = getargs_helper("REDIRECTSTREAM", conn, body, 2, -1);
  2523. if (!args)
  2524. return 0;
  2525. if (!(ap_conn = get_stream(smartlist_get(args, 0)))
  2526. || !ap_conn->socks_request) {
  2527. connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n",
  2528. (char*)smartlist_get(args, 0));
  2529. } else {
  2530. int ok = 1;
  2531. if (smartlist_len(args) > 2) { /* they included a port too */
  2532. new_port = (uint16_t) tor_parse_ulong(smartlist_get(args, 2),
  2533. 10, 1, 65535, &ok, NULL);
  2534. }
  2535. if (!ok) {
  2536. connection_printf_to_buf(conn, "512 Cannot parse port \"%s\"\r\n",
  2537. (char*)smartlist_get(args, 2));
  2538. } else {
  2539. new_addr = tor_strdup(smartlist_get(args, 1));
  2540. }
  2541. }
  2542. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2543. smartlist_free(args);
  2544. if (!new_addr)
  2545. return 0;
  2546. strlcpy(ap_conn->socks_request->address, new_addr,
  2547. sizeof(ap_conn->socks_request->address));
  2548. if (new_port)
  2549. ap_conn->socks_request->port = new_port;
  2550. tor_free(new_addr);
  2551. send_control_done(conn);
  2552. return 0;
  2553. }
  2554. /** Called when we get a CLOSESTREAM command; try to close the named stream
  2555. * and report success or failure. */
  2556. static int
  2557. handle_control_closestream(control_connection_t *conn, uint32_t len,
  2558. const char *body)
  2559. {
  2560. entry_connection_t *ap_conn=NULL;
  2561. uint8_t reason=0;
  2562. smartlist_t *args;
  2563. int ok;
  2564. (void) len;
  2565. args = getargs_helper("CLOSESTREAM", conn, body, 2, -1);
  2566. if (!args)
  2567. return 0;
  2568. else if (!(ap_conn = get_stream(smartlist_get(args, 0))))
  2569. connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n",
  2570. (char*)smartlist_get(args, 0));
  2571. else {
  2572. reason = (uint8_t) tor_parse_ulong(smartlist_get(args,1), 10, 0, 255,
  2573. &ok, NULL);
  2574. if (!ok) {
  2575. connection_printf_to_buf(conn, "552 Unrecognized reason \"%s\"\r\n",
  2576. (char*)smartlist_get(args, 1));
  2577. ap_conn = NULL;
  2578. }
  2579. }
  2580. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2581. smartlist_free(args);
  2582. if (!ap_conn)
  2583. return 0;
  2584. connection_mark_unattached_ap(ap_conn, reason);
  2585. send_control_done(conn);
  2586. return 0;
  2587. }
  2588. /** Called when we get a CLOSECIRCUIT command; try to close the named circuit
  2589. * and report success or failure. */
  2590. static int
  2591. handle_control_closecircuit(control_connection_t *conn, uint32_t len,
  2592. const char *body)
  2593. {
  2594. origin_circuit_t *circ = NULL;
  2595. int safe = 0;
  2596. smartlist_t *args;
  2597. (void) len;
  2598. args = getargs_helper("CLOSECIRCUIT", conn, body, 1, -1);
  2599. if (!args)
  2600. return 0;
  2601. if (!(circ=get_circ(smartlist_get(args, 0))))
  2602. connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n",
  2603. (char*)smartlist_get(args, 0));
  2604. else {
  2605. int i;
  2606. for (i=1; i < smartlist_len(args); ++i) {
  2607. if (!strcasecmp(smartlist_get(args, i), "IfUnused"))
  2608. safe = 1;
  2609. else
  2610. log_info(LD_CONTROL, "Skipping unknown option %s",
  2611. (char*)smartlist_get(args,i));
  2612. }
  2613. }
  2614. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2615. smartlist_free(args);
  2616. if (!circ)
  2617. return 0;
  2618. if (!safe || !circ->p_streams) {
  2619. circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_REQUESTED);
  2620. }
  2621. send_control_done(conn);
  2622. return 0;
  2623. }
  2624. /** Called when we get a RESOLVE command: start trying to resolve
  2625. * the listed addresses. */
  2626. static int
  2627. handle_control_resolve(control_connection_t *conn, uint32_t len,
  2628. const char *body)
  2629. {
  2630. smartlist_t *args, *failed;
  2631. int is_reverse = 0;
  2632. (void) len; /* body is nul-terminated; it's safe to ignore the length */
  2633. if (!(conn->event_mask & ((uint32_t)1L<<EVENT_ADDRMAP))) {
  2634. log_warn(LD_CONTROL, "Controller asked us to resolve an address, but "
  2635. "isn't listening for ADDRMAP events. It probably won't see "
  2636. "the answer.");
  2637. }
  2638. args = smartlist_new();
  2639. smartlist_split_string(args, body, " ",
  2640. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2641. {
  2642. const char *modearg = find_element_starting_with(args, 0, "mode=");
  2643. if (modearg && !strcasecmp(modearg, "mode=reverse"))
  2644. is_reverse = 1;
  2645. }
  2646. failed = smartlist_new();
  2647. SMARTLIST_FOREACH(args, const char *, arg, {
  2648. if (!is_keyval_pair(arg)) {
  2649. if (dnsserv_launch_request(arg, is_reverse)<0)
  2650. smartlist_add(failed, (char*)arg);
  2651. }
  2652. });
  2653. send_control_done(conn);
  2654. SMARTLIST_FOREACH(failed, const char *, arg, {
  2655. control_event_address_mapped(arg, arg, time(NULL),
  2656. "Unable to launch resolve request");
  2657. });
  2658. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2659. smartlist_free(args);
  2660. smartlist_free(failed);
  2661. return 0;
  2662. }
  2663. /** Called when we get a PROTOCOLINFO command: send back a reply. */
  2664. static int
  2665. handle_control_protocolinfo(control_connection_t *conn, uint32_t len,
  2666. const char *body)
  2667. {
  2668. const char *bad_arg = NULL;
  2669. smartlist_t *args;
  2670. (void)len;
  2671. conn->have_sent_protocolinfo = 1;
  2672. args = smartlist_new();
  2673. smartlist_split_string(args, body, " ",
  2674. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2675. SMARTLIST_FOREACH(args, const char *, arg, {
  2676. int ok;
  2677. tor_parse_long(arg, 10, 0, LONG_MAX, &ok, NULL);
  2678. if (!ok) {
  2679. bad_arg = arg;
  2680. break;
  2681. }
  2682. });
  2683. if (bad_arg) {
  2684. connection_printf_to_buf(conn, "513 No such version %s\r\n",
  2685. escaped(bad_arg));
  2686. /* Don't tolerate bad arguments when not authenticated. */
  2687. if (!STATE_IS_OPEN(TO_CONN(conn)->state))
  2688. connection_mark_for_close(TO_CONN(conn));
  2689. goto done;
  2690. } else {
  2691. const or_options_t *options = get_options();
  2692. int cookies = options->CookieAuthentication;
  2693. char *cfile = get_cookie_file();
  2694. char *abs_cfile;
  2695. char *esc_cfile;
  2696. char *methods;
  2697. abs_cfile = make_path_absolute(cfile);
  2698. esc_cfile = esc_for_log(abs_cfile);
  2699. {
  2700. int passwd = (options->HashedControlPassword != NULL ||
  2701. options->HashedControlSessionPassword != NULL);
  2702. smartlist_t *mlist = smartlist_new();
  2703. if (cookies) {
  2704. smartlist_add(mlist, (char*)"COOKIE");
  2705. smartlist_add(mlist, (char*)"SAFECOOKIE");
  2706. }
  2707. if (passwd)
  2708. smartlist_add(mlist, (char*)"HASHEDPASSWORD");
  2709. if (!cookies && !passwd)
  2710. smartlist_add(mlist, (char*)"NULL");
  2711. methods = smartlist_join_strings(mlist, ",", 0, NULL);
  2712. smartlist_free(mlist);
  2713. }
  2714. connection_printf_to_buf(conn,
  2715. "250-PROTOCOLINFO 1\r\n"
  2716. "250-AUTH METHODS=%s%s%s\r\n"
  2717. "250-VERSION Tor=%s\r\n"
  2718. "250 OK\r\n",
  2719. methods,
  2720. cookies?" COOKIEFILE=":"",
  2721. cookies?esc_cfile:"",
  2722. escaped(VERSION));
  2723. tor_free(methods);
  2724. tor_free(cfile);
  2725. tor_free(abs_cfile);
  2726. tor_free(esc_cfile);
  2727. }
  2728. done:
  2729. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2730. smartlist_free(args);
  2731. return 0;
  2732. }
  2733. /** Called when we get an AUTHCHALLENGE command. */
  2734. static int
  2735. handle_control_authchallenge(control_connection_t *conn, uint32_t len,
  2736. const char *body)
  2737. {
  2738. const char *cp = body;
  2739. char *client_nonce;
  2740. size_t client_nonce_len;
  2741. char server_hash[DIGEST256_LEN];
  2742. char server_hash_encoded[HEX_DIGEST256_LEN+1];
  2743. char server_nonce[SAFECOOKIE_SERVER_NONCE_LEN];
  2744. char server_nonce_encoded[(2*SAFECOOKIE_SERVER_NONCE_LEN) + 1];
  2745. cp += strspn(cp, " \t\n\r");
  2746. if (!strcasecmpstart(cp, "SAFECOOKIE")) {
  2747. cp += strlen("SAFECOOKIE");
  2748. } else {
  2749. connection_write_str_to_buf("513 AUTHCHALLENGE only supports SAFECOOKIE "
  2750. "authentication\r\n", conn);
  2751. connection_mark_for_close(TO_CONN(conn));
  2752. return -1;
  2753. }
  2754. if (!authentication_cookie_is_set) {
  2755. connection_write_str_to_buf("515 Cookie authentication is disabled\r\n",
  2756. conn);
  2757. connection_mark_for_close(TO_CONN(conn));
  2758. return -1;
  2759. }
  2760. cp += strspn(cp, " \t\n\r");
  2761. if (*cp == '"') {
  2762. const char *newcp =
  2763. decode_escaped_string(cp, len - (cp - body),
  2764. &client_nonce, &client_nonce_len);
  2765. if (newcp == NULL) {
  2766. connection_write_str_to_buf("513 Invalid quoted client nonce\r\n",
  2767. conn);
  2768. connection_mark_for_close(TO_CONN(conn));
  2769. return -1;
  2770. }
  2771. cp = newcp;
  2772. } else {
  2773. size_t client_nonce_encoded_len = strspn(cp, "0123456789ABCDEFabcdef");
  2774. client_nonce_len = client_nonce_encoded_len / 2;
  2775. client_nonce = tor_malloc_zero(client_nonce_len);
  2776. if (base16_decode(client_nonce, client_nonce_len,
  2777. cp, client_nonce_encoded_len) < 0) {
  2778. connection_write_str_to_buf("513 Invalid base16 client nonce\r\n",
  2779. conn);
  2780. connection_mark_for_close(TO_CONN(conn));
  2781. tor_free(client_nonce);
  2782. return -1;
  2783. }
  2784. cp += client_nonce_encoded_len;
  2785. }
  2786. cp += strspn(cp, " \t\n\r");
  2787. if (*cp != '\0' ||
  2788. cp != body + len) {
  2789. connection_write_str_to_buf("513 Junk at end of AUTHCHALLENGE command\r\n",
  2790. conn);
  2791. connection_mark_for_close(TO_CONN(conn));
  2792. tor_free(client_nonce);
  2793. return -1;
  2794. }
  2795. tor_assert(!crypto_rand(server_nonce, SAFECOOKIE_SERVER_NONCE_LEN));
  2796. /* Now compute and send the server-to-controller response, and the
  2797. * server's nonce. */
  2798. tor_assert(authentication_cookie != NULL);
  2799. {
  2800. size_t tmp_len = (AUTHENTICATION_COOKIE_LEN +
  2801. client_nonce_len +
  2802. SAFECOOKIE_SERVER_NONCE_LEN);
  2803. char *tmp = tor_malloc_zero(tmp_len);
  2804. char *client_hash = tor_malloc_zero(DIGEST256_LEN);
  2805. memcpy(tmp, authentication_cookie, AUTHENTICATION_COOKIE_LEN);
  2806. memcpy(tmp + AUTHENTICATION_COOKIE_LEN, client_nonce, client_nonce_len);
  2807. memcpy(tmp + AUTHENTICATION_COOKIE_LEN + client_nonce_len,
  2808. server_nonce, SAFECOOKIE_SERVER_NONCE_LEN);
  2809. crypto_hmac_sha256(server_hash,
  2810. SAFECOOKIE_SERVER_TO_CONTROLLER_CONSTANT,
  2811. strlen(SAFECOOKIE_SERVER_TO_CONTROLLER_CONSTANT),
  2812. tmp,
  2813. tmp_len);
  2814. crypto_hmac_sha256(client_hash,
  2815. SAFECOOKIE_CONTROLLER_TO_SERVER_CONSTANT,
  2816. strlen(SAFECOOKIE_CONTROLLER_TO_SERVER_CONSTANT),
  2817. tmp,
  2818. tmp_len);
  2819. conn->safecookie_client_hash = client_hash;
  2820. tor_free(tmp);
  2821. }
  2822. base16_encode(server_hash_encoded, sizeof(server_hash_encoded),
  2823. server_hash, sizeof(server_hash));
  2824. base16_encode(server_nonce_encoded, sizeof(server_nonce_encoded),
  2825. server_nonce, sizeof(server_nonce));
  2826. connection_printf_to_buf(conn,
  2827. "250 AUTHCHALLENGE SERVERHASH=%s "
  2828. "SERVERNONCE=%s\r\n",
  2829. server_hash_encoded,
  2830. server_nonce_encoded);
  2831. return 0;
  2832. }
  2833. /** Called when we get a USEFEATURE command: parse the feature list, and
  2834. * set up the control_connection's options properly. */
  2835. static int
  2836. handle_control_usefeature(control_connection_t *conn,
  2837. uint32_t len,
  2838. const char *body)
  2839. {
  2840. smartlist_t *args;
  2841. int bad = 0;
  2842. (void) len; /* body is nul-terminated; it's safe to ignore the length */
  2843. args = smartlist_new();
  2844. smartlist_split_string(args, body, " ",
  2845. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  2846. SMARTLIST_FOREACH(args, const char *, arg, {
  2847. if (!strcasecmp(arg, "VERBOSE_NAMES"))
  2848. ;
  2849. else if (!strcasecmp(arg, "EXTENDED_EVENTS"))
  2850. ;
  2851. else {
  2852. connection_printf_to_buf(conn, "552 Unrecognized feature \"%s\"\r\n",
  2853. arg);
  2854. bad = 1;
  2855. break;
  2856. }
  2857. });
  2858. if (!bad) {
  2859. send_control_done(conn);
  2860. }
  2861. SMARTLIST_FOREACH(args, char *, cp, tor_free(cp));
  2862. smartlist_free(args);
  2863. return 0;
  2864. }
  2865. /** Called when <b>conn</b> has no more bytes left on its outbuf. */
  2866. int
  2867. connection_control_finished_flushing(control_connection_t *conn)
  2868. {
  2869. tor_assert(conn);
  2870. return 0;
  2871. }
  2872. /** Called when <b>conn</b> has gotten its socket closed. */
  2873. int
  2874. connection_control_reached_eof(control_connection_t *conn)
  2875. {
  2876. tor_assert(conn);
  2877. log_info(LD_CONTROL,"Control connection reached EOF. Closing.");
  2878. connection_mark_for_close(TO_CONN(conn));
  2879. return 0;
  2880. }
  2881. /** Shut down this Tor instance in the same way that SIGINT would, but
  2882. * with a log message appropriate for the loss of an owning controller. */
  2883. static void
  2884. lost_owning_controller(const char *owner_type, const char *loss_manner)
  2885. {
  2886. int shutdown_slowly = server_mode(get_options());
  2887. log_notice(LD_CONTROL, "Owning controller %s has %s -- %s.",
  2888. owner_type, loss_manner,
  2889. shutdown_slowly ? "shutting down" : "exiting now");
  2890. /* XXXX Perhaps this chunk of code should be a separate function,
  2891. * called here and by process_signal(SIGINT). */
  2892. if (!shutdown_slowly) {
  2893. tor_cleanup();
  2894. exit(0);
  2895. }
  2896. /* XXXX This will close all listening sockets except control-port
  2897. * listeners. Perhaps we should close those too. */
  2898. hibernate_begin_shutdown();
  2899. }
  2900. /** Called when <b>conn</b> is being freed. */
  2901. void
  2902. connection_control_closed(control_connection_t *conn)
  2903. {
  2904. tor_assert(conn);
  2905. conn->event_mask = 0;
  2906. control_update_global_event_mask();
  2907. if (conn->is_owning_control_connection) {
  2908. lost_owning_controller("connection", "closed");
  2909. }
  2910. }
  2911. /** Return true iff <b>cmd</b> is allowable (or at least forgivable) at this
  2912. * stage of the protocol. */
  2913. static int
  2914. is_valid_initial_command(control_connection_t *conn, const char *cmd)
  2915. {
  2916. if (conn->_base.state == CONTROL_CONN_STATE_OPEN)
  2917. return 1;
  2918. if (!strcasecmp(cmd, "PROTOCOLINFO"))
  2919. return (!conn->have_sent_protocolinfo &&
  2920. conn->safecookie_client_hash == NULL);
  2921. if (!strcasecmp(cmd, "AUTHCHALLENGE"))
  2922. return (conn->safecookie_client_hash == NULL);
  2923. if (!strcasecmp(cmd, "AUTHENTICATE") ||
  2924. !strcasecmp(cmd, "QUIT"))
  2925. return 1;
  2926. return 0;
  2927. }
  2928. /** Do not accept any control command of more than 1MB in length. Anything
  2929. * that needs to be anywhere near this long probably means that one of our
  2930. * interfaces is broken. */
  2931. #define MAX_COMMAND_LINE_LENGTH (1024*1024)
  2932. /** Wrapper around peek_(evbuffer|buf)_has_control0 command: presents the same
  2933. * interface as those underlying functions, but takes a connection_t intead of
  2934. * an evbuffer or a buf_t.
  2935. */
  2936. static int
  2937. peek_connection_has_control0_command(connection_t *conn)
  2938. {
  2939. IF_HAS_BUFFEREVENT(conn, {
  2940. struct evbuffer *input = bufferevent_get_input(conn->bufev);
  2941. return peek_evbuffer_has_control0_command(input);
  2942. }) ELSE_IF_NO_BUFFEREVENT {
  2943. return peek_buf_has_control0_command(conn->inbuf);
  2944. }
  2945. }
  2946. /** Called when data has arrived on a v1 control connection: Try to fetch
  2947. * commands from conn->inbuf, and execute them.
  2948. */
  2949. int
  2950. connection_control_process_inbuf(control_connection_t *conn)
  2951. {
  2952. size_t data_len;
  2953. uint32_t cmd_data_len;
  2954. int cmd_len;
  2955. char *args;
  2956. tor_assert(conn);
  2957. tor_assert(conn->_base.state == CONTROL_CONN_STATE_OPEN ||
  2958. conn->_base.state == CONTROL_CONN_STATE_NEEDAUTH);
  2959. if (!conn->incoming_cmd) {
  2960. conn->incoming_cmd = tor_malloc(1024);
  2961. conn->incoming_cmd_len = 1024;
  2962. conn->incoming_cmd_cur_len = 0;
  2963. }
  2964. if (conn->_base.state == CONTROL_CONN_STATE_NEEDAUTH &&
  2965. peek_connection_has_control0_command(TO_CONN(conn))) {
  2966. /* Detect v0 commands and send a "no more v0" message. */
  2967. size_t body_len;
  2968. char buf[128];
  2969. set_uint16(buf+2, htons(0x0000)); /* type == error */
  2970. set_uint16(buf+4, htons(0x0001)); /* code == internal error */
  2971. strlcpy(buf+6, "The v0 control protocol is not supported by Tor 0.1.2.17 "
  2972. "and later; upgrade your controller.",
  2973. sizeof(buf)-6);
  2974. body_len = 2+strlen(buf+6)+2; /* code, msg, nul. */
  2975. set_uint16(buf+0, htons(body_len));
  2976. connection_write_to_buf(buf, 4+body_len, TO_CONN(conn));
  2977. connection_mark_and_flush(TO_CONN(conn));
  2978. return 0;
  2979. }
  2980. again:
  2981. while (1) {
  2982. size_t last_idx;
  2983. int r;
  2984. /* First, fetch a line. */
  2985. do {
  2986. data_len = conn->incoming_cmd_len - conn->incoming_cmd_cur_len;
  2987. r = connection_fetch_from_buf_line(TO_CONN(conn),
  2988. conn->incoming_cmd+conn->incoming_cmd_cur_len,
  2989. &data_len);
  2990. if (r == 0)
  2991. /* Line not all here yet. Wait. */
  2992. return 0;
  2993. else if (r == -1) {
  2994. if (data_len + conn->incoming_cmd_cur_len > MAX_COMMAND_LINE_LENGTH) {
  2995. connection_write_str_to_buf("500 Line too long.\r\n", conn);
  2996. connection_stop_reading(TO_CONN(conn));
  2997. connection_mark_and_flush(TO_CONN(conn));
  2998. }
  2999. while (conn->incoming_cmd_len < data_len+conn->incoming_cmd_cur_len)
  3000. conn->incoming_cmd_len *= 2;
  3001. conn->incoming_cmd = tor_realloc(conn->incoming_cmd,
  3002. conn->incoming_cmd_len);
  3003. }
  3004. } while (r != 1);
  3005. tor_assert(data_len);
  3006. last_idx = conn->incoming_cmd_cur_len;
  3007. conn->incoming_cmd_cur_len += (int)data_len;
  3008. /* We have appended a line to incoming_cmd. Is the command done? */
  3009. if (last_idx == 0 && *conn->incoming_cmd != '+')
  3010. /* One line command, didn't start with '+'. */
  3011. break;
  3012. /* XXXX this code duplication is kind of dumb. */
  3013. if (last_idx+3 == conn->incoming_cmd_cur_len &&
  3014. tor_memeq(conn->incoming_cmd + last_idx, ".\r\n", 3)) {
  3015. /* Just appended ".\r\n"; we're done. Remove it. */
  3016. conn->incoming_cmd[last_idx] = '\0';
  3017. conn->incoming_cmd_cur_len -= 3;
  3018. break;
  3019. } else if (last_idx+2 == conn->incoming_cmd_cur_len &&
  3020. tor_memeq(conn->incoming_cmd + last_idx, ".\n", 2)) {
  3021. /* Just appended ".\n"; we're done. Remove it. */
  3022. conn->incoming_cmd[last_idx] = '\0';
  3023. conn->incoming_cmd_cur_len -= 2;
  3024. break;
  3025. }
  3026. /* Otherwise, read another line. */
  3027. }
  3028. data_len = conn->incoming_cmd_cur_len;
  3029. /* Okay, we now have a command sitting on conn->incoming_cmd. See if we
  3030. * recognize it.
  3031. */
  3032. cmd_len = 0;
  3033. while ((size_t)cmd_len < data_len
  3034. && !TOR_ISSPACE(conn->incoming_cmd[cmd_len]))
  3035. ++cmd_len;
  3036. conn->incoming_cmd[cmd_len]='\0';
  3037. args = conn->incoming_cmd+cmd_len+1;
  3038. tor_assert(data_len>(size_t)cmd_len);
  3039. data_len -= (cmd_len+1); /* skip the command and NUL we added after it */
  3040. while (TOR_ISSPACE(*args)) {
  3041. ++args;
  3042. --data_len;
  3043. }
  3044. /* If the connection is already closing, ignore further commands */
  3045. if (TO_CONN(conn)->marked_for_close) {
  3046. return 0;
  3047. }
  3048. /* Otherwise, Quit is always valid. */
  3049. if (!strcasecmp(conn->incoming_cmd, "QUIT")) {
  3050. connection_write_str_to_buf("250 closing connection\r\n", conn);
  3051. connection_mark_and_flush(TO_CONN(conn));
  3052. return 0;
  3053. }
  3054. if (conn->_base.state == CONTROL_CONN_STATE_NEEDAUTH &&
  3055. !is_valid_initial_command(conn, conn->incoming_cmd)) {
  3056. connection_write_str_to_buf("514 Authentication required.\r\n", conn);
  3057. connection_mark_for_close(TO_CONN(conn));
  3058. return 0;
  3059. }
  3060. if (data_len >= UINT32_MAX) {
  3061. connection_write_str_to_buf("500 A 4GB command? Nice try.\r\n", conn);
  3062. connection_mark_for_close(TO_CONN(conn));
  3063. return 0;
  3064. }
  3065. /* XXXX Why is this not implemented as a table like the GETINFO
  3066. * items are? Even handling the plus signs at the beginnings of
  3067. * commands wouldn't be very hard with proper macros. */
  3068. cmd_data_len = (uint32_t)data_len;
  3069. if (!strcasecmp(conn->incoming_cmd, "SETCONF")) {
  3070. if (handle_control_setconf(conn, cmd_data_len, args))
  3071. return -1;
  3072. } else if (!strcasecmp(conn->incoming_cmd, "RESETCONF")) {
  3073. if (handle_control_resetconf(conn, cmd_data_len, args))
  3074. return -1;
  3075. } else if (!strcasecmp(conn->incoming_cmd, "GETCONF")) {
  3076. if (handle_control_getconf(conn, cmd_data_len, args))
  3077. return -1;
  3078. } else if (!strcasecmp(conn->incoming_cmd, "+LOADCONF")) {
  3079. if (handle_control_loadconf(conn, cmd_data_len, args))
  3080. return -1;
  3081. } else if (!strcasecmp(conn->incoming_cmd, "SETEVENTS")) {
  3082. if (handle_control_setevents(conn, cmd_data_len, args))
  3083. return -1;
  3084. } else if (!strcasecmp(conn->incoming_cmd, "AUTHENTICATE")) {
  3085. if (handle_control_authenticate(conn, cmd_data_len, args))
  3086. return -1;
  3087. } else if (!strcasecmp(conn->incoming_cmd, "SAVECONF")) {
  3088. if (handle_control_saveconf(conn, cmd_data_len, args))
  3089. return -1;
  3090. } else if (!strcasecmp(conn->incoming_cmd, "SIGNAL")) {
  3091. if (handle_control_signal(conn, cmd_data_len, args))
  3092. return -1;
  3093. } else if (!strcasecmp(conn->incoming_cmd, "TAKEOWNERSHIP")) {
  3094. if (handle_control_takeownership(conn, cmd_data_len, args))
  3095. return -1;
  3096. } else if (!strcasecmp(conn->incoming_cmd, "MAPADDRESS")) {
  3097. if (handle_control_mapaddress(conn, cmd_data_len, args))
  3098. return -1;
  3099. } else if (!strcasecmp(conn->incoming_cmd, "GETINFO")) {
  3100. if (handle_control_getinfo(conn, cmd_data_len, args))
  3101. return -1;
  3102. } else if (!strcasecmp(conn->incoming_cmd, "EXTENDCIRCUIT")) {
  3103. if (handle_control_extendcircuit(conn, cmd_data_len, args))
  3104. return -1;
  3105. } else if (!strcasecmp(conn->incoming_cmd, "SETCIRCUITPURPOSE")) {
  3106. if (handle_control_setcircuitpurpose(conn, cmd_data_len, args))
  3107. return -1;
  3108. } else if (!strcasecmp(conn->incoming_cmd, "SETROUTERPURPOSE")) {
  3109. connection_write_str_to_buf("511 SETROUTERPURPOSE is obsolete.\r\n", conn);
  3110. } else if (!strcasecmp(conn->incoming_cmd, "ATTACHSTREAM")) {
  3111. if (handle_control_attachstream(conn, cmd_data_len, args))
  3112. return -1;
  3113. } else if (!strcasecmp(conn->incoming_cmd, "+POSTDESCRIPTOR")) {
  3114. if (handle_control_postdescriptor(conn, cmd_data_len, args))
  3115. return -1;
  3116. } else if (!strcasecmp(conn->incoming_cmd, "REDIRECTSTREAM")) {
  3117. if (handle_control_redirectstream(conn, cmd_data_len, args))
  3118. return -1;
  3119. } else if (!strcasecmp(conn->incoming_cmd, "CLOSESTREAM")) {
  3120. if (handle_control_closestream(conn, cmd_data_len, args))
  3121. return -1;
  3122. } else if (!strcasecmp(conn->incoming_cmd, "CLOSECIRCUIT")) {
  3123. if (handle_control_closecircuit(conn, cmd_data_len, args))
  3124. return -1;
  3125. } else if (!strcasecmp(conn->incoming_cmd, "USEFEATURE")) {
  3126. if (handle_control_usefeature(conn, cmd_data_len, args))
  3127. return -1;
  3128. } else if (!strcasecmp(conn->incoming_cmd, "RESOLVE")) {
  3129. if (handle_control_resolve(conn, cmd_data_len, args))
  3130. return -1;
  3131. } else if (!strcasecmp(conn->incoming_cmd, "PROTOCOLINFO")) {
  3132. if (handle_control_protocolinfo(conn, cmd_data_len, args))
  3133. return -1;
  3134. } else if (!strcasecmp(conn->incoming_cmd, "AUTHCHALLENGE")) {
  3135. if (handle_control_authchallenge(conn, cmd_data_len, args))
  3136. return -1;
  3137. } else {
  3138. connection_printf_to_buf(conn, "510 Unrecognized command \"%s\"\r\n",
  3139. conn->incoming_cmd);
  3140. }
  3141. conn->incoming_cmd_cur_len = 0;
  3142. goto again;
  3143. }
  3144. /** Something major has happened to circuit <b>circ</b>: tell any
  3145. * interested control connections. */
  3146. int
  3147. control_event_circuit_status(origin_circuit_t *circ, circuit_status_event_t tp,
  3148. int reason_code)
  3149. {
  3150. const char *status;
  3151. char reasons[64] = "";
  3152. if (!EVENT_IS_INTERESTING(EVENT_CIRCUIT_STATUS))
  3153. return 0;
  3154. tor_assert(circ);
  3155. switch (tp)
  3156. {
  3157. case CIRC_EVENT_LAUNCHED: status = "LAUNCHED"; break;
  3158. case CIRC_EVENT_BUILT: status = "BUILT"; break;
  3159. case CIRC_EVENT_EXTENDED: status = "EXTENDED"; break;
  3160. case CIRC_EVENT_FAILED: status = "FAILED"; break;
  3161. case CIRC_EVENT_CLOSED: status = "CLOSED"; break;
  3162. default:
  3163. log_warn(LD_BUG, "Unrecognized status code %d", (int)tp);
  3164. tor_fragile_assert();
  3165. return 0;
  3166. }
  3167. if (tp == CIRC_EVENT_FAILED || tp == CIRC_EVENT_CLOSED) {
  3168. const char *reason_str = circuit_end_reason_to_control_string(reason_code);
  3169. char unk_reason_buf[16];
  3170. if (!reason_str) {
  3171. tor_snprintf(unk_reason_buf, 16, "UNKNOWN_%d", reason_code);
  3172. reason_str = unk_reason_buf;
  3173. }
  3174. if (reason_code > 0 && reason_code & END_CIRC_REASON_FLAG_REMOTE) {
  3175. tor_snprintf(reasons, sizeof(reasons),
  3176. " REASON=DESTROYED REMOTE_REASON=%s", reason_str);
  3177. } else {
  3178. tor_snprintf(reasons, sizeof(reasons),
  3179. " REASON=%s", reason_str);
  3180. }
  3181. }
  3182. {
  3183. char *circdesc = circuit_describe_status_for_controller(circ);
  3184. const char *sp = strlen(circdesc) ? " " : "";
  3185. send_control_event(EVENT_CIRCUIT_STATUS, ALL_FORMATS,
  3186. "650 CIRC %lu %s%s%s%s\r\n",
  3187. (unsigned long)circ->global_identifier,
  3188. status, sp,
  3189. circdesc,
  3190. reasons);
  3191. tor_free(circdesc);
  3192. }
  3193. return 0;
  3194. }
  3195. /** Something minor has happened to circuit <b>circ</b>: tell any
  3196. * interested control connections. */
  3197. static int
  3198. control_event_circuit_status_minor(origin_circuit_t *circ,
  3199. circuit_status_minor_event_t e,
  3200. int purpose, const struct timeval *tv)
  3201. {
  3202. const char *event_desc;
  3203. char event_tail[160] = "";
  3204. if (!EVENT_IS_INTERESTING(EVENT_CIRCUIT_STATUS_MINOR))
  3205. return 0;
  3206. tor_assert(circ);
  3207. switch (e)
  3208. {
  3209. case CIRC_MINOR_EVENT_PURPOSE_CHANGED:
  3210. event_desc = "PURPOSE_CHANGED";
  3211. {
  3212. /* event_tail can currently be up to 68 chars long */
  3213. const char *hs_state_str =
  3214. circuit_purpose_to_controller_hs_state_string(purpose);
  3215. tor_snprintf(event_tail, sizeof(event_tail),
  3216. " OLD_PURPOSE=%s%s%s",
  3217. circuit_purpose_to_controller_string(purpose),
  3218. (hs_state_str != NULL) ? " OLD_HS_STATE=" : "",
  3219. (hs_state_str != NULL) ? hs_state_str : "");
  3220. }
  3221. break;
  3222. case CIRC_MINOR_EVENT_CANNIBALIZED:
  3223. event_desc = "CANNIBALIZED";
  3224. {
  3225. /* event_tail can currently be up to 130 chars long */
  3226. const char *hs_state_str =
  3227. circuit_purpose_to_controller_hs_state_string(purpose);
  3228. const struct timeval *old_timestamp_created = tv;
  3229. char tbuf[ISO_TIME_USEC_LEN+1];
  3230. format_iso_time_nospace_usec(tbuf, old_timestamp_created);
  3231. tor_snprintf(event_tail, sizeof(event_tail),
  3232. " OLD_PURPOSE=%s%s%s OLD_TIME_CREATED=%s",
  3233. circuit_purpose_to_controller_string(purpose),
  3234. (hs_state_str != NULL) ? " OLD_HS_STATE=" : "",
  3235. (hs_state_str != NULL) ? hs_state_str : "",
  3236. tbuf);
  3237. }
  3238. break;
  3239. default:
  3240. log_warn(LD_BUG, "Unrecognized status code %d", (int)e);
  3241. tor_fragile_assert();
  3242. return 0;
  3243. }
  3244. {
  3245. char *circdesc = circuit_describe_status_for_controller(circ);
  3246. const char *sp = strlen(circdesc) ? " " : "";
  3247. send_control_event(EVENT_CIRCUIT_STATUS_MINOR, ALL_FORMATS,
  3248. "650 CIRC_MINOR %lu %s%s%s%s\r\n",
  3249. (unsigned long)circ->global_identifier,
  3250. event_desc, sp,
  3251. circdesc,
  3252. event_tail);
  3253. tor_free(circdesc);
  3254. }
  3255. return 0;
  3256. }
  3257. /**
  3258. * <b>circ</b> has changed its purpose from <b>old_purpose</b>: tell any
  3259. * interested controllers.
  3260. */
  3261. int
  3262. control_event_circuit_purpose_changed(origin_circuit_t *circ,
  3263. int old_purpose)
  3264. {
  3265. return control_event_circuit_status_minor(circ,
  3266. CIRC_MINOR_EVENT_PURPOSE_CHANGED,
  3267. old_purpose,
  3268. NULL);
  3269. }
  3270. /**
  3271. * <b>circ</b> has changed its purpose from <b>old_purpose</b>, and its
  3272. * created-time from <b>old_tv_created</b>: tell any interested controllers.
  3273. */
  3274. int
  3275. control_event_circuit_cannibalized(origin_circuit_t *circ,
  3276. int old_purpose,
  3277. const struct timeval *old_tv_created)
  3278. {
  3279. return control_event_circuit_status_minor(circ,
  3280. CIRC_MINOR_EVENT_CANNIBALIZED,
  3281. old_purpose,
  3282. old_tv_created);
  3283. }
  3284. /** Given an AP connection <b>conn</b> and a <b>len</b>-character buffer
  3285. * <b>buf</b>, determine the address:port combination requested on
  3286. * <b>conn</b>, and write it to <b>buf</b>. Return 0 on success, -1 on
  3287. * failure. */
  3288. static int
  3289. write_stream_target_to_buf(entry_connection_t *conn, char *buf, size_t len)
  3290. {
  3291. char buf2[256];
  3292. if (conn->chosen_exit_name)
  3293. if (tor_snprintf(buf2, sizeof(buf2), ".%s.exit", conn->chosen_exit_name)<0)
  3294. return -1;
  3295. if (!conn->socks_request)
  3296. return -1;
  3297. if (tor_snprintf(buf, len, "%s%s%s:%d",
  3298. conn->socks_request->address,
  3299. conn->chosen_exit_name ? buf2 : "",
  3300. !conn->chosen_exit_name && connection_edge_is_rendezvous_stream(
  3301. ENTRY_TO_EDGE_CONN(conn)) ? ".onion" : "",
  3302. conn->socks_request->port)<0)
  3303. return -1;
  3304. return 0;
  3305. }
  3306. /** Something has happened to the stream associated with AP connection
  3307. * <b>conn</b>: tell any interested control connections. */
  3308. int
  3309. control_event_stream_status(entry_connection_t *conn, stream_status_event_t tp,
  3310. int reason_code)
  3311. {
  3312. char reason_buf[64];
  3313. char addrport_buf[64];
  3314. const char *status;
  3315. circuit_t *circ;
  3316. origin_circuit_t *origin_circ = NULL;
  3317. char buf[256];
  3318. const char *purpose = "";
  3319. tor_assert(conn->socks_request);
  3320. if (!EVENT_IS_INTERESTING(EVENT_STREAM_STATUS))
  3321. return 0;
  3322. if (tp == STREAM_EVENT_CLOSED &&
  3323. (reason_code & END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED))
  3324. return 0;
  3325. write_stream_target_to_buf(conn, buf, sizeof(buf));
  3326. reason_buf[0] = '\0';
  3327. switch (tp)
  3328. {
  3329. case STREAM_EVENT_SENT_CONNECT: status = "SENTCONNECT"; break;
  3330. case STREAM_EVENT_SENT_RESOLVE: status = "SENTRESOLVE"; break;
  3331. case STREAM_EVENT_SUCCEEDED: status = "SUCCEEDED"; break;
  3332. case STREAM_EVENT_FAILED: status = "FAILED"; break;
  3333. case STREAM_EVENT_CLOSED: status = "CLOSED"; break;
  3334. case STREAM_EVENT_NEW: status = "NEW"; break;
  3335. case STREAM_EVENT_NEW_RESOLVE: status = "NEWRESOLVE"; break;
  3336. case STREAM_EVENT_FAILED_RETRIABLE: status = "DETACHED"; break;
  3337. case STREAM_EVENT_REMAP: status = "REMAP"; break;
  3338. default:
  3339. log_warn(LD_BUG, "Unrecognized status code %d", (int)tp);
  3340. return 0;
  3341. }
  3342. if (reason_code && (tp == STREAM_EVENT_FAILED ||
  3343. tp == STREAM_EVENT_CLOSED ||
  3344. tp == STREAM_EVENT_FAILED_RETRIABLE)) {
  3345. const char *reason_str = stream_end_reason_to_control_string(reason_code);
  3346. char *r = NULL;
  3347. if (!reason_str) {
  3348. tor_asprintf(&r, " UNKNOWN_%d", reason_code);
  3349. reason_str = r;
  3350. }
  3351. if (reason_code & END_STREAM_REASON_FLAG_REMOTE)
  3352. tor_snprintf(reason_buf, sizeof(reason_buf),
  3353. " REASON=END REMOTE_REASON=%s", reason_str);
  3354. else
  3355. tor_snprintf(reason_buf, sizeof(reason_buf),
  3356. " REASON=%s", reason_str);
  3357. tor_free(r);
  3358. } else if (reason_code && tp == STREAM_EVENT_REMAP) {
  3359. switch (reason_code) {
  3360. case REMAP_STREAM_SOURCE_CACHE:
  3361. strlcpy(reason_buf, " SOURCE=CACHE", sizeof(reason_buf));
  3362. break;
  3363. case REMAP_STREAM_SOURCE_EXIT:
  3364. strlcpy(reason_buf, " SOURCE=EXIT", sizeof(reason_buf));
  3365. break;
  3366. default:
  3367. tor_snprintf(reason_buf, sizeof(reason_buf), " REASON=UNKNOWN_%d",
  3368. reason_code);
  3369. /* XXX do we want SOURCE=UNKNOWN_%d above instead? -RD */
  3370. break;
  3371. }
  3372. }
  3373. if (tp == STREAM_EVENT_NEW) {
  3374. tor_snprintf(addrport_buf,sizeof(addrport_buf), " SOURCE_ADDR=%s:%d",
  3375. ENTRY_TO_CONN(conn)->address, ENTRY_TO_CONN(conn)->port);
  3376. } else {
  3377. addrport_buf[0] = '\0';
  3378. }
  3379. if (tp == STREAM_EVENT_NEW_RESOLVE) {
  3380. purpose = " PURPOSE=DNS_REQUEST";
  3381. } else if (tp == STREAM_EVENT_NEW) {
  3382. if (ENTRY_TO_EDGE_CONN(conn)->is_dns_request ||
  3383. (conn->socks_request &&
  3384. SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)))
  3385. purpose = " PURPOSE=DNS_REQUEST";
  3386. else if (conn->use_begindir) {
  3387. connection_t *linked = ENTRY_TO_CONN(conn)->linked_conn;
  3388. int linked_dir_purpose = -1;
  3389. if (linked && linked->type == CONN_TYPE_DIR)
  3390. linked_dir_purpose = linked->purpose;
  3391. if (DIR_PURPOSE_IS_UPLOAD(linked_dir_purpose))
  3392. purpose = " PURPOSE=DIR_UPLOAD";
  3393. else
  3394. purpose = " PURPOSE=DIR_FETCH";
  3395. } else
  3396. purpose = " PURPOSE=USER";
  3397. }
  3398. circ = circuit_get_by_edge_conn(ENTRY_TO_EDGE_CONN(conn));
  3399. if (circ && CIRCUIT_IS_ORIGIN(circ))
  3400. origin_circ = TO_ORIGIN_CIRCUIT(circ);
  3401. send_control_event(EVENT_STREAM_STATUS, ALL_FORMATS,
  3402. "650 STREAM "U64_FORMAT" %s %lu %s%s%s%s\r\n",
  3403. U64_PRINTF_ARG(ENTRY_TO_CONN(conn)->global_identifier),
  3404. status,
  3405. origin_circ?
  3406. (unsigned long)origin_circ->global_identifier : 0ul,
  3407. buf, reason_buf, addrport_buf, purpose);
  3408. /* XXX need to specify its intended exit, etc? */
  3409. return 0;
  3410. }
  3411. /** Figure out the best name for the target router of an OR connection
  3412. * <b>conn</b>, and write it into the <b>len</b>-character buffer
  3413. * <b>name</b>. */
  3414. static void
  3415. orconn_target_get_name(char *name, size_t len, or_connection_t *conn)
  3416. {
  3417. const node_t *node = node_get_by_id(conn->identity_digest);
  3418. if (node) {
  3419. tor_assert(len > MAX_VERBOSE_NICKNAME_LEN);
  3420. node_get_verbose_nickname(node, name);
  3421. } else if (! tor_digest_is_zero(conn->identity_digest)) {
  3422. name[0] = '$';
  3423. base16_encode(name+1, len-1, conn->identity_digest,
  3424. DIGEST_LEN);
  3425. } else {
  3426. tor_snprintf(name, len, "%s:%d",
  3427. conn->_base.address, conn->_base.port);
  3428. }
  3429. }
  3430. /** Called when the status of an OR connection <b>conn</b> changes: tell any
  3431. * interested control connections. <b>tp</b> is the new status for the
  3432. * connection. If <b>conn</b> has just closed or failed, then <b>reason</b>
  3433. * may be the reason why.
  3434. */
  3435. int
  3436. control_event_or_conn_status(or_connection_t *conn, or_conn_status_event_t tp,
  3437. int reason)
  3438. {
  3439. int ncircs = 0;
  3440. const char *status;
  3441. char name[128];
  3442. char ncircs_buf[32] = {0}; /* > 8 + log10(2^32)=10 + 2 */
  3443. if (!EVENT_IS_INTERESTING(EVENT_OR_CONN_STATUS))
  3444. return 0;
  3445. switch (tp)
  3446. {
  3447. case OR_CONN_EVENT_LAUNCHED: status = "LAUNCHED"; break;
  3448. case OR_CONN_EVENT_CONNECTED: status = "CONNECTED"; break;
  3449. case OR_CONN_EVENT_FAILED: status = "FAILED"; break;
  3450. case OR_CONN_EVENT_CLOSED: status = "CLOSED"; break;
  3451. case OR_CONN_EVENT_NEW: status = "NEW"; break;
  3452. default:
  3453. log_warn(LD_BUG, "Unrecognized status code %d", (int)tp);
  3454. return 0;
  3455. }
  3456. ncircs = circuit_count_pending_on_or_conn(conn);
  3457. ncircs += conn->n_circuits;
  3458. if (ncircs && (tp == OR_CONN_EVENT_FAILED || tp == OR_CONN_EVENT_CLOSED)) {
  3459. tor_snprintf(ncircs_buf, sizeof(ncircs_buf), "%sNCIRCS=%d",
  3460. reason ? " " : "", ncircs);
  3461. }
  3462. orconn_target_get_name(name, sizeof(name), conn);
  3463. send_control_event(EVENT_OR_CONN_STATUS, ALL_FORMATS,
  3464. "650 ORCONN %s %s %s%s%s\r\n",
  3465. name, status,
  3466. reason ? "REASON=" : "",
  3467. orconn_end_reason_to_control_string(reason),
  3468. ncircs_buf);
  3469. return 0;
  3470. }
  3471. /**
  3472. * Print out STREAM_BW event for a single conn
  3473. */
  3474. int
  3475. control_event_stream_bandwidth(edge_connection_t *edge_conn)
  3476. {
  3477. if (EVENT_IS_INTERESTING(EVENT_STREAM_BANDWIDTH_USED)) {
  3478. if (!edge_conn->n_read && !edge_conn->n_written)
  3479. return 0;
  3480. send_control_event(EVENT_STREAM_BANDWIDTH_USED, ALL_FORMATS,
  3481. "650 STREAM_BW "U64_FORMAT" %lu %lu\r\n",
  3482. U64_PRINTF_ARG(edge_conn->_base.global_identifier),
  3483. (unsigned long)edge_conn->n_read,
  3484. (unsigned long)edge_conn->n_written);
  3485. edge_conn->n_written = edge_conn->n_read = 0;
  3486. }
  3487. return 0;
  3488. }
  3489. /** A second or more has elapsed: tell any interested control
  3490. * connections how much bandwidth streams have used. */
  3491. int
  3492. control_event_stream_bandwidth_used(void)
  3493. {
  3494. if (EVENT_IS_INTERESTING(EVENT_STREAM_BANDWIDTH_USED)) {
  3495. smartlist_t *conns = get_connection_array();
  3496. edge_connection_t *edge_conn;
  3497. SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn)
  3498. {
  3499. if (conn->type != CONN_TYPE_AP)
  3500. continue;
  3501. edge_conn = TO_EDGE_CONN(conn);
  3502. if (!edge_conn->n_read && !edge_conn->n_written)
  3503. continue;
  3504. send_control_event(EVENT_STREAM_BANDWIDTH_USED, ALL_FORMATS,
  3505. "650 STREAM_BW "U64_FORMAT" %lu %lu\r\n",
  3506. U64_PRINTF_ARG(edge_conn->_base.global_identifier),
  3507. (unsigned long)edge_conn->n_read,
  3508. (unsigned long)edge_conn->n_written);
  3509. edge_conn->n_written = edge_conn->n_read = 0;
  3510. }
  3511. SMARTLIST_FOREACH_END(conn);
  3512. }
  3513. return 0;
  3514. }
  3515. /** A second or more has elapsed: tell any interested control
  3516. * connections how much bandwidth we used. */
  3517. int
  3518. control_event_bandwidth_used(uint32_t n_read, uint32_t n_written)
  3519. {
  3520. if (EVENT_IS_INTERESTING(EVENT_BANDWIDTH_USED)) {
  3521. send_control_event(EVENT_BANDWIDTH_USED, ALL_FORMATS,
  3522. "650 BW %lu %lu\r\n",
  3523. (unsigned long)n_read,
  3524. (unsigned long)n_written);
  3525. }
  3526. return 0;
  3527. }
  3528. /** Called when we are sending a log message to the controllers: suspend
  3529. * sending further log messages to the controllers until we're done. Used by
  3530. * CONN_LOG_PROTECT. */
  3531. void
  3532. disable_control_logging(void)
  3533. {
  3534. ++disable_log_messages;
  3535. }
  3536. /** We're done sending a log message to the controllers: re-enable controller
  3537. * logging. Used by CONN_LOG_PROTECT. */
  3538. void
  3539. enable_control_logging(void)
  3540. {
  3541. if (--disable_log_messages < 0)
  3542. tor_assert(0);
  3543. }
  3544. /** We got a log message: tell any interested control connections. */
  3545. void
  3546. control_event_logmsg(int severity, uint32_t domain, const char *msg)
  3547. {
  3548. int event;
  3549. /* Don't even think of trying to add stuff to a buffer from a cpuworker
  3550. * thread. */
  3551. if (! in_main_thread())
  3552. return;
  3553. if (disable_log_messages)
  3554. return;
  3555. if (domain == LD_BUG && EVENT_IS_INTERESTING(EVENT_STATUS_GENERAL) &&
  3556. severity <= LOG_NOTICE) {
  3557. char *esc = esc_for_log(msg);
  3558. ++disable_log_messages;
  3559. control_event_general_status(severity, "BUG REASON=%s", esc);
  3560. --disable_log_messages;
  3561. tor_free(esc);
  3562. }
  3563. event = log_severity_to_event(severity);
  3564. if (event >= 0 && EVENT_IS_INTERESTING(event)) {
  3565. char *b = NULL;
  3566. const char *s;
  3567. if (strchr(msg, '\n')) {
  3568. char *cp;
  3569. b = tor_strdup(msg);
  3570. for (cp = b; *cp; ++cp)
  3571. if (*cp == '\r' || *cp == '\n')
  3572. *cp = ' ';
  3573. }
  3574. switch (severity) {
  3575. case LOG_DEBUG: s = "DEBUG"; break;
  3576. case LOG_INFO: s = "INFO"; break;
  3577. case LOG_NOTICE: s = "NOTICE"; break;
  3578. case LOG_WARN: s = "WARN"; break;
  3579. case LOG_ERR: s = "ERR"; break;
  3580. default: s = "UnknownLogSeverity"; break;
  3581. }
  3582. ++disable_log_messages;
  3583. send_control_event(event, ALL_FORMATS, "650 %s %s\r\n", s, b?b:msg);
  3584. --disable_log_messages;
  3585. tor_free(b);
  3586. }
  3587. }
  3588. /** Called whenever we receive new router descriptors: tell any
  3589. * interested control connections. <b>routers</b> is a list of
  3590. * routerinfo_t's.
  3591. */
  3592. int
  3593. control_event_descriptors_changed(smartlist_t *routers)
  3594. {
  3595. char *msg;
  3596. if (!EVENT_IS_INTERESTING(EVENT_NEW_DESC))
  3597. return 0;
  3598. {
  3599. smartlist_t *names = smartlist_new();
  3600. char *ids;
  3601. SMARTLIST_FOREACH(routers, routerinfo_t *, ri, {
  3602. char *b = tor_malloc(MAX_VERBOSE_NICKNAME_LEN+1);
  3603. router_get_verbose_nickname(b, ri);
  3604. smartlist_add(names, b);
  3605. });
  3606. ids = smartlist_join_strings(names, " ", 0, NULL);
  3607. tor_asprintf(&msg, "650 NEWDESC %s\r\n", ids);
  3608. send_control_event_string(EVENT_NEW_DESC, ALL_FORMATS, msg);
  3609. tor_free(ids);
  3610. tor_free(msg);
  3611. SMARTLIST_FOREACH(names, char *, cp, tor_free(cp));
  3612. smartlist_free(names);
  3613. }
  3614. return 0;
  3615. }
  3616. /** Called when an address mapping on <b>from</b> from changes to <b>to</b>.
  3617. * <b>expires</b> values less than 3 are special; see connection_edge.c. If
  3618. * <b>error</b> is non-NULL, it is an error code describing the failure
  3619. * mode of the mapping.
  3620. */
  3621. int
  3622. control_event_address_mapped(const char *from, const char *to, time_t expires,
  3623. const char *error)
  3624. {
  3625. if (!EVENT_IS_INTERESTING(EVENT_ADDRMAP))
  3626. return 0;
  3627. if (expires < 3 || expires == TIME_MAX)
  3628. send_control_event(EVENT_ADDRMAP, ALL_FORMATS,
  3629. "650 ADDRMAP %s %s NEVER %s\r\n", from, to,
  3630. error?error:"");
  3631. else {
  3632. char buf[ISO_TIME_LEN+1];
  3633. char buf2[ISO_TIME_LEN+1];
  3634. format_local_iso_time(buf,expires);
  3635. format_iso_time(buf2,expires);
  3636. send_control_event(EVENT_ADDRMAP, ALL_FORMATS,
  3637. "650 ADDRMAP %s %s \"%s\""
  3638. " %s%sEXPIRES=\"%s\"\r\n",
  3639. from, to, buf,
  3640. error?error:"", error?" ":"",
  3641. buf2);
  3642. }
  3643. return 0;
  3644. }
  3645. /** The authoritative dirserver has received a new descriptor that
  3646. * has passed basic syntax checks and is properly self-signed.
  3647. *
  3648. * Notify any interested party of the new descriptor and what has
  3649. * been done with it, and also optionally give an explanation/reason. */
  3650. int
  3651. control_event_or_authdir_new_descriptor(const char *action,
  3652. const char *desc, size_t desclen,
  3653. const char *msg)
  3654. {
  3655. char firstline[1024];
  3656. char *buf;
  3657. size_t totallen;
  3658. char *esc = NULL;
  3659. size_t esclen;
  3660. if (!EVENT_IS_INTERESTING(EVENT_AUTHDIR_NEWDESCS))
  3661. return 0;
  3662. tor_snprintf(firstline, sizeof(firstline),
  3663. "650+AUTHDIR_NEWDESC=\r\n%s\r\n%s\r\n",
  3664. action,
  3665. msg ? msg : "");
  3666. /* Escape the server descriptor properly */
  3667. esclen = write_escaped_data(desc, desclen, &esc);
  3668. totallen = strlen(firstline) + esclen + 1;
  3669. buf = tor_malloc(totallen);
  3670. strlcpy(buf, firstline, totallen);
  3671. strlcpy(buf+strlen(firstline), esc, totallen);
  3672. send_control_event_string(EVENT_AUTHDIR_NEWDESCS, ALL_FORMATS,
  3673. buf);
  3674. send_control_event_string(EVENT_AUTHDIR_NEWDESCS, ALL_FORMATS,
  3675. "650 OK\r\n");
  3676. tor_free(esc);
  3677. tor_free(buf);
  3678. return 0;
  3679. }
  3680. /** Helper function for NS-style events. Constructs and sends an event
  3681. * of type <b>event</b> with string <b>event_string</b> out of the set of
  3682. * networkstatuses <b>statuses</b>. Currently it is used for NS events
  3683. * and NEWCONSENSUS events. */
  3684. static int
  3685. control_event_networkstatus_changed_helper(smartlist_t *statuses,
  3686. uint16_t event,
  3687. const char *event_string)
  3688. {
  3689. smartlist_t *strs;
  3690. char *s, *esc = NULL;
  3691. if (!EVENT_IS_INTERESTING(event) || !smartlist_len(statuses))
  3692. return 0;
  3693. strs = smartlist_new();
  3694. smartlist_add(strs, tor_strdup("650+"));
  3695. smartlist_add(strs, tor_strdup(event_string));
  3696. smartlist_add(strs, tor_strdup("\r\n"));
  3697. SMARTLIST_FOREACH(statuses, const routerstatus_t *, rs,
  3698. {
  3699. s = networkstatus_getinfo_helper_single(rs);
  3700. if (!s) continue;
  3701. smartlist_add(strs, s);
  3702. });
  3703. s = smartlist_join_strings(strs, "", 0, NULL);
  3704. write_escaped_data(s, strlen(s), &esc);
  3705. SMARTLIST_FOREACH(strs, char *, cp, tor_free(cp));
  3706. smartlist_free(strs);
  3707. tor_free(s);
  3708. send_control_event_string(event, ALL_FORMATS, esc);
  3709. send_control_event_string(event, ALL_FORMATS,
  3710. "650 OK\r\n");
  3711. tor_free(esc);
  3712. return 0;
  3713. }
  3714. /** Called when the routerstatus_ts <b>statuses</b> have changed: sends
  3715. * an NS event to any controller that cares. */
  3716. int
  3717. control_event_networkstatus_changed(smartlist_t *statuses)
  3718. {
  3719. return control_event_networkstatus_changed_helper(statuses, EVENT_NS, "NS");
  3720. }
  3721. /** Called when we get a new consensus networkstatus. Sends a NEWCONSENSUS
  3722. * event consisting of an NS-style line for each relay in the consensus. */
  3723. int
  3724. control_event_newconsensus(const networkstatus_t *consensus)
  3725. {
  3726. if (!control_event_is_interesting(EVENT_NEWCONSENSUS))
  3727. return 0;
  3728. return control_event_networkstatus_changed_helper(
  3729. consensus->routerstatus_list, EVENT_NEWCONSENSUS, "NEWCONSENSUS");
  3730. }
  3731. /** Called when we compute a new circuitbuildtimeout */
  3732. int
  3733. control_event_buildtimeout_set(const circuit_build_times_t *cbt,
  3734. buildtimeout_set_event_t type)
  3735. {
  3736. const char *type_string = NULL;
  3737. double qnt;
  3738. if (!control_event_is_interesting(EVENT_BUILDTIMEOUT_SET))
  3739. return 0;
  3740. qnt = circuit_build_times_quantile_cutoff();
  3741. switch (type) {
  3742. case BUILDTIMEOUT_SET_EVENT_COMPUTED:
  3743. type_string = "COMPUTED";
  3744. break;
  3745. case BUILDTIMEOUT_SET_EVENT_RESET:
  3746. type_string = "RESET";
  3747. qnt = 1.0;
  3748. break;
  3749. case BUILDTIMEOUT_SET_EVENT_SUSPENDED:
  3750. type_string = "SUSPENDED";
  3751. qnt = 1.0;
  3752. break;
  3753. case BUILDTIMEOUT_SET_EVENT_DISCARD:
  3754. type_string = "DISCARD";
  3755. qnt = 1.0;
  3756. break;
  3757. case BUILDTIMEOUT_SET_EVENT_RESUME:
  3758. type_string = "RESUME";
  3759. break;
  3760. default:
  3761. type_string = "UNKNOWN";
  3762. break;
  3763. }
  3764. send_control_event(EVENT_BUILDTIMEOUT_SET, ALL_FORMATS,
  3765. "650 BUILDTIMEOUT_SET %s TOTAL_TIMES=%lu "
  3766. "TIMEOUT_MS=%lu XM=%lu ALPHA=%f CUTOFF_QUANTILE=%f "
  3767. "TIMEOUT_RATE=%f CLOSE_MS=%lu CLOSE_RATE=%f\r\n",
  3768. type_string, (unsigned long)cbt->total_build_times,
  3769. (unsigned long)cbt->timeout_ms,
  3770. (unsigned long)cbt->Xm, cbt->alpha, qnt,
  3771. circuit_build_times_timeout_rate(cbt),
  3772. (unsigned long)cbt->close_ms,
  3773. circuit_build_times_close_rate(cbt));
  3774. return 0;
  3775. }
  3776. /** Called when a signal has been processed from signal_callback */
  3777. int
  3778. control_event_signal(uintptr_t signal)
  3779. {
  3780. const char *signal_string = NULL;
  3781. if (!control_event_is_interesting(EVENT_SIGNAL))
  3782. return 0;
  3783. switch (signal) {
  3784. case SIGHUP:
  3785. signal_string = "RELOAD";
  3786. break;
  3787. case SIGUSR1:
  3788. signal_string = "DUMP";
  3789. break;
  3790. case SIGUSR2:
  3791. signal_string = "DEBUG";
  3792. break;
  3793. case SIGNEWNYM:
  3794. signal_string = "NEWNYM";
  3795. break;
  3796. case SIGCLEARDNSCACHE:
  3797. signal_string = "CLEARDNSCACHE";
  3798. break;
  3799. default:
  3800. log_warn(LD_BUG, "Unrecognized signal %lu in control_event_signal",
  3801. (unsigned long)signal);
  3802. return -1;
  3803. }
  3804. send_control_event(EVENT_SIGNAL, ALL_FORMATS, "650 SIGNAL %s\r\n",
  3805. signal_string);
  3806. return 0;
  3807. }
  3808. /** Called when a single local_routerstatus_t has changed: Sends an NS event
  3809. * to any controller that cares. */
  3810. int
  3811. control_event_networkstatus_changed_single(const routerstatus_t *rs)
  3812. {
  3813. smartlist_t *statuses;
  3814. int r;
  3815. if (!EVENT_IS_INTERESTING(EVENT_NS))
  3816. return 0;
  3817. statuses = smartlist_new();
  3818. smartlist_add(statuses, (void*)rs);
  3819. r = control_event_networkstatus_changed(statuses);
  3820. smartlist_free(statuses);
  3821. return r;
  3822. }
  3823. /** Our own router descriptor has changed; tell any controllers that care.
  3824. */
  3825. int
  3826. control_event_my_descriptor_changed(void)
  3827. {
  3828. send_control_event(EVENT_DESCCHANGED, ALL_FORMATS, "650 DESCCHANGED\r\n");
  3829. return 0;
  3830. }
  3831. /** Helper: sends a status event where <b>type</b> is one of
  3832. * EVENT_STATUS_{GENERAL,CLIENT,SERVER}, where <b>severity</b> is one of
  3833. * LOG_{NOTICE,WARN,ERR}, and where <b>format</b> is a printf-style format
  3834. * string corresponding to <b>args</b>. */
  3835. static int
  3836. control_event_status(int type, int severity, const char *format, va_list args)
  3837. {
  3838. char *user_buf = NULL;
  3839. char format_buf[160];
  3840. const char *status, *sev;
  3841. switch (type) {
  3842. case EVENT_STATUS_GENERAL:
  3843. status = "STATUS_GENERAL";
  3844. break;
  3845. case EVENT_STATUS_CLIENT:
  3846. status = "STATUS_CLIENT";
  3847. break;
  3848. case EVENT_STATUS_SERVER:
  3849. status = "STATUS_SERVER";
  3850. break;
  3851. default:
  3852. log_warn(LD_BUG, "Unrecognized status type %d", type);
  3853. return -1;
  3854. }
  3855. switch (severity) {
  3856. case LOG_NOTICE:
  3857. sev = "NOTICE";
  3858. break;
  3859. case LOG_WARN:
  3860. sev = "WARN";
  3861. break;
  3862. case LOG_ERR:
  3863. sev = "ERR";
  3864. break;
  3865. default:
  3866. log_warn(LD_BUG, "Unrecognized status severity %d", severity);
  3867. return -1;
  3868. }
  3869. if (tor_snprintf(format_buf, sizeof(format_buf), "650 %s %s",
  3870. status, sev)<0) {
  3871. log_warn(LD_BUG, "Format string too long.");
  3872. return -1;
  3873. }
  3874. tor_vasprintf(&user_buf, format, args);
  3875. send_control_event(type, ALL_FORMATS, "%s %s\r\n", format_buf, user_buf);
  3876. tor_free(user_buf);
  3877. return 0;
  3878. }
  3879. /** Format and send an EVENT_STATUS_GENERAL event whose main text is obtained
  3880. * by formatting the arguments using the printf-style <b>format</b>. */
  3881. int
  3882. control_event_general_status(int severity, const char *format, ...)
  3883. {
  3884. va_list ap;
  3885. int r;
  3886. if (!EVENT_IS_INTERESTING(EVENT_STATUS_GENERAL))
  3887. return 0;
  3888. va_start(ap, format);
  3889. r = control_event_status(EVENT_STATUS_GENERAL, severity, format, ap);
  3890. va_end(ap);
  3891. return r;
  3892. }
  3893. /** Format and send an EVENT_STATUS_CLIENT event whose main text is obtained
  3894. * by formatting the arguments using the printf-style <b>format</b>. */
  3895. int
  3896. control_event_client_status(int severity, const char *format, ...)
  3897. {
  3898. va_list ap;
  3899. int r;
  3900. if (!EVENT_IS_INTERESTING(EVENT_STATUS_CLIENT))
  3901. return 0;
  3902. va_start(ap, format);
  3903. r = control_event_status(EVENT_STATUS_CLIENT, severity, format, ap);
  3904. va_end(ap);
  3905. return r;
  3906. }
  3907. /** Format and send an EVENT_STATUS_SERVER event whose main text is obtained
  3908. * by formatting the arguments using the printf-style <b>format</b>. */
  3909. int
  3910. control_event_server_status(int severity, const char *format, ...)
  3911. {
  3912. va_list ap;
  3913. int r;
  3914. if (!EVENT_IS_INTERESTING(EVENT_STATUS_SERVER))
  3915. return 0;
  3916. va_start(ap, format);
  3917. r = control_event_status(EVENT_STATUS_SERVER, severity, format, ap);
  3918. va_end(ap);
  3919. return r;
  3920. }
  3921. /** Called when the status of an entry guard with the given <b>nickname</b>
  3922. * and identity <b>digest</b> has changed to <b>status</b>: tells any
  3923. * controllers that care. */
  3924. int
  3925. control_event_guard(const char *nickname, const char *digest,
  3926. const char *status)
  3927. {
  3928. char hbuf[HEX_DIGEST_LEN+1];
  3929. base16_encode(hbuf, sizeof(hbuf), digest, DIGEST_LEN);
  3930. if (!EVENT_IS_INTERESTING(EVENT_GUARD))
  3931. return 0;
  3932. {
  3933. char buf[MAX_VERBOSE_NICKNAME_LEN+1];
  3934. const node_t *node = node_get_by_id(digest);
  3935. if (node) {
  3936. node_get_verbose_nickname(node, buf);
  3937. } else {
  3938. tor_snprintf(buf, sizeof(buf), "$%s~%s", hbuf, nickname);
  3939. }
  3940. send_control_event(EVENT_GUARD, ALL_FORMATS,
  3941. "650 GUARD ENTRY %s %s\r\n", buf, status);
  3942. }
  3943. return 0;
  3944. }
  3945. /** Called when a configuration option changes. This is generally triggered
  3946. * by SETCONF requests and RELOAD/SIGHUP signals. The <b>elements</b> is
  3947. * a smartlist_t containing (key, value, ...) pairs in sequence.
  3948. * <b>value</b> can be NULL. */
  3949. int
  3950. control_event_conf_changed(smartlist_t *elements)
  3951. {
  3952. int i;
  3953. char *result;
  3954. smartlist_t *lines;
  3955. if (!EVENT_IS_INTERESTING(EVENT_CONF_CHANGED) ||
  3956. smartlist_len(elements) == 0) {
  3957. return 0;
  3958. }
  3959. lines = smartlist_new();
  3960. for (i = 0; i < smartlist_len(elements); i += 2) {
  3961. char *k = smartlist_get(elements, i);
  3962. char *v = smartlist_get(elements, i+1);
  3963. if (v == NULL) {
  3964. smartlist_add_asprintf(lines, "650-%s", k);
  3965. } else {
  3966. smartlist_add_asprintf(lines, "650-%s=%s", k, v);
  3967. }
  3968. }
  3969. result = smartlist_join_strings(lines, "\r\n", 0, NULL);
  3970. send_control_event(EVENT_CONF_CHANGED, 0,
  3971. "650-CONF_CHANGED\r\n%s\r\n650 OK\r\n", result);
  3972. tor_free(result);
  3973. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  3974. smartlist_free(lines);
  3975. return 0;
  3976. }
  3977. /** Helper: Return a newly allocated string containing a path to the
  3978. * file where we store our authentication cookie. */
  3979. static char *
  3980. get_cookie_file(void)
  3981. {
  3982. const or_options_t *options = get_options();
  3983. if (options->CookieAuthFile && strlen(options->CookieAuthFile)) {
  3984. return tor_strdup(options->CookieAuthFile);
  3985. } else {
  3986. return get_datadir_fname("control_auth_cookie");
  3987. }
  3988. }
  3989. /** Choose a random authentication cookie and write it to disk.
  3990. * Anybody who can read the cookie from disk will be considered
  3991. * authorized to use the control connection. Return -1 if we can't
  3992. * write the file, or 0 on success. */
  3993. int
  3994. init_cookie_authentication(int enabled)
  3995. {
  3996. char *fname;
  3997. if (!enabled) {
  3998. authentication_cookie_is_set = 0;
  3999. return 0;
  4000. }
  4001. /* We don't want to generate a new cookie every time we call
  4002. * options_act(). One should be enough. */
  4003. if (authentication_cookie_is_set)
  4004. return 0; /* all set */
  4005. fname = get_cookie_file();
  4006. crypto_rand(authentication_cookie, AUTHENTICATION_COOKIE_LEN);
  4007. authentication_cookie_is_set = 1;
  4008. if (write_bytes_to_file(fname, authentication_cookie,
  4009. AUTHENTICATION_COOKIE_LEN, 1)) {
  4010. log_warn(LD_FS,"Error writing authentication cookie to %s.",
  4011. escaped(fname));
  4012. tor_free(fname);
  4013. return -1;
  4014. }
  4015. #ifndef _WIN32
  4016. if (get_options()->CookieAuthFileGroupReadable) {
  4017. if (chmod(fname, 0640)) {
  4018. log_warn(LD_FS,"Unable to make %s group-readable.", escaped(fname));
  4019. }
  4020. }
  4021. #endif
  4022. tor_free(fname);
  4023. return 0;
  4024. }
  4025. /** A copy of the process specifier of Tor's owning controller, or
  4026. * NULL if this Tor instance is not currently owned by a process. */
  4027. static char *owning_controller_process_spec = NULL;
  4028. /** A process-termination monitor for Tor's owning controller, or NULL
  4029. * if this Tor instance is not currently owned by a process. */
  4030. static tor_process_monitor_t *owning_controller_process_monitor = NULL;
  4031. /** Process-termination monitor callback for Tor's owning controller
  4032. * process. */
  4033. static void
  4034. owning_controller_procmon_cb(void *unused)
  4035. {
  4036. (void)unused;
  4037. lost_owning_controller("process", "vanished");
  4038. }
  4039. /** Set <b>process_spec</b> as Tor's owning controller process.
  4040. * Exit on failure. */
  4041. void
  4042. monitor_owning_controller_process(const char *process_spec)
  4043. {
  4044. const char *msg;
  4045. tor_assert((owning_controller_process_spec == NULL) ==
  4046. (owning_controller_process_monitor == NULL));
  4047. if (owning_controller_process_spec != NULL) {
  4048. if ((process_spec != NULL) && !strcmp(process_spec,
  4049. owning_controller_process_spec)) {
  4050. /* Same process -- return now, instead of disposing of and
  4051. * recreating the process-termination monitor. */
  4052. return;
  4053. }
  4054. /* We are currently owned by a process, and we should no longer be
  4055. * owned by it. Free the process-termination monitor. */
  4056. tor_process_monitor_free(owning_controller_process_monitor);
  4057. owning_controller_process_monitor = NULL;
  4058. tor_free(owning_controller_process_spec);
  4059. owning_controller_process_spec = NULL;
  4060. }
  4061. tor_assert((owning_controller_process_spec == NULL) &&
  4062. (owning_controller_process_monitor == NULL));
  4063. if (process_spec == NULL)
  4064. return;
  4065. owning_controller_process_spec = tor_strdup(process_spec);
  4066. owning_controller_process_monitor =
  4067. tor_process_monitor_new(tor_libevent_get_base(),
  4068. owning_controller_process_spec,
  4069. LD_CONTROL,
  4070. owning_controller_procmon_cb, NULL,
  4071. &msg);
  4072. if (owning_controller_process_monitor == NULL) {
  4073. log_err(LD_BUG, "Couldn't create process-termination monitor for "
  4074. "owning controller: %s. Exiting.",
  4075. msg);
  4076. owning_controller_process_spec = NULL;
  4077. tor_cleanup();
  4078. exit(0);
  4079. }
  4080. }
  4081. /** Convert the name of a bootstrapping phase <b>s</b> into strings
  4082. * <b>tag</b> and <b>summary</b> suitable for display by the controller. */
  4083. static int
  4084. bootstrap_status_to_string(bootstrap_status_t s, const char **tag,
  4085. const char **summary)
  4086. {
  4087. switch (s) {
  4088. case BOOTSTRAP_STATUS_UNDEF:
  4089. *tag = "undef";
  4090. *summary = "Undefined";
  4091. break;
  4092. case BOOTSTRAP_STATUS_STARTING:
  4093. *tag = "starting";
  4094. *summary = "Starting";
  4095. break;
  4096. case BOOTSTRAP_STATUS_CONN_DIR:
  4097. *tag = "conn_dir";
  4098. *summary = "Connecting to directory server";
  4099. break;
  4100. case BOOTSTRAP_STATUS_HANDSHAKE:
  4101. *tag = "status_handshake";
  4102. *summary = "Finishing handshake";
  4103. break;
  4104. case BOOTSTRAP_STATUS_HANDSHAKE_DIR:
  4105. *tag = "handshake_dir";
  4106. *summary = "Finishing handshake with directory server";
  4107. break;
  4108. case BOOTSTRAP_STATUS_ONEHOP_CREATE:
  4109. *tag = "onehop_create";
  4110. *summary = "Establishing an encrypted directory connection";
  4111. break;
  4112. case BOOTSTRAP_STATUS_REQUESTING_STATUS:
  4113. *tag = "requesting_status";
  4114. *summary = "Asking for networkstatus consensus";
  4115. break;
  4116. case BOOTSTRAP_STATUS_LOADING_STATUS:
  4117. *tag = "loading_status";
  4118. *summary = "Loading networkstatus consensus";
  4119. break;
  4120. case BOOTSTRAP_STATUS_LOADING_KEYS:
  4121. *tag = "loading_keys";
  4122. *summary = "Loading authority key certs";
  4123. break;
  4124. case BOOTSTRAP_STATUS_REQUESTING_DESCRIPTORS:
  4125. *tag = "requesting_descriptors";
  4126. *summary = "Asking for relay descriptors";
  4127. break;
  4128. case BOOTSTRAP_STATUS_LOADING_DESCRIPTORS:
  4129. *tag = "loading_descriptors";
  4130. *summary = "Loading relay descriptors";
  4131. break;
  4132. case BOOTSTRAP_STATUS_CONN_OR:
  4133. *tag = "conn_or";
  4134. *summary = "Connecting to the Tor network";
  4135. break;
  4136. case BOOTSTRAP_STATUS_HANDSHAKE_OR:
  4137. *tag = "handshake_or";
  4138. *summary = "Finishing handshake with first hop";
  4139. break;
  4140. case BOOTSTRAP_STATUS_CIRCUIT_CREATE:
  4141. *tag = "circuit_create";
  4142. *summary = "Establishing a Tor circuit";
  4143. break;
  4144. case BOOTSTRAP_STATUS_DONE:
  4145. *tag = "done";
  4146. *summary = "Done";
  4147. break;
  4148. default:
  4149. // log_warn(LD_BUG, "Unrecognized bootstrap status code %d", s);
  4150. *tag = *summary = "unknown";
  4151. return -1;
  4152. }
  4153. return 0;
  4154. }
  4155. /** What percentage through the bootstrap process are we? We remember
  4156. * this so we can avoid sending redundant bootstrap status events, and
  4157. * so we can guess context for the bootstrap messages which are
  4158. * ambiguous. It starts at 'undef', but gets set to 'starting' while
  4159. * Tor initializes. */
  4160. static int bootstrap_percent = BOOTSTRAP_STATUS_UNDEF;
  4161. /** How many problems have we had getting to the next bootstrapping phase?
  4162. * These include failure to establish a connection to a Tor relay,
  4163. * failures to finish the TLS handshake, failures to validate the
  4164. * consensus document, etc. */
  4165. static int bootstrap_problems = 0;
  4166. /* We only tell the controller once we've hit a threshold of problems
  4167. * for the current phase. */
  4168. #define BOOTSTRAP_PROBLEM_THRESHOLD 10
  4169. /** Called when Tor has made progress at bootstrapping its directory
  4170. * information and initial circuits.
  4171. *
  4172. * <b>status</b> is the new status, that is, what task we will be doing
  4173. * next. <b>progress</b> is zero if we just started this task, else it
  4174. * represents progress on the task. */
  4175. void
  4176. control_event_bootstrap(bootstrap_status_t status, int progress)
  4177. {
  4178. const char *tag, *summary;
  4179. char buf[BOOTSTRAP_MSG_LEN];
  4180. if (bootstrap_percent == BOOTSTRAP_STATUS_DONE)
  4181. return; /* already bootstrapped; nothing to be done here. */
  4182. /* special case for handshaking status, since our TLS handshaking code
  4183. * can't distinguish what the connection is going to be for. */
  4184. if (status == BOOTSTRAP_STATUS_HANDSHAKE) {
  4185. if (bootstrap_percent < BOOTSTRAP_STATUS_CONN_OR) {
  4186. status = BOOTSTRAP_STATUS_HANDSHAKE_DIR;
  4187. } else {
  4188. status = BOOTSTRAP_STATUS_HANDSHAKE_OR;
  4189. }
  4190. }
  4191. if (status > bootstrap_percent ||
  4192. (progress && progress > bootstrap_percent)) {
  4193. bootstrap_status_to_string(status, &tag, &summary);
  4194. log(status ? LOG_NOTICE : LOG_INFO, LD_CONTROL,
  4195. "Bootstrapped %d%%: %s.", progress ? progress : status, summary);
  4196. tor_snprintf(buf, sizeof(buf),
  4197. "BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\"",
  4198. progress ? progress : status, tag, summary);
  4199. tor_snprintf(last_sent_bootstrap_message,
  4200. sizeof(last_sent_bootstrap_message),
  4201. "NOTICE %s", buf);
  4202. control_event_client_status(LOG_NOTICE, "%s", buf);
  4203. if (status > bootstrap_percent) {
  4204. bootstrap_percent = status; /* new milestone reached */
  4205. }
  4206. if (progress > bootstrap_percent) {
  4207. /* incremental progress within a milestone */
  4208. bootstrap_percent = progress;
  4209. bootstrap_problems = 0; /* Progress! Reset our problem counter. */
  4210. }
  4211. }
  4212. }
  4213. /** Called when Tor has failed to make bootstrapping progress in a way
  4214. * that indicates a problem. <b>warn</b> gives a hint as to why, and
  4215. * <b>reason</b> provides an "or_conn_end_reason" tag.
  4216. */
  4217. void
  4218. control_event_bootstrap_problem(const char *warn, int reason)
  4219. {
  4220. int status = bootstrap_percent;
  4221. const char *tag, *summary;
  4222. char buf[BOOTSTRAP_MSG_LEN];
  4223. const char *recommendation = "ignore";
  4224. int severity;
  4225. /* bootstrap_percent must not be in "undefined" state here. */
  4226. tor_assert(status >= 0);
  4227. if (bootstrap_percent == 100)
  4228. return; /* already bootstrapped; nothing to be done here. */
  4229. bootstrap_problems++;
  4230. if (bootstrap_problems >= BOOTSTRAP_PROBLEM_THRESHOLD)
  4231. recommendation = "warn";
  4232. if (reason == END_OR_CONN_REASON_NO_ROUTE)
  4233. recommendation = "warn";
  4234. if (get_options()->UseBridges &&
  4235. !any_bridge_descriptors_known() &&
  4236. !any_pending_bridge_descriptor_fetches())
  4237. recommendation = "warn";
  4238. while (status>=0 && bootstrap_status_to_string(status, &tag, &summary) < 0)
  4239. status--; /* find a recognized status string based on current progress */
  4240. status = bootstrap_percent; /* set status back to the actual number */
  4241. severity = !strcmp(recommendation, "warn") ? LOG_WARN : LOG_INFO;
  4242. log_fn(severity,
  4243. LD_CONTROL, "Problem bootstrapping. Stuck at %d%%: %s. (%s; %s; "
  4244. "count %d; recommendation %s)",
  4245. status, summary, warn,
  4246. orconn_end_reason_to_control_string(reason),
  4247. bootstrap_problems, recommendation);
  4248. connection_or_report_broken_states(severity, LD_HANDSHAKE);
  4249. tor_snprintf(buf, sizeof(buf),
  4250. "BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\" WARNING=\"%s\" REASON=%s "
  4251. "COUNT=%d RECOMMENDATION=%s",
  4252. bootstrap_percent, tag, summary, warn,
  4253. orconn_end_reason_to_control_string(reason), bootstrap_problems,
  4254. recommendation);
  4255. tor_snprintf(last_sent_bootstrap_message,
  4256. sizeof(last_sent_bootstrap_message),
  4257. "WARN %s", buf);
  4258. control_event_client_status(LOG_WARN, "%s", buf);
  4259. }
  4260. /** We just generated a new summary of which countries we've seen clients
  4261. * from recently. Send a copy to the controller in case it wants to
  4262. * display it for the user. */
  4263. void
  4264. control_event_clients_seen(const char *controller_str)
  4265. {
  4266. send_control_event(EVENT_CLIENTS_SEEN, 0,
  4267. "650 CLIENTS_SEEN %s\r\n", controller_str);
  4268. }