main.c 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  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-2008, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /* $Id$ */
  7. const char main_c_id[] =
  8. "$Id$";
  9. /**
  10. * \file main.c
  11. * \brief Toplevel module. Handles signals, multiplexes between
  12. * connections, implements main loop, and drives scheduled events.
  13. **/
  14. #define MAIN_PRIVATE
  15. #include "or.h"
  16. #ifdef USE_DMALLOC
  17. #include <dmalloc.h>
  18. #include <openssl/crypto.h>
  19. #endif
  20. #include "memarea.h"
  21. void evdns_shutdown(int);
  22. /********* PROTOTYPES **********/
  23. static void dumpmemusage(int severity);
  24. static void dumpstats(int severity); /* log stats */
  25. static void conn_read_callback(int fd, short event, void *_conn);
  26. static void conn_write_callback(int fd, short event, void *_conn);
  27. static void signal_callback(int fd, short events, void *arg);
  28. static void second_elapsed_callback(int fd, short event, void *args);
  29. static int conn_close_if_marked(int i);
  30. static void connection_start_reading_from_linked_conn(connection_t *conn);
  31. static int connection_should_read_from_linked_conn(connection_t *conn);
  32. /********* START VARIABLES **********/
  33. int global_read_bucket; /**< Max number of bytes I can read this second. */
  34. int global_write_bucket; /**< Max number of bytes I can write this second. */
  35. /** Max number of relayed (bandwidth class 1) bytes I can read this second. */
  36. int global_relayed_read_bucket;
  37. /** Max number of relayed (bandwidth class 1) bytes I can write this second. */
  38. int global_relayed_write_bucket;
  39. /** What was the read bucket before the last second_elapsed_callback() call?
  40. * (used to determine how many bytes we've read). */
  41. static int stats_prev_global_read_bucket;
  42. /** What was the write bucket before the last second_elapsed_callback() call?
  43. * (used to determine how many bytes we've written). */
  44. static int stats_prev_global_write_bucket;
  45. /* XXX we might want to keep stats about global_relayed_*_bucket too. Or not.*/
  46. /** How many bytes have we read since we started the process? */
  47. static uint64_t stats_n_bytes_read = 0;
  48. /** How many bytes have we written since we started the process? */
  49. static uint64_t stats_n_bytes_written = 0;
  50. /** What time did this process start up? */
  51. time_t time_of_process_start = 0;
  52. /** How many seconds have we been running? */
  53. long stats_n_seconds_working = 0;
  54. /** When do we next launch DNS wildcarding checks? */
  55. static time_t time_to_check_for_correct_dns = 0;
  56. /** How often will we honor SIGNEWNYM requests? */
  57. #define MAX_SIGNEWNYM_RATE 10
  58. /** When did we last process a SIGNEWNYM request? */
  59. static time_t time_of_last_signewnym = 0;
  60. /** Is there a signewnym request we're currently waiting to handle? */
  61. static int signewnym_is_pending = 0;
  62. /** Smartlist of all open connections. */
  63. static smartlist_t *connection_array = NULL;
  64. /** List of connections that have been marked for close and need to be freed
  65. * and removed from connection_array. */
  66. static smartlist_t *closeable_connection_lst = NULL;
  67. /** List of linked connections that are currently reading data into their
  68. * inbuf from their partner's outbuf. */
  69. static smartlist_t *active_linked_connection_lst = NULL;
  70. /** Flag: Set to true iff we entered the current libevent main loop via
  71. * <b>loop_once</b>. If so, there's no need to trigger a loopexit in order
  72. * to handle linked connections. */
  73. static int called_loop_once = 0;
  74. /** We set this to 1 when we've opened a circuit, so we can print a log
  75. * entry to inform the user that Tor is working. */
  76. int has_completed_circuit=0;
  77. /** How often do we check for router descriptors that we should download
  78. * when we have too little directory info? */
  79. #define GREEDY_DESCRIPTOR_RETRY_INTERVAL (10)
  80. /** How often do we check for router descriptors that we should download
  81. * when we have enough directory info? */
  82. #define LAZY_DESCRIPTOR_RETRY_INTERVAL (60)
  83. /** How often do we 'forgive' undownloadable router descriptors and attempt
  84. * to download them again? */
  85. #define DESCRIPTOR_FAILURE_RESET_INTERVAL (60*60)
  86. /** How long do we let a directory connection stall before expiring it? */
  87. #define DIR_CONN_MAX_STALL (5*60)
  88. /** How old do we let a connection to an OR get before deciding it's
  89. * too old for new circuits? */
  90. #define TIME_BEFORE_OR_CONN_IS_TOO_OLD (60*60*24*7)
  91. /** How long do we let OR connections handshake before we decide that
  92. * they are obsolete? */
  93. #define TLS_HANDSHAKE_TIMEOUT (60)
  94. /********* END VARIABLES ************/
  95. /****************************************************************************
  96. *
  97. * This section contains accessors and other methods on the connection_array
  98. * variables (which are global within this file and unavailable outside it).
  99. *
  100. ****************************************************************************/
  101. /** Add <b>conn</b> to the array of connections that we can poll on. The
  102. * connection's socket must be set; the connection starts out
  103. * non-reading and non-writing.
  104. */
  105. int
  106. connection_add(connection_t *conn)
  107. {
  108. tor_assert(conn);
  109. tor_assert(conn->s >= 0 ||
  110. conn->linked ||
  111. (conn->type == CONN_TYPE_AP &&
  112. TO_EDGE_CONN(conn)->is_dns_request));
  113. tor_assert(conn->conn_array_index == -1); /* can only connection_add once */
  114. conn->conn_array_index = smartlist_len(connection_array);
  115. smartlist_add(connection_array, conn);
  116. if (conn->s >= 0 || conn->linked) {
  117. conn->read_event = tor_malloc_zero(sizeof(struct event));
  118. conn->write_event = tor_malloc_zero(sizeof(struct event));
  119. event_set(conn->read_event, conn->s, EV_READ|EV_PERSIST,
  120. conn_read_callback, conn);
  121. event_set(conn->write_event, conn->s, EV_WRITE|EV_PERSIST,
  122. conn_write_callback, conn);
  123. }
  124. log_debug(LD_NET,"new conn type %s, socket %d, address %s, n_conns %d.",
  125. conn_type_to_string(conn->type), conn->s, conn->address,
  126. smartlist_len(connection_array));
  127. return 0;
  128. }
  129. /** Remove the connection from the global list, and remove the
  130. * corresponding poll entry. Calling this function will shift the last
  131. * connection (if any) into the position occupied by conn.
  132. */
  133. int
  134. connection_remove(connection_t *conn)
  135. {
  136. int current_index;
  137. connection_t *tmp;
  138. tor_assert(conn);
  139. log_debug(LD_NET,"removing socket %d (type %s), n_conns now %d",
  140. conn->s, conn_type_to_string(conn->type),
  141. smartlist_len(connection_array));
  142. tor_assert(conn->conn_array_index >= 0);
  143. current_index = conn->conn_array_index;
  144. connection_unregister_events(conn); /* This is redundant, but cheap. */
  145. if (current_index == smartlist_len(connection_array)-1) { /* at the end */
  146. smartlist_del(connection_array, current_index);
  147. return 0;
  148. }
  149. /* replace this one with the one at the end */
  150. smartlist_del(connection_array, current_index);
  151. tmp = smartlist_get(connection_array, current_index);
  152. tmp->conn_array_index = current_index;
  153. return 0;
  154. }
  155. /** If <b>conn</b> is an edge conn, remove it from the list
  156. * of conn's on this circuit. If it's not on an edge,
  157. * flush and send destroys for all circuits on this conn.
  158. *
  159. * Remove it from connection_array (if applicable) and
  160. * from closeable_connection_list.
  161. *
  162. * Then free it.
  163. */
  164. static void
  165. connection_unlink(connection_t *conn)
  166. {
  167. connection_about_to_close_connection(conn);
  168. if (conn->conn_array_index >= 0) {
  169. connection_remove(conn);
  170. }
  171. if (conn->linked_conn) {
  172. conn->linked_conn->linked_conn = NULL;
  173. if (! conn->linked_conn->marked_for_close &&
  174. conn->linked_conn->reading_from_linked_conn)
  175. connection_start_reading(conn->linked_conn);
  176. conn->linked_conn = NULL;
  177. }
  178. smartlist_remove(closeable_connection_lst, conn);
  179. smartlist_remove(active_linked_connection_lst, conn);
  180. if (conn->type == CONN_TYPE_EXIT) {
  181. assert_connection_edge_not_dns_pending(TO_EDGE_CONN(conn));
  182. }
  183. if (conn->type == CONN_TYPE_OR) {
  184. if (!tor_digest_is_zero(TO_OR_CONN(conn)->identity_digest))
  185. connection_or_remove_from_identity_map(TO_OR_CONN(conn));
  186. }
  187. connection_free(conn);
  188. }
  189. /** Schedule <b>conn</b> to be closed. **/
  190. void
  191. add_connection_to_closeable_list(connection_t *conn)
  192. {
  193. tor_assert(!smartlist_isin(closeable_connection_lst, conn));
  194. tor_assert(conn->marked_for_close);
  195. assert_connection_ok(conn, time(NULL));
  196. smartlist_add(closeable_connection_lst, conn);
  197. }
  198. /** Return 1 if conn is on the closeable list, else return 0. */
  199. int
  200. connection_is_on_closeable_list(connection_t *conn)
  201. {
  202. return smartlist_isin(closeable_connection_lst, conn);
  203. }
  204. /** Return true iff conn is in the current poll array. */
  205. int
  206. connection_in_array(connection_t *conn)
  207. {
  208. return smartlist_isin(connection_array, conn);
  209. }
  210. /** Set <b>*array</b> to an array of all connections, and <b>*n</b>
  211. * to the length of the array. <b>*array</b> and <b>*n</b> must not
  212. * be modified.
  213. */
  214. smartlist_t *
  215. get_connection_array(void)
  216. {
  217. if (!connection_array)
  218. connection_array = smartlist_create();
  219. return connection_array;
  220. }
  221. /** Set the event mask on <b>conn</b> to <b>events</b>. (The event
  222. * mask is a bitmask whose bits are EV_READ and EV_WRITE.)
  223. */
  224. void
  225. connection_watch_events(connection_t *conn, short events)
  226. {
  227. if (events & EV_READ)
  228. connection_start_reading(conn);
  229. else
  230. connection_stop_reading(conn);
  231. if (events & EV_WRITE)
  232. connection_start_writing(conn);
  233. else
  234. connection_stop_writing(conn);
  235. }
  236. /** Return true iff <b>conn</b> is listening for read events. */
  237. int
  238. connection_is_reading(connection_t *conn)
  239. {
  240. tor_assert(conn);
  241. return conn->reading_from_linked_conn ||
  242. (conn->read_event && event_pending(conn->read_event, EV_READ, NULL));
  243. }
  244. /** Tell the main loop to stop notifying <b>conn</b> of any read events. */
  245. void
  246. connection_stop_reading(connection_t *conn)
  247. {
  248. tor_assert(conn);
  249. tor_assert(conn->read_event);
  250. if (conn->linked) {
  251. conn->reading_from_linked_conn = 0;
  252. connection_stop_reading_from_linked_conn(conn);
  253. } else {
  254. if (event_del(conn->read_event))
  255. log_warn(LD_NET, "Error from libevent setting read event state for %d "
  256. "to unwatched: %s",
  257. conn->s,
  258. tor_socket_strerror(tor_socket_errno(conn->s)));
  259. }
  260. }
  261. /** Tell the main loop to start notifying <b>conn</b> of any read events. */
  262. void
  263. connection_start_reading(connection_t *conn)
  264. {
  265. tor_assert(conn);
  266. tor_assert(conn->read_event);
  267. if (conn->linked) {
  268. conn->reading_from_linked_conn = 1;
  269. if (connection_should_read_from_linked_conn(conn))
  270. connection_start_reading_from_linked_conn(conn);
  271. } else {
  272. if (event_add(conn->read_event, NULL))
  273. log_warn(LD_NET, "Error from libevent setting read event state for %d "
  274. "to watched: %s",
  275. conn->s,
  276. tor_socket_strerror(tor_socket_errno(conn->s)));
  277. }
  278. }
  279. /** Return true iff <b>conn</b> is listening for write events. */
  280. int
  281. connection_is_writing(connection_t *conn)
  282. {
  283. tor_assert(conn);
  284. return conn->writing_to_linked_conn ||
  285. (conn->write_event && event_pending(conn->write_event, EV_WRITE, NULL));
  286. }
  287. /** Tell the main loop to stop notifying <b>conn</b> of any write events. */
  288. void
  289. connection_stop_writing(connection_t *conn)
  290. {
  291. tor_assert(conn);
  292. tor_assert(conn->write_event);
  293. if (conn->linked) {
  294. conn->writing_to_linked_conn = 0;
  295. if (conn->linked_conn)
  296. connection_stop_reading_from_linked_conn(conn->linked_conn);
  297. } else {
  298. if (event_del(conn->write_event))
  299. log_warn(LD_NET, "Error from libevent setting write event state for %d "
  300. "to unwatched: %s",
  301. conn->s,
  302. tor_socket_strerror(tor_socket_errno(conn->s)));
  303. }
  304. }
  305. /** Tell the main loop to start notifying <b>conn</b> of any write events. */
  306. void
  307. connection_start_writing(connection_t *conn)
  308. {
  309. tor_assert(conn);
  310. tor_assert(conn->write_event);
  311. if (conn->linked) {
  312. conn->writing_to_linked_conn = 1;
  313. if (conn->linked_conn &&
  314. connection_should_read_from_linked_conn(conn->linked_conn))
  315. connection_start_reading_from_linked_conn(conn->linked_conn);
  316. } else {
  317. if (event_add(conn->write_event, NULL))
  318. log_warn(LD_NET, "Error from libevent setting write event state for %d "
  319. "to watched: %s",
  320. conn->s,
  321. tor_socket_strerror(tor_socket_errno(conn->s)));
  322. }
  323. }
  324. /** Return true iff <b>conn</b> is linked conn, and reading from the conn
  325. * linked to it would be good and feasible. (Reading is "feasible" if the
  326. * other conn exists and has data in its outbuf, and is "good" if we have our
  327. * reading_from_linked_conn flag set and the other conn has its
  328. * writing_to_linked_conn flag set.)*/
  329. static int
  330. connection_should_read_from_linked_conn(connection_t *conn)
  331. {
  332. if (conn->linked && conn->reading_from_linked_conn) {
  333. if (! conn->linked_conn ||
  334. (conn->linked_conn->writing_to_linked_conn &&
  335. buf_datalen(conn->linked_conn->outbuf)))
  336. return 1;
  337. }
  338. return 0;
  339. }
  340. /** Helper: Tell the main loop to begin reading bytes into <b>conn</b> from
  341. * its linked connection, if it is not doing so already. Called by
  342. * connection_start_reading and connection_start_writing as appropriate. */
  343. static void
  344. connection_start_reading_from_linked_conn(connection_t *conn)
  345. {
  346. tor_assert(conn);
  347. tor_assert(conn->linked == 1);
  348. if (!conn->active_on_link) {
  349. conn->active_on_link = 1;
  350. smartlist_add(active_linked_connection_lst, conn);
  351. if (!called_loop_once) {
  352. /* This is the first event on the list; we won't be in LOOP_ONCE mode,
  353. * so we need to make sure that the event_loop() actually exits at the
  354. * end of its run through the current connections and
  355. * lets us activate read events for linked connections. */
  356. struct timeval tv = { 0, 0 };
  357. event_loopexit(&tv);
  358. }
  359. } else {
  360. tor_assert(smartlist_isin(active_linked_connection_lst, conn));
  361. }
  362. }
  363. /** Tell the main loop to stop reading bytes into <b>conn</b> from its linked
  364. * connection, if is currently doing so. Called by connection_stop_reading,
  365. * connection_stop_writing, and connection_read. */
  366. void
  367. connection_stop_reading_from_linked_conn(connection_t *conn)
  368. {
  369. tor_assert(conn);
  370. tor_assert(conn->linked == 1);
  371. if (conn->active_on_link) {
  372. conn->active_on_link = 0;
  373. /* FFFF We could keep an index here so we can smartlist_del
  374. * cleanly. On the other hand, this doesn't show up on profiles,
  375. * so let's leave it alone for now. */
  376. smartlist_remove(active_linked_connection_lst, conn);
  377. } else {
  378. tor_assert(!smartlist_isin(active_linked_connection_lst, conn));
  379. }
  380. }
  381. /** Close all connections that have been scheduled to get closed. */
  382. static void
  383. close_closeable_connections(void)
  384. {
  385. int i;
  386. for (i = 0; i < smartlist_len(closeable_connection_lst); ) {
  387. connection_t *conn = smartlist_get(closeable_connection_lst, i);
  388. if (conn->conn_array_index < 0) {
  389. connection_unlink(conn); /* blow it away right now */
  390. } else {
  391. if (!conn_close_if_marked(conn->conn_array_index))
  392. ++i;
  393. }
  394. }
  395. }
  396. /** Libevent callback: this gets invoked when (connection_t*)<b>conn</b> has
  397. * some data to read. */
  398. static void
  399. conn_read_callback(int fd, short event, void *_conn)
  400. {
  401. connection_t *conn = _conn;
  402. (void)fd;
  403. (void)event;
  404. log_debug(LD_NET,"socket %d wants to read.",conn->s);
  405. assert_connection_ok(conn, time(NULL));
  406. if (connection_handle_read(conn) < 0) {
  407. if (!conn->marked_for_close) {
  408. #ifndef MS_WINDOWS
  409. log_warn(LD_BUG,"Unhandled error on read for %s connection "
  410. "(fd %d); removing",
  411. conn_type_to_string(conn->type), conn->s);
  412. tor_fragile_assert();
  413. #endif
  414. if (CONN_IS_EDGE(conn))
  415. connection_edge_end_errno(TO_EDGE_CONN(conn));
  416. connection_mark_for_close(conn);
  417. }
  418. }
  419. assert_connection_ok(conn, time(NULL));
  420. if (smartlist_len(closeable_connection_lst))
  421. close_closeable_connections();
  422. }
  423. /** Libevent callback: this gets invoked when (connection_t*)<b>conn</b> has
  424. * some data to write. */
  425. static void
  426. conn_write_callback(int fd, short events, void *_conn)
  427. {
  428. connection_t *conn = _conn;
  429. (void)fd;
  430. (void)events;
  431. LOG_FN_CONN(conn, (LOG_DEBUG, LD_NET, "socket %d wants to write.",conn->s));
  432. assert_connection_ok(conn, time(NULL));
  433. if (connection_handle_write(conn, 0) < 0) {
  434. if (!conn->marked_for_close) {
  435. /* this connection is broken. remove it. */
  436. log_fn(LOG_WARN,LD_BUG,
  437. "unhandled error on write for %s connection (fd %d); removing",
  438. conn_type_to_string(conn->type), conn->s);
  439. tor_fragile_assert();
  440. if (CONN_IS_EDGE(conn)) {
  441. /* otherwise we cry wolf about duplicate close */
  442. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  443. if (!edge_conn->end_reason)
  444. edge_conn->end_reason = END_STREAM_REASON_INTERNAL;
  445. edge_conn->edge_has_sent_end = 1;
  446. }
  447. connection_close_immediate(conn); /* So we don't try to flush. */
  448. connection_mark_for_close(conn);
  449. }
  450. }
  451. assert_connection_ok(conn, time(NULL));
  452. if (smartlist_len(closeable_connection_lst))
  453. close_closeable_connections();
  454. }
  455. /** If the connection at connection_array[i] is marked for close, then:
  456. * - If it has data that it wants to flush, try to flush it.
  457. * - If it _still_ has data to flush, and conn->hold_open_until_flushed is
  458. * true, then leave the connection open and return.
  459. * - Otherwise, remove the connection from connection_array and from
  460. * all other lists, close it, and free it.
  461. * Returns 1 if the connection was closed, 0 otherwise.
  462. */
  463. static int
  464. conn_close_if_marked(int i)
  465. {
  466. connection_t *conn;
  467. int retval;
  468. time_t now;
  469. conn = smartlist_get(connection_array, i);
  470. if (!conn->marked_for_close)
  471. return 0; /* nothing to see here, move along */
  472. now = time(NULL);
  473. assert_connection_ok(conn, now);
  474. assert_all_pending_dns_resolves_ok();
  475. log_debug(LD_NET,"Cleaning up connection (fd %d).",conn->s);
  476. if ((conn->s >= 0 || conn->linked_conn) && connection_wants_to_flush(conn)) {
  477. /* s == -1 means it's an incomplete edge connection, or that the socket
  478. * has already been closed as unflushable. */
  479. ssize_t sz = connection_bucket_write_limit(conn, now);
  480. if (!conn->hold_open_until_flushed)
  481. log_info(LD_NET,
  482. "Conn (addr %s, fd %d, type %s, state %d) marked, but wants "
  483. "to flush %d bytes. (Marked at %s:%d)",
  484. escaped_safe_str(conn->address),
  485. conn->s, conn_type_to_string(conn->type), conn->state,
  486. (int)conn->outbuf_flushlen,
  487. conn->marked_for_close_file, conn->marked_for_close);
  488. if (conn->linked_conn) {
  489. retval = move_buf_to_buf(conn->linked_conn->inbuf, conn->outbuf,
  490. &conn->outbuf_flushlen);
  491. if (retval >= 0) {
  492. /* The linked conn will notice that it has data when it notices that
  493. * we're gone. */
  494. connection_start_reading_from_linked_conn(conn->linked_conn);
  495. }
  496. log_debug(LD_GENERAL, "Flushed last %d bytes from a linked conn; "
  497. "%d left; flushlen %d; wants-to-flush==%d", retval,
  498. (int)buf_datalen(conn->outbuf),
  499. (int)conn->outbuf_flushlen,
  500. connection_wants_to_flush(conn));
  501. } else if (connection_speaks_cells(conn)) {
  502. if (conn->state == OR_CONN_STATE_OPEN) {
  503. retval = flush_buf_tls(TO_OR_CONN(conn)->tls, conn->outbuf, sz,
  504. &conn->outbuf_flushlen);
  505. } else
  506. retval = -1; /* never flush non-open broken tls connections */
  507. } else {
  508. retval = flush_buf(conn->s, conn->outbuf, sz, &conn->outbuf_flushlen);
  509. }
  510. if (retval >= 0 && /* Technically, we could survive things like
  511. TLS_WANT_WRITE here. But don't bother for now. */
  512. conn->hold_open_until_flushed && connection_wants_to_flush(conn)) {
  513. if (retval > 0) {
  514. LOG_FN_CONN(conn, (LOG_INFO,LD_NET,
  515. "Holding conn (fd %d) open for more flushing.",
  516. conn->s));
  517. conn->timestamp_lastwritten = now; /* reset so we can flush more */
  518. }
  519. return 0;
  520. }
  521. if (connection_wants_to_flush(conn)) {
  522. int severity;
  523. if (conn->type == CONN_TYPE_EXIT ||
  524. (conn->type == CONN_TYPE_OR && server_mode(get_options())) ||
  525. (conn->type == CONN_TYPE_DIR && conn->purpose == DIR_PURPOSE_SERVER))
  526. severity = LOG_INFO;
  527. else
  528. severity = LOG_NOTICE;
  529. /* XXXX Maybe allow this to happen a certain amount per hour; it usually
  530. * is meaningless. */
  531. log_fn(severity, LD_NET, "We stalled too much while trying to write %d "
  532. "bytes to address %s. If this happens a lot, either "
  533. "something is wrong with your network connection, or "
  534. "something is wrong with theirs. "
  535. "(fd %d, type %s, state %d, marked at %s:%d).",
  536. (int)buf_datalen(conn->outbuf),
  537. escaped_safe_str(conn->address), conn->s,
  538. conn_type_to_string(conn->type), conn->state,
  539. conn->marked_for_close_file,
  540. conn->marked_for_close);
  541. }
  542. }
  543. connection_unlink(conn); /* unlink, remove, free */
  544. return 1;
  545. }
  546. /** We've just tried every dirserver we know about, and none of
  547. * them were reachable. Assume the network is down. Change state
  548. * so next time an application connection arrives we'll delay it
  549. * and try another directory fetch. Kill off all the circuit_wait
  550. * streams that are waiting now, since they will all timeout anyway.
  551. */
  552. void
  553. directory_all_unreachable(time_t now)
  554. {
  555. connection_t *conn;
  556. (void)now;
  557. stats_n_seconds_working=0; /* reset it */
  558. while ((conn = connection_get_by_type_state(CONN_TYPE_AP,
  559. AP_CONN_STATE_CIRCUIT_WAIT))) {
  560. edge_connection_t *edge_conn = TO_EDGE_CONN(conn);
  561. log_notice(LD_NET,
  562. "Is your network connection down? "
  563. "Failing connection to '%s:%d'.",
  564. safe_str(edge_conn->socks_request->address),
  565. edge_conn->socks_request->port);
  566. connection_mark_unattached_ap(edge_conn,
  567. END_STREAM_REASON_NET_UNREACHABLE);
  568. }
  569. control_event_general_status(LOG_ERR, "DIR_ALL_UNREACHABLE");
  570. }
  571. /** This function is called whenever we successfully pull down some new
  572. * network statuses or server descriptors. */
  573. void
  574. directory_info_has_arrived(time_t now, int from_cache)
  575. {
  576. or_options_t *options = get_options();
  577. if (!router_have_minimum_dir_info()) {
  578. int quiet = directory_too_idle_to_fetch_descriptors(options, now);
  579. log(quiet ? LOG_INFO : LOG_NOTICE, LD_DIR,
  580. "I learned some more directory information, but not enough to "
  581. "build a circuit: %s", get_dir_info_status_string());
  582. update_router_descriptor_downloads(now);
  583. return;
  584. } else {
  585. if (directory_fetches_from_authorities(options))
  586. update_router_descriptor_downloads(now);
  587. /* if we have enough dir info, then update our guard status with
  588. * whatever we just learned. */
  589. entry_guards_compute_status();
  590. /* Don't even bother trying to get extrainfo until the rest of our
  591. * directory info is up-to-date */
  592. if (options->DownloadExtraInfo)
  593. update_extrainfo_downloads(now);
  594. }
  595. if (server_mode(options) && !we_are_hibernating() && !from_cache &&
  596. (has_completed_circuit || !any_predicted_circuits(now)))
  597. consider_testing_reachability(1, 1);
  598. }
  599. /** Perform regular maintenance tasks for a single connection. This
  600. * function gets run once per second per connection by run_scheduled_events.
  601. */
  602. static void
  603. run_connection_housekeeping(int i, time_t now)
  604. {
  605. cell_t cell;
  606. connection_t *conn = smartlist_get(connection_array, i);
  607. or_options_t *options = get_options();
  608. or_connection_t *or_conn;
  609. if (conn->outbuf && !buf_datalen(conn->outbuf) && conn->type == CONN_TYPE_OR)
  610. TO_OR_CONN(conn)->timestamp_lastempty = now;
  611. if (conn->marked_for_close) {
  612. /* nothing to do here */
  613. return;
  614. }
  615. /* Expire any directory connections that haven't been active (sent
  616. * if a server or received if a client) for 5 min */
  617. if (conn->type == CONN_TYPE_DIR &&
  618. ((DIR_CONN_IS_SERVER(conn) &&
  619. conn->timestamp_lastwritten + DIR_CONN_MAX_STALL < now) ||
  620. (!DIR_CONN_IS_SERVER(conn) &&
  621. conn->timestamp_lastread + DIR_CONN_MAX_STALL < now))) {
  622. log_info(LD_DIR,"Expiring wedged directory conn (fd %d, purpose %d)",
  623. conn->s, conn->purpose);
  624. /* This check is temporary; it's to let us know whether we should consider
  625. * parsing partial serverdesc responses. */
  626. if (conn->purpose == DIR_PURPOSE_FETCH_SERVERDESC &&
  627. buf_datalen(conn->inbuf)>=1024) {
  628. log_info(LD_DIR,"Trying to extract information from wedged server desc "
  629. "download.");
  630. connection_dir_reached_eof(TO_DIR_CONN(conn));
  631. } else {
  632. connection_mark_for_close(conn);
  633. }
  634. return;
  635. }
  636. if (!connection_speaks_cells(conn))
  637. return; /* we're all done here, the rest is just for OR conns */
  638. or_conn = TO_OR_CONN(conn);
  639. if (!or_conn->is_bad_for_new_circs) {
  640. if (conn->timestamp_created + TIME_BEFORE_OR_CONN_IS_TOO_OLD < now) {
  641. log_info(LD_OR,
  642. "Marking OR conn to %s:%d as too old for new circuits "
  643. "(fd %d, %d secs old).",
  644. conn->address, conn->port, conn->s,
  645. (int)(now - conn->timestamp_created));
  646. or_conn->is_bad_for_new_circs = 1;
  647. } else {
  648. or_connection_t *best =
  649. connection_or_get_by_identity_digest(or_conn->identity_digest);
  650. if (best && best != or_conn &&
  651. (conn->state == OR_CONN_STATE_OPEN ||
  652. now > conn->timestamp_created + TLS_HANDSHAKE_TIMEOUT)) {
  653. /* We only mark as obsolete connections that already are in
  654. * OR_CONN_STATE_OPEN, i.e. that have finished their TLS handshaking.
  655. * This is necessary because authorities judge whether a router is
  656. * reachable based on whether they were able to TLS handshake with it
  657. * recently. Without this check we would expire connections too
  658. * early for router->last_reachable to be updated.
  659. */
  660. log_info(LD_OR,
  661. "Marking duplicate conn to %s:%d as too old for new circuits "
  662. "(fd %d, %d secs old).",
  663. conn->address, conn->port, conn->s,
  664. (int)(now - conn->timestamp_created));
  665. or_conn->is_bad_for_new_circs = 1;
  666. }
  667. }
  668. }
  669. if (or_conn->is_bad_for_new_circs && !or_conn->n_circuits) {
  670. /* no unmarked circs -- mark it now */
  671. log_info(LD_OR,
  672. "Expiring non-used OR connection to fd %d (%s:%d) [Too old].",
  673. conn->s, conn->address, conn->port);
  674. if (conn->state == OR_CONN_STATE_CONNECTING)
  675. connection_or_connect_failed(TO_OR_CONN(conn),
  676. END_OR_CONN_REASON_TIMEOUT,
  677. "Tor gave up on the connection");
  678. connection_mark_for_close(conn);
  679. conn->hold_open_until_flushed = 1;
  680. return;
  681. }
  682. /* If we haven't written to an OR connection for a while, then either nuke
  683. the connection or send a keepalive, depending. */
  684. if (now >= conn->timestamp_lastwritten + options->KeepalivePeriod) {
  685. routerinfo_t *router = router_get_by_digest(or_conn->identity_digest);
  686. int maxCircuitlessPeriod = options->MaxCircuitDirtiness*3/2;
  687. if (!connection_state_is_open(conn)) {
  688. /* We never managed to actually get this connection open and happy. */
  689. log_info(LD_OR,"Expiring non-open OR connection to fd %d (%s:%d).",
  690. conn->s,conn->address, conn->port);
  691. connection_mark_for_close(conn);
  692. conn->hold_open_until_flushed = 1;
  693. } else if (we_are_hibernating() && !or_conn->n_circuits &&
  694. !buf_datalen(conn->outbuf)) {
  695. /* We're hibernating, there's no circuits, and nothing to flush.*/
  696. log_info(LD_OR,"Expiring non-used OR connection to fd %d (%s:%d) "
  697. "[Hibernating or exiting].",
  698. conn->s,conn->address, conn->port);
  699. connection_mark_for_close(conn);
  700. conn->hold_open_until_flushed = 1;
  701. } else if (!clique_mode(options) && !or_conn->n_circuits &&
  702. now >= or_conn->timestamp_last_added_nonpadding +
  703. maxCircuitlessPeriod &&
  704. (!router || !server_mode(options) ||
  705. !router_is_clique_mode(router))) {
  706. log_info(LD_OR,"Expiring non-used OR connection to fd %d (%s:%d) "
  707. "[Not in clique mode].",
  708. conn->s,conn->address, conn->port);
  709. connection_mark_for_close(conn);
  710. conn->hold_open_until_flushed = 1;
  711. } else if (
  712. now >= or_conn->timestamp_lastempty + options->KeepalivePeriod*10 &&
  713. now >= conn->timestamp_lastwritten + options->KeepalivePeriod*10) {
  714. log_fn(LOG_PROTOCOL_WARN,LD_PROTOCOL,
  715. "Expiring stuck OR connection to fd %d (%s:%d). (%d bytes to "
  716. "flush; %d seconds since last write)",
  717. conn->s, conn->address, conn->port,
  718. (int)buf_datalen(conn->outbuf),
  719. (int)(now-conn->timestamp_lastwritten));
  720. connection_mark_for_close(conn);
  721. } else if (!buf_datalen(conn->outbuf)) {
  722. /* either in clique mode, or we've got a circuit. send a padding cell. */
  723. log_fn(LOG_DEBUG,LD_OR,"Sending keepalive to (%s:%d)",
  724. conn->address, conn->port);
  725. memset(&cell,0,sizeof(cell_t));
  726. cell.command = CELL_PADDING;
  727. connection_or_write_cell_to_buf(&cell, or_conn);
  728. }
  729. }
  730. }
  731. /** Honor a NEWNYM request: make future requests unlinkability to past
  732. * requests. */
  733. static void
  734. signewnym_impl(time_t now)
  735. {
  736. circuit_expire_all_dirty_circs();
  737. addressmap_clear_transient();
  738. time_of_last_signewnym = now;
  739. signewnym_is_pending = 0;
  740. }
  741. /** Perform regular maintenance tasks. This function gets run once per
  742. * second by second_elapsed_callback().
  743. */
  744. static void
  745. run_scheduled_events(time_t now)
  746. {
  747. static time_t last_rotated_x509_certificate = 0;
  748. static time_t time_to_check_v3_certificate = 0;
  749. static time_t time_to_check_listeners = 0;
  750. static time_t time_to_check_descriptor = 0;
  751. static time_t time_to_check_ipaddress = 0;
  752. static time_t time_to_shrink_memory = 0;
  753. static time_t time_to_try_getting_descriptors = 0;
  754. static time_t time_to_reset_descriptor_failures = 0;
  755. static time_t time_to_add_entropy = 0;
  756. static time_t time_to_write_hs_statistics = 0;
  757. static time_t time_to_write_bridge_status_file = 0;
  758. static time_t time_to_downrate_stability = 0;
  759. static time_t time_to_save_stability = 0;
  760. static time_t time_to_clean_caches = 0;
  761. static time_t time_to_recheck_bandwidth = 0;
  762. static time_t time_to_check_for_expired_networkstatus = 0;
  763. static time_t time_to_dump_geoip_stats = 0;
  764. static time_t time_to_retry_dns_init = 0;
  765. or_options_t *options = get_options();
  766. int i;
  767. int have_dir_info;
  768. /** 0. See if we've been asked to shut down and our timeout has
  769. * expired; or if our bandwidth limits are exhausted and we
  770. * should hibernate; or if it's time to wake up from hibernation.
  771. */
  772. consider_hibernation(now);
  773. /* 0b. If we've deferred a signewnym, make sure it gets handled
  774. * eventually. */
  775. if (signewnym_is_pending &&
  776. time_of_last_signewnym + MAX_SIGNEWNYM_RATE <= now) {
  777. log(LOG_INFO, LD_CONTROL, "Honoring delayed NEWNYM request");
  778. signewnym_impl(now);
  779. }
  780. /** 1a. Every MIN_ONION_KEY_LIFETIME seconds, rotate the onion keys,
  781. * shut down and restart all cpuworkers, and update the directory if
  782. * necessary.
  783. */
  784. if (server_mode(options) &&
  785. get_onion_key_set_at()+MIN_ONION_KEY_LIFETIME < now) {
  786. log_info(LD_GENERAL,"Rotating onion key.");
  787. rotate_onion_key();
  788. cpuworkers_rotate();
  789. if (router_rebuild_descriptor(1)<0) {
  790. log_info(LD_CONFIG, "Couldn't rebuild router descriptor");
  791. }
  792. if (advertised_server_mode())
  793. router_upload_dir_desc_to_dirservers(0);
  794. }
  795. if (time_to_try_getting_descriptors < now) {
  796. update_router_descriptor_downloads(now);
  797. update_extrainfo_downloads(now);
  798. if (options->UseBridges)
  799. fetch_bridge_descriptors(now);
  800. if (router_have_minimum_dir_info())
  801. time_to_try_getting_descriptors = now + LAZY_DESCRIPTOR_RETRY_INTERVAL;
  802. else
  803. time_to_try_getting_descriptors = now + GREEDY_DESCRIPTOR_RETRY_INTERVAL;
  804. }
  805. if (time_to_reset_descriptor_failures < now) {
  806. router_reset_descriptor_download_failures();
  807. time_to_reset_descriptor_failures =
  808. now + DESCRIPTOR_FAILURE_RESET_INTERVAL;
  809. }
  810. /** 1b. Every MAX_SSL_KEY_LIFETIME seconds, we change our TLS context. */
  811. if (!last_rotated_x509_certificate)
  812. last_rotated_x509_certificate = now;
  813. if (last_rotated_x509_certificate+MAX_SSL_KEY_LIFETIME < now) {
  814. log_info(LD_GENERAL,"Rotating tls context.");
  815. if (tor_tls_context_new(get_identity_key(), MAX_SSL_KEY_LIFETIME) < 0) {
  816. log_warn(LD_BUG, "Error reinitializing TLS context");
  817. /* XXX is it a bug here, that we just keep going? -RD */
  818. }
  819. last_rotated_x509_certificate = now;
  820. /* We also make sure to rotate the TLS connections themselves if they've
  821. * been up for too long -- but that's done via is_bad_for_new_circs in
  822. * connection_run_housekeeping() above. */
  823. }
  824. if (time_to_add_entropy < now) {
  825. if (time_to_add_entropy) {
  826. /* We already seeded once, so don't die on failure. */
  827. crypto_seed_rng(0);
  828. }
  829. /** How often do we add more entropy to OpenSSL's RNG pool? */
  830. #define ENTROPY_INTERVAL (60*60)
  831. time_to_add_entropy = now + ENTROPY_INTERVAL;
  832. }
  833. /** 1c. If we have to change the accounting interval or record
  834. * bandwidth used in this accounting interval, do so. */
  835. if (accounting_is_enabled(options))
  836. accounting_run_housekeeping(now);
  837. if (now % 10 == 0 && (authdir_mode_tests_reachability(options)) &&
  838. !we_are_hibernating()) {
  839. /* try to determine reachability of the other Tor relays */
  840. dirserv_test_reachability(now, 0);
  841. }
  842. /** 1d. Periodically, we discount older stability information so that new
  843. * stability info counts more, and save the stability information to disk as
  844. * appropriate. */
  845. if (time_to_downrate_stability < now)
  846. time_to_downrate_stability = rep_hist_downrate_old_runs(now);
  847. if (authdir_mode_tests_reachability(options)) {
  848. if (time_to_save_stability < now) {
  849. if (time_to_save_stability && rep_hist_record_mtbf_data()<0) {
  850. log_warn(LD_GENERAL, "Couldn't store mtbf data.");
  851. }
  852. #define SAVE_STABILITY_INTERVAL (30*60)
  853. time_to_save_stability = now + SAVE_STABILITY_INTERVAL;
  854. }
  855. }
  856. /* 1e. Periodicaly, if we're a v3 authority, we check whether our cert is
  857. * close to expiring and warn the admin if it is. */
  858. if (time_to_check_v3_certificate < now) {
  859. v3_authority_check_key_expiry();
  860. #define CHECK_V3_CERTIFICATE_INTERVAL (5*60)
  861. time_to_check_v3_certificate = now + CHECK_V3_CERTIFICATE_INTERVAL;
  862. }
  863. /* 1f. Check whether our networkstatus has expired.
  864. */
  865. if (time_to_check_for_expired_networkstatus < now) {
  866. networkstatus_t *ns = networkstatus_get_latest_consensus();
  867. /*XXXX RD: This value needs to be the same as REASONABLY_LIVE_TIME in
  868. * networkstatus_get_reasonably_live_consensus(), but that value is way
  869. * way too high. Arma: is the bridge issue there resolved yet? -NM */
  870. #define NS_EXPIRY_SLOP (24*60*60)
  871. if (ns && ns->valid_until < now+NS_EXPIRY_SLOP &&
  872. router_have_minimum_dir_info()) {
  873. router_dir_info_changed();
  874. }
  875. #define CHECK_EXPIRED_NS_INTERVAL (2*60)
  876. time_to_check_for_expired_networkstatus = now + CHECK_EXPIRED_NS_INTERVAL;
  877. }
  878. if (time_to_dump_geoip_stats < now) {
  879. #define DUMP_GEOIP_STATS_INTERVAL (60*60);
  880. if (time_to_dump_geoip_stats)
  881. dump_geoip_stats();
  882. time_to_dump_geoip_stats = now + DUMP_GEOIP_STATS_INTERVAL;
  883. }
  884. /* Remove old information from rephist and the rend cache. */
  885. if (time_to_clean_caches < now) {
  886. rep_history_clean(now - options->RephistTrackTime);
  887. rend_cache_clean();
  888. rend_cache_clean_v2_descs_as_dir();
  889. #define CLEAN_CACHES_INTERVAL (30*60)
  890. time_to_clean_caches = now + CLEAN_CACHES_INTERVAL;
  891. }
  892. #define RETRY_DNS_INTERVAL (10*60)
  893. /* If we're a server and initializing dns failed, retry periodically. */
  894. if (time_to_retry_dns_init < now) {
  895. time_to_retry_dns_init = now + RETRY_DNS_INTERVAL;
  896. if (server_mode(options) && has_dns_init_failed())
  897. dns_init();
  898. }
  899. /** 2. Periodically, we consider force-uploading our descriptor
  900. * (if we've passed our internal checks). */
  901. /** How often do we check whether part of our router info has changed in a way
  902. * that would require an upload? */
  903. #define CHECK_DESCRIPTOR_INTERVAL (60)
  904. /** How often do we (as a router) check whether our IP address has changed? */
  905. #define CHECK_IPADDRESS_INTERVAL (15*60)
  906. /* 2b. Once per minute, regenerate and upload the descriptor if the old
  907. * one is inaccurate. */
  908. if (time_to_check_descriptor < now) {
  909. static int dirport_reachability_count = 0;
  910. time_to_check_descriptor = now + CHECK_DESCRIPTOR_INTERVAL;
  911. check_descriptor_bandwidth_changed(now);
  912. if (time_to_check_ipaddress < now) {
  913. time_to_check_ipaddress = now + CHECK_IPADDRESS_INTERVAL;
  914. check_descriptor_ipaddress_changed(now);
  915. }
  916. /** If our router descriptor ever goes this long without being regenerated
  917. * because something changed, we force an immediate regenerate-and-upload. */
  918. #define FORCE_REGENERATE_DESCRIPTOR_INTERVAL (18*60*60)
  919. mark_my_descriptor_dirty_if_older_than(
  920. now - FORCE_REGENERATE_DESCRIPTOR_INTERVAL);
  921. consider_publishable_server(0);
  922. /* also, check religiously for reachability, if it's within the first
  923. * 20 minutes of our uptime. */
  924. if (server_mode(options) &&
  925. (has_completed_circuit || !any_predicted_circuits(now)) &&
  926. !we_are_hibernating()) {
  927. if (stats_n_seconds_working < TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT) {
  928. consider_testing_reachability(1, dirport_reachability_count==0);
  929. if (++dirport_reachability_count > 5)
  930. dirport_reachability_count = 0;
  931. } else if (time_to_recheck_bandwidth < now) {
  932. /* If we haven't checked for 12 hours and our bandwidth estimate is
  933. * low, do another bandwidth test. This is especially important for
  934. * bridges, since they might go long periods without much use. */
  935. routerinfo_t *me = router_get_my_routerinfo();
  936. if (time_to_recheck_bandwidth && me &&
  937. me->bandwidthcapacity < me->bandwidthrate &&
  938. me->bandwidthcapacity < 51200) {
  939. reset_bandwidth_test();
  940. }
  941. #define BANDWIDTH_RECHECK_INTERVAL (12*60*60)
  942. time_to_recheck_bandwidth = now + BANDWIDTH_RECHECK_INTERVAL;
  943. }
  944. }
  945. /* If any networkstatus documents are no longer recent, we need to
  946. * update all the descriptors' running status. */
  947. /* purge obsolete entries */
  948. networkstatus_v2_list_clean(now);
  949. /* Remove dead routers. */
  950. routerlist_remove_old_routers();
  951. /* Also, once per minute, check whether we want to download any
  952. * networkstatus documents.
  953. */
  954. update_networkstatus_downloads(now);
  955. }
  956. /** 2c. Let directory voting happen. */
  957. if (authdir_mode_v3(options))
  958. dirvote_act(options, now);
  959. /** 3a. Every second, we examine pending circuits and prune the
  960. * ones which have been pending for more than a few seconds.
  961. * We do this before step 4, so it can try building more if
  962. * it's not comfortable with the number of available circuits.
  963. */
  964. circuit_expire_building(now);
  965. /** 3b. Also look at pending streams and prune the ones that 'began'
  966. * a long time ago but haven't gotten a 'connected' yet.
  967. * Do this before step 4, so we can put them back into pending
  968. * state to be picked up by the new circuit.
  969. */
  970. connection_ap_expire_beginning();
  971. /** 3c. And expire connections that we've held open for too long.
  972. */
  973. connection_expire_held_open();
  974. /** 3d. And every 60 seconds, we relaunch listeners if any died. */
  975. if (!we_are_hibernating() && time_to_check_listeners < now) {
  976. retry_all_listeners(NULL, NULL);
  977. time_to_check_listeners = now+60;
  978. }
  979. /** 4. Every second, we try a new circuit if there are no valid
  980. * circuits. Every NewCircuitPeriod seconds, we expire circuits
  981. * that became dirty more than MaxCircuitDirtiness seconds ago,
  982. * and we make a new circ if there are no clean circuits.
  983. */
  984. have_dir_info = router_have_minimum_dir_info();
  985. if (have_dir_info && !we_are_hibernating())
  986. circuit_build_needed_circs(now);
  987. /** 5. We do housekeeping for each connection... */
  988. for (i=0;i<smartlist_len(connection_array);i++) {
  989. run_connection_housekeeping(i, now);
  990. }
  991. if (time_to_shrink_memory < now) {
  992. SMARTLIST_FOREACH(connection_array, connection_t *, conn, {
  993. if (conn->outbuf)
  994. buf_shrink(conn->outbuf);
  995. if (conn->inbuf)
  996. buf_shrink(conn->inbuf);
  997. });
  998. clean_cell_pool();
  999. buf_shrink_freelists(0);
  1000. /** How often do we check buffers and pools for empty space that can be
  1001. * deallocated? */
  1002. #define MEM_SHRINK_INTERVAL (60)
  1003. time_to_shrink_memory = now + MEM_SHRINK_INTERVAL;
  1004. }
  1005. /** 6. And remove any marked circuits... */
  1006. circuit_close_all_marked();
  1007. /** 7. And upload service descriptors if necessary. */
  1008. if (has_completed_circuit && !we_are_hibernating()) {
  1009. rend_consider_services_upload(now);
  1010. rend_consider_descriptor_republication();
  1011. }
  1012. /** 8. and blow away any connections that need to die. have to do this now,
  1013. * because if we marked a conn for close and left its socket -1, then
  1014. * we'll pass it to poll/select and bad things will happen.
  1015. */
  1016. close_closeable_connections();
  1017. /** 8b. And if anything in our state is ready to get flushed to disk, we
  1018. * flush it. */
  1019. or_state_save(now);
  1020. /** 9. and if we're a server, check whether our DNS is telling stories to
  1021. * us. */
  1022. if (server_mode(options) && time_to_check_for_correct_dns < now) {
  1023. if (!time_to_check_for_correct_dns) {
  1024. time_to_check_for_correct_dns = now + 60 + crypto_rand_int(120);
  1025. } else {
  1026. dns_launch_correctness_checks();
  1027. time_to_check_for_correct_dns = now + 12*3600 +
  1028. crypto_rand_int(12*3600);
  1029. }
  1030. }
  1031. /** 10. write hidden service usage statistic to disk */
  1032. if (options->HSAuthorityRecordStats && time_to_write_hs_statistics < now) {
  1033. hs_usage_write_statistics_to_file(now);
  1034. #define WRITE_HSUSAGE_INTERVAL (30*60)
  1035. time_to_write_hs_statistics = now+WRITE_HSUSAGE_INTERVAL;
  1036. }
  1037. /** 10b. write bridge networkstatus file to disk */
  1038. if (options->BridgeAuthoritativeDir &&
  1039. time_to_write_bridge_status_file < now) {
  1040. networkstatus_dump_bridge_status_to_file(now);
  1041. #define BRIDGE_STATUSFILE_INTERVAL (30*60)
  1042. time_to_write_bridge_status_file = now+BRIDGE_STATUSFILE_INTERVAL;
  1043. }
  1044. }
  1045. /** Libevent timer: used to invoke second_elapsed_callback() once per
  1046. * second. */
  1047. static struct event *timeout_event = NULL;
  1048. /** Number of libevent errors in the last second: we die if we get too many. */
  1049. static int n_libevent_errors = 0;
  1050. /** Libevent callback: invoked once every second. */
  1051. static void
  1052. second_elapsed_callback(int fd, short event, void *args)
  1053. {
  1054. /* XXXX This could be sensibly refactored into multiple callbacks, and we
  1055. * could use libevent's timers for this rather than checking the current
  1056. * time against a bunch of timeouts every second. */
  1057. static struct timeval one_second;
  1058. static long current_second = 0;
  1059. time_t now;
  1060. size_t bytes_written;
  1061. size_t bytes_read;
  1062. int seconds_elapsed;
  1063. or_options_t *options = get_options();
  1064. (void)fd;
  1065. (void)event;
  1066. (void)args;
  1067. if (!timeout_event) {
  1068. timeout_event = tor_malloc_zero(sizeof(struct event));
  1069. evtimer_set(timeout_event, second_elapsed_callback, NULL);
  1070. one_second.tv_sec = 1;
  1071. one_second.tv_usec = 0;
  1072. }
  1073. n_libevent_errors = 0;
  1074. /* log_fn(LOG_NOTICE, "Tick."); */
  1075. now = time(NULL);
  1076. update_approx_time(now);
  1077. /* the second has rolled over. check more stuff. */
  1078. bytes_written = stats_prev_global_write_bucket - global_write_bucket;
  1079. bytes_read = stats_prev_global_read_bucket - global_read_bucket;
  1080. seconds_elapsed = current_second ? (int)(now - current_second) : 0;
  1081. stats_n_bytes_read += bytes_read;
  1082. stats_n_bytes_written += bytes_written;
  1083. if (accounting_is_enabled(options) && seconds_elapsed >= 0)
  1084. accounting_add_bytes(bytes_read, bytes_written, seconds_elapsed);
  1085. control_event_bandwidth_used((uint32_t)bytes_read,(uint32_t)bytes_written);
  1086. control_event_stream_bandwidth_used();
  1087. if (seconds_elapsed > 0)
  1088. connection_bucket_refill(seconds_elapsed, now);
  1089. stats_prev_global_read_bucket = global_read_bucket;
  1090. stats_prev_global_write_bucket = global_write_bucket;
  1091. if (server_mode(options) &&
  1092. !we_are_hibernating() &&
  1093. seconds_elapsed > 0 &&
  1094. has_completed_circuit &&
  1095. stats_n_seconds_working / TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT !=
  1096. (stats_n_seconds_working+seconds_elapsed) /
  1097. TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT) {
  1098. /* every 20 minutes, check and complain if necessary */
  1099. routerinfo_t *me = router_get_my_routerinfo();
  1100. if (me && !check_whether_orport_reachable())
  1101. log_warn(LD_CONFIG,"Your server (%s:%d) has not managed to confirm that "
  1102. "its ORPort is reachable. Please check your firewalls, ports, "
  1103. "address, /etc/hosts file, etc.",
  1104. me->address, me->or_port);
  1105. if (me && !check_whether_dirport_reachable())
  1106. log_warn(LD_CONFIG,
  1107. "Your server (%s:%d) has not managed to confirm that its "
  1108. "DirPort is reachable. Please check your firewalls, ports, "
  1109. "address, /etc/hosts file, etc.",
  1110. me->address, me->dir_port);
  1111. }
  1112. /** If more than this many seconds have elapsed, probably the clock
  1113. * jumped: doesn't count. */
  1114. #define NUM_JUMPED_SECONDS_BEFORE_WARN 100
  1115. if (seconds_elapsed < -NUM_JUMPED_SECONDS_BEFORE_WARN ||
  1116. seconds_elapsed >= NUM_JUMPED_SECONDS_BEFORE_WARN) {
  1117. circuit_note_clock_jumped(seconds_elapsed);
  1118. /* XXX if the time jumps *back* many months, do our events in
  1119. * run_scheduled_events() recover? I don't think they do. -RD */
  1120. } else if (seconds_elapsed > 0)
  1121. stats_n_seconds_working += seconds_elapsed;
  1122. run_scheduled_events(now);
  1123. current_second = now; /* remember which second it is, for next time */
  1124. #if 0
  1125. if (current_second % 300 == 0) {
  1126. rep_history_clean(current_second - options->RephistTrackTime);
  1127. dumpmemusage(get_min_log_level()<LOG_INFO ?
  1128. get_min_log_level() : LOG_INFO);
  1129. }
  1130. #endif
  1131. if (evtimer_add(timeout_event, &one_second))
  1132. log_err(LD_NET,
  1133. "Error from libevent when setting one-second timeout event");
  1134. }
  1135. #ifndef MS_WINDOWS
  1136. /** Called when a possibly ignorable libevent error occurs; ensures that we
  1137. * don't get into an infinite loop by ignoring too many errors from
  1138. * libevent. */
  1139. static int
  1140. got_libevent_error(void)
  1141. {
  1142. if (++n_libevent_errors > 8) {
  1143. log_err(LD_NET, "Too many libevent errors in one second; dying");
  1144. return -1;
  1145. }
  1146. return 0;
  1147. }
  1148. #endif
  1149. #define UPTIME_CUTOFF_FOR_NEW_BANDWIDTH_TEST (6*60*60)
  1150. /** Called when our IP address seems to have changed. <b>at_interface</b>
  1151. * should be true if we detected a change in our interface, and false if we
  1152. * detected a change in our published address. */
  1153. void
  1154. ip_address_changed(int at_interface)
  1155. {
  1156. int server = server_mode(get_options());
  1157. if (at_interface) {
  1158. if (! server) {
  1159. /* Okay, change our keys. */
  1160. init_keys();
  1161. }
  1162. } else {
  1163. if (server) {
  1164. if (stats_n_seconds_working > UPTIME_CUTOFF_FOR_NEW_BANDWIDTH_TEST)
  1165. reset_bandwidth_test();
  1166. stats_n_seconds_working = 0;
  1167. router_reset_reachability();
  1168. mark_my_descriptor_dirty();
  1169. }
  1170. }
  1171. dns_servers_relaunch_checks();
  1172. }
  1173. /** Forget what we've learned about the correctness of our DNS servers, and
  1174. * start learning again. */
  1175. void
  1176. dns_servers_relaunch_checks(void)
  1177. {
  1178. if (server_mode(get_options())) {
  1179. dns_reset_correctness_checks();
  1180. time_to_check_for_correct_dns = 0;
  1181. }
  1182. }
  1183. /** Called when we get a SIGHUP: reload configuration files and keys,
  1184. * retry all connections, and so on. */
  1185. static int
  1186. do_hup(void)
  1187. {
  1188. or_options_t *options = get_options();
  1189. #ifdef USE_DMALLOC
  1190. dmalloc_log_stats();
  1191. dmalloc_log_changed(0, 1, 0, 0);
  1192. #endif
  1193. log_notice(LD_GENERAL,"Received reload signal (hup). Reloading config and "
  1194. "resetting internal state.");
  1195. if (accounting_is_enabled(options))
  1196. accounting_record_bandwidth_usage(time(NULL), get_or_state());
  1197. router_reset_warnings();
  1198. routerlist_reset_warnings();
  1199. addressmap_clear_transient();
  1200. /* first, reload config variables, in case they've changed */
  1201. if (options->ReloadTorrcOnSIGHUP) {
  1202. /* no need to provide argc/v, they've been cached in init_from_config */
  1203. if (options_init_from_torrc(0, NULL) < 0) {
  1204. log_err(LD_CONFIG,"Reading config failed--see warnings above. "
  1205. "For usage, try -h.");
  1206. return -1;
  1207. }
  1208. options = get_options(); /* they have changed now */
  1209. } else {
  1210. log_notice(LD_GENERAL, "Not reloading config file: the controller told "
  1211. "us not to.");
  1212. }
  1213. if (authdir_mode_handles_descs(options, -1)) {
  1214. /* reload the approved-routers file */
  1215. if (dirserv_load_fingerprint_file() < 0) {
  1216. /* warnings are logged from dirserv_load_fingerprint_file() directly */
  1217. log_info(LD_GENERAL, "Error reloading fingerprints. "
  1218. "Continuing with old list.");
  1219. }
  1220. }
  1221. /* Rotate away from the old dirty circuits. This has to be done
  1222. * after we've read the new options, but before we start using
  1223. * circuits for directory fetches. */
  1224. circuit_expire_all_dirty_circs();
  1225. /* retry appropriate downloads */
  1226. router_reset_status_download_failures();
  1227. router_reset_descriptor_download_failures();
  1228. update_networkstatus_downloads(time(NULL));
  1229. /* We'll retry routerstatus downloads in about 10 seconds; no need to
  1230. * force a retry there. */
  1231. if (server_mode(options)) {
  1232. /* Restart cpuworker and dnsworker processes, so they get up-to-date
  1233. * configuration options. */
  1234. cpuworkers_rotate();
  1235. dns_reset();
  1236. }
  1237. return 0;
  1238. }
  1239. /** Tor main loop. */
  1240. /* static */ int
  1241. do_main_loop(void)
  1242. {
  1243. int loop_result;
  1244. time_t now;
  1245. /* initialize dns resolve map, spawn workers if needed */
  1246. if (dns_init() < 0) {
  1247. if (get_options()->ServerDNSAllowBrokenConfig)
  1248. log_warn(LD_GENERAL, "Couldn't set up any working nameservers. "
  1249. "Network not up yet? Will try again soon.");
  1250. else {
  1251. log_err(LD_GENERAL,"Error initializing dns subsystem; exiting. To "
  1252. "retry instead, set the ServerDNSAllowBrokenResolvConf option.");
  1253. }
  1254. }
  1255. handle_signals(1);
  1256. /* load the private keys, if we're supposed to have them, and set up the
  1257. * TLS context. */
  1258. if (! identity_key_is_set()) {
  1259. if (init_keys() < 0) {
  1260. log_err(LD_BUG,"Error initializing keys; exiting");
  1261. return -1;
  1262. }
  1263. }
  1264. /* Set up the packed_cell_t memory pool. */
  1265. init_cell_pool();
  1266. /* Set up our buckets */
  1267. connection_bucket_init();
  1268. stats_prev_global_read_bucket = global_read_bucket;
  1269. stats_prev_global_write_bucket = global_write_bucket;
  1270. /* initialize the bootstrap status events to know we're starting up */
  1271. control_event_bootstrap(BOOTSTRAP_STATUS_STARTING, 0);
  1272. if (trusted_dirs_reload_certs())
  1273. return -1;
  1274. if (router_reload_v2_networkstatus()) {
  1275. return -1;
  1276. }
  1277. if (router_reload_consensus_networkstatus()) {
  1278. return -1;
  1279. }
  1280. /* load the routers file, or assign the defaults. */
  1281. if (router_reload_router_list()) {
  1282. return -1;
  1283. }
  1284. /* load the networkstatuses. (This launches a download for new routers as
  1285. * appropriate.)
  1286. */
  1287. now = time(NULL);
  1288. directory_info_has_arrived(now, 1);
  1289. if (authdir_mode_tests_reachability(get_options())) {
  1290. /* the directory is already here, run startup things */
  1291. dirserv_test_reachability(now, 1);
  1292. }
  1293. if (server_mode(get_options())) {
  1294. /* launch cpuworkers. Need to do this *after* we've read the onion key. */
  1295. cpu_init();
  1296. }
  1297. /* set up once-a-second callback. */
  1298. second_elapsed_callback(0,0,NULL);
  1299. for (;;) {
  1300. if (nt_service_is_stopping())
  1301. return 0;
  1302. #ifndef MS_WINDOWS
  1303. /* Make it easier to tell whether libevent failure is our fault or not. */
  1304. errno = 0;
  1305. #endif
  1306. /* All active linked conns should get their read events activated. */
  1307. SMARTLIST_FOREACH(active_linked_connection_lst, connection_t *, conn,
  1308. event_active(conn->read_event, EV_READ, 1));
  1309. called_loop_once = smartlist_len(active_linked_connection_lst) ? 1 : 0;
  1310. update_approx_time(time(NULL));
  1311. /* poll until we have an event, or the second ends, or until we have
  1312. * some active linked connections to trigger events for. */
  1313. loop_result = event_loop(called_loop_once ? EVLOOP_ONCE : 0);
  1314. /* let catch() handle things like ^c, and otherwise don't worry about it */
  1315. if (loop_result < 0) {
  1316. int e = tor_socket_errno(-1);
  1317. /* let the program survive things like ^z */
  1318. if (e != EINTR && !ERRNO_IS_EINPROGRESS(e)) {
  1319. #ifdef HAVE_EVENT_GET_METHOD
  1320. log_err(LD_NET,"libevent call with %s failed: %s [%d]",
  1321. event_get_method(), tor_socket_strerror(e), e);
  1322. #else
  1323. log_err(LD_NET,"libevent call failed: %s [%d]",
  1324. tor_socket_strerror(e), e);
  1325. #endif
  1326. return -1;
  1327. #ifndef MS_WINDOWS
  1328. } else if (e == EINVAL) {
  1329. log_warn(LD_NET, "EINVAL from libevent: should you upgrade libevent?");
  1330. if (got_libevent_error())
  1331. return -1;
  1332. #endif
  1333. } else {
  1334. if (ERRNO_IS_EINPROGRESS(e))
  1335. log_warn(LD_BUG,
  1336. "libevent call returned EINPROGRESS? Please report.");
  1337. log_debug(LD_NET,"libevent call interrupted.");
  1338. /* You can't trust the results of this poll(). Go back to the
  1339. * top of the big for loop. */
  1340. continue;
  1341. }
  1342. }
  1343. }
  1344. }
  1345. /** Used to implement the SIGNAL control command: if we accept
  1346. * <b>the_signal</b> as a remote pseudo-signal, act on it. */
  1347. /* We don't re-use catch() here because:
  1348. * 1. We handle a different set of signals than those allowed in catch.
  1349. * 2. Platforms without signal() are unlikely to define SIGfoo.
  1350. * 3. The control spec is defined to use fixed numeric signal values
  1351. * which just happen to match the unix values.
  1352. */
  1353. void
  1354. control_signal_act(int the_signal)
  1355. {
  1356. switch (the_signal)
  1357. {
  1358. case 1:
  1359. signal_callback(0,0,(void*)(uintptr_t)SIGHUP);
  1360. break;
  1361. case 2:
  1362. signal_callback(0,0,(void*)(uintptr_t)SIGINT);
  1363. break;
  1364. case 10:
  1365. signal_callback(0,0,(void*)(uintptr_t)SIGUSR1);
  1366. break;
  1367. case 12:
  1368. signal_callback(0,0,(void*)(uintptr_t)SIGUSR2);
  1369. break;
  1370. case 15:
  1371. signal_callback(0,0,(void*)(uintptr_t)SIGTERM);
  1372. break;
  1373. case SIGNEWNYM:
  1374. signal_callback(0,0,(void*)(uintptr_t)SIGNEWNYM);
  1375. break;
  1376. case SIGCLEARDNSCACHE:
  1377. signal_callback(0,0,(void*)(uintptr_t)SIGCLEARDNSCACHE);
  1378. break;
  1379. default:
  1380. log_warn(LD_BUG, "Unrecognized signal number %d.", the_signal);
  1381. break;
  1382. }
  1383. }
  1384. /** Libevent callback: invoked when we get a signal.
  1385. */
  1386. static void
  1387. signal_callback(int fd, short events, void *arg)
  1388. {
  1389. uintptr_t sig = (uintptr_t)arg;
  1390. (void)fd;
  1391. (void)events;
  1392. switch (sig)
  1393. {
  1394. case SIGTERM:
  1395. log_notice(LD_GENERAL,"Catching signal TERM, exiting cleanly.");
  1396. tor_cleanup();
  1397. exit(0);
  1398. break;
  1399. case SIGINT:
  1400. if (!server_mode(get_options())) { /* do it now */
  1401. log_notice(LD_GENERAL,"Interrupt: exiting cleanly.");
  1402. tor_cleanup();
  1403. exit(0);
  1404. }
  1405. hibernate_begin_shutdown();
  1406. break;
  1407. #ifdef SIGPIPE
  1408. case SIGPIPE:
  1409. log_debug(LD_GENERAL,"Caught sigpipe. Ignoring.");
  1410. break;
  1411. #endif
  1412. case SIGUSR1:
  1413. /* prefer to log it at INFO, but make sure we always see it */
  1414. dumpstats(get_min_log_level()<LOG_INFO ? get_min_log_level() : LOG_INFO);
  1415. break;
  1416. case SIGUSR2:
  1417. switch_logs_debug();
  1418. log_debug(LD_GENERAL,"Caught USR2, going to loglevel debug. "
  1419. "Send HUP to change back.");
  1420. break;
  1421. case SIGHUP:
  1422. if (do_hup() < 0) {
  1423. log_warn(LD_CONFIG,"Restart failed (config error?). Exiting.");
  1424. tor_cleanup();
  1425. exit(1);
  1426. }
  1427. break;
  1428. #ifdef SIGCHLD
  1429. case SIGCHLD:
  1430. while (waitpid(-1,NULL,WNOHANG) > 0) ; /* keep reaping until no more
  1431. zombies */
  1432. break;
  1433. #endif
  1434. case SIGNEWNYM: {
  1435. time_t now = time(NULL);
  1436. if (time_of_last_signewnym + MAX_SIGNEWNYM_RATE > now) {
  1437. signewnym_is_pending = 1;
  1438. log(LOG_NOTICE, LD_CONTROL,
  1439. "Rate limiting NEWNYM request: delaying by %d second(s)",
  1440. (int)(MAX_SIGNEWNYM_RATE+time_of_last_signewnym-now));
  1441. } else {
  1442. signewnym_impl(now);
  1443. }
  1444. break;
  1445. }
  1446. case SIGCLEARDNSCACHE:
  1447. addressmap_clear_transient();
  1448. break;
  1449. }
  1450. }
  1451. extern uint64_t rephist_total_alloc;
  1452. extern uint32_t rephist_total_num;
  1453. /**
  1454. * Write current memory usage information to the log.
  1455. */
  1456. static void
  1457. dumpmemusage(int severity)
  1458. {
  1459. connection_dump_buffer_mem_stats(severity);
  1460. log(severity, LD_GENERAL, "In rephist: "U64_FORMAT" used by %d Tors.",
  1461. U64_PRINTF_ARG(rephist_total_alloc), rephist_total_num);
  1462. dump_routerlist_mem_usage(severity);
  1463. dump_cell_pool_usage(severity);
  1464. buf_dump_freelist_sizes(severity);
  1465. tor_log_mallinfo(severity);
  1466. }
  1467. /** Write all statistics to the log, with log level 'severity'. Called
  1468. * in response to a SIGUSR1. */
  1469. static void
  1470. dumpstats(int severity)
  1471. {
  1472. time_t now = time(NULL);
  1473. time_t elapsed;
  1474. int rbuf_cap, wbuf_cap, rbuf_len, wbuf_len;
  1475. log(severity, LD_GENERAL, "Dumping stats:");
  1476. SMARTLIST_FOREACH(connection_array, connection_t *, conn,
  1477. {
  1478. int i = conn_sl_idx;
  1479. log(severity, LD_GENERAL,
  1480. "Conn %d (socket %d) type %d (%s), state %d (%s), created %d secs ago",
  1481. i, conn->s, conn->type, conn_type_to_string(conn->type),
  1482. conn->state, conn_state_to_string(conn->type, conn->state),
  1483. (int)(now - conn->timestamp_created));
  1484. if (!connection_is_listener(conn)) {
  1485. log(severity,LD_GENERAL,
  1486. "Conn %d is to %s:%d.", i,
  1487. safe_str(conn->address), conn->port);
  1488. log(severity,LD_GENERAL,
  1489. "Conn %d: %d bytes waiting on inbuf (len %d, last read %d secs ago)",
  1490. i,
  1491. (int)buf_datalen(conn->inbuf),
  1492. (int)buf_allocation(conn->inbuf),
  1493. (int)(now - conn->timestamp_lastread));
  1494. log(severity,LD_GENERAL,
  1495. "Conn %d: %d bytes waiting on outbuf "
  1496. "(len %d, last written %d secs ago)",i,
  1497. (int)buf_datalen(conn->outbuf),
  1498. (int)buf_allocation(conn->outbuf),
  1499. (int)(now - conn->timestamp_lastwritten));
  1500. if (conn->type == CONN_TYPE_OR) {
  1501. or_connection_t *or_conn = TO_OR_CONN(conn);
  1502. if (or_conn->tls) {
  1503. tor_tls_get_buffer_sizes(or_conn->tls, &rbuf_cap, &rbuf_len,
  1504. &wbuf_cap, &wbuf_len);
  1505. log(severity, LD_GENERAL,
  1506. "Conn %d: %d/%d bytes used on openssl read buffer; "
  1507. "%d/%d bytes used on write buffer.",
  1508. i, rbuf_len, rbuf_cap, wbuf_len, wbuf_cap);
  1509. }
  1510. }
  1511. }
  1512. circuit_dump_by_conn(conn, severity); /* dump info about all the circuits
  1513. * using this conn */
  1514. });
  1515. log(severity, LD_NET,
  1516. "Cells processed: "U64_FORMAT" padding\n"
  1517. " "U64_FORMAT" create\n"
  1518. " "U64_FORMAT" created\n"
  1519. " "U64_FORMAT" relay\n"
  1520. " ("U64_FORMAT" relayed)\n"
  1521. " ("U64_FORMAT" delivered)\n"
  1522. " "U64_FORMAT" destroy",
  1523. U64_PRINTF_ARG(stats_n_padding_cells_processed),
  1524. U64_PRINTF_ARG(stats_n_create_cells_processed),
  1525. U64_PRINTF_ARG(stats_n_created_cells_processed),
  1526. U64_PRINTF_ARG(stats_n_relay_cells_processed),
  1527. U64_PRINTF_ARG(stats_n_relay_cells_relayed),
  1528. U64_PRINTF_ARG(stats_n_relay_cells_delivered),
  1529. U64_PRINTF_ARG(stats_n_destroy_cells_processed));
  1530. if (stats_n_data_cells_packaged)
  1531. log(severity,LD_NET,"Average packaged cell fullness: %2.3f%%",
  1532. 100*(U64_TO_DBL(stats_n_data_bytes_packaged) /
  1533. U64_TO_DBL(stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) );
  1534. if (stats_n_data_cells_received)
  1535. log(severity,LD_NET,"Average delivered cell fullness: %2.3f%%",
  1536. 100*(U64_TO_DBL(stats_n_data_bytes_received) /
  1537. U64_TO_DBL(stats_n_data_cells_received*RELAY_PAYLOAD_SIZE)) );
  1538. if (now - time_of_process_start >= 0)
  1539. elapsed = now - time_of_process_start;
  1540. else
  1541. elapsed = 0;
  1542. if (elapsed) {
  1543. log(severity, LD_NET,
  1544. "Average bandwidth: "U64_FORMAT"/%d = %d bytes/sec reading",
  1545. U64_PRINTF_ARG(stats_n_bytes_read),
  1546. (int)elapsed,
  1547. (int) (stats_n_bytes_read/elapsed));
  1548. log(severity, LD_NET,
  1549. "Average bandwidth: "U64_FORMAT"/%d = %d bytes/sec writing",
  1550. U64_PRINTF_ARG(stats_n_bytes_written),
  1551. (int)elapsed,
  1552. (int) (stats_n_bytes_written/elapsed));
  1553. }
  1554. log(severity, LD_NET, "--------------- Dumping memory information:");
  1555. dumpmemusage(severity);
  1556. rep_hist_dump_stats(now,severity);
  1557. rend_service_dump_stats(severity);
  1558. dump_pk_ops(severity);
  1559. dump_distinct_digest_count(severity);
  1560. }
  1561. /** Called by exit() as we shut down the process.
  1562. */
  1563. static void
  1564. exit_function(void)
  1565. {
  1566. /* NOTE: If we ever daemonize, this gets called immediately. That's
  1567. * okay for now, because we only use this on Windows. */
  1568. #ifdef MS_WINDOWS
  1569. WSACleanup();
  1570. #endif
  1571. }
  1572. /** Set up the signal handlers for either parent or child. */
  1573. void
  1574. handle_signals(int is_parent)
  1575. {
  1576. #ifndef MS_WINDOWS /* do signal stuff only on unix */
  1577. int i;
  1578. static int signals[] = {
  1579. SIGINT, /* do a controlled slow shutdown */
  1580. SIGTERM, /* to terminate now */
  1581. SIGPIPE, /* otherwise sigpipe kills us */
  1582. SIGUSR1, /* dump stats */
  1583. SIGUSR2, /* go to loglevel debug */
  1584. SIGHUP, /* to reload config, retry conns, etc */
  1585. #ifdef SIGXFSZ
  1586. SIGXFSZ, /* handle file-too-big resource exhaustion */
  1587. #endif
  1588. SIGCHLD, /* handle dns/cpu workers that exit */
  1589. -1 };
  1590. static struct event signal_events[16]; /* bigger than it has to be. */
  1591. if (is_parent) {
  1592. for (i = 0; signals[i] >= 0; ++i) {
  1593. signal_set(&signal_events[i], signals[i], signal_callback,
  1594. (void*)(uintptr_t)signals[i]);
  1595. if (signal_add(&signal_events[i], NULL))
  1596. log_warn(LD_BUG, "Error from libevent when adding event for signal %d",
  1597. signals[i]);
  1598. }
  1599. } else {
  1600. struct sigaction action;
  1601. action.sa_flags = 0;
  1602. sigemptyset(&action.sa_mask);
  1603. action.sa_handler = SIG_IGN;
  1604. sigaction(SIGINT, &action, NULL);
  1605. sigaction(SIGTERM, &action, NULL);
  1606. sigaction(SIGPIPE, &action, NULL);
  1607. sigaction(SIGUSR1, &action, NULL);
  1608. sigaction(SIGUSR2, &action, NULL);
  1609. sigaction(SIGHUP, &action, NULL);
  1610. #ifdef SIGXFSZ
  1611. sigaction(SIGXFSZ, &action, NULL);
  1612. #endif
  1613. }
  1614. #else /* MS windows */
  1615. (void)is_parent;
  1616. #endif /* signal stuff */
  1617. }
  1618. /** Main entry point for the Tor command-line client.
  1619. */
  1620. /* static */ int
  1621. tor_init(int argc, char *argv[])
  1622. {
  1623. char buf[256];
  1624. int i, quiet = 0;
  1625. time_of_process_start = time(NULL);
  1626. if (!connection_array)
  1627. connection_array = smartlist_create();
  1628. if (!closeable_connection_lst)
  1629. closeable_connection_lst = smartlist_create();
  1630. if (!active_linked_connection_lst)
  1631. active_linked_connection_lst = smartlist_create();
  1632. /* Have the log set up with our application name. */
  1633. tor_snprintf(buf, sizeof(buf), "Tor %s", get_version());
  1634. log_set_application_name(buf);
  1635. /* Initialize the history structures. */
  1636. rep_hist_init();
  1637. /* Initialize the service cache. */
  1638. rend_cache_init();
  1639. addressmap_init(); /* Init the client dns cache. Do it always, since it's
  1640. * cheap. */
  1641. /* We search for the "quiet" option first, since it decides whether we
  1642. * will log anything at all to the command line. */
  1643. for (i=1;i<argc;++i) {
  1644. if (!strcmp(argv[i], "--hush"))
  1645. quiet = 1;
  1646. if (!strcmp(argv[i], "--quiet"))
  1647. quiet = 2;
  1648. }
  1649. /* give it somewhere to log to initially */
  1650. switch (quiet) {
  1651. case 2:
  1652. /* no initial logging */
  1653. break;
  1654. case 1:
  1655. add_temp_log(LOG_WARN);
  1656. break;
  1657. default:
  1658. add_temp_log(LOG_NOTICE);
  1659. }
  1660. log(LOG_NOTICE, LD_GENERAL, "Tor v%s. This is experimental software. "
  1661. "Do not rely on it for strong anonymity. (Running on %s)",get_version(),
  1662. get_uname());
  1663. if (network_init()<0) {
  1664. log_err(LD_BUG,"Error initializing network; exiting.");
  1665. return -1;
  1666. }
  1667. atexit(exit_function);
  1668. if (options_init_from_torrc(argc,argv) < 0) {
  1669. log_err(LD_CONFIG,"Reading config failed--see warnings above.");
  1670. return -1;
  1671. }
  1672. #ifndef MS_WINDOWS
  1673. if (geteuid()==0)
  1674. log_warn(LD_GENERAL,"You are running Tor as root. You don't need to, "
  1675. "and you probably shouldn't.");
  1676. #endif
  1677. crypto_global_init(get_options()->HardwareAccel);
  1678. if (crypto_seed_rng(1)) {
  1679. log_err(LD_BUG, "Unable to seed random number generator. Exiting.");
  1680. return -1;
  1681. }
  1682. return 0;
  1683. }
  1684. /** A lockfile structure, used to prevent two Tors from messing with the
  1685. * data directory at once. If this variable is non-NULL, we're holding
  1686. * the lockfile. */
  1687. static tor_lockfile_t *lockfile = NULL;
  1688. /** Try to grab the lock file described in <b>options</b>, if we do not
  1689. * already have it. If <b>err_if_locked</b> is true, warn if somebody else is
  1690. * holding the lock, and exit if we can't get it after waiting. Otherwise,
  1691. * return -1 if we can't get the lockfile. Return 0 on success.
  1692. */
  1693. int
  1694. try_locking(or_options_t *options, int err_if_locked)
  1695. {
  1696. if (lockfile)
  1697. return 0;
  1698. else {
  1699. char *fname = options_get_datadir_fname2_suffix(options, "lock",NULL,NULL);
  1700. int already_locked = 0;
  1701. tor_lockfile_t *lf = tor_lockfile_lock(fname, 0, &already_locked);
  1702. tor_free(fname);
  1703. if (!lf) {
  1704. if (err_if_locked && already_locked) {
  1705. int r;
  1706. log_warn(LD_GENERAL, "It looks like another Tor process is running "
  1707. "with the same data directory. Waiting 5 seconds to see "
  1708. "if it goes away.");
  1709. #ifndef WIN32
  1710. sleep(5);
  1711. #else
  1712. Sleep(5000);
  1713. #endif
  1714. r = try_locking(options, 0);
  1715. if (r<0) {
  1716. log_err(LD_GENERAL, "No, it's still there. Exiting.");
  1717. exit(0);
  1718. }
  1719. return r;
  1720. }
  1721. return -1;
  1722. }
  1723. lockfile = lf;
  1724. return 0;
  1725. }
  1726. }
  1727. /** Return true iff we've successfully acquired the lock file. */
  1728. int
  1729. have_lockfile(void)
  1730. {
  1731. return lockfile != NULL;
  1732. }
  1733. /** If we have successfully acquired the lock file, release it. */
  1734. void
  1735. release_lockfile(void)
  1736. {
  1737. if (lockfile) {
  1738. tor_lockfile_unlock(lockfile);
  1739. lockfile = NULL;
  1740. }
  1741. }
  1742. /** Free all memory that we might have allocated somewhere.
  1743. * If <b>postfork</b>, we are a worker process and we want to free
  1744. * only the parts of memory that we won't touch. If !<b>postfork</b>,
  1745. * Tor is shutting down and we should free everything.
  1746. *
  1747. * Helps us find the real leaks with dmalloc and the like. Also valgrind
  1748. * should then report 0 reachable in its leak report (in an ideal world --
  1749. * in practice libevent, ssl, libc etc never quite free everything). */
  1750. void
  1751. tor_free_all(int postfork)
  1752. {
  1753. if (!postfork) {
  1754. evdns_shutdown(1);
  1755. }
  1756. geoip_free_all();
  1757. dirvote_free_all();
  1758. routerlist_free_all();
  1759. networkstatus_free_all();
  1760. addressmap_free_all();
  1761. dirserv_free_all();
  1762. rend_service_free_all();
  1763. rend_cache_free_all();
  1764. rend_service_authorization_free_all();
  1765. rep_hist_free_all();
  1766. hs_usage_free_all();
  1767. dns_free_all();
  1768. clear_pending_onions();
  1769. circuit_free_all();
  1770. entry_guards_free_all();
  1771. connection_free_all();
  1772. buf_shrink_freelists(1);
  1773. memarea_clear_freelist();
  1774. if (!postfork) {
  1775. config_free_all();
  1776. router_free_all();
  1777. policies_free_all();
  1778. }
  1779. free_cell_pool();
  1780. if (!postfork) {
  1781. tor_tls_free_all();
  1782. }
  1783. /* stuff in main.c */
  1784. if (connection_array)
  1785. smartlist_free(connection_array);
  1786. if (closeable_connection_lst)
  1787. smartlist_free(closeable_connection_lst);
  1788. if (active_linked_connection_lst)
  1789. smartlist_free(active_linked_connection_lst);
  1790. tor_free(timeout_event);
  1791. if (!postfork) {
  1792. release_lockfile();
  1793. }
  1794. /* Stuff in util.c and address.c*/
  1795. if (!postfork) {
  1796. escaped(NULL);
  1797. esc_router_info(NULL);
  1798. logs_free_all(); /* free log strings. do this last so logs keep working. */
  1799. }
  1800. }
  1801. /** Do whatever cleanup is necessary before shutting Tor down. */
  1802. void
  1803. tor_cleanup(void)
  1804. {
  1805. or_options_t *options = get_options();
  1806. /* Remove our pid file. We don't care if there was an error when we
  1807. * unlink, nothing we could do about it anyways. */
  1808. if (options->command == CMD_RUN_TOR) {
  1809. if (options->PidFile)
  1810. unlink(options->PidFile);
  1811. if (accounting_is_enabled(options))
  1812. accounting_record_bandwidth_usage(time(NULL), get_or_state());
  1813. or_state_mark_dirty(get_or_state(), 0); /* force an immediate save. */
  1814. or_state_save(time(NULL));
  1815. if (authdir_mode_tests_reachability(options))
  1816. rep_hist_record_mtbf_data();
  1817. }
  1818. #ifdef USE_DMALLOC
  1819. dmalloc_log_stats();
  1820. #endif
  1821. tor_free_all(0); /* We could move tor_free_all back into the ifdef below
  1822. later, if it makes shutdown unacceptably slow. But for
  1823. now, leave it here: it's helped us catch bugs in the
  1824. past. */
  1825. crypto_global_cleanup();
  1826. #ifdef USE_DMALLOC
  1827. dmalloc_log_unfreed();
  1828. dmalloc_shutdown();
  1829. #endif
  1830. }
  1831. /** Read/create keys as needed, and echo our fingerprint to stdout. */
  1832. /* static */ int
  1833. do_list_fingerprint(void)
  1834. {
  1835. char buf[FINGERPRINT_LEN+1];
  1836. crypto_pk_env_t *k;
  1837. const char *nickname = get_options()->Nickname;
  1838. if (!server_mode(get_options())) {
  1839. log_err(LD_GENERAL,
  1840. "Clients don't have long-term identity keys. Exiting.\n");
  1841. return -1;
  1842. }
  1843. tor_assert(nickname);
  1844. if (init_keys() < 0) {
  1845. log_err(LD_BUG,"Error initializing keys; can't display fingerprint");
  1846. return -1;
  1847. }
  1848. if (!(k = get_identity_key())) {
  1849. log_err(LD_GENERAL,"Error: missing identity key.");
  1850. return -1;
  1851. }
  1852. if (crypto_pk_get_fingerprint(k, buf, 1)<0) {
  1853. log_err(LD_BUG, "Error computing fingerprint");
  1854. return -1;
  1855. }
  1856. printf("%s %s\n", nickname, buf);
  1857. return 0;
  1858. }
  1859. /** Entry point for password hashing: take the desired password from
  1860. * the command line, and print its salted hash to stdout. **/
  1861. /* static */ void
  1862. do_hash_password(void)
  1863. {
  1864. char output[256];
  1865. char key[S2K_SPECIFIER_LEN+DIGEST_LEN];
  1866. crypto_rand(key, S2K_SPECIFIER_LEN-1);
  1867. key[S2K_SPECIFIER_LEN-1] = (uint8_t)96; /* Hash 64 K of data. */
  1868. secret_to_key(key+S2K_SPECIFIER_LEN, DIGEST_LEN,
  1869. get_options()->command_arg, strlen(get_options()->command_arg),
  1870. key);
  1871. base16_encode(output, sizeof(output), key, sizeof(key));
  1872. printf("16:%s\n",output);
  1873. }
  1874. /** Main entry point for the Tor process. Called from main(). */
  1875. /* This function is distinct from main() only so we can link main.c into
  1876. * the unittest binary without conflicting with the unittests' main. */
  1877. int
  1878. tor_main(int argc, char *argv[])
  1879. {
  1880. int result = 0;
  1881. update_approx_time(time(NULL));
  1882. tor_threads_init();
  1883. init_logging();
  1884. #ifdef USE_DMALLOC
  1885. {
  1886. /* Instruct OpenSSL to use our internal wrappers for malloc,
  1887. realloc and free. */
  1888. int r = CRYPTO_set_mem_ex_functions(_tor_malloc, _tor_realloc, _tor_free);
  1889. tor_assert(r);
  1890. }
  1891. #endif
  1892. #ifdef NT_SERVICE
  1893. {
  1894. int done = 0;
  1895. result = nt_service_parse_options(argc, argv, &done);
  1896. if (done) return result;
  1897. }
  1898. #endif
  1899. if (tor_init(argc, argv)<0)
  1900. return -1;
  1901. switch (get_options()->command) {
  1902. case CMD_RUN_TOR:
  1903. #ifdef NT_SERVICE
  1904. nt_service_set_state(SERVICE_RUNNING);
  1905. #endif
  1906. result = do_main_loop();
  1907. break;
  1908. case CMD_LIST_FINGERPRINT:
  1909. result = do_list_fingerprint();
  1910. break;
  1911. case CMD_HASH_PASSWORD:
  1912. do_hash_password();
  1913. result = 0;
  1914. break;
  1915. case CMD_VERIFY_CONFIG:
  1916. printf("Configuration was valid\n");
  1917. result = 0;
  1918. break;
  1919. case CMD_RUN_UNITTESTS: /* only set by test.c */
  1920. default:
  1921. log_warn(LD_BUG,"Illegal command number %d: internal error.",
  1922. get_options()->command);
  1923. result = -1;
  1924. }
  1925. tor_cleanup();
  1926. return result;
  1927. }