blob: 3e0fc5f7ed4b05cb09df7c58f7098492176a568b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/ptrace.c
3 *
4 * By Ross Biro 1/23/92
5 * edited by Linus Torvalds
6 * ARM modifications Copyright (C) 2000 Russell King
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/sched.h>
14#include <linux/mm.h>
Paul Gortmakerce8b9d22011-07-18 12:03:53 -040015#include <linux/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/ptrace.h>
18#include <linux/user.h>
19#include <linux/security.h>
20#include <linux/init.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070021#include <linux/signal.h>
Russell King33fa9b12008-09-06 11:35:55 +010022#include <linux/uaccess.h>
Will Deacon864232f2010-09-03 10:42:55 +010023#include <linux/perf_event.h>
24#include <linux/hw_breakpoint.h>
Dave Martin5be6f622011-04-18 14:48:23 +010025#include <linux/regset.h>
Eric Paris5180bb32012-02-21 11:26:55 -050026#include <linux/audit.h>
Wade Farnsworth0693bf62012-04-04 16:19:47 +010027#include <linux/tracehook.h>
Will Deaconad82cc02012-07-19 17:46:44 +010028#include <linux/unistd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/traps.h>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define REG_PC 15
34#define REG_PSR 16
35/*
36 * does not yet catch signals sent when the child dies.
37 * in exit.c or in signal.c.
38 */
39
40#if 0
41/*
42 * Breakpoint SWI instruction: SWI &9F0001
43 */
44#define BREAKINST_ARM 0xef9f0001
45#define BREAKINST_THUMB 0xdf00 /* fill this in later */
46#else
47/*
48 * New breakpoints - use an undefined instruction. The ARM architecture
49 * reference manual guarantees that the following instruction space
50 * will produce an undefined instruction exception on all CPUs:
51 *
52 * ARM: xxxx 0111 1111 xxxx xxxx xxxx 1111 xxxx
53 * Thumb: 1101 1110 xxxx xxxx
54 */
55#define BREAKINST_ARM 0xe7f001f0
56#define BREAKINST_THUMB 0xde01
57#endif
58
Will Deacone513f8b2010-06-25 12:24:53 +010059struct pt_regs_offset {
60 const char *name;
61 int offset;
62};
63
64#define REG_OFFSET_NAME(r) \
65 {.name = #r, .offset = offsetof(struct pt_regs, ARM_##r)}
66#define REG_OFFSET_END {.name = NULL, .offset = 0}
67
68static const struct pt_regs_offset regoffset_table[] = {
69 REG_OFFSET_NAME(r0),
70 REG_OFFSET_NAME(r1),
71 REG_OFFSET_NAME(r2),
72 REG_OFFSET_NAME(r3),
73 REG_OFFSET_NAME(r4),
74 REG_OFFSET_NAME(r5),
75 REG_OFFSET_NAME(r6),
76 REG_OFFSET_NAME(r7),
77 REG_OFFSET_NAME(r8),
78 REG_OFFSET_NAME(r9),
79 REG_OFFSET_NAME(r10),
80 REG_OFFSET_NAME(fp),
81 REG_OFFSET_NAME(ip),
82 REG_OFFSET_NAME(sp),
83 REG_OFFSET_NAME(lr),
84 REG_OFFSET_NAME(pc),
85 REG_OFFSET_NAME(cpsr),
86 REG_OFFSET_NAME(ORIG_r0),
87 REG_OFFSET_END,
88};
89
90/**
91 * regs_query_register_offset() - query register offset from its name
92 * @name: the name of a register
93 *
94 * regs_query_register_offset() returns the offset of a register in struct
95 * pt_regs from its name. If the name is invalid, this returns -EINVAL;
96 */
97int regs_query_register_offset(const char *name)
98{
99 const struct pt_regs_offset *roff;
100 for (roff = regoffset_table; roff->name != NULL; roff++)
101 if (!strcmp(roff->name, name))
102 return roff->offset;
103 return -EINVAL;
104}
105
106/**
107 * regs_query_register_name() - query register name from its offset
108 * @offset: the offset of a register in struct pt_regs.
109 *
110 * regs_query_register_name() returns the name of a register from its
111 * offset in struct pt_regs. If the @offset is invalid, this returns NULL;
112 */
113const char *regs_query_register_name(unsigned int offset)
114{
115 const struct pt_regs_offset *roff;
116 for (roff = regoffset_table; roff->name != NULL; roff++)
117 if (roff->offset == offset)
118 return roff->name;
119 return NULL;
120}
121
122/**
123 * regs_within_kernel_stack() - check the address in the stack
124 * @regs: pt_regs which contains kernel stack pointer.
125 * @addr: address which is checked.
126 *
127 * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
128 * If @addr is within the kernel stack, it returns true. If not, returns false.
129 */
130bool regs_within_kernel_stack(struct pt_regs *regs, unsigned long addr)
131{
132 return ((addr & ~(THREAD_SIZE - 1)) ==
133 (kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
134}
135
136/**
137 * regs_get_kernel_stack_nth() - get Nth entry of the stack
138 * @regs: pt_regs which contains kernel stack pointer.
139 * @n: stack entry number.
140 *
141 * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
142 * is specified by @regs. If the @n th entry is NOT in the kernel stack,
143 * this returns 0.
144 */
145unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n)
146{
147 unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
148 addr += n;
149 if (regs_within_kernel_stack(regs, (unsigned long)addr))
150 return *addr;
151 else
152 return 0;
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 * this routine will get a word off of the processes privileged stack.
157 * the offset is how far from the base addr as stored in the THREAD.
158 * this routine assumes that all the privileged stacks are in our
159 * data space.
160 */
161static inline long get_user_reg(struct task_struct *task, int offset)
162{
Al Viro815d5ec2006-01-12 01:05:57 -0800163 return task_pt_regs(task)->uregs[offset];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166/*
167 * this routine will put a word on the processes privileged stack.
168 * the offset is how far from the base addr as stored in the THREAD.
169 * this routine assumes that all the privileged stacks are in our
170 * data space.
171 */
172static inline int
173put_user_reg(struct task_struct *task, int offset, long data)
174{
Al Viro815d5ec2006-01-12 01:05:57 -0800175 struct pt_regs newregs, *regs = task_pt_regs(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 int ret = -EINVAL;
177
178 newregs = *regs;
179 newregs.uregs[offset] = data;
180
181 if (valid_user_regs(&newregs)) {
182 regs->uregs[offset] = data;
183 ret = 0;
184 }
185
186 return ret;
187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*
190 * Called by kernel/ptrace.c when detaching..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 */
192void ptrace_disable(struct task_struct *child)
193{
Will Deacon425fc472011-02-14 14:31:09 +0100194 /* Nothing to do. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197/*
198 * Handle hitting a breakpoint.
199 */
200void ptrace_break(struct task_struct *tsk, struct pt_regs *regs)
201{
202 siginfo_t info;
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 info.si_signo = SIGTRAP;
205 info.si_errno = 0;
206 info.si_code = TRAP_BRKPT;
207 info.si_addr = (void __user *)instruction_pointer(regs);
208
209 force_sig_info(SIGTRAP, &info, tsk);
210}
211
212static int break_trap(struct pt_regs *regs, unsigned int instr)
213{
214 ptrace_break(current, regs);
215 return 0;
216}
217
218static struct undef_hook arm_break_hook = {
219 .instr_mask = 0x0fffffff,
220 .instr_val = 0x07f001f0,
221 .cpsr_mask = PSR_T_BIT,
222 .cpsr_val = 0,
223 .fn = break_trap,
224};
225
226static struct undef_hook thumb_break_hook = {
227 .instr_mask = 0xffff,
228 .instr_val = 0xde01,
229 .cpsr_mask = PSR_T_BIT,
230 .cpsr_val = PSR_T_BIT,
231 .fn = break_trap,
232};
233
Daniel Jacobowitzd23bc1b2010-02-02 18:22:16 +0100234static struct undef_hook thumb2_break_hook = {
Jon Medhurst592201a2011-03-26 19:19:07 +0000235 .instr_mask = 0xffffffff,
236 .instr_val = 0xf7f0a000,
Daniel Jacobowitzd23bc1b2010-02-02 18:22:16 +0100237 .cpsr_mask = PSR_T_BIT,
238 .cpsr_val = PSR_T_BIT,
Jon Medhurst592201a2011-03-26 19:19:07 +0000239 .fn = break_trap,
Daniel Jacobowitzd23bc1b2010-02-02 18:22:16 +0100240};
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242static int __init ptrace_break_init(void)
243{
244 register_undef_hook(&arm_break_hook);
245 register_undef_hook(&thumb_break_hook);
Daniel Jacobowitzd23bc1b2010-02-02 18:22:16 +0100246 register_undef_hook(&thumb2_break_hook);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return 0;
248}
249
250core_initcall(ptrace_break_init);
251
252/*
253 * Read the word at offset "off" into the "struct user". We
254 * actually access the pt_regs stored on the kernel stack.
255 */
256static int ptrace_read_user(struct task_struct *tsk, unsigned long off,
257 unsigned long __user *ret)
258{
259 unsigned long tmp;
260
Will Deacon5a4f5da52012-02-21 12:29:03 +0100261 if (off & 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return -EIO;
263
264 tmp = 0;
Paul Brook68b7f7152009-07-24 12:34:58 +0100265 if (off == PT_TEXT_ADDR)
266 tmp = tsk->mm->start_code;
267 else if (off == PT_DATA_ADDR)
268 tmp = tsk->mm->start_data;
269 else if (off == PT_TEXT_END_ADDR)
270 tmp = tsk->mm->end_code;
271 else if (off < sizeof(struct pt_regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 tmp = get_user_reg(tsk, off >> 2);
Will Deacon5a4f5da52012-02-21 12:29:03 +0100273 else if (off >= sizeof(struct user))
274 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 return put_user(tmp, ret);
277}
278
279/*
280 * Write the word at offset "off" into "struct user". We
281 * actually access the pt_regs stored on the kernel stack.
282 */
283static int ptrace_write_user(struct task_struct *tsk, unsigned long off,
284 unsigned long val)
285{
286 if (off & 3 || off >= sizeof(struct user))
287 return -EIO;
288
289 if (off >= sizeof(struct pt_regs))
290 return 0;
291
292 return put_user_reg(tsk, off >> 2, val);
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#ifdef CONFIG_IWMMXT
296
297/*
298 * Get the child iWMMXt state.
299 */
300static int ptrace_getwmmxregs(struct task_struct *tsk, void __user *ufp)
301{
Al Viroe7c1b322006-01-12 01:05:56 -0800302 struct thread_info *thread = task_thread_info(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if (!test_ti_thread_flag(thread, TIF_USING_IWMMXT))
305 return -ENODATA;
306 iwmmxt_task_disable(thread); /* force it to ram */
Russell Kingcdaabbd2006-03-12 22:36:06 +0000307 return copy_to_user(ufp, &thread->fpstate.iwmmxt, IWMMXT_SIZE)
308 ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/*
312 * Set the child iWMMXt state.
313 */
314static int ptrace_setwmmxregs(struct task_struct *tsk, void __user *ufp)
315{
Al Viroe7c1b322006-01-12 01:05:56 -0800316 struct thread_info *thread = task_thread_info(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (!test_ti_thread_flag(thread, TIF_USING_IWMMXT))
319 return -EACCES;
320 iwmmxt_task_release(thread); /* force a reload */
Russell King17320a92006-03-15 14:57:13 +0000321 return copy_from_user(&thread->fpstate.iwmmxt, ufp, IWMMXT_SIZE)
Russell Kingcdaabbd2006-03-12 22:36:06 +0000322 ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325#endif
326
Lennert Buytenhek5429b062006-06-27 22:56:19 +0100327#ifdef CONFIG_CRUNCH
328/*
329 * Get the child Crunch state.
330 */
331static int ptrace_getcrunchregs(struct task_struct *tsk, void __user *ufp)
332{
333 struct thread_info *thread = task_thread_info(tsk);
334
335 crunch_task_disable(thread); /* force it to ram */
336 return copy_to_user(ufp, &thread->crunchstate, CRUNCH_SIZE)
337 ? -EFAULT : 0;
338}
339
340/*
341 * Set the child Crunch state.
342 */
343static int ptrace_setcrunchregs(struct task_struct *tsk, void __user *ufp)
344{
345 struct thread_info *thread = task_thread_info(tsk);
346
347 crunch_task_release(thread); /* force a reload */
348 return copy_from_user(&thread->crunchstate, ufp, CRUNCH_SIZE)
349 ? -EFAULT : 0;
350}
351#endif
352
Will Deacon864232f2010-09-03 10:42:55 +0100353#ifdef CONFIG_HAVE_HW_BREAKPOINT
354/*
355 * Convert a virtual register number into an index for a thread_info
356 * breakpoint array. Breakpoints are identified using positive numbers
357 * whilst watchpoints are negative. The registers are laid out as pairs
358 * of (address, control), each pair mapping to a unique hw_breakpoint struct.
359 * Register 0 is reserved for describing resource information.
360 */
361static int ptrace_hbp_num_to_idx(long num)
362{
363 if (num < 0)
364 num = (ARM_MAX_BRP << 1) - num;
365 return (num - 1) >> 1;
366}
367
368/*
369 * Returns the virtual register number for the address of the
370 * breakpoint at index idx.
371 */
372static long ptrace_hbp_idx_to_num(int idx)
373{
374 long mid = ARM_MAX_BRP << 1;
375 long num = (idx << 1) + 1;
376 return num > mid ? mid - num : num;
377}
378
379/*
380 * Handle hitting a HW-breakpoint.
381 */
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200382static void ptrace_hbptriggered(struct perf_event *bp,
Will Deacon864232f2010-09-03 10:42:55 +0100383 struct perf_sample_data *data,
384 struct pt_regs *regs)
385{
386 struct arch_hw_breakpoint *bkpt = counter_arch_bp(bp);
387 long num;
388 int i;
389 siginfo_t info;
390
391 for (i = 0; i < ARM_MAX_HBP_SLOTS; ++i)
392 if (current->thread.debug.hbp[i] == bp)
393 break;
394
395 num = (i == ARM_MAX_HBP_SLOTS) ? 0 : ptrace_hbp_idx_to_num(i);
396
397 info.si_signo = SIGTRAP;
398 info.si_errno = (int)num;
399 info.si_code = TRAP_HWBKPT;
400 info.si_addr = (void __user *)(bkpt->trigger);
401
402 force_sig_info(SIGTRAP, &info, current);
403}
404
405/*
406 * Set ptrace breakpoint pointers to zero for this task.
407 * This is required in order to prevent child processes from unregistering
408 * breakpoints held by their parent.
409 */
410void clear_ptrace_hw_breakpoint(struct task_struct *tsk)
411{
412 memset(tsk->thread.debug.hbp, 0, sizeof(tsk->thread.debug.hbp));
413}
414
415/*
416 * Unregister breakpoints from this task and reset the pointers in
417 * the thread_struct.
418 */
419void flush_ptrace_hw_breakpoint(struct task_struct *tsk)
420{
421 int i;
422 struct thread_struct *t = &tsk->thread;
423
424 for (i = 0; i < ARM_MAX_HBP_SLOTS; i++) {
425 if (t->debug.hbp[i]) {
426 unregister_hw_breakpoint(t->debug.hbp[i]);
427 t->debug.hbp[i] = NULL;
428 }
429 }
430}
431
432static u32 ptrace_get_hbp_resource_info(void)
433{
434 u8 num_brps, num_wrps, debug_arch, wp_len;
435 u32 reg = 0;
436
437 num_brps = hw_breakpoint_slots(TYPE_INST);
438 num_wrps = hw_breakpoint_slots(TYPE_DATA);
439 debug_arch = arch_get_debug_arch();
440 wp_len = arch_get_max_wp_len();
441
442 reg |= debug_arch;
443 reg <<= 8;
444 reg |= wp_len;
445 reg <<= 8;
446 reg |= num_wrps;
447 reg <<= 8;
448 reg |= num_brps;
449
450 return reg;
451}
452
453static struct perf_event *ptrace_hbp_create(struct task_struct *tsk, int type)
454{
455 struct perf_event_attr attr;
456
457 ptrace_breakpoint_init(&attr);
458
459 /* Initialise fields to sane defaults. */
460 attr.bp_addr = 0;
461 attr.bp_len = HW_BREAKPOINT_LEN_4;
462 attr.bp_type = type;
463 attr.disabled = 1;
464
Avi Kivity4dc0da82011-06-29 18:42:35 +0300465 return register_user_hw_breakpoint(&attr, ptrace_hbptriggered, NULL,
466 tsk);
Will Deacon864232f2010-09-03 10:42:55 +0100467}
468
469static int ptrace_gethbpregs(struct task_struct *tsk, long num,
470 unsigned long __user *data)
471{
472 u32 reg;
473 int idx, ret = 0;
474 struct perf_event *bp;
475 struct arch_hw_breakpoint_ctrl arch_ctrl;
476
477 if (num == 0) {
478 reg = ptrace_get_hbp_resource_info();
479 } else {
480 idx = ptrace_hbp_num_to_idx(num);
481 if (idx < 0 || idx >= ARM_MAX_HBP_SLOTS) {
482 ret = -EINVAL;
483 goto out;
484 }
485
486 bp = tsk->thread.debug.hbp[idx];
487 if (!bp) {
488 reg = 0;
489 goto put;
490 }
491
492 arch_ctrl = counter_arch_bp(bp)->ctrl;
493
494 /*
495 * Fix up the len because we may have adjusted it
496 * to compensate for an unaligned address.
497 */
498 while (!(arch_ctrl.len & 0x1))
499 arch_ctrl.len >>= 1;
500
Will Deaconba55d3d2011-02-25 20:19:32 +0100501 if (num & 0x1)
Will Deacon864232f2010-09-03 10:42:55 +0100502 reg = bp->attr.bp_addr;
Will Deaconba55d3d2011-02-25 20:19:32 +0100503 else
504 reg = encode_ctrl_reg(arch_ctrl);
Will Deacon864232f2010-09-03 10:42:55 +0100505 }
506
507put:
508 if (put_user(reg, data))
509 ret = -EFAULT;
510
511out:
512 return ret;
513}
514
515static int ptrace_sethbpregs(struct task_struct *tsk, long num,
516 unsigned long __user *data)
517{
518 int idx, gen_len, gen_type, implied_type, ret = 0;
519 u32 user_val;
520 struct perf_event *bp;
521 struct arch_hw_breakpoint_ctrl ctrl;
522 struct perf_event_attr attr;
523
524 if (num == 0)
525 goto out;
526 else if (num < 0)
527 implied_type = HW_BREAKPOINT_RW;
528 else
529 implied_type = HW_BREAKPOINT_X;
530
531 idx = ptrace_hbp_num_to_idx(num);
532 if (idx < 0 || idx >= ARM_MAX_HBP_SLOTS) {
533 ret = -EINVAL;
534 goto out;
535 }
536
537 if (get_user(user_val, data)) {
538 ret = -EFAULT;
539 goto out;
540 }
541
542 bp = tsk->thread.debug.hbp[idx];
543 if (!bp) {
544 bp = ptrace_hbp_create(tsk, implied_type);
545 if (IS_ERR(bp)) {
546 ret = PTR_ERR(bp);
547 goto out;
548 }
549 tsk->thread.debug.hbp[idx] = bp;
550 }
551
552 attr = bp->attr;
553
554 if (num & 0x1) {
555 /* Address */
556 attr.bp_addr = user_val;
557 } else {
558 /* Control */
559 decode_ctrl_reg(user_val, &ctrl);
560 ret = arch_bp_generic_fields(ctrl, &gen_len, &gen_type);
561 if (ret)
562 goto out;
563
564 if ((gen_type & implied_type) != gen_type) {
Will Deaconce9b1b02010-11-25 12:59:31 +0000565 ret = -EINVAL;
566 goto out;
Will Deacon864232f2010-09-03 10:42:55 +0100567 }
568
569 attr.bp_len = gen_len;
570 attr.bp_type = gen_type;
571 attr.disabled = !ctrl.enabled;
572 }
573
574 ret = modify_user_hw_breakpoint(bp, &attr);
575out:
576 return ret;
577}
578#endif
579
Dave Martin5be6f622011-04-18 14:48:23 +0100580/* regset get/set implementations */
581
582static int gpr_get(struct task_struct *target,
583 const struct user_regset *regset,
584 unsigned int pos, unsigned int count,
585 void *kbuf, void __user *ubuf)
586{
587 struct pt_regs *regs = task_pt_regs(target);
588
589 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
590 regs,
591 0, sizeof(*regs));
592}
593
594static int gpr_set(struct task_struct *target,
595 const struct user_regset *regset,
596 unsigned int pos, unsigned int count,
597 const void *kbuf, const void __user *ubuf)
598{
599 int ret;
600 struct pt_regs newregs;
601
602 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
603 &newregs,
604 0, sizeof(newregs));
605 if (ret)
606 return ret;
607
608 if (!valid_user_regs(&newregs))
609 return -EINVAL;
610
611 *task_pt_regs(target) = newregs;
612 return 0;
613}
614
615static int fpa_get(struct task_struct *target,
616 const struct user_regset *regset,
617 unsigned int pos, unsigned int count,
618 void *kbuf, void __user *ubuf)
619{
620 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
621 &task_thread_info(target)->fpstate,
622 0, sizeof(struct user_fp));
623}
624
625static int fpa_set(struct task_struct *target,
626 const struct user_regset *regset,
627 unsigned int pos, unsigned int count,
628 const void *kbuf, const void __user *ubuf)
629{
630 struct thread_info *thread = task_thread_info(target);
631
632 thread->used_cp[1] = thread->used_cp[2] = 1;
633
634 return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
635 &thread->fpstate,
636 0, sizeof(struct user_fp));
637}
638
639#ifdef CONFIG_VFP
640/*
641 * VFP register get/set implementations.
642 *
643 * With respect to the kernel, struct user_fp is divided into three chunks:
644 * 16 or 32 real VFP registers (d0-d15 or d0-31)
645 * These are transferred to/from the real registers in the task's
646 * vfp_hard_struct. The number of registers depends on the kernel
647 * configuration.
648 *
649 * 16 or 0 fake VFP registers (d16-d31 or empty)
650 * i.e., the user_vfp structure has space for 32 registers even if
651 * the kernel doesn't have them all.
652 *
653 * vfp_get() reads this chunk as zero where applicable
654 * vfp_set() ignores this chunk
655 *
656 * 1 word for the FPSCR
657 *
658 * The bounds-checking logic built into user_regset_copyout and friends
659 * means that we can make a simple sequence of calls to map the relevant data
660 * to/from the specified slice of the user regset structure.
661 */
662static int vfp_get(struct task_struct *target,
663 const struct user_regset *regset,
664 unsigned int pos, unsigned int count,
665 void *kbuf, void __user *ubuf)
666{
667 int ret;
668 struct thread_info *thread = task_thread_info(target);
669 struct vfp_hard_struct const *vfp = &thread->vfpstate.hard;
670 const size_t user_fpregs_offset = offsetof(struct user_vfp, fpregs);
671 const size_t user_fpscr_offset = offsetof(struct user_vfp, fpscr);
672
673 vfp_sync_hwstate(thread);
674
675 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
676 &vfp->fpregs,
677 user_fpregs_offset,
678 user_fpregs_offset + sizeof(vfp->fpregs));
679 if (ret)
680 return ret;
681
682 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
683 user_fpregs_offset + sizeof(vfp->fpregs),
684 user_fpscr_offset);
685 if (ret)
686 return ret;
687
688 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
689 &vfp->fpscr,
690 user_fpscr_offset,
691 user_fpscr_offset + sizeof(vfp->fpscr));
692}
693
694/*
695 * For vfp_set() a read-modify-write is done on the VFP registers,
696 * in order to avoid writing back a half-modified set of registers on
697 * failure.
698 */
699static int vfp_set(struct task_struct *target,
700 const struct user_regset *regset,
701 unsigned int pos, unsigned int count,
702 const void *kbuf, const void __user *ubuf)
703{
704 int ret;
705 struct thread_info *thread = task_thread_info(target);
Dave Martin247f4992012-01-30 20:22:28 +0100706 struct vfp_hard_struct new_vfp;
Dave Martin5be6f622011-04-18 14:48:23 +0100707 const size_t user_fpregs_offset = offsetof(struct user_vfp, fpregs);
708 const size_t user_fpscr_offset = offsetof(struct user_vfp, fpscr);
709
Dave Martin247f4992012-01-30 20:22:28 +0100710 vfp_sync_hwstate(thread);
711 new_vfp = thread->vfpstate.hard;
712
Dave Martin5be6f622011-04-18 14:48:23 +0100713 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
714 &new_vfp.fpregs,
715 user_fpregs_offset,
716 user_fpregs_offset + sizeof(new_vfp.fpregs));
717 if (ret)
718 return ret;
719
720 ret = user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
721 user_fpregs_offset + sizeof(new_vfp.fpregs),
722 user_fpscr_offset);
723 if (ret)
724 return ret;
725
726 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
727 &new_vfp.fpscr,
728 user_fpscr_offset,
729 user_fpscr_offset + sizeof(new_vfp.fpscr));
730 if (ret)
731 return ret;
732
Dave Martin5be6f622011-04-18 14:48:23 +0100733 vfp_flush_hwstate(thread);
Will Deacon8130b9d2012-01-30 20:23:29 +0100734 thread->vfpstate.hard = new_vfp;
Dave Martin5be6f622011-04-18 14:48:23 +0100735
736 return 0;
737}
738#endif /* CONFIG_VFP */
739
740enum arm_regset {
741 REGSET_GPR,
742 REGSET_FPR,
743#ifdef CONFIG_VFP
744 REGSET_VFP,
745#endif
746};
747
748static const struct user_regset arm_regsets[] = {
749 [REGSET_GPR] = {
750 .core_note_type = NT_PRSTATUS,
751 .n = ELF_NGREG,
752 .size = sizeof(u32),
753 .align = sizeof(u32),
754 .get = gpr_get,
755 .set = gpr_set
756 },
757 [REGSET_FPR] = {
758 /*
759 * For the FPA regs in fpstate, the real fields are a mixture
760 * of sizes, so pretend that the registers are word-sized:
761 */
762 .core_note_type = NT_PRFPREG,
763 .n = sizeof(struct user_fp) / sizeof(u32),
764 .size = sizeof(u32),
765 .align = sizeof(u32),
766 .get = fpa_get,
767 .set = fpa_set
768 },
769#ifdef CONFIG_VFP
770 [REGSET_VFP] = {
771 /*
772 * Pretend that the VFP regs are word-sized, since the FPSCR is
773 * a single word dangling at the end of struct user_vfp:
774 */
775 .core_note_type = NT_ARM_VFP,
776 .n = ARM_VFPREGS_SIZE / sizeof(u32),
777 .size = sizeof(u32),
778 .align = sizeof(u32),
779 .get = vfp_get,
780 .set = vfp_set
781 },
782#endif /* CONFIG_VFP */
783};
784
785static const struct user_regset_view user_arm_view = {
786 .name = "arm", .e_machine = ELF_ARCH, .ei_osabi = ELF_OSABI,
787 .regsets = arm_regsets, .n = ARRAY_SIZE(arm_regsets)
788};
789
790const struct user_regset_view *task_user_regset_view(struct task_struct *task)
791{
792 return &user_arm_view;
793}
794
Namhyung Kim9b05a692010-10-27 15:33:47 -0700795long arch_ptrace(struct task_struct *child, long request,
796 unsigned long addr, unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int ret;
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700799 unsigned long __user *datap = (unsigned long __user *) data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 case PTRACE_PEEKUSR:
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700803 ret = ptrace_read_user(child, addr, datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 case PTRACE_POKEUSR:
807 ret = ptrace_write_user(child, addr, data);
808 break;
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 case PTRACE_GETREGS:
Dave Martin5be6f622011-04-18 14:48:23 +0100811 ret = copy_regset_to_user(child,
812 &user_arm_view, REGSET_GPR,
813 0, sizeof(struct pt_regs),
814 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 break;
816
817 case PTRACE_SETREGS:
Dave Martin5be6f622011-04-18 14:48:23 +0100818 ret = copy_regset_from_user(child,
819 &user_arm_view, REGSET_GPR,
820 0, sizeof(struct pt_regs),
821 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 break;
823
824 case PTRACE_GETFPREGS:
Dave Martin5be6f622011-04-18 14:48:23 +0100825 ret = copy_regset_to_user(child,
826 &user_arm_view, REGSET_FPR,
827 0, sizeof(union fp_state),
828 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 break;
Dave Martin5be6f622011-04-18 14:48:23 +0100830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 case PTRACE_SETFPREGS:
Dave Martin5be6f622011-04-18 14:48:23 +0100832 ret = copy_regset_from_user(child,
833 &user_arm_view, REGSET_FPR,
834 0, sizeof(union fp_state),
835 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 break;
837
838#ifdef CONFIG_IWMMXT
839 case PTRACE_GETWMMXREGS:
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700840 ret = ptrace_getwmmxregs(child, datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 break;
842
843 case PTRACE_SETWMMXREGS:
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700844 ret = ptrace_setwmmxregs(child, datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 break;
846#endif
847
848 case PTRACE_GET_THREAD_AREA:
Al Viroe7c1b322006-01-12 01:05:56 -0800849 ret = put_user(task_thread_info(child)->tp_value,
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700850 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 break;
852
Nicolas Pitre3f471122006-01-14 19:30:04 +0000853 case PTRACE_SET_SYSCALL:
Russell King5ba6d3f2007-05-06 13:56:26 +0100854 task_thread_info(child)->syscall = data;
Nicolas Pitre3f471122006-01-14 19:30:04 +0000855 ret = 0;
Nicolas Pitre3f471122006-01-14 19:30:04 +0000856 break;
857
Lennert Buytenhek5429b062006-06-27 22:56:19 +0100858#ifdef CONFIG_CRUNCH
859 case PTRACE_GETCRUNCHREGS:
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700860 ret = ptrace_getcrunchregs(child, datap);
Lennert Buytenhek5429b062006-06-27 22:56:19 +0100861 break;
862
863 case PTRACE_SETCRUNCHREGS:
Namhyung Kimb640a0d2010-10-27 15:33:48 -0700864 ret = ptrace_setcrunchregs(child, datap);
Lennert Buytenhek5429b062006-06-27 22:56:19 +0100865 break;
866#endif
867
Catalin Marinas3d1228e2009-02-11 13:12:56 +0100868#ifdef CONFIG_VFP
869 case PTRACE_GETVFPREGS:
Dave Martin5be6f622011-04-18 14:48:23 +0100870 ret = copy_regset_to_user(child,
871 &user_arm_view, REGSET_VFP,
872 0, ARM_VFPREGS_SIZE,
873 datap);
Catalin Marinas3d1228e2009-02-11 13:12:56 +0100874 break;
875
876 case PTRACE_SETVFPREGS:
Dave Martin5be6f622011-04-18 14:48:23 +0100877 ret = copy_regset_from_user(child,
878 &user_arm_view, REGSET_VFP,
879 0, ARM_VFPREGS_SIZE,
880 datap);
Catalin Marinas3d1228e2009-02-11 13:12:56 +0100881 break;
882#endif
883
Will Deacon864232f2010-09-03 10:42:55 +0100884#ifdef CONFIG_HAVE_HW_BREAKPOINT
885 case PTRACE_GETHBPREGS:
Frederic Weisbeckerbf0b8f42011-04-08 17:29:36 +0200886 if (ptrace_get_breakpoints(child) < 0)
887 return -ESRCH;
888
Will Deacon864232f2010-09-03 10:42:55 +0100889 ret = ptrace_gethbpregs(child, addr,
890 (unsigned long __user *)data);
Frederic Weisbeckerbf0b8f42011-04-08 17:29:36 +0200891 ptrace_put_breakpoints(child);
Will Deacon864232f2010-09-03 10:42:55 +0100892 break;
893 case PTRACE_SETHBPREGS:
Frederic Weisbeckerbf0b8f42011-04-08 17:29:36 +0200894 if (ptrace_get_breakpoints(child) < 0)
895 return -ESRCH;
896
Will Deacon864232f2010-09-03 10:42:55 +0100897 ret = ptrace_sethbpregs(child, addr,
898 (unsigned long __user *)data);
Frederic Weisbeckerbf0b8f42011-04-08 17:29:36 +0200899 ptrace_put_breakpoints(child);
Will Deacon864232f2010-09-03 10:42:55 +0100900 break;
901#endif
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 default:
904 ret = ptrace_request(child, request, addr, data);
905 break;
906 }
907
908 return ret;
909}
910
Will Deaconad722542012-07-06 15:50:14 +0100911enum ptrace_syscall_dir {
912 PTRACE_SYSCALL_ENTER = 0,
913 PTRACE_SYSCALL_EXIT,
914};
915
916static int ptrace_syscall_trace(struct pt_regs *regs, int scno,
917 enum ptrace_syscall_dir dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 unsigned long ip;
920
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500921 if (!test_thread_flag(TIF_SYSCALL_TRACE))
Will Deaconad722542012-07-06 15:50:14 +0100922 return scno;
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500923
Russell King5ba6d3f2007-05-06 13:56:26 +0100924 current_thread_info()->syscall = scno;
Nicolas Pitre3f471122006-01-14 19:30:04 +0000925
Will Deacon6a68b6f2012-05-04 17:52:02 +0100926 /*
927 * IP is used to denote syscall entry/exit:
928 * IP = 0 -> entry, =1 -> exit
929 */
930 ip = regs->ARM_ip;
Will Deaconad722542012-07-06 15:50:14 +0100931 regs->ARM_ip = dir;
Will Deacon6a68b6f2012-05-04 17:52:02 +0100932
Will Deaconad722542012-07-06 15:50:14 +0100933 if (dir == PTRACE_SYSCALL_EXIT)
Wade Farnsworth0693bf62012-04-04 16:19:47 +0100934 tracehook_report_syscall_exit(regs, 0);
935 else if (tracehook_report_syscall_entry(regs))
936 current_thread_info()->syscall = -1;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 regs->ARM_ip = ip;
Will Deaconad722542012-07-06 15:50:14 +0100939 return current_thread_info()->syscall;
940}
Nicolas Pitre3f471122006-01-14 19:30:04 +0000941
Will Deaconad722542012-07-06 15:50:14 +0100942asmlinkage int syscall_trace_enter(struct pt_regs *regs, int scno)
943{
Al Viro66285212012-07-19 17:48:50 +0100944 int ret = ptrace_syscall_trace(regs, scno, PTRACE_SYSCALL_ENTER);
Will Deaconad722542012-07-06 15:50:14 +0100945 audit_syscall_entry(AUDIT_ARCH_ARM, scno, regs->ARM_r0, regs->ARM_r1,
946 regs->ARM_r2, regs->ARM_r3);
947 return ret;
948}
949
950asmlinkage int syscall_trace_exit(struct pt_regs *regs, int scno)
951{
952 int ret = ptrace_syscall_trace(regs, scno, PTRACE_SYSCALL_EXIT);
953 audit_syscall_exit(regs);
954 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}