control.c 145 KB

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