2015-01-02 20:27:39 +01:00
|
|
|
/* Copyright (c) 2009-2015, 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
|
|
|
|
2009-06-04 09:16:26 +02:00
|
|
|
struct event;
|
|
|
|
struct event_base;
|
2009-07-31 17:11:45 +02:00
|
|
|
#ifdef USE_BUFFEREVENTS
|
|
|
|
struct bufferevent;
|
2011-08-24 23:09:56 +02:00
|
|
|
struct ev_token_bucket_cfg;
|
|
|
|
struct bufferevent_rate_limit_group;
|
2009-07-31 17:11:45 +02:00
|
|
|
#endif
|
2009-06-04 09:16:26 +02:00
|
|
|
|
2009-06-04 07:05:23 +02:00
|
|
|
#ifdef HAVE_EVENT2_EVENT_H
|
2009-06-04 09:16:26 +02:00
|
|
|
#include <event2/util.h>
|
2011-05-30 21:21:06 +02:00
|
|
|
#elif !defined(EVUTIL_SOCKET_DEFINED)
|
2011-05-23 06:17:48 +02:00
|
|
|
#define EVUTIL_SOCKET_DEFINED
|
2009-06-04 07:05:23 +02:00
|
|
|
#define evutil_socket_t int
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void configure_libevent_logging(void);
|
|
|
|
void suppress_libevent_log_msg(const char *msg);
|
|
|
|
|
|
|
|
#ifdef HAVE_EVENT2_EVENT_H
|
|
|
|
#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
|
|
|
#else
|
|
|
|
struct event *tor_event_new(struct event_base * base, evutil_socket_t sock,
|
|
|
|
short what, void (*cb)(evutil_socket_t, short, void *), void *arg);
|
|
|
|
struct event *tor_evtimer_new(struct event_base * base,
|
|
|
|
void (*cb)(evutil_socket_t, short, void *), void *arg);
|
|
|
|
struct event *tor_evsignal_new(struct event_base * base, int sig,
|
|
|
|
void (*cb)(evutil_socket_t, short, void *), void *arg);
|
2010-02-19 17:19:33 +01:00
|
|
|
#define tor_evdns_add_server_port evdns_add_server_port
|
2009-06-04 07:05:23 +02:00
|
|
|
#endif
|
|
|
|
|
2014-08-29 17:33:05 +02:00
|
|
|
void tor_event_free(struct event *ev);
|
|
|
|
|
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);
|
|
|
|
void periodic_timer_free(periodic_timer_t *);
|
|
|
|
|
2009-06-04 09:24:53 +02:00
|
|
|
#define tor_event_base_loopexit event_base_loopexit
|
|
|
|
|
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 {
|
2012-06-05 06:17:54 +02:00
|
|
|
/** Flag: if true, disable IOCP (assuming that it could be enabled). */
|
2010-09-28 20:01:45 +02:00
|
|
|
int disable_iocp;
|
2012-06-05 06:17:54 +02:00
|
|
|
/** How many CPUs should we use (relevant only with IOCP). */
|
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?
|
|
|
|
* (relevant only with bufferevents). */
|
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);
|
2009-06-04 07:05:23 +02:00
|
|
|
|
2010-02-22 19:59:34 +01:00
|
|
|
#ifdef USE_BUFFEREVENTS
|
|
|
|
const struct timeval *tor_libevent_get_one_tick_timeout(void);
|
2011-08-18 21:08:49 +02:00
|
|
|
int tor_libevent_using_iocp_bufferevents(void);
|
2011-08-24 23:09:56 +02:00
|
|
|
int tor_set_bufferevent_rate_limit(struct bufferevent *bev,
|
|
|
|
struct ev_token_bucket_cfg *cfg);
|
|
|
|
int tor_add_bufferevent_to_rate_limit_group(struct bufferevent *bev,
|
|
|
|
struct bufferevent_rate_limit_group *g);
|
2010-02-22 19:59:34 +01:00
|
|
|
#endif
|
|
|
|
|
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);
|
|
|
|
#endif
|
2014-02-26 15:51:30 +01:00
|
|
|
void tor_gettimeofday_cached_monotonic(struct timeval *tv);
|
2012-06-15 16:31:34 +02:00
|
|
|
|
2015-09-15 17:20:44 +02:00
|
|
|
#ifdef COMPAT_LIBEVENT_PRIVATE
|
|
|
|
/** A number representing a version of Libevent.
|
|
|
|
|
|
|
|
This is a 4-byte number, with the first three bytes representing the
|
|
|
|
major, minor, and patchlevel respectively of the library. The fourth
|
|
|
|
byte is unused.
|
|
|
|
|
|
|
|
This is equivalent to the format of LIBEVENT_VERSION_NUMBER on Libevent
|
|
|
|
2.0.1 or later. For versions of Libevent before 1.4.0, which followed the
|
|
|
|
format of "1.0, 1.0a, 1.0b", we define 1.0 to be equivalent to 1.0.0, 1.0a
|
|
|
|
to be equivalent to 1.0.1, and so on.
|
|
|
|
*/
|
|
|
|
typedef uint32_t le_version_t;
|
|
|
|
|
|
|
|
/** @{ */
|
|
|
|
/** Macros: returns the number of a libevent version as a le_version_t */
|
|
|
|
#define V(major, minor, patch) \
|
|
|
|
(((major) << 24) | ((minor) << 16) | ((patch) << 8))
|
|
|
|
#define V_OLD(major, minor, patch) \
|
|
|
|
V((major), (minor), (patch)-'a'+1)
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/** Represetns a version of libevent so old we can't figure out what version
|
|
|
|
* it is. */
|
|
|
|
#define LE_OLD V(0,0,0)
|
|
|
|
/** Represents a version of libevent so weird we can't figure out what version
|
|
|
|
* it is. */
|
|
|
|
#define LE_OTHER V(0,0,99)
|
|
|
|
|
|
|
|
STATIC void
|
|
|
|
libevent_logging_callback(int severity, const char *msg);
|
|
|
|
STATIC le_version_t
|
|
|
|
tor_decode_libevent_version(const char *v);
|
|
|
|
STATIC int
|
|
|
|
le_versions_compatibility(le_version_t v);
|
2009-06-04 07:05:23 +02:00
|
|
|
#endif
|
2009-06-12 21:09:09 +02:00
|
|
|
|
2015-09-15 17:20:44 +02:00
|
|
|
#endif
|
2015-10-02 13:13:58 +02:00
|
|
|
|