main.c 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2017, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file main.c
  8. * \brief Toplevel module. Handles signals, multiplexes between
  9. * connections, implements main loop, and drives scheduled events.
  10. *
  11. * For the main loop itself; see run_main_loop_once(). It invokes the rest of
  12. * Tor mostly through Libevent callbacks. Libevent callbacks can happen when
  13. * a timer elapses, a signal is received, a socket is ready to read or write,
  14. * or an event is manually activated.
  15. *
  16. * Most events in Tor are driven from these callbacks:
  17. * <ul>
  18. * <li>conn_read_callback() and conn_write_callback() here, which are
  19. * invoked when a socket is ready to read or write respectively.
  20. * <li>signal_callback(), which handles incoming signals.
  21. * </ul>
  22. * Other events are used for specific purposes, or for building more complex
  23. * control structures. If you search for usage of tor_libevent_new(), you
  24. * will find all the events that we construct in Tor.
  25. *
  26. * Tor has numerous housekeeping operations that need to happen
  27. * regularly. They are handled in different ways:
  28. * <ul>
  29. * <li>The most frequent operations are handled after every read or write
  30. * event, at the end of connection_handle_read() and
  31. * connection_handle_write().
  32. *
  33. * <li>The next most frequent operations happen after each invocation of the
  34. * main loop, in run_main_loop_once().
  35. *
  36. * <li>Once per second, we run all of the operations listed in
  37. * second_elapsed_callback(), and in its child, run_scheduled_events().
  38. *
  39. * <li>Once-a-second operations are handled in second_elapsed_callback().
  40. *
  41. * <li>More infrequent operations take place based on the periodic event
  42. * driver in periodic.c . These are stored in the periodic_events[]
  43. * table.
  44. * </ul>
  45. *
  46. **/
  47. #define MAIN_PRIVATE
  48. #include "or.h"
  49. #include "addressmap.h"
  50. #include "backtrace.h"
  51. #include "bridges.h"
  52. #include "buffers.h"
  53. #include "buffers_tls.h"
  54. #include "channel.h"
  55. #include "channeltls.h"
  56. #include "channelpadding.h"
  57. #include "circuitbuild.h"
  58. #include "circuitlist.h"
  59. #include "circuituse.h"
  60. #include "command.h"
  61. #include "compress.h"
  62. #include "config.h"
  63. #include "confparse.h"
  64. #include "connection.h"
  65. #include "connection_edge.h"
  66. #include "connection_or.h"
  67. #include "consdiffmgr.h"
  68. #include "control.h"
  69. #include "cpuworker.h"
  70. #include "crypto_s2k.h"
  71. #include "directory.h"
  72. #include "dirserv.h"
  73. #include "dirvote.h"
  74. #include "dns.h"
  75. #include "dnsserv.h"
  76. #include "dos.h"
  77. #include "entrynodes.h"
  78. #include "geoip.h"
  79. #include "hibernate.h"
  80. #include "hs_cache.h"
  81. #include "hs_circuitmap.h"
  82. #include "hs_client.h"
  83. #include "keypin.h"
  84. #include "main.h"
  85. #include "microdesc.h"
  86. #include "networkstatus.h"
  87. #include "nodelist.h"
  88. #include "ntmain.h"
  89. #include "onion.h"
  90. #include "periodic.h"
  91. #include "policies.h"
  92. #include "protover.h"
  93. #include "transports.h"
  94. #include "relay.h"
  95. #include "rendclient.h"
  96. #include "rendcommon.h"
  97. #include "rendservice.h"
  98. #include "rephist.h"
  99. #include "router.h"
  100. #include "routerkeys.h"
  101. #include "routerlist.h"
  102. #include "routerparse.h"
  103. #include "scheduler.h"
  104. #include "shared_random.h"
  105. #include "statefile.h"
  106. #include "status.h"
  107. #include "tor_api.h"
  108. #include "tor_api_internal.h"
  109. #include "util_process.h"
  110. #include "ext_orport.h"
  111. #ifdef USE_DMALLOC
  112. #include <dmalloc.h>
  113. #endif
  114. #include "memarea.h"
  115. #include "sandbox.h"
  116. #include <event2/event.h>
  117. #ifdef HAVE_SYSTEMD
  118. # if defined(__COVERITY__) && !defined(__INCLUDE_LEVEL__)
  119. /* Systemd's use of gcc's __INCLUDE_LEVEL__ extension macro appears to confuse
  120. * Coverity. Here's a kludge to unconfuse it.
  121. */
  122. # define __INCLUDE_LEVEL__ 2
  123. #endif /* defined(__COVERITY__) && !defined(__INCLUDE_LEVEL__) */
  124. #include <systemd/sd-daemon.h>
  125. #endif /* defined(HAVE_SYSTEMD) */
  126. void evdns_shutdown(int);
  127. #ifdef HAVE_RUST
  128. // helper function defined in Rust to output a log message indicating if tor is
  129. // running with Rust enabled. See src/rust/tor_util
  130. void rust_log_welcome_string(void);
  131. #endif
  132. /********* PROTOTYPES **********/
  133. static void dumpmemusage(int severity);
  134. static void dumpstats(int severity); /* log stats */
  135. static void conn_read_callback(evutil_socket_t fd, short event, void *_conn);
  136. static void conn_write_callback(evutil_socket_t fd, short event, void *_conn);
  137. static void second_elapsed_callback(periodic_timer_t *timer, void *args);
  138. static int conn_close_if_marked(int i);
  139. static void connection_start_reading_from_linked_conn(connection_t *conn);
  140. static int connection_should_read_from_linked_conn(connection_t *conn);
  141. static int run_main_loop_until_done(void);
  142. static void process_signal(int sig);
  143. static void shutdown_did_not_work_callback(evutil_socket_t fd, short event,
  144. void *arg) ATTR_NORETURN;
  145. /********* START VARIABLES **********/
  146. int global_read_bucket; /**< Max number of bytes I can read this second. */
  147. int global_write_bucket; /**< Max number of bytes I can write this second. */
  148. /** Max number of relayed (bandwidth class 1) bytes I can read this second. */
  149. int global_relayed_read_bucket;
  150. /** Max number of relayed (bandwidth class 1) bytes I can write this second. */
  151. int global_relayed_write_bucket;
  152. /** What was the read bucket before the last second_elapsed_callback() call?
  153. * (used to determine how many bytes we've read). */
  154. static int stats_prev_global_read_bucket;
  155. /** What was the write bucket before the last second_elapsed_callback() call?
  156. * (used to determine how many bytes we've written). */
  157. static int stats_prev_global_write_bucket;
  158. /* DOCDOC stats_prev_n_read */
  159. static uint64_t stats_prev_n_read = 0;
  160. /* DOCDOC stats_prev_n_written */
  161. static uint64_t stats_prev_n_written = 0;
  162. /* XXX we might want to keep stats about global_relayed_*_bucket too. Or not.*/
  163. /** How many bytes have we read since we started the process? */
  164. static uint64_t stats_n_bytes_read = 0;
  165. /** How many bytes have we written since we started the process? */
  166. static uint64_t stats_n_bytes_written = 0;
  167. /** What time did this process start up? */
  168. time_t time_of_process_start = 0;
  169. /** How many seconds have we been running? */
  170. static long stats_n_seconds_working = 0;
  171. /** How many times have we returned from the main loop successfully? */
  172. static uint64_t stats_n_main_loop_successes = 0;
  173. /** How many times have we received an error from the main loop? */
  174. static uint64_t stats_n_main_loop_errors = 0;
  175. /** How many times have we returned from the main loop with no events. */
  176. static uint64_t stats_n_main_loop_idle = 0;
  177. /** How often will we honor SIGNEWNYM requests? */
  178. #define MAX_SIGNEWNYM_RATE 10
  179. /** When did we last process a SIGNEWNYM request? */
  180. static time_t time_of_last_signewnym = 0;
  181. /** Is there a signewnym request we're currently waiting to handle? */
  182. static int signewnym_is_pending = 0;
  183. /** How many times have we called newnym? */
  184. static unsigned newnym_epoch = 0;
  185. /** Smartlist of all open connections. */
  186. STATIC smartlist_t *connection_array = NULL;
  187. /** List of connections that have been marked for close and need to be freed
  188. * and removed from connection_array. */
  189. static smartlist_t *closeable_connection_lst = NULL;
  190. /** List of linked connections that are currently reading data into their
  191. * inbuf from their partner's outbuf. */
  192. static smartlist_t *active_linked_connection_lst = NULL;
  193. /** Flag: Set to true iff we entered the current libevent main loop via
  194. * <b>loop_once</b>. If so, there's no need to trigger a loopexit in order
  195. * to handle linked connections. */
  196. static int called_loop_once = 0;
  197. /** Flag: if true, it's time to shut down, so the main loop should exit as
  198. * soon as possible.
  199. */
  200. static int main_loop_should_exit = 0;
  201. /** The return value that the main loop should yield when it exits, if
  202. * main_loop_should_exit is true.
  203. */
  204. static int main_loop_exit_value = 0;
  205. /** We set this to 1 when we've opened a circuit, so we can print a log
  206. * entry to inform the user that Tor is working. We set it to 0 when
  207. * we think the fact that we once opened a circuit doesn't mean we can do so
  208. * any longer (a big time jump happened, when we notice our directory is
  209. * heinously out-of-date, etc.
  210. */
  211. static int can_complete_circuits = 0;
  212. /** How often do we check for router descriptors that we should download
  213. * when we have too little directory info? */
  214. #define GREEDY_DESCRIPTOR_RETRY_INTERVAL (10)
  215. /** How often do we check for router descriptors that we should download
  216. * when we have enough directory info? */
  217. #define LAZY_DESCRIPTOR_RETRY_INTERVAL (60)
  218. /** Decides our behavior when no logs are configured/before any
  219. * logs have been configured. For 0, we log notice to stdout as normal.
  220. * For 1, we log warnings only. For 2, we log nothing.
  221. */
  222. int quiet_level = 0;
  223. /********* END VARIABLES ************/
  224. /****************************************************************************
  225. *
  226. * This section contains accessors and other methods on the connection_array
  227. * variables (which are global within this file and unavailable outside it).
  228. *
  229. ****************************************************************************/
  230. /** Return 1 if we have successfully built a circuit, and nothing has changed
  231. * to make us think that maybe we can't.
  232. */
  233. int
  234. have_completed_a_circuit(void)
  235. {
  236. return can_complete_circuits;
  237. }
  238. /** Note that we have successfully built a circuit, so that reachability
  239. * testing and introduction points and so on may be attempted. */
  240. void
  241. note_that_we_completed_a_circuit(void)
  242. {
  243. can_complete_circuits = 1;
  244. }
  245. /** Note that something has happened (like a clock jump, or DisableNetwork) to
  246. * make us think that maybe we can't complete circuits. */
  247. void
  248. note_that_we_maybe_cant_complete_circuits(void)
  249. {
  250. can_complete_circuits = 0;
  251. }
  252. /** Add <b>conn</b> to the array of connections that we can poll on. The
  253. * connection's socket must be set; the connection starts out
  254. * non-reading and non-writing.
  255. */
  256. int
  257. connection_add_impl(connection_t *conn, int is_connecting)
  258. {
  259. tor_assert(conn);
  260. tor_assert(SOCKET_OK(conn->s) ||
  261. conn->linked ||
  262. (conn->type == CONN_TYPE_AP &&
  263. TO_EDGE_CONN(conn)->is_dns_request));
  264. tor_assert(conn->conn_array_index == -1); /* can only connection_add once */
  265. conn->conn_array_index = smartlist_len(connection_array);
  266. smartlist_add(connection_array, conn);
  267. (void) is_connecting;
  268. if (SOCKET_OK(conn->s) || conn->linked) {
  269. conn->read_event = tor_event_new(tor_libevent_get_base(),
  270. conn->s, EV_READ|EV_PERSIST, conn_read_callback, conn);
  271. conn->write_event = tor_event_new(tor_libevent_get_base(),
  272. conn->s, EV_WRITE|EV_PERSIST, conn_write_callback, conn);
  273. /* XXXX CHECK FOR NULL RETURN! */
  274. }
  275. log_debug(LD_NET,"new conn type %s, socket %d, address %s, n_conns %d.",
  276. conn_type_to_string(conn->type), (int)conn->s, conn->address,
  277. smartlist_len(connection_array));
  278. return 0;
  279. }
  280. /** Tell libevent that we don't care about <b>conn</b> any more. */
  281. void
  282. connection_unregister_events(connection_t *conn)
  283. {
  284. if (conn->read_event) {
  285. if (event_del(conn->read_event))
  286. log_warn(LD_BUG, "Error removing read event for %d", (int)conn->s);
  287. tor_free(conn->read_event);
  288. }
  289. if (conn->write_event) {
  290. if (event_del(conn->write_event))
  291. log_warn(LD_BUG, "Error removing write event for %d", (int)conn->s);
  292. tor_free(conn->write_event);
  293. }
  294. if (conn->type == CONN_TYPE_AP_DNS_LISTENER) {
  295. dnsserv_close_listener(conn);
  296. }
  297. }
  298. /** Remove the connection from the global list, and remove the
  299. * corresponding poll entry. Calling this function will shift the last
  300. * connection (if any) into the position occupied by conn.
  301. */
  302. int
  303. connection_remove(connection_t *conn)
  304. {
  305. int current_index;
  306. connection_t *tmp;
  307. tor_assert(conn);
  308. log_debug(LD_NET,"removing socket %d (type %s), n_conns now %d",
  309. (int)conn->s, conn_type_to_string(conn->type),
  310. smartlist_len(connection_array));
  311. if (conn->type == CONN_TYPE_AP && conn->socket_family == AF_UNIX) {
  312. log_info(LD_NET, "Closing SOCKS Unix socket connection");
  313. }
  314. control_event_conn_bandwidth(conn);
  315. tor_assert(conn->conn_array_index >= 0);
  316. current_index = conn->conn_array_index;
  317. connection_unregister_events(conn); /* This is redundant, but cheap. */
  318. if (current_index == smartlist_len(connection_array)-1) { /* at the end */
  319. smartlist_del(connection_array, current_index);
  320. return 0;
  321. }
  322. /* replace this one with the one at the end */
  323. smartlist_del(connection_array, current_index);
  324. tmp = smartlist_get(connection_array, current_index);
  325. tmp->conn_array_index = current_index;
  326. return 0;
  327. }
  328. /** If <b>conn</b> is an edge conn, remove it from the list
  329. * of conn's on this circuit. If it's not on an edge,
  330. * flush and send destroys for all circuits on this conn.
  331. *
  332. * Remove it from connection_array (if applicable) and
  333. * from closeable_connection_list.
  334. *
  335. * Then free it.
  336. */
  337. static void
  338. connection_unlink(connection_t *conn)
  339. {
  340. connection_about_to_close_connection(conn);
  341. if (conn->conn_array_index >= 0) {
  342. connection_remove(conn);
  343. }
  344. if (conn->linked_conn) {
  345. conn->linked_conn->linked_conn = NULL;
  346. if (! conn->linked_conn->marked_for_close &&
  347. conn->linked_conn->reading_from_linked_conn)
  348. connection_start_reading(conn->linked_conn);
  349. conn->linked_conn = NULL;
  350. }
  351. smartlist_remove(closeable_connection_lst, conn);
  352. smartlist_remove(active_linked_connection_lst, conn);
  353. if (conn->type == CONN_TYPE_EXIT) {
  354. assert_connection_edge_not_dns_pending(TO_EDGE_CONN(conn));
  355. }
  356. if (conn->type == CONN_TYPE_OR) {
  357. if (!tor_digest_is_zero(TO_OR_CONN(conn)->identity_digest))
  358. connection_or_clear_identity(TO_OR_CONN(conn));
  359. /* connection_unlink() can only get called if the connection
  360. * was already on the closeable list, and it got there by
  361. * connection_mark_for_close(), which was called from
  362. * connection_or_close_normally() or
  363. * connection_or_close_for_error(), so the channel should
  364. * already be in CHANNEL_STATE_CLOSING, and then the
  365. * connection_about_to_close_connection() goes to
  366. * connection_or_about_to_close(), which calls channel_closed()
  367. * to notify the channel_t layer, and closed the channel, so
  368. * nothing more to do here to deal with the channel associated
  369. * with an orconn.
  370. */
  371. }
  372. connection_free(conn);
  373. }
  374. /** Initialize the global connection list, closeable connection list,
  375. * and active connection list. */
  376. STATIC void
  377. init_connection_lists(void)
  378. {
  379. if (!connection_array)
  380. connection_array = smartlist_new();
  381. if (!closeable_connection_lst)
  382. closeable_connection_lst = smartlist_new();
  383. if (!active_linked_connection_lst)
  384. active_linked_connection_lst = smartlist_new();
  385. }
  386. /** Schedule <b>conn</b> to be closed. **/
  387. void
  388. add_connection_to_closeable_list(connection_t *conn)
  389. {
  390. tor_assert(!smartlist_contains(closeable_connection_lst, conn));
  391. tor_assert(conn->marked_for_close);
  392. assert_connection_ok(conn, time(NULL));
  393. smartlist_add(closeable_connection_lst, conn);
  394. }
  395. /** Return 1 if conn is on the closeable list, else return 0. */
  396. int
  397. connection_is_on_closeable_list(connection_t *conn)
  398. {
  399. return smartlist_contains(closeable_connection_lst, conn);
  400. }
  401. /** Return true iff conn is in the current poll array. */
  402. int
  403. connection_in_array(connection_t *conn)
  404. {
  405. return smartlist_contains(connection_array, conn);
  406. }
  407. /** Set <b>*array</b> to an array of all connections. <b>*array</b> must not
  408. * be modified.
  409. */
  410. MOCK_IMPL(smartlist_t *,
  411. get_connection_array, (void))
  412. {
  413. if (!connection_array)
  414. connection_array = smartlist_new();
  415. return connection_array;
  416. }
  417. /** Provides the traffic read and written over the life of the process. */
  418. MOCK_IMPL(uint64_t,
  419. get_bytes_read,(void))
  420. {
  421. return stats_n_bytes_read;
  422. }
  423. /* DOCDOC get_bytes_written */
  424. MOCK_IMPL(uint64_t,
  425. get_bytes_written,(void))
  426. {
  427. return stats_n_bytes_written;
  428. }
  429. /** Set the event mask on <b>conn</b> to <b>events</b>. (The event
  430. * mask is a bitmask whose bits are READ_EVENT and WRITE_EVENT)
  431. */
  432. void
  433. connection_watch_events(connection_t *conn, watchable_events_t events)
  434. {
  435. if (events & READ_EVENT)
  436. connection_start_reading(conn);
  437. else
  438. connection_stop_reading(conn);
  439. if (events & WRITE_EVENT)
  440. connection_start_writing(conn);
  441. else
  442. connection_stop_writing(conn);
  443. }
  444. /** Return true iff <b>conn</b> is listening for read events. */
  445. int
  446. connection_is_reading(connection_t *conn)
  447. {
  448. tor_assert(conn);
  449. return conn->reading_from_linked_conn ||
  450. (conn->read_event && event_pending(conn->read_event, EV_READ, NULL));
  451. }
  452. /** Reset our main loop counters. */
  453. void
  454. reset_main_loop_counters(void)
  455. {
  456. stats_n_main_loop_successes = 0;
  457. stats_n_main_loop_errors = 0;
  458. stats_n_main_loop_idle = 0;
  459. }
  460. /** Increment the main loop success counter. */
  461. static void
  462. increment_main_loop_success_count(void)
  463. {
  464. ++stats_n_main_loop_successes;
  465. }
  466. /** Get the main loop success counter. */
  467. uint64_t
  468. get_main_loop_success_count(void)
  469. {
  470. return stats_n_main_loop_successes;
  471. }
  472. /** Increment the main loop error counter. */
  473. static void
  474. increment_main_loop_error_count(void)
  475. {
  476. ++stats_n_main_loop_errors;
  477. }
  478. /** Get the main loop error counter. */
  479. uint64_t
  480. get_main_loop_error_count(void)
  481. {
  482. return stats_n_main_loop_errors;
  483. }
  484. /** Increment the main loop idle counter. */
  485. static void
  486. increment_main_loop_idle_count(void)
  487. {
  488. ++stats_n_main_loop_idle;
  489. }
  490. /** Get the main loop idle counter. */
  491. uint64_t
  492. get_main_loop_idle_count(void)
  493. {
  494. return stats_n_main_loop_idle;
  495. }
  496. /** Check whether <b>conn</b> is correct in having (or not having) a
  497. * read/write event (passed in <b>ev</b>). On success, return 0. On failure,
  498. * log a warning and return -1. */
  499. static int
  500. connection_check_event(connection_t *conn, struct event *ev)
  501. {
  502. int bad;
  503. if (conn->type == CONN_TYPE_AP && TO_EDGE_CONN(conn)->is_dns_request) {
  504. /* DNS requests which we launch through the dnsserv.c module do not have
  505. * any underlying socket or any underlying linked connection, so they
  506. * shouldn't have any attached events either.
  507. */
  508. bad = ev != NULL;
  509. } else {
  510. /* Everything else should have an underlying socket, or a linked
  511. * connection (which is also tracked with a read_event/write_event pair).
  512. */
  513. bad = ev == NULL;
  514. }
  515. if (bad) {
  516. log_warn(LD_BUG, "Event missing on connection %p [%s;%s]. "
  517. "socket=%d. linked=%d. "
  518. "is_dns_request=%d. Marked_for_close=%s:%d",
  519. conn,
  520. conn_type_to_string(conn->type),
  521. conn_state_to_string(conn->type, conn->state),
  522. (int)conn->s, (int)conn->linked,
  523. (conn->type == CONN_TYPE_AP &&
  524. TO_EDGE_CONN(conn)->is_dns_request),
  525. conn->marked_for_close_file ? conn->marked_for_close_file : "-",
  526. conn->marked_for_close
  527. );
  528. log_backtrace(LOG_WARN, LD_BUG, "Backtrace attached.");
  529. return -1;
  530. }
  531. return 0;
  532. }
  533. /** Tell the main loop to stop notifying <b>conn</b> of any read events. */
  534. MOCK_IMPL(void,
  535. connection_stop_reading,(connection_t *conn))
  536. {
  537. tor_assert(conn);
  538. if (connection_check_event(conn, conn->read_event) < 0) {
  539. return;
  540. }
  541. if (conn->linked) {
  542. conn->reading_from_linked_conn = 0;
  543. connection_stop_reading_from_linked_conn(conn);
  544. } else {
  545. if (event_del(conn->read_event))
  546. log_warn(LD_NET, "Error from libevent setting read event state for %d "
  547. "to unwatched: %s",
  548. (int)conn->s,
  549. tor_socket_strerror(tor_socket_errno(conn->s)));
  550. }
  551. }
  552. /** Tell the main loop to start notifying <b>conn</b> of any read events. */
  553. MOCK_IMPL(void,
  554. connection_start_reading,(connection_t *conn))
  555. {
  556. tor_assert(conn);
  557. if (connection_check_event(conn, conn->read_event) < 0) {
  558. return;
  559. }
  560. if (conn->linked) {
  561. conn->reading_from_linked_conn = 1;
  562. if (connection_should_read_from_linked_conn(conn))
  563. connection_start_reading_from_linked_conn(conn);
  564. } else {
  565. if (event_add(conn->read_event, NULL))
  566. log_warn(LD_NET, "Error from libevent setting read event state for %d "
  567. "to watched: %s",
  568. (int)conn->s,
  569. tor_socket_strerror(tor_socket_errno(conn->s)));
  570. }
  571. }
  572. /** Return true iff <b>conn</b> is listening for write events. */
  573. int
  574. connection_is_writing(connection_t *conn)
  575. {
  576. tor_assert(conn);
  577. return conn->writing_to_linked_conn ||
  578. (conn->write_event && event_pending(conn->write_event, EV_WRITE, NULL));
  579. }
  580. /** Tell the main loop to stop notifying <b>conn</b> of any write events. */
  581. MOCK_IMPL(void,
  582. connection_stop_writing,(connection_t *conn))
  583. {
  584. tor_assert(conn);
  585. if (connection_check_event(conn, conn->write_event) < 0) {
  586. return;
  587. }
  588. if (conn->linked) {
  589. conn->writing_to_linked_conn = 0;
  590. if (conn->linked_conn)
  591. connection_stop_reading_from_linked_conn(conn->linked_conn);
  592. } else {
  593. if (event_del(conn->write_event))
  594. log_warn(LD_NET, "Error from libevent setting write event state for %d "
  595. "to unwatched: %s",
  596. (int)conn->s,
  597. tor_socket_strerror(tor_socket_errno(conn->s)));
  598. }
  599. }
  600. /** Tell the main loop to start notifying <b>conn</b> of any write events. */
  601. MOCK_IMPL(void,
  602. connection_start_writing,(connection_t *conn))
  603. {
  604. tor_assert(conn);
  605. if (connection_check_event(conn, conn->write_event) < 0) {
  606. return;
  607. }
  608. if (conn->linked) {
  609. conn->writing_to_linked_conn = 1;
  610. if (conn->linked_conn &&
  611. connection_should_read_from_linked_conn(conn->linked_conn))
  612. connection_start_reading_from_linked_conn(conn->linked_conn);
  613. } else {
  614. if (event_add(conn->write_event, NULL))
  615. log_warn(LD_NET, "Error from libevent setting write event state for %d "
  616. "to watched: %s",
  617. (int)conn->s,
  618. tor_socket_strerror(tor_socket_errno(conn->s)));
  619. }
  620. }
  621. /** Return true iff <b>conn</b> is linked conn, and reading from the conn
  622. * linked to it would be good and feasible. (Reading is "feasible" if the
  623. * other conn exists and has data in its outbuf, and is "good" if we have our
  624. * reading_from_linked_conn flag set and the other conn has its
  625. * writing_to_linked_conn flag set.)*/
  626. static int
  627. connection_should_read_from_linked_conn(connection_t *conn)
  628. {
  629. if (conn->linked && conn->reading_from_linked_conn) {
  630. if (! conn->linked_conn ||
  631. (conn->linked_conn->writing_to_linked_conn &&
  632. buf_datalen(conn->linked_conn->outbuf)))
  633. return 1;
  634. }
  635. return 0;
  636. }
  637. /** If we called event_base_loop() and told it to never stop until it
  638. * runs out of events, now we've changed our mind: tell it we want it to
  639. * exit once the current round of callbacks is done, so that we can
  640. * run external code, and then return to the main loop. */
  641. void
  642. tell_event_loop_to_run_external_code(void)
  643. {
  644. if (!called_loop_once) {
  645. struct timeval tv = { 0, 0 };
  646. tor_libevent_exit_loop_after_delay(tor_libevent_get_base(), &tv);
  647. called_loop_once = 1; /* hack to avoid adding more exit events */
  648. }
  649. }
  650. /** Event to run 'shutdown did not work callback'. */
  651. static struct event *shutdown_did_not_work_event = NULL;
  652. /** Failsafe measure that should never actually be necessary: If
  653. * tor_shutdown_event_loop_and_exit() somehow doesn't successfully exit the
  654. * event loop, then this callback will kill Tor with an assertion failure
  655. * seconds later
  656. */
  657. static void
  658. shutdown_did_not_work_callback(evutil_socket_t fd, short event, void *arg)
  659. {
  660. // LCOV_EXCL_START
  661. (void) fd;
  662. (void) event;
  663. (void) arg;
  664. tor_assert_unreached();
  665. // LCOV_EXCL_STOP
  666. }
  667. #ifdef ENABLE_RESTART_DEBUGGING
  668. static struct event *tor_shutdown_event_loop_for_restart_event = NULL;
  669. static void
  670. tor_shutdown_event_loop_for_restart_cb(
  671. evutil_socket_t fd, short event, void *arg)
  672. {
  673. (void)fd;
  674. (void)event;
  675. (void)arg;
  676. tor_event_free(tor_shutdown_event_loop_for_restart_event);
  677. tor_shutdown_event_loop_and_exit(0);
  678. }
  679. #endif
  680. /**
  681. * After finishing the current callback (if any), shut down the main loop,
  682. * clean up the process, and exit with <b>exitcode</b>.
  683. */
  684. void
  685. tor_shutdown_event_loop_and_exit(int exitcode)
  686. {
  687. if (main_loop_should_exit)
  688. return; /* Ignore multiple calls to this function. */
  689. main_loop_should_exit = 1;
  690. main_loop_exit_value = exitcode;
  691. /* Die with an assertion failure in ten seconds, if for some reason we don't
  692. * exit normally. */
  693. /* XXXX We should consider this code if it's never used. */
  694. struct timeval ten_seconds = { 10, 0 };
  695. shutdown_did_not_work_event = tor_evtimer_new(
  696. tor_libevent_get_base(),
  697. shutdown_did_not_work_callback, NULL);
  698. event_add(shutdown_did_not_work_event, &ten_seconds);
  699. /* Unlike exit_loop_after_delay(), exit_loop_after_callback
  700. * prevents other callbacks from running. */
  701. tor_libevent_exit_loop_after_callback(tor_libevent_get_base());
  702. }
  703. /** Return true iff tor_shutdown_event_loop_and_exit() has been called. */
  704. int
  705. tor_event_loop_shutdown_is_pending(void)
  706. {
  707. return main_loop_should_exit;
  708. }
  709. /** Helper: Tell the main loop to begin reading bytes into <b>conn</b> from
  710. * its linked connection, if it is not doing so already. Called by
  711. * connection_start_reading and connection_start_writing as appropriate. */
  712. static void
  713. connection_start_reading_from_linked_conn(connection_t *conn)
  714. {
  715. tor_assert(conn);
  716. tor_assert(conn->linked == 1);
  717. if (!conn->active_on_link) {
  718. conn->active_on_link = 1;
  719. smartlist_add(active_linked_connection_lst, conn);
  720. /* make sure that the event_base_loop() function exits at
  721. * the end of its run through the current connections, so we can
  722. * activate read events for linked connections. */
  723. tell_event_loop_to_run_external_code();
  724. } else {
  725. tor_assert(smartlist_contains(active_linked_connection_lst, conn));
  726. }
  727. }
  728. /** Tell the main loop to stop reading bytes into <b>conn</b> from its linked
  729. * connection, if is currently doing so. Called by connection_stop_reading,
  730. * connection_stop_writing, and connection_read. */
  731. void
  732. connection_stop_reading_from_linked_conn(connection_t *conn)
  733. {
  734. tor_assert(conn);
  735. tor_assert(conn->linked == 1);
  736. if (conn->active_on_link) {
  737. conn->active_on_link = 0;
  738. /* FFFF We could keep an index here so we can smartlist_del
  739. * cleanly. On the other hand, this doesn't show up on profiles,
  740. * so let's leave it alone for now. */
  741. smartlist_remove(active_linked_connection_lst, conn);
  742. } else {
  743. tor_assert(!smartlist_contains(active_linked_connection_lst, conn));
  744. }
  745. }
  746. /** Close all connections that have been scheduled to get closed. */
  747. STATIC void
  748. close_closeable_connections(void)
  749. {
  750. int i;
  751. for (i = 0; i < smartlist_len(closeable_connection_lst); ) {
  752. connection_t *conn = smartlist_get(closeable_connection_lst, i);
  753. if (conn->conn_array_index < 0) {
  754. connection_unlink(conn); /* blow it away right now */
  755. } else {
  756. if (!conn_close_if_marked(conn->conn_array_index))
  757. ++i;
  758. }
  759. }
  760. }
  761. /** Count moribund connections for the OOS handler */
  762. MOCK_IMPL(int,
  763. connection_count_moribund, (void))
  764. {
  765. int moribund = 0;
  766. /*
  767. * Count things we'll try to kill when close_closeable_connections()
  768. * runs next.
  769. */
  770. SMARTLIST_FOREACH_BEGIN(closeable_connection_lst, connection_t *, conn) {
  771. if (SOCKET_OK(conn->s) && connection_is_moribund(conn)) ++moribund;
  772. } SMARTLIST_FOREACH_END(conn);
  773. return moribund;
  774. }
  775. /** Libevent callback: this gets invoked when (connection_t*)<b>conn</b> has
  776. * some data to read. */
  777. static void
  778. conn_read_callback(evutil_socket_t fd, short event, void *_conn)
  779. {
  780. connection_t *conn = _conn;
  781. (void)fd;
  782. (void)event;
  783. log_debug(LD_NET,"socket %d wants to read.",(int)conn->s);
  784. /* assert_connection_ok(conn, time(NULL)); */
  785. if (connection_handle_read(conn) < 0) {
  786. if (!conn->marked_for_close) {
  787. #ifndef _WIN32
  788. log_warn(LD_BUG,"Unhandled error on read for %s connection "
  789. "(fd %d); removing",
  790. conn_type_to_string(conn->type), (int)conn->s);
  791. tor_fragile_assert();
  792. #endif /* !defined(_WIN32) */
  793. if (CONN_IS_EDGE(conn))
  794. connection_edge_end_errno(TO_EDGE_CONN(conn));
  795. connection_mark_for_close(conn);
  796. }
  797. }
  798. assert_connection_ok(conn, time(NULL));
  799. if (smartlist_len(closeable_connection_lst))
  800. close_closeable_connections();
  801. }
  802. /** Libevent callback: this gets invoked when (connection_t*)<b>conn</b> has
  803. * some data to write. */
  804. static void
  805. conn_write_callback(evutil_socket_t fd, short events, void *_conn)
  806. {
  807. connection_t *conn = _conn;
  808. (void)fd;
  809. (void)events;
  810. LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "socket %d wants to write.",
  811. (int)conn->s));
  812. /* assert_connection_ok(conn, time(NULL)); */
  813. if (connection_handle_write(conn, 0) < 0) {
  814. if (!conn->marked_for_close) {
  815. /* this connection is broken. remove it. */
  816. log_fn(LOG_WARN,LD_BUG,
  817. "unhandled error on write for %s connection (fd %d); removing",
  818. conn_type_to_string(conn->type), (int)conn->s);
  819. tor_fragile_assert();
  820. if (CONN_IS_EDGE(conn)) {
  821. /* otherwise we cry wolf about duplicate close */
  822. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  823. if (!edge_conn->end_reason)
  824. edge_conn->end_reason = END_STREAM_REASON_INTERNAL;
  825. edge_conn->edge_has_sent_end = 1;
  826. }
  827. connection_close_immediate(conn); /* So we don't try to flush. */
  828. connection_mark_for_close(conn);
  829. }
  830. }
  831. assert_connection_ok(conn, time(NULL));
  832. if (smartlist_len(closeable_connection_lst))
  833. close_closeable_connections();
  834. }
  835. /** If the connection at connection_array[i] is marked for close, then:
  836. * - If it has data that it wants to flush, try to flush it.
  837. * - If it _still_ has data to flush, and conn->hold_open_until_flushed is
  838. * true, then leave the connection open and return.
  839. * - Otherwise, remove the connection from connection_array and from
  840. * all other lists, close it, and free it.
  841. * Returns 1 if the connection was closed, 0 otherwise.
  842. */
  843. static int
  844. conn_close_if_marked(int i)
  845. {
  846. connection_t *conn;
  847. int retval;
  848. time_t now;
  849. conn = smartlist_get(connection_array, i);
  850. if (!conn->marked_for_close)
  851. return 0; /* nothing to see here, move along */
  852. now = time(NULL);
  853. assert_connection_ok(conn, now);
  854. /* assert_all_pending_dns_resolves_ok(); */
  855. log_debug(LD_NET,"Cleaning up connection (fd "TOR_SOCKET_T_FORMAT").",
  856. conn->s);
  857. /* If the connection we are about to close was trying to connect to
  858. a proxy server and failed, the client won't be able to use that
  859. proxy. We should warn the user about this. */
  860. if (conn->proxy_state == PROXY_INFANT)
  861. log_failed_proxy_connection(conn);
  862. if ((SOCKET_OK(conn->s) || conn->linked_conn) &&
  863. connection_wants_to_flush(conn)) {
  864. /* s == -1 means it's an incomplete edge connection, or that the socket
  865. * has already been closed as unflushable. */
  866. ssize_t sz = connection_bucket_write_limit(conn, now);
  867. if (!conn->hold_open_until_flushed)
  868. log_info(LD_NET,
  869. "Conn (addr %s, fd %d, type %s, state %d) marked, but wants "
  870. "to flush %d bytes. (Marked at %s:%d)",
  871. escaped_safe_str_client(conn->address),
  872. (int)conn->s, conn_type_to_string(conn->type), conn->state,
  873. (int)conn->outbuf_flushlen,
  874. conn->marked_for_close_file, conn->marked_for_close);
  875. if (conn->linked_conn) {
  876. retval = buf_move_to_buf(conn->linked_conn->inbuf, conn->outbuf,
  877. &conn->outbuf_flushlen);
  878. if (retval >= 0) {
  879. /* The linked conn will notice that it has data when it notices that
  880. * we're gone. */
  881. connection_start_reading_from_linked_conn(conn->linked_conn);
  882. }
  883. log_debug(LD_GENERAL, "Flushed last %d bytes from a linked conn; "
  884. "%d left; flushlen %d; wants-to-flush==%d", retval,
  885. (int)connection_get_outbuf_len(conn),
  886. (int)conn->outbuf_flushlen,
  887. connection_wants_to_flush(conn));
  888. } else if (connection_speaks_cells(conn)) {
  889. if (conn->state == OR_CONN_STATE_OPEN) {
  890. retval = buf_flush_to_tls(conn->outbuf, TO_OR_CONN(conn)->tls, sz,
  891. &conn->outbuf_flushlen);
  892. } else
  893. retval = -1; /* never flush non-open broken tls connections */
  894. } else {
  895. retval = buf_flush_to_socket(conn->outbuf, conn->s, sz,
  896. &conn->outbuf_flushlen);
  897. }
  898. if (retval >= 0 && /* Technically, we could survive things like
  899. TLS_WANT_WRITE here. But don't bother for now. */
  900. conn->hold_open_until_flushed && connection_wants_to_flush(conn)) {
  901. if (retval > 0) {
  902. LOG_FN_CONN(conn, (LOG_INFO,LD_NET,
  903. "Holding conn (fd %d) open for more flushing.",
  904. (int)conn->s));
  905. conn->timestamp_last_write_allowed = now; /* reset so we can flush
  906. * more */
  907. } else if (sz == 0) {
  908. /* Also, retval==0. If we get here, we didn't want to write anything
  909. * (because of rate-limiting) and we didn't. */
  910. /* Connection must flush before closing, but it's being rate-limited.
  911. * Let's remove from Libevent, and mark it as blocked on bandwidth
  912. * so it will be re-added on next token bucket refill. Prevents
  913. * busy Libevent loops where we keep ending up here and returning
  914. * 0 until we are no longer blocked on bandwidth.
  915. */
  916. if (connection_is_writing(conn)) {
  917. conn->write_blocked_on_bw = 1;
  918. connection_stop_writing(conn);
  919. }
  920. if (connection_is_reading(conn)) {
  921. /* XXXX+ We should make this code unreachable; if a connection is
  922. * marked for close and flushing, there is no point in reading to it
  923. * at all. Further, checking at this point is a bit of a hack: it
  924. * would make much more sense to react in
  925. * connection_handle_read_impl, or to just stop reading in
  926. * mark_and_flush */
  927. conn->read_blocked_on_bw = 1;
  928. connection_stop_reading(conn);
  929. }
  930. }
  931. return 0;
  932. }
  933. if (connection_wants_to_flush(conn)) {
  934. log_fn(LOG_INFO, LD_NET, "We stalled too much while trying to write %d "
  935. "bytes to address %s. If this happens a lot, either "
  936. "something is wrong with your network connection, or "
  937. "something is wrong with theirs. "
  938. "(fd %d, type %s, state %d, marked at %s:%d).",
  939. (int)connection_get_outbuf_len(conn),
  940. escaped_safe_str_client(conn->address),
  941. (int)conn->s, conn_type_to_string(conn->type), conn->state,
  942. conn->marked_for_close_file,
  943. conn->marked_for_close);
  944. }
  945. }
  946. connection_unlink(conn); /* unlink, remove, free */
  947. return 1;
  948. }
  949. /** Implementation for directory_all_unreachable. This is done in a callback,
  950. * since otherwise it would complicate Tor's control-flow graph beyond all
  951. * reason.
  952. */
  953. static void
  954. directory_all_unreachable_cb(mainloop_event_t *event, void *arg)
  955. {
  956. (void)event;
  957. (void)arg;
  958. connection_t *conn;
  959. while ((conn = connection_get_by_type_state(CONN_TYPE_AP,
  960. AP_CONN_STATE_CIRCUIT_WAIT))) {
  961. entry_connection_t *entry_conn = TO_ENTRY_CONN(conn);
  962. log_notice(LD_NET,
  963. "Is your network connection down? "
  964. "Failing connection to '%s:%d'.",
  965. safe_str_client(entry_conn->socks_request->address),
  966. entry_conn->socks_request->port);
  967. connection_mark_unattached_ap(entry_conn,
  968. END_STREAM_REASON_NET_UNREACHABLE);
  969. }
  970. control_event_general_error("DIR_ALL_UNREACHABLE");
  971. }
  972. static mainloop_event_t *directory_all_unreachable_cb_event = NULL;
  973. /** We've just tried every dirserver we know about, and none of
  974. * them were reachable. Assume the network is down. Change state
  975. * so next time an application connection arrives we'll delay it
  976. * and try another directory fetch. Kill off all the circuit_wait
  977. * streams that are waiting now, since they will all timeout anyway.
  978. */
  979. void
  980. directory_all_unreachable(time_t now)
  981. {
  982. (void)now;
  983. reset_uptime(); /* reset it */
  984. if (!directory_all_unreachable_cb_event) {
  985. directory_all_unreachable_cb_event =
  986. mainloop_event_new(directory_all_unreachable_cb, NULL);
  987. tor_assert(directory_all_unreachable_cb_event);
  988. }
  989. mainloop_event_activate(directory_all_unreachable_cb_event);
  990. }
  991. /** This function is called whenever we successfully pull down some new
  992. * network statuses or server descriptors. */
  993. void
  994. directory_info_has_arrived(time_t now, int from_cache, int suppress_logs)
  995. {
  996. const or_options_t *options = get_options();
  997. /* if we have enough dir info, then update our guard status with
  998. * whatever we just learned. */
  999. int invalidate_circs = guards_update_all();
  1000. if (invalidate_circs) {
  1001. circuit_mark_all_unused_circs();
  1002. circuit_mark_all_dirty_circs_as_unusable();
  1003. }
  1004. if (!router_have_minimum_dir_info()) {
  1005. int quiet = suppress_logs || from_cache ||
  1006. directory_too_idle_to_fetch_descriptors(options, now);
  1007. tor_log(quiet ? LOG_INFO : LOG_NOTICE, LD_DIR,
  1008. "I learned some more directory information, but not enough to "
  1009. "build a circuit: %s", get_dir_info_status_string());
  1010. update_all_descriptor_downloads(now);
  1011. return;
  1012. } else {
  1013. if (directory_fetches_from_authorities(options)) {
  1014. update_all_descriptor_downloads(now);
  1015. }
  1016. /* Don't even bother trying to get extrainfo until the rest of our
  1017. * directory info is up-to-date */
  1018. if (options->DownloadExtraInfo)
  1019. update_extrainfo_downloads(now);
  1020. }
  1021. if (server_mode(options) && !net_is_disabled() && !from_cache &&
  1022. (have_completed_a_circuit() || !any_predicted_circuits(now)))
  1023. router_do_reachability_checks(1, 1);
  1024. }
  1025. /** Perform regular maintenance tasks for a single connection. This
  1026. * function gets run once per second per connection by run_scheduled_events.
  1027. */
  1028. static void
  1029. run_connection_housekeeping(int i, time_t now)
  1030. {
  1031. cell_t cell;
  1032. connection_t *conn = smartlist_get(connection_array, i);
  1033. const or_options_t *options = get_options();
  1034. or_connection_t *or_conn;
  1035. channel_t *chan = NULL;
  1036. int have_any_circuits;
  1037. int past_keepalive =
  1038. now >= conn->timestamp_last_write_allowed + options->KeepalivePeriod;
  1039. if (conn->outbuf && !connection_get_outbuf_len(conn) &&
  1040. conn->type == CONN_TYPE_OR)
  1041. TO_OR_CONN(conn)->timestamp_lastempty = now;
  1042. if (conn->marked_for_close) {
  1043. /* nothing to do here */
  1044. return;
  1045. }
  1046. /* Expire any directory connections that haven't been active (sent
  1047. * if a server or received if a client) for 5 min */
  1048. if (conn->type == CONN_TYPE_DIR &&
  1049. ((DIR_CONN_IS_SERVER(conn) &&
  1050. conn->timestamp_last_write_allowed
  1051. + options->TestingDirConnectionMaxStall < now) ||
  1052. (!DIR_CONN_IS_SERVER(conn) &&
  1053. conn->timestamp_last_read_allowed
  1054. + options->TestingDirConnectionMaxStall < now))) {
  1055. log_info(LD_DIR,"Expiring wedged directory conn (fd %d, purpose %d)",
  1056. (int)conn->s, conn->purpose);
  1057. /* This check is temporary; it's to let us know whether we should consider
  1058. * parsing partial serverdesc responses. */
  1059. if (conn->purpose == DIR_PURPOSE_FETCH_SERVERDESC &&
  1060. connection_get_inbuf_len(conn) >= 1024) {
  1061. log_info(LD_DIR,"Trying to extract information from wedged server desc "
  1062. "download.");
  1063. connection_dir_reached_eof(TO_DIR_CONN(conn));
  1064. } else {
  1065. connection_mark_for_close(conn);
  1066. }
  1067. return;
  1068. }
  1069. if (!connection_speaks_cells(conn))
  1070. return; /* we're all done here, the rest is just for OR conns */
  1071. /* If we haven't flushed to an OR connection for a while, then either nuke
  1072. the connection or send a keepalive, depending. */
  1073. or_conn = TO_OR_CONN(conn);
  1074. tor_assert(conn->outbuf);
  1075. chan = TLS_CHAN_TO_BASE(or_conn->chan);
  1076. tor_assert(chan);
  1077. if (channel_num_circuits(chan) != 0) {
  1078. have_any_circuits = 1;
  1079. chan->timestamp_last_had_circuits = now;
  1080. } else {
  1081. have_any_circuits = 0;
  1082. }
  1083. if (channel_is_bad_for_new_circs(TLS_CHAN_TO_BASE(or_conn->chan)) &&
  1084. ! have_any_circuits) {
  1085. /* It's bad for new circuits, and has no unmarked circuits on it:
  1086. * mark it now. */
  1087. log_info(LD_OR,
  1088. "Expiring non-used OR connection to fd %d (%s:%d) [Too old].",
  1089. (int)conn->s, conn->address, conn->port);
  1090. if (conn->state == OR_CONN_STATE_CONNECTING)
  1091. connection_or_connect_failed(TO_OR_CONN(conn),
  1092. END_OR_CONN_REASON_TIMEOUT,
  1093. "Tor gave up on the connection");
  1094. connection_or_close_normally(TO_OR_CONN(conn), 1);
  1095. } else if (!connection_state_is_open(conn)) {
  1096. if (past_keepalive) {
  1097. /* We never managed to actually get this connection open and happy. */
  1098. log_info(LD_OR,"Expiring non-open OR connection to fd %d (%s:%d).",
  1099. (int)conn->s,conn->address, conn->port);
  1100. connection_or_close_normally(TO_OR_CONN(conn), 0);
  1101. }
  1102. } else if (we_are_hibernating() &&
  1103. ! have_any_circuits &&
  1104. !connection_get_outbuf_len(conn)) {
  1105. /* We're hibernating, there's no circuits, and nothing to flush.*/
  1106. log_info(LD_OR,"Expiring non-used OR connection to fd %d (%s:%d) "
  1107. "[Hibernating or exiting].",
  1108. (int)conn->s,conn->address, conn->port);
  1109. connection_or_close_normally(TO_OR_CONN(conn), 1);
  1110. } else if (!have_any_circuits &&
  1111. now - or_conn->idle_timeout >=
  1112. chan->timestamp_last_had_circuits) {
  1113. log_info(LD_OR,"Expiring non-used OR connection "U64_FORMAT" to fd %d "
  1114. "(%s:%d) [no circuits for %d; timeout %d; %scanonical].",
  1115. U64_PRINTF_ARG(chan->global_identifier),
  1116. (int)conn->s, conn->address, conn->port,
  1117. (int)(now - chan->timestamp_last_had_circuits),
  1118. or_conn->idle_timeout,
  1119. or_conn->is_canonical ? "" : "non");
  1120. connection_or_close_normally(TO_OR_CONN(conn), 0);
  1121. } else if (
  1122. now >= or_conn->timestamp_lastempty + options->KeepalivePeriod*10 &&
  1123. now >=
  1124. conn->timestamp_last_write_allowed + options->KeepalivePeriod*10) {
  1125. log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,
  1126. "Expiring stuck OR connection to fd %d (%s:%d). (%d bytes to "
  1127. "flush; %d seconds since last write)",
  1128. (int)conn->s, conn->address, conn->port,
  1129. (int)connection_get_outbuf_len(conn),
  1130. (int)(now-conn->timestamp_last_write_allowed));
  1131. connection_or_close_normally(TO_OR_CONN(conn), 0);
  1132. } else if (past_keepalive && !connection_get_outbuf_len(conn)) {
  1133. /* send a padding cell */
  1134. log_fn(LOG_DEBUG,LD_OR,"Sending keepalive to (%s:%d)",
  1135. conn->address, conn->port);
  1136. memset(&cell,0,sizeof(cell_t));
  1137. cell.command = CELL_PADDING;
  1138. connection_or_write_cell_to_buf(&cell, or_conn);
  1139. } else {
  1140. channelpadding_decide_to_pad_channel(chan);
  1141. }
  1142. }
  1143. /** Honor a NEWNYM request: make future requests unlinkable to past
  1144. * requests. */
  1145. static void
  1146. signewnym_impl(time_t now)
  1147. {
  1148. const or_options_t *options = get_options();
  1149. if (!proxy_mode(options)) {
  1150. log_info(LD_CONTROL, "Ignoring SIGNAL NEWNYM because client functionality "
  1151. "is disabled.");
  1152. return;
  1153. }
  1154. circuit_mark_all_dirty_circs_as_unusable();
  1155. addressmap_clear_transient();
  1156. hs_client_purge_state();
  1157. time_of_last_signewnym = now;
  1158. signewnym_is_pending = 0;
  1159. ++newnym_epoch;
  1160. control_event_signal(SIGNEWNYM);
  1161. }
  1162. /** Return the number of times that signewnym has been called. */
  1163. unsigned
  1164. get_signewnym_epoch(void)
  1165. {
  1166. return newnym_epoch;
  1167. }
  1168. /** True iff we have initialized all the members of <b>periodic_events</b>.
  1169. * Used to prevent double-initialization. */
  1170. static int periodic_events_initialized = 0;
  1171. /* Declare all the timer callback functions... */
  1172. #undef CALLBACK
  1173. #define CALLBACK(name) \
  1174. static int name ## _callback(time_t, const or_options_t *)
  1175. CALLBACK(rotate_onion_key);
  1176. CALLBACK(check_onion_keys_expiry_time);
  1177. CALLBACK(check_ed_keys);
  1178. CALLBACK(launch_descriptor_fetches);
  1179. CALLBACK(rotate_x509_certificate);
  1180. CALLBACK(add_entropy);
  1181. CALLBACK(launch_reachability_tests);
  1182. CALLBACK(downrate_stability);
  1183. CALLBACK(save_stability);
  1184. CALLBACK(check_authority_cert);
  1185. CALLBACK(check_expired_networkstatus);
  1186. CALLBACK(write_stats_file);
  1187. CALLBACK(record_bridge_stats);
  1188. CALLBACK(clean_caches);
  1189. CALLBACK(rend_cache_failure_clean);
  1190. CALLBACK(retry_dns);
  1191. CALLBACK(check_descriptor);
  1192. CALLBACK(check_for_reachability_bw);
  1193. CALLBACK(fetch_networkstatus);
  1194. CALLBACK(retry_listeners);
  1195. CALLBACK(expire_old_ciruits_serverside);
  1196. CALLBACK(check_dns_honesty);
  1197. CALLBACK(write_bridge_ns);
  1198. CALLBACK(heartbeat);
  1199. CALLBACK(clean_consdiffmgr);
  1200. CALLBACK(reset_padding_counts);
  1201. CALLBACK(check_canonical_channels);
  1202. CALLBACK(hs_service);
  1203. #undef CALLBACK
  1204. /* Now we declare an array of periodic_event_item_t for each periodic event */
  1205. #define CALLBACK(name) PERIODIC_EVENT(name)
  1206. static periodic_event_item_t periodic_events[] = {
  1207. CALLBACK(rotate_onion_key),
  1208. CALLBACK(check_onion_keys_expiry_time),
  1209. CALLBACK(check_ed_keys),
  1210. CALLBACK(launch_descriptor_fetches),
  1211. CALLBACK(rotate_x509_certificate),
  1212. CALLBACK(add_entropy),
  1213. CALLBACK(launch_reachability_tests),
  1214. CALLBACK(downrate_stability),
  1215. CALLBACK(save_stability),
  1216. CALLBACK(check_authority_cert),
  1217. CALLBACK(check_expired_networkstatus),
  1218. CALLBACK(write_stats_file),
  1219. CALLBACK(record_bridge_stats),
  1220. CALLBACK(clean_caches),
  1221. CALLBACK(rend_cache_failure_clean),
  1222. CALLBACK(retry_dns),
  1223. CALLBACK(check_descriptor),
  1224. CALLBACK(check_for_reachability_bw),
  1225. CALLBACK(fetch_networkstatus),
  1226. CALLBACK(retry_listeners),
  1227. CALLBACK(expire_old_ciruits_serverside),
  1228. CALLBACK(check_dns_honesty),
  1229. CALLBACK(write_bridge_ns),
  1230. CALLBACK(heartbeat),
  1231. CALLBACK(clean_consdiffmgr),
  1232. CALLBACK(reset_padding_counts),
  1233. CALLBACK(check_canonical_channels),
  1234. CALLBACK(hs_service),
  1235. END_OF_PERIODIC_EVENTS
  1236. };
  1237. #undef CALLBACK
  1238. /* These are pointers to members of periodic_events[] that are used to
  1239. * implement particular callbacks. We keep them separate here so that we
  1240. * can access them by name. We also keep them inside periodic_events[]
  1241. * so that we can implement "reset all timers" in a reasonable way. */
  1242. static periodic_event_item_t *check_descriptor_event=NULL;
  1243. static periodic_event_item_t *fetch_networkstatus_event=NULL;
  1244. static periodic_event_item_t *launch_descriptor_fetches_event=NULL;
  1245. static periodic_event_item_t *check_dns_honesty_event=NULL;
  1246. /** Reset all the periodic events so we'll do all our actions again as if we
  1247. * just started up.
  1248. * Useful if our clock just moved back a long time from the future,
  1249. * so we don't wait until that future arrives again before acting.
  1250. */
  1251. void
  1252. reset_all_main_loop_timers(void)
  1253. {
  1254. int i;
  1255. for (i = 0; periodic_events[i].name; ++i) {
  1256. periodic_event_reschedule(&periodic_events[i]);
  1257. }
  1258. }
  1259. /** Return the member of periodic_events[] whose name is <b>name</b>.
  1260. * Return NULL if no such event is found.
  1261. */
  1262. static periodic_event_item_t *
  1263. find_periodic_event(const char *name)
  1264. {
  1265. int i;
  1266. for (i = 0; periodic_events[i].name; ++i) {
  1267. if (strcmp(name, periodic_events[i].name) == 0)
  1268. return &periodic_events[i];
  1269. }
  1270. return NULL;
  1271. }
  1272. /** Event to run initialize_periodic_events_cb */
  1273. static struct event *initialize_periodic_events_event = NULL;
  1274. /** Helper, run one second after setup:
  1275. * Initializes all members of periodic_events and starts them running.
  1276. *
  1277. * (We do this one second after setup for backward-compatibility reasons;
  1278. * it might not actually be necessary.) */
  1279. static void
  1280. initialize_periodic_events_cb(evutil_socket_t fd, short events, void *data)
  1281. {
  1282. (void) fd;
  1283. (void) events;
  1284. (void) data;
  1285. tor_event_free(initialize_periodic_events_event);
  1286. int i;
  1287. for (i = 0; periodic_events[i].name; ++i) {
  1288. periodic_event_launch(&periodic_events[i]);
  1289. }
  1290. }
  1291. /** Set up all the members of periodic_events[], and configure them all to be
  1292. * launched from a callback. */
  1293. STATIC void
  1294. initialize_periodic_events(void)
  1295. {
  1296. tor_assert(periodic_events_initialized == 0);
  1297. periodic_events_initialized = 1;
  1298. int i;
  1299. for (i = 0; periodic_events[i].name; ++i) {
  1300. periodic_event_setup(&periodic_events[i]);
  1301. }
  1302. #define NAMED_CALLBACK(name) \
  1303. STMT_BEGIN name ## _event = find_periodic_event( #name ); STMT_END
  1304. NAMED_CALLBACK(check_descriptor);
  1305. NAMED_CALLBACK(fetch_networkstatus);
  1306. NAMED_CALLBACK(launch_descriptor_fetches);
  1307. NAMED_CALLBACK(check_dns_honesty);
  1308. struct timeval one_second = { 1, 0 };
  1309. initialize_periodic_events_event = tor_evtimer_new(
  1310. tor_libevent_get_base(),
  1311. initialize_periodic_events_cb, NULL);
  1312. event_add(initialize_periodic_events_event, &one_second);
  1313. }
  1314. STATIC void
  1315. teardown_periodic_events(void)
  1316. {
  1317. int i;
  1318. for (i = 0; periodic_events[i].name; ++i) {
  1319. periodic_event_destroy(&periodic_events[i]);
  1320. }
  1321. periodic_events_initialized = 0;
  1322. }
  1323. /**
  1324. * Update our schedule so that we'll check whether we need to update our
  1325. * descriptor immediately, rather than after up to CHECK_DESCRIPTOR_INTERVAL
  1326. * seconds.
  1327. */
  1328. void
  1329. reschedule_descriptor_update_check(void)
  1330. {
  1331. tor_assert(check_descriptor_event);
  1332. periodic_event_reschedule(check_descriptor_event);
  1333. }
  1334. /**
  1335. * Update our schedule so that we'll check whether we need to fetch directory
  1336. * info immediately.
  1337. */
  1338. void
  1339. reschedule_directory_downloads(void)
  1340. {
  1341. tor_assert(fetch_networkstatus_event);
  1342. tor_assert(launch_descriptor_fetches_event);
  1343. periodic_event_reschedule(fetch_networkstatus_event);
  1344. periodic_event_reschedule(launch_descriptor_fetches_event);
  1345. }
  1346. #define LONGEST_TIMER_PERIOD (30 * 86400)
  1347. /** Helper: Return the number of seconds between <b>now</b> and <b>next</b>,
  1348. * clipped to the range [1 second, LONGEST_TIMER_PERIOD]. */
  1349. static inline int
  1350. safe_timer_diff(time_t now, time_t next)
  1351. {
  1352. if (next > now) {
  1353. /* There were no computers at signed TIME_MIN (1902 on 32-bit systems),
  1354. * and nothing that could run Tor. It's a bug if 'next' is around then.
  1355. * On 64-bit systems with signed TIME_MIN, TIME_MIN is before the Big
  1356. * Bang. We cannot extrapolate past a singularity, but there was probably
  1357. * nothing that could run Tor then, either.
  1358. **/
  1359. tor_assert(next > TIME_MIN + LONGEST_TIMER_PERIOD);
  1360. if (next - LONGEST_TIMER_PERIOD > now)
  1361. return LONGEST_TIMER_PERIOD;
  1362. return (int)(next - now);
  1363. } else {
  1364. return 1;
  1365. }
  1366. }
  1367. /** Perform regular maintenance tasks. This function gets run once per
  1368. * second by second_elapsed_callback().
  1369. */
  1370. static void
  1371. run_scheduled_events(time_t now)
  1372. {
  1373. const or_options_t *options = get_options();
  1374. /* 0. See if we've been asked to shut down and our timeout has
  1375. * expired; or if our bandwidth limits are exhausted and we
  1376. * should hibernate; or if it's time to wake up from hibernation.
  1377. */
  1378. consider_hibernation(now);
  1379. /* 0b. If we've deferred a signewnym, make sure it gets handled
  1380. * eventually. */
  1381. if (signewnym_is_pending &&
  1382. time_of_last_signewnym + MAX_SIGNEWNYM_RATE <= now) {
  1383. log_info(LD_CONTROL, "Honoring delayed NEWNYM request");
  1384. signewnym_impl(now);
  1385. }
  1386. /* 0c. If we've deferred log messages for the controller, handle them now */
  1387. flush_pending_log_callbacks();
  1388. /* Maybe enough time elapsed for us to reconsider a circuit. */
  1389. circuit_upgrade_circuits_from_guard_wait();
  1390. if (options->UseBridges && !net_is_disabled()) {
  1391. /* Note: this check uses net_is_disabled(), not should_delay_dir_fetches()
  1392. * -- the latter is only for fetching consensus-derived directory info. */
  1393. fetch_bridge_descriptors(options, now);
  1394. }
  1395. if (accounting_is_enabled(options)) {
  1396. accounting_run_housekeeping(now);
  1397. }
  1398. if (authdir_mode_v3(options)) {
  1399. dirvote_act(options, now);
  1400. }
  1401. /* 3a. Every second, we examine pending circuits and prune the
  1402. * ones which have been pending for more than a few seconds.
  1403. * We do this before step 4, so it can try building more if
  1404. * it's not comfortable with the number of available circuits.
  1405. */
  1406. /* (If our circuit build timeout can ever become lower than a second (which
  1407. * it can't, currently), we should do this more often.) */
  1408. circuit_expire_building();
  1409. circuit_expire_waiting_for_better_guard();
  1410. /* 3b. Also look at pending streams and prune the ones that 'began'
  1411. * a long time ago but haven't gotten a 'connected' yet.
  1412. * Do this before step 4, so we can put them back into pending
  1413. * state to be picked up by the new circuit.
  1414. */
  1415. connection_ap_expire_beginning();
  1416. /* 3c. And expire connections that we've held open for too long.
  1417. */
  1418. connection_expire_held_open();
  1419. /* 4. Every second, we try a new circuit if there are no valid
  1420. * circuits. Every NewCircuitPeriod seconds, we expire circuits
  1421. * that became dirty more than MaxCircuitDirtiness seconds ago,
  1422. * and we make a new circ if there are no clean circuits.
  1423. */
  1424. const int have_dir_info = router_have_minimum_dir_info();
  1425. if (have_dir_info && !net_is_disabled()) {
  1426. circuit_build_needed_circs(now);
  1427. } else {
  1428. circuit_expire_old_circs_as_needed(now);
  1429. }
  1430. if (!net_is_disabled()) {
  1431. /* This is usually redundant with circuit_build_needed_circs() above,
  1432. * but it is very fast when there is no work to do. */
  1433. connection_ap_attach_pending(0);
  1434. }
  1435. /* 5. We do housekeeping for each connection... */
  1436. channel_update_bad_for_new_circs(NULL, 0);
  1437. int i;
  1438. for (i=0;i<smartlist_len(connection_array);i++) {
  1439. run_connection_housekeeping(i, now);
  1440. }
  1441. /* 6. And remove any marked circuits... */
  1442. circuit_close_all_marked();
  1443. /* 8. and blow away any connections that need to die. have to do this now,
  1444. * because if we marked a conn for close and left its socket -1, then
  1445. * we'll pass it to poll/select and bad things will happen.
  1446. */
  1447. close_closeable_connections();
  1448. /* 8b. And if anything in our state is ready to get flushed to disk, we
  1449. * flush it. */
  1450. or_state_save(now);
  1451. /* 8c. Do channel cleanup just like for connections */
  1452. channel_run_cleanup();
  1453. channel_listener_run_cleanup();
  1454. /* 11b. check pending unconfigured managed proxies */
  1455. if (!net_is_disabled() && pt_proxies_configuration_pending())
  1456. pt_configure_remaining_proxies();
  1457. /* 12. launch diff computations. (This is free if there are none to
  1458. * launch.) */
  1459. if (dir_server_mode(options)) {
  1460. consdiffmgr_rescan();
  1461. }
  1462. }
  1463. /* Periodic callback: rotate the onion keys after the period defined by the
  1464. * "onion-key-rotation-days" consensus parameter, shut down and restart all
  1465. * cpuworkers, and update our descriptor if necessary.
  1466. */
  1467. static int
  1468. rotate_onion_key_callback(time_t now, const or_options_t *options)
  1469. {
  1470. if (server_mode(options)) {
  1471. int onion_key_lifetime = get_onion_key_lifetime();
  1472. time_t rotation_time = get_onion_key_set_at()+onion_key_lifetime;
  1473. if (rotation_time > now) {
  1474. return ONION_KEY_CONSENSUS_CHECK_INTERVAL;
  1475. }
  1476. log_info(LD_GENERAL,"Rotating onion key.");
  1477. rotate_onion_key();
  1478. cpuworkers_rotate_keyinfo();
  1479. if (router_rebuild_descriptor(1)<0) {
  1480. log_info(LD_CONFIG, "Couldn't rebuild router descriptor");
  1481. }
  1482. if (advertised_server_mode() && !net_is_disabled())
  1483. router_upload_dir_desc_to_dirservers(0);
  1484. return ONION_KEY_CONSENSUS_CHECK_INTERVAL;
  1485. }
  1486. return PERIODIC_EVENT_NO_UPDATE;
  1487. }
  1488. /* Period callback: Check if our old onion keys are still valid after the
  1489. * period of time defined by the consensus parameter
  1490. * "onion-key-grace-period-days", otherwise expire them by setting them to
  1491. * NULL.
  1492. */
  1493. static int
  1494. check_onion_keys_expiry_time_callback(time_t now, const or_options_t *options)
  1495. {
  1496. if (server_mode(options)) {
  1497. int onion_key_grace_period = get_onion_key_grace_period();
  1498. time_t expiry_time = get_onion_key_set_at()+onion_key_grace_period;
  1499. if (expiry_time > now) {
  1500. return ONION_KEY_CONSENSUS_CHECK_INTERVAL;
  1501. }
  1502. log_info(LD_GENERAL, "Expiring old onion keys.");
  1503. expire_old_onion_keys();
  1504. cpuworkers_rotate_keyinfo();
  1505. return ONION_KEY_CONSENSUS_CHECK_INTERVAL;
  1506. }
  1507. return PERIODIC_EVENT_NO_UPDATE;
  1508. }
  1509. /* Periodic callback: Every 30 seconds, check whether it's time to make new
  1510. * Ed25519 subkeys.
  1511. */
  1512. static int
  1513. check_ed_keys_callback(time_t now, const or_options_t *options)
  1514. {
  1515. if (server_mode(options)) {
  1516. if (should_make_new_ed_keys(options, now)) {
  1517. int new_signing_key = load_ed_keys(options, now);
  1518. if (new_signing_key < 0 ||
  1519. generate_ed_link_cert(options, now, new_signing_key > 0)) {
  1520. log_err(LD_OR, "Unable to update Ed25519 keys! Exiting.");
  1521. tor_shutdown_event_loop_and_exit(1);
  1522. }
  1523. }
  1524. return 30;
  1525. }
  1526. return PERIODIC_EVENT_NO_UPDATE;
  1527. }
  1528. /**
  1529. * Periodic callback: Every {LAZY,GREEDY}_DESCRIPTOR_RETRY_INTERVAL,
  1530. * see about fetching descriptors, microdescriptors, and extrainfo
  1531. * documents.
  1532. */
  1533. static int
  1534. launch_descriptor_fetches_callback(time_t now, const or_options_t *options)
  1535. {
  1536. if (should_delay_dir_fetches(options, NULL))
  1537. return PERIODIC_EVENT_NO_UPDATE;
  1538. update_all_descriptor_downloads(now);
  1539. update_extrainfo_downloads(now);
  1540. if (router_have_minimum_dir_info())
  1541. return LAZY_DESCRIPTOR_RETRY_INTERVAL;
  1542. else
  1543. return GREEDY_DESCRIPTOR_RETRY_INTERVAL;
  1544. }
  1545. /**
  1546. * Periodic event: Rotate our X.509 certificates and TLS keys once every
  1547. * MAX_SSL_KEY_LIFETIME_INTERNAL.
  1548. */
  1549. static int
  1550. rotate_x509_certificate_callback(time_t now, const or_options_t *options)
  1551. {
  1552. static int first = 1;
  1553. (void)now;
  1554. (void)options;
  1555. if (first) {
  1556. first = 0;
  1557. return MAX_SSL_KEY_LIFETIME_INTERNAL;
  1558. }
  1559. /* 1b. Every MAX_SSL_KEY_LIFETIME_INTERNAL seconds, we change our
  1560. * TLS context. */
  1561. log_info(LD_GENERAL,"Rotating tls context.");
  1562. if (router_initialize_tls_context() < 0) {
  1563. log_err(LD_BUG, "Error reinitializing TLS context");
  1564. tor_assert_unreached();
  1565. }
  1566. if (generate_ed_link_cert(options, now, 1)) {
  1567. log_err(LD_OR, "Unable to update Ed25519->TLS link certificate for "
  1568. "new TLS context.");
  1569. tor_assert_unreached();
  1570. }
  1571. /* We also make sure to rotate the TLS connections themselves if they've
  1572. * been up for too long -- but that's done via is_bad_for_new_circs in
  1573. * run_connection_housekeeping() above. */
  1574. return MAX_SSL_KEY_LIFETIME_INTERNAL;
  1575. }
  1576. /**
  1577. * Periodic callback: once an hour, grab some more entropy from the
  1578. * kernel and feed it to our CSPRNG.
  1579. **/
  1580. static int
  1581. add_entropy_callback(time_t now, const or_options_t *options)
  1582. {
  1583. (void)now;
  1584. (void)options;
  1585. /* We already seeded once, so don't die on failure. */
  1586. if (crypto_seed_rng() < 0) {
  1587. log_warn(LD_GENERAL, "Tried to re-seed RNG, but failed. We already "
  1588. "seeded once, though, so we won't exit here.");
  1589. }
  1590. /** How often do we add more entropy to OpenSSL's RNG pool? */
  1591. #define ENTROPY_INTERVAL (60*60)
  1592. return ENTROPY_INTERVAL;
  1593. }
  1594. /**
  1595. * Periodic callback: if we're an authority, make sure we test
  1596. * the routers on the network for reachability.
  1597. */
  1598. static int
  1599. launch_reachability_tests_callback(time_t now, const or_options_t *options)
  1600. {
  1601. if (authdir_mode_tests_reachability(options) &&
  1602. !net_is_disabled()) {
  1603. /* try to determine reachability of the other Tor relays */
  1604. dirserv_test_reachability(now);
  1605. }
  1606. return REACHABILITY_TEST_INTERVAL;
  1607. }
  1608. /**
  1609. * Periodic callback: if we're an authority, discount the stability
  1610. * information (and other rephist information) that's older.
  1611. */
  1612. static int
  1613. downrate_stability_callback(time_t now, const or_options_t *options)
  1614. {
  1615. (void)options;
  1616. /* 1d. Periodically, we discount older stability information so that new
  1617. * stability info counts more, and save the stability information to disk as
  1618. * appropriate. */
  1619. time_t next = rep_hist_downrate_old_runs(now);
  1620. return safe_timer_diff(now, next);
  1621. }
  1622. /**
  1623. * Periodic callback: if we're an authority, record our measured stability
  1624. * information from rephist in an mtbf file.
  1625. */
  1626. static int
  1627. save_stability_callback(time_t now, const or_options_t *options)
  1628. {
  1629. if (authdir_mode_tests_reachability(options)) {
  1630. if (rep_hist_record_mtbf_data(now, 1)<0) {
  1631. log_warn(LD_GENERAL, "Couldn't store mtbf data.");
  1632. }
  1633. }
  1634. #define SAVE_STABILITY_INTERVAL (30*60)
  1635. return SAVE_STABILITY_INTERVAL;
  1636. }
  1637. /**
  1638. * Periodic callback: if we're an authority, check on our authority
  1639. * certificate (the one that authenticates our authority signing key).
  1640. */
  1641. static int
  1642. check_authority_cert_callback(time_t now, const or_options_t *options)
  1643. {
  1644. (void)now;
  1645. (void)options;
  1646. /* 1e. Periodically, if we're a v3 authority, we check whether our cert is
  1647. * close to expiring and warn the admin if it is. */
  1648. v3_authority_check_key_expiry();
  1649. #define CHECK_V3_CERTIFICATE_INTERVAL (5*60)
  1650. return CHECK_V3_CERTIFICATE_INTERVAL;
  1651. }
  1652. /**
  1653. * Periodic callback: If our consensus is too old, recalculate whether
  1654. * we can actually use it.
  1655. */
  1656. static int
  1657. check_expired_networkstatus_callback(time_t now, const or_options_t *options)
  1658. {
  1659. (void)options;
  1660. /* Check whether our networkstatus has expired. */
  1661. networkstatus_t *ns = networkstatus_get_latest_consensus();
  1662. /*XXXX RD: This value needs to be the same as REASONABLY_LIVE_TIME in
  1663. * networkstatus_get_reasonably_live_consensus(), but that value is way
  1664. * way too high. Arma: is the bridge issue there resolved yet? -NM */
  1665. #define NS_EXPIRY_SLOP (24*60*60)
  1666. if (ns && ns->valid_until < (now - NS_EXPIRY_SLOP) &&
  1667. router_have_minimum_dir_info()) {
  1668. router_dir_info_changed();
  1669. }
  1670. #define CHECK_EXPIRED_NS_INTERVAL (2*60)
  1671. return CHECK_EXPIRED_NS_INTERVAL;
  1672. }
  1673. /**
  1674. * Periodic callback: Write statistics to disk if appropriate.
  1675. */
  1676. static int
  1677. write_stats_file_callback(time_t now, const or_options_t *options)
  1678. {
  1679. /* 1g. Check whether we should write statistics to disk.
  1680. */
  1681. #define CHECK_WRITE_STATS_INTERVAL (60*60)
  1682. time_t next_time_to_write_stats_files = now + CHECK_WRITE_STATS_INTERVAL;
  1683. if (options->CellStatistics) {
  1684. time_t next_write =
  1685. rep_hist_buffer_stats_write(now);
  1686. if (next_write && next_write < next_time_to_write_stats_files)
  1687. next_time_to_write_stats_files = next_write;
  1688. }
  1689. if (options->DirReqStatistics) {
  1690. time_t next_write = geoip_dirreq_stats_write(now);
  1691. if (next_write && next_write < next_time_to_write_stats_files)
  1692. next_time_to_write_stats_files = next_write;
  1693. }
  1694. if (options->EntryStatistics) {
  1695. time_t next_write = geoip_entry_stats_write(now);
  1696. if (next_write && next_write < next_time_to_write_stats_files)
  1697. next_time_to_write_stats_files = next_write;
  1698. }
  1699. if (options->HiddenServiceStatistics) {
  1700. time_t next_write = rep_hist_hs_stats_write(now);
  1701. if (next_write && next_write < next_time_to_write_stats_files)
  1702. next_time_to_write_stats_files = next_write;
  1703. }
  1704. if (options->ExitPortStatistics) {
  1705. time_t next_write = rep_hist_exit_stats_write(now);
  1706. if (next_write && next_write < next_time_to_write_stats_files)
  1707. next_time_to_write_stats_files = next_write;
  1708. }
  1709. if (options->ConnDirectionStatistics) {
  1710. time_t next_write = rep_hist_conn_stats_write(now);
  1711. if (next_write && next_write < next_time_to_write_stats_files)
  1712. next_time_to_write_stats_files = next_write;
  1713. }
  1714. if (options->BridgeAuthoritativeDir) {
  1715. time_t next_write = rep_hist_desc_stats_write(now);
  1716. if (next_write && next_write < next_time_to_write_stats_files)
  1717. next_time_to_write_stats_files = next_write;
  1718. }
  1719. return safe_timer_diff(now, next_time_to_write_stats_files);
  1720. }
  1721. #define CHANNEL_CHECK_INTERVAL (60*60)
  1722. static int
  1723. check_canonical_channels_callback(time_t now, const or_options_t *options)
  1724. {
  1725. (void)now;
  1726. if (public_server_mode(options))
  1727. channel_check_for_duplicates();
  1728. return CHANNEL_CHECK_INTERVAL;
  1729. }
  1730. static int
  1731. reset_padding_counts_callback(time_t now, const or_options_t *options)
  1732. {
  1733. if (options->PaddingStatistics) {
  1734. rep_hist_prep_published_padding_counts(now);
  1735. }
  1736. rep_hist_reset_padding_counts();
  1737. return REPHIST_CELL_PADDING_COUNTS_INTERVAL;
  1738. }
  1739. static int should_init_bridge_stats = 1;
  1740. /**
  1741. * Periodic callback: Write bridge statistics to disk if appropriate.
  1742. */
  1743. static int
  1744. record_bridge_stats_callback(time_t now, const or_options_t *options)
  1745. {
  1746. /* 1h. Check whether we should write bridge statistics to disk.
  1747. */
  1748. if (should_record_bridge_info(options)) {
  1749. if (should_init_bridge_stats) {
  1750. /* (Re-)initialize bridge statistics. */
  1751. geoip_bridge_stats_init(now);
  1752. should_init_bridge_stats = 0;
  1753. return WRITE_STATS_INTERVAL;
  1754. } else {
  1755. /* Possibly write bridge statistics to disk and ask when to write
  1756. * them next time. */
  1757. time_t next = geoip_bridge_stats_write(now);
  1758. return safe_timer_diff(now, next);
  1759. }
  1760. } else if (!should_init_bridge_stats) {
  1761. /* Bridge mode was turned off. Ensure that stats are re-initialized
  1762. * next time bridge mode is turned on. */
  1763. should_init_bridge_stats = 1;
  1764. }
  1765. return PERIODIC_EVENT_NO_UPDATE;
  1766. }
  1767. /**
  1768. * Periodic callback: Clean in-memory caches every once in a while
  1769. */
  1770. static int
  1771. clean_caches_callback(time_t now, const or_options_t *options)
  1772. {
  1773. /* Remove old information from rephist and the rend cache. */
  1774. rep_history_clean(now - options->RephistTrackTime);
  1775. rend_cache_clean(now, REND_CACHE_TYPE_SERVICE);
  1776. hs_cache_clean_as_client(now);
  1777. hs_cache_clean_as_dir(now);
  1778. microdesc_cache_rebuild(NULL, 0);
  1779. #define CLEAN_CACHES_INTERVAL (30*60)
  1780. return CLEAN_CACHES_INTERVAL;
  1781. }
  1782. /**
  1783. * Periodic callback: Clean the cache of failed hidden service lookups
  1784. * frequently.
  1785. */
  1786. static int
  1787. rend_cache_failure_clean_callback(time_t now, const or_options_t *options)
  1788. {
  1789. (void)options;
  1790. /* We don't keep entries that are more than five minutes old so we try to
  1791. * clean it as soon as we can since we want to make sure the client waits
  1792. * as little as possible for reachability reasons. */
  1793. rend_cache_failure_clean(now);
  1794. hs_cache_client_intro_state_clean(now);
  1795. return 30;
  1796. }
  1797. /**
  1798. * Periodic callback: If we're a server and initializing dns failed, retry.
  1799. */
  1800. static int
  1801. retry_dns_callback(time_t now, const or_options_t *options)
  1802. {
  1803. (void)now;
  1804. #define RETRY_DNS_INTERVAL (10*60)
  1805. if (server_mode(options) && has_dns_init_failed())
  1806. dns_init();
  1807. return RETRY_DNS_INTERVAL;
  1808. }
  1809. /** Periodic callback: consider rebuilding or and re-uploading our descriptor
  1810. * (if we've passed our internal checks). */
  1811. static int
  1812. check_descriptor_callback(time_t now, const or_options_t *options)
  1813. {
  1814. /** How often do we check whether part of our router info has changed in a
  1815. * way that would require an upload? That includes checking whether our IP
  1816. * address has changed. */
  1817. #define CHECK_DESCRIPTOR_INTERVAL (60)
  1818. (void)options;
  1819. /* 2b. Once per minute, regenerate and upload the descriptor if the old
  1820. * one is inaccurate. */
  1821. if (!net_is_disabled()) {
  1822. check_descriptor_bandwidth_changed(now);
  1823. check_descriptor_ipaddress_changed(now);
  1824. mark_my_descriptor_dirty_if_too_old(now);
  1825. consider_publishable_server(0);
  1826. /* If any networkstatus documents are no longer recent, we need to
  1827. * update all the descriptors' running status. */
  1828. /* Remove dead routers. */
  1829. /* XXXX This doesn't belong here, but it was here in the pre-
  1830. * XXXX refactoring code. */
  1831. routerlist_remove_old_routers();
  1832. }
  1833. return CHECK_DESCRIPTOR_INTERVAL;
  1834. }
  1835. /**
  1836. * Periodic callback: check whether we're reachable (as a relay), and
  1837. * whether our bandwidth has changed enough that we need to
  1838. * publish a new descriptor.
  1839. */
  1840. static int
  1841. check_for_reachability_bw_callback(time_t now, const or_options_t *options)
  1842. {
  1843. /* XXXX This whole thing was stuck in the middle of what is now
  1844. * XXXX check_descriptor_callback. I'm not sure it's right. */
  1845. static int dirport_reachability_count = 0;
  1846. /* also, check religiously for reachability, if it's within the first
  1847. * 20 minutes of our uptime. */
  1848. if (server_mode(options) &&
  1849. (have_completed_a_circuit() || !any_predicted_circuits(now)) &&
  1850. !net_is_disabled()) {
  1851. if (get_uptime() < TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT) {
  1852. router_do_reachability_checks(1, dirport_reachability_count==0);
  1853. if (++dirport_reachability_count > 5)
  1854. dirport_reachability_count = 0;
  1855. return 1;
  1856. } else {
  1857. /* If we haven't checked for 12 hours and our bandwidth estimate is
  1858. * low, do another bandwidth test. This is especially important for
  1859. * bridges, since they might go long periods without much use. */
  1860. const routerinfo_t *me = router_get_my_routerinfo();
  1861. static int first_time = 1;
  1862. if (!first_time && me &&
  1863. me->bandwidthcapacity < me->bandwidthrate &&
  1864. me->bandwidthcapacity < 51200) {
  1865. reset_bandwidth_test();
  1866. }
  1867. first_time = 0;
  1868. #define BANDWIDTH_RECHECK_INTERVAL (12*60*60)
  1869. return BANDWIDTH_RECHECK_INTERVAL;
  1870. }
  1871. }
  1872. return CHECK_DESCRIPTOR_INTERVAL;
  1873. }
  1874. /**
  1875. * Periodic event: once a minute, (or every second if TestingTorNetwork, or
  1876. * during client bootstrap), check whether we want to download any
  1877. * networkstatus documents. */
  1878. static int
  1879. fetch_networkstatus_callback(time_t now, const or_options_t *options)
  1880. {
  1881. /* How often do we check whether we should download network status
  1882. * documents? */
  1883. const int we_are_bootstrapping = networkstatus_consensus_is_bootstrapping(
  1884. now);
  1885. const int prefer_mirrors = !directory_fetches_from_authorities(
  1886. get_options());
  1887. int networkstatus_dl_check_interval = 60;
  1888. /* check more often when testing, or when bootstrapping from mirrors
  1889. * (connection limits prevent too many connections being made) */
  1890. if (options->TestingTorNetwork
  1891. || (we_are_bootstrapping && prefer_mirrors)) {
  1892. networkstatus_dl_check_interval = 1;
  1893. }
  1894. if (should_delay_dir_fetches(options, NULL))
  1895. return PERIODIC_EVENT_NO_UPDATE;
  1896. update_networkstatus_downloads(now);
  1897. return networkstatus_dl_check_interval;
  1898. }
  1899. /**
  1900. * Periodic callback: Every 60 seconds, we relaunch listeners if any died. */
  1901. static int
  1902. retry_listeners_callback(time_t now, const or_options_t *options)
  1903. {
  1904. (void)now;
  1905. (void)options;
  1906. if (!net_is_disabled()) {
  1907. retry_all_listeners(NULL, NULL, 0);
  1908. return 60;
  1909. }
  1910. return PERIODIC_EVENT_NO_UPDATE;
  1911. }
  1912. /**
  1913. * Periodic callback: as a server, see if we have any old unused circuits
  1914. * that should be expired */
  1915. static int
  1916. expire_old_ciruits_serverside_callback(time_t now, const or_options_t *options)
  1917. {
  1918. (void)options;
  1919. /* every 11 seconds, so not usually the same second as other such events */
  1920. circuit_expire_old_circuits_serverside(now);
  1921. return 11;
  1922. }
  1923. static int dns_honesty_first_time = 1;
  1924. /**
  1925. * Periodic event: if we're an exit, see if our DNS server is telling us
  1926. * obvious lies.
  1927. */
  1928. static int
  1929. check_dns_honesty_callback(time_t now, const or_options_t *options)
  1930. {
  1931. (void)now;
  1932. /* 9. and if we're an exit node, check whether our DNS is telling stories
  1933. * to us. */
  1934. if (net_is_disabled() ||
  1935. ! public_server_mode(options) ||
  1936. router_my_exit_policy_is_reject_star())
  1937. return PERIODIC_EVENT_NO_UPDATE;
  1938. if (dns_honesty_first_time) {
  1939. /* Don't launch right when we start */
  1940. dns_honesty_first_time = 0;
  1941. return crypto_rand_int_range(60, 180);
  1942. }
  1943. dns_launch_correctness_checks();
  1944. return 12*3600 + crypto_rand_int(12*3600);
  1945. }
  1946. /**
  1947. * Periodic callback: if we're the bridge authority, write a networkstatus
  1948. * file to disk.
  1949. */
  1950. static int
  1951. write_bridge_ns_callback(time_t now, const or_options_t *options)
  1952. {
  1953. /* 10. write bridge networkstatus file to disk */
  1954. if (options->BridgeAuthoritativeDir) {
  1955. networkstatus_dump_bridge_status_to_file(now);
  1956. #define BRIDGE_STATUSFILE_INTERVAL (30*60)
  1957. return BRIDGE_STATUSFILE_INTERVAL;
  1958. }
  1959. return PERIODIC_EVENT_NO_UPDATE;
  1960. }
  1961. static int heartbeat_callback_first_time = 1;
  1962. /**
  1963. * Periodic callback: write the heartbeat message in the logs.
  1964. *
  1965. * If writing the heartbeat message to the logs fails for some reason, retry
  1966. * again after <b>MIN_HEARTBEAT_PERIOD</b> seconds.
  1967. */
  1968. static int
  1969. heartbeat_callback(time_t now, const or_options_t *options)
  1970. {
  1971. /* Check if heartbeat is disabled */
  1972. if (!options->HeartbeatPeriod) {
  1973. return PERIODIC_EVENT_NO_UPDATE;
  1974. }
  1975. /* Skip the first one. */
  1976. if (heartbeat_callback_first_time) {
  1977. heartbeat_callback_first_time = 0;
  1978. return options->HeartbeatPeriod;
  1979. }
  1980. /* Write the heartbeat message */
  1981. if (log_heartbeat(now) == 0) {
  1982. return options->HeartbeatPeriod;
  1983. } else {
  1984. /* If we couldn't write the heartbeat log message, try again in the minimum
  1985. * interval of time. */
  1986. return MIN_HEARTBEAT_PERIOD;
  1987. }
  1988. }
  1989. #define CDM_CLEAN_CALLBACK_INTERVAL 600
  1990. static int
  1991. clean_consdiffmgr_callback(time_t now, const or_options_t *options)
  1992. {
  1993. (void)now;
  1994. if (server_mode(options)) {
  1995. consdiffmgr_cleanup();
  1996. }
  1997. return CDM_CLEAN_CALLBACK_INTERVAL;
  1998. }
  1999. /*
  2000. * Periodic callback: Run scheduled events for HS service. This is called
  2001. * every second.
  2002. */
  2003. static int
  2004. hs_service_callback(time_t now, const or_options_t *options)
  2005. {
  2006. (void) options;
  2007. /* We need to at least be able to build circuits and that we actually have
  2008. * a working network. */
  2009. if (!have_completed_a_circuit() || net_is_disabled() ||
  2010. networkstatus_get_live_consensus(now) == NULL) {
  2011. goto end;
  2012. }
  2013. hs_service_run_scheduled_events(now);
  2014. end:
  2015. /* Every 1 second. */
  2016. return 1;
  2017. }
  2018. /** Timer: used to invoke second_elapsed_callback() once per second. */
  2019. static periodic_timer_t *second_timer = NULL;
  2020. /** Number of libevent errors in the last second: we die if we get too many. */
  2021. static int n_libevent_errors = 0;
  2022. /** Last time that second_elapsed_callback was called. */
  2023. static time_t current_second = 0;
  2024. /** Libevent callback: invoked once every second. */
  2025. static void
  2026. second_elapsed_callback(periodic_timer_t *timer, void *arg)
  2027. {
  2028. /* XXXX This could be sensibly refactored into multiple callbacks, and we
  2029. * could use Libevent's timers for this rather than checking the current
  2030. * time against a bunch of timeouts every second. */
  2031. time_t now;
  2032. size_t bytes_written;
  2033. size_t bytes_read;
  2034. int seconds_elapsed;
  2035. const or_options_t *options = get_options();
  2036. (void)timer;
  2037. (void)arg;
  2038. n_libevent_errors = 0;
  2039. /* log_notice(LD_GENERAL, "Tick."); */
  2040. now = time(NULL);
  2041. update_approx_time(now);
  2042. /* the second has rolled over. check more stuff. */
  2043. seconds_elapsed = current_second ? (int)(now - current_second) : 0;
  2044. bytes_read = (size_t)(stats_n_bytes_read - stats_prev_n_read);
  2045. bytes_written = (size_t)(stats_n_bytes_written - stats_prev_n_written);
  2046. stats_prev_n_read = stats_n_bytes_read;
  2047. stats_prev_n_written = stats_n_bytes_written;
  2048. control_event_bandwidth_used((uint32_t)bytes_read,(uint32_t)bytes_written);
  2049. control_event_stream_bandwidth_used();
  2050. control_event_conn_bandwidth_used();
  2051. control_event_circ_bandwidth_used();
  2052. control_event_circuit_cell_stats();
  2053. if (server_mode(options) &&
  2054. !net_is_disabled() &&
  2055. seconds_elapsed > 0 &&
  2056. have_completed_a_circuit() &&
  2057. get_uptime() / TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT !=
  2058. (get_uptime()+seconds_elapsed) /
  2059. TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT) {
  2060. /* every 20 minutes, check and complain if necessary */
  2061. const routerinfo_t *me = router_get_my_routerinfo();
  2062. if (me && !check_whether_orport_reachable(options)) {
  2063. char *address = tor_dup_ip(me->addr);
  2064. log_warn(LD_CONFIG,"Your server (%s:%d) has not managed to confirm that "
  2065. "its ORPort is reachable. Relays do not publish descriptors "
  2066. "until their ORPort and DirPort are reachable. Please check "
  2067. "your firewalls, ports, address, /etc/hosts file, etc.",
  2068. address, me->or_port);
  2069. control_event_server_status(LOG_WARN,
  2070. "REACHABILITY_FAILED ORADDRESS=%s:%d",
  2071. address, me->or_port);
  2072. tor_free(address);
  2073. }
  2074. if (me && !check_whether_dirport_reachable(options)) {
  2075. char *address = tor_dup_ip(me->addr);
  2076. log_warn(LD_CONFIG,
  2077. "Your server (%s:%d) has not managed to confirm that its "
  2078. "DirPort is reachable. Relays do not publish descriptors "
  2079. "until their ORPort and DirPort are reachable. Please check "
  2080. "your firewalls, ports, address, /etc/hosts file, etc.",
  2081. address, me->dir_port);
  2082. control_event_server_status(LOG_WARN,
  2083. "REACHABILITY_FAILED DIRADDRESS=%s:%d",
  2084. address, me->dir_port);
  2085. tor_free(address);
  2086. }
  2087. }
  2088. /** If more than this many seconds have elapsed, probably the clock
  2089. * jumped: doesn't count. */
  2090. #define NUM_JUMPED_SECONDS_BEFORE_WARN 100
  2091. if (seconds_elapsed < -NUM_JUMPED_SECONDS_BEFORE_WARN ||
  2092. seconds_elapsed >= NUM_JUMPED_SECONDS_BEFORE_WARN) {
  2093. circuit_note_clock_jumped(seconds_elapsed);
  2094. } else if (seconds_elapsed > 0)
  2095. stats_n_seconds_working += seconds_elapsed;
  2096. run_scheduled_events(now);
  2097. current_second = now; /* remember which second it is, for next time */
  2098. }
  2099. #ifdef HAVE_SYSTEMD_209
  2100. static periodic_timer_t *systemd_watchdog_timer = NULL;
  2101. /** Libevent callback: invoked to reset systemd watchdog. */
  2102. static void
  2103. systemd_watchdog_callback(periodic_timer_t *timer, void *arg)
  2104. {
  2105. (void)timer;
  2106. (void)arg;
  2107. sd_notify(0, "WATCHDOG=1");
  2108. }
  2109. #endif /* defined(HAVE_SYSTEMD_209) */
  2110. /** Timer: used to invoke refill_callback(). */
  2111. static periodic_timer_t *refill_timer = NULL;
  2112. /** Millisecond when refall_callback was last invoked. */
  2113. static struct timeval refill_timer_current_millisecond;
  2114. /** Libevent callback: invoked periodically to refill token buckets
  2115. * and count r/w bytes. */
  2116. static void
  2117. refill_callback(periodic_timer_t *timer, void *arg)
  2118. {
  2119. struct timeval now;
  2120. size_t bytes_written;
  2121. size_t bytes_read;
  2122. int milliseconds_elapsed = 0;
  2123. int seconds_rolled_over = 0;
  2124. const or_options_t *options = get_options();
  2125. (void)timer;
  2126. (void)arg;
  2127. tor_gettimeofday(&now);
  2128. /* If this is our first time, no time has passed. */
  2129. if (refill_timer_current_millisecond.tv_sec) {
  2130. long mdiff = tv_mdiff(&refill_timer_current_millisecond, &now);
  2131. if (mdiff > INT_MAX)
  2132. mdiff = INT_MAX;
  2133. milliseconds_elapsed = (int)mdiff;
  2134. seconds_rolled_over = (int)(now.tv_sec -
  2135. refill_timer_current_millisecond.tv_sec);
  2136. }
  2137. bytes_written = stats_prev_global_write_bucket - global_write_bucket;
  2138. bytes_read = stats_prev_global_read_bucket - global_read_bucket;
  2139. stats_n_bytes_read += bytes_read;
  2140. stats_n_bytes_written += bytes_written;
  2141. if (accounting_is_enabled(options) && milliseconds_elapsed >= 0)
  2142. accounting_add_bytes(bytes_read, bytes_written, seconds_rolled_over);
  2143. if (milliseconds_elapsed > 0)
  2144. connection_bucket_refill(milliseconds_elapsed, (time_t)now.tv_sec);
  2145. stats_prev_global_read_bucket = global_read_bucket;
  2146. stats_prev_global_write_bucket = global_write_bucket;
  2147. /* remember what time it is, for next time */
  2148. refill_timer_current_millisecond = now;
  2149. }
  2150. #ifndef _WIN32
  2151. /** Called when a possibly ignorable libevent error occurs; ensures that we
  2152. * don't get into an infinite loop by ignoring too many errors from
  2153. * libevent. */
  2154. static int
  2155. got_libevent_error(void)
  2156. {
  2157. if (++n_libevent_errors > 8) {
  2158. log_err(LD_NET, "Too many libevent errors in one second; dying");
  2159. return -1;
  2160. }
  2161. return 0;
  2162. }
  2163. #endif /* !defined(_WIN32) */
  2164. #define UPTIME_CUTOFF_FOR_NEW_BANDWIDTH_TEST (6*60*60)
  2165. /** Called when our IP address seems to have changed. <b>at_interface</b>
  2166. * should be true if we detected a change in our interface, and false if we
  2167. * detected a change in our published address. */
  2168. void
  2169. ip_address_changed(int at_interface)
  2170. {
  2171. const or_options_t *options = get_options();
  2172. int server = server_mode(options);
  2173. int exit_reject_interfaces = (server && options->ExitRelay
  2174. && options->ExitPolicyRejectLocalInterfaces);
  2175. if (at_interface) {
  2176. if (! server) {
  2177. /* Okay, change our keys. */
  2178. if (init_keys_client() < 0)
  2179. log_warn(LD_GENERAL, "Unable to rotate keys after IP change!");
  2180. }
  2181. } else {
  2182. if (server) {
  2183. if (get_uptime() > UPTIME_CUTOFF_FOR_NEW_BANDWIDTH_TEST)
  2184. reset_bandwidth_test();
  2185. reset_uptime();
  2186. router_reset_reachability();
  2187. }
  2188. }
  2189. /* Exit relays incorporate interface addresses in their exit policies when
  2190. * ExitPolicyRejectLocalInterfaces is set */
  2191. if (exit_reject_interfaces || (server && !at_interface)) {
  2192. mark_my_descriptor_dirty("IP address changed");
  2193. }
  2194. dns_servers_relaunch_checks();
  2195. }
  2196. /** Forget what we've learned about the correctness of our DNS servers, and
  2197. * start learning again. */
  2198. void
  2199. dns_servers_relaunch_checks(void)
  2200. {
  2201. if (server_mode(get_options())) {
  2202. dns_reset_correctness_checks();
  2203. if (periodic_events_initialized) {
  2204. tor_assert(check_dns_honesty_event);
  2205. periodic_event_reschedule(check_dns_honesty_event);
  2206. }
  2207. }
  2208. }
  2209. /** Called when we get a SIGHUP: reload configuration files and keys,
  2210. * retry all connections, and so on. */
  2211. static int
  2212. do_hup(void)
  2213. {
  2214. const or_options_t *options = get_options();
  2215. #ifdef USE_DMALLOC
  2216. dmalloc_log_stats();
  2217. dmalloc_log_changed(0, 1, 0, 0);
  2218. #endif
  2219. log_notice(LD_GENERAL,"Received reload signal (hup). Reloading config and "
  2220. "resetting internal state.");
  2221. if (accounting_is_enabled(options))
  2222. accounting_record_bandwidth_usage(time(NULL), get_or_state());
  2223. router_reset_warnings();
  2224. routerlist_reset_warnings();
  2225. /* first, reload config variables, in case they've changed */
  2226. if (options->ReloadTorrcOnSIGHUP) {
  2227. /* no need to provide argc/v, they've been cached in init_from_config */
  2228. int init_rv = options_init_from_torrc(0, NULL);
  2229. if (init_rv < 0) {
  2230. log_err(LD_CONFIG,"Reading config failed--see warnings above. "
  2231. "For usage, try -h.");
  2232. return -1;
  2233. } else if (BUG(init_rv > 0)) {
  2234. // LCOV_EXCL_START
  2235. /* This should be impossible: the only "return 1" cases in
  2236. * options_init_from_torrc are ones caused by command-line arguments;
  2237. * but they can't change while Tor is running. */
  2238. return -1;
  2239. // LCOV_EXCL_STOP
  2240. }
  2241. options = get_options(); /* they have changed now */
  2242. /* Logs are only truncated the first time they are opened, but were
  2243. probably intended to be cleaned up on signal. */
  2244. if (options->TruncateLogFile)
  2245. truncate_logs();
  2246. } else {
  2247. char *msg = NULL;
  2248. log_notice(LD_GENERAL, "Not reloading config file: the controller told "
  2249. "us not to.");
  2250. /* Make stuff get rescanned, reloaded, etc. */
  2251. if (set_options((or_options_t*)options, &msg) < 0) {
  2252. if (!msg)
  2253. msg = tor_strdup("Unknown error");
  2254. log_warn(LD_GENERAL, "Unable to re-set previous options: %s", msg);
  2255. tor_free(msg);
  2256. }
  2257. }
  2258. if (authdir_mode(options)) {
  2259. /* reload the approved-routers file */
  2260. if (dirserv_load_fingerprint_file() < 0) {
  2261. /* warnings are logged from dirserv_load_fingerprint_file() directly */
  2262. log_info(LD_GENERAL, "Error reloading fingerprints. "
  2263. "Continuing with old list.");
  2264. }
  2265. }
  2266. /* Rotate away from the old dirty circuits. This has to be done
  2267. * after we've read the new options, but before we start using
  2268. * circuits for directory fetches. */
  2269. circuit_mark_all_dirty_circs_as_unusable();
  2270. /* retry appropriate downloads */
  2271. router_reset_status_download_failures();
  2272. router_reset_descriptor_download_failures();
  2273. if (!net_is_disabled())
  2274. update_networkstatus_downloads(time(NULL));
  2275. /* We'll retry routerstatus downloads in about 10 seconds; no need to
  2276. * force a retry there. */
  2277. if (server_mode(options)) {
  2278. /* Maybe we've been given a new ed25519 key or certificate?
  2279. */
  2280. time_t now = approx_time();
  2281. int new_signing_key = load_ed_keys(options, now);
  2282. if (new_signing_key < 0 ||
  2283. generate_ed_link_cert(options, now, new_signing_key > 0)) {
  2284. log_warn(LD_OR, "Problem reloading Ed25519 keys; still using old keys.");
  2285. }
  2286. /* Update cpuworker and dnsworker processes, so they get up-to-date
  2287. * configuration options. */
  2288. cpuworkers_rotate_keyinfo();
  2289. dns_reset();
  2290. }
  2291. return 0;
  2292. }
  2293. /** Tor main loop. */
  2294. int
  2295. do_main_loop(void)
  2296. {
  2297. time_t now;
  2298. /* initialize the periodic events first, so that code that depends on the
  2299. * events being present does not assert.
  2300. */
  2301. if (! periodic_events_initialized) {
  2302. initialize_periodic_events();
  2303. }
  2304. /* initialize dns resolve map, spawn workers if needed */
  2305. if (dns_init() < 0) {
  2306. if (get_options()->ServerDNSAllowBrokenConfig)
  2307. log_warn(LD_GENERAL, "Couldn't set up any working nameservers. "
  2308. "Network not up yet? Will try again soon.");
  2309. else {
  2310. log_err(LD_GENERAL,"Error initializing dns subsystem; exiting. To "
  2311. "retry instead, set the ServerDNSAllowBrokenResolvConf option.");
  2312. }
  2313. }
  2314. handle_signals();
  2315. monotime_init();
  2316. timers_initialize();
  2317. /* load the private keys, if we're supposed to have them, and set up the
  2318. * TLS context. */
  2319. if (! client_identity_key_is_set()) {
  2320. if (init_keys() < 0) {
  2321. log_err(LD_OR, "Error initializing keys; exiting");
  2322. return -1;
  2323. }
  2324. }
  2325. /* Set up our buckets */
  2326. connection_bucket_init();
  2327. stats_prev_global_read_bucket = global_read_bucket;
  2328. stats_prev_global_write_bucket = global_write_bucket;
  2329. /* initialize the bootstrap status events to know we're starting up */
  2330. control_event_bootstrap(BOOTSTRAP_STATUS_STARTING, 0);
  2331. /* Initialize the keypinning log. */
  2332. if (authdir_mode_v3(get_options())) {
  2333. char *fname = get_datadir_fname("key-pinning-journal");
  2334. int r = 0;
  2335. if (keypin_load_journal(fname)<0) {
  2336. log_err(LD_DIR, "Error loading key-pinning journal: %s",strerror(errno));
  2337. r = -1;
  2338. }
  2339. if (keypin_open_journal(fname)<0) {
  2340. log_err(LD_DIR, "Error opening key-pinning journal: %s",strerror(errno));
  2341. r = -1;
  2342. }
  2343. tor_free(fname);
  2344. if (r)
  2345. return r;
  2346. }
  2347. {
  2348. /* This is the old name for key-pinning-journal. These got corrupted
  2349. * in a couple of cases by #16530, so we started over. See #16580 for
  2350. * the rationale and for other options we didn't take. We can remove
  2351. * this code once all the authorities that ran 0.2.7.1-alpha-dev are
  2352. * upgraded.
  2353. */
  2354. char *fname = get_datadir_fname("key-pinning-entries");
  2355. unlink(fname);
  2356. tor_free(fname);
  2357. }
  2358. if (trusted_dirs_reload_certs()) {
  2359. log_warn(LD_DIR,
  2360. "Couldn't load all cached v3 certificates. Starting anyway.");
  2361. }
  2362. if (router_reload_consensus_networkstatus()) {
  2363. return -1;
  2364. }
  2365. /* load the routers file, or assign the defaults. */
  2366. if (router_reload_router_list()) {
  2367. return -1;
  2368. }
  2369. /* load the networkstatuses. (This launches a download for new routers as
  2370. * appropriate.)
  2371. */
  2372. now = time(NULL);
  2373. directory_info_has_arrived(now, 1, 0);
  2374. if (server_mode(get_options())) {
  2375. /* launch cpuworkers. Need to do this *after* we've read the onion key. */
  2376. cpu_init();
  2377. }
  2378. consdiffmgr_enable_background_compression();
  2379. /* Setup shared random protocol subsystem. */
  2380. if (authdir_mode_v3(get_options())) {
  2381. if (sr_init(1) < 0) {
  2382. return -1;
  2383. }
  2384. }
  2385. /* set up once-a-second callback. */
  2386. if (! second_timer) {
  2387. struct timeval one_second;
  2388. one_second.tv_sec = 1;
  2389. one_second.tv_usec = 0;
  2390. second_timer = periodic_timer_new(tor_libevent_get_base(),
  2391. &one_second,
  2392. second_elapsed_callback,
  2393. NULL);
  2394. tor_assert(second_timer);
  2395. }
  2396. #ifdef HAVE_SYSTEMD_209
  2397. uint64_t watchdog_delay;
  2398. /* set up systemd watchdog notification. */
  2399. if (sd_watchdog_enabled(1, &watchdog_delay) > 0) {
  2400. if (! systemd_watchdog_timer) {
  2401. struct timeval watchdog;
  2402. /* The manager will "act on" us if we don't send them a notification
  2403. * every 'watchdog_delay' microseconds. So, send notifications twice
  2404. * that often. */
  2405. watchdog_delay /= 2;
  2406. watchdog.tv_sec = watchdog_delay / 1000000;
  2407. watchdog.tv_usec = watchdog_delay % 1000000;
  2408. systemd_watchdog_timer = periodic_timer_new(tor_libevent_get_base(),
  2409. &watchdog,
  2410. systemd_watchdog_callback,
  2411. NULL);
  2412. tor_assert(systemd_watchdog_timer);
  2413. }
  2414. }
  2415. #endif /* defined(HAVE_SYSTEMD_209) */
  2416. if (!refill_timer) {
  2417. struct timeval refill_interval;
  2418. int msecs = get_options()->TokenBucketRefillInterval;
  2419. refill_interval.tv_sec = msecs/1000;
  2420. refill_interval.tv_usec = (msecs%1000)*1000;
  2421. refill_timer = periodic_timer_new(tor_libevent_get_base(),
  2422. &refill_interval,
  2423. refill_callback,
  2424. NULL);
  2425. tor_assert(refill_timer);
  2426. }
  2427. #ifdef HAVE_SYSTEMD
  2428. {
  2429. const int r = sd_notify(0, "READY=1");
  2430. if (r < 0) {
  2431. log_warn(LD_GENERAL, "Unable to send readiness to systemd: %s",
  2432. strerror(r));
  2433. } else if (r > 0) {
  2434. log_notice(LD_GENERAL, "Signaled readiness to systemd");
  2435. } else {
  2436. log_info(LD_GENERAL, "Systemd NOTIFY_SOCKET not present.");
  2437. }
  2438. }
  2439. #endif /* defined(HAVE_SYSTEMD) */
  2440. main_loop_should_exit = 0;
  2441. main_loop_exit_value = 0;
  2442. #ifdef ENABLE_RESTART_DEBUGGING
  2443. {
  2444. static int first_time = 1;
  2445. if (first_time && getenv("TOR_DEBUG_RESTART")) {
  2446. first_time = 0;
  2447. const char *sec_str = getenv("TOR_DEBUG_RESTART_AFTER_SECONDS");
  2448. long sec;
  2449. int sec_ok=0;
  2450. if (sec_str &&
  2451. (sec = tor_parse_long(sec_str, 10, 0, INT_MAX, &sec_ok, NULL)) &&
  2452. sec_ok) {
  2453. /* Okay, we parsed the seconds. */
  2454. } else {
  2455. sec = 5;
  2456. }
  2457. struct timeval restart_after = { (time_t) sec, 0 };
  2458. tor_shutdown_event_loop_for_restart_event =
  2459. tor_evtimer_new(tor_libevent_get_base(),
  2460. tor_shutdown_event_loop_for_restart_cb, NULL);
  2461. event_add(tor_shutdown_event_loop_for_restart_event, &restart_after);
  2462. }
  2463. }
  2464. #endif
  2465. return run_main_loop_until_done();
  2466. }
  2467. /**
  2468. * Run the main loop a single time. Return 0 for "exit"; -1 for "exit with
  2469. * error", and 1 for "run this again."
  2470. */
  2471. static int
  2472. run_main_loop_once(void)
  2473. {
  2474. int loop_result;
  2475. if (nt_service_is_stopping())
  2476. return 0;
  2477. if (main_loop_should_exit)
  2478. return 0;
  2479. #ifndef _WIN32
  2480. /* Make it easier to tell whether libevent failure is our fault or not. */
  2481. errno = 0;
  2482. #endif
  2483. /* All active linked conns should get their read events activated,
  2484. * so that libevent knows to run their callbacks. */
  2485. SMARTLIST_FOREACH(active_linked_connection_lst, connection_t *, conn,
  2486. event_active(conn->read_event, EV_READ, 1));
  2487. if (get_options()->MainloopStats) {
  2488. /* We always enforce that EVLOOP_ONCE is passed to event_base_loop() if we
  2489. * are collecting main loop statistics. */
  2490. called_loop_once = 1;
  2491. } else {
  2492. called_loop_once = smartlist_len(active_linked_connection_lst) ? 1 : 0;
  2493. }
  2494. /* Make sure we know (about) what time it is. */
  2495. update_approx_time(time(NULL));
  2496. /* Here it is: the main loop. Here we tell Libevent to poll until we have
  2497. * an event, or the second ends, or until we have some active linked
  2498. * connections to trigger events for. Libevent will wait till one
  2499. * of these happens, then run all the appropriate callbacks. */
  2500. loop_result = tor_libevent_run_event_loop(tor_libevent_get_base(),
  2501. called_loop_once);
  2502. if (get_options()->MainloopStats) {
  2503. /* Update our main loop counters. */
  2504. if (loop_result == 0) {
  2505. // The call was successful.
  2506. increment_main_loop_success_count();
  2507. } else if (loop_result == -1) {
  2508. // The call was erroneous.
  2509. increment_main_loop_error_count();
  2510. } else if (loop_result == 1) {
  2511. // The call didn't have any active or pending events
  2512. // to handle.
  2513. increment_main_loop_idle_count();
  2514. }
  2515. }
  2516. /* Oh, the loop failed. That might be an error that we need to
  2517. * catch, but more likely, it's just an interrupted poll() call or something,
  2518. * and we should try again. */
  2519. if (loop_result < 0) {
  2520. int e = tor_socket_errno(-1);
  2521. /* let the program survive things like ^z */
  2522. if (e != EINTR && !ERRNO_IS_EINPROGRESS(e)) {
  2523. log_err(LD_NET,"libevent call with %s failed: %s [%d]",
  2524. tor_libevent_get_method(), tor_socket_strerror(e), e);
  2525. return -1;
  2526. #ifndef _WIN32
  2527. } else if (e == EINVAL) {
  2528. log_warn(LD_NET, "EINVAL from libevent: should you upgrade libevent?");
  2529. if (got_libevent_error())
  2530. return -1;
  2531. #endif /* !defined(_WIN32) */
  2532. } else {
  2533. tor_assert_nonfatal_once(! ERRNO_IS_EINPROGRESS(e));
  2534. log_debug(LD_NET,"libevent call interrupted.");
  2535. /* You can't trust the results of this poll(). Go back to the
  2536. * top of the big for loop. */
  2537. return 1;
  2538. }
  2539. }
  2540. if (main_loop_should_exit)
  2541. return 0;
  2542. /* And here is where we put callbacks that happen "every time the event loop
  2543. * runs." They must be very fast, or else the whole Tor process will get
  2544. * slowed down.
  2545. *
  2546. * Note that this gets called once per libevent loop, which will make it
  2547. * happen once per group of events that fire, or once per second. */
  2548. /* If there are any pending client connections, try attaching them to
  2549. * circuits (if we can.) This will be pretty fast if nothing new is
  2550. * pending.
  2551. */
  2552. connection_ap_attach_pending(0);
  2553. return 1;
  2554. }
  2555. /** Run the run_main_loop_once() function until it declares itself done,
  2556. * and return its final return value.
  2557. *
  2558. * Shadow won't invoke this function, so don't fill it up with things.
  2559. */
  2560. static int
  2561. run_main_loop_until_done(void)
  2562. {
  2563. int loop_result = 1;
  2564. do {
  2565. loop_result = run_main_loop_once();
  2566. } while (loop_result == 1);
  2567. if (main_loop_should_exit)
  2568. return main_loop_exit_value;
  2569. else
  2570. return loop_result;
  2571. }
  2572. /** Libevent callback: invoked when we get a signal.
  2573. */
  2574. static void
  2575. signal_callback(evutil_socket_t fd, short events, void *arg)
  2576. {
  2577. const int *sigptr = arg;
  2578. const int sig = *sigptr;
  2579. (void)fd;
  2580. (void)events;
  2581. process_signal(sig);
  2582. }
  2583. /** Do the work of acting on a signal received in <b>sig</b> */
  2584. static void
  2585. process_signal(int sig)
  2586. {
  2587. switch (sig)
  2588. {
  2589. case SIGTERM:
  2590. log_notice(LD_GENERAL,"Catching signal TERM, exiting cleanly.");
  2591. tor_shutdown_event_loop_and_exit(0);
  2592. break;
  2593. case SIGINT:
  2594. if (!server_mode(get_options())) { /* do it now */
  2595. log_notice(LD_GENERAL,"Interrupt: exiting cleanly.");
  2596. tor_shutdown_event_loop_and_exit(0);
  2597. return;
  2598. }
  2599. #ifdef HAVE_SYSTEMD
  2600. sd_notify(0, "STOPPING=1");
  2601. #endif
  2602. hibernate_begin_shutdown();
  2603. break;
  2604. #ifdef SIGPIPE
  2605. case SIGPIPE:
  2606. log_debug(LD_GENERAL,"Caught SIGPIPE. Ignoring.");
  2607. break;
  2608. #endif
  2609. case SIGUSR1:
  2610. /* prefer to log it at INFO, but make sure we always see it */
  2611. dumpstats(get_min_log_level()<LOG_INFO ? get_min_log_level() : LOG_INFO);
  2612. control_event_signal(sig);
  2613. break;
  2614. case SIGUSR2:
  2615. switch_logs_debug();
  2616. log_debug(LD_GENERAL,"Caught USR2, going to loglevel debug. "
  2617. "Send HUP to change back.");
  2618. control_event_signal(sig);
  2619. break;
  2620. case SIGHUP:
  2621. #ifdef HAVE_SYSTEMD
  2622. sd_notify(0, "RELOADING=1");
  2623. #endif
  2624. if (do_hup() < 0) {
  2625. log_warn(LD_CONFIG,"Restart failed (config error?). Exiting.");
  2626. tor_shutdown_event_loop_and_exit(1);
  2627. return;
  2628. }
  2629. #ifdef HAVE_SYSTEMD
  2630. sd_notify(0, "READY=1");
  2631. #endif
  2632. control_event_signal(sig);
  2633. break;
  2634. #ifdef SIGCHLD
  2635. case SIGCHLD:
  2636. notify_pending_waitpid_callbacks();
  2637. break;
  2638. #endif
  2639. case SIGNEWNYM: {
  2640. time_t now = time(NULL);
  2641. if (time_of_last_signewnym + MAX_SIGNEWNYM_RATE > now) {
  2642. signewnym_is_pending = 1;
  2643. log_notice(LD_CONTROL,
  2644. "Rate limiting NEWNYM request: delaying by %d second(s)",
  2645. (int)(MAX_SIGNEWNYM_RATE+time_of_last_signewnym-now));
  2646. } else {
  2647. signewnym_impl(now);
  2648. }
  2649. break;
  2650. }
  2651. case SIGCLEARDNSCACHE:
  2652. addressmap_clear_transient();
  2653. control_event_signal(sig);
  2654. break;
  2655. case SIGHEARTBEAT:
  2656. log_heartbeat(time(NULL));
  2657. control_event_signal(sig);
  2658. break;
  2659. }
  2660. }
  2661. /** Returns Tor's uptime. */
  2662. MOCK_IMPL(long,
  2663. get_uptime,(void))
  2664. {
  2665. return stats_n_seconds_working;
  2666. }
  2667. /** Reset Tor's uptime. */
  2668. MOCK_IMPL(void,
  2669. reset_uptime,(void))
  2670. {
  2671. stats_n_seconds_working = 0;
  2672. }
  2673. /**
  2674. * Write current memory usage information to the log.
  2675. */
  2676. static void
  2677. dumpmemusage(int severity)
  2678. {
  2679. connection_dump_buffer_mem_stats(severity);
  2680. tor_log(severity, LD_GENERAL, "In rephist: "U64_FORMAT" used by %d Tors.",
  2681. U64_PRINTF_ARG(rephist_total_alloc), rephist_total_num);
  2682. dump_routerlist_mem_usage(severity);
  2683. dump_cell_pool_usage(severity);
  2684. dump_dns_mem_usage(severity);
  2685. tor_log_mallinfo(severity);
  2686. }
  2687. /** Write all statistics to the log, with log level <b>severity</b>. Called
  2688. * in response to a SIGUSR1. */
  2689. static void
  2690. dumpstats(int severity)
  2691. {
  2692. time_t now = time(NULL);
  2693. time_t elapsed;
  2694. size_t rbuf_cap, wbuf_cap, rbuf_len, wbuf_len;
  2695. tor_log(severity, LD_GENERAL, "Dumping stats:");
  2696. SMARTLIST_FOREACH_BEGIN(connection_array, connection_t *, conn) {
  2697. int i = conn_sl_idx;
  2698. tor_log(severity, LD_GENERAL,
  2699. "Conn %d (socket %d) type %d (%s), state %d (%s), created %d secs ago",
  2700. i, (int)conn->s, conn->type, conn_type_to_string(conn->type),
  2701. conn->state, conn_state_to_string(conn->type, conn->state),
  2702. (int)(now - conn->timestamp_created));
  2703. if (!connection_is_listener(conn)) {
  2704. tor_log(severity,LD_GENERAL,
  2705. "Conn %d is to %s:%d.", i,
  2706. safe_str_client(conn->address),
  2707. conn->port);
  2708. tor_log(severity,LD_GENERAL,
  2709. "Conn %d: %d bytes waiting on inbuf (len %d, last read %d secs ago)",
  2710. i,
  2711. (int)connection_get_inbuf_len(conn),
  2712. (int)buf_allocation(conn->inbuf),
  2713. (int)(now - conn->timestamp_last_read_allowed));
  2714. tor_log(severity,LD_GENERAL,
  2715. "Conn %d: %d bytes waiting on outbuf "
  2716. "(len %d, last written %d secs ago)",i,
  2717. (int)connection_get_outbuf_len(conn),
  2718. (int)buf_allocation(conn->outbuf),
  2719. (int)(now - conn->timestamp_last_write_allowed));
  2720. if (conn->type == CONN_TYPE_OR) {
  2721. or_connection_t *or_conn = TO_OR_CONN(conn);
  2722. if (or_conn->tls) {
  2723. if (tor_tls_get_buffer_sizes(or_conn->tls, &rbuf_cap, &rbuf_len,
  2724. &wbuf_cap, &wbuf_len) == 0) {
  2725. tor_log(severity, LD_GENERAL,
  2726. "Conn %d: %d/%d bytes used on OpenSSL read buffer; "
  2727. "%d/%d bytes used on write buffer.",
  2728. i, (int)rbuf_len, (int)rbuf_cap, (int)wbuf_len, (int)wbuf_cap);
  2729. }
  2730. }
  2731. }
  2732. }
  2733. circuit_dump_by_conn(conn, severity); /* dump info about all the circuits
  2734. * using this conn */
  2735. } SMARTLIST_FOREACH_END(conn);
  2736. channel_dumpstats(severity);
  2737. channel_listener_dumpstats(severity);
  2738. tor_log(severity, LD_NET,
  2739. "Cells processed: "U64_FORMAT" padding\n"
  2740. " "U64_FORMAT" create\n"
  2741. " "U64_FORMAT" created\n"
  2742. " "U64_FORMAT" relay\n"
  2743. " ("U64_FORMAT" relayed)\n"
  2744. " ("U64_FORMAT" delivered)\n"
  2745. " "U64_FORMAT" destroy",
  2746. U64_PRINTF_ARG(stats_n_padding_cells_processed),
  2747. U64_PRINTF_ARG(stats_n_create_cells_processed),
  2748. U64_PRINTF_ARG(stats_n_created_cells_processed),
  2749. U64_PRINTF_ARG(stats_n_relay_cells_processed),
  2750. U64_PRINTF_ARG(stats_n_relay_cells_relayed),
  2751. U64_PRINTF_ARG(stats_n_relay_cells_delivered),
  2752. U64_PRINTF_ARG(stats_n_destroy_cells_processed));
  2753. if (stats_n_data_cells_packaged)
  2754. tor_log(severity,LD_NET,"Average packaged cell fullness: %2.3f%%",
  2755. 100*(U64_TO_DBL(stats_n_data_bytes_packaged) /
  2756. U64_TO_DBL(stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) );
  2757. if (stats_n_data_cells_received)
  2758. tor_log(severity,LD_NET,"Average delivered cell fullness: %2.3f%%",
  2759. 100*(U64_TO_DBL(stats_n_data_bytes_received) /
  2760. U64_TO_DBL(stats_n_data_cells_received*RELAY_PAYLOAD_SIZE)) );
  2761. cpuworker_log_onionskin_overhead(severity, ONION_HANDSHAKE_TYPE_TAP, "TAP");
  2762. cpuworker_log_onionskin_overhead(severity, ONION_HANDSHAKE_TYPE_NTOR,"ntor");
  2763. if (now - time_of_process_start >= 0)
  2764. elapsed = now - time_of_process_start;
  2765. else
  2766. elapsed = 0;
  2767. if (elapsed) {
  2768. tor_log(severity, LD_NET,
  2769. "Average bandwidth: "U64_FORMAT"/%d = %d bytes/sec reading",
  2770. U64_PRINTF_ARG(stats_n_bytes_read),
  2771. (int)elapsed,
  2772. (int) (stats_n_bytes_read/elapsed));
  2773. tor_log(severity, LD_NET,
  2774. "Average bandwidth: "U64_FORMAT"/%d = %d bytes/sec writing",
  2775. U64_PRINTF_ARG(stats_n_bytes_written),
  2776. (int)elapsed,
  2777. (int) (stats_n_bytes_written/elapsed));
  2778. }
  2779. tor_log(severity, LD_NET, "--------------- Dumping memory information:");
  2780. dumpmemusage(severity);
  2781. rep_hist_dump_stats(now,severity);
  2782. rend_service_dump_stats(severity);
  2783. dump_distinct_digest_count(severity);
  2784. }
  2785. /** Called by exit() as we shut down the process.
  2786. */
  2787. static void
  2788. exit_function(void)
  2789. {
  2790. /* NOTE: If we ever daemonize, this gets called immediately. That's
  2791. * okay for now, because we only use this on Windows. */
  2792. #ifdef _WIN32
  2793. WSACleanup();
  2794. #endif
  2795. }
  2796. #ifdef _WIN32
  2797. #define UNIX_ONLY 0
  2798. #else
  2799. #define UNIX_ONLY 1
  2800. #endif
  2801. static struct {
  2802. /** A numeric code for this signal. Must match the signal value if
  2803. * try_to_register is true. */
  2804. int signal_value;
  2805. /** True if we should try to register this signal with libevent and catch
  2806. * corresponding posix signals. False otherwise. */
  2807. int try_to_register;
  2808. /** Pointer to hold the event object constructed for this signal. */
  2809. struct event *signal_event;
  2810. } signal_handlers[] = {
  2811. #ifdef SIGINT
  2812. { SIGINT, UNIX_ONLY, NULL }, /* do a controlled slow shutdown */
  2813. #endif
  2814. #ifdef SIGTERM
  2815. { SIGTERM, UNIX_ONLY, NULL }, /* to terminate now */
  2816. #endif
  2817. #ifdef SIGPIPE
  2818. { SIGPIPE, UNIX_ONLY, NULL }, /* otherwise SIGPIPE kills us */
  2819. #endif
  2820. #ifdef SIGUSR1
  2821. { SIGUSR1, UNIX_ONLY, NULL }, /* dump stats */
  2822. #endif
  2823. #ifdef SIGUSR2
  2824. { SIGUSR2, UNIX_ONLY, NULL }, /* go to loglevel debug */
  2825. #endif
  2826. #ifdef SIGHUP
  2827. { SIGHUP, UNIX_ONLY, NULL }, /* to reload config, retry conns, etc */
  2828. #endif
  2829. #ifdef SIGXFSZ
  2830. { SIGXFSZ, UNIX_ONLY, NULL }, /* handle file-too-big resource exhaustion */
  2831. #endif
  2832. #ifdef SIGCHLD
  2833. { SIGCHLD, UNIX_ONLY, NULL }, /* handle dns/cpu workers that exit */
  2834. #endif
  2835. /* These are controller-only */
  2836. { SIGNEWNYM, 0, NULL },
  2837. { SIGCLEARDNSCACHE, 0, NULL },
  2838. { SIGHEARTBEAT, 0, NULL },
  2839. { -1, -1, NULL }
  2840. };
  2841. /** Set up the signal handler events for this process, and register them
  2842. * with libevent if appropriate. */
  2843. void
  2844. handle_signals(void)
  2845. {
  2846. int i;
  2847. const int enabled = !get_options()->DisableSignalHandlers;
  2848. for (i = 0; signal_handlers[i].signal_value >= 0; ++i) {
  2849. /* Signal handlers are only registered with libevent if they need to catch
  2850. * real POSIX signals. We construct these signal handler events in either
  2851. * case, though, so that controllers can activate them with the SIGNAL
  2852. * command.
  2853. */
  2854. if (enabled && signal_handlers[i].try_to_register) {
  2855. signal_handlers[i].signal_event =
  2856. tor_evsignal_new(tor_libevent_get_base(),
  2857. signal_handlers[i].signal_value,
  2858. signal_callback,
  2859. &signal_handlers[i].signal_value);
  2860. if (event_add(signal_handlers[i].signal_event, NULL))
  2861. log_warn(LD_BUG, "Error from libevent when adding "
  2862. "event for signal %d",
  2863. signal_handlers[i].signal_value);
  2864. } else {
  2865. signal_handlers[i].signal_event =
  2866. tor_event_new(tor_libevent_get_base(), -1,
  2867. EV_SIGNAL, signal_callback,
  2868. &signal_handlers[i].signal_value);
  2869. }
  2870. }
  2871. }
  2872. /* Cause the signal handler for signal_num to be called in the event loop. */
  2873. void
  2874. activate_signal(int signal_num)
  2875. {
  2876. int i;
  2877. for (i = 0; signal_handlers[i].signal_value >= 0; ++i) {
  2878. if (signal_handlers[i].signal_value == signal_num) {
  2879. event_active(signal_handlers[i].signal_event, EV_SIGNAL, 1);
  2880. return;
  2881. }
  2882. }
  2883. }
  2884. /** Main entry point for the Tor command-line client. Return 0 on "success",
  2885. * negative on "failure", and positive on "success and exit".
  2886. */
  2887. int
  2888. tor_init(int argc, char *argv[])
  2889. {
  2890. char progname[256];
  2891. int quiet = 0;
  2892. time_of_process_start = time(NULL);
  2893. init_connection_lists();
  2894. /* Have the log set up with our application name. */
  2895. tor_snprintf(progname, sizeof(progname), "Tor %s", get_version());
  2896. log_set_application_name(progname);
  2897. /* Set up the crypto nice and early */
  2898. if (crypto_early_init() < 0) {
  2899. log_err(LD_GENERAL, "Unable to initialize the crypto subsystem!");
  2900. return -1;
  2901. }
  2902. /* Initialize the history structures. */
  2903. rep_hist_init();
  2904. /* Initialize the service cache. */
  2905. rend_cache_init();
  2906. addressmap_init(); /* Init the client dns cache. Do it always, since it's
  2907. * cheap. */
  2908. /* Initialize the HS subsystem. */
  2909. hs_init();
  2910. {
  2911. /* We search for the "quiet" option first, since it decides whether we
  2912. * will log anything at all to the command line. */
  2913. config_line_t *opts = NULL, *cmdline_opts = NULL;
  2914. const config_line_t *cl;
  2915. (void) config_parse_commandline(argc, argv, 1, &opts, &cmdline_opts);
  2916. for (cl = cmdline_opts; cl; cl = cl->next) {
  2917. if (!strcmp(cl->key, "--hush"))
  2918. quiet = 1;
  2919. if (!strcmp(cl->key, "--quiet") ||
  2920. !strcmp(cl->key, "--dump-config"))
  2921. quiet = 2;
  2922. /* The following options imply --hush */
  2923. if (!strcmp(cl->key, "--version") || !strcmp(cl->key, "--digests") ||
  2924. !strcmp(cl->key, "--list-torrc-options") ||
  2925. !strcmp(cl->key, "--library-versions") ||
  2926. !strcmp(cl->key, "--hash-password") ||
  2927. !strcmp(cl->key, "-h") || !strcmp(cl->key, "--help")) {
  2928. if (quiet < 1)
  2929. quiet = 1;
  2930. }
  2931. }
  2932. config_free_lines(opts);
  2933. config_free_lines(cmdline_opts);
  2934. }
  2935. /* give it somewhere to log to initially */
  2936. switch (quiet) {
  2937. case 2:
  2938. /* no initial logging */
  2939. break;
  2940. case 1:
  2941. add_temp_log(LOG_WARN);
  2942. break;
  2943. default:
  2944. add_temp_log(LOG_NOTICE);
  2945. }
  2946. quiet_level = quiet;
  2947. {
  2948. const char *version = get_version();
  2949. log_notice(LD_GENERAL, "Tor %s running on %s with Libevent %s, "
  2950. "OpenSSL %s, Zlib %s, Liblzma %s, and Libzstd %s.", version,
  2951. get_uname(),
  2952. tor_libevent_get_version_str(),
  2953. crypto_openssl_get_version_str(),
  2954. tor_compress_supports_method(ZLIB_METHOD) ?
  2955. tor_compress_version_str(ZLIB_METHOD) : "N/A",
  2956. tor_compress_supports_method(LZMA_METHOD) ?
  2957. tor_compress_version_str(LZMA_METHOD) : "N/A",
  2958. tor_compress_supports_method(ZSTD_METHOD) ?
  2959. tor_compress_version_str(ZSTD_METHOD) : "N/A");
  2960. log_notice(LD_GENERAL, "Tor can't help you if you use it wrong! "
  2961. "Learn how to be safe at "
  2962. "https://www.torproject.org/download/download#warning");
  2963. if (strstr(version, "alpha") || strstr(version, "beta"))
  2964. log_notice(LD_GENERAL, "This version is not a stable Tor release. "
  2965. "Expect more bugs than usual.");
  2966. tor_compress_log_init_warnings();
  2967. }
  2968. #ifdef HAVE_RUST
  2969. rust_log_welcome_string();
  2970. #endif /* defined(HAVE_RUST) */
  2971. if (network_init()<0) {
  2972. log_err(LD_BUG,"Error initializing network; exiting.");
  2973. return -1;
  2974. }
  2975. atexit(exit_function);
  2976. int init_rv = options_init_from_torrc(argc,argv);
  2977. if (init_rv < 0) {
  2978. log_err(LD_CONFIG,"Reading config failed--see warnings above.");
  2979. return -1;
  2980. } else if (init_rv > 0) {
  2981. // We succeeded, and should exit anyway -- probably the user just said
  2982. // "--version" or something like that.
  2983. return 1;
  2984. }
  2985. /* The options are now initialised */
  2986. const or_options_t *options = get_options();
  2987. /* Initialize channelpadding parameters to defaults until we get
  2988. * a consensus */
  2989. channelpadding_new_consensus_params(NULL);
  2990. /* Initialize predicted ports list after loading options */
  2991. predicted_ports_init();
  2992. #ifndef _WIN32
  2993. if (geteuid()==0)
  2994. log_warn(LD_GENERAL,"You are running Tor as root. You don't need to, "
  2995. "and you probably shouldn't.");
  2996. #endif
  2997. if (crypto_global_init(options->HardwareAccel,
  2998. options->AccelName,
  2999. options->AccelDir)) {
  3000. log_err(LD_BUG, "Unable to initialize OpenSSL. Exiting.");
  3001. return -1;
  3002. }
  3003. stream_choice_seed_weak_rng();
  3004. if (tor_init_libevent_rng() < 0) {
  3005. log_warn(LD_NET, "Problem initializing libevent RNG.");
  3006. }
  3007. /* Scan/clean unparseable descriptors; after reading config */
  3008. routerparse_init();
  3009. return 0;
  3010. }
  3011. /** A lockfile structure, used to prevent two Tors from messing with the
  3012. * data directory at once. If this variable is non-NULL, we're holding
  3013. * the lockfile. */
  3014. static tor_lockfile_t *lockfile = NULL;
  3015. /** Try to grab the lock file described in <b>options</b>, if we do not
  3016. * already have it. If <b>err_if_locked</b> is true, warn if somebody else is
  3017. * holding the lock, and exit if we can't get it after waiting. Otherwise,
  3018. * return -1 if we can't get the lockfile. Return 0 on success.
  3019. */
  3020. int
  3021. try_locking(const or_options_t *options, int err_if_locked)
  3022. {
  3023. if (lockfile)
  3024. return 0;
  3025. else {
  3026. char *fname = options_get_datadir_fname(options, "lock");
  3027. int already_locked = 0;
  3028. tor_lockfile_t *lf = tor_lockfile_lock(fname, 0, &already_locked);
  3029. tor_free(fname);
  3030. if (!lf) {
  3031. if (err_if_locked && already_locked) {
  3032. int r;
  3033. log_warn(LD_GENERAL, "It looks like another Tor process is running "
  3034. "with the same data directory. Waiting 5 seconds to see "
  3035. "if it goes away.");
  3036. #ifndef _WIN32
  3037. sleep(5);
  3038. #else
  3039. Sleep(5000);
  3040. #endif
  3041. r = try_locking(options, 0);
  3042. if (r<0) {
  3043. log_err(LD_GENERAL, "No, it's still there. Exiting.");
  3044. return -1;
  3045. }
  3046. return r;
  3047. }
  3048. return -1;
  3049. }
  3050. lockfile = lf;
  3051. return 0;
  3052. }
  3053. }
  3054. /** Return true iff we've successfully acquired the lock file. */
  3055. int
  3056. have_lockfile(void)
  3057. {
  3058. return lockfile != NULL;
  3059. }
  3060. /** If we have successfully acquired the lock file, release it. */
  3061. void
  3062. release_lockfile(void)
  3063. {
  3064. if (lockfile) {
  3065. tor_lockfile_unlock(lockfile);
  3066. lockfile = NULL;
  3067. }
  3068. }
  3069. /** Free all memory that we might have allocated somewhere.
  3070. * If <b>postfork</b>, we are a worker process and we want to free
  3071. * only the parts of memory that we won't touch. If !<b>postfork</b>,
  3072. * Tor is shutting down and we should free everything.
  3073. *
  3074. * Helps us find the real leaks with dmalloc and the like. Also valgrind
  3075. * should then report 0 reachable in its leak report (in an ideal world --
  3076. * in practice libevent, SSL, libc etc never quite free everything). */
  3077. void
  3078. tor_free_all(int postfork)
  3079. {
  3080. if (!postfork) {
  3081. evdns_shutdown(1);
  3082. }
  3083. geoip_free_all();
  3084. dirvote_free_all();
  3085. routerlist_free_all();
  3086. networkstatus_free_all();
  3087. addressmap_free_all();
  3088. dirserv_free_all();
  3089. rend_cache_free_all();
  3090. rend_service_authorization_free_all();
  3091. rep_hist_free_all();
  3092. dns_free_all();
  3093. clear_pending_onions();
  3094. circuit_free_all();
  3095. entry_guards_free_all();
  3096. pt_free_all();
  3097. channel_tls_free_all();
  3098. channel_free_all();
  3099. connection_free_all();
  3100. connection_edge_free_all();
  3101. scheduler_free_all();
  3102. nodelist_free_all();
  3103. microdesc_free_all();
  3104. routerparse_free_all();
  3105. ext_orport_free_all();
  3106. control_free_all();
  3107. sandbox_free_getaddrinfo_cache();
  3108. protover_free_all();
  3109. bridges_free_all();
  3110. consdiffmgr_free_all();
  3111. hs_free_all();
  3112. dos_free_all();
  3113. if (!postfork) {
  3114. config_free_all();
  3115. or_state_free_all();
  3116. router_free_all();
  3117. routerkeys_free_all();
  3118. policies_free_all();
  3119. }
  3120. if (!postfork) {
  3121. tor_tls_free_all();
  3122. #ifndef _WIN32
  3123. tor_getpwnam(NULL);
  3124. #endif
  3125. }
  3126. /* stuff in main.c */
  3127. smartlist_free(connection_array);
  3128. smartlist_free(closeable_connection_lst);
  3129. smartlist_free(active_linked_connection_lst);
  3130. periodic_timer_free(second_timer);
  3131. teardown_periodic_events();
  3132. periodic_timer_free(refill_timer);
  3133. tor_event_free(shutdown_did_not_work_event);
  3134. tor_event_free(initialize_periodic_events_event);
  3135. mainloop_event_free(directory_all_unreachable_cb_event);
  3136. #ifdef HAVE_SYSTEMD_209
  3137. periodic_timer_free(systemd_watchdog_timer);
  3138. #endif
  3139. global_read_bucket = global_write_bucket = 0;
  3140. global_relayed_read_bucket = global_relayed_write_bucket = 0;
  3141. stats_prev_global_read_bucket = stats_prev_global_write_bucket = 0;
  3142. stats_prev_n_read = stats_prev_n_written = 0;
  3143. stats_n_bytes_read = stats_n_bytes_written = 0;
  3144. time_of_process_start = 0;
  3145. time_of_last_signewnym = 0;
  3146. signewnym_is_pending = 0;
  3147. newnym_epoch = 0;
  3148. called_loop_once = 0;
  3149. main_loop_should_exit = 0;
  3150. main_loop_exit_value = 0;
  3151. can_complete_circuits = 0;
  3152. quiet_level = 0;
  3153. should_init_bridge_stats = 1;
  3154. dns_honesty_first_time = 1;
  3155. heartbeat_callback_first_time = 1;
  3156. n_libevent_errors = 0;
  3157. current_second = 0;
  3158. memset(&refill_timer_current_millisecond, 0, sizeof(struct timeval));
  3159. if (!postfork) {
  3160. release_lockfile();
  3161. }
  3162. tor_libevent_free_all();
  3163. /* Stuff in util.c and address.c*/
  3164. if (!postfork) {
  3165. escaped(NULL);
  3166. esc_router_info(NULL);
  3167. clean_up_backtrace_handler();
  3168. logs_free_all(); /* free log strings. do this last so logs keep working. */
  3169. }
  3170. }
  3171. /**
  3172. * Remove the specified file, and log a warning if the operation fails for
  3173. * any reason other than the file not existing. Ignores NULL filenames.
  3174. */
  3175. void
  3176. tor_remove_file(const char *filename)
  3177. {
  3178. if (filename && tor_unlink(filename) != 0 && errno != ENOENT) {
  3179. log_warn(LD_FS, "Couldn't unlink %s: %s",
  3180. filename, strerror(errno));
  3181. }
  3182. }
  3183. /** Do whatever cleanup is necessary before shutting Tor down. */
  3184. void
  3185. tor_cleanup(void)
  3186. {
  3187. const or_options_t *options = get_options();
  3188. if (options->command == CMD_RUN_TOR) {
  3189. time_t now = time(NULL);
  3190. /* Remove our pid file. We don't care if there was an error when we
  3191. * unlink, nothing we could do about it anyways. */
  3192. tor_remove_file(options->PidFile);
  3193. /* Remove control port file */
  3194. tor_remove_file(options->ControlPortWriteToFile);
  3195. /* Remove cookie authentication file */
  3196. {
  3197. char *cookie_fname = get_controller_cookie_file_name();
  3198. tor_remove_file(cookie_fname);
  3199. tor_free(cookie_fname);
  3200. }
  3201. /* Remove Extended ORPort cookie authentication file */
  3202. {
  3203. char *cookie_fname = get_ext_or_auth_cookie_file_name();
  3204. tor_remove_file(cookie_fname);
  3205. tor_free(cookie_fname);
  3206. }
  3207. if (accounting_is_enabled(options))
  3208. accounting_record_bandwidth_usage(now, get_or_state());
  3209. or_state_mark_dirty(get_or_state(), 0); /* force an immediate save. */
  3210. or_state_save(now);
  3211. if (authdir_mode(options)) {
  3212. sr_save_and_cleanup();
  3213. }
  3214. if (authdir_mode_tests_reachability(options))
  3215. rep_hist_record_mtbf_data(now, 0);
  3216. keypin_close_journal();
  3217. }
  3218. timers_shutdown();
  3219. #ifdef USE_DMALLOC
  3220. dmalloc_log_stats();
  3221. #endif
  3222. tor_free_all(0); /* We could move tor_free_all back into the ifdef below
  3223. later, if it makes shutdown unacceptably slow. But for
  3224. now, leave it here: it's helped us catch bugs in the
  3225. past. */
  3226. crypto_global_cleanup();
  3227. #ifdef USE_DMALLOC
  3228. dmalloc_log_unfreed();
  3229. dmalloc_shutdown();
  3230. #endif
  3231. }
  3232. /** Read/create keys as needed, and echo our fingerprint to stdout. */
  3233. static int
  3234. do_list_fingerprint(void)
  3235. {
  3236. char buf[FINGERPRINT_LEN+1];
  3237. crypto_pk_t *k;
  3238. const char *nickname = get_options()->Nickname;
  3239. sandbox_disable_getaddrinfo_cache();
  3240. if (!server_mode(get_options())) {
  3241. log_err(LD_GENERAL,
  3242. "Clients don't have long-term identity keys. Exiting.");
  3243. return -1;
  3244. }
  3245. tor_assert(nickname);
  3246. if (init_keys() < 0) {
  3247. log_err(LD_GENERAL,"Error initializing keys; exiting.");
  3248. return -1;
  3249. }
  3250. if (!(k = get_server_identity_key())) {
  3251. log_err(LD_GENERAL,"Error: missing identity key.");
  3252. return -1;
  3253. }
  3254. if (crypto_pk_get_fingerprint(k, buf, 1)<0) {
  3255. log_err(LD_BUG, "Error computing fingerprint");
  3256. return -1;
  3257. }
  3258. printf("%s %s\n", nickname, buf);
  3259. return 0;
  3260. }
  3261. /** Entry point for password hashing: take the desired password from
  3262. * the command line, and print its salted hash to stdout. **/
  3263. static void
  3264. do_hash_password(void)
  3265. {
  3266. char output[256];
  3267. char key[S2K_RFC2440_SPECIFIER_LEN+DIGEST_LEN];
  3268. crypto_rand(key, S2K_RFC2440_SPECIFIER_LEN-1);
  3269. key[S2K_RFC2440_SPECIFIER_LEN-1] = (uint8_t)96; /* Hash 64 K of data. */
  3270. secret_to_key_rfc2440(key+S2K_RFC2440_SPECIFIER_LEN, DIGEST_LEN,
  3271. get_options()->command_arg, strlen(get_options()->command_arg),
  3272. key);
  3273. base16_encode(output, sizeof(output), key, sizeof(key));
  3274. printf("16:%s\n",output);
  3275. }
  3276. /** Entry point for configuration dumping: write the configuration to
  3277. * stdout. */
  3278. static int
  3279. do_dump_config(void)
  3280. {
  3281. const or_options_t *options = get_options();
  3282. const char *arg = options->command_arg;
  3283. int how;
  3284. char *opts;
  3285. if (!strcmp(arg, "short")) {
  3286. how = OPTIONS_DUMP_MINIMAL;
  3287. } else if (!strcmp(arg, "non-builtin")) {
  3288. how = OPTIONS_DUMP_DEFAULTS;
  3289. } else if (!strcmp(arg, "full")) {
  3290. how = OPTIONS_DUMP_ALL;
  3291. } else {
  3292. fprintf(stderr, "No valid argument to --dump-config found!\n");
  3293. fprintf(stderr, "Please select 'short', 'non-builtin', or 'full'.\n");
  3294. return -1;
  3295. }
  3296. opts = options_dump(options, how);
  3297. printf("%s", opts);
  3298. tor_free(opts);
  3299. return 0;
  3300. }
  3301. static void
  3302. init_addrinfo(void)
  3303. {
  3304. if (! server_mode(get_options()) ||
  3305. (get_options()->Address && strlen(get_options()->Address) > 0)) {
  3306. /* We don't need to seed our own hostname, because we won't be calling
  3307. * resolve_my_address on it.
  3308. */
  3309. return;
  3310. }
  3311. char hname[256];
  3312. // host name to sandbox
  3313. gethostname(hname, sizeof(hname));
  3314. sandbox_add_addrinfo(hname);
  3315. }
  3316. static sandbox_cfg_t*
  3317. sandbox_init_filter(void)
  3318. {
  3319. const or_options_t *options = get_options();
  3320. sandbox_cfg_t *cfg = sandbox_cfg_new();
  3321. int i;
  3322. sandbox_cfg_allow_openat_filename(&cfg,
  3323. get_cachedir_fname("cached-status"));
  3324. #define OPEN(name) \
  3325. sandbox_cfg_allow_open_filename(&cfg, tor_strdup(name))
  3326. #define OPEN_DATADIR(name) \
  3327. sandbox_cfg_allow_open_filename(&cfg, get_datadir_fname(name))
  3328. #define OPEN_DATADIR2(name, name2) \
  3329. sandbox_cfg_allow_open_filename(&cfg, get_datadir_fname2((name), (name2)))
  3330. #define OPEN_DATADIR_SUFFIX(name, suffix) do { \
  3331. OPEN_DATADIR(name); \
  3332. OPEN_DATADIR(name suffix); \
  3333. } while (0)
  3334. #define OPEN_DATADIR2_SUFFIX(name, name2, suffix) do { \
  3335. OPEN_DATADIR2(name, name2); \
  3336. OPEN_DATADIR2(name, name2 suffix); \
  3337. } while (0)
  3338. #define OPEN_KEY_DIRECTORY() \
  3339. sandbox_cfg_allow_open_filename(&cfg, tor_strdup(options->KeyDirectory))
  3340. #define OPEN_CACHEDIR(name) \
  3341. sandbox_cfg_allow_open_filename(&cfg, get_cachedir_fname(name))
  3342. #define OPEN_CACHEDIR_SUFFIX(name, suffix) do { \
  3343. OPEN_CACHEDIR(name); \
  3344. OPEN_CACHEDIR(name suffix); \
  3345. } while (0)
  3346. #define OPEN_KEYDIR(name) \
  3347. sandbox_cfg_allow_open_filename(&cfg, get_keydir_fname(name))
  3348. #define OPEN_KEYDIR_SUFFIX(name, suffix) do { \
  3349. OPEN_KEYDIR(name); \
  3350. OPEN_KEYDIR(name suffix); \
  3351. } while (0)
  3352. OPEN(options->DataDirectory);
  3353. OPEN_KEY_DIRECTORY();
  3354. OPEN_CACHEDIR_SUFFIX("cached-certs", ".tmp");
  3355. OPEN_CACHEDIR_SUFFIX("cached-consensus", ".tmp");
  3356. OPEN_CACHEDIR_SUFFIX("unverified-consensus", ".tmp");
  3357. OPEN_CACHEDIR_SUFFIX("unverified-microdesc-consensus", ".tmp");
  3358. OPEN_CACHEDIR_SUFFIX("cached-microdesc-consensus", ".tmp");
  3359. OPEN_CACHEDIR_SUFFIX("cached-microdescs", ".tmp");
  3360. OPEN_CACHEDIR_SUFFIX("cached-microdescs.new", ".tmp");
  3361. OPEN_CACHEDIR_SUFFIX("cached-descriptors", ".tmp");
  3362. OPEN_CACHEDIR_SUFFIX("cached-descriptors.new", ".tmp");
  3363. OPEN_CACHEDIR("cached-descriptors.tmp.tmp");
  3364. OPEN_CACHEDIR_SUFFIX("cached-extrainfo", ".tmp");
  3365. OPEN_CACHEDIR_SUFFIX("cached-extrainfo.new", ".tmp");
  3366. OPEN_CACHEDIR("cached-extrainfo.tmp.tmp");
  3367. OPEN_DATADIR_SUFFIX("state", ".tmp");
  3368. OPEN_DATADIR_SUFFIX("sr-state", ".tmp");
  3369. OPEN_DATADIR_SUFFIX("unparseable-desc", ".tmp");
  3370. OPEN_DATADIR_SUFFIX("v3-status-votes", ".tmp");
  3371. OPEN_DATADIR("key-pinning-journal");
  3372. OPEN("/dev/srandom");
  3373. OPEN("/dev/urandom");
  3374. OPEN("/dev/random");
  3375. OPEN("/etc/hosts");
  3376. OPEN("/proc/meminfo");
  3377. if (options->BridgeAuthoritativeDir)
  3378. OPEN_DATADIR_SUFFIX("networkstatus-bridges", ".tmp");
  3379. if (authdir_mode(options))
  3380. OPEN_DATADIR("approved-routers");
  3381. if (options->ServerDNSResolvConfFile)
  3382. sandbox_cfg_allow_open_filename(&cfg,
  3383. tor_strdup(options->ServerDNSResolvConfFile));
  3384. else
  3385. sandbox_cfg_allow_open_filename(&cfg, tor_strdup("/etc/resolv.conf"));
  3386. for (i = 0; i < 2; ++i) {
  3387. if (get_torrc_fname(i)) {
  3388. sandbox_cfg_allow_open_filename(&cfg, tor_strdup(get_torrc_fname(i)));
  3389. }
  3390. }
  3391. SMARTLIST_FOREACH(options->FilesOpenedByIncludes, char *, f, {
  3392. OPEN(f);
  3393. });
  3394. #define RENAME_SUFFIX(name, suffix) \
  3395. sandbox_cfg_allow_rename(&cfg, \
  3396. get_datadir_fname(name suffix), \
  3397. get_datadir_fname(name))
  3398. #define RENAME_SUFFIX2(prefix, name, suffix) \
  3399. sandbox_cfg_allow_rename(&cfg, \
  3400. get_datadir_fname2(prefix, name suffix), \
  3401. get_datadir_fname2(prefix, name))
  3402. #define RENAME_CACHEDIR_SUFFIX(name, suffix) \
  3403. sandbox_cfg_allow_rename(&cfg, \
  3404. get_cachedir_fname(name suffix), \
  3405. get_cachedir_fname(name))
  3406. #define RENAME_KEYDIR_SUFFIX(name, suffix) \
  3407. sandbox_cfg_allow_rename(&cfg, \
  3408. get_keydir_fname(name suffix), \
  3409. get_keydir_fname(name))
  3410. RENAME_CACHEDIR_SUFFIX("cached-certs", ".tmp");
  3411. RENAME_CACHEDIR_SUFFIX("cached-consensus", ".tmp");
  3412. RENAME_CACHEDIR_SUFFIX("unverified-consensus", ".tmp");
  3413. RENAME_CACHEDIR_SUFFIX("unverified-microdesc-consensus", ".tmp");
  3414. RENAME_CACHEDIR_SUFFIX("cached-microdesc-consensus", ".tmp");
  3415. RENAME_CACHEDIR_SUFFIX("cached-microdescs", ".tmp");
  3416. RENAME_CACHEDIR_SUFFIX("cached-microdescs", ".new");
  3417. RENAME_CACHEDIR_SUFFIX("cached-microdescs.new", ".tmp");
  3418. RENAME_CACHEDIR_SUFFIX("cached-descriptors", ".tmp");
  3419. RENAME_CACHEDIR_SUFFIX("cached-descriptors", ".new");
  3420. RENAME_CACHEDIR_SUFFIX("cached-descriptors.new", ".tmp");
  3421. RENAME_CACHEDIR_SUFFIX("cached-extrainfo", ".tmp");
  3422. RENAME_CACHEDIR_SUFFIX("cached-extrainfo", ".new");
  3423. RENAME_CACHEDIR_SUFFIX("cached-extrainfo.new", ".tmp");
  3424. RENAME_SUFFIX("state", ".tmp");
  3425. RENAME_SUFFIX("sr-state", ".tmp");
  3426. RENAME_SUFFIX("unparseable-desc", ".tmp");
  3427. RENAME_SUFFIX("v3-status-votes", ".tmp");
  3428. if (options->BridgeAuthoritativeDir)
  3429. RENAME_SUFFIX("networkstatus-bridges", ".tmp");
  3430. #define STAT_DATADIR(name) \
  3431. sandbox_cfg_allow_stat_filename(&cfg, get_datadir_fname(name))
  3432. #define STAT_CACHEDIR(name) \
  3433. sandbox_cfg_allow_stat_filename(&cfg, get_cachedir_fname(name))
  3434. #define STAT_DATADIR2(name, name2) \
  3435. sandbox_cfg_allow_stat_filename(&cfg, get_datadir_fname2((name), (name2)))
  3436. #define STAT_KEY_DIRECTORY() \
  3437. sandbox_cfg_allow_stat_filename(&cfg, tor_strdup(options->KeyDirectory))
  3438. STAT_DATADIR(NULL);
  3439. STAT_DATADIR("lock");
  3440. STAT_DATADIR("state");
  3441. STAT_DATADIR("router-stability");
  3442. STAT_CACHEDIR("cached-extrainfo.new");
  3443. {
  3444. smartlist_t *files = smartlist_new();
  3445. tor_log_get_logfile_names(files);
  3446. SMARTLIST_FOREACH(files, char *, file_name, {
  3447. /* steals reference */
  3448. sandbox_cfg_allow_open_filename(&cfg, file_name);
  3449. });
  3450. smartlist_free(files);
  3451. }
  3452. {
  3453. smartlist_t *files = smartlist_new();
  3454. smartlist_t *dirs = smartlist_new();
  3455. hs_service_lists_fnames_for_sandbox(files, dirs);
  3456. SMARTLIST_FOREACH(files, char *, file_name, {
  3457. char *tmp_name = NULL;
  3458. tor_asprintf(&tmp_name, "%s.tmp", file_name);
  3459. sandbox_cfg_allow_rename(&cfg,
  3460. tor_strdup(tmp_name), tor_strdup(file_name));
  3461. /* steals references */
  3462. sandbox_cfg_allow_open_filename(&cfg, file_name);
  3463. sandbox_cfg_allow_open_filename(&cfg, tmp_name);
  3464. });
  3465. SMARTLIST_FOREACH(dirs, char *, dir, {
  3466. /* steals reference */
  3467. sandbox_cfg_allow_stat_filename(&cfg, dir);
  3468. });
  3469. smartlist_free(files);
  3470. smartlist_free(dirs);
  3471. }
  3472. {
  3473. char *fname;
  3474. if ((fname = get_controller_cookie_file_name())) {
  3475. sandbox_cfg_allow_open_filename(&cfg, fname);
  3476. }
  3477. if ((fname = get_ext_or_auth_cookie_file_name())) {
  3478. sandbox_cfg_allow_open_filename(&cfg, fname);
  3479. }
  3480. }
  3481. SMARTLIST_FOREACH_BEGIN(get_configured_ports(), port_cfg_t *, port) {
  3482. if (!port->is_unix_addr)
  3483. continue;
  3484. /* When we open an AF_UNIX address, we want permission to open the
  3485. * directory that holds it. */
  3486. char *dirname = tor_strdup(port->unix_addr);
  3487. if (get_parent_directory(dirname) == 0) {
  3488. OPEN(dirname);
  3489. }
  3490. tor_free(dirname);
  3491. sandbox_cfg_allow_chmod_filename(&cfg, tor_strdup(port->unix_addr));
  3492. sandbox_cfg_allow_chown_filename(&cfg, tor_strdup(port->unix_addr));
  3493. } SMARTLIST_FOREACH_END(port);
  3494. if (options->DirPortFrontPage) {
  3495. sandbox_cfg_allow_open_filename(&cfg,
  3496. tor_strdup(options->DirPortFrontPage));
  3497. }
  3498. // orport
  3499. if (server_mode(get_options())) {
  3500. OPEN_KEYDIR_SUFFIX("secret_id_key", ".tmp");
  3501. OPEN_KEYDIR_SUFFIX("secret_onion_key", ".tmp");
  3502. OPEN_KEYDIR_SUFFIX("secret_onion_key_ntor", ".tmp");
  3503. OPEN_KEYDIR("secret_id_key.old");
  3504. OPEN_KEYDIR("secret_onion_key.old");
  3505. OPEN_KEYDIR("secret_onion_key_ntor.old");
  3506. OPEN_KEYDIR_SUFFIX("ed25519_master_id_secret_key", ".tmp");
  3507. OPEN_KEYDIR_SUFFIX("ed25519_master_id_secret_key_encrypted", ".tmp");
  3508. OPEN_KEYDIR_SUFFIX("ed25519_master_id_public_key", ".tmp");
  3509. OPEN_KEYDIR_SUFFIX("ed25519_signing_secret_key", ".tmp");
  3510. OPEN_KEYDIR_SUFFIX("ed25519_signing_secret_key_encrypted", ".tmp");
  3511. OPEN_KEYDIR_SUFFIX("ed25519_signing_public_key", ".tmp");
  3512. OPEN_KEYDIR_SUFFIX("ed25519_signing_cert", ".tmp");
  3513. OPEN_DATADIR2_SUFFIX("stats", "bridge-stats", ".tmp");
  3514. OPEN_DATADIR2_SUFFIX("stats", "dirreq-stats", ".tmp");
  3515. OPEN_DATADIR2_SUFFIX("stats", "entry-stats", ".tmp");
  3516. OPEN_DATADIR2_SUFFIX("stats", "exit-stats", ".tmp");
  3517. OPEN_DATADIR2_SUFFIX("stats", "buffer-stats", ".tmp");
  3518. OPEN_DATADIR2_SUFFIX("stats", "conn-stats", ".tmp");
  3519. OPEN_DATADIR2_SUFFIX("stats", "hidserv-stats", ".tmp");
  3520. OPEN_DATADIR("approved-routers");
  3521. OPEN_DATADIR_SUFFIX("fingerprint", ".tmp");
  3522. OPEN_DATADIR_SUFFIX("hashed-fingerprint", ".tmp");
  3523. OPEN_DATADIR_SUFFIX("router-stability", ".tmp");
  3524. OPEN("/etc/resolv.conf");
  3525. RENAME_SUFFIX("fingerprint", ".tmp");
  3526. RENAME_KEYDIR_SUFFIX("secret_onion_key_ntor", ".tmp");
  3527. RENAME_KEYDIR_SUFFIX("secret_id_key", ".tmp");
  3528. RENAME_KEYDIR_SUFFIX("secret_id_key.old", ".tmp");
  3529. RENAME_KEYDIR_SUFFIX("secret_onion_key", ".tmp");
  3530. RENAME_KEYDIR_SUFFIX("secret_onion_key.old", ".tmp");
  3531. RENAME_SUFFIX2("stats", "bridge-stats", ".tmp");
  3532. RENAME_SUFFIX2("stats", "dirreq-stats", ".tmp");
  3533. RENAME_SUFFIX2("stats", "entry-stats", ".tmp");
  3534. RENAME_SUFFIX2("stats", "exit-stats", ".tmp");
  3535. RENAME_SUFFIX2("stats", "buffer-stats", ".tmp");
  3536. RENAME_SUFFIX2("stats", "conn-stats", ".tmp");
  3537. RENAME_SUFFIX2("stats", "hidserv-stats", ".tmp");
  3538. RENAME_SUFFIX("hashed-fingerprint", ".tmp");
  3539. RENAME_SUFFIX("router-stability", ".tmp");
  3540. RENAME_KEYDIR_SUFFIX("ed25519_master_id_secret_key", ".tmp");
  3541. RENAME_KEYDIR_SUFFIX("ed25519_master_id_secret_key_encrypted", ".tmp");
  3542. RENAME_KEYDIR_SUFFIX("ed25519_master_id_public_key", ".tmp");
  3543. RENAME_KEYDIR_SUFFIX("ed25519_signing_secret_key", ".tmp");
  3544. RENAME_KEYDIR_SUFFIX("ed25519_signing_cert", ".tmp");
  3545. sandbox_cfg_allow_rename(&cfg,
  3546. get_keydir_fname("secret_onion_key"),
  3547. get_keydir_fname("secret_onion_key.old"));
  3548. sandbox_cfg_allow_rename(&cfg,
  3549. get_keydir_fname("secret_onion_key_ntor"),
  3550. get_keydir_fname("secret_onion_key_ntor.old"));
  3551. STAT_KEY_DIRECTORY();
  3552. OPEN_DATADIR("stats");
  3553. STAT_DATADIR("stats");
  3554. STAT_DATADIR2("stats", "dirreq-stats");
  3555. consdiffmgr_register_with_sandbox(&cfg);
  3556. }
  3557. init_addrinfo();
  3558. return cfg;
  3559. }
  3560. /* Main entry point for the Tor process. Called from tor_main(), and by
  3561. * anybody embedding Tor. */
  3562. int
  3563. tor_run_main(const tor_main_configuration_t *tor_cfg)
  3564. {
  3565. int result = 0;
  3566. int argc = tor_cfg->argc;
  3567. char **argv = tor_cfg->argv;
  3568. #ifdef _WIN32
  3569. #ifndef HeapEnableTerminationOnCorruption
  3570. #define HeapEnableTerminationOnCorruption 1
  3571. #endif
  3572. /* On heap corruption, just give up; don't try to play along. */
  3573. HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, NULL, 0);
  3574. /* Call SetProcessDEPPolicy to permanently enable DEP.
  3575. The function will not resolve on earlier versions of Windows,
  3576. and failure is not dangerous. */
  3577. HMODULE hMod = GetModuleHandleA("Kernel32.dll");
  3578. if (hMod) {
  3579. typedef BOOL (WINAPI *PSETDEP)(DWORD);
  3580. PSETDEP setdeppolicy = (PSETDEP)GetProcAddress(hMod,
  3581. "SetProcessDEPPolicy");
  3582. if (setdeppolicy) {
  3583. /* PROCESS_DEP_ENABLE | PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION */
  3584. setdeppolicy(3);
  3585. }
  3586. }
  3587. #endif /* defined(_WIN32) */
  3588. configure_backtrace_handler(get_version());
  3589. init_protocol_warning_severity_level();
  3590. update_approx_time(time(NULL));
  3591. tor_threads_init();
  3592. tor_compress_init();
  3593. init_logging(0);
  3594. monotime_init();
  3595. #ifdef USE_DMALLOC
  3596. {
  3597. /* Instruct OpenSSL to use our internal wrappers for malloc,
  3598. realloc and free. */
  3599. int r = crypto_use_tor_alloc_functions();
  3600. tor_assert(r == 0);
  3601. }
  3602. #endif /* defined(USE_DMALLOC) */
  3603. #ifdef NT_SERVICE
  3604. {
  3605. int done = 0;
  3606. result = nt_service_parse_options(argc, argv, &done);
  3607. if (done) return result;
  3608. }
  3609. #endif /* defined(NT_SERVICE) */
  3610. {
  3611. int init_rv = tor_init(argc, argv);
  3612. if (init_rv < 0)
  3613. return -1;
  3614. else if (init_rv > 0)
  3615. return 0;
  3616. }
  3617. if (get_options()->Sandbox && get_options()->command == CMD_RUN_TOR) {
  3618. sandbox_cfg_t* cfg = sandbox_init_filter();
  3619. if (sandbox_init(cfg)) {
  3620. log_err(LD_BUG,"Failed to create syscall sandbox filter");
  3621. return -1;
  3622. }
  3623. // registering libevent rng
  3624. #ifdef HAVE_EVUTIL_SECURE_RNG_SET_URANDOM_DEVICE_FILE
  3625. evutil_secure_rng_set_urandom_device_file(
  3626. (char*) sandbox_intern_string("/dev/urandom"));
  3627. #endif
  3628. }
  3629. switch (get_options()->command) {
  3630. case CMD_RUN_TOR:
  3631. #ifdef NT_SERVICE
  3632. nt_service_set_state(SERVICE_RUNNING);
  3633. #endif
  3634. result = do_main_loop();
  3635. break;
  3636. case CMD_KEYGEN:
  3637. result = load_ed_keys(get_options(), time(NULL)) < 0;
  3638. break;
  3639. case CMD_KEY_EXPIRATION:
  3640. init_keys();
  3641. result = log_cert_expiration();
  3642. break;
  3643. case CMD_LIST_FINGERPRINT:
  3644. result = do_list_fingerprint();
  3645. break;
  3646. case CMD_HASH_PASSWORD:
  3647. do_hash_password();
  3648. result = 0;
  3649. break;
  3650. case CMD_VERIFY_CONFIG:
  3651. if (quiet_level == 0)
  3652. printf("Configuration was valid\n");
  3653. result = 0;
  3654. break;
  3655. case CMD_DUMP_CONFIG:
  3656. result = do_dump_config();
  3657. break;
  3658. case CMD_RUN_UNITTESTS: /* only set by test.c */
  3659. default:
  3660. log_warn(LD_BUG,"Illegal command number %d: internal error.",
  3661. get_options()->command);
  3662. result = -1;
  3663. }
  3664. tor_cleanup();
  3665. return result;
  3666. }