2 * Copyright (C) 2003, Axis Communications AB.
5 #include <linux/sched.h>
7 #include <linux/slab.h>
8 #include <linux/kernel.h>
9 #include <linux/signal.h>
10 #include <linux/errno.h>
11 #include <linux/wait.h>
12 #include <linux/ptrace.h>
13 #include <linux/unistd.h>
14 #include <linux/stddef.h>
15 #include <linux/syscalls.h>
16 #include <linux/vmalloc.h>
19 #include <asm/processor.h>
20 #include <asm/ucontext.h>
21 #include <asm/uaccess.h>
22 #include <arch/hwregs/cpu_vect.h>
24 extern unsigned long cris_signal_return_page
;
27 * A syscall in CRIS is really a "break 13" instruction, which is 2
28 * bytes. The registers is manipulated so upon return the instruction
29 * will be executed again.
31 * This relies on that PC points to the instruction after the break call.
33 #define RESTART_CRIS_SYS(regs) regs->r10 = regs->orig_r10; regs->erp -= 2;
38 unsigned long extramask
[_NSIG_WORDS
- 1];
39 unsigned char retcode
[8]; /* Trampoline code. */
42 struct rt_signal_frame
{
43 struct siginfo
*pinfo
;
47 unsigned char retcode
[8]; /* Trampoline code. */
50 void do_signal(int restart
, struct pt_regs
*regs
);
51 void keep_debug_flags(unsigned long oldccs
, unsigned long oldspc
,
52 struct pt_regs
*regs
);
55 restore_sigcontext(struct pt_regs
*regs
, struct sigcontext __user
*sc
)
58 unsigned long old_usp
;
60 /* Always make any pending restarted system calls return -EINTR */
61 current
->restart_block
.fn
= do_no_restart_syscall
;
64 * Restore the registers from &sc->regs. sc is already checked
65 * for VERIFY_READ since the signal_frame was previously
66 * checked in sys_sigreturn().
68 if (__copy_from_user(regs
, sc
, sizeof(struct pt_regs
)))
71 /* Make that the user-mode flag is set. */
72 regs
->ccs
|= (1 << (U_CCS_BITNR
+ CCS_SHIFT
));
74 /* Don't perform syscall restarting */
77 /* Restore the old USP. */
78 err
|= __get_user(old_usp
, &sc
->usp
);
87 asmlinkage
int sys_sigreturn(void)
89 struct pt_regs
*regs
= current_pt_regs();
91 struct signal_frame __user
*frame
;
92 unsigned long oldspc
= regs
->spc
;
93 unsigned long oldccs
= regs
->ccs
;
95 frame
= (struct signal_frame
*) rdusp();
98 * Since the signal is stacked on a dword boundary, the frame
99 * should be dword aligned here as well. It it's not, then the
100 * user is trying some funny business.
102 if (((long)frame
) & 3)
105 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
108 if (__get_user(set
.sig
[0], &frame
->sc
.oldmask
) ||
109 (_NSIG_WORDS
> 1 && __copy_from_user(&set
.sig
[1],
111 sizeof(frame
->extramask
))))
114 set_current_blocked(&set
);
116 if (restore_sigcontext(regs
, &frame
->sc
))
119 keep_debug_flags(oldccs
, oldspc
, regs
);
124 force_sig(SIGSEGV
, current
);
128 asmlinkage
int sys_rt_sigreturn(void)
130 struct pt_regs
*regs
= current_pt_regs();
132 struct rt_signal_frame __user
*frame
;
133 unsigned long oldspc
= regs
->spc
;
134 unsigned long oldccs
= regs
->ccs
;
136 frame
= (struct rt_signal_frame
*) rdusp();
139 * Since the signal is stacked on a dword boundary, the frame
140 * should be dword aligned here as well. It it's not, then the
141 * user is trying some funny business.
143 if (((long)frame
) & 3)
146 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
149 if (__copy_from_user(&set
, &frame
->uc
.uc_sigmask
, sizeof(set
)))
152 set_current_blocked(&set
);
154 if (restore_sigcontext(regs
, &frame
->uc
.uc_mcontext
))
157 if (restore_altstack(&frame
->uc
.uc_stack
))
160 keep_debug_flags(oldccs
, oldspc
, regs
);
165 force_sig(SIGSEGV
, current
);
169 /* Setup a signal frame. */
171 setup_sigcontext(struct sigcontext __user
*sc
, struct pt_regs
*regs
,
181 * Copy the registers. They are located first in sc, so it's
182 * possible to use sc directly.
184 err
|= __copy_to_user(sc
, regs
, sizeof(struct pt_regs
));
186 err
|= __put_user(mask
, &sc
->oldmask
);
187 err
|= __put_user(usp
, &sc
->usp
);
192 /* Figure out where to put the new signal frame - usually on the stack. */
193 static inline void __user
*
194 get_sigframe(struct ksignal
*ksig
, size_t frame_size
)
196 unsigned long sp
= sigsp(rdusp(), ksig
);
198 /* Make sure the frame is dword-aligned. */
201 return (void __user
*)(sp
- frame_size
);
204 /* Grab and setup a signal frame.
206 * Basically a lot of state-info is stacked, and arranged for the
207 * user-mode program to return to the kernel using either a trampiline
208 * which performs the syscall sigreturn(), or a provided user-mode
212 setup_frame(struct ksignal
*ksig
, sigset_t
*set
, struct pt_regs
*regs
)
215 unsigned long return_ip
;
216 struct signal_frame __user
*frame
;
219 frame
= get_sigframe(ksig
, sizeof(*frame
));
221 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
)))
224 err
|= setup_sigcontext(&frame
->sc
, regs
, set
->sig
[0]);
229 if (_NSIG_WORDS
> 1) {
230 err
|= __copy_to_user(frame
->extramask
, &set
->sig
[1],
231 sizeof(frame
->extramask
));
238 * Set up to return from user-space. If provided, use a stub
239 * already located in user-space.
241 if (ksig
->ka
.sa
.sa_flags
& SA_RESTORER
) {
242 return_ip
= (unsigned long)ksig
->ka
.sa
.sa_restorer
;
244 /* Trampoline - the desired return ip is in the signal return page. */
245 return_ip
= cris_signal_return_page
;
248 * This is movu.w __NR_sigreturn, r9; break 13;
250 * WE DO NOT USE IT ANY MORE! It's only left here for historical
251 * reasons and because gdb uses it as a signature to notice
252 * signal handler stack frames.
254 err
|= __put_user(0x9c5f, (short __user
*)(frame
->retcode
+0));
255 err
|= __put_user(__NR_sigreturn
, (short __user
*)(frame
->retcode
+2));
256 err
|= __put_user(0xe93d, (short __user
*)(frame
->retcode
+4));
263 * Set up registers for signal handler.
265 * Where the code enters now.
266 * Where the code enter later.
267 * First argument, signo.
269 regs
->erp
= (unsigned long) ksig
->ka
.sa
.sa_handler
;
270 regs
->srp
= return_ip
;
271 regs
->r10
= ksig
->sig
;
273 /* Actually move the USP to reflect the stacked frame. */
274 wrusp((unsigned long)frame
);
280 setup_rt_frame(struct ksignal
*ksig
, sigset_t
*set
, struct pt_regs
*regs
)
283 unsigned long return_ip
;
284 struct rt_signal_frame __user
*frame
;
287 frame
= get_sigframe(ksig
, sizeof(*frame
));
289 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
)))
292 err
|= __put_user(&frame
->info
, &frame
->pinfo
);
293 err
|= __put_user(&frame
->uc
, &frame
->puc
);
294 err
|= copy_siginfo_to_user(&frame
->info
, &ksig
->info
);
299 /* Clear all the bits of the ucontext we don't use. */
300 err
|= __clear_user(&frame
->uc
, offsetof(struct ucontext
, uc_mcontext
));
301 err
|= setup_sigcontext(&frame
->uc
.uc_mcontext
, regs
, set
->sig
[0]);
302 err
|= __copy_to_user(&frame
->uc
.uc_sigmask
, set
, sizeof(*set
));
303 err
|= __save_altstack(&frame
->uc
.uc_stack
, rdusp());
309 * Set up to return from user-space. If provided, use a stub
310 * already located in user-space.
312 if (ksig
->ka
.sa
.sa_flags
& SA_RESTORER
) {
313 return_ip
= (unsigned long) ksig
->ka
.sa
.sa_restorer
;
315 /* Trampoline - the desired return ip is in the signal return page. */
316 return_ip
= cris_signal_return_page
+ 6;
319 * This is movu.w __NR_rt_sigreturn, r9; break 13;
321 * WE DO NOT USE IT ANY MORE! It's only left here for historical
322 * reasons and because gdb uses it as a signature to notice
323 * signal handler stack frames.
325 err
|= __put_user(0x9c5f, (short __user
*)(frame
->retcode
+0));
327 err
|= __put_user(__NR_rt_sigreturn
,
328 (short __user
*)(frame
->retcode
+2));
330 err
|= __put_user(0xe93d, (short __user
*)(frame
->retcode
+4));
337 * Set up registers for signal handler.
339 * Where the code enters now.
340 * Where the code enters later.
341 * First argument is signo.
342 * Second argument is (siginfo_t *).
343 * Third argument is unused.
345 regs
->erp
= (unsigned long) ksig
->ka
.sa
.sa_handler
;
346 regs
->srp
= return_ip
;
347 regs
->r10
= ksig
->sig
;
348 regs
->r11
= (unsigned long) &frame
->info
;
351 /* Actually move the usp to reflect the stacked frame. */
352 wrusp((unsigned long)frame
);
357 /* Invoke a signal handler to, well, handle the signal. */
359 handle_signal(int canrestart
, struct ksignal
*ksig
, struct pt_regs
*regs
)
361 sigset_t
*oldset
= sigmask_to_save();
364 /* Check if this got called from a system call. */
366 /* If so, check system call restarting. */
368 case -ERESTART_RESTARTBLOCK
:
369 case -ERESTARTNOHAND
:
371 * This means that the syscall should
372 * only be restarted if there was no
373 * handler for the signal, and since
374 * this point isn't reached unless
375 * there is a handler, there's no need
383 * This means restart the syscall if
384 * there is no handler, or the handler
385 * was registered with SA_RESTART.
387 if (!(ksig
->ka
.sa
.sa_flags
& SA_RESTART
)) {
394 case -ERESTARTNOINTR
:
396 * This means that the syscall should
397 * be called again after the signal
400 RESTART_CRIS_SYS(regs
);
405 /* Set up the stack frame. */
406 if (ksig
->ka
.sa
.sa_flags
& SA_SIGINFO
)
407 ret
= setup_rt_frame(ksig
, oldset
, regs
);
409 ret
= setup_frame(ksig
, oldset
, regs
);
411 signal_setup_done(ret
, ksig
, 0);
415 * Note that 'init' is a special process: it doesn't get signals it doesn't
416 * want to handle. Thus you cannot kill init even with a SIGKILL even by
419 * Also note that the regs structure given here as an argument, is the latest
420 * pushed pt_regs. It may or may not be the same as the first pushed registers
421 * when the initial usermode->kernelmode transition took place. Therefore
422 * we can use user_mode(regs) to see if we came directly from kernel or user
426 do_signal(int canrestart
, struct pt_regs
*regs
)
430 canrestart
= canrestart
&& ((int)regs
->exs
>= 0);
433 * The common case should go fast, which is why this point is
434 * reached from kernel-mode. If that's the case, just return
435 * without doing anything.
437 if (!user_mode(regs
))
440 if (get_signal(&ksig
)) {
441 /* Whee! Actually deliver the signal. */
442 handle_signal(canrestart
, &ksig
, regs
);
446 /* Got here from a system call? */
448 /* Restart the system call - no handlers present. */
449 if (regs
->r10
== -ERESTARTNOHAND
||
450 regs
->r10
== -ERESTARTSYS
||
451 regs
->r10
== -ERESTARTNOINTR
) {
452 RESTART_CRIS_SYS(regs
);
455 if (regs
->r10
== -ERESTART_RESTARTBLOCK
){
456 regs
->r9
= __NR_restart_syscall
;
461 /* if there's no signal to deliver, we just put the saved sigmask
463 restore_saved_sigmask();
467 ugdb_trap_user(struct thread_info
*ti
, int sig
)
469 if (((user_regs(ti
)->exs
& 0xff00) >> 8) != SINGLE_STEP_INTR_VECT
) {
470 /* Zero single-step PC if the reason we stopped wasn't a single
471 step exception. This is to avoid relying on it when it isn't
473 user_regs(ti
)->spc
= 0;
475 /* FIXME: Filter out false h/w breakpoint hits (i.e. EDA
476 not within any configured h/w breakpoint range). Synchronize with
477 what already exists for kernel debugging. */
478 if (((user_regs(ti
)->exs
& 0xff00) >> 8) == BREAK_8_INTR_VECT
) {
479 /* Break 8: subtract 2 from ERP unless in a delay slot. */
480 if (!(user_regs(ti
)->erp
& 0x1))
481 user_regs(ti
)->erp
-= 2;
483 sys_kill(ti
->task
->pid
, sig
);
487 keep_debug_flags(unsigned long oldccs
, unsigned long oldspc
,
488 struct pt_regs
*regs
)
490 if (oldccs
& (1 << Q_CCS_BITNR
)) {
491 /* Pending single step due to single-stepping the break 13
492 in the signal trampoline: keep the Q flag. */
493 regs
->ccs
|= (1 << Q_CCS_BITNR
);
494 /* S flag should be set - complain if it's not. */
495 if (!(oldccs
& (1 << (S_CCS_BITNR
+ CCS_SHIFT
)))) {
496 printk("Q flag but no S flag?");
498 regs
->ccs
|= (1 << (S_CCS_BITNR
+ CCS_SHIFT
));
499 /* Assume the SPC is valid and interesting. */
502 } else if (oldccs
& (1 << (S_CCS_BITNR
+ CCS_SHIFT
))) {
503 /* If a h/w bp was set in the signal handler we need
504 to keep the S flag. */
505 regs
->ccs
|= (1 << (S_CCS_BITNR
+ CCS_SHIFT
));
506 /* Don't keep the old SPC though; if we got here due to
507 a single-step, the Q flag should have been set. */
508 } else if (regs
->spc
) {
509 /* If we were single-stepping *before* the signal was taken,
510 we don't want to restore that state now, because GDB will
511 have forgotten all about it. */
513 regs
->ccs
&= ~(1 << (S_CCS_BITNR
+ CCS_SHIFT
));
517 /* Set up the trampolines on the signal return page. */
519 cris_init_signal(void)
521 u16
* data
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
523 /* This is movu.w __NR_sigreturn, r9; break 13; */
525 data
[1] = __NR_sigreturn
;
527 /* This is movu.w __NR_rt_sigreturn, r9; break 13; */
529 data
[4] = __NR_rt_sigreturn
;
532 /* Map to userspace with appropriate permissions (no write access...) */
533 cris_signal_return_page
= (unsigned long)
534 __ioremap_prot(virt_to_phys(data
), PAGE_SIZE
, PAGE_SIGNAL_TRAMPOLINE
);
539 __initcall(cris_init_signal
);