control.c 175 KB

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