sigaction.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /* POSIX.1 `sigaction' call for Linux/x86-64.
  2. Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <errno.h>
  17. #include <stddef.h>
  18. #include <signal.h>
  19. #include <string.h>
  20. #include <sys/syscall.h>
  21. #include <bits/kernel_sigaction.h>
  22. /* We do not globally define the SA_RESTORER flag so do it here. */
  23. #define SA_RESTORER 0x04000000
  24. #ifdef __NR_rt_sigaction
  25. /* Using the hidden attribute here does not change the code but it
  26. helps to avoid warnings. */
  27. extern void restore_rt(void) __asm__ ("__restore_rt") attribute_hidden;
  28. extern void restore(void) __asm__ ("__restore") attribute_hidden;
  29. /* If ACT is not NULL, change the action for SIG to *ACT.
  30. If OACT is not NULL, put the old action for SIG in *OACT. */
  31. int
  32. __libc_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
  33. {
  34. struct sigaction kact;
  35. if (act) {
  36. memcpy(&kact, act, sizeof(kact));
  37. kact.sa_flags |= SA_RESTORER;
  38. kact.sa_restorer = &restore_rt;
  39. act = &kact;
  40. }
  41. /* NB: kernel (as of 2.6.25) will return EINVAL
  42. * if sizeof(act->sa_mask) does not match kernel's sizeof(sigset_t) */
  43. return INLINE_SYSCALL(rt_sigaction, 4, sig, act, oact, sizeof(act->sa_mask));
  44. }
  45. #else
  46. extern void restore(void) __asm__ ("__restore") attribute_hidden;
  47. /* If ACT is not NULL, change the action for SIG to *ACT.
  48. If OACT is not NULL, put the old action for SIG in *OACT. */
  49. int
  50. __libc_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
  51. {
  52. int result;
  53. struct old_kernel_sigaction kact, koact;
  54. if (act) {
  55. kact.k_sa_handler = act->sa_handler;
  56. kact.sa_mask = act->sa_mask.__val[0];
  57. kact.sa_flags = act->sa_flags | SA_RESTORER;
  58. kact.sa_restorer = &restore;
  59. }
  60. __asm__ __volatile__ (
  61. "syscall\n"
  62. : "=a" (result)
  63. : "0" (__NR_sigaction), "mr" (sig),
  64. "c" (act ? &kact : NULL),
  65. "d" (oact ? &koact : NULL));
  66. if (result < 0) {
  67. __set_errno(-result);
  68. return -1;
  69. }
  70. if (oact) {
  71. oact->sa_handler = koact.k_sa_handler;
  72. oact->sa_mask.__val[0] = koact.sa_mask;
  73. oact->sa_flags = koact.sa_flags;
  74. oact->sa_restorer = koact.sa_restorer;
  75. }
  76. return result;
  77. }
  78. #endif
  79. #ifndef LIBC_SIGACTION
  80. # ifndef __UCLIBC_HAS_THREADS__
  81. strong_alias(__libc_sigaction,sigaction)
  82. libc_hidden_def(sigaction)
  83. # else
  84. weak_alias(__libc_sigaction,sigaction)
  85. libc_hidden_weak(sigaction)
  86. # endif
  87. #endif
  88. /* NOTE: Please think twice before making any changes to the bits of
  89. code below. GDB needs some intimate knowledge about it to
  90. recognize them as signal trampolines, and make backtraces through
  91. signal handlers work right. Important are both the names
  92. (__restore_rt) and the exact instruction sequence.
  93. If you ever feel the need to make any changes, please notify the
  94. appropriate GDB maintainer. */
  95. #define RESTORE(name, syscall) RESTORE2(name, syscall)
  96. #define RESTORE2(name, syscall) \
  97. __asm__ ( \
  98. ".text\n" \
  99. "__" #name ":\n" \
  100. " movq $" #syscall ", %rax\n" \
  101. " syscall\n" \
  102. );
  103. #ifdef __NR_rt_sigaction
  104. /* The return code for realtime-signals. */
  105. RESTORE(restore_rt, __NR_rt_sigreturn)
  106. #endif
  107. #ifdef __NR_sigreturn
  108. RESTORE(restore, __NR_sigreturn)
  109. #endif