mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 18:26:42 +00:00
3f17fed214
The PTRACE_GETREGSET API has now existed since Linux 2.6.33. The XSAVE CPU feature should also be sufficiently common to be able to rely on it. With this, define our internal FP state to be the hosts XSAVE data. Add discovery for the hosts XSAVE size and place the FP registers at the end of task_struct so that we can adjust the size at runtime. Next we can implement the regset API on top and update the signal handling as well as ptrace APIs to use them. Also switch coredump creation to use the regset API and finally set HAVE_ARCH_TRACEHOOK. This considerably improves the signal frames. Previously they might not have contained all the registers (i386) and also did not have the sizes and magic values set to the correct values to permit userspace to decode the frame. As a side effect, this will permit UML to run on hosts with newer CPU extensions (such as AMX) that need even more register state. Signed-off-by: Benjamin Berg <benjamin.berg@intel.com> Link: https://patch.msgid.link/20241023094120.4083426-1-benjamin@sipsolutions.net Signed-off-by: Johannes Berg <johannes.berg@intel.com>
203 lines
4.4 KiB
C
203 lines
4.4 KiB
C
/*
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#include <linux/mm.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/uaccess.h>
|
|
#include <linux/regset.h>
|
|
#include <asm/ptrace-abi.h>
|
|
#include <registers.h>
|
|
#include <skas.h>
|
|
|
|
void arch_switch_to(struct task_struct *to)
|
|
{
|
|
int err = arch_switch_tls(to);
|
|
if (!err)
|
|
return;
|
|
|
|
if (err != -EINVAL)
|
|
printk(KERN_WARNING "arch_switch_tls failed, errno %d, "
|
|
"not EINVAL\n", -err);
|
|
else
|
|
printk(KERN_WARNING "arch_switch_tls failed, errno = EINVAL\n");
|
|
}
|
|
|
|
/* determines which flags the user has access to. */
|
|
/* 1 = access 0 = no access */
|
|
#define FLAG_MASK 0x00044dd5
|
|
|
|
static const int reg_offsets[] = {
|
|
[EBX] = HOST_BX,
|
|
[ECX] = HOST_CX,
|
|
[EDX] = HOST_DX,
|
|
[ESI] = HOST_SI,
|
|
[EDI] = HOST_DI,
|
|
[EBP] = HOST_BP,
|
|
[EAX] = HOST_AX,
|
|
[DS] = HOST_DS,
|
|
[ES] = HOST_ES,
|
|
[FS] = HOST_FS,
|
|
[GS] = HOST_GS,
|
|
[EIP] = HOST_IP,
|
|
[CS] = HOST_CS,
|
|
[EFL] = HOST_EFLAGS,
|
|
[UESP] = HOST_SP,
|
|
[SS] = HOST_SS,
|
|
[ORIG_EAX] = HOST_ORIG_AX,
|
|
};
|
|
|
|
int putreg(struct task_struct *child, int regno, unsigned long value)
|
|
{
|
|
regno >>= 2;
|
|
switch (regno) {
|
|
case EBX:
|
|
case ECX:
|
|
case EDX:
|
|
case ESI:
|
|
case EDI:
|
|
case EBP:
|
|
case EAX:
|
|
case EIP:
|
|
case UESP:
|
|
break;
|
|
case ORIG_EAX:
|
|
/* Update the syscall number. */
|
|
UPT_SYSCALL_NR(&child->thread.regs.regs) = value;
|
|
break;
|
|
case FS:
|
|
if (value && (value & 3) != 3)
|
|
return -EIO;
|
|
break;
|
|
case GS:
|
|
if (value && (value & 3) != 3)
|
|
return -EIO;
|
|
break;
|
|
case DS:
|
|
case ES:
|
|
if (value && (value & 3) != 3)
|
|
return -EIO;
|
|
value &= 0xffff;
|
|
break;
|
|
case SS:
|
|
case CS:
|
|
if ((value & 3) != 3)
|
|
return -EIO;
|
|
value &= 0xffff;
|
|
break;
|
|
case EFL:
|
|
value &= FLAG_MASK;
|
|
child->thread.regs.regs.gp[HOST_EFLAGS] |= value;
|
|
return 0;
|
|
default :
|
|
panic("Bad register in putreg() : %d\n", regno);
|
|
}
|
|
child->thread.regs.regs.gp[reg_offsets[regno]] = value;
|
|
return 0;
|
|
}
|
|
|
|
int poke_user(struct task_struct *child, long addr, long data)
|
|
{
|
|
if ((addr & 3) || addr < 0)
|
|
return -EIO;
|
|
|
|
if (addr < MAX_REG_OFFSET)
|
|
return putreg(child, addr, data);
|
|
else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
|
|
(addr <= offsetof(struct user, u_debugreg[7]))) {
|
|
addr -= offsetof(struct user, u_debugreg[0]);
|
|
addr = addr >> 2;
|
|
if ((addr == 4) || (addr == 5))
|
|
return -EIO;
|
|
child->thread.arch.debugregs[addr] = data;
|
|
return 0;
|
|
}
|
|
return -EIO;
|
|
}
|
|
|
|
unsigned long getreg(struct task_struct *child, int regno)
|
|
{
|
|
unsigned long mask = ~0UL;
|
|
|
|
regno >>= 2;
|
|
switch (regno) {
|
|
case FS:
|
|
case GS:
|
|
case DS:
|
|
case ES:
|
|
case SS:
|
|
case CS:
|
|
mask = 0xffff;
|
|
break;
|
|
case EIP:
|
|
case UESP:
|
|
case EAX:
|
|
case EBX:
|
|
case ECX:
|
|
case EDX:
|
|
case ESI:
|
|
case EDI:
|
|
case EBP:
|
|
case EFL:
|
|
case ORIG_EAX:
|
|
break;
|
|
default:
|
|
panic("Bad register in getreg() : %d\n", regno);
|
|
}
|
|
return mask & child->thread.regs.regs.gp[reg_offsets[regno]];
|
|
}
|
|
|
|
/* read the word at location addr in the USER area. */
|
|
int peek_user(struct task_struct *child, long addr, long data)
|
|
{
|
|
unsigned long tmp;
|
|
|
|
if ((addr & 3) || addr < 0)
|
|
return -EIO;
|
|
|
|
tmp = 0; /* Default return condition */
|
|
if (addr < MAX_REG_OFFSET) {
|
|
tmp = getreg(child, addr);
|
|
}
|
|
else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
|
|
(addr <= offsetof(struct user, u_debugreg[7]))) {
|
|
addr -= offsetof(struct user, u_debugreg[0]);
|
|
addr = addr >> 2;
|
|
tmp = child->thread.arch.debugregs[addr];
|
|
}
|
|
return put_user(tmp, (unsigned long __user *) data);
|
|
}
|
|
|
|
long subarch_ptrace(struct task_struct *child, long request,
|
|
unsigned long addr, unsigned long data)
|
|
{
|
|
int ret = -EIO;
|
|
void __user *datap = (void __user *) data;
|
|
switch (request) {
|
|
case PTRACE_GETFPREGS: /* Get the child FPU state. */
|
|
return copy_regset_to_user(child, task_user_regset_view(child),
|
|
REGSET_FP_LEGACY,
|
|
0, sizeof(struct user_i387_struct),
|
|
datap);
|
|
case PTRACE_SETFPREGS: /* Set the child FPU state. */
|
|
return copy_regset_from_user(child, task_user_regset_view(child),
|
|
REGSET_FP_LEGACY,
|
|
0, sizeof(struct user_i387_struct),
|
|
datap);
|
|
case PTRACE_GETFPXREGS: /* Get the child FPU state. */
|
|
return copy_regset_to_user(child, task_user_regset_view(child),
|
|
REGSET_FP,
|
|
0, sizeof(struct user_fxsr_struct),
|
|
datap);
|
|
case PTRACE_SETFPXREGS: /* Set the child FPU state. */
|
|
return copy_regset_from_user(child, task_user_regset_view(child),
|
|
REGSET_FP,
|
|
0, sizeof(struct user_fxsr_struct),
|
|
datap);
|
|
default:
|
|
ret = -EIO;
|
|
}
|
|
return ret;
|
|
}
|