2007-10-16 10:27:00 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
2006-03-27 11:14:34 +02:00
|
|
|
#include "linux/mm.h"
|
2007-10-16 10:27:00 +02:00
|
|
|
#include "linux/sched.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "asm/uaccess.h"
|
2007-10-16 10:27:16 +02:00
|
|
|
#include "skas.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-02-05 07:30:49 +01:00
|
|
|
extern int arch_switch_tls(struct task_struct *to);
|
2007-10-16 10:26:58 +02:00
|
|
|
|
2008-02-05 07:30:49 +01:00
|
|
|
void arch_switch_to(struct task_struct *to)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-05 07:30:49 +01:00
|
|
|
int err = arch_switch_tls(to);
|
2006-03-31 12:30:24 +02:00
|
|
|
if (!err)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (err != -EINVAL)
|
2007-10-16 10:27:00 +02:00
|
|
|
printk(KERN_WARNING "arch_switch_tls failed, errno %d, "
|
|
|
|
"not EINVAL\n", -err);
|
2006-03-31 12:30:24 +02:00
|
|
|
else
|
2007-10-16 10:26:58 +02:00
|
|
|
printk(KERN_WARNING "arch_switch_tls failed, errno = EINVAL\n");
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int is_syscall(unsigned long addr)
|
|
|
|
{
|
|
|
|
unsigned short instr;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
|
2007-10-16 10:27:00 +02:00
|
|
|
if (n) {
|
2006-03-27 11:14:34 +02:00
|
|
|
/* access_process_vm() grants access to vsyscall and stub,
|
|
|
|
* while copy_from_user doesn't. Maybe access_process_vm is
|
|
|
|
* slow, but that doesn't matter, since it will be called only
|
|
|
|
* in case of singlestepping, if copy_from_user failed.
|
|
|
|
*/
|
|
|
|
n = access_process_vm(current, addr, &instr, sizeof(instr), 0);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (n != sizeof(instr)) {
|
|
|
|
printk(KERN_ERR "is_syscall : failed to read "
|
|
|
|
"instruction from 0x%lx\n", addr);
|
|
|
|
return 1;
|
2006-03-27 11:14:34 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
/* int 0x80 or sysenter */
|
2007-10-16 10:27:00 +02:00
|
|
|
return (instr == 0x80cd) || (instr == 0x340f);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* determines which flags the user has access to. */
|
|
|
|
/* 1 = access 0 = no access */
|
|
|
|
#define FLAG_MASK 0x00044dd5
|
|
|
|
|
|
|
|
int putreg(struct task_struct *child, int regno, unsigned long value)
|
|
|
|
{
|
|
|
|
regno >>= 2;
|
|
|
|
switch (regno) {
|
|
|
|
case FS:
|
|
|
|
if (value && (value & 3) != 3)
|
|
|
|
return -EIO;
|
|
|
|
PT_REGS_FS(&child->thread.regs) = value;
|
|
|
|
return 0;
|
|
|
|
case GS:
|
|
|
|
if (value && (value & 3) != 3)
|
|
|
|
return -EIO;
|
|
|
|
PT_REGS_GS(&child->thread.regs) = value;
|
|
|
|
return 0;
|
|
|
|
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;
|
|
|
|
value |= PT_REGS_EFLAGS(&child->thread.regs);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
PT_REGS_SET(&child->thread.regs, regno, value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 06:30:46 +02:00
|
|
|
int poke_user(struct task_struct *child, long addr, long data)
|
|
|
|
{
|
2007-10-16 10:27:00 +02:00
|
|
|
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;
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 06:30:46 +02:00
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned long getreg(struct task_struct *child, int regno)
|
|
|
|
{
|
|
|
|
unsigned long retval = ~0UL;
|
|
|
|
|
|
|
|
regno >>= 2;
|
|
|
|
switch (regno) {
|
|
|
|
case FS:
|
|
|
|
case GS:
|
|
|
|
case DS:
|
|
|
|
case ES:
|
|
|
|
case SS:
|
|
|
|
case CS:
|
|
|
|
retval = 0xffff;
|
|
|
|
/* fall through */
|
|
|
|
default:
|
|
|
|
retval &= PT_REG(&child->thread.regs, regno);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:00 +02:00
|
|
|
/* read the word at location addr in the USER area. */
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 06:30:46 +02:00
|
|
|
int peek_user(struct task_struct *child, long addr, long data)
|
|
|
|
{
|
2006-03-31 12:30:15 +02:00
|
|
|
unsigned long tmp;
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 06:30:46 +02:00
|
|
|
|
2006-03-31 12:30:15 +02:00
|
|
|
if ((addr & 3) || addr < 0)
|
|
|
|
return -EIO;
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 06:30:46 +02:00
|
|
|
|
2006-03-31 12:30:15 +02:00
|
|
|
tmp = 0; /* Default return condition */
|
2007-10-16 10:27:00 +02:00
|
|
|
if (addr < MAX_REG_OFFSET) {
|
2006-03-31 12:30:15 +02:00
|
|
|
tmp = getreg(child, addr);
|
|
|
|
}
|
2007-10-16 10:27:00 +02:00
|
|
|
else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
|
|
|
|
(addr <= offsetof(struct user, u_debugreg[7]))) {
|
2006-03-31 12:30:15 +02:00
|
|
|
addr -= offsetof(struct user, u_debugreg[0]);
|
|
|
|
addr = addr >> 2;
|
|
|
|
tmp = child->thread.arch.debugregs[addr];
|
|
|
|
}
|
|
|
|
return put_user(tmp, (unsigned long __user *) data);
|
[PATCH] uml: S390 preparation, peekusr/pokeusr defined by subarch
s390 needs to change some parts of arch/um/kernel/ptrace.c. Thus, the code
regarding PEEKUSER and POKEUSER are shifted to arch/um/sys-<subarch>/ptrace.c.
Also s390 debug registers need to be updated, when singlestepping is switched
on / off. Thus, setting/resetting of singlestepping is centralized in the new
function set_singlestep(), which also inserts the macro
SUBARCH_SET_SINGLESTEP(mode), if defined.
Finally, s390 has the "ieee_instruction_pointer" in its
registers, which also is allowed to be read via
ptrace( PTRACE_PEEKUSER, getpid(), PT_IEEE_IP, 0);
To implement this feature, sys_ptrace inserts the macro
SUBARCH_PTRACE_SPECIAL, if defined.
Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-05-07 06:30:46 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:27:16 +02:00
|
|
|
int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
|
|
|
|
long fpregs[HOST_FP_SIZE];
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
BUG_ON(sizeof(*buf) != sizeof(fpregs));
|
|
|
|
err = save_fp_registers(userspace_pid[cpu], fpregs);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
2007-10-29 05:36:10 +01:00
|
|
|
n = copy_to_user(buf, fpregs, sizeof(fpregs));
|
2007-10-16 10:27:16 +02:00
|
|
|
if(n > 0)
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return n;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:27:16 +02:00
|
|
|
int n, cpu = ((struct thread_info *) child->stack)->cpu;
|
|
|
|
long fpregs[HOST_FP_SIZE];
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
BUG_ON(sizeof(*buf) != sizeof(fpregs));
|
2007-10-29 05:36:10 +01:00
|
|
|
n = copy_from_user(fpregs, buf, sizeof(fpregs));
|
2007-10-16 10:27:16 +02:00
|
|
|
if (n > 0)
|
2007-10-16 10:27:00 +02:00
|
|
|
return -EFAULT;
|
2007-10-16 10:27:16 +02:00
|
|
|
|
|
|
|
return restore_fp_registers(userspace_pid[cpu], fpregs);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
int get_fpxregs(struct user_fxsr_struct __user *buf, struct task_struct *child)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:27:16 +02:00
|
|
|
int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
|
|
|
|
long fpregs[HOST_XFP_SIZE];
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
BUG_ON(sizeof(*buf) != sizeof(fpregs));
|
|
|
|
err = save_fpx_registers(userspace_pid[cpu], fpregs);
|
2007-10-16 10:27:00 +02:00
|
|
|
if (err)
|
2007-10-16 10:27:16 +02:00
|
|
|
return err;
|
|
|
|
|
2007-10-29 05:36:10 +01:00
|
|
|
n = copy_to_user(buf, fpregs, sizeof(fpregs));
|
2007-10-16 10:27:16 +02:00
|
|
|
if(n > 0)
|
2007-10-16 10:27:00 +02:00
|
|
|
return -EFAULT;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
return n;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
int set_fpxregs(struct user_fxsr_struct __user *buf, struct task_struct *child)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:27:16 +02:00
|
|
|
int n, cpu = ((struct thread_info *) child->stack)->cpu;
|
|
|
|
long fpregs[HOST_XFP_SIZE];
|
|
|
|
|
|
|
|
BUG_ON(sizeof(*buf) != sizeof(fpregs));
|
2007-10-29 05:36:10 +01:00
|
|
|
n = copy_from_user(fpregs, buf, sizeof(fpregs));
|
2007-10-16 10:27:16 +02:00
|
|
|
if (n > 0)
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return restore_fpx_registers(userspace_pid[cpu], fpregs);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 10:27:16 +02:00
|
|
|
long subarch_ptrace(struct task_struct *child, long request, long addr,
|
|
|
|
long data)
|
|
|
|
{
|
|
|
|
return -EIO;
|
|
|
|
}
|