blob: 88ed1e74cee962b49df1c5ab3f9c862fd8904bd0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* By Ross Biro 1/23/92 */
2/*
3 * Pentium III FXSR, SSE support
4 * Gareth Hughes <gareth@valinux.com>, May 2000
Markus Metzgereee3af42008-01-30 13:31:09 +01005 *
6 * BTS tracing
7 * Markus Metzger <markus.t.metzger@intel.com>, Dec 2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/kernel.h>
11#include <linux/sched.h>
12#include <linux/mm.h>
13#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/errno.h>
15#include <linux/ptrace.h>
Roland McGrath91e7b702008-01-30 13:31:52 +010016#include <linux/regset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/user.h>
Roland McGrath070459d2008-01-30 13:31:53 +010018#include <linux/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/security.h>
20#include <linux/audit.h>
21#include <linux/seccomp.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070022#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <asm/uaccess.h>
25#include <asm/pgtable.h>
26#include <asm/system.h>
27#include <asm/processor.h>
28#include <asm/i387.h>
29#include <asm/debugreg.h>
30#include <asm/ldt.h>
31#include <asm/desc.h>
Roland McGrath2047b082008-01-30 13:31:01 +010032#include <asm/prctl.h>
33#include <asm/proto.h>
Markus Metzgereee3af42008-01-30 13:31:09 +010034#include <asm/ds.h>
35
Roland McGrath070459d2008-01-30 13:31:53 +010036#include "tls.h"
37
38enum x86_regset {
39 REGSET_GENERAL,
40 REGSET_FP,
41 REGSET_XFP,
42 REGSET_TLS,
43};
Markus Metzgereee3af42008-01-30 13:31:09 +010044
45/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * does not yet catch signals sent when the child dies.
47 * in exit.c or in signal.c.
48 */
49
Chuck Ebbert9f155b92006-01-05 23:11:29 -050050/*
51 * Determines which flags the user has access to [1 = access, 0 = no access].
Chuck Ebbert9f155b92006-01-05 23:11:29 -050052 */
Roland McGrathe39c2892008-01-30 13:31:01 +010053#define FLAG_MASK_32 ((unsigned long) \
54 (X86_EFLAGS_CF | X86_EFLAGS_PF | \
55 X86_EFLAGS_AF | X86_EFLAGS_ZF | \
56 X86_EFLAGS_SF | X86_EFLAGS_TF | \
57 X86_EFLAGS_DF | X86_EFLAGS_OF | \
58 X86_EFLAGS_RF | X86_EFLAGS_AC))
59
Roland McGrath2047b082008-01-30 13:31:01 +010060/*
61 * Determines whether a value may be installed in a segment register.
62 */
63static inline bool invalid_selector(u16 value)
64{
65 return unlikely(value != 0 && (value & SEGMENT_RPL_MASK) != USER_RPL);
66}
67
68#ifdef CONFIG_X86_32
69
Roland McGrathe39c2892008-01-30 13:31:01 +010070#define FLAG_MASK FLAG_MASK_32
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Roland McGrath62a97d42008-01-30 13:30:52 +010072static long *pt_regs_access(struct pt_regs *regs, unsigned long regno)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010074 BUILD_BUG_ON(offsetof(struct pt_regs, bx) != 0);
Roland McGrath06ee1b62008-01-30 13:31:01 +010075 regno >>= 2;
Roland McGrath62a97d42008-01-30 13:30:52 +010076 if (regno > FS)
77 --regno;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010078 return &regs->bx + regno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Roland McGrath06ee1b62008-01-30 13:31:01 +010081static u16 get_segment_reg(struct task_struct *task, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Roland McGrath06ee1b62008-01-30 13:31:01 +010083 /*
84 * Returning the value truncates it to 16 bits.
85 */
86 unsigned int retval;
87 if (offset != offsetof(struct user_regs_struct, gs))
88 retval = *pt_regs_access(task_pt_regs(task), offset);
89 else {
90 retval = task->thread.gs;
91 if (task == current)
92 savesegment(gs, retval);
93 }
94 return retval;
95}
96
97static int set_segment_reg(struct task_struct *task,
98 unsigned long offset, u16 value)
99{
100 /*
101 * The value argument was already truncated to 16 bits.
102 */
Roland McGrath2047b082008-01-30 13:31:01 +0100103 if (invalid_selector(value))
Roland McGrath06ee1b62008-01-30 13:31:01 +0100104 return -EIO;
105
106 if (offset != offsetof(struct user_regs_struct, gs))
107 *pt_regs_access(task_pt_regs(task), offset) = value;
108 else {
109 task->thread.gs = value;
110 if (task == current)
Roland McGrath5fd4d162008-01-30 13:30:58 +0100111 /*
112 * The user-mode %gs is not affected by
113 * kernel entry, so we must update the CPU.
114 */
115 loadsegment(gs, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Roland McGrath06ee1b62008-01-30 13:31:01 +0100117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119}
120
Roland McGrath2047b082008-01-30 13:31:01 +0100121static unsigned long debugreg_addr_limit(struct task_struct *task)
122{
123 return TASK_SIZE - 3;
124}
125
126#else /* CONFIG_X86_64 */
127
128#define FLAG_MASK (FLAG_MASK_32 | X86_EFLAGS_NT)
129
130static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long offset)
131{
132 BUILD_BUG_ON(offsetof(struct pt_regs, r15) != 0);
133 return &regs->r15 + (offset / sizeof(regs->r15));
134}
135
136static u16 get_segment_reg(struct task_struct *task, unsigned long offset)
137{
138 /*
139 * Returning the value truncates it to 16 bits.
140 */
141 unsigned int seg;
142
143 switch (offset) {
144 case offsetof(struct user_regs_struct, fs):
145 if (task == current) {
146 /* Older gas can't assemble movq %?s,%r?? */
147 asm("movl %%fs,%0" : "=r" (seg));
148 return seg;
149 }
150 return task->thread.fsindex;
151 case offsetof(struct user_regs_struct, gs):
152 if (task == current) {
153 asm("movl %%gs,%0" : "=r" (seg));
154 return seg;
155 }
156 return task->thread.gsindex;
157 case offsetof(struct user_regs_struct, ds):
158 if (task == current) {
159 asm("movl %%ds,%0" : "=r" (seg));
160 return seg;
161 }
162 return task->thread.ds;
163 case offsetof(struct user_regs_struct, es):
164 if (task == current) {
165 asm("movl %%es,%0" : "=r" (seg));
166 return seg;
167 }
168 return task->thread.es;
169
170 case offsetof(struct user_regs_struct, cs):
171 case offsetof(struct user_regs_struct, ss):
172 break;
173 }
174 return *pt_regs_access(task_pt_regs(task), offset);
175}
176
177static int set_segment_reg(struct task_struct *task,
178 unsigned long offset, u16 value)
179{
180 /*
181 * The value argument was already truncated to 16 bits.
182 */
183 if (invalid_selector(value))
184 return -EIO;
185
186 switch (offset) {
187 case offsetof(struct user_regs_struct,fs):
188 /*
189 * If this is setting fs as for normal 64-bit use but
190 * setting fs_base has implicitly changed it, leave it.
191 */
192 if ((value == FS_TLS_SEL && task->thread.fsindex == 0 &&
193 task->thread.fs != 0) ||
194 (value == 0 && task->thread.fsindex == FS_TLS_SEL &&
195 task->thread.fs == 0))
196 break;
197 task->thread.fsindex = value;
198 if (task == current)
199 loadsegment(fs, task->thread.fsindex);
200 break;
201 case offsetof(struct user_regs_struct,gs):
202 /*
203 * If this is setting gs as for normal 64-bit use but
204 * setting gs_base has implicitly changed it, leave it.
205 */
206 if ((value == GS_TLS_SEL && task->thread.gsindex == 0 &&
207 task->thread.gs != 0) ||
208 (value == 0 && task->thread.gsindex == GS_TLS_SEL &&
209 task->thread.gs == 0))
210 break;
211 task->thread.gsindex = value;
212 if (task == current)
213 load_gs_index(task->thread.gsindex);
214 break;
215 case offsetof(struct user_regs_struct,ds):
216 task->thread.ds = value;
217 if (task == current)
218 loadsegment(ds, task->thread.ds);
219 break;
220 case offsetof(struct user_regs_struct,es):
221 task->thread.es = value;
222 if (task == current)
223 loadsegment(es, task->thread.es);
224 break;
225
226 /*
227 * Can't actually change these in 64-bit mode.
228 */
229 case offsetof(struct user_regs_struct,cs):
230#ifdef CONFIG_IA32_EMULATION
231 if (test_tsk_thread_flag(task, TIF_IA32))
232 task_pt_regs(task)->cs = value;
Roland McGrath2047b082008-01-30 13:31:01 +0100233#endif
Roland McGrathcb757c42008-01-30 13:31:01 +0100234 break;
Roland McGrath2047b082008-01-30 13:31:01 +0100235 case offsetof(struct user_regs_struct,ss):
236#ifdef CONFIG_IA32_EMULATION
237 if (test_tsk_thread_flag(task, TIF_IA32))
238 task_pt_regs(task)->ss = value;
Roland McGrath2047b082008-01-30 13:31:01 +0100239#endif
Roland McGrathcb757c42008-01-30 13:31:01 +0100240 break;
Roland McGrath2047b082008-01-30 13:31:01 +0100241 }
242
243 return 0;
244}
245
246static unsigned long debugreg_addr_limit(struct task_struct *task)
247{
248#ifdef CONFIG_IA32_EMULATION
249 if (test_tsk_thread_flag(task, TIF_IA32))
250 return IA32_PAGE_OFFSET - 3;
251#endif
252 return TASK_SIZE64 - 7;
253}
254
255#endif /* CONFIG_X86_32 */
256
Roland McGrath06ee1b62008-01-30 13:31:01 +0100257static unsigned long get_flags(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Roland McGrath06ee1b62008-01-30 13:31:01 +0100259 unsigned long retval = task_pt_regs(task)->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Roland McGrath06ee1b62008-01-30 13:31:01 +0100261 /*
262 * If the debugger set TF, hide it from the readout.
263 */
264 if (test_tsk_thread_flag(task, TIF_FORCED_TF))
265 retval &= ~X86_EFLAGS_TF;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return retval;
268}
269
Roland McGrath06ee1b62008-01-30 13:31:01 +0100270static int set_flags(struct task_struct *task, unsigned long value)
271{
272 struct pt_regs *regs = task_pt_regs(task);
273
274 /*
275 * If the user value contains TF, mark that
276 * it was not "us" (the debugger) that set it.
277 * If not, make sure it stays set if we had.
278 */
279 if (value & X86_EFLAGS_TF)
280 clear_tsk_thread_flag(task, TIF_FORCED_TF);
281 else if (test_tsk_thread_flag(task, TIF_FORCED_TF))
282 value |= X86_EFLAGS_TF;
283
284 regs->flags = (regs->flags & ~FLAG_MASK) | (value & FLAG_MASK);
285
286 return 0;
287}
288
289static int putreg(struct task_struct *child,
290 unsigned long offset, unsigned long value)
291{
292 switch (offset) {
293 case offsetof(struct user_regs_struct, cs):
294 case offsetof(struct user_regs_struct, ds):
295 case offsetof(struct user_regs_struct, es):
296 case offsetof(struct user_regs_struct, fs):
297 case offsetof(struct user_regs_struct, gs):
298 case offsetof(struct user_regs_struct, ss):
299 return set_segment_reg(child, offset, value);
300
301 case offsetof(struct user_regs_struct, flags):
302 return set_flags(child, value);
Roland McGrath2047b082008-01-30 13:31:01 +0100303
304#ifdef CONFIG_X86_64
305 case offsetof(struct user_regs_struct,fs_base):
306 if (value >= TASK_SIZE_OF(child))
307 return -EIO;
308 /*
309 * When changing the segment base, use do_arch_prctl
310 * to set either thread.fs or thread.fsindex and the
311 * corresponding GDT slot.
312 */
313 if (child->thread.fs != value)
314 return do_arch_prctl(child, ARCH_SET_FS, value);
315 return 0;
316 case offsetof(struct user_regs_struct,gs_base):
317 /*
318 * Exactly the same here as the %fs handling above.
319 */
320 if (value >= TASK_SIZE_OF(child))
321 return -EIO;
322 if (child->thread.gs != value)
323 return do_arch_prctl(child, ARCH_SET_GS, value);
324 return 0;
325#endif
Roland McGrath06ee1b62008-01-30 13:31:01 +0100326 }
327
328 *pt_regs_access(task_pt_regs(child), offset) = value;
329 return 0;
330}
331
332static unsigned long getreg(struct task_struct *task, unsigned long offset)
333{
334 switch (offset) {
335 case offsetof(struct user_regs_struct, cs):
336 case offsetof(struct user_regs_struct, ds):
337 case offsetof(struct user_regs_struct, es):
338 case offsetof(struct user_regs_struct, fs):
339 case offsetof(struct user_regs_struct, gs):
340 case offsetof(struct user_regs_struct, ss):
341 return get_segment_reg(task, offset);
342
343 case offsetof(struct user_regs_struct, flags):
344 return get_flags(task);
Roland McGrath2047b082008-01-30 13:31:01 +0100345
346#ifdef CONFIG_X86_64
347 case offsetof(struct user_regs_struct, fs_base): {
348 /*
349 * do_arch_prctl may have used a GDT slot instead of
350 * the MSR. To userland, it appears the same either
351 * way, except the %fs segment selector might not be 0.
352 */
353 unsigned int seg = task->thread.fsindex;
354 if (task->thread.fs != 0)
355 return task->thread.fs;
356 if (task == current)
357 asm("movl %%fs,%0" : "=r" (seg));
358 if (seg != FS_TLS_SEL)
359 return 0;
360 return get_desc_base(&task->thread.tls_array[FS_TLS]);
361 }
362 case offsetof(struct user_regs_struct, gs_base): {
363 /*
364 * Exactly the same here as the %fs handling above.
365 */
366 unsigned int seg = task->thread.gsindex;
367 if (task->thread.gs != 0)
368 return task->thread.gs;
369 if (task == current)
370 asm("movl %%gs,%0" : "=r" (seg));
371 if (seg != GS_TLS_SEL)
372 return 0;
373 return get_desc_base(&task->thread.tls_array[GS_TLS]);
374 }
375#endif
Roland McGrath06ee1b62008-01-30 13:31:01 +0100376 }
377
378 return *pt_regs_access(task_pt_regs(task), offset);
379}
380
Roland McGrath91e7b702008-01-30 13:31:52 +0100381static int genregs_get(struct task_struct *target,
382 const struct user_regset *regset,
383 unsigned int pos, unsigned int count,
384 void *kbuf, void __user *ubuf)
385{
386 if (kbuf) {
387 unsigned long *k = kbuf;
388 while (count > 0) {
389 *k++ = getreg(target, pos);
390 count -= sizeof(*k);
391 pos += sizeof(*k);
392 }
393 } else {
394 unsigned long __user *u = ubuf;
395 while (count > 0) {
396 if (__put_user(getreg(target, pos), u++))
397 return -EFAULT;
398 count -= sizeof(*u);
399 pos += sizeof(*u);
400 }
401 }
402
403 return 0;
404}
405
406static int genregs_set(struct task_struct *target,
407 const struct user_regset *regset,
408 unsigned int pos, unsigned int count,
409 const void *kbuf, const void __user *ubuf)
410{
411 int ret = 0;
412 if (kbuf) {
413 const unsigned long *k = kbuf;
414 while (count > 0 && !ret) {
415 ret = putreg(target, pos, *k++);
416 count -= sizeof(*k);
417 pos += sizeof(*k);
418 }
419 } else {
420 const unsigned long __user *u = ubuf;
421 while (count > 0 && !ret) {
422 unsigned long word;
423 ret = __get_user(word, u++);
424 if (ret)
425 break;
426 ret = putreg(target, pos, word);
427 count -= sizeof(*u);
428 pos += sizeof(*u);
429 }
430 }
431 return ret;
432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
Roland McGrathd9771e82008-01-30 13:30:52 +0100435 * This function is trivial and will be inlined by the compiler.
436 * Having it separates the implementation details of debug
437 * registers from the interface details of ptrace.
438 */
439static unsigned long ptrace_get_debugreg(struct task_struct *child, int n)
440{
Roland McGrath0f534092008-01-30 13:30:59 +0100441 switch (n) {
442 case 0: return child->thread.debugreg0;
443 case 1: return child->thread.debugreg1;
444 case 2: return child->thread.debugreg2;
445 case 3: return child->thread.debugreg3;
446 case 6: return child->thread.debugreg6;
447 case 7: return child->thread.debugreg7;
448 }
449 return 0;
Roland McGrathd9771e82008-01-30 13:30:52 +0100450}
451
452static int ptrace_set_debugreg(struct task_struct *child,
453 int n, unsigned long data)
454{
Roland McGrath0f534092008-01-30 13:30:59 +0100455 int i;
456
Roland McGrathd9771e82008-01-30 13:30:52 +0100457 if (unlikely(n == 4 || n == 5))
458 return -EIO;
459
Roland McGrath2047b082008-01-30 13:31:01 +0100460 if (n < 4 && unlikely(data >= debugreg_addr_limit(child)))
Roland McGrathd9771e82008-01-30 13:30:52 +0100461 return -EIO;
462
Roland McGrath0f534092008-01-30 13:30:59 +0100463 switch (n) {
464 case 0: child->thread.debugreg0 = data; break;
465 case 1: child->thread.debugreg1 = data; break;
466 case 2: child->thread.debugreg2 = data; break;
467 case 3: child->thread.debugreg3 = data; break;
468
469 case 6:
Roland McGrath2047b082008-01-30 13:31:01 +0100470 if ((data & ~0xffffffffUL) != 0)
471 return -EIO;
Roland McGrath0f534092008-01-30 13:30:59 +0100472 child->thread.debugreg6 = data;
473 break;
474
475 case 7:
Roland McGrathd9771e82008-01-30 13:30:52 +0100476 /*
477 * Sanity-check data. Take one half-byte at once with
478 * check = (val >> (16 + 4*i)) & 0xf. It contains the
479 * R/Wi and LENi bits; bits 0 and 1 are R/Wi, and bits
480 * 2 and 3 are LENi. Given a list of invalid values,
481 * we do mask |= 1 << invalid_value, so that
482 * (mask >> check) & 1 is a correct test for invalid
483 * values.
484 *
485 * R/Wi contains the type of the breakpoint /
486 * watchpoint, LENi contains the length of the watched
487 * data in the watchpoint case.
488 *
489 * The invalid values are:
Roland McGrath2047b082008-01-30 13:31:01 +0100490 * - LENi == 0x10 (undefined), so mask |= 0x0f00. [32-bit]
Roland McGrathd9771e82008-01-30 13:30:52 +0100491 * - R/Wi == 0x10 (break on I/O reads or writes), so
492 * mask |= 0x4444.
493 * - R/Wi == 0x00 && LENi != 0x00, so we have mask |=
494 * 0x1110.
495 *
496 * Finally, mask = 0x0f00 | 0x4444 | 0x1110 == 0x5f54.
497 *
498 * See the Intel Manual "System Programming Guide",
499 * 15.2.4
500 *
501 * Note that LENi == 0x10 is defined on x86_64 in long
502 * mode (i.e. even for 32-bit userspace software, but
503 * 64-bit kernel), so the x86_64 mask value is 0x5454.
504 * See the AMD manual no. 24593 (AMD64 System Programming)
505 */
Roland McGrath2047b082008-01-30 13:31:01 +0100506#ifdef CONFIG_X86_32
507#define DR7_MASK 0x5f54
508#else
509#define DR7_MASK 0x5554
510#endif
Roland McGrathd9771e82008-01-30 13:30:52 +0100511 data &= ~DR_CONTROL_RESERVED;
512 for (i = 0; i < 4; i++)
Roland McGrath2047b082008-01-30 13:31:01 +0100513 if ((DR7_MASK >> ((data >> (16 + 4*i)) & 0xf)) & 1)
Roland McGrathd9771e82008-01-30 13:30:52 +0100514 return -EIO;
Roland McGrath0f534092008-01-30 13:30:59 +0100515 child->thread.debugreg7 = data;
Roland McGrathd9771e82008-01-30 13:30:52 +0100516 if (data)
517 set_tsk_thread_flag(child, TIF_DEBUG);
518 else
519 clear_tsk_thread_flag(child, TIF_DEBUG);
Roland McGrath0f534092008-01-30 13:30:59 +0100520 break;
Roland McGrathd9771e82008-01-30 13:30:52 +0100521 }
522
Roland McGrathd9771e82008-01-30 13:30:52 +0100523 return 0;
524}
525
Markus Metzgera95d67f2008-01-30 13:31:20 +0100526static int ptrace_bts_get_size(struct task_struct *child)
Markus Metzgereee3af42008-01-30 13:31:09 +0100527{
528 if (!child->thread.ds_area_msr)
529 return -ENXIO;
530
Markus Metzgera95d67f2008-01-30 13:31:20 +0100531 return ds_get_bts_index((void *)child->thread.ds_area_msr);
Markus Metzgereee3af42008-01-30 13:31:09 +0100532}
533
Markus Metzgereee3af42008-01-30 13:31:09 +0100534static int ptrace_bts_read_record(struct task_struct *child,
535 long index,
536 struct bts_struct __user *out)
537{
538 struct bts_struct ret;
539 int retval;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100540 int bts_end;
Markus Metzgere4811f22008-01-30 13:31:20 +0100541 int bts_index;
Markus Metzgereee3af42008-01-30 13:31:09 +0100542
543 if (!child->thread.ds_area_msr)
544 return -ENXIO;
545
Markus Metzgere4811f22008-01-30 13:31:20 +0100546 if (index < 0)
547 return -EINVAL;
548
Markus Metzgera95d67f2008-01-30 13:31:20 +0100549 bts_end = ds_get_bts_end((void *)child->thread.ds_area_msr);
550 if (bts_end <= index)
Markus Metzgere4811f22008-01-30 13:31:20 +0100551 return -EINVAL;
552
553 /* translate the ptrace bts index into the ds bts index */
554 bts_index = ds_get_bts_index((void *)child->thread.ds_area_msr);
555 bts_index -= (index + 1);
556 if (bts_index < 0)
Markus Metzgera95d67f2008-01-30 13:31:20 +0100557 bts_index += bts_end;
Markus Metzgere4811f22008-01-30 13:31:20 +0100558
Markus Metzgereee3af42008-01-30 13:31:09 +0100559 retval = ds_read_bts((void *)child->thread.ds_area_msr,
Markus Metzgere4811f22008-01-30 13:31:20 +0100560 bts_index, &ret);
Markus Metzgereee3af42008-01-30 13:31:09 +0100561 if (retval)
562 return retval;
563
564 if (copy_to_user(out, &ret, sizeof(ret)))
565 return -EFAULT;
566
567 return sizeof(ret);
568}
569
570static int ptrace_bts_write_record(struct task_struct *child,
571 const struct bts_struct *in)
572{
573 int retval;
574
575 if (!child->thread.ds_area_msr)
576 return -ENXIO;
577
578 retval = ds_write_bts((void *)child->thread.ds_area_msr, in);
579 if (retval)
580 return retval;
581
582 return sizeof(*in);
583}
584
Markus Metzgera95d67f2008-01-30 13:31:20 +0100585static int ptrace_bts_clear(struct task_struct *child)
Markus Metzgereee3af42008-01-30 13:31:09 +0100586{
Markus Metzgera95d67f2008-01-30 13:31:20 +0100587 if (!child->thread.ds_area_msr)
Markus Metzgereee3af42008-01-30 13:31:09 +0100588 return -ENXIO;
589
Markus Metzgera95d67f2008-01-30 13:31:20 +0100590 return ds_clear((void *)child->thread.ds_area_msr);
591}
592
593static int ptrace_bts_drain(struct task_struct *child,
594 struct bts_struct __user *out)
595{
596 int end, i;
597 void *ds = (void *)child->thread.ds_area_msr;
598
599 if (!ds)
600 return -ENXIO;
601
602 end = ds_get_bts_index(ds);
603 if (end <= 0)
604 return end;
605
606 for (i = 0; i < end; i++, out++) {
607 struct bts_struct ret;
608 int retval;
609
610 retval = ds_read_bts(ds, i, &ret);
611 if (retval < 0)
612 return retval;
613
614 if (copy_to_user(out, &ret, sizeof(ret)))
615 return -EFAULT;
616 }
617
618 ds_clear(ds);
619
620 return i;
621}
622
Markus Metzgerda35c372008-01-30 13:32:03 +0100623static int ptrace_bts_realloc(struct task_struct *child,
624 int size, int reduce_size)
625{
626 unsigned long rlim, vm;
627 int ret, old_size;
628
629 if (size < 0)
630 return -EINVAL;
631
632 old_size = ds_get_bts_size((void *)child->thread.ds_area_msr);
633 if (old_size < 0)
634 return old_size;
635
636 ret = ds_free((void **)&child->thread.ds_area_msr);
637 if (ret < 0)
638 goto out;
639
640 size >>= PAGE_SHIFT;
641 old_size >>= PAGE_SHIFT;
642
643 current->mm->total_vm -= old_size;
644 current->mm->locked_vm -= old_size;
645
646 if (size == 0)
647 goto out;
648
649 rlim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;
650 vm = current->mm->total_vm + size;
651 if (rlim < vm) {
652 ret = -ENOMEM;
653
654 if (!reduce_size)
655 goto out;
656
657 size = rlim - current->mm->total_vm;
658 if (size <= 0)
659 goto out;
660 }
661
662 rlim = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT;
663 vm = current->mm->locked_vm + size;
664 if (rlim < vm) {
665 ret = -ENOMEM;
666
667 if (!reduce_size)
668 goto out;
669
670 size = rlim - current->mm->locked_vm;
671 if (size <= 0)
672 goto out;
673 }
674
675 ret = ds_allocate((void **)&child->thread.ds_area_msr,
676 size << PAGE_SHIFT);
677 if (ret < 0)
678 goto out;
679
680 current->mm->total_vm += size;
681 current->mm->locked_vm += size;
682
683out:
684 if (child->thread.ds_area_msr)
685 set_tsk_thread_flag(child, TIF_DS_AREA_MSR);
686 else
687 clear_tsk_thread_flag(child, TIF_DS_AREA_MSR);
688
689 return ret;
690}
691
Markus Metzgera95d67f2008-01-30 13:31:20 +0100692static int ptrace_bts_config(struct task_struct *child,
693 const struct ptrace_bts_config __user *ucfg)
694{
695 struct ptrace_bts_config cfg;
Markus Metzgerda35c372008-01-30 13:32:03 +0100696 int bts_size, ret = 0;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100697 void *ds;
698
699 if (copy_from_user(&cfg, ucfg, sizeof(cfg)))
700 return -EFAULT;
701
702 bts_size = 0;
703 ds = (void *)child->thread.ds_area_msr;
704 if (ds) {
705 bts_size = ds_get_bts_size(ds);
706 if (bts_size < 0)
707 return bts_size;
708 }
Markus Metzgerda35c372008-01-30 13:32:03 +0100709 cfg.size = PAGE_ALIGN(cfg.size);
Markus Metzgera95d67f2008-01-30 13:31:20 +0100710
711 if (bts_size != cfg.size) {
Markus Metzgerda35c372008-01-30 13:32:03 +0100712 ret = ptrace_bts_realloc(child, cfg.size,
713 cfg.flags & PTRACE_BTS_O_CUT_SIZE);
Markus Metzgera95d67f2008-01-30 13:31:20 +0100714 if (ret < 0)
Markus Metzgerda35c372008-01-30 13:32:03 +0100715 goto errout;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100716
Markus Metzgera95d67f2008-01-30 13:31:20 +0100717 ds = (void *)child->thread.ds_area_msr;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100718 }
719
Markus Metzgerda35c372008-01-30 13:32:03 +0100720 if (cfg.flags & PTRACE_BTS_O_SIGNAL)
721 ret = ds_set_overflow(ds, DS_O_SIGNAL);
722 else
723 ret = ds_set_overflow(ds, DS_O_WRAP);
724 if (ret < 0)
725 goto errout;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100726
Markus Metzgerda35c372008-01-30 13:32:03 +0100727 if (cfg.flags & PTRACE_BTS_O_TRACE)
728 child->thread.debugctlmsr |= ds_debugctl_mask();
729 else
730 child->thread.debugctlmsr &= ~ds_debugctl_mask();
Markus Metzgereee3af42008-01-30 13:31:09 +0100731
Markus Metzgerda35c372008-01-30 13:32:03 +0100732 if (cfg.flags & PTRACE_BTS_O_SCHED)
Markus Metzgereee3af42008-01-30 13:31:09 +0100733 set_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
734 else
735 clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
736
Markus Metzgerda35c372008-01-30 13:32:03 +0100737out:
738 if (child->thread.debugctlmsr)
739 set_tsk_thread_flag(child, TIF_DEBUGCTLMSR);
740 else
741 clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR);
742
743 return ret;
744
745errout:
746 child->thread.debugctlmsr &= ~ds_debugctl_mask();
747 clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
748 goto out;
Markus Metzgereee3af42008-01-30 13:31:09 +0100749}
750
Markus Metzgera95d67f2008-01-30 13:31:20 +0100751static int ptrace_bts_status(struct task_struct *child,
752 struct ptrace_bts_config __user *ucfg)
Markus Metzgereee3af42008-01-30 13:31:09 +0100753{
Markus Metzgera95d67f2008-01-30 13:31:20 +0100754 void *ds = (void *)child->thread.ds_area_msr;
755 struct ptrace_bts_config cfg;
Markus Metzgereee3af42008-01-30 13:31:09 +0100756
Markus Metzgera95d67f2008-01-30 13:31:20 +0100757 memset(&cfg, 0, sizeof(cfg));
Markus Metzgereee3af42008-01-30 13:31:09 +0100758
Markus Metzgera95d67f2008-01-30 13:31:20 +0100759 if (ds) {
760 cfg.size = ds_get_bts_size(ds);
Markus Metzgereee3af42008-01-30 13:31:09 +0100761
Markus Metzgera95d67f2008-01-30 13:31:20 +0100762 if (ds_get_overflow(ds) == DS_O_SIGNAL)
763 cfg.flags |= PTRACE_BTS_O_SIGNAL;
Markus Metzgereee3af42008-01-30 13:31:09 +0100764
Markus Metzgera95d67f2008-01-30 13:31:20 +0100765 if (test_tsk_thread_flag(child, TIF_DEBUGCTLMSR) &&
766 child->thread.debugctlmsr & ds_debugctl_mask())
767 cfg.flags |= PTRACE_BTS_O_TRACE;
Markus Metzgereee3af42008-01-30 13:31:09 +0100768
Markus Metzgera95d67f2008-01-30 13:31:20 +0100769 if (test_tsk_thread_flag(child, TIF_BTS_TRACE_TS))
770 cfg.flags |= PTRACE_BTS_O_SCHED;
Markus Metzgereee3af42008-01-30 13:31:09 +0100771 }
772
Markus Metzgera95d67f2008-01-30 13:31:20 +0100773 if (copy_to_user(ucfg, &cfg, sizeof(cfg)))
774 return -EFAULT;
Markus Metzgereee3af42008-01-30 13:31:09 +0100775
Markus Metzgera95d67f2008-01-30 13:31:20 +0100776 return sizeof(cfg);
Markus Metzgereee3af42008-01-30 13:31:09 +0100777}
778
779void ptrace_bts_take_timestamp(struct task_struct *tsk,
780 enum bts_qualifier qualifier)
781{
782 struct bts_struct rec = {
783 .qualifier = qualifier,
Markus Metzgerda35c372008-01-30 13:32:03 +0100784 .variant.jiffies = jiffies_64
Markus Metzgereee3af42008-01-30 13:31:09 +0100785 };
786
Markus Metzgereee3af42008-01-30 13:31:09 +0100787 ptrace_bts_write_record(tsk, &rec);
788}
789
Roland McGrathd9771e82008-01-30 13:30:52 +0100790/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * Called by kernel/ptrace.c when detaching..
792 *
793 * Make sure the single step bit is not set.
794 */
795void ptrace_disable(struct task_struct *child)
Roland McGrath9e714be2008-01-30 13:30:58 +0100796{
Roland McGrath7f232342008-01-30 13:30:48 +0100797 user_disable_single_step(child);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100798#ifdef TIF_SYSCALL_EMU
Bodo Stroesserab1c23c2005-09-03 15:57:21 -0700799 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100800#endif
Markus Metzgereee3af42008-01-30 13:31:09 +0100801 if (child->thread.ds_area_msr) {
Markus Metzgerda35c372008-01-30 13:32:03 +0100802 ptrace_bts_realloc(child, 0, 0);
803 child->thread.debugctlmsr &= ~ds_debugctl_mask();
804 if (!child->thread.debugctlmsr)
805 clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR);
806 clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
Markus Metzgereee3af42008-01-30 13:31:09 +0100807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Roland McGrath5a4646a2008-01-30 13:31:54 +0100810#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
811static const struct user_regset_view user_x86_32_view; /* Initialized below. */
812#endif
813
Christoph Hellwig481bed42005-11-07 00:59:47 -0800814long arch_ptrace(struct task_struct *child, long request, long addr, long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Roland McGrath5a4646a2008-01-30 13:31:54 +0100816 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 unsigned long __user *datap = (unsigned long __user *)data;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /* read the word at location addr in the USER area. */
821 case PTRACE_PEEKUSR: {
822 unsigned long tmp;
823
824 ret = -EIO;
Roland McGrathe9c86c72008-01-30 13:31:01 +0100825 if ((addr & (sizeof(data) - 1)) || addr < 0 ||
826 addr >= sizeof(struct user))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 break;
828
829 tmp = 0; /* Default return condition */
Roland McGrathe9c86c72008-01-30 13:31:01 +0100830 if (addr < sizeof(struct user_regs_struct))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 tmp = getreg(child, addr);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100832 else if (addr >= offsetof(struct user, u_debugreg[0]) &&
833 addr <= offsetof(struct user, u_debugreg[7])) {
834 addr -= offsetof(struct user, u_debugreg[0]);
835 tmp = ptrace_get_debugreg(child, addr / sizeof(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 ret = put_user(tmp, datap);
838 break;
839 }
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
842 ret = -EIO;
Roland McGrathe9c86c72008-01-30 13:31:01 +0100843 if ((addr & (sizeof(data) - 1)) || addr < 0 ||
844 addr >= sizeof(struct user))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846
Roland McGrathe9c86c72008-01-30 13:31:01 +0100847 if (addr < sizeof(struct user_regs_struct))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 ret = putreg(child, addr, data);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100849 else if (addr >= offsetof(struct user, u_debugreg[0]) &&
850 addr <= offsetof(struct user, u_debugreg[7])) {
851 addr -= offsetof(struct user, u_debugreg[0]);
852 ret = ptrace_set_debugreg(child,
853 addr / sizeof(data), data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Roland McGrathe9c86c72008-01-30 13:31:01 +0100855 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Roland McGrath5a4646a2008-01-30 13:31:54 +0100857 case PTRACE_GETREGS: /* Get all gp regs from the child. */
858 return copy_regset_to_user(child,
859 task_user_regset_view(current),
860 REGSET_GENERAL,
861 0, sizeof(struct user_regs_struct),
862 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Roland McGrath5a4646a2008-01-30 13:31:54 +0100864 case PTRACE_SETREGS: /* Set all gp regs in the child. */
865 return copy_regset_from_user(child,
866 task_user_regset_view(current),
867 REGSET_GENERAL,
868 0, sizeof(struct user_regs_struct),
869 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Roland McGrath5a4646a2008-01-30 13:31:54 +0100871 case PTRACE_GETFPREGS: /* Get the child FPU state. */
872 return copy_regset_to_user(child,
873 task_user_regset_view(current),
874 REGSET_FP,
875 0, sizeof(struct user_i387_struct),
876 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Roland McGrath5a4646a2008-01-30 13:31:54 +0100878 case PTRACE_SETFPREGS: /* Set the child FPU state. */
879 return copy_regset_from_user(child,
880 task_user_regset_view(current),
881 REGSET_FP,
882 0, sizeof(struct user_i387_struct),
883 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Roland McGrathe9c86c72008-01-30 13:31:01 +0100885#ifdef CONFIG_X86_32
Roland McGrath5a4646a2008-01-30 13:31:54 +0100886 case PTRACE_GETFPXREGS: /* Get the child extended FPU state. */
887 return copy_regset_to_user(child, &user_x86_32_view,
888 REGSET_XFP,
889 0, sizeof(struct user_fxsr_struct),
890 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Roland McGrath5a4646a2008-01-30 13:31:54 +0100892 case PTRACE_SETFPXREGS: /* Set the child extended FPU state. */
893 return copy_regset_from_user(child, &user_x86_32_view,
894 REGSET_XFP,
895 0, sizeof(struct user_fxsr_struct),
896 datap);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100897#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Roland McGrathe9c86c72008-01-30 13:31:01 +0100899#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 case PTRACE_GET_THREAD_AREA:
Roland McGrathefd1ca52008-01-30 13:30:46 +0100901 if (addr < 0)
902 return -EIO;
903 ret = do_get_thread_area(child, addr,
904 (struct user_desc __user *) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 break;
906
907 case PTRACE_SET_THREAD_AREA:
Roland McGrathefd1ca52008-01-30 13:30:46 +0100908 if (addr < 0)
909 return -EIO;
910 ret = do_set_thread_area(child, addr,
911 (struct user_desc __user *) data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 break;
Roland McGrathe9c86c72008-01-30 13:31:01 +0100913#endif
914
915#ifdef CONFIG_X86_64
916 /* normal 64bit interface to access TLS data.
917 Works just like arch_prctl, except that the arguments
918 are reversed. */
919 case PTRACE_ARCH_PRCTL:
920 ret = do_arch_prctl(child, data, addr);
921 break;
922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Markus Metzgereee3af42008-01-30 13:31:09 +0100924 case PTRACE_BTS_CONFIG:
Markus Metzgera95d67f2008-01-30 13:31:20 +0100925 ret = ptrace_bts_config
926 (child, (struct ptrace_bts_config __user *)addr);
Markus Metzgereee3af42008-01-30 13:31:09 +0100927 break;
928
929 case PTRACE_BTS_STATUS:
Markus Metzgera95d67f2008-01-30 13:31:20 +0100930 ret = ptrace_bts_status
931 (child, (struct ptrace_bts_config __user *)addr);
932 break;
933
934 case PTRACE_BTS_SIZE:
935 ret = ptrace_bts_get_size(child);
936 break;
937
938 case PTRACE_BTS_GET:
939 ret = ptrace_bts_read_record
940 (child, data, (struct bts_struct __user *) addr);
941 break;
942
943 case PTRACE_BTS_CLEAR:
944 ret = ptrace_bts_clear(child);
945 break;
946
947 case PTRACE_BTS_DRAIN:
948 ret = ptrace_bts_drain
949 (child, (struct bts_struct __user *) addr);
Markus Metzgereee3af42008-01-30 13:31:09 +0100950 break;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 default:
953 ret = ptrace_request(child, request, addr, data);
954 break;
955 }
Roland McGrathd9771e82008-01-30 13:30:52 +0100956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return ret;
958}
959
Roland McGrathcb757c42008-01-30 13:31:01 +0100960#ifdef CONFIG_IA32_EMULATION
961
Roland McGrath099cd6e2008-01-30 13:31:01 +0100962#include <linux/compat.h>
963#include <linux/syscalls.h>
964#include <asm/ia32.h>
Roland McGrathcb757c42008-01-30 13:31:01 +0100965#include <asm/user32.h>
966
967#define R32(l,q) \
968 case offsetof(struct user32, regs.l): \
969 regs->q = value; break
970
971#define SEG32(rs) \
972 case offsetof(struct user32, regs.rs): \
973 return set_segment_reg(child, \
974 offsetof(struct user_regs_struct, rs), \
975 value); \
976 break
977
978static int putreg32(struct task_struct *child, unsigned regno, u32 value)
979{
980 struct pt_regs *regs = task_pt_regs(child);
981
982 switch (regno) {
983
984 SEG32(cs);
985 SEG32(ds);
986 SEG32(es);
987 SEG32(fs);
988 SEG32(gs);
989 SEG32(ss);
990
991 R32(ebx, bx);
992 R32(ecx, cx);
993 R32(edx, dx);
994 R32(edi, di);
995 R32(esi, si);
996 R32(ebp, bp);
997 R32(eax, ax);
998 R32(orig_eax, orig_ax);
999 R32(eip, ip);
1000 R32(esp, sp);
1001
1002 case offsetof(struct user32, regs.eflags):
1003 return set_flags(child, value);
1004
1005 case offsetof(struct user32, u_debugreg[0]) ...
1006 offsetof(struct user32, u_debugreg[7]):
1007 regno -= offsetof(struct user32, u_debugreg[0]);
1008 return ptrace_set_debugreg(child, regno / 4, value);
1009
1010 default:
1011 if (regno > sizeof(struct user32) || (regno & 3))
1012 return -EIO;
1013
1014 /*
1015 * Other dummy fields in the virtual user structure
1016 * are ignored
1017 */
1018 break;
1019 }
1020 return 0;
1021}
1022
1023#undef R32
1024#undef SEG32
1025
1026#define R32(l,q) \
1027 case offsetof(struct user32, regs.l): \
1028 *val = regs->q; break
1029
1030#define SEG32(rs) \
1031 case offsetof(struct user32, regs.rs): \
1032 *val = get_segment_reg(child, \
1033 offsetof(struct user_regs_struct, rs)); \
1034 break
1035
1036static int getreg32(struct task_struct *child, unsigned regno, u32 *val)
1037{
1038 struct pt_regs *regs = task_pt_regs(child);
1039
1040 switch (regno) {
1041
1042 SEG32(ds);
1043 SEG32(es);
1044 SEG32(fs);
1045 SEG32(gs);
1046
1047 R32(cs, cs);
1048 R32(ss, ss);
1049 R32(ebx, bx);
1050 R32(ecx, cx);
1051 R32(edx, dx);
1052 R32(edi, di);
1053 R32(esi, si);
1054 R32(ebp, bp);
1055 R32(eax, ax);
1056 R32(orig_eax, orig_ax);
1057 R32(eip, ip);
1058 R32(esp, sp);
1059
1060 case offsetof(struct user32, regs.eflags):
1061 *val = get_flags(child);
1062 break;
1063
1064 case offsetof(struct user32, u_debugreg[0]) ...
1065 offsetof(struct user32, u_debugreg[7]):
1066 regno -= offsetof(struct user32, u_debugreg[0]);
1067 *val = ptrace_get_debugreg(child, regno / 4);
1068 break;
1069
1070 default:
1071 if (regno > sizeof(struct user32) || (regno & 3))
1072 return -EIO;
1073
1074 /*
1075 * Other dummy fields in the virtual user structure
1076 * are ignored
1077 */
1078 *val = 0;
1079 break;
1080 }
1081 return 0;
1082}
1083
1084#undef R32
1085#undef SEG32
1086
Roland McGrath91e7b702008-01-30 13:31:52 +01001087static int genregs32_get(struct task_struct *target,
1088 const struct user_regset *regset,
1089 unsigned int pos, unsigned int count,
1090 void *kbuf, void __user *ubuf)
1091{
1092 if (kbuf) {
1093 compat_ulong_t *k = kbuf;
1094 while (count > 0) {
1095 getreg32(target, pos, k++);
1096 count -= sizeof(*k);
1097 pos += sizeof(*k);
1098 }
1099 } else {
1100 compat_ulong_t __user *u = ubuf;
1101 while (count > 0) {
1102 compat_ulong_t word;
1103 getreg32(target, pos, &word);
1104 if (__put_user(word, u++))
1105 return -EFAULT;
1106 count -= sizeof(*u);
1107 pos += sizeof(*u);
1108 }
1109 }
1110
1111 return 0;
1112}
1113
1114static int genregs32_set(struct task_struct *target,
1115 const struct user_regset *regset,
1116 unsigned int pos, unsigned int count,
1117 const void *kbuf, const void __user *ubuf)
1118{
1119 int ret = 0;
1120 if (kbuf) {
1121 const compat_ulong_t *k = kbuf;
1122 while (count > 0 && !ret) {
1123 ret = putreg(target, pos, *k++);
1124 count -= sizeof(*k);
1125 pos += sizeof(*k);
1126 }
1127 } else {
1128 const compat_ulong_t __user *u = ubuf;
1129 while (count > 0 && !ret) {
1130 compat_ulong_t word;
1131 ret = __get_user(word, u++);
1132 if (ret)
1133 break;
1134 ret = putreg(target, pos, word);
1135 count -= sizeof(*u);
1136 pos += sizeof(*u);
1137 }
1138 }
1139 return ret;
1140}
1141
Roland McGrath099cd6e2008-01-30 13:31:01 +01001142static long ptrace32_siginfo(unsigned request, u32 pid, u32 addr, u32 data)
1143{
1144 siginfo_t __user *si = compat_alloc_user_space(sizeof(siginfo_t));
1145 compat_siginfo_t __user *si32 = compat_ptr(data);
1146 siginfo_t ssi;
1147 int ret;
1148
1149 if (request == PTRACE_SETSIGINFO) {
1150 memset(&ssi, 0, sizeof(siginfo_t));
1151 ret = copy_siginfo_from_user32(&ssi, si32);
1152 if (ret)
1153 return ret;
1154 if (copy_to_user(si, &ssi, sizeof(siginfo_t)))
1155 return -EFAULT;
1156 }
1157 ret = sys_ptrace(request, pid, addr, (unsigned long)si);
1158 if (ret)
1159 return ret;
1160 if (request == PTRACE_GETSIGINFO) {
1161 if (copy_from_user(&ssi, si, sizeof(siginfo_t)))
1162 return -EFAULT;
1163 ret = copy_siginfo_to_user32(si32, &ssi);
1164 }
1165 return ret;
1166}
1167
1168asmlinkage long sys32_ptrace(long request, u32 pid, u32 addr, u32 data)
1169{
1170 struct task_struct *child;
1171 struct pt_regs *childregs;
1172 void __user *datap = compat_ptr(data);
1173 int ret;
1174 __u32 val;
1175
1176 switch (request) {
1177 case PTRACE_TRACEME:
1178 case PTRACE_ATTACH:
1179 case PTRACE_KILL:
1180 case PTRACE_CONT:
1181 case PTRACE_SINGLESTEP:
1182 case PTRACE_SINGLEBLOCK:
1183 case PTRACE_DETACH:
1184 case PTRACE_SYSCALL:
1185 case PTRACE_OLDSETOPTIONS:
1186 case PTRACE_SETOPTIONS:
1187 case PTRACE_SET_THREAD_AREA:
1188 case PTRACE_GET_THREAD_AREA:
Markus Metzgereee3af42008-01-30 13:31:09 +01001189 case PTRACE_BTS_CONFIG:
1190 case PTRACE_BTS_STATUS:
Markus Metzgera95d67f2008-01-30 13:31:20 +01001191 case PTRACE_BTS_SIZE:
1192 case PTRACE_BTS_GET:
1193 case PTRACE_BTS_CLEAR:
1194 case PTRACE_BTS_DRAIN:
Roland McGrath099cd6e2008-01-30 13:31:01 +01001195 return sys_ptrace(request, pid, addr, data);
1196
1197 default:
1198 return -EINVAL;
1199
1200 case PTRACE_PEEKTEXT:
1201 case PTRACE_PEEKDATA:
1202 case PTRACE_POKEDATA:
1203 case PTRACE_POKETEXT:
1204 case PTRACE_POKEUSR:
1205 case PTRACE_PEEKUSR:
1206 case PTRACE_GETREGS:
1207 case PTRACE_SETREGS:
1208 case PTRACE_SETFPREGS:
1209 case PTRACE_GETFPREGS:
1210 case PTRACE_SETFPXREGS:
1211 case PTRACE_GETFPXREGS:
1212 case PTRACE_GETEVENTMSG:
1213 break;
1214
1215 case PTRACE_SETSIGINFO:
1216 case PTRACE_GETSIGINFO:
1217 return ptrace32_siginfo(request, pid, addr, data);
1218 }
1219
1220 child = ptrace_get_task_struct(pid);
1221 if (IS_ERR(child))
1222 return PTR_ERR(child);
1223
1224 ret = ptrace_check_attach(child, request == PTRACE_KILL);
1225 if (ret < 0)
1226 goto out;
1227
1228 childregs = task_pt_regs(child);
1229
1230 switch (request) {
Roland McGrath099cd6e2008-01-30 13:31:01 +01001231 case PTRACE_PEEKUSR:
1232 ret = getreg32(child, addr, &val);
1233 if (ret == 0)
1234 ret = put_user(val, (__u32 __user *)datap);
1235 break;
1236
1237 case PTRACE_POKEUSR:
1238 ret = putreg32(child, addr, data);
1239 break;
1240
Roland McGrath5a4646a2008-01-30 13:31:54 +01001241 case PTRACE_GETREGS: /* Get all gp regs from the child. */
1242 return copy_regset_to_user(child, &user_x86_32_view,
1243 REGSET_GENERAL,
1244 0, sizeof(struct user_regs_struct32),
1245 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001246
Roland McGrath5a4646a2008-01-30 13:31:54 +01001247 case PTRACE_SETREGS: /* Set all gp regs in the child. */
1248 return copy_regset_from_user(child, &user_x86_32_view,
1249 REGSET_GENERAL, 0,
1250 sizeof(struct user_regs_struct32),
1251 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001252
Roland McGrath5a4646a2008-01-30 13:31:54 +01001253 case PTRACE_GETFPREGS: /* Get the child FPU state. */
1254 return copy_regset_to_user(child, &user_x86_32_view,
1255 REGSET_FP, 0,
1256 sizeof(struct user_i387_ia32_struct),
1257 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001258
Roland McGrath5a4646a2008-01-30 13:31:54 +01001259 case PTRACE_SETFPREGS: /* Set the child FPU state. */
1260 return copy_regset_from_user(
1261 child, &user_x86_32_view, REGSET_FP,
1262 0, sizeof(struct user_i387_ia32_struct), datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001263
Roland McGrath5a4646a2008-01-30 13:31:54 +01001264 case PTRACE_GETFPXREGS: /* Get the child extended FPU state. */
1265 return copy_regset_to_user(child, &user_x86_32_view,
1266 REGSET_XFP, 0,
1267 sizeof(struct user32_fxsr_struct),
1268 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001269
Roland McGrath5a4646a2008-01-30 13:31:54 +01001270 case PTRACE_SETFPXREGS: /* Set the child extended FPU state. */
1271 return copy_regset_from_user(child, &user_x86_32_view,
1272 REGSET_XFP, 0,
1273 sizeof(struct user32_fxsr_struct),
1274 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001275
Roland McGrath099cd6e2008-01-30 13:31:01 +01001276 default:
Roland McGrathfdadd542008-01-30 13:31:56 +01001277 return compat_ptrace_request(child, request, addr, data);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001278 }
1279
1280 out:
1281 put_task_struct(child);
1282 return ret;
1283}
1284
Roland McGrathcb757c42008-01-30 13:31:01 +01001285#endif /* CONFIG_IA32_EMULATION */
1286
Roland McGrath070459d2008-01-30 13:31:53 +01001287#ifdef CONFIG_X86_64
1288
1289static const struct user_regset x86_64_regsets[] = {
1290 [REGSET_GENERAL] = {
1291 .core_note_type = NT_PRSTATUS,
1292 .n = sizeof(struct user_regs_struct) / sizeof(long),
1293 .size = sizeof(long), .align = sizeof(long),
1294 .get = genregs_get, .set = genregs_set
1295 },
1296 [REGSET_FP] = {
1297 .core_note_type = NT_PRFPREG,
1298 .n = sizeof(struct user_i387_struct) / sizeof(long),
1299 .size = sizeof(long), .align = sizeof(long),
1300 .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set
1301 },
1302};
1303
1304static const struct user_regset_view user_x86_64_view = {
1305 .name = "x86_64", .e_machine = EM_X86_64,
1306 .regsets = x86_64_regsets, .n = ARRAY_SIZE(x86_64_regsets)
1307};
1308
1309#else /* CONFIG_X86_32 */
1310
1311#define user_regs_struct32 user_regs_struct
1312#define genregs32_get genregs_get
1313#define genregs32_set genregs_set
1314
1315#endif /* CONFIG_X86_64 */
1316
1317#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1318static const struct user_regset x86_32_regsets[] = {
1319 [REGSET_GENERAL] = {
1320 .core_note_type = NT_PRSTATUS,
1321 .n = sizeof(struct user_regs_struct32) / sizeof(u32),
1322 .size = sizeof(u32), .align = sizeof(u32),
1323 .get = genregs32_get, .set = genregs32_set
1324 },
1325 [REGSET_FP] = {
1326 .core_note_type = NT_PRFPREG,
1327 .n = sizeof(struct user_i387_struct) / sizeof(u32),
1328 .size = sizeof(u32), .align = sizeof(u32),
1329 .active = fpregs_active, .get = fpregs_get, .set = fpregs_set
1330 },
1331 [REGSET_XFP] = {
1332 .core_note_type = NT_PRXFPREG,
1333 .n = sizeof(struct user_i387_struct) / sizeof(u32),
1334 .size = sizeof(u32), .align = sizeof(u32),
1335 .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set
1336 },
1337 [REGSET_TLS] = {
Roland McGrathbb616822008-01-30 13:31:56 +01001338 .core_note_type = NT_386_TLS,
Roland McGrath070459d2008-01-30 13:31:53 +01001339 .n = GDT_ENTRY_TLS_ENTRIES, .bias = GDT_ENTRY_TLS_MIN,
1340 .size = sizeof(struct user_desc),
1341 .align = sizeof(struct user_desc),
1342 .active = regset_tls_active,
1343 .get = regset_tls_get, .set = regset_tls_set
1344 },
1345};
1346
1347static const struct user_regset_view user_x86_32_view = {
1348 .name = "i386", .e_machine = EM_386,
1349 .regsets = x86_32_regsets, .n = ARRAY_SIZE(x86_32_regsets)
1350};
1351#endif
1352
1353const struct user_regset_view *task_user_regset_view(struct task_struct *task)
1354{
1355#ifdef CONFIG_IA32_EMULATION
1356 if (test_tsk_thread_flag(task, TIF_IA32))
1357#endif
1358#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1359 return &user_x86_32_view;
1360#endif
1361#ifdef CONFIG_X86_64
1362 return &user_x86_64_view;
1363#endif
1364}
1365
Roland McGrath86976cd2008-01-30 13:31:01 +01001366#ifdef CONFIG_X86_32
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code)
1369{
1370 struct siginfo info;
1371
1372 tsk->thread.trap_no = 1;
1373 tsk->thread.error_code = error_code;
1374
1375 memset(&info, 0, sizeof(info));
1376 info.si_signo = SIGTRAP;
1377 info.si_code = TRAP_BRKPT;
1378
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001379 /* User-mode ip? */
1380 info.si_addr = user_mode_vm(regs) ? (void __user *) regs->ip : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Simon Arlott27b46d72007-10-20 01:13:56 +02001382 /* Send us the fake SIGTRAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 force_sig_info(SIGTRAP, &info, tsk);
1384}
1385
1386/* notification of system call entry/exit
1387 * - triggered by current->work.syscall_trace
1388 */
1389__attribute__((regparm(3)))
Laurent Viviered75e8d2005-09-03 15:57:18 -07001390int do_syscall_trace(struct pt_regs *regs, int entryexit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Andrea Arcangeli4c7fc722005-09-09 13:01:51 -07001392 int is_sysemu = test_thread_flag(TIF_SYSCALL_EMU);
1393 /*
1394 * With TIF_SYSCALL_EMU set we want to ignore TIF_SINGLESTEP for syscall
1395 * interception
1396 */
Bodo Stroesser1b38f002005-09-03 15:57:20 -07001397 int is_singlestep = !is_sysemu && test_thread_flag(TIF_SINGLESTEP);
Andrea Arcangeli4c7fc722005-09-09 13:01:51 -07001398 int ret = 0;
Bodo Stroesser1b38f002005-09-03 15:57:20 -07001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 /* do the secure computing check first */
Andrea Arcangeli4c7fc722005-09-09 13:01:51 -07001401 if (!entryexit)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001402 secure_computing(regs->orig_ax);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Bodo Stroesserab1c23c2005-09-03 15:57:21 -07001404 if (unlikely(current->audit_context)) {
1405 if (entryexit)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001406 audit_syscall_exit(AUDITSC_RESULT(regs->ax),
1407 regs->ax);
Bodo Stroesserab1c23c2005-09-03 15:57:21 -07001408 /* Debug traps, when using PTRACE_SINGLESTEP, must be sent only
1409 * on the syscall exit path. Normally, when TIF_SYSCALL_AUDIT is
1410 * not used, entry.S will call us only on syscall exit, not
1411 * entry; so when TIF_SYSCALL_AUDIT is used we must avoid
1412 * calling send_sigtrap() on syscall entry.
1413 *
1414 * Note that when PTRACE_SYSEMU_SINGLESTEP is used,
1415 * is_singlestep is false, despite his name, so we will still do
1416 * the correct thing.
1417 */
1418 else if (is_singlestep)
1419 goto out;
1420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 if (!(current->ptrace & PT_PTRACED))
2fd6f582005-04-29 16:08:28 +01001423 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Bodo Stroesser1b38f002005-09-03 15:57:20 -07001425 /* If a process stops on the 1st tracepoint with SYSCALL_TRACE
1426 * and then is resumed with SYSEMU_SINGLESTEP, it will come in
1427 * here. We have to check this and return */
1428 if (is_sysemu && entryexit)
1429 return 0;
Laurent Viviered75e8d2005-09-03 15:57:18 -07001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* Fake a debug trap */
Bodo Stroesserc8c86ce2005-09-03 15:57:19 -07001432 if (is_singlestep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 send_sigtrap(current, regs, 0);
1434
Bodo Stroesserc8c86ce2005-09-03 15:57:19 -07001435 if (!test_thread_flag(TIF_SYSCALL_TRACE) && !is_sysemu)
2fd6f582005-04-29 16:08:28 +01001436 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 /* the 0x80 provides a way for the tracing parent to distinguish
1439 between a syscall stop and SIGTRAP delivery */
Laurent Viviered75e8d2005-09-03 15:57:18 -07001440 /* Note that the debugger could change the result of test_thread_flag!*/
Andrea Arcangeli4c7fc722005-09-09 13:01:51 -07001441 ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) ? 0x80:0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 /*
1444 * this isn't the same as continuing with a signal, but it will do
1445 * for normal use. strace only continues with a signal if the
1446 * stopping signal is not SIGTRAP. -brl
1447 */
1448 if (current->exit_code) {
1449 send_sig(current->exit_code, current, 1);
1450 current->exit_code = 0;
1451 }
Laurent Viviered75e8d2005-09-03 15:57:18 -07001452 ret = is_sysemu;
Andrea Arcangeli4c7fc722005-09-09 13:01:51 -07001453out:
2fd6f582005-04-29 16:08:28 +01001454 if (unlikely(current->audit_context) && !entryexit)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001455 audit_syscall_entry(AUDIT_ARCH_I386, regs->orig_ax,
1456 regs->bx, regs->cx, regs->dx, regs->si);
Bodo Stroesserc8c86ce2005-09-03 15:57:19 -07001457 if (ret == 0)
1458 return 0;
1459
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001460 regs->orig_ax = -1; /* force skip of syscall restarting */
Bodo Stroesserc8c86ce2005-09-03 15:57:19 -07001461 if (unlikely(current->audit_context))
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001462 audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax);
Bodo Stroesserc8c86ce2005-09-03 15:57:19 -07001463 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
Roland McGrath86976cd2008-01-30 13:31:01 +01001465
1466#else /* CONFIG_X86_64 */
1467
1468static void syscall_trace(struct pt_regs *regs)
1469{
1470
1471#if 0
1472 printk("trace %s ip %lx sp %lx ax %d origrax %d caller %lx tiflags %x ptrace %x\n",
1473 current->comm,
1474 regs->ip, regs->sp, regs->ax, regs->orig_ax, __builtin_return_address(0),
1475 current_thread_info()->flags, current->ptrace);
1476#endif
1477
1478 ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
1479 ? 0x80 : 0));
1480 /*
1481 * this isn't the same as continuing with a signal, but it will do
1482 * for normal use. strace only continues with a signal if the
1483 * stopping signal is not SIGTRAP. -brl
1484 */
1485 if (current->exit_code) {
1486 send_sig(current->exit_code, current, 1);
1487 current->exit_code = 0;
1488 }
1489}
1490
1491asmlinkage void syscall_trace_enter(struct pt_regs *regs)
1492{
1493 /* do the secure computing check first */
1494 secure_computing(regs->orig_ax);
1495
1496 if (test_thread_flag(TIF_SYSCALL_TRACE)
1497 && (current->ptrace & PT_PTRACED))
1498 syscall_trace(regs);
1499
1500 if (unlikely(current->audit_context)) {
1501 if (test_thread_flag(TIF_IA32)) {
1502 audit_syscall_entry(AUDIT_ARCH_I386,
1503 regs->orig_ax,
1504 regs->bx, regs->cx,
1505 regs->dx, regs->si);
1506 } else {
1507 audit_syscall_entry(AUDIT_ARCH_X86_64,
1508 regs->orig_ax,
1509 regs->di, regs->si,
1510 regs->dx, regs->r10);
1511 }
1512 }
1513}
1514
1515asmlinkage void syscall_trace_leave(struct pt_regs *regs)
1516{
1517 if (unlikely(current->audit_context))
1518 audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax);
1519
1520 if ((test_thread_flag(TIF_SYSCALL_TRACE)
1521 || test_thread_flag(TIF_SINGLESTEP))
1522 && (current->ptrace & PT_PTRACED))
1523 syscall_trace(regs);
1524}
1525
1526#endif /* CONFIG_X86_32 */