1 /* MN10300 Signal handling
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/sched.h>
14 #include <linux/smp.h>
15 #include <linux/kernel.h>
16 #include <linux/signal.h>
17 #include <linux/errno.h>
18 #include <linux/wait.h>
19 #include <linux/ptrace.h>
20 #include <linux/unistd.h>
21 #include <linux/stddef.h>
22 #include <linux/tty.h>
23 #include <linux/personality.h>
24 #include <linux/suspend.h>
25 #include <linux/tracehook.h>
26 #include <asm/cacheflush.h>
27 #include <asm/ucontext.h>
28 #include <asm/uaccess.h>
35 * do a signal return; undo the signal stack.
37 static int restore_sigcontext(struct pt_regs
*regs
,
38 struct sigcontext __user
*sc
, long *_d0
)
42 /* Always make any pending restarted system calls return -EINTR */
43 current
->restart_block
.fn
= do_no_restart_syscall
;
45 if (is_using_fpu(current
))
46 fpu_kill_state(current
);
48 #define COPY(x) err |= __get_user(regs->x, &sc->x)
49 COPY(d1
); COPY(d2
); COPY(d3
);
50 COPY(a0
); COPY(a1
); COPY(a2
); COPY(a3
);
51 COPY(e0
); COPY(e1
); COPY(e2
); COPY(e3
);
52 COPY(e4
); COPY(e5
); COPY(e6
); COPY(e7
);
54 COPY(mdr
); COPY(mdrq
);
55 COPY(mcvf
); COPY(mcrl
); COPY(mcrh
);
60 unsigned int tmpflags
;
61 #ifndef CONFIG_MN10300_USING_JTAG
62 #define USER_EPSW (EPSW_FLAG_Z | EPSW_FLAG_N | EPSW_FLAG_C | EPSW_FLAG_V | \
65 #define USER_EPSW (EPSW_FLAG_Z | EPSW_FLAG_N | EPSW_FLAG_C | EPSW_FLAG_V | \
68 err
|= __get_user(tmpflags
, &sc
->epsw
);
69 regs
->epsw
= (regs
->epsw
& ~USER_EPSW
) |
70 (tmpflags
& USER_EPSW
);
71 regs
->orig_d0
= -1; /* disable syscall checks */
75 struct fpucontext
*buf
;
76 err
|= __get_user(buf
, &sc
->fpucontext
);
78 if (verify_area(VERIFY_READ
, buf
, sizeof(*buf
)))
80 err
|= fpu_restore_sigcontext(buf
);
84 err
|= __get_user(*_d0
, &sc
->d0
);
92 * standard signal return syscall
94 asmlinkage
long sys_sigreturn(void)
96 struct sigframe __user
*frame
;
100 frame
= (struct sigframe __user
*) current_frame()->sp
;
101 if (verify_area(VERIFY_READ
, frame
, sizeof(*frame
)))
103 if (__get_user(set
.sig
[0], &frame
->sc
.oldmask
))
106 if (_NSIG_WORDS
> 1 &&
107 __copy_from_user(&set
.sig
[1], &frame
->extramask
,
108 sizeof(frame
->extramask
)))
111 set_current_blocked(&set
);
113 if (restore_sigcontext(current_frame(), &frame
->sc
, &d0
))
119 force_sig(SIGSEGV
, current
);
124 * realtime signal return syscall
126 asmlinkage
long sys_rt_sigreturn(void)
128 struct rt_sigframe __user
*frame
;
132 frame
= (struct rt_sigframe __user
*) current_frame()->sp
;
133 if (verify_area(VERIFY_READ
, frame
, sizeof(*frame
)))
135 if (__copy_from_user(&set
, &frame
->uc
.uc_sigmask
, sizeof(set
)))
138 set_current_blocked(&set
);
140 if (restore_sigcontext(current_frame(), &frame
->uc
.uc_mcontext
, &d0
))
143 if (restore_altstack(&frame
->uc
.uc_stack
))
149 force_sig(SIGSEGV
, current
);
154 * store the userspace context into a signal frame
156 static int setup_sigcontext(struct sigcontext __user
*sc
,
157 struct fpucontext
*fpuctx
,
158 struct pt_regs
*regs
,
163 #define COPY(x) err |= __put_user(regs->x, &sc->x)
164 COPY(d0
); COPY(d1
); COPY(d2
); COPY(d3
);
165 COPY(a0
); COPY(a1
); COPY(a2
); COPY(a3
);
166 COPY(e0
); COPY(e1
); COPY(e2
); COPY(e3
);
167 COPY(e4
); COPY(e5
); COPY(e6
); COPY(e7
);
168 COPY(lar
); COPY(lir
);
169 COPY(mdr
); COPY(mdrq
);
170 COPY(mcvf
); COPY(mcrl
); COPY(mcrh
);
171 COPY(sp
); COPY(epsw
); COPY(pc
);
174 tmp
= fpu_setup_sigcontext(fpuctx
);
178 err
|= __put_user(tmp
? fpuctx
: NULL
, &sc
->fpucontext
);
180 /* non-iBCS2 extensions.. */
181 err
|= __put_user(mask
, &sc
->oldmask
);
187 * determine which stack to use..
189 static inline void __user
*get_sigframe(struct ksignal
*ksig
,
190 struct pt_regs
*regs
,
193 unsigned long sp
= sigsp(regs
->sp
, ksig
);
195 return (void __user
*) ((sp
- frame_size
) & ~7UL);
199 * set up a normal signal frame
201 static int setup_frame(struct ksignal
*ksig
, sigset_t
*set
,
202 struct pt_regs
*regs
)
204 struct sigframe __user
*frame
;
207 frame
= get_sigframe(ksig
, regs
, sizeof(*frame
));
209 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
)))
212 if (__put_user(sig
, &frame
->sig
) < 0 ||
213 __put_user(&frame
->sc
, &frame
->psc
) < 0)
216 if (setup_sigcontext(&frame
->sc
, &frame
->fpuctx
, regs
, set
->sig
[0]))
219 if (_NSIG_WORDS
> 1) {
220 if (__copy_to_user(frame
->extramask
, &set
->sig
[1],
221 sizeof(frame
->extramask
)))
225 /* set up to return from userspace. If provided, use a stub already in
227 if (ksig
->ka
.sa
.sa_flags
& SA_RESTORER
) {
228 if (__put_user(ksig
->ka
.sa
.sa_restorer
, &frame
->pretcode
))
231 if (__put_user((void (*)(void))frame
->retcode
,
234 /* this is mov $,d0; syscall 0 */
235 if (__put_user(0x2c, (char *)(frame
->retcode
+ 0)) ||
236 __put_user(__NR_sigreturn
, (char *)(frame
->retcode
+ 1)) ||
237 __put_user(0x00, (char *)(frame
->retcode
+ 2)) ||
238 __put_user(0xf0, (char *)(frame
->retcode
+ 3)) ||
239 __put_user(0xe0, (char *)(frame
->retcode
+ 4)))
241 flush_icache_range((unsigned long) frame
->retcode
,
242 (unsigned long) frame
->retcode
+ 5);
245 /* set up registers for signal handler */
246 regs
->sp
= (unsigned long) frame
;
247 regs
->pc
= (unsigned long) ksig
->ka
.sa
.sa_handler
;
249 regs
->d1
= (unsigned long) &frame
->sc
;
252 printk(KERN_DEBUG
"SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
253 sig
, current
->comm
, current
->pid
, frame
, regs
->pc
,
261 * set up a realtime signal frame
263 static int setup_rt_frame(struct ksignal
*ksig
, sigset_t
*set
,
264 struct pt_regs
*regs
)
266 struct rt_sigframe __user
*frame
;
269 frame
= get_sigframe(ksig
, regs
, sizeof(*frame
));
271 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
)))
274 if (__put_user(sig
, &frame
->sig
) ||
275 __put_user(&frame
->info
, &frame
->pinfo
) ||
276 __put_user(&frame
->uc
, &frame
->puc
) ||
277 copy_siginfo_to_user(&frame
->info
, &ksig
->info
))
280 /* create the ucontext. */
281 if (__put_user(0, &frame
->uc
.uc_flags
) ||
282 __put_user(0, &frame
->uc
.uc_link
) ||
283 __save_altstack(&frame
->uc
.uc_stack
, regs
->sp
) ||
284 setup_sigcontext(&frame
->uc
.uc_mcontext
,
285 &frame
->fpuctx
, regs
, set
->sig
[0]) ||
286 __copy_to_user(&frame
->uc
.uc_sigmask
, set
, sizeof(*set
)))
289 /* set up to return from userspace. If provided, use a stub already in
291 if (ksig
->ka
.sa
.sa_flags
& SA_RESTORER
) {
292 if (__put_user(ksig
->ka
.sa
.sa_restorer
, &frame
->pretcode
))
296 if (__put_user((void(*)(void))frame
->retcode
,
298 /* This is mov $,d0; syscall 0 */
299 __put_user(0x2c, (char *)(frame
->retcode
+ 0)) ||
300 __put_user(__NR_rt_sigreturn
,
301 (char *)(frame
->retcode
+ 1)) ||
302 __put_user(0x00, (char *)(frame
->retcode
+ 2)) ||
303 __put_user(0xf0, (char *)(frame
->retcode
+ 3)) ||
304 __put_user(0xe0, (char *)(frame
->retcode
+ 4)))
307 flush_icache_range((u_long
) frame
->retcode
,
308 (u_long
) frame
->retcode
+ 5);
311 /* Set up registers for signal handler */
312 regs
->sp
= (unsigned long) frame
;
313 regs
->pc
= (unsigned long) ksig
->ka
.sa
.sa_handler
;
315 regs
->d1
= (long) &frame
->info
;
318 printk(KERN_DEBUG
"SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
319 sig
, current
->comm
, current
->pid
, frame
, regs
->pc
,
326 static inline void stepback(struct pt_regs
*regs
)
333 * handle the actual delivery of a signal to userspace
335 static int handle_signal(struct ksignal
*ksig
, struct pt_regs
*regs
)
337 sigset_t
*oldset
= sigmask_to_save();
340 /* Are we from a system call? */
341 if (regs
->orig_d0
>= 0) {
342 /* If so, check system call restarting.. */
344 case -ERESTART_RESTARTBLOCK
:
345 case -ERESTARTNOHAND
:
350 if (!(ksig
->ka
.sa
.sa_flags
& SA_RESTART
)) {
356 case -ERESTARTNOINTR
:
357 regs
->d0
= regs
->orig_d0
;
362 /* Set up the stack frame */
363 if (ksig
->ka
.sa
.sa_flags
& SA_SIGINFO
)
364 ret
= setup_rt_frame(ksig
, oldset
, regs
);
366 ret
= setup_frame(ksig
, oldset
, regs
);
368 signal_setup_done(ret
, ksig
, test_thread_flag(TIF_SINGLESTEP
));
373 * handle a potential signal
375 static void do_signal(struct pt_regs
*regs
)
379 if (get_signal(&ksig
)) {
380 handle_signal(&ksig
, regs
);
384 /* did we come from a system call? */
385 if (regs
->orig_d0
>= 0) {
386 /* restart the system call - no handlers present */
388 case -ERESTARTNOHAND
:
390 case -ERESTARTNOINTR
:
391 regs
->d0
= regs
->orig_d0
;
395 case -ERESTART_RESTARTBLOCK
:
396 regs
->d0
= __NR_restart_syscall
;
402 /* if there's no signal to deliver, we just put the saved sigmask
404 restore_saved_sigmask();
408 * notification of userspace execution resumption
409 * - triggered by current->work.notify_resume
411 asmlinkage
void do_notify_resume(struct pt_regs
*regs
, u32 thread_info_flags
)
413 /* Pending single-step? */
414 if (thread_info_flags
& _TIF_SINGLESTEP
) {
415 #ifndef CONFIG_MN10300_USING_JTAG
416 regs
->epsw
|= EPSW_T
;
417 clear_thread_flag(TIF_SINGLESTEP
);
419 BUG(); /* no h/w single-step if using JTAG unit */
423 /* deal with pending signal delivery */
424 if (thread_info_flags
& _TIF_SIGPENDING
)
427 if (thread_info_flags
& _TIF_NOTIFY_RESUME
) {
428 clear_thread_flag(TIF_NOTIFY_RESUME
);
429 tracehook_notify_resume(current_frame());