]> git.ipfire.org Git - thirdparty/glibc.git/blame - hurd/catch-signal.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / hurd / catch-signal.c
CommitLineData
fb8e70d6 1/* Convenience function to catch expected signals during an operation.
dff8da6b 2 Copyright (C) 1996-2024 Free Software Foundation, Inc.
10dc2a90 3 This file is part of the GNU C Library.
fb8e70d6 4
10dc2a90 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
fb8e70d6 9
10dc2a90
UD
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
41bdb6e2 13 Lesser General Public License for more details.
fb8e70d6 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
fb8e70d6
RM
18
19#include <hurd/signal.h>
20#include <hurd/sigpreempt.h>
21#include <string.h>
22#include <assert.h>
23
24error_t
7a8f45e3
ST
25__hurd_catch_signal (sigset_t sigset,
26 unsigned long int first, unsigned long int last,
27 error_t (*operate) (struct hurd_signal_preemptor *),
28 sighandler_t handler)
fb8e70d6 29{
ecd0de9a
ST
30 /* We need to restore the signal mask, because otherwise the
31 signal-handling code will have blocked the caught signal and for
32 instance calling hurd_catch_signal again would then dump core. */
33 sigjmp_buf buf;
fb8e70d6 34 void throw (int signo, long int sigcode, struct sigcontext *scp)
5e17a480 35 { siglongjmp (buf, scp->sc_error ?: EGRATUITOUS); }
fb8e70d6 36
10dc2a90 37 struct hurd_signal_preemptor preemptor =
fb8e70d6
RM
38 {
39 sigset, first, last,
40 NULL, handler == SIG_ERR ? (sighandler_t) &throw : handler,
41 };
42
43 struct hurd_sigstate *const ss = _hurd_self_sigstate ();
44 error_t error;
45
ecd0de9a 46 if (handler != SIG_ERR)
fb8e70d6
RM
47 /* Not our handler; don't bother saving state. */
48 error = 0;
49 else
50 /* This returns again with nonzero value when we preempt a signal. */
ecd0de9a 51 error = sigsetjmp (buf, 1);
fb8e70d6
RM
52
53 if (error == 0)
54 {
10dc2a90 55 /* Install a signal preemptor for the thread. */
fb8e70d6 56 __spin_lock (&ss->lock);
10dc2a90
UD
57 preemptor.next = ss->preemptors;
58 ss->preemptors = &preemptor;
fb8e70d6
RM
59 __spin_unlock (&ss->lock);
60
61 /* Try the operation that might crash. */
10dc2a90 62 (*operate) (&preemptor);
fb8e70d6
RM
63 }
64
65 /* Either FUNCTION completed happily and ERROR is still zero, or it hit
66 an expected signal and `throw' made setjmp return the signal error
10dc2a90 67 code in ERROR. Now we can remove the preemptor and return. */
fb8e70d6
RM
68
69 __spin_lock (&ss->lock);
10dc2a90
UD
70 assert (ss->preemptors == &preemptor);
71 ss->preemptors = preemptor.next;
fb8e70d6
RM
72 __spin_unlock (&ss->lock);
73
74 return error;
75}
7a8f45e3 76strong_alias (__hurd_catch_signal, hurd_catch_signal)
fb8e70d6
RM
77
78
79error_t
80hurd_safe_memset (void *dest, int byte, size_t nbytes)
81{
10dc2a90 82 error_t operate (struct hurd_signal_preemptor *preemptor)
fb8e70d6
RM
83 {
84 memset (dest, byte, nbytes);
85 return 0;
86 }
a9175662 87 return __hurd_catch_signal (__sigmask (SIGBUS) | __sigmask (SIGSEGV),
7a8f45e3
ST
88 (vm_address_t) dest, (vm_address_t) dest + nbytes,
89 &operate, SIG_ERR);
fb8e70d6 90}
c3d3967c
RM
91
92
93error_t
94hurd_safe_copyout (void *dest, const void *src, size_t nbytes)
95{
10dc2a90 96 error_t operate (struct hurd_signal_preemptor *preemptor)
c3d3967c
RM
97 {
98 memcpy (dest, src, nbytes);
99 return 0;
100 }
a9175662 101 return __hurd_catch_signal (__sigmask (SIGBUS) | __sigmask (SIGSEGV),
7a8f45e3
ST
102 (vm_address_t) dest, (vm_address_t) dest + nbytes,
103 &operate, SIG_ERR);
c3d3967c
RM
104}
105
106error_t
107hurd_safe_copyin (void *dest, const void *src, size_t nbytes)
108{
10dc2a90 109 error_t operate (struct hurd_signal_preemptor *preemptor)
c3d3967c
RM
110 {
111 memcpy (dest, src, nbytes);
112 return 0;
113 }
a9175662 114 return __hurd_catch_signal (__sigmask (SIGBUS) | __sigmask (SIGSEGV),
7a8f45e3
ST
115 (vm_address_t) src, (vm_address_t) src + nbytes,
116 &operate, SIG_ERR);
c3d3967c
RM
117}
118
119error_t
120hurd_safe_memmove (void *dest, const void *src, size_t nbytes)
121{
122 jmp_buf buf;
123 void throw (int signo, long int sigcode, struct sigcontext *scp)
5e17a480 124 { longjmp (buf, scp->sc_error ?: EGRATUITOUS); }
c3d3967c 125
10dc2a90 126 struct hurd_signal_preemptor src_preemptor =
c3d3967c 127 {
a9175662 128 __sigmask (SIGBUS) | __sigmask (SIGSEGV),
c3d3967c
RM
129 (vm_address_t) src, (vm_address_t) src + nbytes,
130 NULL, (sighandler_t) &throw,
131 };
10dc2a90 132 struct hurd_signal_preemptor dest_preemptor =
c3d3967c 133 {
a9175662 134 __sigmask (SIGBUS) | __sigmask (SIGSEGV),
c3d3967c
RM
135 (vm_address_t) dest, (vm_address_t) dest + nbytes,
136 NULL, (sighandler_t) &throw,
10dc2a90 137 &src_preemptor
c3d3967c
RM
138 };
139
140 struct hurd_sigstate *const ss = _hurd_self_sigstate ();
141 error_t error;
142
143 /* This returns again with nonzero value when we preempt a signal. */
144 error = setjmp (buf);
145
146 if (error == 0)
147 {
10dc2a90 148 /* Install a signal preemptor for the thread. */
c3d3967c 149 __spin_lock (&ss->lock);
10dc2a90
UD
150 src_preemptor.next = ss->preemptors;
151 ss->preemptors = &dest_preemptor;
c3d3967c
RM
152 __spin_unlock (&ss->lock);
153
154 /* Do the copy; it might fault. */
155 memmove (dest, src, nbytes);
156 }
157
158 /* Either memmove completed happily and ERROR is still zero, or it hit
159 an expected signal and `throw' made setjmp return the signal error
10dc2a90 160 code in ERROR. Now we can remove the preemptor and return. */
c3d3967c
RM
161
162 __spin_lock (&ss->lock);
10dc2a90
UD
163 assert (ss->preemptors == &dest_preemptor);
164 ss->preemptors = src_preemptor.next;
c3d3967c
RM
165 __spin_unlock (&ss->lock);
166
167 return error;
168}