2013-09-23 03:30:46 +02:00
|
|
|
/* Copyright (c) 2003-2004, Roger Dingledine
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
|
|
* Copyright (c) 2007-2015, The Tor Project, Inc. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
#ifndef TOR_COMPAT_THREADS_H
|
|
|
|
#define TOR_COMPAT_THREADS_H
|
|
|
|
|
|
|
|
#include "orconfig.h"
|
|
|
|
#include "torint.h"
|
|
|
|
#include "testsupport.h"
|
|
|
|
|
|
|
|
#if defined(HAVE_PTHREAD_H) && !defined(_WIN32)
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#define USE_WIN32_THREADS
|
|
|
|
#elif defined(HAVE_PTHREAD_H) && defined(HAVE_PTHREAD_CREATE)
|
|
|
|
#define USE_PTHREADS
|
|
|
|
#else
|
|
|
|
#error "No threading system was found"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int spawn_func(void (*func)(void *), void *data);
|
|
|
|
void spawn_exit(void) ATTR_NORETURN;
|
|
|
|
|
|
|
|
/* Because we use threads instead of processes on most platforms (Windows,
|
|
|
|
* Linux, etc), we need locking for them. On platforms with poor thread
|
|
|
|
* support or broken gethostbyname_r, these functions are no-ops. */
|
|
|
|
|
|
|
|
/** A generic lock structure for multithreaded builds. */
|
|
|
|
typedef struct tor_mutex_t {
|
|
|
|
#if defined(USE_WIN32_THREADS)
|
|
|
|
/** Windows-only: on windows, we implement locks with CRITICAL_SECTIONS. */
|
|
|
|
CRITICAL_SECTION mutex;
|
|
|
|
#elif defined(USE_PTHREADS)
|
|
|
|
/** Pthreads-only: with pthreads, we implement locks with
|
|
|
|
* pthread_mutex_t. */
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
#else
|
|
|
|
/** No-threads only: Dummy variable so that tor_mutex_t takes up space. */
|
|
|
|
int _unused;
|
|
|
|
#endif
|
|
|
|
} tor_mutex_t;
|
|
|
|
|
|
|
|
|
|
|
|
tor_mutex_t *tor_mutex_new(void);
|
2013-09-25 17:41:40 +02:00
|
|
|
tor_mutex_t *tor_mutex_new_nonreentrant(void);
|
2013-09-23 03:30:46 +02:00
|
|
|
void tor_mutex_init(tor_mutex_t *m);
|
2013-09-25 17:41:40 +02:00
|
|
|
void tor_mutex_init_nonreentrant(tor_mutex_t *m);
|
2013-09-23 03:30:46 +02:00
|
|
|
void tor_mutex_acquire(tor_mutex_t *m);
|
|
|
|
void tor_mutex_release(tor_mutex_t *m);
|
|
|
|
void tor_mutex_free(tor_mutex_t *m);
|
|
|
|
void tor_mutex_uninit(tor_mutex_t *m);
|
|
|
|
unsigned long tor_get_thread_id(void);
|
|
|
|
void tor_threads_init(void);
|
|
|
|
|
2013-09-25 17:41:40 +02:00
|
|
|
/** Conditions need nonreentrant mutexes with pthreads. */
|
|
|
|
#define tor_mutex_init_for_cond(m) tor_mutex_init_nonreentrant(m)
|
|
|
|
|
2013-09-23 03:30:46 +02:00
|
|
|
void set_main_thread(void);
|
|
|
|
int in_main_thread(void);
|
|
|
|
|
2013-09-23 04:08:41 +02:00
|
|
|
typedef struct tor_cond_t {
|
|
|
|
#ifdef USE_PTHREADS
|
|
|
|
pthread_cond_t cond;
|
|
|
|
#elif defined(USE_WIN32_THREADS)
|
|
|
|
HANDLE event;
|
|
|
|
|
|
|
|
CRITICAL_SECTION lock;
|
|
|
|
int n_waiting;
|
|
|
|
int n_to_wake;
|
|
|
|
int generation;
|
|
|
|
#else
|
|
|
|
#error no known condition implementation.
|
|
|
|
#endif
|
|
|
|
} tor_cond_t;
|
|
|
|
|
2013-09-23 03:30:46 +02:00
|
|
|
tor_cond_t *tor_cond_new(void);
|
|
|
|
void tor_cond_free(tor_cond_t *cond);
|
2013-09-23 07:15:30 +02:00
|
|
|
int tor_cond_init(tor_cond_t *cond);
|
|
|
|
void tor_cond_uninit(tor_cond_t *cond);
|
2013-09-23 04:08:41 +02:00
|
|
|
int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *mutex,
|
|
|
|
const struct timeval *tv);
|
2013-09-23 03:30:46 +02:00
|
|
|
void tor_cond_signal_one(tor_cond_t *cond);
|
|
|
|
void tor_cond_signal_all(tor_cond_t *cond);
|
|
|
|
|
2013-09-25 17:05:27 +02:00
|
|
|
/** Helper type used to manage waking up the main thread while it's in
|
|
|
|
* the libevent main loop. Used by the work queue code. */
|
2013-09-25 02:43:48 +02:00
|
|
|
typedef struct alert_sockets_s {
|
2013-09-25 17:05:27 +02:00
|
|
|
/* XXXX This structure needs a better name. */
|
|
|
|
/** Socket that the main thread should listen for EV_READ events on.
|
|
|
|
* Note that this socket may be a regular fd on a non-Windows platform.
|
|
|
|
*/
|
2013-09-25 02:43:48 +02:00
|
|
|
tor_socket_t read_fd;
|
2013-09-25 17:05:27 +02:00
|
|
|
/** Socket to use when alerting the main thread. */
|
2013-09-25 02:43:48 +02:00
|
|
|
tor_socket_t write_fd;
|
2013-09-25 17:05:27 +02:00
|
|
|
/** Function to alert the main thread */
|
2013-09-25 02:43:48 +02:00
|
|
|
int (*alert_fn)(tor_socket_t write_fd);
|
2013-09-25 17:05:27 +02:00
|
|
|
/** Function to make the main thread no longer alerted. */
|
2013-09-25 02:43:48 +02:00
|
|
|
int (*drain_fn)(tor_socket_t read_fd);
|
|
|
|
} alert_sockets_t;
|
|
|
|
|
2013-09-25 20:31:59 +02:00
|
|
|
/* Flags to disable one or more alert_sockets backends. */
|
|
|
|
#define ASOCKS_NOEVENTFD2 (1u<<0)
|
|
|
|
#define ASOCKS_NOEVENTFD (1u<<1)
|
|
|
|
#define ASOCKS_NOPIPE2 (1u<<2)
|
|
|
|
#define ASOCKS_NOPIPE (1u<<3)
|
|
|
|
#define ASOCKS_NOSOCKETPAIR (1u<<4)
|
|
|
|
|
|
|
|
int alert_sockets_create(alert_sockets_t *socks_out, uint32_t flags);
|
2013-09-25 17:05:27 +02:00
|
|
|
void alert_sockets_close(alert_sockets_t *socks);
|
2013-09-25 02:43:48 +02:00
|
|
|
|
2013-09-23 03:30:46 +02:00
|
|
|
#endif
|