2 * Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3 * Licensed under the GPL
6 #include <linux/ptrace.h>
7 #include <asm/unistd.h>
8 #include <asm/uaccess.h>
9 #include <asm/ucontext.h>
10 #include "frame_kern.h"
13 void copy_sc(struct uml_pt_regs *regs, void *from)
15 struct sigcontext *sc = from;
17 REGS_GS(regs->gp) = sc->gs;
18 REGS_FS(regs->gp) = sc->fs;
19 REGS_ES(regs->gp) = sc->es;
20 REGS_DS(regs->gp) = sc->ds;
21 REGS_EDI(regs->gp) = sc->di;
22 REGS_ESI(regs->gp) = sc->si;
23 REGS_EBP(regs->gp) = sc->bp;
24 REGS_SP(regs->gp) = sc->sp;
25 REGS_EBX(regs->gp) = sc->bx;
26 REGS_EDX(regs->gp) = sc->dx;
27 REGS_ECX(regs->gp) = sc->cx;
28 REGS_EAX(regs->gp) = sc->ax;
29 REGS_IP(regs->gp) = sc->ip;
30 REGS_CS(regs->gp) = sc->cs;
31 REGS_EFLAGS(regs->gp) = sc->flags;
32 REGS_SS(regs->gp) = sc->ss;
36 * FPU tag word conversions.
39 static inline unsigned short twd_i387_to_fxsr(unsigned short twd)
41 unsigned int tmp; /* to avoid 16 bit prefixes in the code */
43 /* Transform each pair of bits into 01 (valid) or 00 (empty) */
45 tmp = (tmp | (tmp>>1)) & 0x5555; /* 0V0V0V0V0V0V0V0V */
46 /* and move the valid bits to the lower byte. */
47 tmp = (tmp | (tmp >> 1)) & 0x3333; /* 00VV00VV00VV00VV */
48 tmp = (tmp | (tmp >> 2)) & 0x0f0f; /* 0000VVVV0000VVVV */
49 tmp = (tmp | (tmp >> 4)) & 0x00ff; /* 00000000VVVVVVVV */
53 static inline unsigned long twd_fxsr_to_i387(struct user_fxsr_struct *fxsave)
55 struct _fpxreg *st = NULL;
56 unsigned long twd = (unsigned long) fxsave->twd;
58 unsigned long ret = 0xffff0000;
61 #define FPREG_ADDR(f, n) ((char *)&(f)->st_space + (n) * 16);
63 for (i = 0; i < 8; i++) {
65 st = (struct _fpxreg *) FPREG_ADDR(fxsave, i);
67 switch (st->exponent & 0x7fff) {
69 tag = 2; /* Special */
72 if ( !st->significand[0] &&
73 !st->significand[1] &&
74 !st->significand[2] &&
75 !st->significand[3] ) {
78 tag = 2; /* Special */
82 if (st->significand[3] & 0x8000) {
85 tag = 2; /* Special */
92 ret |= (tag << (2 * i));
98 static int convert_fxsr_to_user(struct _fpstate __user *buf,
99 struct user_fxsr_struct *fxsave)
101 unsigned long env[7];
102 struct _fpreg __user *to;
103 struct _fpxreg *from;
106 env[0] = (unsigned long)fxsave->cwd | 0xffff0000ul;
107 env[1] = (unsigned long)fxsave->swd | 0xffff0000ul;
108 env[2] = twd_fxsr_to_i387(fxsave);
109 env[3] = fxsave->fip;
110 env[4] = fxsave->fcs | ((unsigned long)fxsave->fop << 16);
111 env[5] = fxsave->foo;
112 env[6] = fxsave->fos;
114 if (__copy_to_user(buf, env, 7 * sizeof(unsigned long)))
118 from = (struct _fpxreg *) &fxsave->st_space[0];
119 for (i = 0; i < 8; i++, to++, from++) {
120 unsigned long __user *t = (unsigned long __user *)to;
121 unsigned long *f = (unsigned long *)from;
123 if (__put_user(*f, t) ||
124 __put_user(*(f + 1), t + 1) ||
125 __put_user(from->exponent, &to->exponent))
131 static int convert_fxsr_from_user(struct user_fxsr_struct *fxsave,
132 struct _fpstate __user *buf)
134 unsigned long env[7];
136 struct _fpreg __user *from;
139 if (copy_from_user( env, buf, 7 * sizeof(long)))
142 fxsave->cwd = (unsigned short)(env[0] & 0xffff);
143 fxsave->swd = (unsigned short)(env[1] & 0xffff);
144 fxsave->twd = twd_i387_to_fxsr((unsigned short)(env[2] & 0xffff));
145 fxsave->fip = env[3];
146 fxsave->fop = (unsigned short)((env[4] & 0xffff0000ul) >> 16);
147 fxsave->fcs = (env[4] & 0xffff);
148 fxsave->foo = env[5];
149 fxsave->fos = env[6];
151 to = (struct _fpxreg *) &fxsave->st_space[0];
153 for (i = 0; i < 8; i++, to++, from++) {
154 unsigned long *t = (unsigned long *)to;
155 unsigned long __user *f = (unsigned long __user *)from;
157 if (__get_user(*t, f) ||
158 __get_user(*(t + 1), f + 1) ||
159 __get_user(to->exponent, &from->exponent))
165 extern int have_fpx_regs;
167 static int copy_sc_from_user(struct pt_regs *regs,
168 struct sigcontext __user *from)
170 struct sigcontext sc;
173 err = copy_from_user(&sc, from, sizeof(sc));
177 pid = userspace_pid[current_thread_info()->cpu];
178 copy_sc(®s->regs, &sc);
180 struct user_fxsr_struct fpx;
182 err = copy_from_user(&fpx, &sc.fpstate->_fxsr_env[0],
183 sizeof(struct user_fxsr_struct));
187 err = convert_fxsr_from_user(&fpx, sc.fpstate);
191 err = restore_fpx_registers(pid, (unsigned long *) &fpx);
193 printk(KERN_ERR "copy_sc_from_user - "
194 "restore_fpx_registers failed, errno = %d\n",
200 struct user_i387_struct fp;
202 err = copy_from_user(&fp, sc.fpstate,
203 sizeof(struct user_i387_struct));
207 err = restore_fp_registers(pid, (unsigned long *) &fp);
209 printk(KERN_ERR "copy_sc_from_user - "
210 "restore_fp_registers failed, errno = %d\n",
219 static int copy_sc_to_user(struct sigcontext __user *to,
220 struct _fpstate __user *to_fp, struct pt_regs *regs,
223 struct sigcontext sc;
224 struct faultinfo * fi = ¤t->thread.arch.faultinfo;
227 sc.gs = REGS_GS(regs->regs.gp);
228 sc.fs = REGS_FS(regs->regs.gp);
229 sc.es = REGS_ES(regs->regs.gp);
230 sc.ds = REGS_DS(regs->regs.gp);
231 sc.di = REGS_EDI(regs->regs.gp);
232 sc.si = REGS_ESI(regs->regs.gp);
233 sc.bp = REGS_EBP(regs->regs.gp);
235 sc.bx = REGS_EBX(regs->regs.gp);
236 sc.dx = REGS_EDX(regs->regs.gp);
237 sc.cx = REGS_ECX(regs->regs.gp);
238 sc.ax = REGS_EAX(regs->regs.gp);
239 sc.ip = REGS_IP(regs->regs.gp);
240 sc.cs = REGS_CS(regs->regs.gp);
241 sc.flags = REGS_EFLAGS(regs->regs.gp);
242 sc.sp_at_signal = regs->regs.gp[UESP];
243 sc.ss = regs->regs.gp[SS];
245 sc.err = fi->error_code;
246 sc.trapno = fi->trap_no;
248 to_fp = (to_fp ? to_fp : (struct _fpstate __user *) (to + 1));
251 pid = userspace_pid[current_thread_info()->cpu];
253 struct user_fxsr_struct fpx;
255 err = save_fpx_registers(pid, (unsigned long *) &fpx);
257 printk(KERN_ERR "copy_sc_to_user - save_fpx_registers "
258 "failed, errno = %d\n", err);
262 err = convert_fxsr_to_user(to_fp, &fpx);
266 err |= __put_user(fpx.swd, &to_fp->status);
267 err |= __put_user(X86_FXSR_MAGIC, &to_fp->magic);
271 if (copy_to_user(&to_fp->_fxsr_env[0], &fpx,
272 sizeof(struct user_fxsr_struct)))
276 struct user_i387_struct fp;
278 err = save_fp_registers(pid, (unsigned long *) &fp);
279 if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct)))
283 return copy_to_user(to, &sc, sizeof(sc));
286 static int copy_ucontext_to_user(struct ucontext __user *uc,
287 struct _fpstate __user *fp, sigset_t *set,
292 err |= put_user(current->sas_ss_sp, &uc->uc_stack.ss_sp);
293 err |= put_user(sas_ss_flags(sp), &uc->uc_stack.ss_flags);
294 err |= put_user(current->sas_ss_size, &uc->uc_stack.ss_size);
295 err |= copy_sc_to_user(&uc->uc_mcontext, fp, ¤t->thread.regs, sp);
296 err |= copy_to_user(&uc->uc_sigmask, set, sizeof(*set));
302 char __user *pretcode;
304 struct sigcontext sc;
305 struct _fpstate fpstate;
306 unsigned long extramask[_NSIG_WORDS-1];
312 char __user *pretcode;
314 struct siginfo __user *pinfo;
318 struct _fpstate fpstate;
322 int setup_signal_stack_sc(unsigned long stack_top, int sig,
323 struct k_sigaction *ka, struct pt_regs *regs,
326 struct sigframe __user *frame;
327 void __user *restorer;
328 unsigned long save_sp = PT_REGS_SP(regs);
331 /* This is the same calculation as i386 - ((sp + 4) & 15) == 0 */
332 stack_top = ((stack_top + 4) & -16UL) - 4;
333 frame = (struct sigframe __user *) stack_top - 1;
334 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
337 restorer = frame->retcode;
338 if (ka->sa.sa_flags & SA_RESTORER)
339 restorer = ka->sa.sa_restorer;
341 /* Update SP now because the page fault handler refuses to extend
342 * the stack if the faulting address is too far below the current
343 * SP, which frame now certainly is. If there's an error, the original
344 * value is restored on the way out.
345 * When writing the sigcontext to the stack, we have to write the
346 * original value, so that's passed to copy_sc_to_user, which does
347 * the right thing with it.
349 PT_REGS_SP(regs) = (unsigned long) frame;
351 err |= __put_user(restorer, &frame->pretcode);
352 err |= __put_user(sig, &frame->sig);
353 err |= copy_sc_to_user(&frame->sc, NULL, regs, save_sp);
354 err |= __put_user(mask->sig[0], &frame->sc.oldmask);
356 err |= __copy_to_user(&frame->extramask, &mask->sig[1],
357 sizeof(frame->extramask));
360 * This is popl %eax ; movl $,%eax ; int $0x80
362 * WE DO NOT USE IT ANY MORE! It's only left here for historical
363 * reasons and because gdb uses it as a signature to notice
364 * signal handler stack frames.
366 err |= __put_user(0xb858, (short __user *)(frame->retcode+0));
367 err |= __put_user(__NR_sigreturn, (int __user *)(frame->retcode+2));
368 err |= __put_user(0x80cd, (short __user *)(frame->retcode+6));
373 PT_REGS_SP(regs) = (unsigned long) frame;
374 PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
375 PT_REGS_EAX(regs) = (unsigned long) sig;
376 PT_REGS_EDX(regs) = (unsigned long) 0;
377 PT_REGS_ECX(regs) = (unsigned long) 0;
379 if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED))
380 ptrace_notify(SIGTRAP);
384 PT_REGS_SP(regs) = save_sp;
388 int setup_signal_stack_si(unsigned long stack_top, int sig,
389 struct k_sigaction *ka, struct pt_regs *regs,
390 siginfo_t *info, sigset_t *mask)
392 struct rt_sigframe __user *frame;
393 void __user *restorer;
394 unsigned long save_sp = PT_REGS_SP(regs);
398 frame = (struct rt_sigframe __user *) stack_top - 1;
399 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
402 restorer = frame->retcode;
403 if (ka->sa.sa_flags & SA_RESTORER)
404 restorer = ka->sa.sa_restorer;
406 /* See comment above about why this is here */
407 PT_REGS_SP(regs) = (unsigned long) frame;
409 err |= __put_user(restorer, &frame->pretcode);
410 err |= __put_user(sig, &frame->sig);
411 err |= __put_user(&frame->info, &frame->pinfo);
412 err |= __put_user(&frame->uc, &frame->puc);
413 err |= copy_siginfo_to_user(&frame->info, info);
414 err |= copy_ucontext_to_user(&frame->uc, &frame->fpstate, mask,
418 * This is movl $,%eax ; int $0x80
420 * WE DO NOT USE IT ANY MORE! It's only left here for historical
421 * reasons and because gdb uses it as a signature to notice
422 * signal handler stack frames.
424 err |= __put_user(0xb8, (char __user *)(frame->retcode+0));
425 err |= __put_user(__NR_rt_sigreturn, (int __user *)(frame->retcode+1));
426 err |= __put_user(0x80cd, (short __user *)(frame->retcode+5));
431 PT_REGS_IP(regs) = (unsigned long) ka->sa.sa_handler;
432 PT_REGS_EAX(regs) = (unsigned long) sig;
433 PT_REGS_EDX(regs) = (unsigned long) &frame->info;
434 PT_REGS_ECX(regs) = (unsigned long) &frame->uc;
436 if ((current->ptrace & PT_DTRACE) && (current->ptrace & PT_PTRACED))
437 ptrace_notify(SIGTRAP);
441 PT_REGS_SP(regs) = save_sp;
445 long sys_sigreturn(struct pt_regs regs)
447 unsigned long sp = PT_REGS_SP(¤t->thread.regs);
448 struct sigframe __user *frame = (struct sigframe __user *)(sp - 8);
450 struct sigcontext __user *sc = &frame->sc;
451 unsigned long __user *oldmask = &sc->oldmask;
452 unsigned long __user *extramask = frame->extramask;
453 int sig_size = (_NSIG_WORDS - 1) * sizeof(unsigned long);
455 if (copy_from_user(&set.sig[0], oldmask, sizeof(set.sig[0])) ||
456 copy_from_user(&set.sig[1], extramask, sig_size))
459 sigdelsetmask(&set, ~_BLOCKABLE);
461 spin_lock_irq(¤t->sighand->siglock);
462 current->blocked = set;
464 spin_unlock_irq(¤t->sighand->siglock);
466 if (copy_sc_from_user(¤t->thread.regs, sc))
469 /* Avoid ERESTART handling */
470 PT_REGS_SYSCALL_NR(¤t->thread.regs) = -1;
471 return PT_REGS_SYSCALL_RET(¤t->thread.regs);
474 force_sig(SIGSEGV, current);
478 long sys_rt_sigreturn(struct pt_regs regs)
480 unsigned long sp = PT_REGS_SP(¤t->thread.regs);
481 struct rt_sigframe __user *frame =
482 (struct rt_sigframe __user *) (sp - 4);
484 struct ucontext __user *uc = &frame->uc;
485 int sig_size = _NSIG_WORDS * sizeof(unsigned long);
487 if (copy_from_user(&set, &uc->uc_sigmask, sig_size))
490 sigdelsetmask(&set, ~_BLOCKABLE);
492 spin_lock_irq(¤t->sighand->siglock);
493 current->blocked = set;
495 spin_unlock_irq(¤t->sighand->siglock);
497 if (copy_sc_from_user(¤t->thread.regs, &uc->uc_mcontext))
500 /* Avoid ERESTART handling */
501 PT_REGS_SYSCALL_NR(¤t->thread.regs) = -1;
502 return PT_REGS_SYSCALL_RET(¤t->thread.regs);
505 force_sig(SIGSEGV, current);