2017-03-15 21:13:17 +01:00
|
|
|
/* Copyright (c) 2009-2017, The Tor Project, Inc. */
|
2009-06-04 07:05:23 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
2012-10-12 18:13:10 +02:00
|
|
|
#ifndef TOR_COMPAT_LIBEVENT_H
|
|
|
|
#define TOR_COMPAT_LIBEVENT_H
|
2009-06-04 07:05:23 +02:00
|
|
|
|
|
|
|
#include "orconfig.h"
|
2015-01-08 18:11:28 +01:00
|
|
|
#include "testsupport.h"
|
2009-06-04 07:05:23 +02:00
|
|
|
|
2016-07-04 16:27:46 +02:00
|
|
|
#include <event2/event.h>
|
|
|
|
|
2009-06-04 07:05:23 +02:00
|
|
|
void configure_libevent_logging(void);
|
|
|
|
void suppress_libevent_log_msg(const char *msg);
|
|
|
|
|
|
|
|
#define tor_event_new event_new
|
|
|
|
#define tor_evtimer_new evtimer_new
|
|
|
|
#define tor_evsignal_new evsignal_new
|
2010-02-19 17:19:33 +01:00
|
|
|
#define tor_evdns_add_server_port(sock, tcp, cb, data) \
|
|
|
|
evdns_add_server_port_with_base(tor_libevent_get_base(), \
|
|
|
|
(sock),(tcp),(cb),(data));
|
2009-06-04 07:05:23 +02:00
|
|
|
|
2017-11-17 18:27:25 +01:00
|
|
|
void tor_event_free_(struct event *ev);
|
2017-12-04 21:09:18 +01:00
|
|
|
#define tor_event_free(ev) \
|
2017-12-07 16:44:04 +01:00
|
|
|
FREE_AND_NULL(struct event, tor_event_free_, (ev))
|
2014-08-29 17:33:05 +02:00
|
|
|
|
2011-11-29 23:06:09 +01:00
|
|
|
typedef struct periodic_timer_t periodic_timer_t;
|
2011-12-07 01:49:20 +01:00
|
|
|
|
2010-06-25 21:31:46 +02:00
|
|
|
periodic_timer_t *periodic_timer_new(struct event_base *base,
|
|
|
|
const struct timeval *tv,
|
|
|
|
void (*cb)(periodic_timer_t *timer, void *data),
|
|
|
|
void *data);
|
2017-11-17 18:27:25 +01:00
|
|
|
void periodic_timer_free_(periodic_timer_t *);
|
2017-12-07 16:52:55 +01:00
|
|
|
#define periodic_timer_free(t) \
|
|
|
|
FREE_AND_NULL(periodic_timer_t, periodic_timer_free_, (t))
|
2010-06-25 21:31:46 +02:00
|
|
|
|
2009-06-04 09:24:53 +02:00
|
|
|
#define tor_event_base_loopexit event_base_loopexit
|
2017-10-20 16:16:00 +02:00
|
|
|
#define tor_event_base_loopbreak event_base_loopbreak
|
2009-06-04 09:24:53 +02:00
|
|
|
|
2012-06-05 06:17:54 +02:00
|
|
|
/** Defines a configuration for using libevent with Tor: passed as an argument
|
|
|
|
* to tor_libevent_initialize() to describe how we want to set up. */
|
2010-09-28 20:01:45 +02:00
|
|
|
typedef struct tor_libevent_cfg {
|
2016-08-02 19:59:47 +02:00
|
|
|
/** How many CPUs should we use (not currently useful). */
|
2010-09-28 20:01:45 +02:00
|
|
|
int num_cpus;
|
2012-06-05 06:17:54 +02:00
|
|
|
/** How many milliseconds should we allow between updating bandwidth limits?
|
2016-08-02 19:59:47 +02:00
|
|
|
* (Not currently useful). */
|
2011-09-08 04:00:48 +02:00
|
|
|
int msec_per_tick;
|
2010-09-28 20:01:45 +02:00
|
|
|
} tor_libevent_cfg;
|
|
|
|
|
|
|
|
void tor_libevent_initialize(tor_libevent_cfg *cfg);
|
2014-01-24 05:54:50 +01:00
|
|
|
MOCK_DECL(struct event_base *, tor_libevent_get_base, (void));
|
2009-06-04 07:05:23 +02:00
|
|
|
const char *tor_libevent_get_method(void);
|
2009-06-04 09:16:26 +02:00
|
|
|
void tor_check_libevent_header_compatibility(void);
|
|
|
|
const char *tor_libevent_get_version_str(void);
|
2013-09-01 18:38:01 +02:00
|
|
|
const char *tor_libevent_get_header_version_str(void);
|
2017-12-11 17:33:54 +01:00
|
|
|
void tor_libevent_free_all(void);
|
2009-06-04 07:05:23 +02:00
|
|
|
|
2014-04-16 20:54:39 +02:00
|
|
|
int tor_init_libevent_rng(void);
|
|
|
|
|
2012-06-15 16:31:34 +02:00
|
|
|
void tor_gettimeofday_cached(struct timeval *tv);
|
|
|
|
void tor_gettimeofday_cache_clear(void);
|
2014-01-09 18:47:24 +01:00
|
|
|
#ifdef TOR_UNIT_TESTS
|
|
|
|
void tor_gettimeofday_cache_set(const struct timeval *tv);
|
2017-05-10 17:00:07 +02:00
|
|
|
void tor_libevent_postfork(void);
|
2014-01-09 18:47:24 +01:00
|
|
|
#endif
|
2012-06-15 16:31:34 +02:00
|
|
|
|
2015-09-15 17:20:44 +02:00
|
|
|
#ifdef COMPAT_LIBEVENT_PRIVATE
|
|
|
|
|
2016-07-04 16:27:46 +02:00
|
|
|
/** Macro: returns the number of a Libevent version as a 4-byte number,
|
|
|
|
with the first three bytes representing the major, minor, and patchlevel
|
|
|
|
respectively of the library. The fourth byte is unused.
|
2015-09-15 17:20:44 +02:00
|
|
|
|
|
|
|
This is equivalent to the format of LIBEVENT_VERSION_NUMBER on Libevent
|
2016-07-04 16:27:46 +02:00
|
|
|
2.0.1 or later. */
|
2015-09-15 17:20:44 +02:00
|
|
|
#define V(major, minor, patch) \
|
|
|
|
(((major) << 24) | ((minor) << 16) | ((patch) << 8))
|
|
|
|
|
|
|
|
STATIC void
|
|
|
|
libevent_logging_callback(int severity, const char *msg);
|
2017-09-15 22:24:44 +02:00
|
|
|
#endif /* defined(COMPAT_LIBEVENT_PRIVATE) */
|
2009-06-12 21:09:09 +02:00
|
|
|
|
2017-09-15 22:24:44 +02:00
|
|
|
#endif /* !defined(TOR_COMPAT_LIBEVENT_H) */
|
2015-10-02 13:13:58 +02:00
|
|
|
|