Remove some dead code
[mono-project.git] / support / signal.c
bloba635dd485edc000625353e8c034b90370361845a
1 /*
2 * <signal.h> wrapper functions.
4 * Authors:
5 * Jonathan Pryor (jonpryor@vt.edu)
6 * Jonathan Pryor (jpryor@novell.com)
7 * Tim Jenks (tim.jenks@realtimeworlds.com)
9 * Copyright (C) 2004-2005 Jonathan Pryor
10 * Copyright (C) 2008 Novell, Inc.
13 #include <signal.h>
15 #include "map.h"
16 #include "mph.h"
18 #ifndef HOST_WIN32
19 #include <sys/time.h>
20 #include <sys/types.h>
21 #if defined(__APPLE__)
22 #include "fakepoll.h"
23 #else
24 #include <poll.h>
25 #endif
26 #include <unistd.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <pthread.h>
30 #include <mono/io-layer/atomic.h>
31 #include <mono/metadata/appdomain.h>
32 #endif
34 G_BEGIN_DECLS
36 typedef void (*mph_sighandler_t)(int);
37 typedef struct Mono_Unix_UnixSignal_SignalInfo signal_info;
39 #ifndef HOST_WIN32
40 static int count_handlers (int signum);
41 #endif
43 void*
44 Mono_Posix_Stdlib_SIG_DFL (void)
46 return SIG_DFL;
49 void*
50 Mono_Posix_Stdlib_SIG_ERR (void)
52 return SIG_ERR;
55 void*
56 Mono_Posix_Stdlib_SIG_IGN (void)
58 return SIG_IGN;
61 void
62 Mono_Posix_Stdlib_InvokeSignalHandler (int signum, void *handler)
64 mph_sighandler_t _h = (mph_sighandler_t) handler;
65 _h (signum);
68 int Mono_Posix_SIGRTMIN (void)
70 #ifdef SIGRTMIN
71 return SIGRTMIN;
72 #else /* def SIGRTMIN */
73 return -1;
74 #endif /* ndef SIGRTMIN */
77 int Mono_Posix_SIGRTMAX (void)
79 #ifdef SIGRTMAX
80 return SIGRTMAX;
81 #else /* def SIGRTMAX */
82 return -1;
83 #endif /* ndef SIGRTMAX */
86 int Mono_Posix_FromRealTimeSignum (int offset, int *r)
88 if (NULL == r) {
89 errno = EINVAL;
90 return -1;
92 *r = 0;
93 #if defined (SIGRTMIN) && defined (SIGRTMAX)
94 if ((offset < 0) || (SIGRTMIN > SIGRTMAX - offset)) {
95 errno = EINVAL;
96 return -1;
98 *r = SIGRTMIN+offset;
99 return 0;
100 #else /* defined (SIGRTMIN) && defined (SIGRTMAX) */
101 # ifdef ENOSYS
102 errno = ENOSYS;
103 # endif /* ENOSYS */
104 return -1;
105 #endif /* defined (SIGRTMIN) && defined (SIGRTMAX) */
108 #ifndef HOST_WIN32
110 #ifdef WAPI_ATOMIC_ASM
111 #define mph_int_get(p) InterlockedExchangeAdd ((p), 0)
112 #define mph_int_inc(p) InterlockedIncrement ((p))
113 #define mph_int_dec_test(p) (InterlockedDecrement ((p)) == 0)
114 #define mph_int_set(p,o,n) InterlockedExchange ((p), (n))
115 #elif GLIB_CHECK_VERSION(2,4,0)
116 #define mph_int_get(p) g_atomic_int_get ((p))
117 #define mph_int_inc(p) do {g_atomic_int_inc ((p));} while (0)
118 #define mph_int_dec_test(p) g_atomic_int_dec_and_test ((p))
119 #define mph_int_set(p,o,n) do { \
120 while (!g_atomic_int_compare_and_exchange ((p), (o), (n))) {} \
121 } while (0)
122 #else
123 #define mph_int_get(p) (*(p))
124 #define mph_int_inc(p) do { (*(p))++; } while (0)
125 #define mph_int_dec_test(p) (--(*(p)) == 0)
126 #define mph_int_set(p,o,n) do { *(p) = n; } while (0)
127 #endif
129 #if HAVE_PSIGNAL
131 Mono_Posix_Syscall_psignal (int sig, const char* s)
133 errno = 0;
134 psignal (sig, s);
135 return errno == 0 ? 0 : -1;
137 #endif /* def HAVE_PSIGNAL */
139 #define NUM_SIGNALS 64
140 static signal_info signals[NUM_SIGNALS];
142 static int acquire_mutex (pthread_mutex_t *mutex)
144 int mr;
145 while ((mr = pthread_mutex_lock (mutex)) == EAGAIN) {
146 /* try to acquire again */
148 if ((mr != 0) && (mr != EDEADLK)) {
149 errno = mr;
150 return -1;
152 return 0;
155 static void release_mutex (pthread_mutex_t *mutex)
157 int mr;
158 while ((mr = pthread_mutex_unlock (mutex)) == EAGAIN) {
159 /* try to release mutex again */
163 static inline int
164 keep_trying (int r)
166 return r == -1 && errno == EINTR;
169 static void
170 default_handler (int signum)
172 int i;
173 for (i = 0; i < NUM_SIGNALS; ++i) {
174 int fd;
175 signal_info* h = &signals [i];
176 if (mph_int_get (&h->signum) != signum)
177 continue;
178 mph_int_inc (&h->count);
179 fd = mph_int_get (&h->write_fd);
180 if (fd > 0) {
181 int j,pipecounter;
182 char c = signum;
183 pipecounter = mph_int_get (&h->pipecnt);
184 for (j = 0; j < pipecounter; ++j) {
185 int r;
186 do { r = write (fd, &c, 1); } while (keep_trying (r));
187 fsync (fd); /* force */
193 static pthread_mutex_t signals_mutex = PTHREAD_MUTEX_INITIALIZER;
195 void*
196 Mono_Unix_UnixSignal_install (int sig)
198 int i;
199 signal_info* h = NULL;
200 int have_handler = 0;
201 void* handler = NULL;
203 if (acquire_mutex (&signals_mutex) == -1)
204 return NULL;
206 #if defined (SIGRTMIN) && defined (SIGRTMAX)
207 /*The runtime uses some rt signals for itself so it's important to not override them.*/
208 if (sig >= SIGRTMIN && sig <= SIGRTMAX && count_handlers (sig) == 0) {
209 struct sigaction sinfo;
210 sigaction (sig, NULL, &sinfo);
211 if (sinfo.sa_handler != SIG_DFL || (void*)sinfo.sa_sigaction != (void*)SIG_DFL) {
212 pthread_mutex_unlock (&signals_mutex);
213 errno = EADDRINUSE;
214 return NULL;
217 #endif /*defined (SIGRTMIN) && defined (SIGRTMAX)*/
219 for (i = 0; i < NUM_SIGNALS; ++i) {
220 if (h == NULL && signals [i].signum == 0) {
221 h = &signals [i];
222 h->handler = signal (sig, default_handler);
223 if (h->handler == SIG_ERR) {
224 h->handler = NULL;
225 h = NULL;
226 break;
228 else {
229 h->have_handler = 1;
232 if (!have_handler && signals [i].signum == sig &&
233 signals [i].handler != default_handler) {
234 have_handler = 1;
235 handler = signals [i].handler;
237 if (h && have_handler)
238 break;
241 if (h && have_handler) {
242 h->have_handler = 1;
243 h->handler = handler;
246 if (h) {
247 mph_int_set (&h->count, h->count, 0);
248 mph_int_set (&h->signum, h->signum, sig);
249 mph_int_set (&h->pipecnt, h->pipecnt, 0);
252 release_mutex (&signals_mutex);
254 return h;
257 static int
258 count_handlers (int signum)
260 int i;
261 int count = 0;
262 for (i = 0; i < NUM_SIGNALS; ++i) {
263 if (signals [i].signum == signum)
264 ++count;
266 return count;
270 Mono_Unix_UnixSignal_uninstall (void* info)
272 signal_info* h;
273 int r = -1;
275 if (acquire_mutex (&signals_mutex) == -1)
276 return -1;
278 h = info;
280 if (h == NULL || h < signals || h > &signals [NUM_SIGNALS])
281 errno = EINVAL;
282 else {
283 /* last UnixSignal -- we can unregister */
284 if (h->have_handler && count_handlers (h->signum) == 1) {
285 mph_sighandler_t p = signal (h->signum, h->handler);
286 if (p != SIG_ERR)
287 r = 0;
288 h->handler = NULL;
289 h->have_handler = 0;
291 h->signum = 0;
294 release_mutex (&signals_mutex);
296 return r;
299 static int
300 setup_pipes (signal_info** signals, int count, struct pollfd *fd_structs, int *currfd)
302 int i;
303 int r = 0;
304 for (i = 0; i < count; ++i) {
305 signal_info* h;
306 int filedes[2];
308 h = signals [i];
310 if (mph_int_get (&h->pipecnt) == 0) {
311 if ((r = pipe (filedes)) != 0) {
312 break;
314 h->read_fd = filedes [0];
315 h->write_fd = filedes [1];
317 mph_int_inc (&h->pipecnt);
318 fd_structs[*currfd].fd = h->read_fd;
319 fd_structs[*currfd].events = POLLIN;
320 ++(*currfd);
322 return r;
325 static void
326 teardown_pipes (signal_info** signals, int count)
328 int i;
329 for (i = 0; i < count; ++i) {
330 signal_info* h = signals [i];
332 if (mph_int_dec_test (&h->pipecnt)) {
333 if (h->read_fd != 0)
334 close (h->read_fd);
335 if (h->write_fd != 0)
336 close (h->write_fd);
337 h->read_fd = 0;
338 h->write_fd = 0;
343 static int
344 wait_for_any (signal_info** signals, int count, int *currfd, struct pollfd* fd_structs, int timeout, Mono_Posix_RuntimeIsShuttingDown shutting_down)
346 int r, idx;
347 do {
348 struct timeval tv;
349 struct timeval *ptv = NULL;
350 if (timeout != -1) {
351 tv.tv_sec = timeout / 1000;
352 tv.tv_usec = (timeout % 1000)*1000;
353 ptv = &tv;
355 r = poll (fd_structs, count, timeout);
356 } while (keep_trying (r) && !shutting_down ());
358 idx = -1;
359 if (r == 0)
360 idx = timeout;
361 else if (r > 0) {
362 int i;
363 for (i = 0; i < count; ++i) {
364 signal_info* h = signals [i];
365 if (fd_structs[i].revents & POLLIN) {
366 int r;
367 char c;
368 do {
369 r = read (h->read_fd, &c, 1);
370 } while (keep_trying (r) && !shutting_down ());
371 if (idx == -1)
372 idx = i;
377 return idx;
381 * returns: -1 on error:
382 * timeout on timeout
383 * index into _signals array of signal that was generated on success
386 Mono_Unix_UnixSignal_WaitAny (void** _signals, int count, int timeout /* milliseconds */, Mono_Posix_RuntimeIsShuttingDown shutting_down)
388 int r;
389 int currfd = 0;
390 struct pollfd fd_structs[NUM_SIGNALS];
392 signal_info** signals = (signal_info**) _signals;
394 if (count > NUM_SIGNALS)
395 return -1;
397 if (acquire_mutex (&signals_mutex) == -1)
398 return -1;
400 r = setup_pipes (signals, count, &fd_structs[0], &currfd);
402 release_mutex (&signals_mutex);
404 if (r == 0) {
405 r = wait_for_any (signals, count, &currfd, &fd_structs[0], timeout, shutting_down);
408 if (acquire_mutex (&signals_mutex) == -1)
409 return -1;
411 teardown_pipes (signals, count);
413 release_mutex (&signals_mutex);
415 return r;
418 #endif /* ndef HOST_WIN32 */
421 G_END_DECLS
424 * vim: noexpandtab