main.c 131 KB

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