compat_libevent.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  1. /* Copyright (c) 2009-2019, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file compat_libevent.c
  5. * \brief Wrappers and utility functions for Libevent.
  6. */
  7. #include "orconfig.h"
  8. #define COMPAT_LIBEVENT_PRIVATE
  9. #include "lib/evloop/compat_libevent.h"
  10. #include "lib/crypt_ops/crypto_rand.h"
  11. #include "lib/log/log.h"
  12. #include "lib/log/util_bug.h"
  13. #include "lib/string/compat_string.h"
  14. #include <event2/event.h>
  15. #include <event2/thread.h>
  16. #include <string.h>
  17. /** A string which, if it appears in a libevent log, should be ignored. */
  18. static const char *suppress_msg = NULL;
  19. /** Callback function passed to event_set_log() so we can intercept
  20. * log messages from libevent. */
  21. STATIC void
  22. libevent_logging_callback(int severity, const char *msg)
  23. {
  24. char buf[1024];
  25. size_t n;
  26. if (suppress_msg && strstr(msg, suppress_msg))
  27. return;
  28. n = strlcpy(buf, msg, sizeof(buf));
  29. if (n && n < sizeof(buf) && buf[n-1] == '\n') {
  30. buf[n-1] = '\0';
  31. }
  32. switch (severity) {
  33. case _EVENT_LOG_DEBUG:
  34. log_debug(LD_NOCB|LD_NET, "Message from libevent: %s", buf);
  35. break;
  36. case _EVENT_LOG_MSG:
  37. log_info(LD_NOCB|LD_NET, "Message from libevent: %s", buf);
  38. break;
  39. case _EVENT_LOG_WARN:
  40. log_warn(LD_NOCB|LD_GENERAL, "Warning from libevent: %s", buf);
  41. break;
  42. case _EVENT_LOG_ERR:
  43. log_err(LD_NOCB|LD_GENERAL, "Error from libevent: %s", buf);
  44. break;
  45. default:
  46. log_warn(LD_NOCB|LD_GENERAL, "Message [%d] from libevent: %s",
  47. severity, buf);
  48. break;
  49. }
  50. }
  51. /** Set hook to intercept log messages from libevent. */
  52. void
  53. configure_libevent_logging(void)
  54. {
  55. event_set_log_callback(libevent_logging_callback);
  56. }
  57. /** Ignore any libevent log message that contains <b>msg</b>. */
  58. void
  59. suppress_libevent_log_msg(const char *msg)
  60. {
  61. suppress_msg = msg;
  62. }
  63. /* Wrapper for event_free() that tolerates tor_event_free(NULL) */
  64. void
  65. tor_event_free_(struct event *ev)
  66. {
  67. if (ev == NULL)
  68. return;
  69. event_free(ev);
  70. }
  71. /** Global event bases for use by the eventloop threads. */
  72. static tor_thread_t **threads = NULL;
  73. static struct event_base **eventloops = NULL;
  74. static tor_threadlocal_t eventloop_index;
  75. static int num_eventloops = -1;
  76. /**
  77. * @defgroup postloop post-loop event helpers
  78. *
  79. * If we're not careful, Libevent can susceptible to infinite event chains:
  80. * one event can activate another, whose callback activates another, whose
  81. * callback activates another, ad infinitum. While this is happening,
  82. * Libevent won't be checking timeouts, socket-based events, signals, and so
  83. * on.
  84. *
  85. * We solve this problem by marking some events as "post-loop". A post-loop
  86. * event behaves like any ordinary event, but any events that _it_ activates
  87. * cannot run until Libevent has checked for other events at least once.
  88. *
  89. * @{ */
  90. /**
  91. * Events that stop Libevent from running any more events on the current
  92. * iteration of its loop, until it has re-checked for socket events, signal
  93. * events, timeouts, etc.
  94. */
  95. struct event **rescan_eventloop_events = NULL;
  96. /**
  97. * Callback to implement rescan_mainloop_ev: it simply exits the mainloop,
  98. * and relies on Tor to re-enter the mainloop since no error has occurred.
  99. */
  100. static void
  101. rescan_mainloop_cb(evutil_socket_t fd, short events, void *arg)
  102. {
  103. (void)fd;
  104. (void)events;
  105. struct event_base *the_base = arg;
  106. event_base_loopbreak(the_base);
  107. }
  108. /** @} */
  109. struct event_base *
  110. get_eventloop(int index)
  111. {
  112. tor_assert(index >= 0 && index < num_eventloops);
  113. tor_assert(eventloops != NULL);
  114. tor_assert(eventloops[index] != NULL);
  115. return eventloops[index];
  116. }
  117. int
  118. get_local_eventloop_index(void) {
  119. int *index = tor_threadlocal_get(&eventloop_index);
  120. tor_assert(index != NULL);
  121. return *index;
  122. }
  123. int
  124. get_num_eventloops(void)
  125. {
  126. tor_assert(num_eventloops != -1);
  127. return num_eventloops;
  128. }
  129. /* Tell the eventloops to stop soon. */
  130. void
  131. rescan_eventloops(void)
  132. {
  133. tor_assert(rescan_eventloop_events != NULL);
  134. for (int i=0; i<num_eventloops; i++) {
  135. tor_assert(rescan_eventloop_events[i] != NULL);
  136. event_active(rescan_eventloop_events[i], EV_READ, 1);
  137. }
  138. }
  139. /* This is what passes for version detection on OSX. We set
  140. * MACOSX_KQUEUE_IS_BROKEN to true iff we're on a version of OSX before
  141. * 10.4.0 (aka 1040). */
  142. #ifdef __APPLE__
  143. #ifdef __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__
  144. #define MACOSX_KQUEUE_IS_BROKEN \
  145. (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1040)
  146. #else
  147. #define MACOSX_KQUEUE_IS_BROKEN 0
  148. #endif /* defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) */
  149. #endif /* defined(__APPLE__) */
  150. /** Initialize the threadlocals. Must be run before libevent is initialized. */
  151. void
  152. tor_evloop_init_threadlocals(void)
  153. {
  154. tor_assert(tor_threadlocal_init(&eventloop_index) == 0);
  155. }
  156. /** Destroy the threadlocals. Must be run after tor_libevent_free_all. */
  157. void
  158. tor_evloop_destroy_threadlocals(void)
  159. {
  160. tor_threadlocal_destroy(&eventloop_index);
  161. }
  162. /** Initialize the current thread. */
  163. static void
  164. init_eventloop_thread(int index)
  165. {
  166. tor_assert(index >= 0 && index < num_eventloops);
  167. tor_assert(tor_threadlocal_get(&eventloop_index) == NULL);
  168. int* this_thread_index = tor_malloc(sizeof(int));
  169. *this_thread_index = index;
  170. tor_threadlocal_set(&eventloop_index, (void *)this_thread_index);
  171. }
  172. /* Destory the current thread. */
  173. static void
  174. destroy_eventloop_thread(void)
  175. {
  176. int *this_thread_index = (int *)tor_threadlocal_get(&eventloop_index);
  177. if (this_thread_index != NULL) {
  178. tor_threadlocal_set(&eventloop_index, NULL);
  179. tor_free(this_thread_index);
  180. }
  181. }
  182. struct thread_data {
  183. void (*func)(void);
  184. int index;
  185. };
  186. static void
  187. thread_wrapper(void *data_void)
  188. {
  189. tor_assert(data_void != NULL);
  190. struct thread_data *data = (struct thread_data *)data_void;
  191. void (*func)(void) = data->func;
  192. int index = data->index;
  193. tor_free(data_void);
  194. init_eventloop_thread(index);
  195. func();
  196. destroy_eventloop_thread();
  197. }
  198. /* Start the eventloop threads and make them run 'func'. Threads will
  199. be started using 'spawn_fn'. */
  200. void
  201. start_eventloop_threads(void (*func)(void),
  202. tor_thread_t *(*spawn_fn)(void (*func)(void *),
  203. void *data))
  204. {
  205. // the first thread (i==0) should already have been initialized
  206. for (int i=1; i<num_eventloops; i++) {
  207. struct thread_data *data = tor_malloc(sizeof(struct thread_data));
  208. data->func = func;
  209. data->index = i;
  210. tor_thread_t *thread = spawn_fn(thread_wrapper, (void *)data);
  211. tor_assert(thread != NULL);
  212. threads[i] = thread;
  213. }
  214. }
  215. /* Wait for the eventloop threads to finish. */
  216. void
  217. join_eventloop_threads(void)
  218. {
  219. for (int i=1; i<num_eventloops; i++) {
  220. if (threads[i] != NULL) {
  221. tor_assert(join_thread(threads[i]) == 0);
  222. free_thread(threads[i]);
  223. threads[i] = NULL;
  224. }
  225. }
  226. }
  227. /** Initialize the Libevent library and set up the event base. */
  228. void
  229. tor_libevent_initialize(tor_libevent_cfg *torcfg,
  230. int num_additional_eventloops)
  231. {
  232. /* some paths below don't use torcfg, so avoid unused variable warnings */
  233. (void)torcfg;
  234. tor_assert(num_eventloops == -1);
  235. num_eventloops = num_additional_eventloops+1;
  236. eventloops = tor_malloc_zero(num_eventloops*sizeof(struct event_base *));
  237. threads = tor_malloc_zero(num_eventloops*sizeof(tor_thread_t *));
  238. rescan_eventloop_events = tor_malloc_zero(num_eventloops*sizeof(tor_thread_t *));
  239. /* This main thread has no tor_thread_t, so we set it to NULL. Should already
  240. be NULL from tor_malloc_zero, but we do this explicitly anyways. */
  241. threads[0] = NULL;
  242. int libevent_started_correctly = 1;
  243. {
  244. int attempts = 0;
  245. struct event_config *cfg;
  246. tor_assert(evthread_use_pthreads() == 0);
  247. ++attempts;
  248. cfg = event_config_new();
  249. tor_assert(cfg);
  250. if (torcfg->num_cpus > 0)
  251. event_config_set_num_cpus_hint(cfg, torcfg->num_cpus);
  252. /* We can enable changelist support with epoll, since we don't give
  253. * Libevent any dup'd fds. This lets us avoid some syscalls. */
  254. event_config_set_flag(cfg, EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST);
  255. for (int i=0; i<num_eventloops; i++) {
  256. eventloops[i] = event_base_new_with_config(cfg);
  257. rescan_eventloop_events[i] = event_new(eventloops[i], -1, 0,
  258. rescan_mainloop_cb,
  259. eventloops[i]);
  260. libevent_started_correctly = (libevent_started_correctly &&
  261. eventloops[i] != NULL &&
  262. rescan_eventloop_events[i] != NULL);
  263. }
  264. event_config_free(cfg);
  265. }
  266. if (libevent_started_correctly == 0) {
  267. /* LCOV_EXCL_START */
  268. log_err(LD_GENERAL, "Unable to initialize Libevent: cannot continue.");
  269. exit(1); // exit ok: libevent is broken.
  270. /* LCOV_EXCL_STOP */
  271. }
  272. /* Initialize this main thread. */
  273. init_eventloop_thread(0);
  274. log_info(LD_GENERAL,
  275. "Initialized libevent version %s using method %s. Good.",
  276. event_get_version(), tor_libevent_get_method());
  277. }
  278. /**
  279. * Return true iff the libevent module has been successfully initialized,
  280. * and not subsequently shut down.
  281. **/
  282. bool
  283. tor_libevent_is_initialized(void)
  284. {
  285. return num_eventloops != -1;
  286. }
  287. /** Return the current Libevent event base that we're set up to use. */
  288. MOCK_IMPL(struct event_base *,
  289. tor_libevent_get_base, (void))
  290. {
  291. int *index = tor_threadlocal_get(&eventloop_index);
  292. tor_assert(index != NULL);
  293. struct event_base *event_base = eventloops[*index];
  294. tor_assert(event_base != NULL);
  295. return event_base;
  296. }
  297. /** Return the name of the Libevent backend we're using. */
  298. const char *
  299. tor_libevent_get_method(void)
  300. {
  301. struct event_base *event_base = tor_libevent_get_base();
  302. return event_base_get_method(event_base);
  303. }
  304. /** Return a string representation of the version of the currently running
  305. * version of Libevent. */
  306. const char *
  307. tor_libevent_get_version_str(void)
  308. {
  309. return event_get_version();
  310. }
  311. /** Return a string representation of the version of Libevent that was used
  312. * at compilation time. */
  313. const char *
  314. tor_libevent_get_header_version_str(void)
  315. {
  316. return LIBEVENT_VERSION;
  317. }
  318. /** Represents a timer that's run every N microseconds by Libevent. */
  319. struct periodic_timer_t {
  320. /** Underlying event used to implement this periodic event. */
  321. struct event *ev;
  322. /** The callback we'll be invoking whenever the event triggers */
  323. void (*cb)(struct periodic_timer_t *, void *);
  324. /** User-supplied data for the callback */
  325. void *data;
  326. };
  327. /** Libevent callback to implement a periodic event. */
  328. static void
  329. periodic_timer_cb(evutil_socket_t fd, short what, void *arg)
  330. {
  331. periodic_timer_t *timer = arg;
  332. (void) what;
  333. (void) fd;
  334. timer->cb(timer, timer->data);
  335. }
  336. /** Create and schedule a new timer that will run every <b>tv</b> in
  337. * the event loop of <b>base</b>. When the timer fires, it will
  338. * run the timer in <b>cb</b> with the user-supplied data in <b>data</b>. */
  339. periodic_timer_t *
  340. periodic_timer_new(struct event_base *base,
  341. const struct timeval *tv,
  342. void (*cb)(periodic_timer_t *timer, void *data),
  343. void *data)
  344. {
  345. periodic_timer_t *timer;
  346. tor_assert(base);
  347. tor_assert(tv);
  348. tor_assert(cb);
  349. timer = tor_malloc_zero(sizeof(periodic_timer_t));
  350. if (!(timer->ev = tor_event_new(base, -1, EV_PERSIST,
  351. periodic_timer_cb, timer))) {
  352. tor_free(timer);
  353. return NULL;
  354. }
  355. timer->cb = cb;
  356. timer->data = data;
  357. periodic_timer_launch(timer, tv);
  358. return timer;
  359. }
  360. /**
  361. * Launch the timer <b>timer</b> to run at <b>tv</b> from now, and every
  362. * <b>tv</b> thereafter.
  363. *
  364. * If the timer is already enabled, this function does nothing.
  365. */
  366. void
  367. periodic_timer_launch(periodic_timer_t *timer, const struct timeval *tv)
  368. {
  369. tor_assert(timer);
  370. if (event_pending(timer->ev, EV_TIMEOUT, NULL))
  371. return;
  372. event_add(timer->ev, tv);
  373. }
  374. /**
  375. * Disable the provided <b>timer</b>, but do not free it.
  376. *
  377. * You can reenable the same timer later with periodic_timer_launch.
  378. *
  379. * If the timer is already disabled, this function does nothing.
  380. */
  381. void
  382. periodic_timer_disable(periodic_timer_t *timer)
  383. {
  384. tor_assert(timer);
  385. (void) event_del(timer->ev);
  386. }
  387. /** Stop and free a periodic timer */
  388. void
  389. periodic_timer_free_(periodic_timer_t *timer)
  390. {
  391. if (!timer)
  392. return;
  393. tor_event_free(timer->ev);
  394. tor_free(timer);
  395. }
  396. /**
  397. * Type used to represent events that run directly from the main loop,
  398. * either because they are activated from elsewhere in the code, or
  399. * because they have a simple timeout.
  400. *
  401. * We use this type to avoid exposing Libevent's API throughout the rest
  402. * of the codebase.
  403. *
  404. * This type can't be used for all events: it doesn't handle events that
  405. * are triggered by signals or by sockets.
  406. */
  407. struct mainloop_event_t {
  408. struct event *ev;
  409. void (*cb)(mainloop_event_t *, void *);
  410. void *userdata;
  411. };
  412. /**
  413. * Internal: Implements mainloop event using a libevent event.
  414. */
  415. static void
  416. mainloop_event_cb(evutil_socket_t fd, short what, void *arg)
  417. {
  418. (void)fd;
  419. (void)what;
  420. mainloop_event_t *mev = arg;
  421. mev->cb(mev, mev->userdata);
  422. }
  423. /**
  424. * As mainloop_event_cb, but implements a post-loop event.
  425. */
  426. static void
  427. mainloop_event_postloop_cb(evutil_socket_t fd, short what, void *arg)
  428. {
  429. (void)fd;
  430. (void)what;
  431. /* Note that if rescan_mainloop_ev is already activated,
  432. * event_active() will do nothing: only the first post-loop event that
  433. * happens each time through the event loop will cause it to be
  434. * activated.
  435. *
  436. * Because event_active() puts events on a FIFO queue, every event
  437. * that is made active _after_ rescan_mainloop_ev will get its
  438. * callback run after rescan_mainloop_cb is called -- that is, on the
  439. * next iteration of the loop.
  440. */
  441. int *index = tor_threadlocal_get(&eventloop_index);
  442. tor_assert(index != NULL);
  443. struct event *rescan_event = rescan_eventloop_events[*index];
  444. tor_assert(rescan_event != NULL);
  445. event_active(rescan_event, EV_READ, 1);
  446. mainloop_event_t *mev = arg;
  447. mev->cb(mev, mev->userdata);
  448. }
  449. /**
  450. * Helper for mainloop_event_new() and mainloop_event_postloop_new().
  451. */
  452. static mainloop_event_t *
  453. mainloop_event_new_impl(int postloop,
  454. void (*cb)(mainloop_event_t *, void *),
  455. void *userdata)
  456. {
  457. tor_assert(cb);
  458. struct event_base *base = tor_libevent_get_base();
  459. mainloop_event_t *mev = tor_malloc_zero(sizeof(mainloop_event_t));
  460. mev->ev = tor_event_new(base, -1, 0,
  461. postloop ? mainloop_event_postloop_cb : mainloop_event_cb,
  462. mev);
  463. tor_assert(mev->ev);
  464. mev->cb = cb;
  465. mev->userdata = userdata;
  466. return mev;
  467. }
  468. /**
  469. * Create and return a new mainloop_event_t to run the function <b>cb</b>.
  470. *
  471. * When run, the callback function will be passed the mainloop_event_t
  472. * and <b>userdata</b> as its arguments. The <b>userdata</b> pointer
  473. * must remain valid for as long as the mainloop_event_t event exists:
  474. * it is your responsibility to free it.
  475. *
  476. * The event is not scheduled by default: Use mainloop_event_activate()
  477. * or mainloop_event_schedule() to make it run.
  478. */
  479. mainloop_event_t *
  480. mainloop_event_new(void (*cb)(mainloop_event_t *, void *),
  481. void *userdata)
  482. {
  483. return mainloop_event_new_impl(0, cb, userdata);
  484. }
  485. /**
  486. * As mainloop_event_new(), but create a post-loop event.
  487. *
  488. * A post-loop event behaves like any ordinary event, but any events
  489. * that _it_ activates cannot run until Libevent has checked for other
  490. * events at least once.
  491. */
  492. mainloop_event_t *
  493. mainloop_event_postloop_new(void (*cb)(mainloop_event_t *, void *),
  494. void *userdata)
  495. {
  496. return mainloop_event_new_impl(1, cb, userdata);
  497. }
  498. /**
  499. * Schedule <b>event</b> to run in the main loop, immediately. If it is
  500. * not scheduled, it will run anyway. If it is already scheduled to run
  501. * later, it will run now instead. This function will have no effect if
  502. * the event is already scheduled to run.
  503. *
  504. * This function may only be called from the main thread.
  505. */
  506. void
  507. mainloop_event_activate(mainloop_event_t *event)
  508. {
  509. tor_assert(event);
  510. event_active(event->ev, EV_READ, 1);
  511. }
  512. /** Schedule <b>event</b> to run in the main loop, after a delay of <b>tv</b>.
  513. *
  514. * If the event is scheduled for a different time, cancel it and run
  515. * after this delay instead. If the event is currently pending to run
  516. * <em>now</b>, has no effect.
  517. *
  518. * Do not call this function with <b>tv</b> == NULL -- use
  519. * mainloop_event_activate() instead.
  520. *
  521. * This function may only be called from the main thread.
  522. */
  523. int
  524. mainloop_event_schedule(mainloop_event_t *event, const struct timeval *tv)
  525. {
  526. tor_assert(event);
  527. if (BUG(tv == NULL)) {
  528. // LCOV_EXCL_START
  529. mainloop_event_activate(event);
  530. return 0;
  531. // LCOV_EXCL_STOP
  532. }
  533. return event_add(event->ev, tv);
  534. }
  535. /** Cancel <b>event</b> if it is currently active or pending. (Do nothing if
  536. * the event is not currently active or pending.) */
  537. void
  538. mainloop_event_cancel(mainloop_event_t *event)
  539. {
  540. if (!event)
  541. return;
  542. (void) event_del(event->ev);
  543. }
  544. /** Cancel <b>event</b> and release all storage associated with it. */
  545. void
  546. mainloop_event_free_(mainloop_event_t *event)
  547. {
  548. if (!event)
  549. return;
  550. tor_event_free(event->ev);
  551. memset(event, 0xb8, sizeof(*event));
  552. tor_free(event);
  553. }
  554. int
  555. tor_init_libevent_rng(void)
  556. {
  557. int rv = 0;
  558. char buf[256];
  559. if (evutil_secure_rng_init() < 0) {
  560. rv = -1;
  561. }
  562. crypto_rand(buf, 32);
  563. #ifdef HAVE_EVUTIL_SECURE_RNG_ADD_BYTES
  564. evutil_secure_rng_add_bytes(buf, 32);
  565. #endif
  566. evutil_secure_rng_get_bytes(buf, sizeof(buf));
  567. return rv;
  568. }
  569. /**
  570. * Un-initialize libevent in preparation for an exit
  571. */
  572. void
  573. tor_libevent_free_all(void)
  574. {
  575. /* Make sure all eventloop threads have stopped. */
  576. join_eventloop_threads();
  577. /* Destroy this main thread. Other eventloop threads should already have
  578. called this locally. */
  579. destroy_eventloop_thread();
  580. /* Destroy the rescan events since we own them. */
  581. for (int i=0; i<num_eventloops; i++) {
  582. event_free(rescan_eventloop_events[i]);
  583. rescan_eventloop_events[i] = NULL;
  584. }
  585. /* Destory the event bases since we own them. */
  586. for (int i=0; i<num_eventloops; i++) {
  587. event_base_free(eventloops[i]);
  588. eventloops[i] = NULL;
  589. }
  590. tor_free(eventloops);
  591. tor_free(threads);
  592. tor_free(rescan_eventloop_events);
  593. num_eventloops = -1;
  594. }
  595. /**
  596. * Run the event loop for the provided event_base, handling events until
  597. * something stops it. If <b>once</b> is set, then just poll-and-run
  598. * once, then exit. Return 0 on success, -1 if an error occurred, or 1
  599. * if we exited because no events were pending or active.
  600. *
  601. * This isn't reentrant or multithreaded.
  602. */
  603. int
  604. tor_libevent_run_event_loop(struct event_base *base, int once)
  605. {
  606. const int flags = once ? EVLOOP_ONCE : 0;
  607. return event_base_loop(base, flags);
  608. }
  609. /** Tell the event loop to exit after <b>delay</b>. If <b>delay</b> is NULL,
  610. * instead exit after we're done running the currently active events. */
  611. void
  612. tor_libevent_exit_loop_after_delay(struct event_base *base,
  613. const struct timeval *delay)
  614. {
  615. event_base_loopexit(base, delay);
  616. }
  617. /** Tell the event loop to exit after running whichever callback is currently
  618. * active. */
  619. void
  620. tor_libevent_exit_loop_after_callback(struct event_base *base)
  621. {
  622. event_base_loopbreak(base);
  623. }
  624. #if defined(TOR_UNIT_TESTS)
  625. /** For testing: called post-fork to make libevent reinitialize
  626. * kernel structures. */
  627. void
  628. tor_libevent_postfork(void)
  629. {
  630. int r = event_reinit(tor_libevent_get_base());
  631. tor_assert(r == 0);
  632. }
  633. #endif /* defined(TOR_UNIT_TESTS) */