2 * arch/sh/kernel/ptrace_64.c
4 * Copyright (C) 2000, 2001 Paolo Alberelli
5 * Copyright (C) 2003 - 2007 Paul Mundt
7 * Started from SH3/4 version:
8 * SuperH version: Copyright (C) 1999, 2000 Kaz Kojima & Niibe Yutaka
10 * Original x86 implementation:
11 * By Ross Biro 1/23/92
12 * edited by Linus Torvalds
14 * This file is subject to the terms and conditions of the GNU General Public
15 * License. See the file "COPYING" in the main directory of this archive
18 #include <linux/kernel.h>
19 #include <linux/rwsem.h>
20 #include <linux/sched.h>
22 #include <linux/smp.h>
23 #include <linux/smp_lock.h>
24 #include <linux/errno.h>
25 #include <linux/ptrace.h>
26 #include <linux/user.h>
27 #include <linux/signal.h>
28 #include <linux/syscalls.h>
29 #include <linux/audit.h>
30 #include <linux/seccomp.h>
31 #include <linux/tracehook.h>
33 #include <asm/uaccess.h>
34 #include <asm/pgtable.h>
35 #include <asm/system.h>
36 #include <asm/processor.h>
37 #include <asm/mmu_context.h>
40 /* This mask defines the bits of the SR which the user is not allowed to
41 change, which are everything except S, Q, M, PR, SZ, FR. */
42 #define SR_MASK (0xffff8cfd)
45 * does not yet catch signals sent when the child dies.
46 * in exit.c or in signal.c.
50 * This routine will get a word from the user area in the process kernel stack.
52 static inline int get_stack_long(struct task_struct *task, int offset)
56 stack = (unsigned char *)(task->thread.uregs);
58 return (*((int *)stack));
61 static inline unsigned long
62 get_fpu_long(struct task_struct *task, unsigned long addr)
66 regs = (struct pt_regs*)((unsigned char *)task + THREAD_SIZE) - 1;
68 if (!tsk_used_math(task)) {
69 if (addr == offsetof(struct user_fpu_struct, fpscr)) {
72 tmp = 0xffffffffUL; /* matches initial value in fpu.c */
77 if (last_task_used_math == task) {
81 last_task_used_math = 0;
85 tmp = ((long *)&task->thread.fpu)[addr / sizeof(unsigned long)];
90 * This routine will put a word into the user area in the process kernel stack.
92 static inline int put_stack_long(struct task_struct *task, int offset,
97 stack = (unsigned char *)(task->thread.uregs);
99 *(unsigned long *) stack = data;
104 put_fpu_long(struct task_struct *task, unsigned long addr, unsigned long data)
106 struct pt_regs *regs;
108 regs = (struct pt_regs*)((unsigned char *)task + THREAD_SIZE) - 1;
110 if (!tsk_used_math(task)) {
111 fpinit(&task->thread.fpu.hard);
112 set_stopped_child_used_math(task);
113 } else if (last_task_used_math == task) {
115 save_fpu(task, regs);
117 last_task_used_math = 0;
121 ((long *)&task->thread.fpu)[addr / sizeof(unsigned long)] = data;
125 void user_enable_single_step(struct task_struct *child)
127 struct pt_regs *regs = child->thread.uregs;
129 regs->sr |= SR_SSTEP; /* auto-resetting upon exception */
132 void user_disable_single_step(struct task_struct *child)
134 regs->sr &= ~SR_SSTEP;
137 long arch_ptrace(struct task_struct *child, long request, long addr, long data)
142 /* read the word at location addr in the USER area. */
143 case PTRACE_PEEKUSR: {
147 if ((addr & 3) || addr < 0)
150 if (addr < sizeof(struct pt_regs))
151 tmp = get_stack_long(child, addr);
152 else if ((addr >= offsetof(struct user, fpu)) &&
153 (addr < offsetof(struct user, u_fpvalid))) {
154 tmp = get_fpu_long(child, addr - offsetof(struct user, fpu));
155 } else if (addr == offsetof(struct user, u_fpvalid)) {
156 tmp = !!tsk_used_math(child);
160 ret = put_user(tmp, (unsigned long *)data);
165 /* write the word at location addr in the USER area. We must
166 disallow any changes to certain SR bits or u_fpvalid, since
167 this could crash the kernel or result in a security
170 if ((addr & 3) || addr < 0)
173 if (addr < sizeof(struct pt_regs)) {
174 /* Ignore change of top 32 bits of SR */
175 if (addr == offsetof (struct pt_regs, sr)+4)
180 /* If lower 32 bits of SR, ignore non-user bits */
181 if (addr == offsetof (struct pt_regs, sr))
183 long cursr = get_stack_long(child, addr);
185 data |= (cursr & SR_MASK);
187 ret = put_stack_long(child, addr, data);
189 else if ((addr >= offsetof(struct user, fpu)) &&
190 (addr < offsetof(struct user, u_fpvalid))) {
191 ret = put_fpu_long(child, addr - offsetof(struct user, fpu), data);
196 ret = ptrace_request(child, request, addr, data);
202 asmlinkage int sh64_ptrace(long request, long pid, long addr, long data)
204 #define WPC_DBRMODE 0x0d104008
205 static int first_call = 1;
209 /* Set WPC.DBRMODE to 0. This makes all debug events get
210 * delivered through RESVEC, i.e. into the handlers in entry.S.
211 * (If the kernel was downloaded using a remote gdb, WPC.DBRMODE
212 * would normally be left set to 1, which makes debug events get
213 * delivered through DBRVEC, i.e. into the remote gdb's
214 * handlers. This prevents ptrace getting them, and confuses
215 * the remote gdb.) */
216 printk("DBRMODE set to 0 to permit native debugging\n");
217 poke_real_address_q(WPC_DBRMODE, 0);
222 return sys_ptrace(request, pid, addr, data);
225 static inline int audit_arch(void)
230 arch |= __AUDIT_ARCH_64BIT;
232 #ifdef CONFIG_CPU_LITTLE_ENDIAN
233 arch |= __AUDIT_ARCH_LE;
239 asmlinkage long long do_syscall_trace_enter(struct pt_regs *regs)
243 secure_computing(regs->regs[9]);
245 if (test_thread_flag(TIF_SYSCALL_TRACE) &&
246 tracehook_report_syscall_entry(regs))
248 * Tracing decided this syscall should not happen.
249 * We'll return a bogus call number to get an ENOSYS
250 * error, but leave the original number in regs->regs[0].
254 if (unlikely(current->audit_context))
255 audit_syscall_entry(audit_arch(), regs->regs[1],
256 regs->regs[2], regs->regs[3],
257 regs->regs[4], regs->regs[5]);
259 return ret ?: regs->regs[9];
262 asmlinkage void do_syscall_trace_leave(struct pt_regs *regs)
264 if (unlikely(current->audit_context))
265 audit_syscall_exit(AUDITSC_RESULT(regs->regs[9]),
268 if (test_thread_flag(TIF_SYSCALL_TRACE))
269 tracehook_report_syscall_exit(regs, 0);
272 /* Called with interrupts disabled */
273 asmlinkage void do_single_step(unsigned long long vec, struct pt_regs *regs)
275 /* This is called after a single step exception (DEBUGSS).
276 There is no need to change the PC, as it is a post-execution
277 exception, as entry.S does not do anything to the PC for DEBUGSS.
278 We need to clear the Single Step setting in SR to avoid
279 continually stepping. */
281 regs->sr &= ~SR_SSTEP;
282 force_sig(SIGTRAP, current);
285 /* Called with interrupts disabled */
286 asmlinkage void do_software_break_point(unsigned long long vec,
287 struct pt_regs *regs)
289 /* We need to forward step the PC, to counteract the backstep done
292 force_sig(SIGTRAP, current);
297 * Called by kernel/ptrace.c when detaching..
299 * Make sure single step bits etc are not set.
301 void ptrace_disable(struct task_struct *child)
303 user_disable_single_step(child);