2
0

signal-common.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Emulation of BSD signals
  3. *
  4. * Copyright (c) 2013 Stacey Son
  5. *
  6. * SPDX-License-Identifier: GPL-2.0-or-later
  7. */
  8. #ifndef SIGNAL_COMMON_H
  9. #define SIGNAL_COMMON_H
  10. /**
  11. * block_signals: block all signals while handling this guest syscall
  12. *
  13. * Block all signals, and arrange that the signal mask is returned to
  14. * its correct value for the guest before we resume execution of guest code.
  15. * If this function returns non-zero, then the caller should immediately
  16. * return -TARGET_ERESTARTSYS to the main loop, which will take the pending
  17. * signal and restart execution of the syscall.
  18. * If block_signals() returns zero, then the caller can continue with
  19. * emulation of the system call knowing that no signals can be taken
  20. * (and therefore that no race conditions will result).
  21. * This should only be called once, because if it is called a second time
  22. * it will always return non-zero. (Think of it like a mutex that can't
  23. * be recursively locked.)
  24. * Signals will be unblocked again by process_pending_signals().
  25. *
  26. * Return value: non-zero if there was a pending signal, zero if not.
  27. */
  28. int block_signals(void); /* Returns non zero if signal pending */
  29. long do_rt_sigreturn(CPUArchState *env);
  30. int do_sigaction(int sig, const struct target_sigaction *act,
  31. struct target_sigaction *oact);
  32. abi_long do_sigaltstack(abi_ulong uss_addr, abi_ulong uoss_addr, abi_ulong sp);
  33. long do_sigreturn(CPUArchState *env, abi_ulong addr);
  34. void force_sig_fault(int sig, int code, abi_ulong addr);
  35. void host_to_target_siginfo(target_siginfo_t *tinfo, const siginfo_t *info);
  36. int host_to_target_signal(int sig);
  37. void host_to_target_sigset(target_sigset_t *d, const sigset_t *s);
  38. void process_pending_signals(CPUArchState *env);
  39. void queue_signal(CPUArchState *env, int sig, int si_type,
  40. target_siginfo_t *info);
  41. void signal_init(void);
  42. int target_to_host_signal(int sig);
  43. void target_to_host_sigset(sigset_t *d, const target_sigset_t *s);
  44. /*
  45. * Within QEMU the top 8 bits of si_code indicate which of the parts of the
  46. * union in target_siginfo is valid. This only applies between
  47. * host_to_target_siginfo_noswap() and tswap_siginfo(); it does not appear
  48. * either within host siginfo_t or in target_siginfo structures which we get
  49. * from the guest userspace program. Linux kernels use this internally, but BSD
  50. * kernels don't do this, but its a useful abstraction.
  51. *
  52. * The linux-user version of this uses the top 16 bits, but FreeBSD's SI_USER
  53. * and other signal independent SI_ codes have bit 16 set, so we only use the top
  54. * byte instead.
  55. *
  56. * For FreeBSD, we have si_pid, si_uid, si_status, and si_addr always. Linux and
  57. * {Open,Net}BSD have a different approach (where their reason field is larger,
  58. * but whose siginfo has fewer fields always).
  59. *
  60. * QEMU_SI_CAPSICUM is currently only FreeBSD 14 current only, so only define
  61. * it where _capsicum is available.
  62. */
  63. #define QEMU_SI_NOINFO 0 /* nothing other than si_signo valid */
  64. #define QEMU_SI_FAULT 1 /* _fault is valid in _reason */
  65. #define QEMU_SI_TIMER 2 /* _timer is valid in _reason */
  66. #define QEMU_SI_MESGQ 3 /* _mesgq is valid in _reason */
  67. #define QEMU_SI_POLL 4 /* _poll is valid in _reason */
  68. #if defined(__FreeBSD_version) && __FreeBSD_version >= 1400026
  69. #define QEMU_SI_CAPSICUM 5 /* _capsicum is valid in _reason */
  70. #endif
  71. #endif