timers.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /* Copyright (c) 2016-2018, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file timers.c
  5. * \brief Wrapper around William Ahern's fast hierarchical timer wheel
  6. * implementation, to tie it in with a libevent backend.
  7. *
  8. * Only use these functions from the main thread.
  9. *
  10. * The main advantage of tor_timer_t over using libevent's timers is that
  11. * they're way more efficient if we need to have thousands or millions of
  12. * them. For more information, see
  13. * http://www.25thandclement.com/~william/projects/timeout.c.html
  14. *
  15. * Periodic timers are available in the backend, but I've turned them off.
  16. * We can turn them back on if needed.
  17. */
  18. /* Notes:
  19. *
  20. * Having a way to free all timers on shutdown would free people from the
  21. * need to track them. Not sure if that's clever though.
  22. *
  23. * In an ideal world, Libevent would just switch to use this backend, and we
  24. * could throw this file away. But even if Libevent does switch, we'll be
  25. * stuck with legacy libevents for some time.
  26. */
  27. #include "orconfig.h"
  28. #define TOR_TIMERS_PRIVATE
  29. #include "common/compat_libevent.h"
  30. #include "common/timers.h"
  31. #include "lib/intmath/muldiv.h"
  32. #include "lib/log/torlog.h"
  33. #include "lib/log/util_bug.h"
  34. #include "lib/malloc/util_malloc.h"
  35. #include "lib/time/compat_time.h"
  36. struct timeout_cb {
  37. timer_cb_fn_t cb;
  38. void *arg;
  39. };
  40. /*
  41. * These definitions are for timeouts.c and timeouts.h.
  42. */
  43. #ifdef __GNUC__
  44. /* We're not exposing any of the functions outside this file. */
  45. #define TIMEOUT_PUBLIC __attribute__((__unused__)) static
  46. #else
  47. /* We're not exposing any of the functions outside this file. */
  48. #define TIMEOUT_PUBLIC static
  49. #endif /* defined(__GNUC__) */
  50. /* We're not using periodic events. */
  51. #define TIMEOUT_DISABLE_INTERVALS
  52. /* We always know the global_timeouts object, so we don't need each timeout
  53. * to keep a pointer to it. */
  54. #define TIMEOUT_DISABLE_RELATIVE_ACCESS
  55. /* We're providing our own struct timeout_cb. */
  56. #define TIMEOUT_CB_OVERRIDE
  57. /* We're going to support timers that are pretty far out in advance. Making
  58. * this big can be inefficient, but having a significant number of timers
  59. * above TIMEOUT_MAX can also be super-inefficient. Choosing 5 here sets
  60. * timeout_max to 2^30 ticks, or 29 hours with our value for USEC_PER_TICK */
  61. #define WHEEL_NUM 5
  62. #if SIZEOF_VOID_P == 4
  63. /* On 32-bit platforms, we want to override wheel_bit, so that timeout.c will
  64. * use 32-bit math. */
  65. #define WHEEL_BIT 5
  66. #endif
  67. #include "src/ext/timeouts/timeout.c"
  68. static struct timeouts *global_timeouts = NULL;
  69. static struct mainloop_event_t *global_timer_event = NULL;
  70. static monotime_t start_of_time;
  71. /** We need to choose this value carefully. Because we're using timer wheels,
  72. * it actually costs us to have extra resolution we don't use. So for now,
  73. * I'm going to define our resolution as .1 msec, and hope that's good enough.
  74. *
  75. * Note that two of the most popular libevent backends (epoll without timerfd,
  76. * and windows select), simply can't support sub-millisecond resolution,
  77. * do this is optimistic for a lot of users.
  78. */
  79. #define USEC_PER_TICK 100
  80. /** One million microseconds in a second */
  81. #define USEC_PER_SEC 1000000
  82. /** Check at least once every N seconds. */
  83. #define MIN_CHECK_SECONDS 3600
  84. /** Check at least once every N ticks. */
  85. #define MIN_CHECK_TICKS \
  86. (((timeout_t)MIN_CHECK_SECONDS) * (1000000 / USEC_PER_TICK))
  87. /**
  88. * Convert the timeval in <b>tv</b> to a timeout_t, and return it.
  89. *
  90. * The output resolution is set by USEC_PER_TICK. Only use this to convert
  91. * delays to number of ticks; the time represented by 0 is undefined.
  92. */
  93. static timeout_t
  94. tv_to_timeout(const struct timeval *tv)
  95. {
  96. uint64_t usec = tv->tv_usec;
  97. usec += ((uint64_t)USEC_PER_SEC) * tv->tv_sec;
  98. return usec / USEC_PER_TICK;
  99. }
  100. /**
  101. * Convert the timeout in <b>t</b> to a timeval in <b>tv_out</b>. Only
  102. * use this for delays, not absolute times.
  103. */
  104. static void
  105. timeout_to_tv(timeout_t t, struct timeval *tv_out)
  106. {
  107. t *= USEC_PER_TICK;
  108. tv_out->tv_usec = (int)(t % USEC_PER_SEC);
  109. tv_out->tv_sec = (time_t)(t / USEC_PER_SEC);
  110. }
  111. /**
  112. * Update the timer <b>tv</b> to the current time in <b>tv</b>.
  113. */
  114. static void
  115. timer_advance_to_cur_time(const monotime_t *now)
  116. {
  117. timeout_t cur_tick = CEIL_DIV(monotime_diff_usec(&start_of_time, now),
  118. USEC_PER_TICK);
  119. timeouts_update(global_timeouts, cur_tick);
  120. }
  121. /**
  122. * Adjust the time at which the libevent timer should fire based on
  123. * the next-expiring time in <b>global_timeouts</b>
  124. */
  125. static void
  126. libevent_timer_reschedule(void)
  127. {
  128. monotime_t now;
  129. monotime_get(&now);
  130. timer_advance_to_cur_time(&now);
  131. timeout_t delay = timeouts_timeout(global_timeouts);
  132. struct timeval d;
  133. if (delay > MIN_CHECK_TICKS)
  134. delay = MIN_CHECK_TICKS;
  135. timeout_to_tv(delay, &d);
  136. mainloop_event_schedule(global_timer_event, &d);
  137. }
  138. /** Run the callback of every timer that has expired, based on the current
  139. * output of monotime_get(). */
  140. STATIC void
  141. timers_run_pending(void)
  142. {
  143. monotime_t now;
  144. monotime_get(&now);
  145. timer_advance_to_cur_time(&now);
  146. tor_timer_t *t;
  147. while ((t = timeouts_get(global_timeouts))) {
  148. t->callback.cb(t, t->callback.arg, &now);
  149. }
  150. }
  151. /**
  152. * Invoked when the libevent timer has expired: see which tor_timer_t events
  153. * have fired, activate their callbacks, and reschedule the libevent timer.
  154. */
  155. static void
  156. libevent_timer_callback(mainloop_event_t *ev, void *arg)
  157. {
  158. (void)ev;
  159. (void)arg;
  160. timers_run_pending();
  161. libevent_timer_reschedule();
  162. }
  163. /**
  164. * Initialize the timers subsystem. Requires that libevent has already been
  165. * initialized.
  166. */
  167. void
  168. timers_initialize(void)
  169. {
  170. if (BUG(global_timeouts))
  171. return; // LCOV_EXCL_LINE
  172. timeout_error_t err = 0;
  173. global_timeouts = timeouts_open(0, &err);
  174. if (!global_timeouts) {
  175. // LCOV_EXCL_START -- this can only fail on malloc failure.
  176. log_err(LD_BUG, "Unable to open timer backend: %s", strerror(err));
  177. tor_assert(0);
  178. // LCOV_EXCL_STOP
  179. }
  180. monotime_init();
  181. monotime_get(&start_of_time);
  182. mainloop_event_t *timer_event;
  183. timer_event = mainloop_event_new(libevent_timer_callback, NULL);
  184. tor_assert(timer_event);
  185. global_timer_event = timer_event;
  186. libevent_timer_reschedule();
  187. }
  188. /**
  189. * Release all storage held in the timers subsystem. Does not fire timers.
  190. */
  191. void
  192. timers_shutdown(void)
  193. {
  194. if (global_timer_event) {
  195. mainloop_event_free(global_timer_event);
  196. global_timer_event = NULL;
  197. }
  198. if (global_timeouts) {
  199. timeouts_close(global_timeouts);
  200. global_timeouts = NULL;
  201. }
  202. }
  203. /**
  204. * Allocate and return a new timer, with given callback and argument.
  205. */
  206. tor_timer_t *
  207. timer_new(timer_cb_fn_t cb, void *arg)
  208. {
  209. tor_timer_t *t = tor_malloc(sizeof(tor_timer_t));
  210. timeout_init(t, 0);
  211. timer_set_cb(t, cb, arg);
  212. return t;
  213. }
  214. /**
  215. * Release all storage held by <b>t</b>, and unschedule it if was already
  216. * scheduled.
  217. */
  218. void
  219. timer_free_(tor_timer_t *t)
  220. {
  221. if (! t)
  222. return;
  223. timeouts_del(global_timeouts, t);
  224. tor_free(t);
  225. }
  226. /**
  227. * Change the callback and argument associated with a timer <b>t</b>.
  228. */
  229. void
  230. timer_set_cb(tor_timer_t *t, timer_cb_fn_t cb, void *arg)
  231. {
  232. t->callback.cb = cb;
  233. t->callback.arg = arg;
  234. }
  235. /**
  236. * Set *<b>cb_out</b> (if provided) to this timer's callback function,
  237. * and *<b>arg_out</b> (if provided) to this timer's callback argument.
  238. */
  239. void
  240. timer_get_cb(const tor_timer_t *t,
  241. timer_cb_fn_t *cb_out, void **arg_out)
  242. {
  243. if (cb_out)
  244. *cb_out = t->callback.cb;
  245. if (arg_out)
  246. *arg_out = t->callback.arg;
  247. }
  248. /**
  249. * Schedule the timer t to fire at the current time plus a delay of
  250. * <b>delay</b> microseconds. All times are relative to monotime_get().
  251. */
  252. void
  253. timer_schedule(tor_timer_t *t, const struct timeval *tv)
  254. {
  255. const timeout_t delay = tv_to_timeout(tv);
  256. monotime_t now;
  257. monotime_get(&now);
  258. timer_advance_to_cur_time(&now);
  259. /* Take the old timeout value. */
  260. timeout_t to = timeouts_timeout(global_timeouts);
  261. timeouts_add(global_timeouts, t, delay);
  262. /* Should we update the libevent timer? */
  263. if (to <= delay) {
  264. return; /* we're already going to fire before this timer would trigger. */
  265. }
  266. libevent_timer_reschedule();
  267. }
  268. /**
  269. * Cancel the timer <b>t</b> if it is currently scheduled. (It's okay to call
  270. * this on an unscheduled timer.
  271. */
  272. void
  273. timer_disable(tor_timer_t *t)
  274. {
  275. timeouts_del(global_timeouts, t);
  276. /* We don't reschedule the libevent timer here, since it's okay if it fires
  277. * early. */
  278. }