Update copyright dates with scripts/update-copyrights
[glibc.git] / hurd / hurd / signal.h
blob4e9f79b19d0d9786251bc42e69ea1de4b8b9d741
1 /* Implementing POSIX.1 signals under the Hurd.
2 Copyright (C) 1993-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #ifndef _HURD_SIGNAL_H
21 #define _HURD_SIGNAL_H 1
22 #include <features.h>
24 #define __need_size_t
25 #define __need_NULL
26 #include <stddef.h>
28 #include <mach/mach_types.h>
29 #include <mach/port.h>
30 #include <mach/message.h>
31 #include <hurd/hurd_types.h>
32 #include <signal.h>
33 #include <errno.h>
34 #include <bits/types/error_t.h>
35 #include <bits/types/stack_t.h>
36 #include <bits/types/sigset_t.h>
37 #include <bits/sigaction.h>
38 #include <hurd/msg.h>
40 #include <setjmp.h> /* For `jmp_buf'. */
41 #include <spin-lock.h>
42 struct hurd_signal_preemptor; /* <hurd/sigpreempt.h> */
43 #if defined __USE_EXTERN_INLINES && defined _LIBC
44 # if IS_IN (libc) || IS_IN (libpthread)
45 # include <sigsetops.h>
46 # endif
47 #endif
50 /* Full details of a signal. */
51 struct hurd_signal_detail
53 /* Codes from origination Mach exception_raise message. */
54 integer_t exc, exc_code, exc_subcode;
55 /* Sigcode as passed or computed from exception codes. */
56 integer_t code;
57 /* Error code as passed or extracted from exception codes. */
58 error_t error;
62 /* Per-thread signal state. */
64 struct hurd_sigstate
66 spin_lock_t critical_section_lock; /* Held if in critical section. */
68 spin_lock_t lock; /* Locks most of the rest of the structure. */
70 /* The signal state holds a reference on the thread port. */
71 thread_t thread;
73 struct hurd_sigstate *next; /* Linked-list of thread sigstates. */
75 sigset_t blocked; /* What signals are blocked. */
76 sigset_t pending; /* Pending signals, possibly blocked. */
78 /* Signal handlers. ACTIONS[0] is used to mark the threads with POSIX
79 semantics: if sa_handler is SIG_IGN instead of SIG_DFL, this thread
80 will receive global signals and use the process-wide action vector
81 instead of this one. */
82 struct sigaction actions[_NSIG];
84 stack_t sigaltstack;
86 /* Chain of thread-local signal preemptors; see <hurd/sigpreempt.h>.
87 Each element of this chain is in local stack storage, and the chain
88 parallels the stack: the head of this chain is in the innermost
89 stack frame, and each next element in an outermore frame. */
90 struct hurd_signal_preemptor *preemptors;
92 /* For each signal that may be pending, the details to deliver it with. */
93 struct hurd_signal_detail pending_data[_NSIG];
95 /* If `suspended' is set when this thread gets a signal,
96 the signal thread sends an empty message to it. */
97 mach_port_t suspended;
99 /* The following members are not locked. They are used only by this
100 thread, or by the signal thread with this thread suspended. */
102 volatile mach_port_t intr_port; /* Port interruptible RPC was sent on. */
104 /* If this is not null, the thread is in sigreturn awaiting delivery of
105 pending signals. This context (the machine-dependent portions only)
106 will be passed to sigreturn after running the handler for a pending
107 signal, instead of examining the thread state. */
108 struct sigcontext *context;
110 /* This is the head of the thread's list of active resources; see
111 <hurd/userlink.h> for details. This member is only used by the
112 thread itself, and always inside a critical section. */
113 struct hurd_userlink *active_resources;
115 /* These are locked normally. */
116 int cancel; /* Flag set by hurd_thread_cancel. */
117 void (*cancel_hook) (void); /* Called on cancellation. */
120 /* Linked list of states of all threads whose state has been asked for. */
122 extern struct hurd_sigstate *_hurd_sigstates;
124 /* Get the sigstate of a given thread. If there was no sigstate for
125 the thread, one is created, and the thread gains a reference. If
126 the given thread is MACH_PORT_NULL, return the global sigstate. */
128 extern struct hurd_sigstate *_hurd_thread_sigstate (thread_t);
130 /* Get the sigstate of the current thread.
131 This uses a per-thread variable to optimize the lookup. */
133 extern struct hurd_sigstate *_hurd_self_sigstate (void)
134 /* This declaration tells the compiler that the value is constant.
135 We assume this won't be called twice from the same stack frame
136 by different threads. */
137 __attribute__ ((__const__));
139 /* Process-wide signal state. */
141 extern struct hurd_sigstate *_hurd_global_sigstate;
143 /* Mark the given thread as a process-wide signal receiver. */
145 extern void _hurd_sigstate_set_global_rcv (struct hurd_sigstate *ss);
147 /* A thread can either use its own action vector and pending signal set
148 or use the global ones, depending on wether it has been marked as a
149 global receiver. The accessors below take that into account. */
151 extern void _hurd_sigstate_lock (struct hurd_sigstate *ss);
152 extern struct sigaction *_hurd_sigstate_actions (struct hurd_sigstate *ss);
153 extern sigset_t _hurd_sigstate_pending (const struct hurd_sigstate *ss);
154 extern void _hurd_sigstate_unlock (struct hurd_sigstate *ss);
156 /* Used by libpthread to remove stale sigstate structures. */
157 extern void _hurd_sigstate_delete (thread_t thread);
159 #ifndef _HURD_SIGNAL_H_EXTERN_INLINE
160 #define _HURD_SIGNAL_H_EXTERN_INLINE __extern_inline
161 #endif
163 #if defined __USE_EXTERN_INLINES && defined _LIBC
164 # if IS_IN (libc)
165 _HURD_SIGNAL_H_EXTERN_INLINE struct hurd_sigstate *
166 _hurd_self_sigstate (void)
168 if (THREAD_GETMEM (THREAD_SELF, _hurd_sigstate) == NULL)
170 thread_t self = __mach_thread_self ();
171 THREAD_SETMEM (THREAD_SELF, _hurd_sigstate, _hurd_thread_sigstate (self));
172 __mach_port_deallocate (__mach_task_self (), self);
174 return THREAD_GETMEM (THREAD_SELF, _hurd_sigstate);
176 # endif
177 #endif
179 /* Thread listening on our message port; also called the "signal thread". */
181 extern thread_t _hurd_msgport_thread;
183 /* Our message port. We hold the receive right and _hurd_msgport_thread
184 listens for messages on it. We also hold a send right, for convenience. */
186 extern mach_port_t _hurd_msgport;
188 /* Resource limit on core file size. Enforced by hurdsig.c. */
189 extern int _hurd_core_limit;
191 /* Critical sections.
193 A critical section is a section of code which cannot safely be interrupted
194 to run a signal handler; for example, code that holds any lock cannot be
195 interrupted lest the signal handler try to take the same lock and
196 deadlock result.
198 As a consequence, a critical section will see its RPCs return EINTR, even if
199 SA_RESTART is set! In that case, the critical section should be left, so
200 that the handler can run, and the whole critical section be tried again, to
201 avoid unexpectingly exposing EINTR to the application. */
203 extern void *_hurd_critical_section_lock (void);
205 #if defined __USE_EXTERN_INLINES && defined _LIBC
206 # if IS_IN (libc)
207 _HURD_SIGNAL_H_EXTERN_INLINE void *
208 _hurd_critical_section_lock (void)
210 struct hurd_sigstate *ss;
212 #ifdef __LIBC_NO_TLS
213 if (__LIBC_NO_TLS ())
214 /* TLS is currently initializing, no need to enter critical section. */
215 return NULL;
216 #endif
218 ss = THREAD_GETMEM (THREAD_SELF, _hurd_sigstate);
219 if (ss == NULL)
221 thread_t self = __mach_thread_self ();
223 /* The thread variable is unset; this must be the first time we've
224 asked for it. In this case, the critical section flag cannot
225 possible already be set. Look up our sigstate structure the slow
226 way. */
227 ss = _hurd_thread_sigstate (self);
228 THREAD_SETMEM (THREAD_SELF, _hurd_sigstate, ss);
229 __mach_port_deallocate (__mach_task_self (), self);
232 if (! __spin_try_lock (&ss->critical_section_lock))
233 /* We are already in a critical section, so do nothing. */
234 return NULL;
236 /* With the critical section lock held no signal handler will run.
237 Return our sigstate pointer; this will be passed to
238 _hurd_critical_section_unlock to unlock it. */
239 return ss;
241 # endif
242 #endif
244 extern void _hurd_critical_section_unlock (void *our_lock);
246 #if defined __USE_EXTERN_INLINES && defined _LIBC
247 # if IS_IN (libc)
248 _HURD_SIGNAL_H_EXTERN_INLINE void
249 _hurd_critical_section_unlock (void *our_lock)
251 if (our_lock == NULL)
252 /* The critical section lock was held when we began. Do nothing. */
253 return;
254 else
256 /* It was us who acquired the critical section lock. Unlock it. */
257 struct hurd_sigstate *ss = (struct hurd_sigstate *) our_lock;
258 sigset_t pending;
259 _hurd_sigstate_lock (ss);
260 __spin_unlock (&ss->critical_section_lock);
261 pending = _hurd_sigstate_pending(ss) & ~ss->blocked;
262 _hurd_sigstate_unlock (ss);
263 if (! __sigisemptyset (&pending))
264 /* There are unblocked signals pending, which weren't
265 delivered because we were in the critical section.
266 Tell the signal thread to deliver them now. */
267 __msg_sig_post (_hurd_msgport, 0, 0, __mach_task_self ());
270 # endif
271 #endif
273 /* Convenient macros for simple uses of critical sections.
274 These two must be used as a pair at the same C scoping level. */
276 #define HURD_CRITICAL_BEGIN \
277 { void *__hurd_critical__ = _hurd_critical_section_lock ()
278 #define HURD_CRITICAL_END \
279 _hurd_critical_section_unlock (__hurd_critical__); } while (0)
281 /* This one can be used inside the C scoping level, for early exits. */
282 #define HURD_CRITICAL_UNLOCK \
283 _hurd_critical_section_unlock (__hurd_critical__);
285 /* Initialize the signal code, and start the signal thread.
286 Arguments give the "init ints" from exec_startup. */
288 extern void _hurdsig_init (const int *intarray, size_t intarraysize);
290 /* Initialize proc server-assisted fault recovery for the signal thread. */
292 extern void _hurdsig_fault_init (void);
294 /* Raise a signal as described by SIGNO an DETAIL, on the thread whose
295 sigstate SS points to. If SS is a null pointer, this instead affects
296 the calling thread. */
298 extern int _hurd_raise_signal (struct hurd_sigstate *ss, int signo,
299 const struct hurd_signal_detail *detail);
301 /* Translate a Mach exception into a signal (machine-dependent). */
303 extern void _hurd_exception2signal (struct hurd_signal_detail *detail,
304 int *signo);
306 /* Translate a Mach exception into a signal with a legacy sigcode. */
308 extern void _hurd_exception2signal_legacy (struct hurd_signal_detail *detail,
309 int *signo);
312 /* Make the thread described by SS take the signal described by SIGNO and
313 DETAIL. If the process is traced, this will in fact stop with a SIGNO
314 as the stop signal unless UNTRACED is nonzero. When the signal can be
315 considered delivered, sends a sig_post reply message on REPLY_PORT
316 indicating success. SS is not locked. */
318 extern void _hurd_internal_post_signal (struct hurd_sigstate *ss,
319 int signo,
320 struct hurd_signal_detail *detail,
321 mach_port_t reply_port,
322 mach_msg_type_name_t reply_port_type,
323 int untraced);
325 /* Set up STATE and SS to handle signal SIGNO by running HANDLER. If
326 RPC_WAIT is nonzero, the thread needs to wait for a pending RPC to
327 finish before running the signal handler. The handler is passed SIGNO,
328 SIGCODE, and the returned `struct sigcontext' (which resides on the
329 stack the handler will use, and which describes the state of the thread
330 encoded in STATE before running the handler). */
332 struct machine_thread_all_state;
333 extern struct sigcontext *
334 _hurd_setup_sighandler (struct hurd_sigstate *ss, const struct sigaction *action,
335 __sighandler_t handler,
336 int signo, struct hurd_signal_detail *detail,
337 int rpc_wait, struct machine_thread_all_state *state);
339 /* Function run by the signal thread to receive from the signal port. */
341 extern void *_hurd_msgport_receive (void *arg);
343 /* Set up STATE with a thread state that, when resumed, is
344 like `longjmp (_hurd_sigthread_fault_env, 1)'. */
346 extern void _hurd_initialize_fault_recovery_state (void *state);
348 /* Set up STATE to do the equivalent of `longjmp (ENV, VAL);'. */
350 extern void _hurd_longjmp_thread_state (void *state, jmp_buf env, int value);
352 /* Function run for SIGINFO when its action is SIG_DFL and the current
353 process is the session leader. */
355 extern void _hurd_siginfo_handler (int);
357 /* Replacement for mach_msg used in RPCs to provide Hurd interruption
358 semantics. Args are all the same as for mach_msg. intr-rpc.h arranges
359 for this version to be used automatically by the RPC stubs the library
360 builds in place of the normal mach_msg. */
361 error_t _hurd_intr_rpc_mach_msg (mach_msg_header_t *msg,
362 mach_msg_option_t option,
363 mach_msg_size_t send_size,
364 mach_msg_size_t rcv_size,
365 mach_port_t rcv_name,
366 mach_msg_timeout_t timeout,
367 mach_port_t notify);
370 /* Milliseconds to wait for an interruptible RPC to return after
371 `interrupt_operation'. */
373 extern mach_msg_timeout_t _hurd_interrupted_rpc_timeout;
376 /* Mask of signals that cannot be caught, blocked, or ignored. */
377 #define _SIG_CANT_MASK (__sigmask (SIGSTOP) | __sigmask (SIGKILL))
379 /* Do an RPC to a process's message port.
381 Each argument is an expression which returns an error code; each
382 expression may be evaluated several times. FETCH_MSGPORT_EXPR should
383 fetch the appropriate message port and store it in the local variable
384 `msgport'; it will be deallocated after use. FETCH_REFPORT_EXPR should
385 fetch the appropriate message port and store it in the local variable
386 `refport' (if no reference port is needed in the call, then
387 FETCH_REFPORT_EXPR should be simply KERN_SUCCESS or 0); if
388 DEALLOC_REFPORT evaluates to nonzero it will be deallocated after use,
389 otherwise the FETCH_REFPORT_EXPR must take care of user references to
390 `refport'. RPC_EXPR should perform the desired RPC operation using
391 `msgport' and `refport'.
393 The reason for the complexity is that a process's message port and
394 reference port may change between fetching those ports and completing an
395 RPC using them (usually they change only when a process execs). The RPC
396 will fail with MACH_SEND_INVALID_DEST if the msgport dies before we can
397 send the RPC request; or with MIG_SERVER_DIED if the msgport was
398 destroyed after we sent the RPC request but before it was serviced. In
399 either of these cases, we retry the entire operation, discarding the old
400 message and reference ports and fetch them anew. */
402 #define HURD_MSGPORT_RPC(fetch_msgport_expr, \
403 fetch_refport_expr, dealloc_refport, \
404 rpc_expr) \
405 ({ \
406 error_t __err; \
407 mach_port_t msgport, refport = MACH_PORT_NULL; \
408 do \
410 /* Get the message port. */ \
411 __err = (error_t) (fetch_msgport_expr); \
412 if (__err) \
413 break; \
414 /* Get the reference port. */ \
415 __err = (error_t) (fetch_refport_expr); \
416 if (__err) \
418 /* Couldn't get it; deallocate MSGPORT and fail. */ \
419 __mach_port_deallocate (__mach_task_self (), msgport); \
420 break; \
422 __err = (error_t) (rpc_expr); \
423 __mach_port_deallocate (__mach_task_self (), msgport); \
424 if ((dealloc_refport) && refport != MACH_PORT_NULL) \
425 __mach_port_deallocate (__mach_task_self (), refport); \
426 } while (__err == MACH_SEND_INVALID_DEST \
427 || __err == MIG_SERVER_DIED); \
428 __err; \
432 #endif /* hurd/signal.h */