sigaction.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. see <http://www.gnu.org/licenses/>.
  14. Totally hacked up for uClibc by Erik Andersen <andersen@codepoet.org>
  15. */
  16. #include <errno.h>
  17. #include <signal.h>
  18. #include <string.h>
  19. #include <sys/syscall.h>
  20. #include <bits/kernel_sigaction.h>
  21. #define SA_RESTORER 0x04000000
  22. #if defined __NR_rt_sigaction
  23. extern void restore_rt(void) __asm__ ("__restore_rt") attribute_hidden;
  24. extern void restore(void) __asm__ ("__restore") attribute_hidden;
  25. /* If ACT is not NULL, change the action for SIG to *ACT.
  26. If OACT is not NULL, put the old action for SIG in *OACT. */
  27. int __libc_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
  28. {
  29. struct sigaction kact;
  30. if (act) {
  31. memcpy(&kact, act, sizeof(kact));
  32. kact.sa_flags |= SA_RESTORER;
  33. kact.sa_restorer = (act->sa_flags & SA_SIGINFO) ? &restore_rt : &restore;
  34. act = &kact;
  35. }
  36. /* NB: kernel (as of 2.6.25) will return EINVAL
  37. * if sizeof(act->sa_mask) does not match kernel's sizeof(sigset_t) */
  38. return __syscall_rt_sigaction(sig, act, oact, sizeof(act->sa_mask));
  39. }
  40. #else
  41. extern void restore(void) __asm__ ("__restore") attribute_hidden;
  42. /* If ACT is not NULL, change the action for SIG to *ACT.
  43. If OACT is not NULL, put the old action for SIG in *OACT. */
  44. int __libc_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
  45. {
  46. int result;
  47. struct old_kernel_sigaction kact, koact;
  48. if (act) {
  49. kact.k_sa_handler = act->sa_handler;
  50. kact.sa_mask = act->sa_mask.__val[0];
  51. kact.sa_flags = act->sa_flags | SA_RESTORER;
  52. kact.sa_restorer = &restore;
  53. }
  54. __asm__ __volatile__ (
  55. " pushl %%ebx\n"
  56. " movl %3, %%ebx\n"
  57. " int $0x80\n"
  58. " popl %%ebx\n"
  59. : "=a" (result), "=m" (koact)
  60. : "0" (__NR_sigaction), "r" (sig), "m" (kact),
  61. "c" (act ? &kact : NULL),
  62. "d" (oact ? &koact : NULL));
  63. if (result < 0) {
  64. __set_errno(-result);
  65. return -1;
  66. }
  67. if (oact) {
  68. oact->sa_handler = koact.k_sa_handler;
  69. oact->sa_mask.__val[0] = koact.sa_mask;
  70. oact->sa_flags = koact.sa_flags;
  71. oact->sa_restorer = koact.sa_restorer;
  72. }
  73. return result;
  74. }
  75. #endif
  76. #ifndef LIBC_SIGACTION
  77. # ifndef __UCLIBC_HAS_THREADS__
  78. strong_alias(__libc_sigaction,sigaction)
  79. libc_hidden_def(sigaction)
  80. # else
  81. weak_alias(__libc_sigaction,sigaction)
  82. libc_hidden_weak(sigaction)
  83. # endif
  84. #endif
  85. /* NOTE: Please think twice before making any changes to the bits of
  86. code below. GDB needs some intimate knowledge about it to
  87. recognize them as signal trampolines, and make backtraces through
  88. signal handlers work right. Important are both the names
  89. (__restore and __restore_rt) and the exact instruction sequence.
  90. If you ever feel the need to make any changes, please notify the
  91. appropriate GDB maintainer. */
  92. #define RESTORE(name, syscall) RESTORE2(name, syscall)
  93. #ifdef __NR_rt_sigaction
  94. /* The return code for realtime-signals. */
  95. # define RESTORE2(name, syscall) \
  96. __asm__ ( \
  97. "nop\n" \
  98. ".text\n" \
  99. "__" #name ":\n" \
  100. " movl $" #syscall ", %eax\n" \
  101. " int $0x80\n" \
  102. );
  103. RESTORE(restore_rt, __NR_rt_sigreturn)
  104. #endif
  105. #ifdef __NR_sigreturn
  106. /* For the boring old signals. */
  107. # undef RESTORE2
  108. # define RESTORE2(name, syscall) \
  109. __asm__ ( \
  110. "nop\n" \
  111. ".text\n" \
  112. "__" #name ":\n" \
  113. " popl %eax\n" \
  114. " movl $" #syscall ", %eax\n" \
  115. " int $0x80\n" \
  116. );
  117. RESTORE(restore, __NR_sigreturn)
  118. #endif