USB: remove broken usb-serial num_endpoints check
[linux-2.6/s3c2410-cpufreq.git] / arch / x86 / kernel / signal_64.c
blob1c83e5124c65813f7c966a9ed0e882627b2a84a9
1 /*
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
5 * 1997-11-28 Modified for POSIX.1b signals by Richard Henderson
6 * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes
7 * 2000-2002 x86-64 support by Andi Kleen
8 */
10 #include <linux/sched.h>
11 #include <linux/mm.h>
12 #include <linux/smp.h>
13 #include <linux/kernel.h>
14 #include <linux/signal.h>
15 #include <linux/errno.h>
16 #include <linux/wait.h>
17 #include <linux/ptrace.h>
18 #include <linux/unistd.h>
19 #include <linux/stddef.h>
20 #include <linux/personality.h>
21 #include <linux/compiler.h>
22 #include <asm/ucontext.h>
23 #include <asm/uaccess.h>
24 #include <asm/i387.h>
25 #include <asm/proto.h>
26 #include <asm/ia32_unistd.h>
27 #include <asm/mce.h>
29 /* #define DEBUG_SIG 1 */
31 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
33 int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
34 sigset_t *set, struct pt_regs * regs);
35 int ia32_setup_frame(int sig, struct k_sigaction *ka,
36 sigset_t *set, struct pt_regs * regs);
38 asmlinkage long
39 sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
40 struct pt_regs *regs)
42 return do_sigaltstack(uss, uoss, regs->sp);
47 * Do a signal return; undo the signal stack.
50 struct rt_sigframe
52 char __user *pretcode;
53 struct ucontext uc;
54 struct siginfo info;
57 static int
58 restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc, unsigned long *prax)
60 unsigned int err = 0;
62 /* Always make any pending restarted system calls return -EINTR */
63 current_thread_info()->restart_block.fn = do_no_restart_syscall;
65 #define COPY(x) err |= __get_user(regs->x, &sc->x)
67 COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
68 COPY(dx); COPY(cx); COPY(ip);
69 COPY(r8);
70 COPY(r9);
71 COPY(r10);
72 COPY(r11);
73 COPY(r12);
74 COPY(r13);
75 COPY(r14);
76 COPY(r15);
78 /* Kernel saves and restores only the CS segment register on signals,
79 * which is the bare minimum needed to allow mixed 32/64-bit code.
80 * App's signal handler can save/restore other segments if needed. */
82 unsigned cs;
83 err |= __get_user(cs, &sc->cs);
84 regs->cs = cs | 3; /* Force into user mode */
88 unsigned int tmpflags;
89 err |= __get_user(tmpflags, &sc->flags);
90 regs->flags = (regs->flags & ~0x40DD5) | (tmpflags & 0x40DD5);
91 regs->orig_ax = -1; /* disable syscall checks */
95 struct _fpstate __user * buf;
96 err |= __get_user(buf, &sc->fpstate);
98 if (buf) {
99 if (!access_ok(VERIFY_READ, buf, sizeof(*buf)))
100 goto badframe;
101 err |= restore_i387(buf);
102 } else {
103 struct task_struct *me = current;
104 if (used_math()) {
105 clear_fpu(me);
106 clear_used_math();
111 err |= __get_user(*prax, &sc->ax);
112 return err;
114 badframe:
115 return 1;
118 asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
120 struct rt_sigframe __user *frame;
121 sigset_t set;
122 unsigned long ax;
124 frame = (struct rt_sigframe __user *)(regs->sp - 8);
125 if (!access_ok(VERIFY_READ, frame, sizeof(*frame))) {
126 goto badframe;
128 if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set))) {
129 goto badframe;
132 sigdelsetmask(&set, ~_BLOCKABLE);
133 spin_lock_irq(&current->sighand->siglock);
134 current->blocked = set;
135 recalc_sigpending();
136 spin_unlock_irq(&current->sighand->siglock);
138 if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
139 goto badframe;
141 #ifdef DEBUG_SIG
142 printk("%d sigreturn ip:%lx sp:%lx frame:%p ax:%lx\n",current->pid,regs->ip,regs->sp,frame,ax);
143 #endif
145 if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
146 goto badframe;
148 return ax;
150 badframe:
151 signal_fault(regs,frame,"sigreturn");
152 return 0;
156 * Set up a signal frame.
159 static inline int
160 setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs, unsigned long mask, struct task_struct *me)
162 int err = 0;
164 err |= __put_user(regs->cs, &sc->cs);
165 err |= __put_user(0, &sc->gs);
166 err |= __put_user(0, &sc->fs);
168 err |= __put_user(regs->di, &sc->di);
169 err |= __put_user(regs->si, &sc->si);
170 err |= __put_user(regs->bp, &sc->bp);
171 err |= __put_user(regs->sp, &sc->sp);
172 err |= __put_user(regs->bx, &sc->bx);
173 err |= __put_user(regs->dx, &sc->dx);
174 err |= __put_user(regs->cx, &sc->cx);
175 err |= __put_user(regs->ax, &sc->ax);
176 err |= __put_user(regs->r8, &sc->r8);
177 err |= __put_user(regs->r9, &sc->r9);
178 err |= __put_user(regs->r10, &sc->r10);
179 err |= __put_user(regs->r11, &sc->r11);
180 err |= __put_user(regs->r12, &sc->r12);
181 err |= __put_user(regs->r13, &sc->r13);
182 err |= __put_user(regs->r14, &sc->r14);
183 err |= __put_user(regs->r15, &sc->r15);
184 err |= __put_user(me->thread.trap_no, &sc->trapno);
185 err |= __put_user(me->thread.error_code, &sc->err);
186 err |= __put_user(regs->ip, &sc->ip);
187 err |= __put_user(regs->flags, &sc->flags);
188 err |= __put_user(mask, &sc->oldmask);
189 err |= __put_user(me->thread.cr2, &sc->cr2);
191 return err;
195 * Determine which stack to use..
198 static void __user *
199 get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
201 unsigned long sp;
203 /* Default to using normal stack - redzone*/
204 sp = regs->sp - 128;
206 /* This is the X/Open sanctioned signal stack switching. */
207 if (ka->sa.sa_flags & SA_ONSTACK) {
208 if (sas_ss_flags(sp) == 0)
209 sp = current->sas_ss_sp + current->sas_ss_size;
212 return (void __user *)round_down(sp - size, 16);
215 static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
216 sigset_t *set, struct pt_regs * regs)
218 struct rt_sigframe __user *frame;
219 struct _fpstate __user *fp = NULL;
220 int err = 0;
221 struct task_struct *me = current;
223 if (used_math()) {
224 fp = get_stack(ka, regs, sizeof(struct _fpstate));
225 frame = (void __user *)round_down(
226 (unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;
228 if (!access_ok(VERIFY_WRITE, fp, sizeof(struct _fpstate)))
229 goto give_sigsegv;
231 if (save_i387(fp) < 0)
232 err |= -1;
233 } else
234 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
236 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
237 goto give_sigsegv;
239 if (ka->sa.sa_flags & SA_SIGINFO) {
240 err |= copy_siginfo_to_user(&frame->info, info);
241 if (err)
242 goto give_sigsegv;
245 /* Create the ucontext. */
246 err |= __put_user(0, &frame->uc.uc_flags);
247 err |= __put_user(0, &frame->uc.uc_link);
248 err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
249 err |= __put_user(sas_ss_flags(regs->sp),
250 &frame->uc.uc_stack.ss_flags);
251 err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
252 err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
253 err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
254 if (sizeof(*set) == 16) {
255 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
256 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
257 } else
258 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
260 /* Set up to return from userspace. If provided, use a stub
261 already in userspace. */
262 /* x86-64 should always use SA_RESTORER. */
263 if (ka->sa.sa_flags & SA_RESTORER) {
264 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
265 } else {
266 /* could use a vstub here */
267 goto give_sigsegv;
270 if (err)
271 goto give_sigsegv;
273 #ifdef DEBUG_SIG
274 printk("%d old ip %lx old sp %lx old ax %lx\n", current->pid,regs->ip,regs->sp,regs->ax);
275 #endif
277 /* Set up registers for signal handler */
278 regs->di = sig;
279 /* In case the signal handler was declared without prototypes */
280 regs->ax = 0;
282 /* This also works for non SA_SIGINFO handlers because they expect the
283 next argument after the signal number on the stack. */
284 regs->si = (unsigned long)&frame->info;
285 regs->dx = (unsigned long)&frame->uc;
286 regs->ip = (unsigned long) ka->sa.sa_handler;
288 regs->sp = (unsigned long)frame;
290 /* Set up the CS register to run signal handlers in 64-bit mode,
291 even if the handler happens to be interrupting 32-bit code. */
292 regs->cs = __USER_CS;
294 /* This, by contrast, has nothing to do with segment registers -
295 see include/asm-x86_64/uaccess.h for details. */
296 set_fs(USER_DS);
298 regs->flags &= ~(X86_EFLAGS_TF | X86_EFLAGS_DF);
299 if (test_thread_flag(TIF_SINGLESTEP))
300 ptrace_notify(SIGTRAP);
301 #ifdef DEBUG_SIG
302 printk("SIG deliver (%s:%d): sp=%p pc=%lx ra=%p\n",
303 current->comm, current->pid, frame, regs->ip, frame->pretcode);
304 #endif
306 return 0;
308 give_sigsegv:
309 force_sigsegv(sig, current);
310 return -EFAULT;
314 * Return -1L or the syscall number that @regs is executing.
316 static long current_syscall(struct pt_regs *regs)
319 * We always sign-extend a -1 value being set here,
320 * so this is always either -1L or a syscall number.
322 return regs->orig_ax;
326 * Return a value that is -EFOO if the system call in @regs->orig_ax
327 * returned an error. This only works for @regs from @current.
329 static long current_syscall_ret(struct pt_regs *regs)
331 #ifdef CONFIG_IA32_EMULATION
332 if (test_thread_flag(TIF_IA32))
334 * Sign-extend the value so (int)-EFOO becomes (long)-EFOO
335 * and will match correctly in comparisons.
337 return (int) regs->ax;
338 #endif
339 return regs->ax;
343 * OK, we're invoking a handler
346 static int
347 handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
348 sigset_t *oldset, struct pt_regs *regs)
350 int ret;
352 #ifdef DEBUG_SIG
353 printk("handle_signal pid:%d sig:%lu ip:%lx sp:%lx regs=%p\n",
354 current->pid, sig,
355 regs->ip, regs->sp, regs);
356 #endif
358 /* Are we from a system call? */
359 if (current_syscall(regs) >= 0) {
360 /* If so, check system call restarting.. */
361 switch (current_syscall_ret(regs)) {
362 case -ERESTART_RESTARTBLOCK:
363 case -ERESTARTNOHAND:
364 regs->ax = -EINTR;
365 break;
367 case -ERESTARTSYS:
368 if (!(ka->sa.sa_flags & SA_RESTART)) {
369 regs->ax = -EINTR;
370 break;
372 /* fallthrough */
373 case -ERESTARTNOINTR:
374 regs->ax = regs->orig_ax;
375 regs->ip -= 2;
376 break;
381 * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
382 * flag so that register information in the sigcontext is correct.
384 if (unlikely(regs->flags & X86_EFLAGS_TF) &&
385 likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
386 regs->flags &= ~X86_EFLAGS_TF;
388 #ifdef CONFIG_IA32_EMULATION
389 if (test_thread_flag(TIF_IA32)) {
390 if (ka->sa.sa_flags & SA_SIGINFO)
391 ret = ia32_setup_rt_frame(sig, ka, info, oldset, regs);
392 else
393 ret = ia32_setup_frame(sig, ka, oldset, regs);
394 } else
395 #endif
396 ret = setup_rt_frame(sig, ka, info, oldset, regs);
398 if (ret == 0) {
399 spin_lock_irq(&current->sighand->siglock);
400 sigorsets(&current->blocked,&current->blocked,&ka->sa.sa_mask);
401 if (!(ka->sa.sa_flags & SA_NODEFER))
402 sigaddset(&current->blocked,sig);
403 recalc_sigpending();
404 spin_unlock_irq(&current->sighand->siglock);
407 return ret;
411 * Note that 'init' is a special process: it doesn't get signals it doesn't
412 * want to handle. Thus you cannot kill init even with a SIGKILL even by
413 * mistake.
415 static void do_signal(struct pt_regs *regs)
417 struct k_sigaction ka;
418 siginfo_t info;
419 int signr;
420 sigset_t *oldset;
423 * We want the common case to go fast, which
424 * is why we may in certain cases get here from
425 * kernel mode. Just return without doing anything
426 * if so.
428 if (!user_mode(regs))
429 return;
431 if (test_thread_flag(TIF_RESTORE_SIGMASK))
432 oldset = &current->saved_sigmask;
433 else
434 oldset = &current->blocked;
436 signr = get_signal_to_deliver(&info, &ka, regs, NULL);
437 if (signr > 0) {
438 /* Re-enable any watchpoints before delivering the
439 * signal to user space. The processor register will
440 * have been cleared if the watchpoint triggered
441 * inside the kernel.
443 if (current->thread.debugreg7)
444 set_debugreg(current->thread.debugreg7, 7);
446 /* Whee! Actually deliver the signal. */
447 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
448 /* a signal was successfully delivered; the saved
449 * sigmask will have been stored in the signal frame,
450 * and will be restored by sigreturn, so we can simply
451 * clear the TIF_RESTORE_SIGMASK flag */
452 clear_thread_flag(TIF_RESTORE_SIGMASK);
454 return;
457 /* Did we come from a system call? */
458 if (current_syscall(regs) >= 0) {
459 /* Restart the system call - no handlers present */
460 switch (current_syscall_ret(regs)) {
461 case -ERESTARTNOHAND:
462 case -ERESTARTSYS:
463 case -ERESTARTNOINTR:
464 regs->ax = regs->orig_ax;
465 regs->ip -= 2;
466 break;
467 case -ERESTART_RESTARTBLOCK:
468 regs->ax = test_thread_flag(TIF_IA32) ?
469 __NR_ia32_restart_syscall :
470 __NR_restart_syscall;
471 regs->ip -= 2;
472 break;
476 /* if there's no signal to deliver, we just put the saved sigmask
477 back. */
478 if (test_thread_flag(TIF_RESTORE_SIGMASK)) {
479 clear_thread_flag(TIF_RESTORE_SIGMASK);
480 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
484 void
485 do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
487 #ifdef DEBUG_SIG
488 printk("do_notify_resume flags:%x ip:%lx sp:%lx caller:%p pending:%x\n",
489 thread_info_flags, regs->ip, regs->sp, __builtin_return_address(0),signal_pending(current));
490 #endif
492 /* Pending single-step? */
493 if (thread_info_flags & _TIF_SINGLESTEP) {
494 regs->flags |= X86_EFLAGS_TF;
495 clear_thread_flag(TIF_SINGLESTEP);
498 #ifdef CONFIG_X86_MCE
499 /* notify userspace of pending MCEs */
500 if (thread_info_flags & _TIF_MCE_NOTIFY)
501 mce_notify_user();
502 #endif /* CONFIG_X86_MCE */
504 /* deal with pending signal delivery */
505 if (thread_info_flags & (_TIF_SIGPENDING|_TIF_RESTORE_SIGMASK))
506 do_signal(regs);
508 if (thread_info_flags & _TIF_HRTICK_RESCHED)
509 hrtick_resched();
512 void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
514 struct task_struct *me = current;
515 if (show_unhandled_signals && printk_ratelimit()) {
516 printk("%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
517 me->comm,me->pid,where,frame,regs->ip,regs->sp,regs->orig_ax);
518 print_vma_addr(" in ", regs->ip);
519 printk("\n");
522 force_sig(SIGSEGV, me);