control.c 135 KB

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