x86: signal: cosmetic unification of restore_sigcontext()
[sfrench/cifs-2.6.git] / arch / x86 / kernel / signal_64.c
1 /*
2  *  Copyright (C) 1991, 1992  Linus Torvalds
3  *  Copyright (C) 2000, 2001, 2002 Andi Kleen SuSE Labs
4  *
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  */
9
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/tracehook.h>
19 #include <linux/unistd.h>
20 #include <linux/stddef.h>
21 #include <linux/personality.h>
22 #include <linux/compiler.h>
23 #include <linux/uaccess.h>
24
25 #include <asm/processor.h>
26 #include <asm/ucontext.h>
27 #include <asm/i387.h>
28 #include <asm/proto.h>
29 #include <asm/ia32_unistd.h>
30 #include <asm/mce.h>
31 #include <asm/syscall.h>
32 #include <asm/syscalls.h>
33 #include "sigframe.h"
34
35 #define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
36
37 #define __FIX_EFLAGS    (X86_EFLAGS_AC | X86_EFLAGS_OF | \
38                          X86_EFLAGS_DF | X86_EFLAGS_TF | X86_EFLAGS_SF | \
39                          X86_EFLAGS_ZF | X86_EFLAGS_AF | X86_EFLAGS_PF | \
40                          X86_EFLAGS_CF)
41
42 #ifdef CONFIG_X86_32
43 # define FIX_EFLAGS     (__FIX_EFLAGS | X86_EFLAGS_RF)
44 #else
45 # define FIX_EFLAGS     __FIX_EFLAGS
46 #endif
47
48 asmlinkage long
49 sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
50                 struct pt_regs *regs)
51 {
52         return do_sigaltstack(uss, uoss, regs->sp);
53 }
54
55 #define COPY(x)                 {               \
56         err |= __get_user(regs->x, &sc->x);     \
57 }
58
59 #define COPY_SEG_STRICT(seg)    {                       \
60                 unsigned short tmp;                     \
61                 err |= __get_user(tmp, &sc->seg);       \
62                 regs->seg = tmp | 3;                    \
63 }
64
65 /*
66  * Do a signal return; undo the signal stack.
67  */
68 static int
69 restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc,
70                    unsigned long *pax)
71 {
72         void __user *buf;
73         unsigned int tmpflags;
74         unsigned int err = 0;
75
76         /* Always make any pending restarted system calls return -EINTR */
77         current_thread_info()->restart_block.fn = do_no_restart_syscall;
78
79 #ifdef CONFIG_X86_32
80         GET_SEG(gs);
81         COPY_SEG(fs);
82         COPY_SEG(es);
83         COPY_SEG(ds);
84 #endif /* CONFIG_X86_32 */
85
86         COPY(di); COPY(si); COPY(bp); COPY(sp); COPY(bx);
87         COPY(dx); COPY(cx); COPY(ip);
88
89 #ifdef CONFIG_X86_64
90         COPY(r8);
91         COPY(r9);
92         COPY(r10);
93         COPY(r11);
94         COPY(r12);
95         COPY(r13);
96         COPY(r14);
97         COPY(r15);
98 #endif /* CONFIG_X86_64 */
99
100 #ifdef CONFIG_X86_32
101         COPY_SEG_STRICT(cs);
102         COPY_SEG_STRICT(ss);
103 #else /* !CONFIG_X86_32 */
104         /* Kernel saves and restores only the CS segment register on signals,
105          * which is the bare minimum needed to allow mixed 32/64-bit code.
106          * App's signal handler can save/restore other segments if needed. */
107         COPY_SEG_STRICT(cs);
108 #endif /* CONFIG_X86_32 */
109
110         err |= __get_user(tmpflags, &sc->flags);
111         regs->flags = (regs->flags & ~FIX_EFLAGS) | (tmpflags & FIX_EFLAGS);
112         regs->orig_ax = -1;             /* disable syscall checks */
113
114         err |= __get_user(buf, &sc->fpstate);
115         err |= restore_i387_xstate(buf);
116
117         err |= __get_user(*pax, &sc->ax);
118         return err;
119 }
120
121 static long do_rt_sigreturn(struct pt_regs *regs)
122 {
123         struct rt_sigframe __user *frame;
124         unsigned long ax;
125         sigset_t set;
126
127         frame = (struct rt_sigframe __user *)(regs->sp - sizeof(long));
128         if (!access_ok(VERIFY_READ, frame, sizeof(*frame)))
129                 goto badframe;
130         if (__copy_from_user(&set, &frame->uc.uc_sigmask, sizeof(set)))
131                 goto badframe;
132
133         sigdelsetmask(&set, ~_BLOCKABLE);
134         spin_lock_irq(&current->sighand->siglock);
135         current->blocked = set;
136         recalc_sigpending();
137         spin_unlock_irq(&current->sighand->siglock);
138
139         if (restore_sigcontext(regs, &frame->uc.uc_mcontext, &ax))
140                 goto badframe;
141
142         if (do_sigaltstack(&frame->uc.uc_stack, NULL, regs->sp) == -EFAULT)
143                 goto badframe;
144
145         return ax;
146
147 badframe:
148         signal_fault(regs, frame, "rt_sigreturn");
149         return 0;
150 }
151
152 asmlinkage long sys_rt_sigreturn(struct pt_regs *regs)
153 {
154         return do_rt_sigreturn(regs);
155 }
156
157 /*
158  * Set up a signal frame.
159  */
160
161 static inline int
162 setup_sigcontext(struct sigcontext __user *sc, struct pt_regs *regs,
163                 unsigned long mask, struct task_struct *me)
164 {
165         int err = 0;
166
167         err |= __put_user(regs->cs, &sc->cs);
168         err |= __put_user(0, &sc->gs);
169         err |= __put_user(0, &sc->fs);
170
171         err |= __put_user(regs->di, &sc->di);
172         err |= __put_user(regs->si, &sc->si);
173         err |= __put_user(regs->bp, &sc->bp);
174         err |= __put_user(regs->sp, &sc->sp);
175         err |= __put_user(regs->bx, &sc->bx);
176         err |= __put_user(regs->dx, &sc->dx);
177         err |= __put_user(regs->cx, &sc->cx);
178         err |= __put_user(regs->ax, &sc->ax);
179         err |= __put_user(regs->r8, &sc->r8);
180         err |= __put_user(regs->r9, &sc->r9);
181         err |= __put_user(regs->r10, &sc->r10);
182         err |= __put_user(regs->r11, &sc->r11);
183         err |= __put_user(regs->r12, &sc->r12);
184         err |= __put_user(regs->r13, &sc->r13);
185         err |= __put_user(regs->r14, &sc->r14);
186         err |= __put_user(regs->r15, &sc->r15);
187         err |= __put_user(me->thread.trap_no, &sc->trapno);
188         err |= __put_user(me->thread.error_code, &sc->err);
189         err |= __put_user(regs->ip, &sc->ip);
190         err |= __put_user(regs->flags, &sc->flags);
191         err |= __put_user(mask, &sc->oldmask);
192         err |= __put_user(me->thread.cr2, &sc->cr2);
193
194         return err;
195 }
196
197 /*
198  * Determine which stack to use..
199  */
200
201 static void __user *
202 get_stack(struct k_sigaction *ka, struct pt_regs *regs, unsigned long size)
203 {
204         unsigned long sp;
205
206         /* Default to using normal stack - redzone*/
207         sp = regs->sp - 128;
208
209         /* This is the X/Open sanctioned signal stack switching.  */
210         if (ka->sa.sa_flags & SA_ONSTACK) {
211                 if (sas_ss_flags(sp) == 0)
212                         sp = current->sas_ss_sp + current->sas_ss_size;
213         }
214
215         return (void __user *)round_down(sp - size, 64);
216 }
217
218 static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
219                             sigset_t *set, struct pt_regs *regs)
220 {
221         struct rt_sigframe __user *frame;
222         void __user *fp = NULL;
223         int err = 0;
224         struct task_struct *me = current;
225
226         if (used_math()) {
227                 fp = get_stack(ka, regs, sig_xstate_size);
228                 frame = (void __user *)round_down(
229                         (unsigned long)fp - sizeof(struct rt_sigframe), 16) - 8;
230
231                 if (save_i387_xstate(fp) < 0)
232                         return -EFAULT;
233         } else
234                 frame = get_stack(ka, regs, sizeof(struct rt_sigframe)) - 8;
235
236         if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
237                 return -EFAULT;
238
239         if (ka->sa.sa_flags & SA_SIGINFO) {
240                 if (copy_siginfo_to_user(&frame->info, info))
241                         return -EFAULT;
242         }
243
244         /* Create the ucontext.  */
245         if (cpu_has_xsave)
246                 err |= __put_user(UC_FP_XSTATE, &frame->uc.uc_flags);
247         else
248                 err |= __put_user(0, &frame->uc.uc_flags);
249         err |= __put_user(0, &frame->uc.uc_link);
250         err |= __put_user(me->sas_ss_sp, &frame->uc.uc_stack.ss_sp);
251         err |= __put_user(sas_ss_flags(regs->sp),
252                           &frame->uc.uc_stack.ss_flags);
253         err |= __put_user(me->sas_ss_size, &frame->uc.uc_stack.ss_size);
254         err |= setup_sigcontext(&frame->uc.uc_mcontext, regs, set->sig[0], me);
255         err |= __put_user(fp, &frame->uc.uc_mcontext.fpstate);
256         if (sizeof(*set) == 16) {
257                 __put_user(set->sig[0], &frame->uc.uc_sigmask.sig[0]);
258                 __put_user(set->sig[1], &frame->uc.uc_sigmask.sig[1]);
259         } else
260                 err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
261
262         /* Set up to return from userspace.  If provided, use a stub
263            already in userspace.  */
264         /* x86-64 should always use SA_RESTORER. */
265         if (ka->sa.sa_flags & SA_RESTORER) {
266                 err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
267         } else {
268                 /* could use a vstub here */
269                 return -EFAULT;
270         }
271
272         if (err)
273                 return -EFAULT;
274
275         /* Set up registers for signal handler */
276         regs->di = sig;
277         /* In case the signal handler was declared without prototypes */
278         regs->ax = 0;
279
280         /* This also works for non SA_SIGINFO handlers because they expect the
281            next argument after the signal number on the stack. */
282         regs->si = (unsigned long)&frame->info;
283         regs->dx = (unsigned long)&frame->uc;
284         regs->ip = (unsigned long) ka->sa.sa_handler;
285
286         regs->sp = (unsigned long)frame;
287
288         /* Set up the CS register to run signal handlers in 64-bit mode,
289            even if the handler happens to be interrupting 32-bit code. */
290         regs->cs = __USER_CS;
291
292         return 0;
293 }
294
295 /*
296  * OK, we're invoking a handler
297  */
298 static int signr_convert(int sig)
299 {
300         return sig;
301 }
302
303 #ifdef CONFIG_IA32_EMULATION
304 #define is_ia32 test_thread_flag(TIF_IA32)
305 #else
306 #define is_ia32 0
307 #endif
308
309 static int
310 setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
311                sigset_t *set, struct pt_regs *regs)
312 {
313         int usig = signr_convert(sig);
314         int ret;
315
316         /* Set up the stack frame */
317         if (is_ia32) {
318                 if (ka->sa.sa_flags & SA_SIGINFO)
319                         ret = ia32_setup_rt_frame(usig, ka, info, set, regs);
320                 else
321                         ret = ia32_setup_frame(usig, ka, set, regs);
322         } else
323                 ret = __setup_rt_frame(sig, ka, info, set, regs);
324
325         if (ret) {
326                 force_sigsegv(sig, current);
327                 return -EFAULT;
328         }
329
330         return ret;
331 }
332
333 static int
334 handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
335               sigset_t *oldset, struct pt_regs *regs)
336 {
337         int ret;
338
339         /* Are we from a system call? */
340         if (syscall_get_nr(current, regs) >= 0) {
341                 /* If so, check system call restarting.. */
342                 switch (syscall_get_error(current, regs)) {
343                 case -ERESTART_RESTARTBLOCK:
344                 case -ERESTARTNOHAND:
345                         regs->ax = -EINTR;
346                         break;
347
348                 case -ERESTARTSYS:
349                         if (!(ka->sa.sa_flags & SA_RESTART)) {
350                                 regs->ax = -EINTR;
351                                 break;
352                         }
353                 /* fallthrough */
354                 case -ERESTARTNOINTR:
355                         regs->ax = regs->orig_ax;
356                         regs->ip -= 2;
357                         break;
358                 }
359         }
360
361         /*
362          * If TF is set due to a debugger (TIF_FORCED_TF), clear the TF
363          * flag so that register information in the sigcontext is correct.
364          */
365         if (unlikely(regs->flags & X86_EFLAGS_TF) &&
366             likely(test_and_clear_thread_flag(TIF_FORCED_TF)))
367                 regs->flags &= ~X86_EFLAGS_TF;
368
369         ret = setup_rt_frame(sig, ka, info, oldset, regs);
370
371         if (ret)
372                 return ret;
373
374 #ifdef CONFIG_X86_64
375         /*
376          * This has nothing to do with segment registers,
377          * despite the name.  This magic affects uaccess.h
378          * macros' behavior.  Reset it to the normal setting.
379          */
380         set_fs(USER_DS);
381 #endif
382
383         /*
384          * Clear the direction flag as per the ABI for function entry.
385          */
386         regs->flags &= ~X86_EFLAGS_DF;
387
388         /*
389          * Clear TF when entering the signal handler, but
390          * notify any tracer that was single-stepping it.
391          * The tracer may want to single-step inside the
392          * handler too.
393          */
394         regs->flags &= ~X86_EFLAGS_TF;
395
396         spin_lock_irq(&current->sighand->siglock);
397         sigorsets(&current->blocked, &current->blocked, &ka->sa.sa_mask);
398         if (!(ka->sa.sa_flags & SA_NODEFER))
399                 sigaddset(&current->blocked, sig);
400         recalc_sigpending();
401         spin_unlock_irq(&current->sighand->siglock);
402
403         tracehook_signal_handler(sig, info, ka, regs,
404                                  test_thread_flag(TIF_SINGLESTEP));
405
406         return 0;
407 }
408
409 #define NR_restart_syscall      \
410         test_thread_flag(TIF_IA32) ? __NR_ia32_restart_syscall : __NR_restart_syscall
411 /*
412  * Note that 'init' is a special process: it doesn't get signals it doesn't
413  * want to handle. Thus you cannot kill init even with a SIGKILL even by
414  * mistake.
415  */
416 static void do_signal(struct pt_regs *regs)
417 {
418         struct k_sigaction ka;
419         siginfo_t info;
420         int signr;
421         sigset_t *oldset;
422
423         /*
424          * We want the common case to go fast, which is why we may in certain
425          * cases get here from kernel mode. Just return without doing anything
426          * if so.
427          * X86_32: vm86 regs switched out by assembly code before reaching
428          * here, so testing against kernel CS suffices.
429          */
430         if (!user_mode(regs))
431                 return;
432
433         if (current_thread_info()->status & TS_RESTORE_SIGMASK)
434                 oldset = &current->saved_sigmask;
435         else
436                 oldset = &current->blocked;
437
438         signr = get_signal_to_deliver(&info, &ka, regs, NULL);
439         if (signr > 0) {
440                 /*
441                  * Re-enable any watchpoints before delivering the
442                  * signal to user space. The processor register will
443                  * have been cleared if the watchpoint triggered
444                  * inside the kernel.
445                  */
446                 if (current->thread.debugreg7)
447                         set_debugreg(current->thread.debugreg7, 7);
448
449                 /* Whee! Actually deliver the signal.  */
450                 if (handle_signal(signr, &info, &ka, oldset, regs) == 0) {
451                         /*
452                          * A signal was successfully delivered; the saved
453                          * sigmask will have been stored in the signal frame,
454                          * and will be restored by sigreturn, so we can simply
455                          * clear the TS_RESTORE_SIGMASK flag.
456                          */
457                         current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
458                 }
459                 return;
460         }
461
462         /* Did we come from a system call? */
463         if (syscall_get_nr(current, regs) >= 0) {
464                 /* Restart the system call - no handlers present */
465                 switch (syscall_get_error(current, regs)) {
466                 case -ERESTARTNOHAND:
467                 case -ERESTARTSYS:
468                 case -ERESTARTNOINTR:
469                         regs->ax = regs->orig_ax;
470                         regs->ip -= 2;
471                         break;
472
473                 case -ERESTART_RESTARTBLOCK:
474                         regs->ax = NR_restart_syscall;
475                         regs->ip -= 2;
476                         break;
477                 }
478         }
479
480         /*
481          * If there's no signal to deliver, we just put the saved sigmask
482          * back.
483          */
484         if (current_thread_info()->status & TS_RESTORE_SIGMASK) {
485                 current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
486                 sigprocmask(SIG_SETMASK, &current->saved_sigmask, NULL);
487         }
488 }
489
490 /*
491  * notification of userspace execution resumption
492  * - triggered by the TIF_WORK_MASK flags
493  */
494 void
495 do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags)
496 {
497 #if defined(CONFIG_X86_64) && defined(CONFIG_X86_MCE)
498         /* notify userspace of pending MCEs */
499         if (thread_info_flags & _TIF_MCE_NOTIFY)
500                 mce_notify_user();
501 #endif /* CONFIG_X86_64 && CONFIG_X86_MCE */
502
503         /* deal with pending signal delivery */
504         if (thread_info_flags & _TIF_SIGPENDING)
505                 do_signal(regs);
506
507         if (thread_info_flags & _TIF_NOTIFY_RESUME) {
508                 clear_thread_flag(TIF_NOTIFY_RESUME);
509                 tracehook_notify_resume(regs);
510         }
511
512 #ifdef CONFIG_X86_32
513         clear_thread_flag(TIF_IRET);
514 #endif /* CONFIG_X86_32 */
515 }
516
517 void signal_fault(struct pt_regs *regs, void __user *frame, char *where)
518 {
519         struct task_struct *me = current;
520
521         if (show_unhandled_signals && printk_ratelimit()) {
522                 printk(KERN_INFO
523                        "%s[%d] bad frame in %s frame:%p ip:%lx sp:%lx orax:%lx",
524                        me->comm, me->pid, where, frame,
525                        regs->ip, regs->sp, regs->orig_ax);
526                 print_vma_addr(" in ", regs->ip);
527                 printk(KERN_CONT "\n");
528         }
529
530         force_sig(SIGSEGV, me);
531 }