sigaction.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. /* The difference here is that the sigaction structure used in the
  22. kernel is not the same as we use in the libc. Therefore we must
  23. translate it here. */
  24. #include <bits/kernel_sigaction.h>
  25. /* We do not globally define the SA_RESTORER flag so do it here. */
  26. #define SA_RESTORER 0x04000000
  27. extern __typeof(sigaction) __libc_sigaction;
  28. #ifdef __NR_rt_sigaction
  29. /* Using the hidden attribute here does not change the code but it
  30. helps to avoid warnings. */
  31. extern void restore_rt (void) asm ("__restore_rt") attribute_hidden;
  32. extern void restore (void) asm ("__restore") attribute_hidden;
  33. libc_hidden_proto(memcpy)
  34. /* If ACT is not NULL, change the action for SIG to *ACT.
  35. If OACT is not NULL, put the old action for SIG in *OACT. */
  36. int
  37. __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
  38. {
  39. int result;
  40. struct kernel_sigaction kact, koact;
  41. if (act) {
  42. kact.k_sa_handler = act->sa_handler;
  43. memcpy (&kact.sa_mask, &act->sa_mask, sizeof (sigset_t));
  44. kact.sa_flags = act->sa_flags | SA_RESTORER;
  45. kact.sa_restorer = &restore_rt;
  46. }
  47. /* XXX The size argument hopefully will have to be changed to the
  48. real size of the user-level sigset_t. */
  49. result = INLINE_SYSCALL (rt_sigaction, 4,
  50. sig, act ? __ptrvalue (&kact) : NULL,
  51. oact ? __ptrvalue (&koact) : NULL, _NSIG / 8);
  52. if (oact && result >= 0) {
  53. oact->sa_handler = koact.k_sa_handler;
  54. memcpy (&oact->sa_mask, &koact.sa_mask, sizeof (sigset_t));
  55. oact->sa_flags = koact.sa_flags;
  56. oact->sa_restorer = koact.sa_restorer;
  57. }
  58. return result;
  59. }
  60. #else
  61. extern void restore (void) asm ("__restore") attribute_hidden;
  62. /* If ACT is not NULL, change the action for SIG to *ACT.
  63. If OACT is not NULL, put the old action for SIG in *OACT. */
  64. int
  65. __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
  66. {
  67. int result;
  68. struct old_kernel_sigaction kact, koact;
  69. #ifdef SIGCANCEL
  70. if (sig == SIGCANCEL) {
  71. __set_errno (EINVAL);
  72. return -1;
  73. }
  74. #endif
  75. if (act) {
  76. kact.k_sa_handler = act->sa_handler;
  77. kact.sa_mask = act->sa_mask.__val[0];
  78. kact.sa_flags = act->sa_flags | SA_RESTORER;
  79. kact.sa_restorer = &restore;
  80. }
  81. asm volatile ("syscall\n"
  82. : "=a" (result)
  83. : "0" (__NR_sigaction), "mr" (sig),
  84. "c" (act ? __ptrvalue (&kact) : 0),
  85. "d" (oact ? __ptrvalue (&koact) : 0));
  86. if (result < 0) {
  87. __set_errno(-result);
  88. return -1;
  89. }
  90. if (oact) {
  91. oact->sa_handler = koact.k_sa_handler;
  92. oact->sa_mask.__val[0] = koact.sa_mask;
  93. oact->sa_flags = koact.sa_flags;
  94. oact->sa_restorer = koact.sa_restorer;
  95. }
  96. return result;
  97. }
  98. #endif
  99. #ifndef LIBC_SIGACTION
  100. libc_hidden_proto(sigaction)
  101. weak_alias(__libc_sigaction,sigaction)
  102. libc_hidden_def(sigaction)
  103. #endif
  104. /* NOTE: Please think twice before making any changes to the bits of
  105. code below. GDB needs some intimate knowledge about it to
  106. recognize them as signal trampolines, and make backtraces through
  107. signal handlers work right. Important are both the names
  108. (__restore_rt) and the exact instruction sequence.
  109. If you ever feel the need to make any changes, please notify the
  110. appropriate GDB maintainer. */
  111. #define RESTORE(name, syscall) RESTORE2 (name, syscall)
  112. # define RESTORE2(name, syscall) \
  113. asm \
  114. ( \
  115. ".text\n" \
  116. ".align 16\n" \
  117. "__" #name ":\n" \
  118. " movq $" #syscall ", %rax\n" \
  119. " syscall\n" \
  120. );
  121. #ifdef __NR_rt_sigaction
  122. /* The return code for realtime-signals. */
  123. RESTORE (restore_rt, __NR_rt_sigreturn)
  124. #endif
  125. #ifdef __NR_sigreturn
  126. RESTORE (restore, __NR_sigreturn)
  127. #endif