1 /* 2 * Emulation of Linux signals 3 * 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 17 * along with this program; if not, see <http://www.gnu.org/licenses/>. 18 */ 19 #include "qemu/osdep.h" 20 #include "qemu/bitops.h" 21 #include "exec/gdbstub.h" 22 #include "hw/core/tcg-cpu-ops.h" 23 24 #include <sys/ucontext.h> 25 #include <sys/resource.h> 26 27 #include "qemu.h" 28 #include "user-internals.h" 29 #include "strace.h" 30 #include "loader.h" 31 #include "trace.h" 32 #include "signal-common.h" 33 #include "host-signal.h" 34 #include "user/safe-syscall.h" 35 36 static struct target_sigaction sigact_table[TARGET_NSIG]; 37 38 static void host_signal_handler(int host_signum, siginfo_t *info, 39 void *puc); 40 41 /* Fallback addresses into sigtramp page. */ 42 abi_ulong default_sigreturn; 43 abi_ulong default_rt_sigreturn; 44 45 /* 46 * System includes define _NSIG as SIGRTMAX + 1, 47 * but qemu (like the kernel) defines TARGET_NSIG as TARGET_SIGRTMAX 48 * and the first signal is SIGHUP defined as 1 49 * Signal number 0 is reserved for use as kill(pid, 0), to test whether 50 * a process exists without sending it a signal. 51 */ 52 #ifdef __SIGRTMAX 53 QEMU_BUILD_BUG_ON(__SIGRTMAX + 1 != _NSIG); 54 #endif 55 static uint8_t host_to_target_signal_table[_NSIG] = { 56 #define MAKE_SIG_ENTRY(sig) [sig] = TARGET_##sig, 57 MAKE_SIGNAL_LIST 58 #undef MAKE_SIG_ENTRY 59 /* next signals stay the same */ 60 }; 61 62 static uint8_t target_to_host_signal_table[TARGET_NSIG + 1]; 63 64 /* valid sig is between 1 and _NSIG - 1 */ 65 int host_to_target_signal(int sig) 66 { 67 if (sig < 1 || sig >= _NSIG) { 68 return sig; 69 } 70 return host_to_target_signal_table[sig]; 71 } 72 73 /* valid sig is between 1 and TARGET_NSIG */ 74 int target_to_host_signal(int sig) 75 { 76 if (sig < 1 || sig > TARGET_NSIG) { 77 return sig; 78 } 79 return target_to_host_signal_table[sig]; 80 } 81 82 static inline void target_sigaddset(target_sigset_t *set, int signum) 83 { 84 signum--; 85 abi_ulong mask = (abi_ulong)1 << (signum % TARGET_NSIG_BPW); 86 set->sig[signum / TARGET_NSIG_BPW] |= mask; 87 } 88 89 static inline int target_sigismember(const target_sigset_t *set, int signum) 90 { 91 signum--; 92 abi_ulong mask = (abi_ulong)1 << (signum % TARGET_NSIG_BPW); 93 return ((set->sig[signum / TARGET_NSIG_BPW] & mask) != 0); 94 } 95 96 void host_to_target_sigset_internal(target_sigset_t *d, 97 const sigset_t *s) 98 { 99 int host_sig, target_sig; 100 target_sigemptyset(d); 101 for (host_sig = 1; host_sig < _NSIG; host_sig++) { 102 target_sig = host_to_target_signal(host_sig); 103 if (target_sig < 1 || target_sig > TARGET_NSIG) { 104 continue; 105 } 106 if (sigismember(s, host_sig)) { 107 target_sigaddset(d, target_sig); 108 } 109 } 110 } 111 112 void host_to_target_sigset(target_sigset_t *d, const sigset_t *s) 113 { 114 target_sigset_t d1; 115 int i; 116 117 host_to_target_sigset_internal(&d1, s); 118 for(i = 0;i < TARGET_NSIG_WORDS; i++) 119 d->sig[i] = tswapal(d1.sig[i]); 120 } 121 122 void target_to_host_sigset_internal(sigset_t *d, 123 const target_sigset_t *s) 124 { 125 int host_sig, target_sig; 126 sigemptyset(d); 127 for (target_sig = 1; target_sig <= TARGET_NSIG; target_sig++) { 128 host_sig = target_to_host_signal(target_sig); 129 if (host_sig < 1 || host_sig >= _NSIG) { 130 continue; 131 } 132 if (target_sigismember(s, target_sig)) { 133 sigaddset(d, host_sig); 134 } 135 } 136 } 137 138 void target_to_host_sigset(sigset_t *d, const target_sigset_t *s) 139 { 140 target_sigset_t s1; 141 int i; 142 143 for(i = 0;i < TARGET_NSIG_WORDS; i++) 144 s1.sig[i] = tswapal(s->sig[i]); 145 target_to_host_sigset_internal(d, &s1); 146 } 147 148 void host_to_target_old_sigset(abi_ulong *old_sigset, 149 const sigset_t *sigset) 150 { 151 target_sigset_t d; 152 host_to_target_sigset(&d, sigset); 153 *old_sigset = d.sig[0]; 154 } 155 156 void target_to_host_old_sigset(sigset_t *sigset, 157 const abi_ulong *old_sigset) 158 { 159 target_sigset_t d; 160 int i; 161 162 d.sig[0] = *old_sigset; 163 for(i = 1;i < TARGET_NSIG_WORDS; i++) 164 d.sig[i] = 0; 165 target_to_host_sigset(sigset, &d); 166 } 167 168 int block_signals(void) 169 { 170 TaskState *ts = (TaskState *)thread_cpu->opaque; 171 sigset_t set; 172 173 /* It's OK to block everything including SIGSEGV, because we won't 174 * run any further guest code before unblocking signals in 175 * process_pending_signals(). 176 */ 177 sigfillset(&set); 178 sigprocmask(SIG_SETMASK, &set, 0); 179 180 return qatomic_xchg(&ts->signal_pending, 1); 181 } 182 183 /* Wrapper for sigprocmask function 184 * Emulates a sigprocmask in a safe way for the guest. Note that set and oldset 185 * are host signal set, not guest ones. Returns -QEMU_ERESTARTSYS if 186 * a signal was already pending and the syscall must be restarted, or 187 * 0 on success. 188 * If set is NULL, this is guaranteed not to fail. 189 */ 190 int do_sigprocmask(int how, const sigset_t *set, sigset_t *oldset) 191 { 192 TaskState *ts = (TaskState *)thread_cpu->opaque; 193 194 if (oldset) { 195 *oldset = ts->signal_mask; 196 } 197 198 if (set) { 199 int i; 200 201 if (block_signals()) { 202 return -QEMU_ERESTARTSYS; 203 } 204 205 switch (how) { 206 case SIG_BLOCK: 207 sigorset(&ts->signal_mask, &ts->signal_mask, set); 208 break; 209 case SIG_UNBLOCK: 210 for (i = 1; i <= NSIG; ++i) { 211 if (sigismember(set, i)) { 212 sigdelset(&ts->signal_mask, i); 213 } 214 } 215 break; 216 case SIG_SETMASK: 217 ts->signal_mask = *set; 218 break; 219 default: 220 g_assert_not_reached(); 221 } 222 223 /* Silently ignore attempts to change blocking status of KILL or STOP */ 224 sigdelset(&ts->signal_mask, SIGKILL); 225 sigdelset(&ts->signal_mask, SIGSTOP); 226 } 227 return 0; 228 } 229 230 /* Just set the guest's signal mask to the specified value; the 231 * caller is assumed to have called block_signals() already. 232 */ 233 void set_sigmask(const sigset_t *set) 234 { 235 TaskState *ts = (TaskState *)thread_cpu->opaque; 236 237 ts->signal_mask = *set; 238 } 239 240 /* sigaltstack management */ 241 242 int on_sig_stack(unsigned long sp) 243 { 244 TaskState *ts = (TaskState *)thread_cpu->opaque; 245 246 return (sp - ts->sigaltstack_used.ss_sp 247 < ts->sigaltstack_used.ss_size); 248 } 249 250 int sas_ss_flags(unsigned long sp) 251 { 252 TaskState *ts = (TaskState *)thread_cpu->opaque; 253 254 return (ts->sigaltstack_used.ss_size == 0 ? SS_DISABLE 255 : on_sig_stack(sp) ? SS_ONSTACK : 0); 256 } 257 258 abi_ulong target_sigsp(abi_ulong sp, struct target_sigaction *ka) 259 { 260 /* 261 * This is the X/Open sanctioned signal stack switching. 262 */ 263 TaskState *ts = (TaskState *)thread_cpu->opaque; 264 265 if ((ka->sa_flags & TARGET_SA_ONSTACK) && !sas_ss_flags(sp)) { 266 return ts->sigaltstack_used.ss_sp + ts->sigaltstack_used.ss_size; 267 } 268 return sp; 269 } 270 271 void target_save_altstack(target_stack_t *uss, CPUArchState *env) 272 { 273 TaskState *ts = (TaskState *)thread_cpu->opaque; 274 275 __put_user(ts->sigaltstack_used.ss_sp, &uss->ss_sp); 276 __put_user(sas_ss_flags(get_sp_from_cpustate(env)), &uss->ss_flags); 277 __put_user(ts->sigaltstack_used.ss_size, &uss->ss_size); 278 } 279 280 abi_long target_restore_altstack(target_stack_t *uss, CPUArchState *env) 281 { 282 TaskState *ts = (TaskState *)thread_cpu->opaque; 283 size_t minstacksize = TARGET_MINSIGSTKSZ; 284 target_stack_t ss; 285 286 #if defined(TARGET_PPC64) 287 /* ELF V2 for PPC64 has a 4K minimum stack size for signal handlers */ 288 struct image_info *image = ts->info; 289 if (get_ppc64_abi(image) > 1) { 290 minstacksize = 4096; 291 } 292 #endif 293 294 __get_user(ss.ss_sp, &uss->ss_sp); 295 __get_user(ss.ss_size, &uss->ss_size); 296 __get_user(ss.ss_flags, &uss->ss_flags); 297 298 if (on_sig_stack(get_sp_from_cpustate(env))) { 299 return -TARGET_EPERM; 300 } 301 302 switch (ss.ss_flags) { 303 default: 304 return -TARGET_EINVAL; 305 306 case TARGET_SS_DISABLE: 307 ss.ss_size = 0; 308 ss.ss_sp = 0; 309 break; 310 311 case TARGET_SS_ONSTACK: 312 case 0: 313 if (ss.ss_size < minstacksize) { 314 return -TARGET_ENOMEM; 315 } 316 break; 317 } 318 319 ts->sigaltstack_used.ss_sp = ss.ss_sp; 320 ts->sigaltstack_used.ss_size = ss.ss_size; 321 return 0; 322 } 323 324 /* siginfo conversion */ 325 326 static inline void host_to_target_siginfo_noswap(target_siginfo_t *tinfo, 327 const siginfo_t *info) 328 { 329 int sig = host_to_target_signal(info->si_signo); 330 int si_code = info->si_code; 331 int si_type; 332 tinfo->si_signo = sig; 333 tinfo->si_errno = 0; 334 tinfo->si_code = info->si_code; 335 336 /* This memset serves two purposes: 337 * (1) ensure we don't leak random junk to the guest later 338 * (2) placate false positives from gcc about fields 339 * being used uninitialized if it chooses to inline both this 340 * function and tswap_siginfo() into host_to_target_siginfo(). 341 */ 342 memset(tinfo->_sifields._pad, 0, sizeof(tinfo->_sifields._pad)); 343 344 /* This is awkward, because we have to use a combination of 345 * the si_code and si_signo to figure out which of the union's 346 * members are valid. (Within the host kernel it is always possible 347 * to tell, but the kernel carefully avoids giving userspace the 348 * high 16 bits of si_code, so we don't have the information to 349 * do this the easy way...) We therefore make our best guess, 350 * bearing in mind that a guest can spoof most of the si_codes 351 * via rt_sigqueueinfo() if it likes. 352 * 353 * Once we have made our guess, we record it in the top 16 bits of 354 * the si_code, so that tswap_siginfo() later can use it. 355 * tswap_siginfo() will strip these top bits out before writing 356 * si_code to the guest (sign-extending the lower bits). 357 */ 358 359 switch (si_code) { 360 case SI_USER: 361 case SI_TKILL: 362 case SI_KERNEL: 363 /* Sent via kill(), tkill() or tgkill(), or direct from the kernel. 364 * These are the only unspoofable si_code values. 365 */ 366 tinfo->_sifields._kill._pid = info->si_pid; 367 tinfo->_sifields._kill._uid = info->si_uid; 368 si_type = QEMU_SI_KILL; 369 break; 370 default: 371 /* Everything else is spoofable. Make best guess based on signal */ 372 switch (sig) { 373 case TARGET_SIGCHLD: 374 tinfo->_sifields._sigchld._pid = info->si_pid; 375 tinfo->_sifields._sigchld._uid = info->si_uid; 376 if (si_code == CLD_EXITED) 377 tinfo->_sifields._sigchld._status = info->si_status; 378 else 379 tinfo->_sifields._sigchld._status 380 = host_to_target_signal(info->si_status & 0x7f) 381 | (info->si_status & ~0x7f); 382 tinfo->_sifields._sigchld._utime = info->si_utime; 383 tinfo->_sifields._sigchld._stime = info->si_stime; 384 si_type = QEMU_SI_CHLD; 385 break; 386 case TARGET_SIGIO: 387 tinfo->_sifields._sigpoll._band = info->si_band; 388 tinfo->_sifields._sigpoll._fd = info->si_fd; 389 si_type = QEMU_SI_POLL; 390 break; 391 default: 392 /* Assume a sigqueue()/mq_notify()/rt_sigqueueinfo() source. */ 393 tinfo->_sifields._rt._pid = info->si_pid; 394 tinfo->_sifields._rt._uid = info->si_uid; 395 /* XXX: potential problem if 64 bit */ 396 tinfo->_sifields._rt._sigval.sival_ptr 397 = (abi_ulong)(unsigned long)info->si_value.sival_ptr; 398 si_type = QEMU_SI_RT; 399 break; 400 } 401 break; 402 } 403 404 tinfo->si_code = deposit32(si_code, 16, 16, si_type); 405 } 406 407 void tswap_siginfo(target_siginfo_t *tinfo, 408 const target_siginfo_t *info) 409 { 410 int si_type = extract32(info->si_code, 16, 16); 411 int si_code = sextract32(info->si_code, 0, 16); 412 413 __put_user(info->si_signo, &tinfo->si_signo); 414 __put_user(info->si_errno, &tinfo->si_errno); 415 __put_user(si_code, &tinfo->si_code); 416 417 /* We can use our internal marker of which fields in the structure 418 * are valid, rather than duplicating the guesswork of 419 * host_to_target_siginfo_noswap() here. 420 */ 421 switch (si_type) { 422 case QEMU_SI_KILL: 423 __put_user(info->_sifields._kill._pid, &tinfo->_sifields._kill._pid); 424 __put_user(info->_sifields._kill._uid, &tinfo->_sifields._kill._uid); 425 break; 426 case QEMU_SI_TIMER: 427 __put_user(info->_sifields._timer._timer1, 428 &tinfo->_sifields._timer._timer1); 429 __put_user(info->_sifields._timer._timer2, 430 &tinfo->_sifields._timer._timer2); 431 break; 432 case QEMU_SI_POLL: 433 __put_user(info->_sifields._sigpoll._band, 434 &tinfo->_sifields._sigpoll._band); 435 __put_user(info->_sifields._sigpoll._fd, 436 &tinfo->_sifields._sigpoll._fd); 437 break; 438 case QEMU_SI_FAULT: 439 __put_user(info->_sifields._sigfault._addr, 440 &tinfo->_sifields._sigfault._addr); 441 break; 442 case QEMU_SI_CHLD: 443 __put_user(info->_sifields._sigchld._pid, 444 &tinfo->_sifields._sigchld._pid); 445 __put_user(info->_sifields._sigchld._uid, 446 &tinfo->_sifields._sigchld._uid); 447 __put_user(info->_sifields._sigchld._status, 448 &tinfo->_sifields._sigchld._status); 449 __put_user(info->_sifields._sigchld._utime, 450 &tinfo->_sifields._sigchld._utime); 451 __put_user(info->_sifields._sigchld._stime, 452 &tinfo->_sifields._sigchld._stime); 453 break; 454 case QEMU_SI_RT: 455 __put_user(info->_sifields._rt._pid, &tinfo->_sifields._rt._pid); 456 __put_user(info->_sifields._rt._uid, &tinfo->_sifields._rt._uid); 457 __put_user(info->_sifields._rt._sigval.sival_ptr, 458 &tinfo->_sifields._rt._sigval.sival_ptr); 459 break; 460 default: 461 g_assert_not_reached(); 462 } 463 } 464 465 void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info) 466 { 467 target_siginfo_t tgt_tmp; 468 host_to_target_siginfo_noswap(&tgt_tmp, info); 469 tswap_siginfo(tinfo, &tgt_tmp); 470 } 471 472 /* XXX: we support only POSIX RT signals are used. */ 473 /* XXX: find a solution for 64 bit (additional malloced data is needed) */ 474 void target_to_host_siginfo(siginfo_t *info, const target_siginfo_t *tinfo) 475 { 476 /* This conversion is used only for the rt_sigqueueinfo syscall, 477 * and so we know that the _rt fields are the valid ones. 478 */ 479 abi_ulong sival_ptr; 480 481 __get_user(info->si_signo, &tinfo->si_signo); 482 __get_user(info->si_errno, &tinfo->si_errno); 483 __get_user(info->si_code, &tinfo->si_code); 484 __get_user(info->si_pid, &tinfo->_sifields._rt._pid); 485 __get_user(info->si_uid, &tinfo->_sifields._rt._uid); 486 __get_user(sival_ptr, &tinfo->_sifields._rt._sigval.sival_ptr); 487 info->si_value.sival_ptr = (void *)(long)sival_ptr; 488 } 489 490 static int fatal_signal (int sig) 491 { 492 switch (sig) { 493 case TARGET_SIGCHLD: 494 case TARGET_SIGURG: 495 case TARGET_SIGWINCH: 496 /* Ignored by default. */ 497 return 0; 498 case TARGET_SIGCONT: 499 case TARGET_SIGSTOP: 500 case TARGET_SIGTSTP: 501 case TARGET_SIGTTIN: 502 case TARGET_SIGTTOU: 503 /* Job control signals. */ 504 return 0; 505 default: 506 return 1; 507 } 508 } 509 510 /* returns 1 if given signal should dump core if not handled */ 511 static int core_dump_signal(int sig) 512 { 513 switch (sig) { 514 case TARGET_SIGABRT: 515 case TARGET_SIGFPE: 516 case TARGET_SIGILL: 517 case TARGET_SIGQUIT: 518 case TARGET_SIGSEGV: 519 case TARGET_SIGTRAP: 520 case TARGET_SIGBUS: 521 return (1); 522 default: 523 return (0); 524 } 525 } 526 527 static void signal_table_init(void) 528 { 529 int host_sig, target_sig, count; 530 531 /* 532 * Signals are supported starting from TARGET_SIGRTMIN and going up 533 * until we run out of host realtime signals. 534 * glibc at least uses only the lower 2 rt signals and probably 535 * nobody's using the upper ones. 536 * it's why SIGRTMIN (34) is generally greater than __SIGRTMIN (32) 537 * To fix this properly we need to do manual signal delivery multiplexed 538 * over a single host signal. 539 * Attempts for configure "missing" signals via sigaction will be 540 * silently ignored. 541 */ 542 for (host_sig = SIGRTMIN; host_sig <= SIGRTMAX; host_sig++) { 543 target_sig = host_sig - SIGRTMIN + TARGET_SIGRTMIN; 544 if (target_sig <= TARGET_NSIG) { 545 host_to_target_signal_table[host_sig] = target_sig; 546 } 547 } 548 549 /* generate signal conversion tables */ 550 for (target_sig = 1; target_sig <= TARGET_NSIG; target_sig++) { 551 target_to_host_signal_table[target_sig] = _NSIG; /* poison */ 552 } 553 for (host_sig = 1; host_sig < _NSIG; host_sig++) { 554 if (host_to_target_signal_table[host_sig] == 0) { 555 host_to_target_signal_table[host_sig] = host_sig; 556 } 557 target_sig = host_to_target_signal_table[host_sig]; 558 if (target_sig <= TARGET_NSIG) { 559 target_to_host_signal_table[target_sig] = host_sig; 560 } 561 } 562 563 if (trace_event_get_state_backends(TRACE_SIGNAL_TABLE_INIT)) { 564 for (target_sig = 1, count = 0; target_sig <= TARGET_NSIG; target_sig++) { 565 if (target_to_host_signal_table[target_sig] == _NSIG) { 566 count++; 567 } 568 } 569 trace_signal_table_init(count); 570 } 571 } 572 573 void signal_init(void) 574 { 575 TaskState *ts = (TaskState *)thread_cpu->opaque; 576 struct sigaction act; 577 struct sigaction oact; 578 int i; 579 int host_sig; 580 581 /* initialize signal conversion tables */ 582 signal_table_init(); 583 584 /* Set the signal mask from the host mask. */ 585 sigprocmask(0, 0, &ts->signal_mask); 586 587 sigfillset(&act.sa_mask); 588 act.sa_flags = SA_SIGINFO; 589 act.sa_sigaction = host_signal_handler; 590 for(i = 1; i <= TARGET_NSIG; i++) { 591 #ifdef CONFIG_GPROF 592 if (i == TARGET_SIGPROF) { 593 continue; 594 } 595 #endif 596 host_sig = target_to_host_signal(i); 597 sigaction(host_sig, NULL, &oact); 598 if (oact.sa_sigaction == (void *)SIG_IGN) { 599 sigact_table[i - 1]._sa_handler = TARGET_SIG_IGN; 600 } else if (oact.sa_sigaction == (void *)SIG_DFL) { 601 sigact_table[i - 1]._sa_handler = TARGET_SIG_DFL; 602 } 603 /* If there's already a handler installed then something has 604 gone horribly wrong, so don't even try to handle that case. */ 605 /* Install some handlers for our own use. We need at least 606 SIGSEGV and SIGBUS, to detect exceptions. We can not just 607 trap all signals because it affects syscall interrupt 608 behavior. But do trap all default-fatal signals. */ 609 if (fatal_signal (i)) 610 sigaction(host_sig, &act, NULL); 611 } 612 } 613 614 /* Force a synchronously taken signal. The kernel force_sig() function 615 * also forces the signal to "not blocked, not ignored", but for QEMU 616 * that work is done in process_pending_signals(). 617 */ 618 void force_sig(int sig) 619 { 620 CPUState *cpu = thread_cpu; 621 CPUArchState *env = cpu->env_ptr; 622 target_siginfo_t info = {}; 623 624 info.si_signo = sig; 625 info.si_errno = 0; 626 info.si_code = TARGET_SI_KERNEL; 627 info._sifields._kill._pid = 0; 628 info._sifields._kill._uid = 0; 629 queue_signal(env, info.si_signo, QEMU_SI_KILL, &info); 630 } 631 632 /* 633 * Force a synchronously taken QEMU_SI_FAULT signal. For QEMU the 634 * 'force' part is handled in process_pending_signals(). 635 */ 636 void force_sig_fault(int sig, int code, abi_ulong addr) 637 { 638 CPUState *cpu = thread_cpu; 639 CPUArchState *env = cpu->env_ptr; 640 target_siginfo_t info = {}; 641 642 info.si_signo = sig; 643 info.si_errno = 0; 644 info.si_code = code; 645 info._sifields._sigfault._addr = addr; 646 queue_signal(env, sig, QEMU_SI_FAULT, &info); 647 } 648 649 /* Force a SIGSEGV if we couldn't write to memory trying to set 650 * up the signal frame. oldsig is the signal we were trying to handle 651 * at the point of failure. 652 */ 653 #if !defined(TARGET_RISCV) 654 void force_sigsegv(int oldsig) 655 { 656 if (oldsig == SIGSEGV) { 657 /* Make sure we don't try to deliver the signal again; this will 658 * end up with handle_pending_signal() calling dump_core_and_abort(). 659 */ 660 sigact_table[oldsig - 1]._sa_handler = TARGET_SIG_DFL; 661 } 662 force_sig(TARGET_SIGSEGV); 663 } 664 #endif 665 666 void cpu_loop_exit_sigsegv(CPUState *cpu, target_ulong addr, 667 MMUAccessType access_type, bool maperr, uintptr_t ra) 668 { 669 const struct TCGCPUOps *tcg_ops = CPU_GET_CLASS(cpu)->tcg_ops; 670 671 if (tcg_ops->record_sigsegv) { 672 tcg_ops->record_sigsegv(cpu, addr, access_type, maperr, ra); 673 } 674 675 force_sig_fault(TARGET_SIGSEGV, 676 maperr ? TARGET_SEGV_MAPERR : TARGET_SEGV_ACCERR, 677 addr); 678 cpu->exception_index = EXCP_INTERRUPT; 679 cpu_loop_exit_restore(cpu, ra); 680 } 681 682 void cpu_loop_exit_sigbus(CPUState *cpu, target_ulong addr, 683 MMUAccessType access_type, uintptr_t ra) 684 { 685 const struct TCGCPUOps *tcg_ops = CPU_GET_CLASS(cpu)->tcg_ops; 686 687 if (tcg_ops->record_sigbus) { 688 tcg_ops->record_sigbus(cpu, addr, access_type, ra); 689 } 690 691 force_sig_fault(TARGET_SIGBUS, TARGET_BUS_ADRALN, addr); 692 cpu->exception_index = EXCP_INTERRUPT; 693 cpu_loop_exit_restore(cpu, ra); 694 } 695 696 /* abort execution with signal */ 697 static G_NORETURN 698 void dump_core_and_abort(CPUArchState *cpu_env, int target_sig) 699 { 700 CPUState *cpu = thread_cpu; 701 CPUArchState *env = cpu->env_ptr; 702 TaskState *ts = (TaskState *)cpu->opaque; 703 int host_sig, core_dumped = 0; 704 struct sigaction act; 705 706 host_sig = target_to_host_signal(target_sig); 707 trace_user_dump_core_and_abort(env, target_sig, host_sig); 708 gdb_signalled(env, target_sig); 709 710 /* dump core if supported by target binary format */ 711 if (core_dump_signal(target_sig) && (ts->bprm->core_dump != NULL)) { 712 stop_all_tasks(); 713 core_dumped = 714 ((*ts->bprm->core_dump)(target_sig, env) == 0); 715 } 716 if (core_dumped) { 717 /* we already dumped the core of target process, we don't want 718 * a coredump of qemu itself */ 719 struct rlimit nodump; 720 getrlimit(RLIMIT_CORE, &nodump); 721 nodump.rlim_cur=0; 722 setrlimit(RLIMIT_CORE, &nodump); 723 (void) fprintf(stderr, "qemu: uncaught target signal %d (%s) - %s\n", 724 target_sig, strsignal(host_sig), "core dumped" ); 725 } 726 727 preexit_cleanup(cpu_env, 128 + target_sig); 728 729 /* The proper exit code for dying from an uncaught signal is 730 * -<signal>. The kernel doesn't allow exit() or _exit() to pass 731 * a negative value. To get the proper exit code we need to 732 * actually die from an uncaught signal. Here the default signal 733 * handler is installed, we send ourself a signal and we wait for 734 * it to arrive. */ 735 sigfillset(&act.sa_mask); 736 act.sa_handler = SIG_DFL; 737 act.sa_flags = 0; 738 sigaction(host_sig, &act, NULL); 739 740 /* For some reason raise(host_sig) doesn't send the signal when 741 * statically linked on x86-64. */ 742 kill(getpid(), host_sig); 743 744 /* Make sure the signal isn't masked (just reuse the mask inside 745 of act) */ 746 sigdelset(&act.sa_mask, host_sig); 747 sigsuspend(&act.sa_mask); 748 749 /* unreachable */ 750 abort(); 751 } 752 753 /* queue a signal so that it will be send to the virtual CPU as soon 754 as possible */ 755 void queue_signal(CPUArchState *env, int sig, int si_type, 756 target_siginfo_t *info) 757 { 758 CPUState *cpu = env_cpu(env); 759 TaskState *ts = cpu->opaque; 760 761 trace_user_queue_signal(env, sig); 762 763 info->si_code = deposit32(info->si_code, 16, 16, si_type); 764 765 ts->sync_signal.info = *info; 766 ts->sync_signal.pending = sig; 767 /* signal that a new signal is pending */ 768 qatomic_set(&ts->signal_pending, 1); 769 } 770 771 772 /* Adjust the signal context to rewind out of safe-syscall if we're in it */ 773 static inline void rewind_if_in_safe_syscall(void *puc) 774 { 775 host_sigcontext *uc = (host_sigcontext *)puc; 776 uintptr_t pcreg = host_signal_pc(uc); 777 778 if (pcreg > (uintptr_t)safe_syscall_start 779 && pcreg < (uintptr_t)safe_syscall_end) { 780 host_signal_set_pc(uc, (uintptr_t)safe_syscall_start); 781 } 782 } 783 784 static void host_signal_handler(int host_sig, siginfo_t *info, void *puc) 785 { 786 CPUArchState *env = thread_cpu->env_ptr; 787 CPUState *cpu = env_cpu(env); 788 TaskState *ts = cpu->opaque; 789 target_siginfo_t tinfo; 790 host_sigcontext *uc = puc; 791 struct emulated_sigtable *k; 792 int guest_sig; 793 uintptr_t pc = 0; 794 bool sync_sig = false; 795 void *sigmask = host_signal_mask(uc); 796 797 /* 798 * Non-spoofed SIGSEGV and SIGBUS are synchronous, and need special 799 * handling wrt signal blocking and unwinding. 800 */ 801 if ((host_sig == SIGSEGV || host_sig == SIGBUS) && info->si_code > 0) { 802 MMUAccessType access_type; 803 uintptr_t host_addr; 804 abi_ptr guest_addr; 805 bool is_write; 806 807 host_addr = (uintptr_t)info->si_addr; 808 809 /* 810 * Convert forcefully to guest address space: addresses outside 811 * reserved_va are still valid to report via SEGV_MAPERR. 812 */ 813 guest_addr = h2g_nocheck(host_addr); 814 815 pc = host_signal_pc(uc); 816 is_write = host_signal_write(info, uc); 817 access_type = adjust_signal_pc(&pc, is_write); 818 819 if (host_sig == SIGSEGV) { 820 bool maperr = true; 821 822 if (info->si_code == SEGV_ACCERR && h2g_valid(host_addr)) { 823 /* If this was a write to a TB protected page, restart. */ 824 if (is_write && 825 handle_sigsegv_accerr_write(cpu, sigmask, pc, guest_addr)) { 826 return; 827 } 828 829 /* 830 * With reserved_va, the whole address space is PROT_NONE, 831 * which means that we may get ACCERR when we want MAPERR. 832 */ 833 if (page_get_flags(guest_addr) & PAGE_VALID) { 834 maperr = false; 835 } else { 836 info->si_code = SEGV_MAPERR; 837 } 838 } 839 840 sigprocmask(SIG_SETMASK, sigmask, NULL); 841 cpu_loop_exit_sigsegv(cpu, guest_addr, access_type, maperr, pc); 842 } else { 843 sigprocmask(SIG_SETMASK, sigmask, NULL); 844 if (info->si_code == BUS_ADRALN) { 845 cpu_loop_exit_sigbus(cpu, guest_addr, access_type, pc); 846 } 847 } 848 849 sync_sig = true; 850 } 851 852 /* get target signal number */ 853 guest_sig = host_to_target_signal(host_sig); 854 if (guest_sig < 1 || guest_sig > TARGET_NSIG) { 855 return; 856 } 857 trace_user_host_signal(env, host_sig, guest_sig); 858 859 host_to_target_siginfo_noswap(&tinfo, info); 860 k = &ts->sigtab[guest_sig - 1]; 861 k->info = tinfo; 862 k->pending = guest_sig; 863 ts->signal_pending = 1; 864 865 /* 866 * For synchronous signals, unwind the cpu state to the faulting 867 * insn and then exit back to the main loop so that the signal 868 * is delivered immediately. 869 */ 870 if (sync_sig) { 871 cpu->exception_index = EXCP_INTERRUPT; 872 cpu_loop_exit_restore(cpu, pc); 873 } 874 875 rewind_if_in_safe_syscall(puc); 876 877 /* 878 * Block host signals until target signal handler entered. We 879 * can't block SIGSEGV or SIGBUS while we're executing guest 880 * code in case the guest code provokes one in the window between 881 * now and it getting out to the main loop. Signals will be 882 * unblocked again in process_pending_signals(). 883 * 884 * WARNING: we cannot use sigfillset() here because the sigmask 885 * field is a kernel sigset_t, which is much smaller than the 886 * libc sigset_t which sigfillset() operates on. Using sigfillset() 887 * would write 0xff bytes off the end of the structure and trash 888 * data on the struct. 889 */ 890 memset(sigmask, 0xff, SIGSET_T_SIZE); 891 sigdelset(sigmask, SIGSEGV); 892 sigdelset(sigmask, SIGBUS); 893 894 /* interrupt the virtual CPU as soon as possible */ 895 cpu_exit(thread_cpu); 896 } 897 898 /* do_sigaltstack() returns target values and errnos. */ 899 /* compare linux/kernel/signal.c:do_sigaltstack() */ 900 abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, 901 CPUArchState *env) 902 { 903 target_stack_t oss, *uoss = NULL; 904 abi_long ret = -TARGET_EFAULT; 905 906 if (uoss_addr) { 907 /* Verify writability now, but do not alter user memory yet. */ 908 if (!lock_user_struct(VERIFY_WRITE, uoss, uoss_addr, 0)) { 909 goto out; 910 } 911 target_save_altstack(&oss, env); 912 } 913 914 if (uss_addr) { 915 target_stack_t *uss; 916 917 if (!lock_user_struct(VERIFY_READ, uss, uss_addr, 1)) { 918 goto out; 919 } 920 ret = target_restore_altstack(uss, env); 921 if (ret) { 922 goto out; 923 } 924 } 925 926 if (uoss_addr) { 927 memcpy(uoss, &oss, sizeof(oss)); 928 unlock_user_struct(uoss, uoss_addr, 1); 929 uoss = NULL; 930 } 931 ret = 0; 932 933 out: 934 if (uoss) { 935 unlock_user_struct(uoss, uoss_addr, 0); 936 } 937 return ret; 938 } 939 940 /* do_sigaction() return target values and host errnos */ 941 int do_sigaction(int sig, const struct target_sigaction *act, 942 struct target_sigaction *oact, abi_ulong ka_restorer) 943 { 944 struct target_sigaction *k; 945 struct sigaction act1; 946 int host_sig; 947 int ret = 0; 948 949 trace_signal_do_sigaction_guest(sig, TARGET_NSIG); 950 951 if (sig < 1 || sig > TARGET_NSIG) { 952 return -TARGET_EINVAL; 953 } 954 955 if (act && (sig == TARGET_SIGKILL || sig == TARGET_SIGSTOP)) { 956 return -TARGET_EINVAL; 957 } 958 959 if (block_signals()) { 960 return -QEMU_ERESTARTSYS; 961 } 962 963 k = &sigact_table[sig - 1]; 964 if (oact) { 965 __put_user(k->_sa_handler, &oact->_sa_handler); 966 __put_user(k->sa_flags, &oact->sa_flags); 967 #ifdef TARGET_ARCH_HAS_SA_RESTORER 968 __put_user(k->sa_restorer, &oact->sa_restorer); 969 #endif 970 /* Not swapped. */ 971 oact->sa_mask = k->sa_mask; 972 } 973 if (act) { 974 __get_user(k->_sa_handler, &act->_sa_handler); 975 __get_user(k->sa_flags, &act->sa_flags); 976 #ifdef TARGET_ARCH_HAS_SA_RESTORER 977 __get_user(k->sa_restorer, &act->sa_restorer); 978 #endif 979 #ifdef TARGET_ARCH_HAS_KA_RESTORER 980 k->ka_restorer = ka_restorer; 981 #endif 982 /* To be swapped in target_to_host_sigset. */ 983 k->sa_mask = act->sa_mask; 984 985 /* we update the host linux signal state */ 986 host_sig = target_to_host_signal(sig); 987 trace_signal_do_sigaction_host(host_sig, TARGET_NSIG); 988 if (host_sig > SIGRTMAX) { 989 /* we don't have enough host signals to map all target signals */ 990 qemu_log_mask(LOG_UNIMP, "Unsupported target signal #%d, ignored\n", 991 sig); 992 /* 993 * we don't return an error here because some programs try to 994 * register an handler for all possible rt signals even if they 995 * don't need it. 996 * An error here can abort them whereas there can be no problem 997 * to not have the signal available later. 998 * This is the case for golang, 999 * See https://github.com/golang/go/issues/33746 1000 * So we silently ignore the error. 1001 */ 1002 return 0; 1003 } 1004 if (host_sig != SIGSEGV && host_sig != SIGBUS) { 1005 sigfillset(&act1.sa_mask); 1006 act1.sa_flags = SA_SIGINFO; 1007 if (k->sa_flags & TARGET_SA_RESTART) 1008 act1.sa_flags |= SA_RESTART; 1009 /* NOTE: it is important to update the host kernel signal 1010 ignore state to avoid getting unexpected interrupted 1011 syscalls */ 1012 if (k->_sa_handler == TARGET_SIG_IGN) { 1013 act1.sa_sigaction = (void *)SIG_IGN; 1014 } else if (k->_sa_handler == TARGET_SIG_DFL) { 1015 if (fatal_signal (sig)) 1016 act1.sa_sigaction = host_signal_handler; 1017 else 1018 act1.sa_sigaction = (void *)SIG_DFL; 1019 } else { 1020 act1.sa_sigaction = host_signal_handler; 1021 } 1022 ret = sigaction(host_sig, &act1, NULL); 1023 } 1024 } 1025 return ret; 1026 } 1027 1028 static void handle_pending_signal(CPUArchState *cpu_env, int sig, 1029 struct emulated_sigtable *k) 1030 { 1031 CPUState *cpu = env_cpu(cpu_env); 1032 abi_ulong handler; 1033 sigset_t set; 1034 target_sigset_t target_old_set; 1035 struct target_sigaction *sa; 1036 TaskState *ts = cpu->opaque; 1037 1038 trace_user_handle_signal(cpu_env, sig); 1039 /* dequeue signal */ 1040 k->pending = 0; 1041 1042 sig = gdb_handlesig(cpu, sig); 1043 if (!sig) { 1044 sa = NULL; 1045 handler = TARGET_SIG_IGN; 1046 } else { 1047 sa = &sigact_table[sig - 1]; 1048 handler = sa->_sa_handler; 1049 } 1050 1051 if (unlikely(qemu_loglevel_mask(LOG_STRACE))) { 1052 print_taken_signal(sig, &k->info); 1053 } 1054 1055 if (handler == TARGET_SIG_DFL) { 1056 /* default handler : ignore some signal. The other are job control or fatal */ 1057 if (sig == TARGET_SIGTSTP || sig == TARGET_SIGTTIN || sig == TARGET_SIGTTOU) { 1058 kill(getpid(),SIGSTOP); 1059 } else if (sig != TARGET_SIGCHLD && 1060 sig != TARGET_SIGURG && 1061 sig != TARGET_SIGWINCH && 1062 sig != TARGET_SIGCONT) { 1063 dump_core_and_abort(cpu_env, sig); 1064 } 1065 } else if (handler == TARGET_SIG_IGN) { 1066 /* ignore sig */ 1067 } else if (handler == TARGET_SIG_ERR) { 1068 dump_core_and_abort(cpu_env, sig); 1069 } else { 1070 /* compute the blocked signals during the handler execution */ 1071 sigset_t *blocked_set; 1072 1073 target_to_host_sigset(&set, &sa->sa_mask); 1074 /* SA_NODEFER indicates that the current signal should not be 1075 blocked during the handler */ 1076 if (!(sa->sa_flags & TARGET_SA_NODEFER)) 1077 sigaddset(&set, target_to_host_signal(sig)); 1078 1079 /* save the previous blocked signal state to restore it at the 1080 end of the signal execution (see do_sigreturn) */ 1081 host_to_target_sigset_internal(&target_old_set, &ts->signal_mask); 1082 1083 /* block signals in the handler */ 1084 blocked_set = ts->in_sigsuspend ? 1085 &ts->sigsuspend_mask : &ts->signal_mask; 1086 sigorset(&ts->signal_mask, blocked_set, &set); 1087 ts->in_sigsuspend = 0; 1088 1089 /* if the CPU is in VM86 mode, we restore the 32 bit values */ 1090 #if defined(TARGET_I386) && !defined(TARGET_X86_64) 1091 { 1092 CPUX86State *env = cpu_env; 1093 if (env->eflags & VM_MASK) 1094 save_v86_state(env); 1095 } 1096 #endif 1097 /* prepare the stack frame of the virtual CPU */ 1098 #if defined(TARGET_ARCH_HAS_SETUP_FRAME) 1099 if (sa->sa_flags & TARGET_SA_SIGINFO) { 1100 setup_rt_frame(sig, sa, &k->info, &target_old_set, cpu_env); 1101 } else { 1102 setup_frame(sig, sa, &target_old_set, cpu_env); 1103 } 1104 #else 1105 /* These targets do not have traditional signals. */ 1106 setup_rt_frame(sig, sa, &k->info, &target_old_set, cpu_env); 1107 #endif 1108 if (sa->sa_flags & TARGET_SA_RESETHAND) { 1109 sa->_sa_handler = TARGET_SIG_DFL; 1110 } 1111 } 1112 } 1113 1114 void process_pending_signals(CPUArchState *cpu_env) 1115 { 1116 CPUState *cpu = env_cpu(cpu_env); 1117 int sig; 1118 TaskState *ts = cpu->opaque; 1119 sigset_t set; 1120 sigset_t *blocked_set; 1121 1122 while (qatomic_read(&ts->signal_pending)) { 1123 sigfillset(&set); 1124 sigprocmask(SIG_SETMASK, &set, 0); 1125 1126 restart_scan: 1127 sig = ts->sync_signal.pending; 1128 if (sig) { 1129 /* Synchronous signals are forced, 1130 * see force_sig_info() and callers in Linux 1131 * Note that not all of our queue_signal() calls in QEMU correspond 1132 * to force_sig_info() calls in Linux (some are send_sig_info()). 1133 * However it seems like a kernel bug to me to allow the process 1134 * to block a synchronous signal since it could then just end up 1135 * looping round and round indefinitely. 1136 */ 1137 if (sigismember(&ts->signal_mask, target_to_host_signal_table[sig]) 1138 || sigact_table[sig - 1]._sa_handler == TARGET_SIG_IGN) { 1139 sigdelset(&ts->signal_mask, target_to_host_signal_table[sig]); 1140 sigact_table[sig - 1]._sa_handler = TARGET_SIG_DFL; 1141 } 1142 1143 handle_pending_signal(cpu_env, sig, &ts->sync_signal); 1144 } 1145 1146 for (sig = 1; sig <= TARGET_NSIG; sig++) { 1147 blocked_set = ts->in_sigsuspend ? 1148 &ts->sigsuspend_mask : &ts->signal_mask; 1149 1150 if (ts->sigtab[sig - 1].pending && 1151 (!sigismember(blocked_set, 1152 target_to_host_signal_table[sig]))) { 1153 handle_pending_signal(cpu_env, sig, &ts->sigtab[sig - 1]); 1154 /* Restart scan from the beginning, as handle_pending_signal 1155 * might have resulted in a new synchronous signal (eg SIGSEGV). 1156 */ 1157 goto restart_scan; 1158 } 1159 } 1160 1161 /* if no signal is pending, unblock signals and recheck (the act 1162 * of unblocking might cause us to take another host signal which 1163 * will set signal_pending again). 1164 */ 1165 qatomic_set(&ts->signal_pending, 0); 1166 ts->in_sigsuspend = 0; 1167 set = ts->signal_mask; 1168 sigdelset(&set, SIGSEGV); 1169 sigdelset(&set, SIGBUS); 1170 sigprocmask(SIG_SETMASK, &set, 0); 1171 } 1172 ts->in_sigsuspend = 0; 1173 } 1174 1175 int process_sigsuspend_mask(sigset_t **pset, target_ulong sigset, 1176 target_ulong sigsize) 1177 { 1178 TaskState *ts = (TaskState *)thread_cpu->opaque; 1179 sigset_t *host_set = &ts->sigsuspend_mask; 1180 target_sigset_t *target_sigset; 1181 1182 if (sigsize != sizeof(*target_sigset)) { 1183 /* Like the kernel, we enforce correct size sigsets */ 1184 return -TARGET_EINVAL; 1185 } 1186 1187 target_sigset = lock_user(VERIFY_READ, sigset, sigsize, 1); 1188 if (!target_sigset) { 1189 return -TARGET_EFAULT; 1190 } 1191 target_to_host_sigset(host_set, target_sigset); 1192 unlock_user(target_sigset, sigset, 0); 1193 1194 *pset = host_set; 1195 return 0; 1196 } 1197