2 * Copyright 2004-2010 Analog Devices Inc.
4 * Licensed under the GPL-2 or later
7 #include <linux/signal.h>
8 #include <linux/syscalls.h>
9 #include <linux/ptrace.h>
10 #include <linux/tty.h>
11 #include <linux/personality.h>
12 #include <linux/binfmts.h>
13 #include <linux/freezer.h>
14 #include <linux/uaccess.h>
15 #include <linux/tracehook.h>
17 #include <asm/cacheflush.h>
18 #include <asm/ucontext.h>
19 #include <asm/fixed_code.h>
20 #include <asm/syscall.h>
22 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
24 /* Location of the trace bit in SYSCFG. */
25 #define TRACE_BITS 0x0001
27 struct fdpic_func_descriptor
{
34 struct siginfo
*pinfo
;
36 /* This is no longer needed by the kernel, but unfortunately userspace
37 * code expects it to be there. */
43 asmlinkage
int sys_sigaltstack(const stack_t __user
*uss
, stack_t __user
*uoss
)
45 return do_sigaltstack(uss
, uoss
, rdusp());
49 rt_restore_sigcontext(struct pt_regs
*regs
, struct sigcontext __user
*sc
, int *pr0
)
51 unsigned long usp
= 0;
54 /* Always make any pending restarted system calls return -EINTR */
55 current_thread_info()->restart_block
.fn
= do_no_restart_syscall
;
57 #define RESTORE(x) err |= __get_user(regs->x, &sc->sc_##x)
59 /* restore passed registers */
60 RESTORE(r0
); RESTORE(r1
); RESTORE(r2
); RESTORE(r3
);
61 RESTORE(r4
); RESTORE(r5
); RESTORE(r6
); RESTORE(r7
);
62 RESTORE(p0
); RESTORE(p1
); RESTORE(p2
); RESTORE(p3
);
63 RESTORE(p4
); RESTORE(p5
);
64 err
|= __get_user(usp
, &sc
->sc_usp
);
66 RESTORE(a0w
); RESTORE(a1w
);
67 RESTORE(a0x
); RESTORE(a1x
);
73 RESTORE(i0
); RESTORE(i1
); RESTORE(i2
); RESTORE(i3
);
74 RESTORE(m0
); RESTORE(m1
); RESTORE(m2
); RESTORE(m3
);
75 RESTORE(l0
); RESTORE(l1
); RESTORE(l2
); RESTORE(l3
);
76 RESTORE(b0
); RESTORE(b1
); RESTORE(b2
); RESTORE(b3
);
77 RESTORE(lc0
); RESTORE(lc1
);
78 RESTORE(lt0
); RESTORE(lt1
);
79 RESTORE(lb0
); RESTORE(lb1
);
82 regs
->orig_p0
= -1; /* disable syscall checks */
88 asmlinkage
int do_rt_sigreturn(unsigned long __unused
)
90 struct pt_regs
*regs
= (struct pt_regs
*)__unused
;
91 unsigned long usp
= rdusp();
92 struct rt_sigframe
*frame
= (struct rt_sigframe
*)(usp
);
96 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
98 if (__copy_from_user(&set
, &frame
->uc
.uc_sigmask
, sizeof(set
)))
101 sigdelsetmask(&set
, ~_BLOCKABLE
);
102 set_current_blocked(&set
);
104 if (rt_restore_sigcontext(regs
, &frame
->uc
.uc_mcontext
, &r0
))
107 if (do_sigaltstack(&frame
->uc
.uc_stack
, NULL
, regs
->usp
) == -EFAULT
)
113 force_sig(SIGSEGV
, current
);
117 static inline int rt_setup_sigcontext(struct sigcontext
*sc
, struct pt_regs
*regs
)
121 #define SETUP(x) err |= __put_user(regs->x, &sc->sc_##x)
123 SETUP(r0
); SETUP(r1
); SETUP(r2
); SETUP(r3
);
124 SETUP(r4
); SETUP(r5
); SETUP(r6
); SETUP(r7
);
125 SETUP(p0
); SETUP(p1
); SETUP(p2
); SETUP(p3
);
126 SETUP(p4
); SETUP(p5
);
127 err
|= __put_user(rdusp(), &sc
->sc_usp
);
128 SETUP(a0w
); SETUP(a1w
);
129 SETUP(a0x
); SETUP(a1x
);
135 SETUP(i0
); SETUP(i1
); SETUP(i2
); SETUP(i3
);
136 SETUP(m0
); SETUP(m1
); SETUP(m2
); SETUP(m3
);
137 SETUP(l0
); SETUP(l1
); SETUP(l2
); SETUP(l3
);
138 SETUP(b0
); SETUP(b1
); SETUP(b2
); SETUP(b3
);
139 SETUP(lc0
); SETUP(lc1
);
140 SETUP(lt0
); SETUP(lt1
);
141 SETUP(lb0
); SETUP(lb1
);
147 static inline void *get_sigframe(struct k_sigaction
*ka
, struct pt_regs
*regs
,
152 /* Default to using normal stack. */
155 /* This is the X/Open sanctioned signal stack switching. */
156 if (ka
->sa
.sa_flags
& SA_ONSTACK
) {
157 if (!on_sig_stack(usp
))
158 usp
= current
->sas_ss_sp
+ current
->sas_ss_size
;
160 return (void *)((usp
- frame_size
) & -8UL);
164 setup_rt_frame(int sig
, struct k_sigaction
*ka
, siginfo_t
* info
,
165 sigset_t
* set
, struct pt_regs
*regs
)
167 struct rt_sigframe
*frame
;
170 frame
= get_sigframe(ka
, regs
, sizeof(*frame
));
172 err
|= __put_user((current_thread_info()->exec_domain
173 && current_thread_info()->exec_domain
->signal_invmap
175 ? current_thread_info()->exec_domain
->
176 signal_invmap
[sig
] : sig
), &frame
->sig
);
178 err
|= __put_user(&frame
->info
, &frame
->pinfo
);
179 err
|= __put_user(&frame
->uc
, &frame
->puc
);
180 err
|= copy_siginfo_to_user(&frame
->info
, info
);
182 /* Create the ucontext. */
183 err
|= __put_user(0, &frame
->uc
.uc_flags
);
184 err
|= __put_user(0, &frame
->uc
.uc_link
);
186 __put_user((void *)current
->sas_ss_sp
, &frame
->uc
.uc_stack
.ss_sp
);
187 err
|= __put_user(sas_ss_flags(rdusp()), &frame
->uc
.uc_stack
.ss_flags
);
188 err
|= __put_user(current
->sas_ss_size
, &frame
->uc
.uc_stack
.ss_size
);
189 err
|= rt_setup_sigcontext(&frame
->uc
.uc_mcontext
, regs
);
190 err
|= copy_to_user(&frame
->uc
.uc_sigmask
, set
, sizeof(*set
));
195 /* Set up registers for signal handler */
196 wrusp((unsigned long)frame
);
197 if (current
->personality
& FDPIC_FUNCPTRS
) {
198 struct fdpic_func_descriptor __user
*funcptr
=
199 (struct fdpic_func_descriptor
*) ka
->sa
.sa_handler
;
200 __get_user(regs
->pc
, &funcptr
->text
);
201 __get_user(regs
->p3
, &funcptr
->GOT
);
203 regs
->pc
= (unsigned long)ka
->sa
.sa_handler
;
204 regs
->rets
= SIGRETURN_STUB
;
206 regs
->r0
= frame
->sig
;
207 regs
->r1
= (unsigned long)(&frame
->info
);
208 regs
->r2
= (unsigned long)(&frame
->uc
);
214 ka
->sa
.sa_handler
= SIG_DFL
;
215 force_sig(SIGSEGV
, current
);
220 handle_restart(struct pt_regs
*regs
, struct k_sigaction
*ka
, int has_handler
)
223 case -ERESTARTNOHAND
:
230 if (has_handler
&& !(ka
->sa
.sa_flags
& SA_RESTART
)) {
235 case -ERESTARTNOINTR
:
237 regs
->p0
= regs
->orig_p0
;
238 regs
->r0
= regs
->orig_r0
;
242 case -ERESTART_RESTARTBLOCK
:
243 regs
->p0
= __NR_restart_syscall
;
250 * OK, we're invoking a handler
253 handle_signal(int sig
, siginfo_t
*info
, struct k_sigaction
*ka
,
254 sigset_t
*oldset
, struct pt_regs
*regs
)
258 /* are we from a system call? to see pt_regs->orig_p0 */
259 if (regs
->orig_p0
>= 0)
260 /* If so, check system call restarting.. */
261 handle_restart(regs
, ka
, 1);
263 /* set up the stack frame */
264 ret
= setup_rt_frame(sig
, ka
, info
, oldset
, regs
);
267 block_sigmask(ka
, sig
);
273 * Note that 'init' is a special process: it doesn't get signals it doesn't
274 * want to handle. Thus you cannot kill init even with a SIGKILL even by
277 * Note that we go through the signals twice: once to check the signals
278 * that the kernel can handle, and then we build all the user-level signal
279 * handling stack-frames in one go after that.
281 asmlinkage
void do_signal(struct pt_regs
*regs
)
285 struct k_sigaction ka
;
288 current
->thread
.esp0
= (unsigned long)regs
;
293 if (test_thread_flag(TIF_RESTORE_SIGMASK
))
294 oldset
= ¤t
->saved_sigmask
;
296 oldset
= ¤t
->blocked
;
298 signr
= get_signal_to_deliver(&info
, &ka
, regs
, NULL
);
300 /* Whee! Actually deliver the signal. */
301 if (handle_signal(signr
, &info
, &ka
, oldset
, regs
) == 0) {
302 /* a signal was successfully delivered; the saved
303 * sigmask will have been stored in the signal frame,
304 * and will be restored by sigreturn, so we can simply
305 * clear the TIF_RESTORE_SIGMASK flag */
306 if (test_thread_flag(TIF_RESTORE_SIGMASK
))
307 clear_thread_flag(TIF_RESTORE_SIGMASK
);
309 tracehook_signal_handler(signr
, &info
, &ka
, regs
,
310 test_thread_flag(TIF_SINGLESTEP
));
317 /* Did we come from a system call? */
318 if (regs
->orig_p0
>= 0)
319 /* Restart the system call - no handlers present */
320 handle_restart(regs
, NULL
, 0);
322 /* if there's no signal to deliver, we just put the saved sigmask
324 if (test_thread_flag(TIF_RESTORE_SIGMASK
)) {
325 clear_thread_flag(TIF_RESTORE_SIGMASK
);
326 sigprocmask(SIG_SETMASK
, ¤t
->saved_sigmask
, NULL
);
331 * notification of userspace execution resumption
333 asmlinkage
void do_notify_resume(struct pt_regs
*regs
)
335 if (test_thread_flag(TIF_SIGPENDING
) || test_thread_flag(TIF_RESTORE_SIGMASK
))
338 if (test_thread_flag(TIF_NOTIFY_RESUME
)) {
339 clear_thread_flag(TIF_NOTIFY_RESUME
);
340 tracehook_notify_resume(regs
);
341 if (current
->replacement_session_keyring
)
342 key_replace_session_keyring();