main.c 66 KB

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