2 * arch/xtensa/kernel/signal.c
4 * Default platform functions.
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
10 * Copyright (C) 2005, 2006 Tensilica Inc.
11 * Copyright (C) 1991, 1992 Linus Torvalds
12 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
14 * Chris Zankel <chris@zankel.net>
15 * Joe Taylor <joe@tensilica.com>
18 #include <linux/signal.h>
19 #include <linux/errno.h>
20 #include <linux/ptrace.h>
21 #include <linux/personality.h>
22 #include <linux/freezer.h>
24 #include <asm/ucontext.h>
25 #include <asm/uaccess.h>
26 #include <asm/cacheflush.h>
27 #include <asm/coprocessor.h>
28 #include <asm/unistd.h>
32 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
34 asmlinkage
int do_signal(struct pt_regs
*regs
, sigset_t
*oldset
);
36 extern struct task_struct
*coproc_owners
[];
38 extern void release_all_cp (struct task_struct
*);
45 unsigned char retcode
[6];
46 unsigned int window
[4];
50 * Flush register windows stored in pt_regs to stack.
51 * Returns 1 for errors.
53 * Note that windowbase, windowstart, and wmask are not updated!
57 flush_window_regs_user(struct pt_regs
*regs
)
59 const unsigned long ws
= regs
->windowstart
;
60 const unsigned long wb
= regs
->windowbase
;
66 /* Return if no other frames. */
71 /* Rotate windowmask and skip empty frames. */
73 wm
= (ws
>> wb
) | (ws
<< (XCHAL_NUM_AREGS
/ 4 - wb
));
74 base
= (XCHAL_NUM_AREGS
/ 4) - (regs
->wmask
>> 4);
76 /* For call8 or call12 frames, we need the previous stack pointer. */
78 if ((regs
->wmask
& 2) == 0)
79 if (__get_user(sp
, (int*)(regs
->areg
[base
* 4 + 1] - 12)))
82 /* Spill frames to stack. */
84 while (base
< XCHAL_NUM_AREGS
/ 4) {
89 /* Save registers a4..a7 (call8) or a4...a11 (call12) */
91 if (m
& 2) { /* call4 */
94 } else if (m
& 4) { /* call8 */
95 if (copy_to_user((void*)(sp
- 32),
96 ®s
->areg
[(base
+ 1) * 4], 16))
100 } else if (m
& 8) { /* call12 */
101 if (copy_to_user((void*)(sp
- 48),
102 ®s
->areg
[(base
+ 1) * 4], 32))
107 /* Save current frame a0..a3 under next SP */
109 sp
= regs
->areg
[((base
+ inc
) * 4 + 1) % XCHAL_NUM_AREGS
];
110 if (copy_to_user((void*)(sp
- 16), ®s
->areg
[base
* 4], 16))
113 /* Get current stack pointer for next loop iteration. */
115 sp
= regs
->areg
[base
* 4 + 1];
126 * Note: We don't copy double exception 'regs', we have to finish double exc.
127 * first before we return to signal handler! This dbl.exc.handler might cause
128 * another double exception, but I think we are fine as the situation is the
129 * same as if we had returned to the signal handerl and got an interrupt
134 setup_sigcontext(struct sigcontext __user
*sc
, cp_state_t
*cpstate
,
135 struct pt_regs
*regs
, unsigned long mask
)
139 #define COPY(x) err |= __put_user(regs->x, &sc->sc_##x)
148 err
|= flush_window_regs_user(regs
);
149 err
|= __copy_to_user (sc
->sc_a
, regs
->areg
, 16 * 4);
151 // err |= __copy_to_user (sc->sc_a, regs->areg, XCHAL_NUM_AREGS * 4)
154 # error Coprocessors unsupported
155 err
|= save_cpextra(cpstate
);
156 err
|= __put_user(err
? NULL
: cpstate
, &sc
->sc_cpstate
);
158 /* non-iBCS2 extensions.. */
159 err
|= __put_user(mask
, &sc
->oldmask
);
165 restore_sigcontext(struct pt_regs
*regs
, struct sigcontext __user
*sc
)
167 unsigned int err
= 0;
170 #define COPY(x) err |= __get_user(regs->x, &sc->sc_##x)
178 /* All registers were flushed to stack. Start with a prestine frame. */
181 regs
->windowbase
= 0;
182 regs
->windowstart
= 1;
184 /* For PS, restore only PS.CALLINC.
185 * Assume that all other bits are either the same as for the signal
186 * handler, or the user mode value doesn't matter (e.g. PS.OWB).
188 err
|= __get_user(ps
, &sc
->sc_ps
);
189 regs
->ps
= (regs
->ps
& ~PS_CALLINC_MASK
) | (ps
& PS_CALLINC_MASK
);
191 /* Additional corruption checks */
193 if ((regs
->lcount
> 0)
194 && ((regs
->lbeg
> TASK_SIZE
) || (regs
->lend
> TASK_SIZE
)) )
197 err
|= __copy_from_user(regs
->areg
, sc
->sc_a
, 16 * 4);
200 # error Coprocessors unsupported
201 /* The signal handler may have used coprocessors in which
202 * case they are still enabled. We disable them to force a
203 * reloading of the original task's CP state by the lazy
204 * context-switching mechanisms of CP exception handling.
205 * Also, we essentially discard any coprocessor state that the
206 * signal handler created. */
209 struct task_struct
*tsk
= current
;
211 err
|= __copy_from_user(tsk
->thread
.cpextra
, sc
->sc_cpstate
,
212 XTENSA_CP_EXTRA_SIZE
);
216 regs
->syscall
= -1; /* disable syscall checks */
223 * Do a signal return; undo the signal stack.
226 asmlinkage
long xtensa_rt_sigreturn(long a0
, long a1
, long a2
, long a3
,
227 long a4
, long a5
, struct pt_regs
*regs
)
229 struct rt_sigframe __user
*frame
;
234 panic("rt_sigreturn in double exception!\n");
236 frame
= (struct rt_sigframe __user
*) regs
->areg
[1];
238 if (!access_ok(VERIFY_READ
, frame
, sizeof(*frame
)))
241 if (__copy_from_user(&set
, &frame
->uc
.uc_sigmask
, sizeof(set
)))
244 sigdelsetmask(&set
, ~_BLOCKABLE
);
245 spin_lock_irq(¤t
->sighand
->siglock
);
246 current
->blocked
= set
;
248 spin_unlock_irq(¤t
->sighand
->siglock
);
250 if (restore_sigcontext(regs
, &frame
->uc
.uc_mcontext
))
255 if (do_sigaltstack(&frame
->uc
.uc_stack
, NULL
, regs
->areg
[1]) == -EFAULT
)
261 force_sig(SIGSEGV
, current
);
268 * Set up a signal frame.
272 gen_return_code(unsigned char *codemem
)
277 * The 12-bit immediate is really split up within the 24-bit MOVI
278 * instruction. As long as the above system call numbers fit within
279 * 8-bits, the following code works fine. See the Xtensa ISA for
283 #if __NR_rt_sigreturn > 255
284 # error Generating the MOVI instruction below breaks!
287 #ifdef __XTENSA_EB__ /* Big Endian version */
288 /* Generate instruction: MOVI a2, __NR_rt_sigreturn */
289 err
|= __put_user(0x22, &codemem
[0]);
290 err
|= __put_user(0x0a, &codemem
[1]);
291 err
|= __put_user(__NR_rt_sigreturn
, &codemem
[2]);
292 /* Generate instruction: SYSCALL */
293 err
|= __put_user(0x00, &codemem
[3]);
294 err
|= __put_user(0x05, &codemem
[4]);
295 err
|= __put_user(0x00, &codemem
[5]);
297 #elif defined __XTENSA_EL__ /* Little Endian version */
298 /* Generate instruction: MOVI a2, __NR_rt_sigreturn */
299 err
|= __put_user(0x22, &codemem
[0]);
300 err
|= __put_user(0xa0, &codemem
[1]);
301 err
|= __put_user(__NR_rt_sigreturn
, &codemem
[2]);
302 /* Generate instruction: SYSCALL */
303 err
|= __put_user(0x00, &codemem
[3]);
304 err
|= __put_user(0x50, &codemem
[4]);
305 err
|= __put_user(0x00, &codemem
[5]);
307 # error Must use compiler for Xtensa processors.
310 /* Flush generated code out of the data cache */
313 __invalidate_icache_range((unsigned long)codemem
, 6UL);
314 __flush_invalidate_dcache_range((unsigned long)codemem
, 6UL);
321 static void setup_frame(int sig
, struct k_sigaction
*ka
, siginfo_t
*info
,
322 sigset_t
*set
, struct pt_regs
*regs
)
324 struct rt_sigframe
*frame
;
327 unsigned long sp
, ra
;
331 if ((ka
->sa
.sa_flags
& SA_ONSTACK
) != 0 && ! on_sig_stack(sp
)) {
332 sp
= current
->sas_ss_sp
+ current
->sas_ss_size
;
335 frame
= (void *)((sp
- sizeof(*frame
)) & -16ul);
338 panic ("Double exception sys_sigreturn\n");
340 if (!access_ok(VERIFY_WRITE
, frame
, sizeof(*frame
))) {
344 signal
= current_thread_info()->exec_domain
345 && current_thread_info()->exec_domain
->signal_invmap
347 ? current_thread_info()->exec_domain
->signal_invmap
[sig
]
350 if (ka
->sa
.sa_flags
& SA_SIGINFO
) {
351 err
|= copy_siginfo_to_user(&frame
->info
, info
);
354 /* Create the user context. */
356 err
|= __put_user(0, &frame
->uc
.uc_flags
);
357 err
|= __put_user(0, &frame
->uc
.uc_link
);
358 err
|= __put_user((void *)current
->sas_ss_sp
,
359 &frame
->uc
.uc_stack
.ss_sp
);
360 err
|= __put_user(sas_ss_flags(regs
->areg
[1]),
361 &frame
->uc
.uc_stack
.ss_flags
);
362 err
|= __put_user(current
->sas_ss_size
, &frame
->uc
.uc_stack
.ss_size
);
363 err
|= setup_sigcontext(&frame
->uc
.uc_mcontext
, &frame
->cpstate
,
365 err
|= __copy_to_user(&frame
->uc
.uc_sigmask
, set
, sizeof(*set
));
367 /* Create sys_rt_sigreturn syscall in stack frame */
369 err
|= gen_return_code(frame
->retcode
);
377 * Create signal handler execution context.
378 * Return context not modified until this point.
381 /* Set up registers for signal handler */
382 start_thread(regs
, (unsigned long) ka
->sa
.sa_handler
,
383 (unsigned long) frame
);
385 /* Set up a stack frame for a call4
386 * Note: PS.CALLINC is set to one by start_thread
388 ra
= (unsigned long) frame
->retcode
;
389 regs
->areg
[4] = (((unsigned long) ra
) & 0x3fffffff) | 0x40000000;
390 regs
->areg
[6] = (unsigned long) signal
;
391 regs
->areg
[7] = (unsigned long) &frame
->info
;
392 regs
->areg
[8] = (unsigned long) &frame
->uc
;
394 /* Set access mode to USER_DS. Nomenclature is outdated, but
395 * functionality is used in uaccess.h
400 printk("SIG rt deliver (%s:%d): signal=%d sp=%p pc=%08x\n",
401 current
->comm
, current
->pid
, signal
, frame
, regs
->pc
);
408 ka
->sa
.sa_handler
= SIG_DFL
;
409 force_sig(SIGSEGV
, current
);
413 * Atomically swap in the new signal mask, and wait for a signal.
416 asmlinkage
long xtensa_rt_sigsuspend(sigset_t __user
*unewset
,
418 long a2
, long a3
, long a4
, long a5
,
419 struct pt_regs
*regs
)
421 sigset_t saveset
, newset
;
423 /* XXX: Don't preclude handling different sized sigset_t's. */
424 if (sigsetsize
!= sizeof(sigset_t
))
427 if (copy_from_user(&newset
, unewset
, sizeof(newset
)))
430 sigdelsetmask(&newset
, ~_BLOCKABLE
);
431 spin_lock_irq(¤t
->sighand
->siglock
);
432 saveset
= current
->blocked
;
433 current
->blocked
= newset
;
435 spin_unlock_irq(¤t
->sighand
->siglock
);
437 regs
->areg
[2] = -EINTR
;
439 current
->state
= TASK_INTERRUPTIBLE
;
441 if (do_signal(regs
, &saveset
))
446 asmlinkage
long xtensa_sigaltstack(const stack_t __user
*uss
,
447 stack_t __user
*uoss
,
448 long a2
, long a3
, long a4
, long a5
,
449 struct pt_regs
*regs
)
451 return do_sigaltstack(uss
, uoss
, regs
->areg
[1]);
457 * Note that 'init' is a special process: it doesn't get signals it doesn't
458 * want to handle. Thus you cannot kill init even with a SIGKILL even by
461 * Note that we go through the signals twice: once to check the signals that
462 * the kernel can handle, and then we build all the user-level signal handling
463 * stack-frames in one go after that.
465 int do_signal(struct pt_regs
*regs
, sigset_t
*oldset
)
469 struct k_sigaction ka
;
471 if (!user_mode(regs
))
478 oldset
= ¤t
->blocked
;
480 task_pt_regs(current
)->icountlevel
= 0;
482 signr
= get_signal_to_deliver(&info
, &ka
, regs
, NULL
);
486 /* Are we from a system call? */
488 if ((signed)regs
->syscall
>= 0) {
490 /* If so, check system call restarting.. */
492 switch (regs
->areg
[2]) {
493 case -ERESTARTNOHAND
:
494 case -ERESTART_RESTARTBLOCK
:
495 regs
->areg
[2] = -EINTR
;
499 if (!(ka
.sa
.sa_flags
& SA_RESTART
)) {
500 regs
->areg
[2] = -EINTR
;
504 case -ERESTARTNOINTR
:
505 regs
->areg
[2] = regs
->syscall
;
511 if (regs
->areg
[2] != 0)
516 /* Whee! Actually deliver the signal. */
517 /* Set up the stack frame */
518 setup_frame(signr
, &ka
, &info
, oldset
, regs
);
520 if (ka
.sa
.sa_flags
& SA_ONESHOT
)
521 ka
.sa
.sa_handler
= SIG_DFL
;
523 spin_lock_irq(¤t
->sighand
->siglock
);
524 sigorsets(¤t
->blocked
, ¤t
->blocked
, &ka
.sa
.sa_mask
);
525 if (!(ka
.sa
.sa_flags
& SA_NODEFER
))
526 sigaddset(¤t
->blocked
, signr
);
528 spin_unlock_irq(¤t
->sighand
->siglock
);
529 if (current
->ptrace
& PT_SINGLESTEP
)
530 task_pt_regs(current
)->icountlevel
= 1;
536 /* Did we come from a system call? */
537 if ((signed) regs
->syscall
>= 0) {
538 /* Restart the system call - no handlers present */
539 switch (regs
->areg
[2]) {
540 case -ERESTARTNOHAND
:
542 case -ERESTARTNOINTR
:
543 regs
->areg
[2] = regs
->syscall
;
546 case -ERESTART_RESTARTBLOCK
:
547 regs
->areg
[2] = __NR_restart_syscall
;
552 if (current
->ptrace
& PT_SINGLESTEP
)
553 task_pt_regs(current
)->icountlevel
= 1;