summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-09-25 14:31:59 -0400
committerNick Mathewson <nickm@torproject.org>2015-01-14 11:05:56 -0500
commitc51f7c23e3af71466f9bd2ae57ae7a2b998ee3e2 (patch)
treeb146849ad5003a3397063482bbca8054b5ce50ef /src/common
parent3868b5d210f8bccbfb88464f62089447cb3330ed (diff)
downloadtor-c51f7c23e3af71466f9bd2ae57ae7a2b998ee3e2.tar.gz
tor-c51f7c23e3af71466f9bd2ae57ae7a2b998ee3e2.zip
Test a little more of compat_threads.c
Diffstat (limited to 'src/common')
-rw-r--r--src/common/compat_threads.c20
-rw-r--r--src/common/compat_threads.h9
-rw-r--r--src/common/workqueue.c4
-rw-r--r--src/common/workqueue.h2
4 files changed, 22 insertions, 13 deletions
diff --git a/src/common/compat_threads.c b/src/common/compat_threads.c
index f2a516a4a3..648eaa2d80 100644
--- a/src/common/compat_threads.c
+++ b/src/common/compat_threads.c
@@ -155,19 +155,18 @@ sock_drain(tor_socket_t fd)
/** Allocate a new set of alert sockets, and set the appropriate function
* pointers, in <b>socks_out</b>. */
int
-alert_sockets_create(alert_sockets_t *socks_out)
+alert_sockets_create(alert_sockets_t *socks_out, uint32_t flags)
{
- tor_socket_t socks[2];
+ tor_socket_t socks[2] = { TOR_INVALID_SOCKET, TOR_INVALID_SOCKET };
#ifdef HAVE_EVENTFD
/* First, we try the Linux eventfd() syscall. This gives a 64-bit counter
* associated with a single file descriptor. */
#if defined(EFD_CLOEXEC) && defined(EFD_NONBLOCK)
- socks[0] = eventfd(0, EFD_CLOEXEC|EFD_NONBLOCK);
-#else
- socks[0] = -1;
+ if (!(flags & ASOCKS_NOEVENTFD2))
+ socks[0] = eventfd(0, EFD_CLOEXEC|EFD_NONBLOCK);
#endif
- if (socks[0] < 0) {
+ if (socks[0] < 0 && !(flags & ASOCKS_NOEVENTFD)) {
socks[0] = eventfd(0,0);
if (socks[0] >= 0) {
if (fcntl(socks[0], F_SETFD, FD_CLOEXEC) < 0 ||
@@ -188,7 +187,8 @@ alert_sockets_create(alert_sockets_t *socks_out)
#ifdef HAVE_PIPE2
/* Now we're going to try pipes. First type the pipe2() syscall, if we
* have it, so we can save some calls... */
- if (pipe2(socks, O_NONBLOCK|O_CLOEXEC) == 0) {
+ if (!(flags & ASOCKS_NOPIPE2) &&
+ pipe2(socks, O_NONBLOCK|O_CLOEXEC) == 0) {
socks_out->read_fd = socks[0];
socks_out->write_fd = socks[1];
socks_out->alert_fn = pipe_alert;
@@ -200,7 +200,8 @@ alert_sockets_create(alert_sockets_t *socks_out)
#ifdef HAVE_PIPE
/* Now try the regular pipe() syscall. Pipes have a bit lower overhead than
* socketpairs, fwict. */
- if (pipe(socks) == 0) {
+ if (!(flags & ASOCKS_NOPIPE) &&
+ pipe(socks) == 0) {
if (fcntl(socks[0], F_SETFD, FD_CLOEXEC) < 0 ||
fcntl(socks[1], F_SETFD, FD_CLOEXEC) < 0 ||
set_socket_nonblocking(socks[0]) < 0 ||
@@ -218,7 +219,8 @@ alert_sockets_create(alert_sockets_t *socks_out)
#endif
/* If nothing else worked, fall back on socketpair(). */
- if (tor_socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == 0) {
+ if (!(flags & ASOCKS_NOSOCKETPAIR) &&
+ tor_socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == 0) {
if (set_socket_nonblocking(socks[0]) < 0 ||
set_socket_nonblocking(socks[1])) {
tor_close_socket(socks[0]);
diff --git a/src/common/compat_threads.h b/src/common/compat_threads.h
index 245df76178..1b59391d3b 100644
--- a/src/common/compat_threads.h
+++ b/src/common/compat_threads.h
@@ -102,7 +102,14 @@ typedef struct alert_sockets_s {
int (*drain_fn)(tor_socket_t read_fd);
} alert_sockets_t;
-int alert_sockets_create(alert_sockets_t *socks_out);
+/* 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);
void alert_sockets_close(alert_sockets_t *socks);
#endif
diff --git a/src/common/workqueue.c b/src/common/workqueue.c
index e07787b404..9293e1f9f0 100644
--- a/src/common/workqueue.c
+++ b/src/common/workqueue.c
@@ -397,12 +397,12 @@ threadpool_get_replyqueue(threadpool_t *tp)
* IO-centric event loop, it needs to get woken up with means other than a
* condition variable. */
replyqueue_t *
-replyqueue_new(void)
+replyqueue_new(uint32_t alertsocks_flags)
{
replyqueue_t *rq;
rq = tor_malloc_zero(sizeof(replyqueue_t));
- if (alert_sockets_create(&rq->alert) < 0) {
+ if (alert_sockets_create(&rq->alert, alertsocks_flags) < 0) {
tor_free(rq);
return NULL;
}
diff --git a/src/common/workqueue.h b/src/common/workqueue.h
index dca947e915..5a6cd80fb0 100644
--- a/src/common/workqueue.h
+++ b/src/common/workqueue.h
@@ -40,7 +40,7 @@ threadpool_t *threadpool_new(int n_threads,
void *arg);
replyqueue_t *threadpool_get_replyqueue(threadpool_t *tp);
-replyqueue_t *replyqueue_new(void);
+replyqueue_t *replyqueue_new(uint32_t alertsocks_flags);
tor_socket_t replyqueue_get_socket(replyqueue_t *rq);
void replyqueue_process(replyqueue_t *queue);