blob: 4e11f74970ab633acdb3cf08ddb6330169244988 [file] [log] [blame]
Christopher Wileye8679812015-07-01 13:36:18 -07001/*
2 * Copyright 2009-2012 Niels Provos and Nick Mathewson
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26#include "event2/event-config.h"
Narayan Kamathfc74cb42017-09-13 12:53:52 +010027#include "evconfig-private.h"
Christopher Wileye8679812015-07-01 13:36:18 -070028
Narayan Kamathfc74cb42017-09-13 12:53:52 +010029/* With glibc we need to define _GNU_SOURCE to get PTHREAD_MUTEX_RECURSIVE.
30 * This comes from evconfig-private.h
31 */
Christopher Wileye8679812015-07-01 13:36:18 -070032#include <pthread.h>
33
34struct event_base;
35#include "event2/thread.h"
36
37#include <stdlib.h>
38#include <string.h>
39#include "mm-internal.h"
40#include "evthread-internal.h"
41
42static pthread_mutexattr_t attr_recursive;
43
44static void *
45evthread_posix_lock_alloc(unsigned locktype)
46{
47 pthread_mutexattr_t *attr = NULL;
48 pthread_mutex_t *lock = mm_malloc(sizeof(pthread_mutex_t));
49 if (!lock)
50 return NULL;
51 if (locktype & EVTHREAD_LOCKTYPE_RECURSIVE)
52 attr = &attr_recursive;
53 if (pthread_mutex_init(lock, attr)) {
54 mm_free(lock);
55 return NULL;
56 }
57 return lock;
58}
59
60static void
Narayan Kamathfc74cb42017-09-13 12:53:52 +010061evthread_posix_lock_free(void *lock_, unsigned locktype)
Christopher Wileye8679812015-07-01 13:36:18 -070062{
Narayan Kamathfc74cb42017-09-13 12:53:52 +010063 pthread_mutex_t *lock = lock_;
Christopher Wileye8679812015-07-01 13:36:18 -070064 pthread_mutex_destroy(lock);
65 mm_free(lock);
66}
67
68static int
Narayan Kamathfc74cb42017-09-13 12:53:52 +010069evthread_posix_lock(unsigned mode, void *lock_)
Christopher Wileye8679812015-07-01 13:36:18 -070070{
Narayan Kamathfc74cb42017-09-13 12:53:52 +010071 pthread_mutex_t *lock = lock_;
Christopher Wileye8679812015-07-01 13:36:18 -070072 if (mode & EVTHREAD_TRY)
73 return pthread_mutex_trylock(lock);
74 else
75 return pthread_mutex_lock(lock);
76}
77
78static int
Narayan Kamathfc74cb42017-09-13 12:53:52 +010079evthread_posix_unlock(unsigned mode, void *lock_)
Christopher Wileye8679812015-07-01 13:36:18 -070080{
Narayan Kamathfc74cb42017-09-13 12:53:52 +010081 pthread_mutex_t *lock = lock_;
Christopher Wileye8679812015-07-01 13:36:18 -070082 return pthread_mutex_unlock(lock);
83}
84
85static unsigned long
86evthread_posix_get_id(void)
87{
88 union {
89 pthread_t thr;
Narayan Kamathfc74cb42017-09-13 12:53:52 +010090#if EVENT__SIZEOF_PTHREAD_T > EVENT__SIZEOF_LONG
Christopher Wileye8679812015-07-01 13:36:18 -070091 ev_uint64_t id;
92#else
93 unsigned long id;
94#endif
95 } r;
Narayan Kamathfc74cb42017-09-13 12:53:52 +010096#if EVENT__SIZEOF_PTHREAD_T < EVENT__SIZEOF_LONG
Christopher Wileye8679812015-07-01 13:36:18 -070097 memset(&r, 0, sizeof(r));
98#endif
99 r.thr = pthread_self();
100 return (unsigned long)r.id;
101}
102
103static void *
104evthread_posix_cond_alloc(unsigned condflags)
105{
106 pthread_cond_t *cond = mm_malloc(sizeof(pthread_cond_t));
107 if (!cond)
108 return NULL;
109 if (pthread_cond_init(cond, NULL)) {
110 mm_free(cond);
111 return NULL;
112 }
113 return cond;
114}
115
116static void
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100117evthread_posix_cond_free(void *cond_)
Christopher Wileye8679812015-07-01 13:36:18 -0700118{
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100119 pthread_cond_t *cond = cond_;
Christopher Wileye8679812015-07-01 13:36:18 -0700120 pthread_cond_destroy(cond);
121 mm_free(cond);
122}
123
124static int
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100125evthread_posix_cond_signal(void *cond_, int broadcast)
Christopher Wileye8679812015-07-01 13:36:18 -0700126{
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100127 pthread_cond_t *cond = cond_;
Christopher Wileye8679812015-07-01 13:36:18 -0700128 int r;
129 if (broadcast)
130 r = pthread_cond_broadcast(cond);
131 else
132 r = pthread_cond_signal(cond);
133 return r ? -1 : 0;
134}
135
136static int
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100137evthread_posix_cond_wait(void *cond_, void *lock_, const struct timeval *tv)
Christopher Wileye8679812015-07-01 13:36:18 -0700138{
139 int r;
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100140 pthread_cond_t *cond = cond_;
141 pthread_mutex_t *lock = lock_;
Christopher Wileye8679812015-07-01 13:36:18 -0700142
143 if (tv) {
144 struct timeval now, abstime;
145 struct timespec ts;
146 evutil_gettimeofday(&now, NULL);
147 evutil_timeradd(&now, tv, &abstime);
148 ts.tv_sec = abstime.tv_sec;
149 ts.tv_nsec = abstime.tv_usec*1000;
150 r = pthread_cond_timedwait(cond, lock, &ts);
151 if (r == ETIMEDOUT)
152 return 1;
153 else if (r)
154 return -1;
155 else
156 return 0;
157 } else {
158 r = pthread_cond_wait(cond, lock);
159 return r ? -1 : 0;
160 }
161}
162
163int
164evthread_use_pthreads(void)
165{
166 struct evthread_lock_callbacks cbs = {
167 EVTHREAD_LOCK_API_VERSION,
168 EVTHREAD_LOCKTYPE_RECURSIVE,
169 evthread_posix_lock_alloc,
170 evthread_posix_lock_free,
171 evthread_posix_lock,
172 evthread_posix_unlock
173 };
174 struct evthread_condition_callbacks cond_cbs = {
175 EVTHREAD_CONDITION_API_VERSION,
176 evthread_posix_cond_alloc,
177 evthread_posix_cond_free,
178 evthread_posix_cond_signal,
179 evthread_posix_cond_wait
180 };
181 /* Set ourselves up to get recursive locks. */
182 if (pthread_mutexattr_init(&attr_recursive))
183 return -1;
184 if (pthread_mutexattr_settype(&attr_recursive, PTHREAD_MUTEX_RECURSIVE))
185 return -1;
186
187 evthread_set_lock_callbacks(&cbs);
188 evthread_set_condition_callbacks(&cond_cbs);
189 evthread_set_id_callback(evthread_posix_get_id);
190 return 0;
191}