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/uaccess.h>
14 #include <linux/tracehook.h>
15 #include <linux/sched/task_stack.h>
17 #include <asm/cacheflush.h>
18 #include <asm/ucontext.h>
19 #include <asm/fixed_code.h>
20 #include <asm/syscall.h>
22 /* Location of the trace bit in SYSCFG. */
23 #define TRACE_BITS 0x0001
25 struct fdpic_func_descriptor
{
32 struct siginfo
*pinfo
;
34 /* This is no longer needed by the kernel, but unfortunately userspace
35 * code expects it to be there. */
42 rt_restore_sigcontext(struct pt_regs
*regs
, struct sigcontext __user
*sc
, int *pr0
)
44 unsigned long usp
= 0;
47 /* Always make any pending restarted system calls return -EINTR */
48 current
->restart_block
.fn
= do_no_restart_syscall
;
50 #define RESTORE(x) err |= __get_user(regs->x, &sc->sc_##x)
52 /* restore passed registers */
53 RESTORE(r0
); RESTORE(r1
); RESTORE(r2
); RESTORE(r3
);
54 RESTORE(r4
); RESTORE(r5
); RESTORE(r6
); RESTORE(r7
);
55 RESTORE(p0
); RESTORE(p1
); RESTORE(p2
); RESTORE(p3
);
56 RESTORE(p4
); RESTORE(p5
);
57 err
|= __get_user(usp
, &sc
->sc_usp
);
59 RESTORE(a0w
); RESTORE(a1w
);
60 RESTORE(a0x
); RESTORE(a1x
);
66 RESTORE(i0
); RESTORE(i1
); RESTORE(i2
); RESTORE(i3
);
67 RESTORE(m0
); RESTORE(m1
); RESTORE(m2
); RESTORE(m3
);
68 RESTORE(l0
); RESTORE(l1
); RESTORE(l2
); RESTORE(l3
);
69 RESTORE(b0
); RESTORE(b1
); RESTORE(b2
); RESTORE(b3
);
70 RESTORE(lc0
); RESTORE(lc1
);
71 RESTORE(lt0
); RESTORE(lt1
);
72 RESTORE(lb0
); RESTORE(lb1
);
75 regs
->orig_p0
= -1; /* disable syscall checks */
81 asmlinkage
int sys_rt_sigreturn(void)
83 struct pt_regs
*regs
= current_pt_regs();
84 unsigned long usp
= rdusp();
85 struct rt_sigframe
*frame
= (struct rt_sigframe
*)(usp
);
89 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
91 if (__copy_from_user(&set
, &frame
->uc
.uc_sigmask
, sizeof(set
)))
94 set_current_blocked(&set
);
96 if (rt_restore_sigcontext(regs
, &frame
->uc
.uc_mcontext
, &r0
))
99 if (restore_altstack(&frame
->uc
.uc_stack
))
105 force_sig(SIGSEGV
, current
);
109 static inline int rt_setup_sigcontext(struct sigcontext
*sc
, struct pt_regs
*regs
)
113 #define SETUP(x) err |= __put_user(regs->x, &sc->sc_##x)
115 SETUP(r0
); SETUP(r1
); SETUP(r2
); SETUP(r3
);
116 SETUP(r4
); SETUP(r5
); SETUP(r6
); SETUP(r7
);
117 SETUP(p0
); SETUP(p1
); SETUP(p2
); SETUP(p3
);
118 SETUP(p4
); SETUP(p5
);
119 err
|= __put_user(rdusp(), &sc
->sc_usp
);
120 SETUP(a0w
); SETUP(a1w
);
121 SETUP(a0x
); SETUP(a1x
);
127 SETUP(i0
); SETUP(i1
); SETUP(i2
); SETUP(i3
);
128 SETUP(m0
); SETUP(m1
); SETUP(m2
); SETUP(m3
);
129 SETUP(l0
); SETUP(l1
); SETUP(l2
); SETUP(l3
);
130 SETUP(b0
); SETUP(b1
); SETUP(b2
); SETUP(b3
);
131 SETUP(lc0
); SETUP(lc1
);
132 SETUP(lt0
); SETUP(lt1
);
133 SETUP(lb0
); SETUP(lb1
);
139 static inline void *get_sigframe(struct ksignal
*ksig
,
142 unsigned long usp
= sigsp(rdusp(), ksig
);
144 return (void *)((usp
- frame_size
) & -8UL);
148 setup_rt_frame(struct ksignal
*ksig
, sigset_t
*set
, struct pt_regs
*regs
)
150 struct rt_sigframe
*frame
;
153 frame
= get_sigframe(ksig
, sizeof(*frame
));
155 err
|= __put_user(ksig
->sig
, &frame
->sig
);
157 err
|= __put_user(&frame
->info
, &frame
->pinfo
);
158 err
|= __put_user(&frame
->uc
, &frame
->puc
);
159 err
|= copy_siginfo_to_user(&frame
->info
, &ksig
->info
);
161 /* Create the ucontext. */
162 err
|= __put_user(0, &frame
->uc
.uc_flags
);
163 err
|= __put_user(0, &frame
->uc
.uc_link
);
164 err
|= __save_altstack(&frame
->uc
.uc_stack
, rdusp());
165 err
|= rt_setup_sigcontext(&frame
->uc
.uc_mcontext
, regs
);
166 err
|= copy_to_user(&frame
->uc
.uc_sigmask
, set
, sizeof(*set
));
171 /* Set up registers for signal handler */
172 if (current
->personality
& FDPIC_FUNCPTRS
) {
173 struct fdpic_func_descriptor __user
*funcptr
=
174 (struct fdpic_func_descriptor
*) ksig
->ka
.sa
.sa_handler
;
176 err
|= __get_user(pc
, &funcptr
->text
);
177 err
|= __get_user(p3
, &funcptr
->GOT
);
183 regs
->pc
= (unsigned long)ksig
->ka
.sa
.sa_handler
;
184 wrusp((unsigned long)frame
);
185 regs
->rets
= SIGRETURN_STUB
;
187 regs
->r0
= frame
->sig
;
188 regs
->r1
= (unsigned long)(&frame
->info
);
189 regs
->r2
= (unsigned long)(&frame
->uc
);
195 handle_restart(struct pt_regs
*regs
, struct k_sigaction
*ka
, int has_handler
)
198 case -ERESTARTNOHAND
:
205 if (has_handler
&& !(ka
->sa
.sa_flags
& SA_RESTART
)) {
210 case -ERESTARTNOINTR
:
212 regs
->p0
= regs
->orig_p0
;
213 regs
->r0
= regs
->orig_r0
;
217 case -ERESTART_RESTARTBLOCK
:
218 regs
->p0
= __NR_restart_syscall
;
225 * OK, we're invoking a handler
228 handle_signal(struct ksignal
*ksig
, struct pt_regs
*regs
)
232 /* are we from a system call? to see pt_regs->orig_p0 */
233 if (regs
->orig_p0
>= 0)
234 /* If so, check system call restarting.. */
235 handle_restart(regs
, &ksig
->ka
, 1);
237 /* set up the stack frame */
238 ret
= setup_rt_frame(ksig
, sigmask_to_save(), regs
);
240 signal_setup_done(ret
, ksig
, test_thread_flag(TIF_SINGLESTEP
));
244 * Note that 'init' is a special process: it doesn't get signals it doesn't
245 * want to handle. Thus you cannot kill init even with a SIGKILL even by
248 * Note that we go through the signals twice: once to check the signals
249 * that the kernel can handle, and then we build all the user-level signal
250 * handling stack-frames in one go after that.
252 asmlinkage
void do_signal(struct pt_regs
*regs
)
256 current
->thread
.esp0
= (unsigned long)regs
;
258 if (get_signal(&ksig
)) {
259 /* Whee! Actually deliver the signal. */
260 handle_signal(&ksig
, regs
);
264 /* Did we come from a system call? */
265 if (regs
->orig_p0
>= 0)
266 /* Restart the system call - no handlers present */
267 handle_restart(regs
, NULL
, 0);
269 /* if there's no signal to deliver, we just put the saved sigmask
271 restore_saved_sigmask();
275 * notification of userspace execution resumption
277 asmlinkage
void do_notify_resume(struct pt_regs
*regs
)
279 if (test_thread_flag(TIF_SIGPENDING
))
282 if (test_thread_flag(TIF_NOTIFY_RESUME
)) {
283 clear_thread_flag(TIF_NOTIFY_RESUME
);
284 tracehook_notify_resume(regs
);