bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1 | /* |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 2 | * Emulation of Linux signals |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003 Fabrice Bellard |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
Blue Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 18 | */ |
Peter Maydell | d39594e | 2016-01-26 18:17:02 +0000 | [diff] [blame] | 19 | #include "qemu/osdep.h" |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 20 | #include "qemu/bitops.h" |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 21 | #include <sys/ucontext.h> |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 22 | #include <sys/resource.h> |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 23 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 24 | #include "qemu.h" |
blueswir1 | 7d99a00 | 2009-01-14 19:00:36 +0000 | [diff] [blame] | 25 | #include "qemu-common.h" |
Paolo Bonzini | c8ee0a4 | 2015-11-13 13:52:21 +0100 | [diff] [blame] | 26 | #include "trace.h" |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 27 | #include "signal-common.h" |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 28 | |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 29 | struct target_sigaltstack target_sigaltstack_used = { |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 30 | .ss_sp = 0, |
| 31 | .ss_size = 0, |
| 32 | .ss_flags = TARGET_SS_DISABLE, |
| 33 | }; |
| 34 | |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 35 | static struct target_sigaction sigact_table[TARGET_NSIG]; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 36 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 37 | static void host_signal_handler(int host_signum, siginfo_t *info, |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 38 | void *puc); |
| 39 | |
Arnaud Patard | 3ca0558 | 2009-03-30 01:18:20 +0200 | [diff] [blame] | 40 | static uint8_t host_to_target_signal_table[_NSIG] = { |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 41 | [SIGHUP] = TARGET_SIGHUP, |
| 42 | [SIGINT] = TARGET_SIGINT, |
| 43 | [SIGQUIT] = TARGET_SIGQUIT, |
| 44 | [SIGILL] = TARGET_SIGILL, |
| 45 | [SIGTRAP] = TARGET_SIGTRAP, |
| 46 | [SIGABRT] = TARGET_SIGABRT, |
bellard | 01e3b76 | 2003-09-30 21:10:14 +0000 | [diff] [blame] | 47 | /* [SIGIOT] = TARGET_SIGIOT,*/ |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 48 | [SIGBUS] = TARGET_SIGBUS, |
| 49 | [SIGFPE] = TARGET_SIGFPE, |
| 50 | [SIGKILL] = TARGET_SIGKILL, |
| 51 | [SIGUSR1] = TARGET_SIGUSR1, |
| 52 | [SIGSEGV] = TARGET_SIGSEGV, |
| 53 | [SIGUSR2] = TARGET_SIGUSR2, |
| 54 | [SIGPIPE] = TARGET_SIGPIPE, |
| 55 | [SIGALRM] = TARGET_SIGALRM, |
| 56 | [SIGTERM] = TARGET_SIGTERM, |
| 57 | #ifdef SIGSTKFLT |
| 58 | [SIGSTKFLT] = TARGET_SIGSTKFLT, |
| 59 | #endif |
| 60 | [SIGCHLD] = TARGET_SIGCHLD, |
| 61 | [SIGCONT] = TARGET_SIGCONT, |
| 62 | [SIGSTOP] = TARGET_SIGSTOP, |
| 63 | [SIGTSTP] = TARGET_SIGTSTP, |
| 64 | [SIGTTIN] = TARGET_SIGTTIN, |
| 65 | [SIGTTOU] = TARGET_SIGTTOU, |
| 66 | [SIGURG] = TARGET_SIGURG, |
| 67 | [SIGXCPU] = TARGET_SIGXCPU, |
| 68 | [SIGXFSZ] = TARGET_SIGXFSZ, |
| 69 | [SIGVTALRM] = TARGET_SIGVTALRM, |
| 70 | [SIGPROF] = TARGET_SIGPROF, |
| 71 | [SIGWINCH] = TARGET_SIGWINCH, |
| 72 | [SIGIO] = TARGET_SIGIO, |
| 73 | [SIGPWR] = TARGET_SIGPWR, |
| 74 | [SIGSYS] = TARGET_SIGSYS, |
| 75 | /* next signals stay the same */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 76 | /* Nasty hack: Reverse SIGRTMIN and SIGRTMAX to avoid overlap with |
Dong Xu Wang | b4916d7 | 2011-11-22 18:06:17 +0800 | [diff] [blame] | 77 | host libpthread signals. This assumes no one actually uses SIGRTMAX :-/ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 78 | To fix this properly we need to do manual signal delivery multiplexed |
| 79 | over a single host signal. */ |
| 80 | [__SIGRTMIN] = __SIGRTMAX, |
| 81 | [__SIGRTMAX] = __SIGRTMIN, |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 82 | }; |
Arnaud Patard | 3ca0558 | 2009-03-30 01:18:20 +0200 | [diff] [blame] | 83 | static uint8_t target_to_host_signal_table[_NSIG]; |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 84 | |
pbrook | 1d9d8b5 | 2009-04-16 15:17:02 +0000 | [diff] [blame] | 85 | int host_to_target_signal(int sig) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 86 | { |
Andreas Schwab | 167c50d | 2013-07-02 14:04:12 +0100 | [diff] [blame] | 87 | if (sig < 0 || sig >= _NSIG) |
pbrook | 4cb0596 | 2008-05-30 18:05:19 +0000 | [diff] [blame] | 88 | return sig; |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 89 | return host_to_target_signal_table[sig]; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 90 | } |
| 91 | |
pbrook | 4cb0596 | 2008-05-30 18:05:19 +0000 | [diff] [blame] | 92 | int target_to_host_signal(int sig) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 93 | { |
Andreas Schwab | 167c50d | 2013-07-02 14:04:12 +0100 | [diff] [blame] | 94 | if (sig < 0 || sig >= _NSIG) |
pbrook | 4cb0596 | 2008-05-30 18:05:19 +0000 | [diff] [blame] | 95 | return sig; |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 96 | return target_to_host_signal_table[sig]; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 97 | } |
| 98 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 99 | static inline void target_sigaddset(target_sigset_t *set, int signum) |
pbrook | f5545b5 | 2008-05-30 22:37:07 +0000 | [diff] [blame] | 100 | { |
| 101 | signum--; |
| 102 | abi_ulong mask = (abi_ulong)1 << (signum % TARGET_NSIG_BPW); |
| 103 | set->sig[signum / TARGET_NSIG_BPW] |= mask; |
| 104 | } |
| 105 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 106 | static inline int target_sigismember(const target_sigset_t *set, int signum) |
pbrook | f5545b5 | 2008-05-30 22:37:07 +0000 | [diff] [blame] | 107 | { |
| 108 | signum--; |
| 109 | abi_ulong mask = (abi_ulong)1 << (signum % TARGET_NSIG_BPW); |
| 110 | return ((set->sig[signum / TARGET_NSIG_BPW] & mask) != 0); |
| 111 | } |
| 112 | |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 113 | void host_to_target_sigset_internal(target_sigset_t *d, |
| 114 | const sigset_t *s) |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 115 | { |
| 116 | int i; |
pbrook | f5545b5 | 2008-05-30 22:37:07 +0000 | [diff] [blame] | 117 | target_sigemptyset(d); |
| 118 | for (i = 1; i <= TARGET_NSIG; i++) { |
| 119 | if (sigismember(s, i)) { |
| 120 | target_sigaddset(d, host_to_target_signal(i)); |
| 121 | } |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 122 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 125 | void host_to_target_sigset(target_sigset_t *d, const sigset_t *s) |
bellard | 9231944 | 2004-06-19 16:58:13 +0000 | [diff] [blame] | 126 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 127 | target_sigset_t d1; |
bellard | 9231944 | 2004-06-19 16:58:13 +0000 | [diff] [blame] | 128 | int i; |
| 129 | |
| 130 | host_to_target_sigset_internal(&d1, s); |
| 131 | for(i = 0;i < TARGET_NSIG_WORDS; i++) |
Matthias Braun | cbb21ee | 2011-08-12 19:57:41 +0200 | [diff] [blame] | 132 | d->sig[i] = tswapal(d1.sig[i]); |
bellard | 9231944 | 2004-06-19 16:58:13 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 135 | void target_to_host_sigset_internal(sigset_t *d, |
| 136 | const target_sigset_t *s) |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 137 | { |
| 138 | int i; |
pbrook | f5545b5 | 2008-05-30 22:37:07 +0000 | [diff] [blame] | 139 | sigemptyset(d); |
| 140 | for (i = 1; i <= TARGET_NSIG; i++) { |
| 141 | if (target_sigismember(s, i)) { |
| 142 | sigaddset(d, target_to_host_signal(i)); |
| 143 | } |
Timothy E Baldwin | da7c864 | 2016-05-12 18:47:27 +0100 | [diff] [blame] | 144 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 147 | void target_to_host_sigset(sigset_t *d, const target_sigset_t *s) |
bellard | 9231944 | 2004-06-19 16:58:13 +0000 | [diff] [blame] | 148 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 149 | target_sigset_t s1; |
bellard | 9231944 | 2004-06-19 16:58:13 +0000 | [diff] [blame] | 150 | int i; |
| 151 | |
| 152 | for(i = 0;i < TARGET_NSIG_WORDS; i++) |
Matthias Braun | cbb21ee | 2011-08-12 19:57:41 +0200 | [diff] [blame] | 153 | s1.sig[i] = tswapal(s->sig[i]); |
bellard | 9231944 | 2004-06-19 16:58:13 +0000 | [diff] [blame] | 154 | target_to_host_sigset_internal(d, &s1); |
| 155 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 156 | |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 157 | void host_to_target_old_sigset(abi_ulong *old_sigset, |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 158 | const sigset_t *sigset) |
| 159 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 160 | target_sigset_t d; |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 161 | host_to_target_sigset(&d, sigset); |
| 162 | *old_sigset = d.sig[0]; |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 163 | } |
| 164 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 165 | void target_to_host_old_sigset(sigset_t *sigset, |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 166 | const abi_ulong *old_sigset) |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 167 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 168 | target_sigset_t d; |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 169 | int i; |
| 170 | |
| 171 | d.sig[0] = *old_sigset; |
| 172 | for(i = 1;i < TARGET_NSIG_WORDS; i++) |
| 173 | d.sig[i] = 0; |
| 174 | target_to_host_sigset(sigset, &d); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 177 | int block_signals(void) |
| 178 | { |
| 179 | TaskState *ts = (TaskState *)thread_cpu->opaque; |
| 180 | sigset_t set; |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 181 | |
| 182 | /* It's OK to block everything including SIGSEGV, because we won't |
| 183 | * run any further guest code before unblocking signals in |
| 184 | * process_pending_signals(). |
| 185 | */ |
| 186 | sigfillset(&set); |
| 187 | sigprocmask(SIG_SETMASK, &set, 0); |
| 188 | |
Eduardo Habkost | 9be3859 | 2016-06-13 18:57:58 -0300 | [diff] [blame] | 189 | return atomic_xchg(&ts->signal_pending, 1); |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 190 | } |
| 191 | |
Alex Barcelo | 1c27592 | 2014-03-14 14:36:55 +0000 | [diff] [blame] | 192 | /* Wrapper for sigprocmask function |
| 193 | * Emulates a sigprocmask in a safe way for the guest. Note that set and oldset |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 194 | * are host signal set, not guest ones. Returns -TARGET_ERESTARTSYS if |
| 195 | * a signal was already pending and the syscall must be restarted, or |
| 196 | * 0 on success. |
| 197 | * If set is NULL, this is guaranteed not to fail. |
Alex Barcelo | 1c27592 | 2014-03-14 14:36:55 +0000 | [diff] [blame] | 198 | */ |
| 199 | int do_sigprocmask(int how, const sigset_t *set, sigset_t *oldset) |
| 200 | { |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 201 | TaskState *ts = (TaskState *)thread_cpu->opaque; |
| 202 | |
| 203 | if (oldset) { |
| 204 | *oldset = ts->signal_mask; |
| 205 | } |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 206 | |
| 207 | if (set) { |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 208 | int i; |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 209 | |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 210 | if (block_signals()) { |
| 211 | return -TARGET_ERESTARTSYS; |
| 212 | } |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 213 | |
| 214 | switch (how) { |
| 215 | case SIG_BLOCK: |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 216 | sigorset(&ts->signal_mask, &ts->signal_mask, set); |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 217 | break; |
| 218 | case SIG_UNBLOCK: |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 219 | for (i = 1; i <= NSIG; ++i) { |
| 220 | if (sigismember(set, i)) { |
| 221 | sigdelset(&ts->signal_mask, i); |
| 222 | } |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 223 | } |
| 224 | break; |
| 225 | case SIG_SETMASK: |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 226 | ts->signal_mask = *set; |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 227 | break; |
| 228 | default: |
| 229 | g_assert_not_reached(); |
| 230 | } |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 231 | |
| 232 | /* Silently ignore attempts to change blocking status of KILL or STOP */ |
| 233 | sigdelset(&ts->signal_mask, SIGKILL); |
| 234 | sigdelset(&ts->signal_mask, SIGSTOP); |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 235 | } |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 236 | return 0; |
Alex Barcelo | 1c27592 | 2014-03-14 14:36:55 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Richard Henderson | e8f2904 | 2018-05-27 14:02:17 -0500 | [diff] [blame] | 239 | #if !defined(TARGET_NIOS2) |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 240 | /* Just set the guest's signal mask to the specified value; the |
| 241 | * caller is assumed to have called block_signals() already. |
| 242 | */ |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 243 | void set_sigmask(const sigset_t *set) |
Peter Maydell | 9eede5b | 2016-05-27 15:51:46 +0100 | [diff] [blame] | 244 | { |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 245 | TaskState *ts = (TaskState *)thread_cpu->opaque; |
| 246 | |
| 247 | ts->signal_mask = *set; |
Peter Maydell | 9eede5b | 2016-05-27 15:51:46 +0100 | [diff] [blame] | 248 | } |
| 249 | #endif |
| 250 | |
Laurent Vivier | 465e237 | 2018-04-11 21:23:47 +0200 | [diff] [blame] | 251 | /* sigaltstack management */ |
| 252 | |
| 253 | int on_sig_stack(unsigned long sp) |
| 254 | { |
| 255 | return (sp - target_sigaltstack_used.ss_sp |
| 256 | < target_sigaltstack_used.ss_size); |
| 257 | } |
| 258 | |
| 259 | int sas_ss_flags(unsigned long sp) |
| 260 | { |
| 261 | return (target_sigaltstack_used.ss_size == 0 ? SS_DISABLE |
| 262 | : on_sig_stack(sp) ? SS_ONSTACK : 0); |
| 263 | } |
| 264 | |
| 265 | abi_ulong target_sigsp(abi_ulong sp, struct target_sigaction *ka) |
| 266 | { |
| 267 | /* |
| 268 | * This is the X/Open sanctioned signal stack switching. |
| 269 | */ |
| 270 | if ((ka->sa_flags & TARGET_SA_ONSTACK) && !sas_ss_flags(sp)) { |
| 271 | return target_sigaltstack_used.ss_sp + target_sigaltstack_used.ss_size; |
| 272 | } |
| 273 | return sp; |
| 274 | } |
| 275 | |
| 276 | void target_save_altstack(target_stack_t *uss, CPUArchState *env) |
| 277 | { |
| 278 | __put_user(target_sigaltstack_used.ss_sp, &uss->ss_sp); |
| 279 | __put_user(sas_ss_flags(get_sp_from_cpustate(env)), &uss->ss_flags); |
| 280 | __put_user(target_sigaltstack_used.ss_size, &uss->ss_size); |
| 281 | } |
| 282 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 283 | /* siginfo conversion */ |
| 284 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 285 | static inline void host_to_target_siginfo_noswap(target_siginfo_t *tinfo, |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 286 | const siginfo_t *info) |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 287 | { |
Richard Henderson | a05c640 | 2012-09-15 11:34:20 -0700 | [diff] [blame] | 288 | int sig = host_to_target_signal(info->si_signo); |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 289 | int si_code = info->si_code; |
| 290 | int si_type; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 291 | tinfo->si_signo = sig; |
| 292 | tinfo->si_errno = 0; |
pbrook | afd7cd9 | 2008-05-31 12:14:21 +0000 | [diff] [blame] | 293 | tinfo->si_code = info->si_code; |
Richard Henderson | a05c640 | 2012-09-15 11:34:20 -0700 | [diff] [blame] | 294 | |
Peter Maydell | 55d72a7 | 2016-06-13 11:22:05 +0100 | [diff] [blame] | 295 | /* This memset serves two purposes: |
| 296 | * (1) ensure we don't leak random junk to the guest later |
| 297 | * (2) placate false positives from gcc about fields |
| 298 | * being used uninitialized if it chooses to inline both this |
| 299 | * function and tswap_siginfo() into host_to_target_siginfo(). |
| 300 | */ |
| 301 | memset(tinfo->_sifields._pad, 0, sizeof(tinfo->_sifields._pad)); |
| 302 | |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 303 | /* This is awkward, because we have to use a combination of |
| 304 | * the si_code and si_signo to figure out which of the union's |
| 305 | * members are valid. (Within the host kernel it is always possible |
| 306 | * to tell, but the kernel carefully avoids giving userspace the |
| 307 | * high 16 bits of si_code, so we don't have the information to |
| 308 | * do this the easy way...) We therefore make our best guess, |
| 309 | * bearing in mind that a guest can spoof most of the si_codes |
| 310 | * via rt_sigqueueinfo() if it likes. |
| 311 | * |
| 312 | * Once we have made our guess, we record it in the top 16 bits of |
| 313 | * the si_code, so that tswap_siginfo() later can use it. |
| 314 | * tswap_siginfo() will strip these top bits out before writing |
| 315 | * si_code to the guest (sign-extending the lower bits). |
| 316 | */ |
| 317 | |
| 318 | switch (si_code) { |
| 319 | case SI_USER: |
| 320 | case SI_TKILL: |
| 321 | case SI_KERNEL: |
| 322 | /* Sent via kill(), tkill() or tgkill(), or direct from the kernel. |
| 323 | * These are the only unspoofable si_code values. |
| 324 | */ |
| 325 | tinfo->_sifields._kill._pid = info->si_pid; |
| 326 | tinfo->_sifields._kill._uid = info->si_uid; |
| 327 | si_type = QEMU_SI_KILL; |
| 328 | break; |
| 329 | default: |
| 330 | /* Everything else is spoofable. Make best guess based on signal */ |
| 331 | switch (sig) { |
| 332 | case TARGET_SIGCHLD: |
| 333 | tinfo->_sifields._sigchld._pid = info->si_pid; |
| 334 | tinfo->_sifields._sigchld._uid = info->si_uid; |
| 335 | tinfo->_sifields._sigchld._status |
Timothy E Baldwin | da7c864 | 2016-05-12 18:47:27 +0100 | [diff] [blame] | 336 | = host_to_target_waitstatus(info->si_status); |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 337 | tinfo->_sifields._sigchld._utime = info->si_utime; |
| 338 | tinfo->_sifields._sigchld._stime = info->si_stime; |
| 339 | si_type = QEMU_SI_CHLD; |
| 340 | break; |
| 341 | case TARGET_SIGIO: |
| 342 | tinfo->_sifields._sigpoll._band = info->si_band; |
| 343 | tinfo->_sifields._sigpoll._fd = info->si_fd; |
| 344 | si_type = QEMU_SI_POLL; |
| 345 | break; |
| 346 | default: |
| 347 | /* Assume a sigqueue()/mq_notify()/rt_sigqueueinfo() source. */ |
| 348 | tinfo->_sifields._rt._pid = info->si_pid; |
| 349 | tinfo->_sifields._rt._uid = info->si_uid; |
| 350 | /* XXX: potential problem if 64 bit */ |
| 351 | tinfo->_sifields._rt._sigval.sival_ptr |
Timothy E Baldwin | da7c864 | 2016-05-12 18:47:27 +0100 | [diff] [blame] | 352 | = (abi_ulong)(unsigned long)info->si_value.sival_ptr; |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 353 | si_type = QEMU_SI_RT; |
| 354 | break; |
| 355 | } |
| 356 | break; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 357 | } |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 358 | |
| 359 | tinfo->si_code = deposit32(si_code, 16, 16, si_type); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 360 | } |
| 361 | |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 362 | void tswap_siginfo(target_siginfo_t *tinfo, |
| 363 | const target_siginfo_t *info) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 364 | { |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 365 | int si_type = extract32(info->si_code, 16, 16); |
| 366 | int si_code = sextract32(info->si_code, 0, 16); |
Richard Henderson | a05c640 | 2012-09-15 11:34:20 -0700 | [diff] [blame] | 367 | |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 368 | __put_user(info->si_signo, &tinfo->si_signo); |
| 369 | __put_user(info->si_errno, &tinfo->si_errno); |
| 370 | __put_user(si_code, &tinfo->si_code); |
| 371 | |
| 372 | /* We can use our internal marker of which fields in the structure |
| 373 | * are valid, rather than duplicating the guesswork of |
| 374 | * host_to_target_siginfo_noswap() here. |
| 375 | */ |
| 376 | switch (si_type) { |
| 377 | case QEMU_SI_KILL: |
| 378 | __put_user(info->_sifields._kill._pid, &tinfo->_sifields._kill._pid); |
| 379 | __put_user(info->_sifields._kill._uid, &tinfo->_sifields._kill._uid); |
| 380 | break; |
| 381 | case QEMU_SI_TIMER: |
| 382 | __put_user(info->_sifields._timer._timer1, |
| 383 | &tinfo->_sifields._timer._timer1); |
| 384 | __put_user(info->_sifields._timer._timer2, |
| 385 | &tinfo->_sifields._timer._timer2); |
| 386 | break; |
| 387 | case QEMU_SI_POLL: |
| 388 | __put_user(info->_sifields._sigpoll._band, |
| 389 | &tinfo->_sifields._sigpoll._band); |
| 390 | __put_user(info->_sifields._sigpoll._fd, |
| 391 | &tinfo->_sifields._sigpoll._fd); |
| 392 | break; |
| 393 | case QEMU_SI_FAULT: |
| 394 | __put_user(info->_sifields._sigfault._addr, |
| 395 | &tinfo->_sifields._sigfault._addr); |
| 396 | break; |
| 397 | case QEMU_SI_CHLD: |
| 398 | __put_user(info->_sifields._sigchld._pid, |
| 399 | &tinfo->_sifields._sigchld._pid); |
| 400 | __put_user(info->_sifields._sigchld._uid, |
| 401 | &tinfo->_sifields._sigchld._uid); |
| 402 | __put_user(info->_sifields._sigchld._status, |
| 403 | &tinfo->_sifields._sigchld._status); |
| 404 | __put_user(info->_sifields._sigchld._utime, |
| 405 | &tinfo->_sifields._sigchld._utime); |
| 406 | __put_user(info->_sifields._sigchld._stime, |
| 407 | &tinfo->_sifields._sigchld._stime); |
| 408 | break; |
| 409 | case QEMU_SI_RT: |
| 410 | __put_user(info->_sifields._rt._pid, &tinfo->_sifields._rt._pid); |
| 411 | __put_user(info->_sifields._rt._uid, &tinfo->_sifields._rt._uid); |
| 412 | __put_user(info->_sifields._rt._sigval.sival_ptr, |
| 413 | &tinfo->_sifields._rt._sigval.sival_ptr); |
| 414 | break; |
| 415 | default: |
| 416 | g_assert_not_reached(); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 417 | } |
| 418 | } |
| 419 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 420 | void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 421 | { |
Peter Maydell | 55d72a7 | 2016-06-13 11:22:05 +0100 | [diff] [blame] | 422 | target_siginfo_t tgt_tmp; |
| 423 | host_to_target_siginfo_noswap(&tgt_tmp, info); |
| 424 | tswap_siginfo(tinfo, &tgt_tmp); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | /* XXX: we support only POSIX RT signals are used. */ |
ths | aa1f17c | 2007-07-11 22:48:58 +0000 | [diff] [blame] | 428 | /* XXX: find a solution for 64 bit (additional malloced data is needed) */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 429 | void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo) |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 430 | { |
Peter Maydell | 90c0f08 | 2016-05-27 15:52:01 +0100 | [diff] [blame] | 431 | /* This conversion is used only for the rt_sigqueueinfo syscall, |
| 432 | * and so we know that the _rt fields are the valid ones. |
| 433 | */ |
| 434 | abi_ulong sival_ptr; |
| 435 | |
| 436 | __get_user(info->si_signo, &tinfo->si_signo); |
| 437 | __get_user(info->si_errno, &tinfo->si_errno); |
| 438 | __get_user(info->si_code, &tinfo->si_code); |
| 439 | __get_user(info->si_pid, &tinfo->_sifields._rt._pid); |
| 440 | __get_user(info->si_uid, &tinfo->_sifields._rt._uid); |
| 441 | __get_user(sival_ptr, &tinfo->_sifields._rt._sigval.sival_ptr); |
| 442 | info->si_value.sival_ptr = (void *)(long)sival_ptr; |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 443 | } |
| 444 | |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 445 | static int fatal_signal (int sig) |
| 446 | { |
| 447 | switch (sig) { |
| 448 | case TARGET_SIGCHLD: |
| 449 | case TARGET_SIGURG: |
| 450 | case TARGET_SIGWINCH: |
| 451 | /* Ignored by default. */ |
| 452 | return 0; |
| 453 | case TARGET_SIGCONT: |
| 454 | case TARGET_SIGSTOP: |
| 455 | case TARGET_SIGTSTP: |
| 456 | case TARGET_SIGTTIN: |
| 457 | case TARGET_SIGTTOU: |
| 458 | /* Job control signals. */ |
| 459 | return 0; |
| 460 | default: |
| 461 | return 1; |
| 462 | } |
| 463 | } |
| 464 | |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 465 | /* returns 1 if given signal should dump core if not handled */ |
| 466 | static int core_dump_signal(int sig) |
| 467 | { |
| 468 | switch (sig) { |
| 469 | case TARGET_SIGABRT: |
| 470 | case TARGET_SIGFPE: |
| 471 | case TARGET_SIGILL: |
| 472 | case TARGET_SIGQUIT: |
| 473 | case TARGET_SIGSEGV: |
| 474 | case TARGET_SIGTRAP: |
| 475 | case TARGET_SIGBUS: |
| 476 | return (1); |
| 477 | default: |
| 478 | return (0); |
| 479 | } |
| 480 | } |
| 481 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 482 | void signal_init(void) |
| 483 | { |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 484 | TaskState *ts = (TaskState *)thread_cpu->opaque; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 485 | struct sigaction act; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 486 | struct sigaction oact; |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 487 | int i, j; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 488 | int host_sig; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 489 | |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 490 | /* generate signal conversion tables */ |
Arnaud Patard | 3ca0558 | 2009-03-30 01:18:20 +0200 | [diff] [blame] | 491 | for(i = 1; i < _NSIG; i++) { |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 492 | if (host_to_target_signal_table[i] == 0) |
| 493 | host_to_target_signal_table[i] = i; |
| 494 | } |
Arnaud Patard | 3ca0558 | 2009-03-30 01:18:20 +0200 | [diff] [blame] | 495 | for(i = 1; i < _NSIG; i++) { |
bellard | 9e5f528 | 2003-07-13 17:33:54 +0000 | [diff] [blame] | 496 | j = host_to_target_signal_table[i]; |
| 497 | target_to_host_signal_table[j] = i; |
| 498 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 499 | |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 500 | /* Set the signal mask from the host mask. */ |
| 501 | sigprocmask(0, 0, &ts->signal_mask); |
| 502 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 503 | /* set all host signal handlers. ALL signals are blocked during |
| 504 | the handlers to serialize them. */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 505 | memset(sigact_table, 0, sizeof(sigact_table)); |
| 506 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 507 | sigfillset(&act.sa_mask); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 508 | act.sa_flags = SA_SIGINFO; |
| 509 | act.sa_sigaction = host_signal_handler; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 510 | for(i = 1; i <= TARGET_NSIG; i++) { |
| 511 | host_sig = target_to_host_signal(i); |
| 512 | sigaction(host_sig, NULL, &oact); |
| 513 | if (oact.sa_sigaction == (void *)SIG_IGN) { |
| 514 | sigact_table[i - 1]._sa_handler = TARGET_SIG_IGN; |
| 515 | } else if (oact.sa_sigaction == (void *)SIG_DFL) { |
| 516 | sigact_table[i - 1]._sa_handler = TARGET_SIG_DFL; |
| 517 | } |
| 518 | /* If there's already a handler installed then something has |
| 519 | gone horribly wrong, so don't even try to handle that case. */ |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 520 | /* Install some handlers for our own use. We need at least |
| 521 | SIGSEGV and SIGBUS, to detect exceptions. We can not just |
| 522 | trap all signals because it affects syscall interrupt |
| 523 | behavior. But do trap all default-fatal signals. */ |
| 524 | if (fatal_signal (i)) |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 525 | sigaction(host_sig, &act, NULL); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 526 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Peter Maydell | c599d4d | 2016-07-28 16:44:49 +0100 | [diff] [blame] | 529 | /* Force a synchronously taken signal. The kernel force_sig() function |
| 530 | * also forces the signal to "not blocked, not ignored", but for QEMU |
| 531 | * that work is done in process_pending_signals(). |
| 532 | */ |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 533 | void force_sig(int sig) |
Peter Maydell | c599d4d | 2016-07-28 16:44:49 +0100 | [diff] [blame] | 534 | { |
| 535 | CPUState *cpu = thread_cpu; |
| 536 | CPUArchState *env = cpu->env_ptr; |
| 537 | target_siginfo_t info; |
| 538 | |
| 539 | info.si_signo = sig; |
| 540 | info.si_errno = 0; |
| 541 | info.si_code = TARGET_SI_KERNEL; |
| 542 | info._sifields._kill._pid = 0; |
| 543 | info._sifields._kill._uid = 0; |
| 544 | queue_signal(env, info.si_signo, QEMU_SI_KILL, &info); |
| 545 | } |
Peter Maydell | 0939166 | 2016-07-28 16:44:47 +0100 | [diff] [blame] | 546 | |
| 547 | /* Force a SIGSEGV if we couldn't write to memory trying to set |
| 548 | * up the signal frame. oldsig is the signal we were trying to handle |
| 549 | * at the point of failure. |
| 550 | */ |
Michael Clark | 47ae93c | 2018-03-03 01:31:11 +1300 | [diff] [blame] | 551 | #if !defined(TARGET_RISCV) |
Laurent Vivier | befb744 | 2018-04-24 21:26:16 +0200 | [diff] [blame] | 552 | void force_sigsegv(int oldsig) |
Peter Maydell | 0939166 | 2016-07-28 16:44:47 +0100 | [diff] [blame] | 553 | { |
Peter Maydell | 0939166 | 2016-07-28 16:44:47 +0100 | [diff] [blame] | 554 | if (oldsig == SIGSEGV) { |
| 555 | /* Make sure we don't try to deliver the signal again; this will |
Peter Maydell | c599d4d | 2016-07-28 16:44:49 +0100 | [diff] [blame] | 556 | * end up with handle_pending_signal() calling dump_core_and_abort(). |
Peter Maydell | 0939166 | 2016-07-28 16:44:47 +0100 | [diff] [blame] | 557 | */ |
| 558 | sigact_table[oldsig - 1]._sa_handler = TARGET_SIG_DFL; |
| 559 | } |
Peter Maydell | c4b3574 | 2016-07-28 16:44:50 +0100 | [diff] [blame] | 560 | force_sig(TARGET_SIGSEGV); |
Peter Maydell | 0939166 | 2016-07-28 16:44:47 +0100 | [diff] [blame] | 561 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 562 | |
Michael Clark | 47ae93c | 2018-03-03 01:31:11 +1300 | [diff] [blame] | 563 | #endif |
| 564 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 565 | /* abort execution with signal */ |
Peter Maydell | c599d4d | 2016-07-28 16:44:49 +0100 | [diff] [blame] | 566 | static void QEMU_NORETURN dump_core_and_abort(int target_sig) |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 567 | { |
Andreas Färber | 0429a97 | 2013-08-26 18:14:44 +0200 | [diff] [blame] | 568 | CPUState *cpu = thread_cpu; |
| 569 | CPUArchState *env = cpu->env_ptr; |
| 570 | TaskState *ts = (TaskState *)cpu->opaque; |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 571 | int host_sig, core_dumped = 0; |
aurel32 | 603e4fd | 2009-04-15 16:18:38 +0000 | [diff] [blame] | 572 | struct sigaction act; |
Paolo Bonzini | c8ee0a4 | 2015-11-13 13:52:21 +0100 | [diff] [blame] | 573 | |
Riku Voipio | 66393fb | 2009-12-04 15:16:32 +0200 | [diff] [blame] | 574 | host_sig = target_to_host_signal(target_sig); |
Paolo Bonzini | c8ee0a4 | 2015-11-13 13:52:21 +0100 | [diff] [blame] | 575 | trace_user_force_sig(env, target_sig, host_sig); |
Andreas Färber | a2247f8 | 2013-06-09 19:47:04 +0200 | [diff] [blame] | 576 | gdb_signalled(env, target_sig); |
aurel32 | 603e4fd | 2009-04-15 16:18:38 +0000 | [diff] [blame] | 577 | |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 578 | /* dump core if supported by target binary format */ |
Riku Voipio | 66393fb | 2009-12-04 15:16:32 +0200 | [diff] [blame] | 579 | if (core_dump_signal(target_sig) && (ts->bprm->core_dump != NULL)) { |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 580 | stop_all_tasks(); |
| 581 | core_dumped = |
Andreas Färber | a2247f8 | 2013-06-09 19:47:04 +0200 | [diff] [blame] | 582 | ((*ts->bprm->core_dump)(target_sig, env) == 0); |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 583 | } |
| 584 | if (core_dumped) { |
| 585 | /* we already dumped the core of target process, we don't want |
| 586 | * a coredump of qemu itself */ |
| 587 | struct rlimit nodump; |
| 588 | getrlimit(RLIMIT_CORE, &nodump); |
| 589 | nodump.rlim_cur=0; |
| 590 | setrlimit(RLIMIT_CORE, &nodump); |
| 591 | (void) fprintf(stderr, "qemu: uncaught target signal %d (%s) - %s\n", |
Riku Voipio | 66393fb | 2009-12-04 15:16:32 +0200 | [diff] [blame] | 592 | target_sig, strsignal(host_sig), "core dumped" ); |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 593 | } |
| 594 | |
Stefan Weil | 0c58751 | 2011-04-28 17:20:32 +0200 | [diff] [blame] | 595 | /* The proper exit code for dying from an uncaught signal is |
aurel32 | 603e4fd | 2009-04-15 16:18:38 +0000 | [diff] [blame] | 596 | * -<signal>. The kernel doesn't allow exit() or _exit() to pass |
| 597 | * a negative value. To get the proper exit code we need to |
| 598 | * actually die from an uncaught signal. Here the default signal |
| 599 | * handler is installed, we send ourself a signal and we wait for |
| 600 | * it to arrive. */ |
| 601 | sigfillset(&act.sa_mask); |
| 602 | act.sa_handler = SIG_DFL; |
Peter Maydell | 3a5d30b | 2014-02-17 18:55:32 +0000 | [diff] [blame] | 603 | act.sa_flags = 0; |
aurel32 | 603e4fd | 2009-04-15 16:18:38 +0000 | [diff] [blame] | 604 | sigaction(host_sig, &act, NULL); |
| 605 | |
| 606 | /* For some reason raise(host_sig) doesn't send the signal when |
| 607 | * statically linked on x86-64. */ |
| 608 | kill(getpid(), host_sig); |
| 609 | |
| 610 | /* Make sure the signal isn't masked (just reuse the mask inside |
| 611 | of act) */ |
| 612 | sigdelset(&act.sa_mask, host_sig); |
| 613 | sigsuspend(&act.sa_mask); |
| 614 | |
| 615 | /* unreachable */ |
Blue Swirl | a6c6f76 | 2010-03-13 14:18:50 +0000 | [diff] [blame] | 616 | abort(); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 617 | } |
| 618 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 619 | /* queue a signal so that it will be send to the virtual CPU as soon |
| 620 | as possible */ |
Peter Maydell | 9d2803f | 2016-07-28 16:44:46 +0100 | [diff] [blame] | 621 | int queue_signal(CPUArchState *env, int sig, int si_type, |
| 622 | target_siginfo_t *info) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 623 | { |
Andreas Färber | 0429a97 | 2013-08-26 18:14:44 +0200 | [diff] [blame] | 624 | CPUState *cpu = ENV_GET_CPU(env); |
| 625 | TaskState *ts = cpu->opaque; |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 626 | |
Paolo Bonzini | c8ee0a4 | 2015-11-13 13:52:21 +0100 | [diff] [blame] | 627 | trace_user_queue_signal(env, sig); |
Peter Maydell | a7ec0f9 | 2014-03-14 14:36:56 +0000 | [diff] [blame] | 628 | |
Peter Maydell | 9d2803f | 2016-07-28 16:44:46 +0100 | [diff] [blame] | 629 | info->si_code = deposit32(info->si_code, 16, 16, si_type); |
Peter Maydell | a70dadc | 2016-05-27 15:51:59 +0100 | [diff] [blame] | 630 | |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 631 | ts->sync_signal.info = *info; |
| 632 | ts->sync_signal.pending = sig; |
Timothy E Baldwin | 907f5fd | 2016-05-27 15:51:52 +0100 | [diff] [blame] | 633 | /* signal that a new signal is pending */ |
| 634 | atomic_set(&ts->signal_pending, 1); |
| 635 | return 1; /* indicates that the signal was queued */ |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Timothy E Baldwin | 4d330ce | 2016-05-12 18:47:46 +0100 | [diff] [blame] | 638 | #ifndef HAVE_SAFE_SYSCALL |
| 639 | static inline void rewind_if_in_safe_syscall(void *puc) |
| 640 | { |
| 641 | /* Default version: never rewind */ |
| 642 | } |
| 643 | #endif |
| 644 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 645 | static void host_signal_handler(int host_signum, siginfo_t *info, |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 646 | void *puc) |
| 647 | { |
Andreas Färber | a2247f8 | 2013-06-09 19:47:04 +0200 | [diff] [blame] | 648 | CPUArchState *env = thread_cpu->env_ptr; |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 649 | CPUState *cpu = ENV_GET_CPU(env); |
| 650 | TaskState *ts = cpu->opaque; |
| 651 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 652 | int sig; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 653 | target_siginfo_t tinfo; |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 654 | ucontext_t *uc = puc; |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 655 | struct emulated_sigtable *k; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 656 | |
| 657 | /* the CPU emulator uses some host signals to detect exceptions, |
aurel32 | eaa449b | 2009-01-03 13:14:52 +0000 | [diff] [blame] | 658 | we forward to it some signals */ |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 659 | if ((host_signum == SIGSEGV || host_signum == SIGBUS) |
aurel32 | eaa449b | 2009-01-03 13:14:52 +0000 | [diff] [blame] | 660 | && info->si_code > 0) { |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 661 | if (cpu_signal_handler(host_signum, info, puc)) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 662 | return; |
| 663 | } |
| 664 | |
| 665 | /* get target signal number */ |
| 666 | sig = host_to_target_signal(host_signum); |
| 667 | if (sig < 1 || sig > TARGET_NSIG) |
| 668 | return; |
Paolo Bonzini | c8ee0a4 | 2015-11-13 13:52:21 +0100 | [diff] [blame] | 669 | trace_user_host_signal(env, host_signum, sig); |
Timothy E Baldwin | 4d330ce | 2016-05-12 18:47:46 +0100 | [diff] [blame] | 670 | |
| 671 | rewind_if_in_safe_syscall(puc); |
| 672 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 673 | host_to_target_siginfo_noswap(&tinfo, info); |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 674 | k = &ts->sigtab[sig - 1]; |
| 675 | k->info = tinfo; |
| 676 | k->pending = sig; |
| 677 | ts->signal_pending = 1; |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 678 | |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 679 | /* Block host signals until target signal handler entered. We |
| 680 | * can't block SIGSEGV or SIGBUS while we're executing guest |
| 681 | * code in case the guest code provokes one in the window between |
| 682 | * now and it getting out to the main loop. Signals will be |
| 683 | * unblocked again in process_pending_signals(). |
Peter Maydell | 1d48fdd | 2016-06-14 12:49:18 +0100 | [diff] [blame] | 684 | * |
| 685 | * WARNING: we cannot use sigfillset() here because the uc_sigmask |
| 686 | * field is a kernel sigset_t, which is much smaller than the |
| 687 | * libc sigset_t which sigfillset() operates on. Using sigfillset() |
| 688 | * would write 0xff bytes off the end of the structure and trash |
| 689 | * data on the struct. |
| 690 | * We can't use sizeof(uc->uc_sigmask) either, because the libc |
| 691 | * headers define the struct field with the wrong (too large) type. |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 692 | */ |
Peter Maydell | 1d48fdd | 2016-06-14 12:49:18 +0100 | [diff] [blame] | 693 | memset(&uc->uc_sigmask, 0xff, SIGSET_T_SIZE); |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 694 | sigdelset(&uc->uc_sigmask, SIGSEGV); |
| 695 | sigdelset(&uc->uc_sigmask, SIGBUS); |
| 696 | |
| 697 | /* interrupt the virtual CPU as soon as possible */ |
| 698 | cpu_exit(thread_cpu); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 699 | } |
| 700 | |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 701 | /* do_sigaltstack() returns target values and errnos. */ |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 702 | /* compare linux/kernel/signal.c:do_sigaltstack() */ |
| 703 | abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp) |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 704 | { |
| 705 | int ret; |
| 706 | struct target_sigaltstack oss; |
| 707 | |
| 708 | /* XXX: test errors */ |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 709 | if(uoss_addr) |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 710 | { |
| 711 | __put_user(target_sigaltstack_used.ss_sp, &oss.ss_sp); |
| 712 | __put_user(target_sigaltstack_used.ss_size, &oss.ss_size); |
| 713 | __put_user(sas_ss_flags(sp), &oss.ss_flags); |
| 714 | } |
| 715 | |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 716 | if(uss_addr) |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 717 | { |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 718 | struct target_sigaltstack *uss; |
| 719 | struct target_sigaltstack ss; |
Tom Musta | 0903c8b | 2014-08-12 13:53:40 -0500 | [diff] [blame] | 720 | size_t minstacksize = TARGET_MINSIGSTKSZ; |
| 721 | |
| 722 | #if defined(TARGET_PPC64) |
| 723 | /* ELF V2 for PPC64 has a 4K minimum stack size for signal handlers */ |
| 724 | struct image_info *image = ((TaskState *)thread_cpu->opaque)->info; |
| 725 | if (get_ppc64_abi(image) > 1) { |
| 726 | minstacksize = 4096; |
| 727 | } |
| 728 | #endif |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 729 | |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 730 | ret = -TARGET_EFAULT; |
Riku Voipio | 9eeb830 | 2014-04-23 11:26:34 +0300 | [diff] [blame] | 731 | if (!lock_user_struct(VERIFY_READ, uss, uss_addr, 1)) { |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 732 | goto out; |
Riku Voipio | 9eeb830 | 2014-04-23 11:26:34 +0300 | [diff] [blame] | 733 | } |
| 734 | __get_user(ss.ss_sp, &uss->ss_sp); |
| 735 | __get_user(ss.ss_size, &uss->ss_size); |
| 736 | __get_user(ss.ss_flags, &uss->ss_flags); |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 737 | unlock_user_struct(uss, uss_addr, 0); |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 738 | |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 739 | ret = -TARGET_EPERM; |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 740 | if (on_sig_stack(sp)) |
| 741 | goto out; |
| 742 | |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 743 | ret = -TARGET_EINVAL; |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 744 | if (ss.ss_flags != TARGET_SS_DISABLE |
| 745 | && ss.ss_flags != TARGET_SS_ONSTACK |
| 746 | && ss.ss_flags != 0) |
| 747 | goto out; |
| 748 | |
| 749 | if (ss.ss_flags == TARGET_SS_DISABLE) { |
| 750 | ss.ss_size = 0; |
| 751 | ss.ss_sp = 0; |
| 752 | } else { |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 753 | ret = -TARGET_ENOMEM; |
Tom Musta | 0903c8b | 2014-08-12 13:53:40 -0500 | [diff] [blame] | 754 | if (ss.ss_size < minstacksize) { |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 755 | goto out; |
Tom Musta | 0903c8b | 2014-08-12 13:53:40 -0500 | [diff] [blame] | 756 | } |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | target_sigaltstack_used.ss_sp = ss.ss_sp; |
| 760 | target_sigaltstack_used.ss_size = ss.ss_size; |
| 761 | } |
| 762 | |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 763 | if (uoss_addr) { |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 764 | ret = -TARGET_EFAULT; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 765 | if (copy_to_user(uoss_addr, &oss, sizeof(oss))) |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 766 | goto out; |
ths | a04e134 | 2007-09-27 13:57:58 +0000 | [diff] [blame] | 767 | } |
| 768 | |
| 769 | ret = 0; |
| 770 | out: |
| 771 | return ret; |
| 772 | } |
| 773 | |
Timothy E Baldwin | ef6a778 | 2016-05-27 15:51:54 +0100 | [diff] [blame] | 774 | /* do_sigaction() return target values and host errnos */ |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 775 | int do_sigaction(int sig, const struct target_sigaction *act, |
| 776 | struct target_sigaction *oact) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 777 | { |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 778 | struct target_sigaction *k; |
bellard | 773b93e | 2004-01-04 17:15:59 +0000 | [diff] [blame] | 779 | struct sigaction act1; |
| 780 | int host_sig; |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 781 | int ret = 0; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 782 | |
Timothy E Baldwin | ef6a778 | 2016-05-27 15:51:54 +0100 | [diff] [blame] | 783 | if (sig < 1 || sig > TARGET_NSIG || sig == TARGET_SIGKILL || sig == TARGET_SIGSTOP) { |
| 784 | return -TARGET_EINVAL; |
| 785 | } |
| 786 | |
| 787 | if (block_signals()) { |
| 788 | return -TARGET_ERESTARTSYS; |
| 789 | } |
| 790 | |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 791 | k = &sigact_table[sig - 1]; |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 792 | if (oact) { |
Richard Henderson | d256587 | 2013-01-04 16:39:32 -0800 | [diff] [blame] | 793 | __put_user(k->_sa_handler, &oact->_sa_handler); |
| 794 | __put_user(k->sa_flags, &oact->sa_flags); |
Richard Henderson | 7f047de | 2017-10-31 13:53:52 +0100 | [diff] [blame] | 795 | #ifdef TARGET_ARCH_HAS_SA_RESTORER |
Richard Henderson | d256587 | 2013-01-04 16:39:32 -0800 | [diff] [blame] | 796 | __put_user(k->sa_restorer, &oact->sa_restorer); |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 797 | #endif |
Richard Henderson | d256587 | 2013-01-04 16:39:32 -0800 | [diff] [blame] | 798 | /* Not swapped. */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 799 | oact->sa_mask = k->sa_mask; |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 800 | } |
| 801 | if (act) { |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 802 | /* FIXME: This is not threadsafe. */ |
Richard Henderson | d256587 | 2013-01-04 16:39:32 -0800 | [diff] [blame] | 803 | __get_user(k->_sa_handler, &act->_sa_handler); |
| 804 | __get_user(k->sa_flags, &act->sa_flags); |
Richard Henderson | 7f047de | 2017-10-31 13:53:52 +0100 | [diff] [blame] | 805 | #ifdef TARGET_ARCH_HAS_SA_RESTORER |
Richard Henderson | d256587 | 2013-01-04 16:39:32 -0800 | [diff] [blame] | 806 | __get_user(k->sa_restorer, &act->sa_restorer); |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 807 | #endif |
Richard Henderson | d256587 | 2013-01-04 16:39:32 -0800 | [diff] [blame] | 808 | /* To be swapped in target_to_host_sigset. */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 809 | k->sa_mask = act->sa_mask; |
bellard | 773b93e | 2004-01-04 17:15:59 +0000 | [diff] [blame] | 810 | |
| 811 | /* we update the host linux signal state */ |
| 812 | host_sig = target_to_host_signal(sig); |
| 813 | if (host_sig != SIGSEGV && host_sig != SIGBUS) { |
| 814 | sigfillset(&act1.sa_mask); |
| 815 | act1.sa_flags = SA_SIGINFO; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 816 | if (k->sa_flags & TARGET_SA_RESTART) |
bellard | 773b93e | 2004-01-04 17:15:59 +0000 | [diff] [blame] | 817 | act1.sa_flags |= SA_RESTART; |
| 818 | /* NOTE: it is important to update the host kernel signal |
| 819 | ignore state to avoid getting unexpected interrupted |
| 820 | syscalls */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 821 | if (k->_sa_handler == TARGET_SIG_IGN) { |
bellard | 773b93e | 2004-01-04 17:15:59 +0000 | [diff] [blame] | 822 | act1.sa_sigaction = (void *)SIG_IGN; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 823 | } else if (k->_sa_handler == TARGET_SIG_DFL) { |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 824 | if (fatal_signal (sig)) |
| 825 | act1.sa_sigaction = host_signal_handler; |
| 826 | else |
| 827 | act1.sa_sigaction = (void *)SIG_DFL; |
bellard | 773b93e | 2004-01-04 17:15:59 +0000 | [diff] [blame] | 828 | } else { |
| 829 | act1.sa_sigaction = host_signal_handler; |
| 830 | } |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 831 | ret = sigaction(host_sig, &act1, NULL); |
bellard | 773b93e | 2004-01-04 17:15:59 +0000 | [diff] [blame] | 832 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 833 | } |
ths | 0da46a6 | 2007-10-20 20:23:07 +0000 | [diff] [blame] | 834 | return ret; |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 835 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 836 | |
Peter Maydell | 31efaef | 2016-07-06 15:09:29 +0100 | [diff] [blame] | 837 | static void handle_pending_signal(CPUArchState *cpu_env, int sig, |
| 838 | struct emulated_sigtable *k) |
Peter Maydell | eb55250 | 2016-05-27 15:51:43 +0100 | [diff] [blame] | 839 | { |
| 840 | CPUState *cpu = ENV_GET_CPU(cpu_env); |
| 841 | abi_ulong handler; |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 842 | sigset_t set; |
Peter Maydell | eb55250 | 2016-05-27 15:51:43 +0100 | [diff] [blame] | 843 | target_sigset_t target_old_set; |
| 844 | struct target_sigaction *sa; |
Peter Maydell | eb55250 | 2016-05-27 15:51:43 +0100 | [diff] [blame] | 845 | TaskState *ts = cpu->opaque; |
Peter Maydell | eb55250 | 2016-05-27 15:51:43 +0100 | [diff] [blame] | 846 | |
Paolo Bonzini | c8ee0a4 | 2015-11-13 13:52:21 +0100 | [diff] [blame] | 847 | trace_user_handle_signal(cpu_env, sig); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 848 | /* dequeue signal */ |
Timothy E Baldwin | 907f5fd | 2016-05-27 15:51:52 +0100 | [diff] [blame] | 849 | k->pending = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 850 | |
Andreas Färber | db6b81d | 2013-06-27 19:49:31 +0200 | [diff] [blame] | 851 | sig = gdb_handlesig(cpu, sig); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 852 | if (!sig) { |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 853 | sa = NULL; |
| 854 | handler = TARGET_SIG_IGN; |
| 855 | } else { |
| 856 | sa = &sigact_table[sig - 1]; |
| 857 | handler = sa->_sa_handler; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 858 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 859 | |
Peter Maydell | 0cb581d | 2016-07-18 18:12:24 +0100 | [diff] [blame] | 860 | if (do_strace) { |
| 861 | print_taken_signal(sig, &k->info); |
| 862 | } |
| 863 | |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 864 | if (handler == TARGET_SIG_DFL) { |
aurel32 | ca587a8 | 2008-12-18 22:44:13 +0000 | [diff] [blame] | 865 | /* default handler : ignore some signal. The other are job control or fatal */ |
| 866 | if (sig == TARGET_SIGTSTP || sig == TARGET_SIGTTIN || sig == TARGET_SIGTTOU) { |
| 867 | kill(getpid(),SIGSTOP); |
| 868 | } else if (sig != TARGET_SIGCHLD && |
| 869 | sig != TARGET_SIGURG && |
| 870 | sig != TARGET_SIGWINCH && |
| 871 | sig != TARGET_SIGCONT) { |
Peter Maydell | c599d4d | 2016-07-28 16:44:49 +0100 | [diff] [blame] | 872 | dump_core_and_abort(sig); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 873 | } |
| 874 | } else if (handler == TARGET_SIG_IGN) { |
| 875 | /* ignore sig */ |
| 876 | } else if (handler == TARGET_SIG_ERR) { |
Peter Maydell | c599d4d | 2016-07-28 16:44:49 +0100 | [diff] [blame] | 877 | dump_core_and_abort(sig); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 878 | } else { |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 879 | /* compute the blocked signals during the handler execution */ |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 880 | sigset_t *blocked_set; |
| 881 | |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 882 | target_to_host_sigset(&set, &sa->sa_mask); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 883 | /* SA_NODEFER indicates that the current signal should not be |
| 884 | blocked during the handler */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 885 | if (!(sa->sa_flags & TARGET_SA_NODEFER)) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 886 | sigaddset(&set, target_to_host_signal(sig)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 887 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 888 | /* save the previous blocked signal state to restore it at the |
| 889 | end of the signal execution (see do_sigreturn) */ |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 890 | host_to_target_sigset_internal(&target_old_set, &ts->signal_mask); |
| 891 | |
| 892 | /* block signals in the handler */ |
| 893 | blocked_set = ts->in_sigsuspend ? |
| 894 | &ts->sigsuspend_mask : &ts->signal_mask; |
| 895 | sigorset(&ts->signal_mask, blocked_set, &set); |
| 896 | ts->in_sigsuspend = 0; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 897 | |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 898 | /* if the CPU is in VM86 mode, we restore the 32 bit values */ |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 899 | #if defined(TARGET_I386) && !defined(TARGET_X86_64) |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 900 | { |
| 901 | CPUX86State *env = cpu_env; |
| 902 | if (env->eflags & VM_MASK) |
| 903 | save_v86_state(env); |
| 904 | } |
| 905 | #endif |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 906 | /* prepare the stack frame of the virtual CPU */ |
Laurent Vivier | cb6ac80 | 2018-04-24 21:26:35 +0200 | [diff] [blame] | 907 | #if defined(TARGET_ARCH_HAS_SETUP_FRAME) |
| 908 | if (sa->sa_flags & TARGET_SA_SIGINFO) { |
| 909 | setup_rt_frame(sig, sa, &k->info, &target_old_set, cpu_env); |
| 910 | } else { |
| 911 | setup_frame(sig, sa, &target_old_set, cpu_env); |
| 912 | } |
| 913 | #else |
Richard Henderson | ff97090 | 2013-02-10 10:30:42 -0800 | [diff] [blame] | 914 | /* These targets do not have traditional signals. */ |
Timothy E Baldwin | 907f5fd | 2016-05-27 15:51:52 +0100 | [diff] [blame] | 915 | setup_rt_frame(sig, sa, &k->info, &target_old_set, cpu_env); |
Richard Henderson | ff97090 | 2013-02-10 10:30:42 -0800 | [diff] [blame] | 916 | #endif |
Peter Maydell | 7ec87e0 | 2016-05-27 15:51:45 +0100 | [diff] [blame] | 917 | if (sa->sa_flags & TARGET_SA_RESETHAND) { |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 918 | sa->_sa_handler = TARGET_SIG_DFL; |
Peter Maydell | 7ec87e0 | 2016-05-27 15:51:45 +0100 | [diff] [blame] | 919 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 920 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 921 | } |
Peter Maydell | e902d58 | 2016-05-27 15:51:44 +0100 | [diff] [blame] | 922 | |
| 923 | void process_pending_signals(CPUArchState *cpu_env) |
| 924 | { |
| 925 | CPUState *cpu = ENV_GET_CPU(cpu_env); |
| 926 | int sig; |
| 927 | TaskState *ts = cpu->opaque; |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 928 | sigset_t set; |
| 929 | sigset_t *blocked_set; |
Peter Maydell | e902d58 | 2016-05-27 15:51:44 +0100 | [diff] [blame] | 930 | |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 931 | while (atomic_read(&ts->signal_pending)) { |
| 932 | /* FIXME: This is not threadsafe. */ |
| 933 | sigfillset(&set); |
| 934 | sigprocmask(SIG_SETMASK, &set, 0); |
Peter Maydell | e902d58 | 2016-05-27 15:51:44 +0100 | [diff] [blame] | 935 | |
Peter Maydell | 8bd3773 | 2016-07-28 16:44:45 +0100 | [diff] [blame] | 936 | restart_scan: |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 937 | sig = ts->sync_signal.pending; |
| 938 | if (sig) { |
| 939 | /* Synchronous signals are forced, |
| 940 | * see force_sig_info() and callers in Linux |
| 941 | * Note that not all of our queue_signal() calls in QEMU correspond |
| 942 | * to force_sig_info() calls in Linux (some are send_sig_info()). |
| 943 | * However it seems like a kernel bug to me to allow the process |
| 944 | * to block a synchronous signal since it could then just end up |
| 945 | * looping round and round indefinitely. |
| 946 | */ |
| 947 | if (sigismember(&ts->signal_mask, target_to_host_signal_table[sig]) |
| 948 | || sigact_table[sig - 1]._sa_handler == TARGET_SIG_IGN) { |
| 949 | sigdelset(&ts->signal_mask, target_to_host_signal_table[sig]); |
| 950 | sigact_table[sig - 1]._sa_handler = TARGET_SIG_DFL; |
| 951 | } |
| 952 | |
Peter Maydell | 31efaef | 2016-07-06 15:09:29 +0100 | [diff] [blame] | 953 | handle_pending_signal(cpu_env, sig, &ts->sync_signal); |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 954 | } |
| 955 | |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 956 | for (sig = 1; sig <= TARGET_NSIG; sig++) { |
| 957 | blocked_set = ts->in_sigsuspend ? |
| 958 | &ts->sigsuspend_mask : &ts->signal_mask; |
| 959 | |
| 960 | if (ts->sigtab[sig - 1].pending && |
| 961 | (!sigismember(blocked_set, |
Timothy E Baldwin | 655ed67 | 2016-05-27 15:51:53 +0100 | [diff] [blame] | 962 | target_to_host_signal_table[sig]))) { |
Peter Maydell | 31efaef | 2016-07-06 15:09:29 +0100 | [diff] [blame] | 963 | handle_pending_signal(cpu_env, sig, &ts->sigtab[sig - 1]); |
Peter Maydell | 8bd3773 | 2016-07-28 16:44:45 +0100 | [diff] [blame] | 964 | /* Restart scan from the beginning, as handle_pending_signal |
| 965 | * might have resulted in a new synchronous signal (eg SIGSEGV). |
| 966 | */ |
| 967 | goto restart_scan; |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 968 | } |
Peter Maydell | e902d58 | 2016-05-27 15:51:44 +0100 | [diff] [blame] | 969 | } |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 970 | |
| 971 | /* if no signal is pending, unblock signals and recheck (the act |
| 972 | * of unblocking might cause us to take another host signal which |
| 973 | * will set signal_pending again). |
| 974 | */ |
| 975 | atomic_set(&ts->signal_pending, 0); |
| 976 | ts->in_sigsuspend = 0; |
| 977 | set = ts->signal_mask; |
| 978 | sigdelset(&set, SIGSEGV); |
| 979 | sigdelset(&set, SIGBUS); |
| 980 | sigprocmask(SIG_SETMASK, &set, 0); |
Peter Maydell | e902d58 | 2016-05-27 15:51:44 +0100 | [diff] [blame] | 981 | } |
Peter Maydell | 3d3efba | 2016-05-27 15:51:49 +0100 | [diff] [blame] | 982 | ts->in_sigsuspend = 0; |
Peter Maydell | e902d58 | 2016-05-27 15:51:44 +0100 | [diff] [blame] | 983 | } |