[threadpool] Saner default for max number of worker threads on android and ios
[mono-project.git] / mono / utils / mono-threads-posix-signals.c
blob155f830a0fa15bcda4b9e803617f938c6c513889
1 /*
2 * mono-threads-posix-signals.c: Shared facility for Posix signals support
4 * Author:
5 * Ludovic Henry (ludovic@gmail.com)
7 * (C) 2015 Xamarin, Inc
8 */
10 #include <config.h>
11 #include <glib.h>
13 #include "mono-threads.h"
15 #if defined(USE_POSIX_BACKEND)
17 #include <errno.h>
18 #include <signal.h>
20 #include "mono-threads-posix-signals.h"
22 #if defined(__APPLE__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
23 #define DEFAULT_SUSPEND_SIGNAL SIGXFSZ
24 #else
25 #define DEFAULT_SUSPEND_SIGNAL SIGPWR
26 #endif
27 #define DEFAULT_RESTART_SIGNAL SIGXCPU
29 static int suspend_signal_num;
30 static int restart_signal_num;
31 static int abort_signal_num;
33 static sigset_t suspend_signal_mask;
34 static sigset_t suspend_ack_signal_mask;
36 //Can't avoid the circular dep on this. Will be gone pretty soon
37 extern int mono_gc_get_suspend_signal (void);
39 static int
40 signal_search_alternative (int min_signal)
42 #if !defined (SIGRTMIN)
43 g_error ("signal search only works with RTMIN");
44 #else
45 int i;
46 /* we try to avoid SIGRTMIN and any one that might have been set already, see bug #75387 */
47 for (i = MAX (min_signal, SIGRTMIN) + 1; i < SIGRTMAX; ++i) {
48 struct sigaction sinfo;
49 sigaction (i, NULL, &sinfo);
50 if (sinfo.sa_handler == SIG_DFL && (void*)sinfo.sa_sigaction == (void*)SIG_DFL) {
51 return i;
54 g_error ("Could not find an available signal");
55 #endif
58 static void
59 signal_add_handler (int signo, gpointer handler, int flags)
61 #if !defined(__native_client__)
62 /*FIXME, move the code from mini to utils and do the right thing!*/
63 struct sigaction sa;
64 struct sigaction previous_sa;
65 int ret;
67 sa.sa_sigaction = (void (*)(int, siginfo_t *, void *))handler;
68 sigfillset (&sa.sa_mask);
70 sa.sa_flags = SA_SIGINFO | flags;
71 ret = sigaction (signo, &sa, &previous_sa);
73 g_assert (ret != -1);
74 #endif
77 static int
78 suspend_signal_get (void)
80 #if defined(PLATFORM_ANDROID)
81 return SIGUNUSED;
82 #elif !defined (SIGRTMIN)
83 #ifdef SIGUSR1
84 return SIGUSR1;
85 #else
86 return -1;
87 #endif /* SIGUSR1 */
88 #else
89 static int suspend_signum = -1;
90 if (suspend_signum == -1)
91 suspend_signum = signal_search_alternative (-1);
92 return suspend_signum;
93 #endif /* SIGRTMIN */
96 static int
97 restart_signal_get (void)
99 #if defined(PLATFORM_ANDROID)
100 return SIGTTOU;
101 #elif !defined (SIGRTMIN)
102 #ifdef SIGUSR2
103 return SIGUSR2;
104 #else
105 return -1;
106 #endif /* SIGUSR1 */
107 #else
108 static int resume_signum = -1;
109 if (resume_signum == -1)
110 resume_signum = signal_search_alternative (suspend_signal_get () + 1);
111 return resume_signum;
112 #endif /* SIGRTMIN */
116 static int
117 abort_signal_get (void)
119 #if defined(PLATFORM_ANDROID)
120 return SIGTTIN;
121 #elif !defined (SIGRTMIN)
122 #ifdef SIGTTIN
123 return SIGTTIN;
124 #else
125 return -1;
126 #endif /* SIGRTMIN */
127 #else
128 static int abort_signum = -1;
129 if (abort_signum == -1)
130 abort_signum = signal_search_alternative (restart_signal_get () + 1);
131 return abort_signum;
132 #endif /* SIGRTMIN */
135 static void
136 restart_signal_handler (int _dummy, siginfo_t *_info, void *context)
138 #if defined(__native_client__)
139 g_assert_not_reached ();
140 #else
141 MonoThreadInfo *info;
142 int old_errno = errno;
144 info = mono_thread_info_current ();
145 info->signal = restart_signal_num;
146 errno = old_errno;
147 #endif
150 static void
151 suspend_signal_handler (int _dummy, siginfo_t *info, void *context)
153 #if defined(__native_client__)
154 g_assert_not_reached ();
155 #else
156 int old_errno = errno;
157 int hp_save_index = mono_hazard_pointer_save_for_signal_handler ();
160 MonoThreadInfo *current = mono_thread_info_current ();
161 gboolean ret;
163 THREADS_SUSPEND_DEBUG ("SIGNAL HANDLER FOR %p [%p]\n", current, (void*)current->native_handle);
164 if (current->syscall_break_signal) {
165 current->syscall_break_signal = FALSE;
166 THREADS_SUSPEND_DEBUG ("\tsyscall break for %p\n", current);
167 mono_threads_notify_initiator_of_abort (current);
168 goto done;
171 /* Have we raced with self suspend? */
172 if (!mono_threads_transition_finish_async_suspend (current)) {
173 current->suspend_can_continue = TRUE;
174 THREADS_SUSPEND_DEBUG ("\tlost race with self suspend %p\n", current);
175 goto done;
178 ret = mono_threads_get_runtime_callbacks ()->thread_state_init_from_sigctx (&current->thread_saved_state [ASYNC_SUSPEND_STATE_INDEX], context);
180 /* thread_state_init_from_sigctx return FALSE if the current thread is detaching and suspend can't continue. */
181 current->suspend_can_continue = ret;
184 Block the restart signal.
185 We need to block the restart signal while posting to the suspend_ack semaphore or we race to sigsuspend,
186 which might miss the signal and get stuck.
188 pthread_sigmask (SIG_BLOCK, &suspend_ack_signal_mask, NULL);
190 /* This thread is doomed, all we can do is give up and let the suspender recover. */
191 if (!ret) {
192 THREADS_SUSPEND_DEBUG ("\tThread is dying, failed to capture state %p\n", current);
193 mono_threads_transition_async_suspend_compensation (current);
195 /* We're done suspending */
196 mono_threads_notify_initiator_of_suspend (current);
198 /* Unblock the restart signal. */
199 pthread_sigmask (SIG_UNBLOCK, &suspend_ack_signal_mask, NULL);
201 goto done;
204 /* We're done suspending */
205 mono_threads_notify_initiator_of_suspend (current);
207 do {
208 current->signal = 0;
209 sigsuspend (&suspend_signal_mask);
210 } while (current->signal != restart_signal_num);
212 /* Unblock the restart signal. */
213 pthread_sigmask (SIG_UNBLOCK, &suspend_ack_signal_mask, NULL);
215 if (current->async_target) {
216 #if MONO_ARCH_HAS_MONO_CONTEXT
217 MonoContext tmp = current->thread_saved_state [ASYNC_SUSPEND_STATE_INDEX].ctx;
218 mono_threads_get_runtime_callbacks ()->setup_async_callback (&tmp, current->async_target, current->user_data);
219 current->user_data = NULL;
220 current->async_target = NULL;
221 mono_monoctx_to_sigctx (&tmp, context);
222 #else
223 g_error ("The new interruption machinery requires a working mono-context");
224 #endif
227 /* We're done resuming */
228 mono_threads_notify_initiator_of_resume (current);
230 done:
231 mono_hazard_pointer_restore_for_signal_handler (hp_save_index);
232 errno = old_errno;
233 #endif
236 static void
237 abort_signal_handler (int _dummy, siginfo_t *info, void *context)
239 #if defined(__native_client__)
240 g_assert_not_reached ();
241 #else
242 suspend_signal_handler (_dummy, info, context);
243 #endif
246 void
247 mono_threads_posix_init_signals (MonoThreadPosixInitSignals signals)
249 sigset_t signal_set;
251 g_assert ((signals == MONO_THREADS_POSIX_INIT_SIGNALS_SUSPEND_RESTART) ^ (signals == MONO_THREADS_POSIX_INIT_SIGNALS_ABORT));
253 sigemptyset (&signal_set);
255 switch (signals) {
256 case MONO_THREADS_POSIX_INIT_SIGNALS_SUSPEND_RESTART: {
257 if (mono_thread_info_unified_management_enabled ()) {
258 suspend_signal_num = DEFAULT_SUSPEND_SIGNAL;
259 restart_signal_num = DEFAULT_RESTART_SIGNAL;
260 } else {
261 suspend_signal_num = suspend_signal_get ();
262 restart_signal_num = restart_signal_get ();
265 sigfillset (&suspend_signal_mask);
266 sigdelset (&suspend_signal_mask, restart_signal_num);
267 if (!mono_thread_info_unified_management_enabled ())
268 sigdelset (&suspend_signal_mask, mono_gc_get_suspend_signal ());
270 sigemptyset (&suspend_ack_signal_mask);
271 sigaddset (&suspend_ack_signal_mask, restart_signal_num);
273 signal_add_handler (suspend_signal_num, suspend_signal_handler, SA_RESTART);
274 signal_add_handler (restart_signal_num, restart_signal_handler, SA_RESTART);
276 sigaddset (&signal_set, suspend_signal_num);
277 sigaddset (&signal_set, restart_signal_num);
279 break;
281 case MONO_THREADS_POSIX_INIT_SIGNALS_ABORT: {
282 abort_signal_num = abort_signal_get ();
284 signal_add_handler (abort_signal_num, abort_signal_handler, 0);
286 sigaddset (&signal_set, abort_signal_num);
288 break;
290 default: g_assert_not_reached ();
293 /* ensure all the new signals are unblocked */
294 sigprocmask (SIG_UNBLOCK, &signal_set, NULL);
297 gint
298 mono_threads_posix_get_suspend_signal (void)
300 return suspend_signal_num;
303 gint
304 mono_threads_posix_get_restart_signal (void)
306 return restart_signal_num;
309 gint
310 mono_threads_posix_get_abort_signal (void)
312 return abort_signal_num;
315 #endif /* defined(USE_POSIX_BACKEND) */