OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / i386 / sigaction.c
1 /* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with the GNU C Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  
18
19    Totally hacked up for uClibc by Erik Andersen <andersen@codepoet.org>
20    */
21
22 #include <errno.h>
23 #include <signal.h>
24 #include <string.h>
25 #include <sys/syscall.h>
26 #include <bits/kernel_sigaction.h>
27
28 #define SA_RESTORER     0x04000000
29
30
31 #if defined __NR_rt_sigaction
32 libc_hidden_proto(memcpy)
33
34 extern void restore_rt (void) asm ("__restore_rt") attribute_hidden;
35 extern void restore (void) asm ("__restore") attribute_hidden;
36
37 /* If ACT is not NULL, change the action for SIG to *ACT.
38    If OACT is not NULL, put the old action for SIG in *OACT.  */
39 int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
40 {
41     int result;
42     struct kernel_sigaction kact, koact;
43
44 #ifdef SIGCANCEL
45     if (sig == SIGCANCEL) {
46         __set_errno (EINVAL);
47         return -1;
48     }
49 #endif
50
51     if (act) {
52         kact.k_sa_handler = act->sa_handler;
53         memcpy (&kact.sa_mask, &act->sa_mask, sizeof (kact.sa_mask));
54         kact.sa_flags = act->sa_flags;
55
56         kact.sa_flags = act->sa_flags | SA_RESTORER;
57         kact.sa_restorer = ((act->sa_flags & SA_SIGINFO)
58                 ? &restore_rt : &restore);
59     }
60
61     /* XXX The size argument hopefully will have to be changed to the
62        real size of the user-level sigset_t.  */
63     result = __syscall_rt_sigaction(sig, act ? __ptrvalue (&kact) : NULL,
64             oact ? __ptrvalue (&koact) : NULL, _NSIG / 8);
65
66     if (oact && result >= 0) {
67         oact->sa_handler = koact.k_sa_handler;
68         memcpy (&oact->sa_mask, &koact.sa_mask, sizeof (oact->sa_mask));
69         oact->sa_flags = koact.sa_flags;
70         oact->sa_restorer = koact.sa_restorer;
71     }
72     return result;
73 }
74
75
76 #else
77 extern void restore (void) asm ("__restore") attribute_hidden;
78
79 /* If ACT is not NULL, change the action for SIG to *ACT.
80    If OACT is not NULL, put the old action for SIG in *OACT.  */
81 int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
82 {
83     int result;
84     struct old_kernel_sigaction kact, koact;
85
86 #ifdef SIGCANCEL
87     if (sig == SIGCANCEL) {
88         __set_errno (EINVAL);
89         return -1;
90     }
91 #endif
92
93     if (act) {
94         kact.k_sa_handler = act->sa_handler;
95         kact.sa_mask = act->sa_mask.__val[0];
96         kact.sa_flags = act->sa_flags | SA_RESTORER;
97         kact.sa_restorer = &restore;
98     }
99
100     asm volatile ("pushl %%ebx\n"
101             "movl %2, %%ebx\n"
102             "int $0x80\n"
103             "popl %%ebx"
104             : "=a" (result)
105             : "0" (__NR_sigaction), "mr" (sig),
106             "c" (act ? __ptrvalue (&kact) : 0),
107             "d" (oact ? __ptrvalue (&koact) : 0));
108
109     if (result < 0) {
110         __set_errno(-result);
111         return -1;
112     }
113
114     if (oact) {
115         oact->sa_handler = koact.k_sa_handler;
116         oact->sa_mask.__val[0] = koact.sa_mask;
117         oact->sa_flags = koact.sa_flags;
118         oact->sa_restorer = koact.sa_restorer;
119     }
120     return result;
121 }
122
123 #endif
124
125 #ifndef LIBC_SIGACTION
126 strong_alias(__libc_sigaction,sigaction)
127 libc_hidden_proto(sigaction)
128 libc_hidden_def(sigaction)
129 #endif
130
131
132
133
134 /* NOTE: Please think twice before making any changes to the bits of
135    code below.  GDB needs some intimate knowledge about it to
136    recognize them as signal trampolines, and make backtraces through
137    signal handlers work right.  Important are both the names
138    (__restore and __restore_rt) and the exact instruction sequence.
139    If you ever feel the need to make any changes, please notify the
140    appropriate GDB maintainer.  */
141
142 #define RESTORE(name, syscall) RESTORE2 (name, syscall)
143 #define RESTORE2(name, syscall) \
144 asm                                             \
145   (                                             \
146    ".text\n"                                    \
147    "    .align 16\n"                            \
148    "__" #name ":\n"                             \
149    "    movl $" #syscall ", %eax\n"             \
150    "    int  $0x80"                             \
151    );
152
153 #ifdef __NR_rt_sigaction
154 /* The return code for realtime-signals.  */
155 RESTORE (restore_rt, __NR_rt_sigreturn)
156 #endif
157
158 /* For the boring old signals.  */
159 # undef RESTORE2
160 # define RESTORE2(name, syscall) \
161 asm                                             \
162   (                                             \
163    ".text\n"                                    \
164    "    .align 8\n"                             \
165    "__" #name ":\n"                             \
166    "    popl %eax\n"                            \
167    "    movl $" #syscall ", %eax\n"             \
168    "    int  $0x80"                             \
169    );
170
171 RESTORE (restore, __NR_sigreturn)