1 /* ptrace.c: Sparc process tracing support.
5 * Based upon code written by Ross Biro, Linus Torvalds, Bob Manson,
8 * Added Linux support -miguel (weird, eh?, the original code was meant
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
15 #include <linux/errno.h>
16 #include <linux/ptrace.h>
17 #include <linux/user.h>
18 #include <linux/smp.h>
19 #include <linux/security.h>
20 #include <linux/signal.h>
21 #include <linux/regset.h>
22 #include <linux/elf.h>
23 #include <linux/tracehook.h>
25 #include <asm/pgtable.h>
26 #include <asm/uaccess.h>
27 #include <asm/cacheflush.h>
31 /* #define ALLOW_INIT_TRACING */
34 * Called by kernel/ptrace.c when detaching..
36 * Make sure single step bits etc are not set.
38 void ptrace_disable(struct task_struct *child)
48 static int genregs32_get(struct task_struct *target,
49 const struct user_regset *regset,
50 unsigned int pos, unsigned int count,
51 void *kbuf, void __user *ubuf)
53 const struct pt_regs *regs = target->thread.kregs;
54 unsigned long __user *reg_window;
55 unsigned long *k = kbuf;
56 unsigned long __user *u = ubuf;
59 if (target == current)
66 for (; count > 0 && pos < 16; count--)
67 *k++ = regs->u_regs[pos++];
69 reg_window = (unsigned long __user *) regs->u_regs[UREG_I6];
71 for (; count > 0 && pos < 32; count--) {
72 if (get_user(*k++, ®_window[pos++]))
76 for (; count > 0 && pos < 16; count--) {
77 if (put_user(regs->u_regs[pos++], u++))
81 reg_window = (unsigned long __user *) regs->u_regs[UREG_I6];
83 for (; count > 0 && pos < 32; count--) {
84 if (get_user(reg, ®_window[pos++]) ||
113 else if (put_user(reg, u++))
120 count *= sizeof(reg);
122 return user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
123 38 * sizeof(reg), -1);
126 static int genregs32_set(struct task_struct *target,
127 const struct user_regset *regset,
128 unsigned int pos, unsigned int count,
129 const void *kbuf, const void __user *ubuf)
131 struct pt_regs *regs = target->thread.kregs;
132 unsigned long __user *reg_window;
133 const unsigned long *k = kbuf;
134 const unsigned long __user *u = ubuf;
137 if (target == current)
138 flush_user_windows();
141 count /= sizeof(reg);
144 for (; count > 0 && pos < 16; count--)
145 regs->u_regs[pos++] = *k++;
147 reg_window = (unsigned long __user *) regs->u_regs[UREG_I6];
149 for (; count > 0 && pos < 32; count--) {
150 if (put_user(*k++, ®_window[pos++]))
154 for (; count > 0 && pos < 16; count--) {
155 if (get_user(reg, u++))
157 regs->u_regs[pos++] = reg;
160 reg_window = (unsigned long __user *) regs->u_regs[UREG_I6];
162 for (; count > 0 && pos < 32; count--) {
163 if (get_user(reg, u++) ||
164 put_user(reg, ®_window[pos++]))
173 else if (get_user(reg, u++))
179 psr &= ~(PSR_ICC | PSR_SYSCALL);
180 psr |= (reg & (PSR_ICC | PSR_SYSCALL));
204 count *= sizeof(reg);
206 return user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
207 38 * sizeof(reg), -1);
210 static int fpregs32_get(struct task_struct *target,
211 const struct user_regset *regset,
212 unsigned int pos, unsigned int count,
213 void *kbuf, void __user *ubuf)
215 const unsigned long *fpregs = target->thread.float_regs;
219 if (target == current)
220 save_and_clear_fpu();
223 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
225 0, 32 * sizeof(u32));
228 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
232 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
240 val = (1 << 8) | (8 << 16);
241 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
248 ret = user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
249 35 * sizeof(u32), -1);
254 static int fpregs32_set(struct task_struct *target,
255 const struct user_regset *regset,
256 unsigned int pos, unsigned int count,
257 const void *kbuf, const void __user *ubuf)
259 unsigned long *fpregs = target->thread.float_regs;
263 if (target == current)
264 save_and_clear_fpu();
266 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
268 0, 32 * sizeof(u32));
270 user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
273 if (!ret && count > 0) {
274 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
281 ret = user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
282 34 * sizeof(u32), -1);
286 static const struct user_regset sparc32_regsets[] = {
292 * PSR, PC, nPC, Y, WIM, TBR
295 .core_note_type = NT_PRSTATUS,
297 .size = sizeof(u32), .align = sizeof(u32),
298 .get = genregs32_get, .set = genregs32_set
304 * FPU QUEUE COUNT (8-bit char)
305 * FPU QUEUE ENTRYSIZE (8-bit char)
306 * FPU ENABLED (8-bit char)
308 * FPU QUEUE (64 32-bit ints)
311 .core_note_type = NT_PRFPREG,
313 .size = sizeof(u32), .align = sizeof(u32),
314 .get = fpregs32_get, .set = fpregs32_set
318 static const struct user_regset_view user_sparc32_view = {
319 .name = "sparc", .e_machine = EM_SPARC,
320 .regsets = sparc32_regsets, .n = ARRAY_SIZE(sparc32_regsets)
323 const struct user_regset_view *task_user_regset_view(struct task_struct *task)
325 return &user_sparc32_view;
329 unsigned long regs[32];
335 unsigned long *insnaddr;
340 long arch_ptrace(struct task_struct *child, long request,
341 unsigned long addr, unsigned long data)
343 unsigned long addr2 = current->thread.kregs->u_regs[UREG_I4];
345 const struct user_regset_view *view;
346 struct pt_regs __user *pregs;
347 struct fps __user *fps;
350 view = task_user_regset_view(current);
351 addr2p = (void __user *) addr2;
352 pregs = (struct pt_regs __user *) addr;
353 fps = (struct fps __user *) addr;
356 case PTRACE_GETREGS: {
357 ret = copy_regset_to_user(child, view, REGSET_GENERAL,
362 copy_regset_to_user(child, view, REGSET_GENERAL,
369 case PTRACE_SETREGS: {
370 ret = copy_regset_from_user(child, view, REGSET_GENERAL,
375 copy_regset_from_user(child, view, REGSET_GENERAL,
382 case PTRACE_GETFPREGS: {
383 ret = copy_regset_to_user(child, view, REGSET_FP,
388 ret = copy_regset_to_user(child, view, REGSET_FP,
394 if (__put_user(0, &fps->fpqd) ||
395 __put_user(0, &fps->flags) ||
396 __put_user(0, &fps->extra) ||
397 clear_user(fps->fpq, sizeof(fps->fpq)))
403 case PTRACE_SETFPREGS: {
404 ret = copy_regset_from_user(child, view, REGSET_FP,
409 ret = copy_regset_from_user(child, view, REGSET_FP,
416 case PTRACE_READTEXT:
417 case PTRACE_READDATA:
418 ret = ptrace_readdata(child, addr, addr2p, data);
426 case PTRACE_WRITETEXT:
427 case PTRACE_WRITEDATA:
428 ret = ptrace_writedata(child, addr2p, addr, data);
437 if (request == PTRACE_SPARC_DETACH)
438 request = PTRACE_DETACH;
439 ret = ptrace_request(child, request, addr, data);
446 asmlinkage int syscall_trace(struct pt_regs *regs, int syscall_exit_p)
450 if (test_thread_flag(TIF_SYSCALL_TRACE)) {
452 tracehook_report_syscall_exit(regs, 0);
454 ret = tracehook_report_syscall_entry(regs);