blob: 1401899dee9b2f03da1975e6cd90c933f1cd513a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2003 PathScale, Inc.
Jeff Dikef0c4cad2007-10-16 01:27:18 -07003 * Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Licensed under the GPL
6 */
7
Jeff Dike95906b22008-02-04 22:31:20 -08008#include <linux/mm.h>
Jeff Dikeba9950c2005-05-20 13:59:07 -07009#include <linux/sched.h>
10#include <linux/errno.h>
Jeff Dike95906b22008-02-04 22:31:20 -080011#define __FRAME_OFFSETS
12#include <asm/ptrace.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080013#include <linux/uaccess.h>
Richard Weinbergerda028d52015-06-25 22:44:11 +020014#include <asm/ptrace-abi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Jeff Dikef0c4cad2007-10-16 01:27:18 -070016/*
17 * determines which flags the user has access to.
18 * 1 = access 0 = no access
19 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define FLAG_MASK 0x44dd5UL
21
Al Viro412f90e2011-08-18 20:02:29 +010022static const int reg_offsets[] =
23{
24 [R8 >> 3] = HOST_R8,
25 [R9 >> 3] = HOST_R9,
26 [R10 >> 3] = HOST_R10,
27 [R11 >> 3] = HOST_R11,
28 [R12 >> 3] = HOST_R12,
29 [R13 >> 3] = HOST_R13,
30 [R14 >> 3] = HOST_R14,
31 [R15 >> 3] = HOST_R15,
32 [RIP >> 3] = HOST_IP,
33 [RSP >> 3] = HOST_SP,
Al Viro3579a382011-08-18 20:10:09 +010034 [RAX >> 3] = HOST_AX,
35 [RBX >> 3] = HOST_BX,
36 [RCX >> 3] = HOST_CX,
37 [RDX >> 3] = HOST_DX,
38 [RSI >> 3] = HOST_SI,
39 [RDI >> 3] = HOST_DI,
40 [RBP >> 3] = HOST_BP,
Al Viro412f90e2011-08-18 20:02:29 +010041 [CS >> 3] = HOST_CS,
42 [SS >> 3] = HOST_SS,
43 [FS_BASE >> 3] = HOST_FS_BASE,
44 [GS_BASE >> 3] = HOST_GS_BASE,
45 [DS >> 3] = HOST_DS,
46 [ES >> 3] = HOST_ES,
47 [FS >> 3] = HOST_FS,
48 [GS >> 3] = HOST_GS,
49 [EFLAGS >> 3] = HOST_EFLAGS,
Al Viro966e8032011-08-18 20:12:19 +010050 [ORIG_RAX >> 3] = HOST_ORIG_AX,
Al Viro412f90e2011-08-18 20:02:29 +010051};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053int putreg(struct task_struct *child, int regno, unsigned long value)
54{
Jeff Dike95906b22008-02-04 22:31:20 -080055 switch (regno) {
Al Viro412f90e2011-08-18 20:02:29 +010056 case R8:
57 case R9:
58 case R10:
59 case R11:
60 case R12:
61 case R13:
62 case R14:
63 case R15:
64 case RIP:
65 case RSP:
66 case RAX:
67 case RBX:
68 case RCX:
69 case RDX:
70 case RSI:
71 case RDI:
72 case RBP:
Mickaël Salaünce298562016-08-01 23:01:56 +020073 break;
74
Al Viro412f90e2011-08-18 20:02:29 +010075 case ORIG_RAX:
Mickaël Salaünce298562016-08-01 23:01:56 +020076 /* Update the syscall number. */
77 UPT_SYSCALL_NR(&child->thread.regs.regs) = value;
Al Viro412f90e2011-08-18 20:02:29 +010078 break;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 case FS:
81 case GS:
82 case DS:
83 case ES:
84 case SS:
85 case CS:
86 if (value && (value & 3) != 3)
87 return -EIO;
88 value &= 0xffff;
89 break;
90
91 case FS_BASE:
92 case GS_BASE:
93 if (!((value >> 48) == 0 || (value >> 48) == 0xffff))
94 return -EIO;
95 break;
96
97 case EFLAGS:
98 value &= FLAG_MASK;
Al Viro412f90e2011-08-18 20:02:29 +010099 child->thread.regs.regs.gp[HOST_EFLAGS] |= value;
100 return 0;
101
102 default:
103 panic("Bad register in putreg(): %d\n", regno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
Al Viro412f90e2011-08-18 20:02:29 +0100106 child->thread.regs.regs.gp[reg_offsets[regno >> 3]] = value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return 0;
108}
109
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700110int poke_user(struct task_struct *child, long addr, long data)
111{
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700112 if ((addr & 3) || addr < 0)
113 return -EIO;
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700114
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700115 if (addr < MAX_REG_OFFSET)
116 return putreg(child, addr, data);
117 else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
Jeff Dike95906b22008-02-04 22:31:20 -0800118 (addr <= offsetof(struct user, u_debugreg[7]))) {
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700119 addr -= offsetof(struct user, u_debugreg[0]);
Richard Weinberger9abc74a2017-04-01 00:41:57 +0200120 addr = addr >> 3;
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700121 if ((addr == 4) || (addr == 5))
122 return -EIO;
123 child->thread.arch.debugregs[addr] = data;
124 return 0;
125 }
126 return -EIO;
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129unsigned long getreg(struct task_struct *child, int regno)
130{
Al Viro412f90e2011-08-18 20:02:29 +0100131 unsigned long mask = ~0UL;
Gabriel Krisman Bertazi46876152020-10-04 01:04:36 -0400132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 switch (regno) {
Al Viro412f90e2011-08-18 20:02:29 +0100134 case R8:
135 case R9:
136 case R10:
137 case R11:
138 case R12:
139 case R13:
140 case R14:
141 case R15:
142 case RIP:
143 case RSP:
144 case RAX:
145 case RBX:
146 case RCX:
147 case RDX:
148 case RSI:
149 case RDI:
150 case RBP:
151 case ORIG_RAX:
152 case EFLAGS:
153 case FS_BASE:
154 case GS_BASE:
155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 case FS:
157 case GS:
158 case DS:
159 case ES:
160 case SS:
161 case CS:
Al Viro412f90e2011-08-18 20:02:29 +0100162 mask = 0xffff;
163 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 default:
Al Viro412f90e2011-08-18 20:02:29 +0100165 panic("Bad register in getreg: %d\n", regno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
Al Viro412f90e2011-08-18 20:02:29 +0100167 return mask & child->thread.regs.regs.gp[reg_offsets[regno >> 3]];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700170int peek_user(struct task_struct *child, long addr, long data)
171{
172 /* read the word at location addr in the USER area. */
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700173 unsigned long tmp;
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700174
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700175 if ((addr & 3) || addr < 0)
176 return -EIO;
Bodo Stroesser82c1c112005-05-06 21:30:46 -0700177
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700178 tmp = 0; /* Default return condition */
Jeff Dike95906b22008-02-04 22:31:20 -0800179 if (addr < MAX_REG_OFFSET)
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700180 tmp = getreg(child, addr);
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700181 else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
Jeff Dike95906b22008-02-04 22:31:20 -0800182 (addr <= offsetof(struct user, u_debugreg[7]))) {
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700183 addr -= offsetof(struct user, u_debugreg[0]);
184 addr = addr >> 2;
185 tmp = child->thread.arch.debugregs[addr];
186 }
187 return put_user(tmp, (unsigned long *) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800190/* XXX Mostly copied from sys-i386 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191int is_syscall(unsigned long addr)
192{
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800193 unsigned short instr;
194 int n;
195
196 n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
Jeff Dike95906b22008-02-04 22:31:20 -0800197 if (n) {
198 /*
199 * access_process_vm() grants access to vsyscall and stub,
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800200 * while copy_from_user doesn't. Maybe access_process_vm is
201 * slow, but that doesn't matter, since it will be called only
202 * in case of singlestepping, if copy_from_user failed.
203 */
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +0100204 n = access_process_vm(current, addr, &instr, sizeof(instr),
205 FOLL_FORCE);
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700206 if (n != sizeof(instr)) {
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800207 printk("is_syscall : failed to read instruction from "
208 "0x%lx\n", addr);
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700209 return 1;
Bodo Stroesser81efcd32006-03-27 01:14:34 -0800210 }
211 }
212 /* sysenter */
Jeff Dikef0c4cad2007-10-16 01:27:18 -0700213 return instr == 0x050f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Al Virof2833ae2011-09-14 16:21:37 -0700216static int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Jeff Dikee8012b52007-10-16 01:27:16 -0700218 int err, n, cpu = ((struct thread_info *) child->stack)->cpu;
Eli Coopera78ff112016-03-20 00:58:41 +0800219 struct user_i387_struct fpregs;
Jeff Dikee8012b52007-10-16 01:27:16 -0700220
Eli Coopera78ff112016-03-20 00:58:41 +0800221 err = save_i387_registers(userspace_pid[cpu],
222 (unsigned long *) &fpregs);
Jeff Dikee8012b52007-10-16 01:27:16 -0700223 if (err)
224 return err;
225
Eli Coopera78ff112016-03-20 00:58:41 +0800226 n = copy_to_user(buf, &fpregs, sizeof(fpregs));
Jeff Dike95906b22008-02-04 22:31:20 -0800227 if (n > 0)
Jeff Dikee8012b52007-10-16 01:27:16 -0700228 return -EFAULT;
229
230 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
Al Virof2833ae2011-09-14 16:21:37 -0700233static int set_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Jeff Dikee8012b52007-10-16 01:27:16 -0700235 int n, cpu = ((struct thread_info *) child->stack)->cpu;
Eli Coopera78ff112016-03-20 00:58:41 +0800236 struct user_i387_struct fpregs;
Jeff Dikee8012b52007-10-16 01:27:16 -0700237
Eli Coopera78ff112016-03-20 00:58:41 +0800238 n = copy_from_user(&fpregs, buf, sizeof(fpregs));
Jeff Dikee8012b52007-10-16 01:27:16 -0700239 if (n > 0)
240 return -EFAULT;
241
Eli Coopera78ff112016-03-20 00:58:41 +0800242 return restore_i387_registers(userspace_pid[cpu],
243 (unsigned long *) &fpregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Namhyung Kim9b05a692010-10-27 15:33:47 -0700246long subarch_ptrace(struct task_struct *child, long request,
247 unsigned long addr, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Al Virof2833ae2011-09-14 16:21:37 -0700249 int ret = -EIO;
250 void __user *datap = (void __user *) data;
251
252 switch (request) {
253 case PTRACE_GETFPREGS: /* Get the child FPU state. */
254 ret = get_fpregs(datap, child);
255 break;
256 case PTRACE_SETFPREGS: /* Set the child FPU state. */
257 ret = set_fpregs(datap, child);
258 break;
259 case PTRACE_ARCH_PRCTL:
260 /* XXX Calls ptrace on the host - needs some SMP thinking */
261 ret = arch_prctl(child, data, (void __user *) addr);
262 break;
263 }
264
265 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}