hibernate.c 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  1. /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  2. * Copyright (c) 2007-2013, The Tor Project, Inc. */
  3. /* See LICENSE for licensing information */
  4. /**
  5. * \file hibernate.c
  6. * \brief Functions to close listeners, stop allowing new circuits,
  7. * etc in preparation for closing down or going dormant; and to track
  8. * bandwidth and time intervals to know when to hibernate and when to
  9. * stop hibernating.
  10. **/
  11. /*
  12. hibernating, phase 1:
  13. - send destroy in response to create cells
  14. - send end (policy failed) in response to begin cells
  15. - close an OR conn when it has no circuits
  16. hibernating, phase 2:
  17. (entered when bandwidth hard limit reached)
  18. - close all OR/AP/exit conns)
  19. */
  20. #define HIBERNATE_PRIVATE
  21. #include "or.h"
  22. #include "channel.h"
  23. #include "channeltls.h"
  24. #include "config.h"
  25. #include "connection.h"
  26. #include "connection_edge.h"
  27. #include "hibernate.h"
  28. #include "main.h"
  29. #include "router.h"
  30. #include "statefile.h"
  31. extern long stats_n_seconds_working; /* published uptime */
  32. /** Are we currently awake, asleep, running out of bandwidth, or shutting
  33. * down? */
  34. static hibernate_state_t hibernate_state = HIBERNATE_STATE_INITIAL;
  35. /** If are hibernating, when do we plan to wake up? Set to 0 if we
  36. * aren't hibernating. */
  37. static time_t hibernate_end_time = 0;
  38. /** If we are shutting down, when do we plan finally exit? Set to 0 if
  39. * we aren't shutting down. */
  40. static time_t shutdown_time = 0;
  41. /** Possible accounting periods. */
  42. typedef enum {
  43. UNIT_MONTH=1, UNIT_WEEK=2, UNIT_DAY=3,
  44. } time_unit_t;
  45. /* Fields for accounting logic. Accounting overview:
  46. *
  47. * Accounting is designed to ensure that no more than N bytes are sent in
  48. * either direction over a given interval (currently, one month, one week, or
  49. * one day) We could
  50. * try to do this by choking our bandwidth to a trickle, but that
  51. * would make our streams useless. Instead, we estimate what our
  52. * bandwidth usage will be, and guess how long we'll be able to
  53. * provide that much bandwidth before hitting our limit. We then
  54. * choose a random time within the accounting interval to come up (so
  55. * that we don't get 50 Tors running on the 1st of the month and none
  56. * on the 30th).
  57. *
  58. * Each interval runs as follows:
  59. *
  60. * 1. We guess our bandwidth usage, based on how much we used
  61. * last time. We choose a "wakeup time" within the interval to come up.
  62. * 2. Until the chosen wakeup time, we hibernate.
  63. * 3. We come up at the wakeup time, and provide bandwidth until we are
  64. * "very close" to running out.
  65. * 4. Then we go into low-bandwidth mode, and stop accepting new
  66. * connections, but provide bandwidth until we run out.
  67. * 5. Then we hibernate until the end of the interval.
  68. *
  69. * If the interval ends before we run out of bandwidth, we go back to
  70. * step one.
  71. */
  72. /** How many bytes have we read in this accounting interval? */
  73. static uint64_t n_bytes_read_in_interval = 0;
  74. /** How many bytes have we written in this accounting interval? */
  75. static uint64_t n_bytes_written_in_interval = 0;
  76. /** How many seconds have we been running this interval? */
  77. static uint32_t n_seconds_active_in_interval = 0;
  78. /** How many seconds were we active in this interval before we hit our soft
  79. * limit? */
  80. static int n_seconds_to_hit_soft_limit = 0;
  81. /** When in this interval was the soft limit hit. */
  82. static time_t soft_limit_hit_at = 0;
  83. /** How many bytes had we read/written when we hit the soft limit? */
  84. static uint64_t n_bytes_at_soft_limit = 0;
  85. /** When did this accounting interval start? */
  86. static time_t interval_start_time = 0;
  87. /** When will this accounting interval end? */
  88. static time_t interval_end_time = 0;
  89. /** How far into the accounting interval should we hibernate? */
  90. static time_t interval_wakeup_time = 0;
  91. /** How much bandwidth do we 'expect' to use per minute? (0 if we have no
  92. * info from the last period.) */
  93. static uint64_t expected_bandwidth_usage = 0;
  94. /** What unit are we using for our accounting? */
  95. static time_unit_t cfg_unit = UNIT_MONTH;
  96. /** How many days,hours,minutes into each unit does our accounting interval
  97. * start? */
  98. /** @{ */
  99. static int cfg_start_day = 0,
  100. cfg_start_hour = 0,
  101. cfg_start_min = 0;
  102. /** @} */
  103. static void reset_accounting(time_t now);
  104. static int read_bandwidth_usage(void);
  105. static time_t start_of_accounting_period_after(time_t now);
  106. static time_t start_of_accounting_period_containing(time_t now);
  107. static void accounting_set_wakeup_time(void);
  108. /* ************
  109. * Functions for bandwidth accounting.
  110. * ************/
  111. /** Configure accounting start/end time settings based on
  112. * options->AccountingStart. Return 0 on success, -1 on failure. If
  113. * <b>validate_only</b> is true, do not change the current settings. */
  114. int
  115. accounting_parse_options(const or_options_t *options, int validate_only)
  116. {
  117. time_unit_t unit;
  118. int ok, idx;
  119. long d,h,m;
  120. smartlist_t *items;
  121. const char *v = options->AccountingStart;
  122. const char *s;
  123. char *cp;
  124. if (!v) {
  125. if (!validate_only) {
  126. cfg_unit = UNIT_MONTH;
  127. cfg_start_day = 1;
  128. cfg_start_hour = 0;
  129. cfg_start_min = 0;
  130. }
  131. return 0;
  132. }
  133. items = smartlist_new();
  134. smartlist_split_string(items, v, NULL,
  135. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK,0);
  136. if (smartlist_len(items)<2) {
  137. log_warn(LD_CONFIG, "Too few arguments to AccountingStart");
  138. goto err;
  139. }
  140. s = smartlist_get(items,0);
  141. if (0==strcasecmp(s, "month")) {
  142. unit = UNIT_MONTH;
  143. } else if (0==strcasecmp(s, "week")) {
  144. unit = UNIT_WEEK;
  145. } else if (0==strcasecmp(s, "day")) {
  146. unit = UNIT_DAY;
  147. } else {
  148. log_warn(LD_CONFIG,
  149. "Unrecognized accounting unit '%s': only 'month', 'week',"
  150. " and 'day' are supported.", s);
  151. goto err;
  152. }
  153. switch (unit) {
  154. case UNIT_WEEK:
  155. d = tor_parse_long(smartlist_get(items,1), 10, 1, 7, &ok, NULL);
  156. if (!ok) {
  157. log_warn(LD_CONFIG, "Weekly accounting must begin on a day between "
  158. "1 (Monday) and 7 (Sunday)");
  159. goto err;
  160. }
  161. break;
  162. case UNIT_MONTH:
  163. d = tor_parse_long(smartlist_get(items,1), 10, 1, 28, &ok, NULL);
  164. if (!ok) {
  165. log_warn(LD_CONFIG, "Monthly accounting must begin on a day between "
  166. "1 and 28");
  167. goto err;
  168. }
  169. break;
  170. case UNIT_DAY:
  171. d = 0;
  172. break;
  173. /* Coverity dislikes unreachable default cases; some compilers warn on
  174. * switch statements missing a case. Tell Coverity not to worry. */
  175. /* coverity[dead_error_begin] */
  176. default:
  177. tor_assert(0);
  178. }
  179. idx = unit==UNIT_DAY?1:2;
  180. if (smartlist_len(items) != (idx+1)) {
  181. log_warn(LD_CONFIG,"Accounting unit '%s' requires %d argument%s.",
  182. s, idx, (idx>1)?"s":"");
  183. goto err;
  184. }
  185. s = smartlist_get(items, idx);
  186. h = tor_parse_long(s, 10, 0, 23, &ok, &cp);
  187. if (!ok) {
  188. log_warn(LD_CONFIG,"Accounting start time not parseable: bad hour.");
  189. goto err;
  190. }
  191. if (!cp || *cp!=':') {
  192. log_warn(LD_CONFIG,
  193. "Accounting start time not parseable: not in HH:MM format");
  194. goto err;
  195. }
  196. m = tor_parse_long(cp+1, 10, 0, 59, &ok, &cp);
  197. if (!ok) {
  198. log_warn(LD_CONFIG, "Accounting start time not parseable: bad minute");
  199. goto err;
  200. }
  201. if (!cp || *cp!='\0') {
  202. log_warn(LD_CONFIG,
  203. "Accounting start time not parseable: not in HH:MM format");
  204. goto err;
  205. }
  206. if (!validate_only) {
  207. cfg_unit = unit;
  208. cfg_start_day = (int)d;
  209. cfg_start_hour = (int)h;
  210. cfg_start_min = (int)m;
  211. }
  212. SMARTLIST_FOREACH(items, char *, item, tor_free(item));
  213. smartlist_free(items);
  214. return 0;
  215. err:
  216. SMARTLIST_FOREACH(items, char *, item, tor_free(item));
  217. smartlist_free(items);
  218. return -1;
  219. }
  220. /** If we want to manage the accounting system and potentially
  221. * hibernate, return 1, else return 0.
  222. */
  223. int
  224. accounting_is_enabled(const or_options_t *options)
  225. {
  226. if (options->AccountingMax)
  227. return 1;
  228. return 0;
  229. }
  230. /** If accounting is enabled, return how long (in seconds) this
  231. * interval lasts. */
  232. int
  233. accounting_get_interval_length(void)
  234. {
  235. return (int)(interval_end_time - interval_start_time);
  236. }
  237. /** Called from main.c to tell us that <b>seconds</b> seconds have
  238. * passed, <b>n_read</b> bytes have been read, and <b>n_written</b>
  239. * bytes have been written. */
  240. void
  241. accounting_add_bytes(size_t n_read, size_t n_written, int seconds)
  242. {
  243. n_bytes_read_in_interval += n_read;
  244. n_bytes_written_in_interval += n_written;
  245. /* If we haven't been called in 10 seconds, we're probably jumping
  246. * around in time. */
  247. n_seconds_active_in_interval += (seconds < 10) ? seconds : 0;
  248. }
  249. /** If get_end, return the end of the accounting period that contains
  250. * the time <b>now</b>. Else, return the start of the accounting
  251. * period that contains the time <b>now</b> */
  252. static time_t
  253. edge_of_accounting_period_containing(time_t now, int get_end)
  254. {
  255. int before;
  256. struct tm tm;
  257. tor_localtime_r(&now, &tm);
  258. /* Set 'before' to true iff the current time is before the hh:mm
  259. * changeover time for today. */
  260. before = tm.tm_hour < cfg_start_hour ||
  261. (tm.tm_hour == cfg_start_hour && tm.tm_min < cfg_start_min);
  262. /* Dispatch by unit. First, find the start day of the given period;
  263. * then, if get_end is true, increment to the end day. */
  264. switch (cfg_unit)
  265. {
  266. case UNIT_MONTH: {
  267. /* If this is before the Nth, we want the Nth of last month. */
  268. if (tm.tm_mday < cfg_start_day ||
  269. (tm.tm_mday < cfg_start_day && before)) {
  270. --tm.tm_mon;
  271. }
  272. /* Otherwise, the month is correct. */
  273. tm.tm_mday = cfg_start_day;
  274. if (get_end)
  275. ++tm.tm_mon;
  276. break;
  277. }
  278. case UNIT_WEEK: {
  279. /* What is the 'target' day of the week in struct tm format? (We
  280. say Sunday==7; struct tm says Sunday==0.) */
  281. int wday = cfg_start_day % 7;
  282. /* How many days do we subtract from today to get to the right day? */
  283. int delta = (7+tm.tm_wday-wday)%7;
  284. /* If we are on the right day, but the changeover hasn't happened yet,
  285. * then subtract a whole week. */
  286. if (delta == 0 && before)
  287. delta = 7;
  288. tm.tm_mday -= delta;
  289. if (get_end)
  290. tm.tm_mday += 7;
  291. break;
  292. }
  293. case UNIT_DAY:
  294. if (before)
  295. --tm.tm_mday;
  296. if (get_end)
  297. ++tm.tm_mday;
  298. break;
  299. default:
  300. tor_assert(0);
  301. }
  302. tm.tm_hour = cfg_start_hour;
  303. tm.tm_min = cfg_start_min;
  304. tm.tm_sec = 0;
  305. tm.tm_isdst = -1; /* Autodetect DST */
  306. return mktime(&tm);
  307. }
  308. /** Return the start of the accounting period containing the time
  309. * <b>now</b>. */
  310. static time_t
  311. start_of_accounting_period_containing(time_t now)
  312. {
  313. return edge_of_accounting_period_containing(now, 0);
  314. }
  315. /** Return the start of the accounting period that comes after the one
  316. * containing the time <b>now</b>. */
  317. static time_t
  318. start_of_accounting_period_after(time_t now)
  319. {
  320. return edge_of_accounting_period_containing(now, 1);
  321. }
  322. /** Return the length of the accounting period containing the time
  323. * <b>now</b>. */
  324. static long
  325. length_of_accounting_period_containing(time_t now)
  326. {
  327. return edge_of_accounting_period_containing(now, 1) -
  328. edge_of_accounting_period_containing(now, 0);
  329. }
  330. /** Initialize the accounting subsystem. */
  331. void
  332. configure_accounting(time_t now)
  333. {
  334. time_t s_now;
  335. /* Try to remember our recorded usage. */
  336. if (!interval_start_time)
  337. read_bandwidth_usage(); /* If we fail, we'll leave values at zero, and
  338. * reset below.*/
  339. s_now = start_of_accounting_period_containing(now);
  340. if (!interval_start_time) {
  341. /* We didn't have recorded usage; Start a new interval. */
  342. log_info(LD_ACCT, "Starting new accounting interval.");
  343. reset_accounting(now);
  344. } else if (s_now == interval_start_time) {
  345. log_info(LD_ACCT, "Continuing accounting interval.");
  346. /* We are in the interval we thought we were in. Do nothing.*/
  347. interval_end_time = start_of_accounting_period_after(interval_start_time);
  348. } else {
  349. long duration =
  350. length_of_accounting_period_containing(interval_start_time);
  351. double delta = ((double)(s_now - interval_start_time)) / duration;
  352. if (-0.50 <= delta && delta <= 0.50) {
  353. /* The start of the period is now a little later or earlier than we
  354. * remembered. That's fine; we might lose some bytes we could otherwise
  355. * have written, but better to err on the side of obeying people's
  356. * accounting settings. */
  357. log_info(LD_ACCT, "Accounting interval moved by %.02f%%; "
  358. "that's fine.", delta*100);
  359. interval_end_time = start_of_accounting_period_after(now);
  360. } else if (delta >= 0.99) {
  361. /* This is the regular time-moved-forward case; don't be too noisy
  362. * about it or people will complain */
  363. log_info(LD_ACCT, "Accounting interval elapsed; starting a new one");
  364. reset_accounting(now);
  365. } else {
  366. log_warn(LD_ACCT,
  367. "Mismatched accounting interval: moved by %.02f%%. "
  368. "Starting a fresh one.", delta*100);
  369. reset_accounting(now);
  370. }
  371. }
  372. accounting_set_wakeup_time();
  373. }
  374. /** Set expected_bandwidth_usage based on how much we sent/received
  375. * per minute last interval (if we were up for at least 30 minutes),
  376. * or based on our declared bandwidth otherwise. */
  377. static void
  378. update_expected_bandwidth(void)
  379. {
  380. uint64_t expected;
  381. const or_options_t *options= get_options();
  382. uint64_t max_configured = (options->RelayBandwidthRate > 0 ?
  383. options->RelayBandwidthRate :
  384. options->BandwidthRate) * 60;
  385. #define MIN_TIME_FOR_MEASUREMENT (1800)
  386. if (soft_limit_hit_at > interval_start_time && n_bytes_at_soft_limit &&
  387. (soft_limit_hit_at - interval_start_time) > MIN_TIME_FOR_MEASUREMENT) {
  388. /* If we hit our soft limit last time, only count the bytes up to that
  389. * time. This is a better predictor of our actual bandwidth than
  390. * considering the entirety of the last interval, since we likely started
  391. * using bytes very slowly once we hit our soft limit. */
  392. expected = n_bytes_at_soft_limit /
  393. (soft_limit_hit_at - interval_start_time);
  394. expected /= 60;
  395. } else if (n_seconds_active_in_interval >= MIN_TIME_FOR_MEASUREMENT) {
  396. /* Otherwise, we either measured enough time in the last interval but
  397. * never hit our soft limit, or we're using a state file from a Tor that
  398. * doesn't know to store soft-limit info. Just take rate at which
  399. * we were reading/writing in the last interval as our expected rate.
  400. */
  401. uint64_t used = MAX(n_bytes_written_in_interval,
  402. n_bytes_read_in_interval);
  403. expected = used / (n_seconds_active_in_interval / 60);
  404. } else {
  405. /* If we haven't gotten enough data last interval, set 'expected'
  406. * to 0. This will set our wakeup to the start of the interval.
  407. * Next interval, we'll choose our starting time based on how much
  408. * we sent this interval.
  409. */
  410. expected = 0;
  411. }
  412. if (expected > max_configured)
  413. expected = max_configured;
  414. expected_bandwidth_usage = expected;
  415. }
  416. /** Called at the start of a new accounting interval: reset our
  417. * expected bandwidth usage based on what happened last time, set up
  418. * the start and end of the interval, and clear byte/time totals.
  419. */
  420. static void
  421. reset_accounting(time_t now)
  422. {
  423. log_info(LD_ACCT, "Starting new accounting interval.");
  424. update_expected_bandwidth();
  425. interval_start_time = start_of_accounting_period_containing(now);
  426. interval_end_time = start_of_accounting_period_after(interval_start_time);
  427. n_bytes_read_in_interval = 0;
  428. n_bytes_written_in_interval = 0;
  429. n_seconds_active_in_interval = 0;
  430. n_bytes_at_soft_limit = 0;
  431. soft_limit_hit_at = 0;
  432. n_seconds_to_hit_soft_limit = 0;
  433. }
  434. /** Return true iff we should save our bandwidth usage to disk. */
  435. static INLINE int
  436. time_to_record_bandwidth_usage(time_t now)
  437. {
  438. /* Note every 600 sec */
  439. #define NOTE_INTERVAL (600)
  440. /* Or every 20 megabytes */
  441. #define NOTE_BYTES 20*(1024*1024)
  442. static uint64_t last_read_bytes_noted = 0;
  443. static uint64_t last_written_bytes_noted = 0;
  444. static time_t last_time_noted = 0;
  445. if (last_time_noted + NOTE_INTERVAL <= now ||
  446. last_read_bytes_noted + NOTE_BYTES <= n_bytes_read_in_interval ||
  447. last_written_bytes_noted + NOTE_BYTES <= n_bytes_written_in_interval ||
  448. (interval_end_time && interval_end_time <= now)) {
  449. last_time_noted = now;
  450. last_read_bytes_noted = n_bytes_read_in_interval;
  451. last_written_bytes_noted = n_bytes_written_in_interval;
  452. return 1;
  453. }
  454. return 0;
  455. }
  456. /** Invoked once per second. Checks whether it is time to hibernate,
  457. * record bandwidth used, etc. */
  458. void
  459. accounting_run_housekeeping(time_t now)
  460. {
  461. if (now >= interval_end_time) {
  462. configure_accounting(now);
  463. }
  464. if (time_to_record_bandwidth_usage(now)) {
  465. if (accounting_record_bandwidth_usage(now, get_or_state())) {
  466. log_warn(LD_FS, "Couldn't record bandwidth usage to disk.");
  467. }
  468. }
  469. }
  470. /** When we have no idea how fast we are, how long do we assume it will take
  471. * us to exhaust our bandwidth? */
  472. #define GUESS_TIME_TO_USE_BANDWIDTH (24*60*60)
  473. /** Based on our interval and our estimated bandwidth, choose a
  474. * deterministic (but random-ish) time to wake up. */
  475. static void
  476. accounting_set_wakeup_time(void)
  477. {
  478. char digest[DIGEST_LEN];
  479. crypto_digest_t *d_env;
  480. uint64_t time_to_exhaust_bw;
  481. int time_to_consider;
  482. if (! server_identity_key_is_set()) {
  483. if (init_keys() < 0) {
  484. log_err(LD_BUG, "Error initializing keys");
  485. tor_assert(0);
  486. }
  487. }
  488. if (server_identity_key_is_set()) {
  489. char buf[ISO_TIME_LEN+1];
  490. format_iso_time(buf, interval_start_time);
  491. crypto_pk_get_digest(get_server_identity_key(), digest);
  492. d_env = crypto_digest_new();
  493. crypto_digest_add_bytes(d_env, buf, ISO_TIME_LEN);
  494. crypto_digest_add_bytes(d_env, digest, DIGEST_LEN);
  495. crypto_digest_get_digest(d_env, digest, DIGEST_LEN);
  496. crypto_digest_free(d_env);
  497. } else {
  498. crypto_rand(digest, DIGEST_LEN);
  499. }
  500. if (!expected_bandwidth_usage) {
  501. char buf1[ISO_TIME_LEN+1];
  502. char buf2[ISO_TIME_LEN+1];
  503. format_local_iso_time(buf1, interval_start_time);
  504. format_local_iso_time(buf2, interval_end_time);
  505. interval_wakeup_time = interval_start_time;
  506. log_notice(LD_ACCT,
  507. "Configured hibernation. This interval begins at %s "
  508. "and ends at %s. We have no prior estimate for bandwidth, so "
  509. "we will start out awake and hibernate when we exhaust our quota.",
  510. buf1, buf2);
  511. return;
  512. }
  513. time_to_exhaust_bw =
  514. (get_options()->AccountingMax/expected_bandwidth_usage)*60;
  515. if (time_to_exhaust_bw > INT_MAX) {
  516. time_to_exhaust_bw = INT_MAX;
  517. time_to_consider = 0;
  518. } else {
  519. time_to_consider = accounting_get_interval_length() -
  520. (int)time_to_exhaust_bw;
  521. }
  522. if (time_to_consider<=0) {
  523. interval_wakeup_time = interval_start_time;
  524. } else {
  525. /* XXX can we simplify this just by picking a random (non-deterministic)
  526. * time to be up? If we go down and come up, then we pick a new one. Is
  527. * that good enough? -RD */
  528. /* This is not a perfectly unbiased conversion, but it is good enough:
  529. * in the worst case, the first half of the day is 0.06 percent likelier
  530. * to be chosen than the last half. */
  531. interval_wakeup_time = interval_start_time +
  532. (get_uint32(digest) % time_to_consider);
  533. }
  534. {
  535. char buf1[ISO_TIME_LEN+1];
  536. char buf2[ISO_TIME_LEN+1];
  537. char buf3[ISO_TIME_LEN+1];
  538. char buf4[ISO_TIME_LEN+1];
  539. time_t down_time;
  540. if (interval_wakeup_time+time_to_exhaust_bw > TIME_MAX)
  541. down_time = TIME_MAX;
  542. else
  543. down_time = (time_t)(interval_wakeup_time+time_to_exhaust_bw);
  544. if (down_time>interval_end_time)
  545. down_time = interval_end_time;
  546. format_local_iso_time(buf1, interval_start_time);
  547. format_local_iso_time(buf2, interval_wakeup_time);
  548. format_local_iso_time(buf3, down_time);
  549. format_local_iso_time(buf4, interval_end_time);
  550. log_notice(LD_ACCT,
  551. "Configured hibernation. This interval began at %s; "
  552. "the scheduled wake-up time %s %s; "
  553. "we expect%s to exhaust our quota for this interval around %s; "
  554. "the next interval begins at %s (all times local)",
  555. buf1,
  556. time(NULL)<interval_wakeup_time?"is":"was", buf2,
  557. time(NULL)<down_time?"":"ed", buf3,
  558. buf4);
  559. }
  560. }
  561. /* This rounds 0 up to 1000, but that's actually a feature. */
  562. #define ROUND_UP(x) (((x) + 0x3ff) & ~0x3ff)
  563. /** Save all our bandwidth tracking information to disk. Return 0 on
  564. * success, -1 on failure. */
  565. int
  566. accounting_record_bandwidth_usage(time_t now, or_state_t *state)
  567. {
  568. /* Just update the state */
  569. state->AccountingIntervalStart = interval_start_time;
  570. state->AccountingBytesReadInInterval = ROUND_UP(n_bytes_read_in_interval);
  571. state->AccountingBytesWrittenInInterval =
  572. ROUND_UP(n_bytes_written_in_interval);
  573. state->AccountingSecondsActive = n_seconds_active_in_interval;
  574. state->AccountingExpectedUsage = expected_bandwidth_usage;
  575. state->AccountingSecondsToReachSoftLimit = n_seconds_to_hit_soft_limit;
  576. state->AccountingSoftLimitHitAt = soft_limit_hit_at;
  577. state->AccountingBytesAtSoftLimit = n_bytes_at_soft_limit;
  578. or_state_mark_dirty(state,
  579. now+(get_options()->AvoidDiskWrites ? 7200 : 60));
  580. return 0;
  581. }
  582. #undef ROUND_UP
  583. /** Read stored accounting information from disk. Return 0 on success;
  584. * return -1 and change nothing on failure. */
  585. static int
  586. read_bandwidth_usage(void)
  587. {
  588. or_state_t *state = get_or_state();
  589. {
  590. char *fname = get_datadir_fname("bw_accounting");
  591. unlink(fname);
  592. tor_free(fname);
  593. }
  594. if (!state)
  595. return -1;
  596. log_info(LD_ACCT, "Reading bandwidth accounting data from state file");
  597. n_bytes_read_in_interval = state->AccountingBytesReadInInterval;
  598. n_bytes_written_in_interval = state->AccountingBytesWrittenInInterval;
  599. n_seconds_active_in_interval = state->AccountingSecondsActive;
  600. interval_start_time = state->AccountingIntervalStart;
  601. expected_bandwidth_usage = state->AccountingExpectedUsage;
  602. /* Older versions of Tor (before 0.2.2.17-alpha or so) didn't generate these
  603. * fields. If you switch back and forth, you might get an
  604. * AccountingSoftLimitHitAt value from long before the most recent
  605. * interval_start_time. If that's so, then ignore the softlimit-related
  606. * values. */
  607. if (state->AccountingSoftLimitHitAt > interval_start_time) {
  608. soft_limit_hit_at = state->AccountingSoftLimitHitAt;
  609. n_bytes_at_soft_limit = state->AccountingBytesAtSoftLimit;
  610. n_seconds_to_hit_soft_limit = state->AccountingSecondsToReachSoftLimit;
  611. } else {
  612. soft_limit_hit_at = 0;
  613. n_bytes_at_soft_limit = 0;
  614. n_seconds_to_hit_soft_limit = 0;
  615. }
  616. {
  617. char tbuf1[ISO_TIME_LEN+1];
  618. char tbuf2[ISO_TIME_LEN+1];
  619. format_iso_time(tbuf1, state->LastWritten);
  620. format_iso_time(tbuf2, state->AccountingIntervalStart);
  621. log_info(LD_ACCT,
  622. "Successfully read bandwidth accounting info from state written at %s "
  623. "for interval starting at %s. We have been active for %lu seconds in "
  624. "this interval. At the start of the interval, we expected to use "
  625. "about %lu KB per second. ("U64_FORMAT" bytes read so far, "
  626. U64_FORMAT" bytes written so far)",
  627. tbuf1, tbuf2,
  628. (unsigned long)n_seconds_active_in_interval,
  629. (unsigned long)(expected_bandwidth_usage*1024/60),
  630. U64_PRINTF_ARG(n_bytes_read_in_interval),
  631. U64_PRINTF_ARG(n_bytes_written_in_interval));
  632. }
  633. return 0;
  634. }
  635. /** Return true iff we have sent/received all the bytes we are willing
  636. * to send/receive this interval. */
  637. static int
  638. hibernate_hard_limit_reached(void)
  639. {
  640. uint64_t hard_limit = get_options()->AccountingMax;
  641. if (!hard_limit)
  642. return 0;
  643. return n_bytes_read_in_interval >= hard_limit
  644. || n_bytes_written_in_interval >= hard_limit;
  645. }
  646. /** Return true iff we have sent/received almost all the bytes we are willing
  647. * to send/receive this interval. */
  648. static int
  649. hibernate_soft_limit_reached(void)
  650. {
  651. const uint64_t acct_max = get_options()->AccountingMax;
  652. #define SOFT_LIM_PCT (.95)
  653. #define SOFT_LIM_BYTES (500*1024*1024)
  654. #define SOFT_LIM_MINUTES (3*60)
  655. /* The 'soft limit' is a fair bit more complicated now than once it was.
  656. * We want to stop accepting connections when ALL of the following are true:
  657. * - We expect to use up the remaining bytes in under 3 hours
  658. * - We have used up 95% of our bytes.
  659. * - We have less than 500MB of bytes left.
  660. */
  661. uint64_t soft_limit = DBL_TO_U64(U64_TO_DBL(acct_max) * SOFT_LIM_PCT);
  662. if (acct_max > SOFT_LIM_BYTES && acct_max - SOFT_LIM_BYTES > soft_limit) {
  663. soft_limit = acct_max - SOFT_LIM_BYTES;
  664. }
  665. if (expected_bandwidth_usage) {
  666. const uint64_t expected_usage =
  667. expected_bandwidth_usage * SOFT_LIM_MINUTES;
  668. if (acct_max > expected_usage && acct_max - expected_usage > soft_limit)
  669. soft_limit = acct_max - expected_usage;
  670. }
  671. if (!soft_limit)
  672. return 0;
  673. return n_bytes_read_in_interval >= soft_limit
  674. || n_bytes_written_in_interval >= soft_limit;
  675. }
  676. /** Called when we get a SIGINT, or when bandwidth soft limit is
  677. * reached. Puts us into "loose hibernation": we don't accept new
  678. * connections, but we continue handling old ones. */
  679. static void
  680. hibernate_begin(hibernate_state_t new_state, time_t now)
  681. {
  682. const or_options_t *options = get_options();
  683. if (new_state == HIBERNATE_STATE_EXITING &&
  684. hibernate_state != HIBERNATE_STATE_LIVE) {
  685. log_notice(LD_GENERAL,"SIGINT received %s; exiting now.",
  686. hibernate_state == HIBERNATE_STATE_EXITING ?
  687. "a second time" : "while hibernating");
  688. tor_cleanup();
  689. exit(0);
  690. }
  691. if (new_state == HIBERNATE_STATE_LOWBANDWIDTH &&
  692. hibernate_state == HIBERNATE_STATE_LIVE) {
  693. soft_limit_hit_at = now;
  694. n_seconds_to_hit_soft_limit = n_seconds_active_in_interval;
  695. n_bytes_at_soft_limit = MAX(n_bytes_read_in_interval,
  696. n_bytes_written_in_interval);
  697. }
  698. /* close listeners. leave control listener(s). */
  699. connection_mark_all_noncontrol_listeners();
  700. /* XXX kill intro point circs */
  701. /* XXX upload rendezvous service descriptors with no intro points */
  702. if (new_state == HIBERNATE_STATE_EXITING) {
  703. log_notice(LD_GENERAL,"Interrupt: we have stopped accepting new "
  704. "connections, and will shut down in %d seconds. Interrupt "
  705. "again to exit now.", options->ShutdownWaitLength);
  706. shutdown_time = time(NULL) + options->ShutdownWaitLength;
  707. } else { /* soft limit reached */
  708. hibernate_end_time = interval_end_time;
  709. }
  710. hibernate_state = new_state;
  711. accounting_record_bandwidth_usage(now, get_or_state());
  712. or_state_mark_dirty(get_or_state(),
  713. get_options()->AvoidDiskWrites ? now+600 : 0);
  714. }
  715. /** Called when we've been hibernating and our timeout is reached. */
  716. static void
  717. hibernate_end(hibernate_state_t new_state)
  718. {
  719. tor_assert(hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH ||
  720. hibernate_state == HIBERNATE_STATE_DORMANT ||
  721. hibernate_state == HIBERNATE_STATE_INITIAL);
  722. /* listeners will be relaunched in run_scheduled_events() in main.c */
  723. if (hibernate_state != HIBERNATE_STATE_INITIAL)
  724. log_notice(LD_ACCT,"Hibernation period ended. Resuming normal activity.");
  725. hibernate_state = new_state;
  726. hibernate_end_time = 0; /* no longer hibernating */
  727. stats_n_seconds_working = 0; /* reset published uptime */
  728. }
  729. /** A wrapper around hibernate_begin, for when we get SIGINT. */
  730. void
  731. hibernate_begin_shutdown(void)
  732. {
  733. hibernate_begin(HIBERNATE_STATE_EXITING, time(NULL));
  734. }
  735. /** Return true iff we are currently hibernating. */
  736. int
  737. we_are_hibernating(void)
  738. {
  739. return hibernate_state != HIBERNATE_STATE_LIVE;
  740. }
  741. /** If we aren't currently dormant, close all connections and become
  742. * dormant. */
  743. static void
  744. hibernate_go_dormant(time_t now)
  745. {
  746. connection_t *conn;
  747. if (hibernate_state == HIBERNATE_STATE_DORMANT)
  748. return;
  749. else if (hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH)
  750. hibernate_state = HIBERNATE_STATE_DORMANT;
  751. else
  752. hibernate_begin(HIBERNATE_STATE_DORMANT, now);
  753. log_notice(LD_ACCT,"Going dormant. Blowing away remaining connections.");
  754. /* Close all OR/AP/exit conns. Leave dir conns because we still want
  755. * to be able to upload server descriptors so people know we're still
  756. * running, and download directories so we can detect if we're obsolete.
  757. * Leave control conns because we still want to be controllable.
  758. */
  759. while ((conn = connection_get_by_type(CONN_TYPE_OR)) ||
  760. (conn = connection_get_by_type(CONN_TYPE_AP)) ||
  761. (conn = connection_get_by_type(CONN_TYPE_EXIT))) {
  762. if (CONN_IS_EDGE(conn))
  763. connection_edge_end(TO_EDGE_CONN(conn), END_STREAM_REASON_HIBERNATING);
  764. log_info(LD_NET,"Closing conn type %d", conn->type);
  765. if (conn->type == CONN_TYPE_AP) /* send socks failure if needed */
  766. connection_mark_unattached_ap(TO_ENTRY_CONN(conn),
  767. END_STREAM_REASON_HIBERNATING);
  768. else if (conn->type == CONN_TYPE_OR) {
  769. if (TO_OR_CONN(conn)->chan) {
  770. channel_mark_for_close(TLS_CHAN_TO_BASE(TO_OR_CONN(conn)->chan));
  771. } else {
  772. connection_mark_for_close(conn);
  773. }
  774. } else
  775. connection_mark_for_close(conn);
  776. }
  777. if (now < interval_wakeup_time)
  778. hibernate_end_time = interval_wakeup_time;
  779. else
  780. hibernate_end_time = interval_end_time;
  781. accounting_record_bandwidth_usage(now, get_or_state());
  782. or_state_mark_dirty(get_or_state(),
  783. get_options()->AvoidDiskWrites ? now+600 : 0);
  784. }
  785. /** Called when hibernate_end_time has arrived. */
  786. static void
  787. hibernate_end_time_elapsed(time_t now)
  788. {
  789. char buf[ISO_TIME_LEN+1];
  790. /* The interval has ended, or it is wakeup time. Find out which. */
  791. accounting_run_housekeeping(now);
  792. if (interval_wakeup_time <= now) {
  793. /* The interval hasn't changed, but interval_wakeup_time has passed.
  794. * It's time to wake up and start being a server. */
  795. hibernate_end(HIBERNATE_STATE_LIVE);
  796. return;
  797. } else {
  798. /* The interval has changed, and it isn't time to wake up yet. */
  799. hibernate_end_time = interval_wakeup_time;
  800. format_iso_time(buf,interval_wakeup_time);
  801. if (hibernate_state != HIBERNATE_STATE_DORMANT) {
  802. /* We weren't sleeping before; we should sleep now. */
  803. log_notice(LD_ACCT,
  804. "Accounting period ended. Commencing hibernation until "
  805. "%s UTC", buf);
  806. hibernate_go_dormant(now);
  807. } else {
  808. log_notice(LD_ACCT,
  809. "Accounting period ended. This period, we will hibernate"
  810. " until %s UTC",buf);
  811. }
  812. }
  813. }
  814. /** Consider our environment and decide if it's time
  815. * to start/stop hibernating.
  816. */
  817. void
  818. consider_hibernation(time_t now)
  819. {
  820. int accounting_enabled = get_options()->AccountingMax != 0;
  821. char buf[ISO_TIME_LEN+1];
  822. /* If we're in 'exiting' mode, then we just shut down after the interval
  823. * elapses. */
  824. if (hibernate_state == HIBERNATE_STATE_EXITING) {
  825. tor_assert(shutdown_time);
  826. if (shutdown_time <= now) {
  827. log_notice(LD_GENERAL, "Clean shutdown finished. Exiting.");
  828. tor_cleanup();
  829. exit(0);
  830. }
  831. return; /* if exiting soon, don't worry about bandwidth limits */
  832. }
  833. if (hibernate_state == HIBERNATE_STATE_DORMANT) {
  834. /* We've been hibernating because of bandwidth accounting. */
  835. tor_assert(hibernate_end_time);
  836. if (hibernate_end_time > now && accounting_enabled) {
  837. /* If we're hibernating, don't wake up until it's time, regardless of
  838. * whether we're in a new interval. */
  839. return ;
  840. } else {
  841. hibernate_end_time_elapsed(now);
  842. }
  843. }
  844. /* Else, we aren't hibernating. See if it's time to start hibernating, or to
  845. * go dormant. */
  846. if (hibernate_state == HIBERNATE_STATE_LIVE ||
  847. hibernate_state == HIBERNATE_STATE_INITIAL) {
  848. if (hibernate_soft_limit_reached()) {
  849. log_notice(LD_ACCT,
  850. "Bandwidth soft limit reached; commencing hibernation. "
  851. "No new connections will be accepted");
  852. hibernate_begin(HIBERNATE_STATE_LOWBANDWIDTH, now);
  853. } else if (accounting_enabled && now < interval_wakeup_time) {
  854. format_local_iso_time(buf,interval_wakeup_time);
  855. log_notice(LD_ACCT,
  856. "Commencing hibernation. We will wake up at %s local time.",
  857. buf);
  858. hibernate_go_dormant(now);
  859. } else if (hibernate_state == HIBERNATE_STATE_INITIAL) {
  860. hibernate_end(HIBERNATE_STATE_LIVE);
  861. }
  862. }
  863. if (hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH) {
  864. if (!accounting_enabled) {
  865. hibernate_end_time_elapsed(now);
  866. } else if (hibernate_hard_limit_reached()) {
  867. hibernate_go_dormant(now);
  868. } else if (hibernate_end_time <= now) {
  869. /* The hibernation period ended while we were still in lowbandwidth.*/
  870. hibernate_end_time_elapsed(now);
  871. }
  872. }
  873. }
  874. /** Helper function: called when we get a GETINFO request for an
  875. * accounting-related key on the control connection <b>conn</b>. If we can
  876. * answer the request for <b>question</b>, then set *<b>answer</b> to a newly
  877. * allocated string holding the result. Otherwise, set *<b>answer</b> to
  878. * NULL. */
  879. int
  880. getinfo_helper_accounting(control_connection_t *conn,
  881. const char *question, char **answer,
  882. const char **errmsg)
  883. {
  884. (void) conn;
  885. (void) errmsg;
  886. if (!strcmp(question, "accounting/enabled")) {
  887. *answer = tor_strdup(accounting_is_enabled(get_options()) ? "1" : "0");
  888. } else if (!strcmp(question, "accounting/hibernating")) {
  889. if (hibernate_state == HIBERNATE_STATE_DORMANT)
  890. *answer = tor_strdup("hard");
  891. else if (hibernate_state == HIBERNATE_STATE_LOWBANDWIDTH)
  892. *answer = tor_strdup("soft");
  893. else
  894. *answer = tor_strdup("awake");
  895. } else if (!strcmp(question, "accounting/bytes")) {
  896. tor_asprintf(answer, U64_FORMAT" "U64_FORMAT,
  897. U64_PRINTF_ARG(n_bytes_read_in_interval),
  898. U64_PRINTF_ARG(n_bytes_written_in_interval));
  899. } else if (!strcmp(question, "accounting/bytes-left")) {
  900. uint64_t limit = get_options()->AccountingMax;
  901. uint64_t read_left = 0, write_left = 0;
  902. if (n_bytes_read_in_interval < limit)
  903. read_left = limit - n_bytes_read_in_interval;
  904. if (n_bytes_written_in_interval < limit)
  905. write_left = limit - n_bytes_written_in_interval;
  906. tor_asprintf(answer, U64_FORMAT" "U64_FORMAT,
  907. U64_PRINTF_ARG(read_left), U64_PRINTF_ARG(write_left));
  908. } else if (!strcmp(question, "accounting/interval-start")) {
  909. *answer = tor_malloc(ISO_TIME_LEN+1);
  910. format_iso_time(*answer, interval_start_time);
  911. } else if (!strcmp(question, "accounting/interval-wake")) {
  912. *answer = tor_malloc(ISO_TIME_LEN+1);
  913. format_iso_time(*answer, interval_wakeup_time);
  914. } else if (!strcmp(question, "accounting/interval-end")) {
  915. *answer = tor_malloc(ISO_TIME_LEN+1);
  916. format_iso_time(*answer, interval_end_time);
  917. } else {
  918. *answer = NULL;
  919. }
  920. return 0;
  921. }
  922. /**
  923. * Manually change the hibernation state. Private; used only by the unit
  924. * tests.
  925. */
  926. void
  927. hibernate_set_state_for_testing_(hibernate_state_t newstate)
  928. {
  929. hibernate_state = newstate;
  930. }