2
0

signal-common.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. int host_to_target_signal(int sig);
  36. void host_to_target_sigset(target_sigset_t *d, const sigset_t *s);
  37. void process_pending_signals(CPUArchState *env);
  38. void queue_signal(CPUArchState *env, int sig, int si_type,
  39. target_siginfo_t *info);
  40. void signal_init(void);
  41. int target_to_host_signal(int sig);
  42. void target_to_host_sigset(sigset_t *d, const target_sigset_t *s);
  43. /*
  44. * Within QEMU the top 8 bits of si_code indicate which of the parts of the
  45. * union in target_siginfo is valid. This only applies between
  46. * host_to_target_siginfo_noswap() and tswap_siginfo(); it does not appear
  47. * either within host siginfo_t or in target_siginfo structures which we get
  48. * from the guest userspace program. Linux kenrels use this internally, but BSD
  49. * kernels don't do this, but its a useful abstraction.
  50. *
  51. * The linux-user version of this uses the top 16 bits, but FreeBSD's SI_USER
  52. * and other signal indepenent SI_ codes have bit 16 set, so we only use the top
  53. * byte instead.
  54. *
  55. * For FreeBSD, we have si_pid, si_uid, si_status, and si_addr always. Linux and
  56. * {Open,Net}BSD have a different approach (where their reason field is larger,
  57. * but whose siginfo has fewer fields always).
  58. *
  59. * QEMU_SI_CAPSICUM is currently only FreeBSD 14 current only, so only define
  60. * it where _capsicum is available.
  61. */
  62. #define QEMU_SI_NOINFO 0 /* nothing other than si_signo valid */
  63. #define QEMU_SI_FAULT 1 /* _fault is valid in _reason */
  64. #define QEMU_SI_TIMER 2 /* _timer is valid in _reason */
  65. #define QEMU_SI_MESGQ 3 /* _mesgq is valid in _reason */
  66. #define QEMU_SI_POLL 4 /* _poll is valid in _reason */
  67. #if defined(__FreeBSD_version) && __FreeBSD_version >= 1400026
  68. #define QEMU_SI_CAPSICUM 5 /* _capsicum is valid in _reason */
  69. #endif
  70. #endif