ptrace.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * `ptrace' system call
  3. *
  4. * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
  5. * Copyright (C) 2007-2009 PetaLogix
  6. * Copyright (C) 2004-2007 John Williams <john.williams@petalogix.com>
  7. *
  8. * derived from arch/v850/kernel/ptrace.c
  9. *
  10. * Copyright (C) 2002,03 NEC Electronics Corporation
  11. * Copyright (C) 2002,03 Miles Bader <miles@gnu.org>
  12. *
  13. * Derived from arch/mips/kernel/ptrace.c:
  14. *
  15. * Copyright (C) 1992 Ross Biro
  16. * Copyright (C) Linus Torvalds
  17. * Copyright (C) 1994, 95, 96, 97, 98, 2000 Ralf Baechle
  18. * Copyright (C) 1996 David S. Miller
  19. * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  20. * Copyright (C) 1999 MIPS Technologies, Inc.
  21. *
  22. * This file is subject to the terms and conditions of the GNU General
  23. * Public License. See the file COPYING in the main directory of this
  24. * archive for more details.
  25. */
  26. #include <linux/kernel.h>
  27. #include <linux/mm.h>
  28. #include <linux/sched.h>
  29. #include <linux/smp_lock.h>
  30. #include <linux/ptrace.h>
  31. #include <linux/signal.h>
  32. #include <linux/errno.h>
  33. #include <asm/processor.h>
  34. #include <linux/uaccess.h>
  35. #include <asm/asm-offsets.h>
  36. /* Returns the address where the register at REG_OFFS in P is stashed away. */
  37. static microblaze_reg_t *reg_save_addr(unsigned reg_offs,
  38. struct task_struct *t)
  39. {
  40. struct pt_regs *regs;
  41. /*
  42. * Three basic cases:
  43. *
  44. * (1) A register normally saved before calling the scheduler, is
  45. * available in the kernel entry pt_regs structure at the top
  46. * of the kernel stack. The kernel trap/irq exit path takes
  47. * care to save/restore almost all registers for ptrace'd
  48. * processes.
  49. *
  50. * (2) A call-clobbered register, where the process P entered the
  51. * kernel via [syscall] trap, is not stored anywhere; that's
  52. * OK, because such registers are not expected to be preserved
  53. * when the trap returns anyway (so we don't actually bother to
  54. * test for this case).
  55. *
  56. * (3) A few registers not used at all by the kernel, and so
  57. * normally never saved except by context-switches, are in the
  58. * context switch state.
  59. */
  60. /* Register saved during kernel entry (or not available). */
  61. regs = task_pt_regs(t);
  62. return (microblaze_reg_t *)((char *)regs + reg_offs);
  63. }
  64. long arch_ptrace(struct task_struct *child, long request, long addr, long data)
  65. {
  66. int rval;
  67. unsigned long val = 0;
  68. unsigned long copied;
  69. switch (request) {
  70. case PTRACE_PEEKTEXT: /* read word at location addr. */
  71. case PTRACE_PEEKDATA:
  72. pr_debug("PEEKTEXT/PEEKDATA at %08lX\n", addr);
  73. copied = access_process_vm(child, addr, &val, sizeof(val), 0);
  74. rval = -EIO;
  75. if (copied != sizeof(val))
  76. break;
  77. rval = put_user(val, (unsigned long *)data);
  78. break;
  79. case PTRACE_POKETEXT: /* write the word at location addr. */
  80. case PTRACE_POKEDATA:
  81. pr_debug("POKETEXT/POKEDATA to %08lX\n", addr);
  82. rval = 0;
  83. if (access_process_vm(child, addr, &data, sizeof(data), 1)
  84. == sizeof(data))
  85. break;
  86. rval = -EIO;
  87. break;
  88. /* Read/write the word at location ADDR in the registers. */
  89. case PTRACE_PEEKUSR:
  90. case PTRACE_POKEUSR:
  91. pr_debug("PEEKUSR/POKEUSR : 0x%08lx\n", addr);
  92. rval = 0;
  93. if (addr >= PT_SIZE && request == PTRACE_PEEKUSR) {
  94. /*
  95. * Special requests that don't actually correspond
  96. * to offsets in struct pt_regs.
  97. */
  98. if (addr == PT_TEXT_ADDR) {
  99. val = child->mm->start_code;
  100. } else if (addr == PT_DATA_ADDR) {
  101. val = child->mm->start_data;
  102. } else if (addr == PT_TEXT_LEN) {
  103. val = child->mm->end_code
  104. - child->mm->start_code;
  105. } else {
  106. rval = -EIO;
  107. }
  108. } else if (addr >= 0 && addr < PT_SIZE && (addr & 0x3) == 0) {
  109. microblaze_reg_t *reg_addr = reg_save_addr(addr, child);
  110. if (request == PTRACE_PEEKUSR)
  111. val = *reg_addr;
  112. else
  113. *reg_addr = data;
  114. } else
  115. rval = -EIO;
  116. if (rval == 0 && request == PTRACE_PEEKUSR)
  117. rval = put_user(val, (unsigned long *)data);
  118. break;
  119. /* Continue and stop at next (return from) syscall */
  120. case PTRACE_SYSCALL:
  121. pr_debug("PTRACE_SYSCALL\n");
  122. case PTRACE_SINGLESTEP:
  123. pr_debug("PTRACE_SINGLESTEP\n");
  124. /* Restart after a signal. */
  125. case PTRACE_CONT:
  126. pr_debug("PTRACE_CONT\n");
  127. rval = -EIO;
  128. if (!valid_signal(data))
  129. break;
  130. if (request == PTRACE_SYSCALL)
  131. set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
  132. else
  133. clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
  134. child->exit_code = data;
  135. pr_debug("wakeup_process\n");
  136. wake_up_process(child);
  137. rval = 0;
  138. break;
  139. /*
  140. * make the child exit. Best I can do is send it a sigkill.
  141. * perhaps it should be put in the status that it wants to
  142. * exit.
  143. */
  144. case PTRACE_KILL:
  145. pr_debug("PTRACE_KILL\n");
  146. rval = 0;
  147. if (child->exit_state == EXIT_ZOMBIE) /* already dead */
  148. break;
  149. child->exit_code = SIGKILL;
  150. wake_up_process(child);
  151. break;
  152. case PTRACE_DETACH: /* detach a process that was attached. */
  153. pr_debug("PTRACE_DETACH\n");
  154. rval = ptrace_detach(child, data);
  155. break;
  156. default:
  157. /* rval = ptrace_request(child, request, addr, data); noMMU */
  158. rval = -EIO;
  159. }
  160. return rval;
  161. }
  162. void ptrace_disable(struct task_struct *child)
  163. {
  164. /* nothing to do */
  165. }