ptrace_64.c 5.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Copyright 2003 PathScale, Inc.
J
Jeff Dike 已提交
3
 * Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
4 5 6 7
 *
 * Licensed under the GPL
 */

8
#include <linux/mm.h>
9 10
#include <linux/sched.h>
#include <linux/errno.h>
11 12
#define __FRAME_OFFSETS
#include <asm/ptrace.h>
13
#include <asm/uaccess.h>
14
#include <asm/ptrace-abi.h>
L
Linus Torvalds 已提交
15

J
Jeff Dike 已提交
16 17 18 19
/*
 * determines which flags the user has access to.
 * 1 = access 0 = no access
 */
L
Linus Torvalds 已提交
20 21
#define FLAG_MASK 0x44dd5UL

A
Al Viro 已提交
22
static const int reg_offsets[] =
L
Linus Torvalds 已提交
23
{
A
Al Viro 已提交
24 25 26 27 28 29 30 31 32 33
	[R8 >> 3] = HOST_R8,
	[R9 >> 3] = HOST_R9,
	[R10 >> 3] = HOST_R10,
	[R11 >> 3] = HOST_R11,
	[R12 >> 3] = HOST_R12,
	[R13 >> 3] = HOST_R13,
	[R14 >> 3] = HOST_R14,
	[R15 >> 3] = HOST_R15,
	[RIP >> 3] = HOST_IP,
	[RSP >> 3] = HOST_SP,
34 35 36 37 38 39 40
	[RAX >> 3] = HOST_AX,
	[RBX >> 3] = HOST_BX,
	[RCX >> 3] = HOST_CX,
	[RDX >> 3] = HOST_DX,
	[RSI >> 3] = HOST_SI,
	[RDI >> 3] = HOST_DI,
	[RBP >> 3] = HOST_BP,
A
Al Viro 已提交
41 42 43 44 45 46 47 48 49
	[CS >> 3] = HOST_CS,
	[SS >> 3] = HOST_SS,
	[FS_BASE >> 3] = HOST_FS_BASE,
	[GS_BASE >> 3] = HOST_GS_BASE,
	[DS >> 3] = HOST_DS,
	[ES >> 3] = HOST_ES,
	[FS >> 3] = HOST_FS,
	[GS >> 3] = HOST_GS,
	[EFLAGS >> 3] = HOST_EFLAGS,
A
Al Viro 已提交
50
	[ORIG_RAX >> 3] = HOST_ORIG_AX,
A
Al Viro 已提交
51
};
L
Linus Torvalds 已提交
52

A
Al Viro 已提交
53 54
int putreg(struct task_struct *child, int regno, unsigned long value)
{
L
Linus Torvalds 已提交
55
#ifdef TIF_IA32
56 57 58 59
	/*
	 * Some code in the 64bit emulation may not be 64bit clean.
	 * Don't take any chances.
	 */
L
Linus Torvalds 已提交
60 61 62
	if (test_tsk_thread_flag(child, TIF_IA32))
		value &= 0xffffffff;
#endif
63
	switch (regno) {
A
Al Viro 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
	case R8:
	case R9:
	case R10:
	case R11:
	case R12:
	case R13:
	case R14:
	case R15:
	case RIP:
	case RSP:
	case RAX:
	case RBX:
	case RCX:
	case RDX:
	case RSI:
	case RDI:
	case RBP:
81 82
		break;

A
Al Viro 已提交
83
	case ORIG_RAX:
84 85
		/* Update the syscall number. */
		UPT_SYSCALL_NR(&child->thread.regs.regs) = value;
A
Al Viro 已提交
86 87
		break;

L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
	case FS:
	case GS:
	case DS:
	case ES:
	case SS:
	case CS:
		if (value && (value & 3) != 3)
			return -EIO;
		value &= 0xffff;
		break;

	case FS_BASE:
	case GS_BASE:
		if (!((value >> 48) == 0 || (value >> 48) == 0xffff))
			return -EIO;
		break;

	case EFLAGS:
		value &= FLAG_MASK;
A
Al Viro 已提交
107 108 109 110 111
		child->thread.regs.regs.gp[HOST_EFLAGS] |= value;
		return 0;

	default:
		panic("Bad register in putreg(): %d\n", regno);
L
Linus Torvalds 已提交
112 113
	}

A
Al Viro 已提交
114
	child->thread.regs.regs.gp[reg_offsets[regno >> 3]] = value;
L
Linus Torvalds 已提交
115 116 117
	return 0;
}

118 119
int poke_user(struct task_struct *child, long addr, long data)
{
J
Jeff Dike 已提交
120 121 122 123 124 125
	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])) &&
126
		(addr <= offsetof(struct user, u_debugreg[7]))) {
J
Jeff Dike 已提交
127 128 129 130 131 132 133 134
		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;
135 136
}

L
Linus Torvalds 已提交
137 138
unsigned long getreg(struct task_struct *child, int regno)
{
A
Al Viro 已提交
139 140 141 142 143
	unsigned long mask = ~0UL;
#ifdef TIF_IA32
	if (test_tsk_thread_flag(child, TIF_IA32))
		mask = 0xffffffff;
#endif
L
Linus Torvalds 已提交
144
	switch (regno) {
A
Al Viro 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
	case R8:
	case R9:
	case R10:
	case R11:
	case R12:
	case R13:
	case R14:
	case R15:
	case RIP:
	case RSP:
	case RAX:
	case RBX:
	case RCX:
	case RDX:
	case RSI:
	case RDI:
	case RBP:
	case ORIG_RAX:
	case EFLAGS:
	case FS_BASE:
	case GS_BASE:
		break;
L
Linus Torvalds 已提交
167 168 169 170 171 172
	case FS:
	case GS:
	case DS:
	case ES:
	case SS:
	case CS:
A
Al Viro 已提交
173 174
		mask = 0xffff;
		break;
L
Linus Torvalds 已提交
175
	default:
A
Al Viro 已提交
176
		panic("Bad register in getreg: %d\n", regno);
L
Linus Torvalds 已提交
177
	}
A
Al Viro 已提交
178
	return mask & child->thread.regs.regs.gp[reg_offsets[regno >> 3]];
L
Linus Torvalds 已提交
179 180
}

181 182 183
int peek_user(struct task_struct *child, long addr, long data)
{
	/* read the word at location addr in the USER area. */
J
Jeff Dike 已提交
184
	unsigned long tmp;
185

J
Jeff Dike 已提交
186 187 188 189
	if ((addr & 3) || addr < 0)
		return -EIO;

	tmp = 0;  /* Default return condition */
190
	if (addr < MAX_REG_OFFSET)
J
Jeff Dike 已提交
191 192
		tmp = getreg(child, addr);
	else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
193
		(addr <= offsetof(struct user, u_debugreg[7]))) {
J
Jeff Dike 已提交
194 195 196 197 198
		addr -= offsetof(struct user, u_debugreg[0]);
		addr = addr >> 2;
		tmp = child->thread.arch.debugregs[addr];
	}
	return put_user(tmp, (unsigned long *) data);
L
Linus Torvalds 已提交
199 200
}

201
/* XXX Mostly copied from sys-i386 */
L
Linus Torvalds 已提交
202 203
int is_syscall(unsigned long addr)
{
204 205 206 207
	unsigned short instr;
	int n;

	n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
208 209 210
	if (n) {
		/*
		 * access_process_vm() grants access to vsyscall and stub,
211 212 213 214
		 * 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.
		 */
215 216
		n = access_process_vm(current, addr, &instr, sizeof(instr),
				FOLL_FORCE);
J
Jeff Dike 已提交
217
		if (n != sizeof(instr)) {
218 219
			printk("is_syscall : failed to read instruction from "
			       "0x%lx\n", addr);
J
Jeff Dike 已提交
220
			return 1;
221 222 223
		}
	}
	/* sysenter */
J
Jeff Dike 已提交
224
	return instr == 0x050f;
L
Linus Torvalds 已提交
225 226
}

A
Al Viro 已提交
227
static int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
L
Linus Torvalds 已提交
228
{
J
Jeff Dike 已提交
229
	int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
230
	struct user_i387_struct fpregs;
L
Linus Torvalds 已提交
231

232 233
	err = save_i387_registers(userspace_pid[cpu],
				  (unsigned long *) &fpregs);
J
Jeff Dike 已提交
234 235 236
	if (err)
		return err;

237
	n = copy_to_user(buf, &fpregs, sizeof(fpregs));
238
	if (n > 0)
J
Jeff Dike 已提交
239 240 241
		return -EFAULT;

	return n;
L
Linus Torvalds 已提交
242 243
}

A
Al Viro 已提交
244
static int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
L
Linus Torvalds 已提交
245
{
J
Jeff Dike 已提交
246
	int n, cpu = ((struct thread_info *) child->stack)->cpu;
247
	struct user_i387_struct fpregs;
J
Jeff Dike 已提交
248

249
	n = copy_from_user(&fpregs, buf, sizeof(fpregs));
J
Jeff Dike 已提交
250 251 252
	if (n > 0)
		return -EFAULT;

253 254
	return restore_i387_registers(userspace_pid[cpu],
				      (unsigned long *) &fpregs);
L
Linus Torvalds 已提交
255 256
}

257 258
long subarch_ptrace(struct task_struct *child, long request,
		    unsigned long addr, unsigned long data)
L
Linus Torvalds 已提交
259
{
A
Al Viro 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
	int ret = -EIO;
	void __user *datap = (void __user *) data;

	switch (request) {
	case PTRACE_GETFPREGS: /* Get the child FPU state. */
		ret = get_fpregs(datap, child);
		break;
	case PTRACE_SETFPREGS: /* Set the child FPU state. */
		ret = set_fpregs(datap, child);
		break;
	case PTRACE_ARCH_PRCTL:
		/* XXX Calls ptrace on the host - needs some SMP thinking */
		ret = arch_prctl(child, data, (void __user *) addr);
		break;
	}

	return ret;
L
Linus Torvalds 已提交
277
}