ptrace.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/kernel/ptrace.c
  3.  *
  4.  *  Copyright (C) 1994 by Hamish Macdonald
  5.  *  Taken from linux/kernel/ptrace.c and modified for M680x0.
  6.  *  linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
  7.  *
  8.  * This file is subject to the terms and conditions of the GNU General
  9.  * Public License.  See the file COPYING in the main directory of
  10.  * this archive for more details.
  11.  */
  12. #include <linux/kernel.h>
  13. #include <linux/sched.h>
  14. #include <linux/mm.h>
  15. #include <linux/smp.h>
  16. #include <linux/smp_lock.h>
  17. #include <linux/errno.h>
  18. #include <linux/ptrace.h>
  19. #include <linux/user.h>
  20. #include <linux/config.h>
  21. #include <asm/uaccess.h>
  22. #include <asm/page.h>
  23. #include <asm/pgtable.h>
  24. #include <asm/system.h>
  25. #include <asm/processor.h>
  26. /*
  27.  * does not yet catch signals sent when the child dies.
  28.  * in exit.c or in signal.c.
  29.  */
  30. /* determines which bits in the SR the user has access to. */
  31. /* 1 = access 0 = no access */
  32. #define SR_MASK 0x001f
  33. /* sets the trace bits. */
  34. #define TRACE_BITS 0x8000
  35. /* Find the stack offset for a register, relative to thread.esp0. */
  36. #define PT_REG(reg) ((long)&((struct pt_regs *)0)->reg)
  37. #define SW_REG(reg) ((long)&((struct switch_stack *)0)->reg 
  38.  - sizeof(struct switch_stack))
  39. /* Mapping from PT_xxx to the stack offset at which the register is
  40.    saved.  Notice that usp has no stack-slot and needs to be treated
  41.    specially (see get_reg/put_reg below). */
  42. static int regoff[] = {
  43. PT_REG(d1), PT_REG(d2), PT_REG(d3), PT_REG(d4),
  44. PT_REG(d5), SW_REG(d6), SW_REG(d7), PT_REG(a0),
  45. PT_REG(a1), PT_REG(a2), SW_REG(a3), SW_REG(a4),
  46. SW_REG(a5), SW_REG(a6), PT_REG(d0), -1,
  47. PT_REG(orig_d0), PT_REG(sr), PT_REG(pc),
  48. };
  49. /*
  50.  * Get contents of register REGNO in task TASK.
  51.  */
  52. static inline long get_reg(struct task_struct *task, int regno)
  53. {
  54. unsigned long *addr;
  55. if (regno == PT_USP)
  56. addr = &task->thread.usp;
  57. else if (regno < sizeof(regoff)/sizeof(regoff[0]))
  58. addr = (unsigned long *)(task->thread.esp0 + regoff[regno]);
  59. else
  60. return 0;
  61. return *addr;
  62. }
  63. /*
  64.  * Write contents of register REGNO in task TASK.
  65.  */
  66. static inline int put_reg(struct task_struct *task, int regno,
  67.   unsigned long data)
  68. {
  69. unsigned long *addr;
  70. if (regno == PT_USP)
  71. addr = &task->thread.usp;
  72. else if (regno < sizeof(regoff)/sizeof(regoff[0]))
  73. addr = (unsigned long *) (task->thread.esp0 + regoff[regno]);
  74. else
  75. return -1;
  76. *addr = data;
  77. return 0;
  78. }
  79. /*
  80.  * Called by kernel/ptrace.c when detaching..
  81.  *
  82.  * Make sure the single step bit is not set.
  83.  */
  84. void ptrace_disable(struct task_struct *child)
  85. {
  86. unsigned long tmp;
  87. /* make sure the single step bit is not set. */
  88. tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
  89. put_reg(child, PT_SR, tmp);
  90. }
  91. asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
  92. {
  93. struct task_struct *child;
  94. unsigned long flags;
  95. int ret;
  96. lock_kernel();
  97. ret = -EPERM;
  98. if (request == PTRACE_TRACEME) {
  99. /* are we already being traced? */
  100. if (current->ptrace & PT_PTRACED)
  101. goto out;
  102. /* set the ptrace bit in the process flags. */
  103. current->ptrace |= PT_PTRACED;
  104. ret = 0;
  105. goto out;
  106. }
  107. ret = -ESRCH;
  108. read_lock(&tasklist_lock);
  109. child = find_task_by_pid(pid);
  110. if (child)
  111. get_task_struct(child);
  112. read_unlock(&tasklist_lock);
  113. if (!child)
  114. goto out;
  115. ret = -EPERM;
  116. if (pid == 1) /* you may not mess with init */
  117. goto out_tsk;
  118. if (request == PTRACE_ATTACH) {
  119. ret = ptrace_attach(child);
  120. goto out_tsk;
  121. }
  122. ret = -ESRCH;
  123. if (!(child->ptrace & PT_PTRACED))
  124. goto out_tsk;
  125. if (child->state != TASK_STOPPED) {
  126. if (request != PTRACE_KILL)
  127. goto out_tsk;
  128. }
  129. if (child->p_pptr != current)
  130. goto out_tsk;
  131. switch (request) {
  132. /* when I and D space are separate, these will need to be fixed. */
  133. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  134. case PTRACE_PEEKDATA: {
  135. unsigned long tmp;
  136. int copied;
  137. copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
  138. ret = -EIO;
  139. if (copied != sizeof(tmp))
  140. break;
  141. ret = put_user(tmp,(unsigned long *) data);
  142. break;
  143. }
  144. /* read the word at location addr in the USER area. */
  145. case PTRACE_PEEKUSR: {
  146. unsigned long tmp;
  147. ret = -EIO;
  148. if ((addr & 3) || addr < 0 ||
  149.     addr > sizeof(struct user) - 3)
  150. break;
  151. tmp = 0;  /* Default return condition */
  152. addr = addr >> 2; /* temporary hack. */
  153. ret = -EIO;
  154. if (addr < 19) {
  155. tmp = get_reg(child, addr);
  156. if (addr == PT_SR)
  157. tmp >>= 16;
  158. } else if (addr >= 21 && addr < 49) {
  159. tmp = child->thread.fp[addr - 21];
  160. #ifdef CONFIG_M68KFPU_EMU
  161. /* Convert internal fpu reg representation
  162.  * into long double format
  163.  */
  164. if (FPU_IS_EMU && (addr < 45) && !(addr % 3))
  165. tmp = ((tmp & 0xffff0000) << 15) |
  166.       ((tmp & 0x0000ffff) << 16);
  167. #endif
  168. } else
  169. break;
  170. ret = put_user(tmp,(unsigned long *) data);
  171. break;
  172. }
  173.       /* when I and D space are separate, this will have to be fixed. */
  174. case PTRACE_POKETEXT: /* write the word at location addr. */
  175. case PTRACE_POKEDATA:
  176. ret = 0;
  177. if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
  178. break;
  179. ret = -EIO;
  180. break;
  181. case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
  182. ret = -EIO;
  183. if ((addr & 3) || addr < 0 ||
  184.     addr > sizeof(struct user) - 3)
  185. break;
  186. addr = addr >> 2; /* temporary hack. */
  187.     
  188. if (addr == PT_SR) {
  189. data &= SR_MASK;
  190. data <<= 16;
  191. data |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
  192. }
  193. if (addr < 19) {
  194. if (put_reg(child, addr, data))
  195. break;
  196. ret = 0;
  197. break;
  198. }
  199. if (addr >= 21 && addr < 48)
  200. {
  201. #ifdef CONFIG_M68KFPU_EMU
  202. /* Convert long double format
  203.  * into internal fpu reg representation
  204.  */
  205. if (FPU_IS_EMU && (addr < 45) && !(addr % 3)) {
  206. data = (unsigned long)data << 15;
  207. data = (data & 0xffff0000) |
  208.        ((data & 0x0000ffff) >> 1);
  209. }
  210. #endif
  211. child->thread.fp[addr - 21] = data;
  212. ret = 0;
  213. }
  214. break;
  215. case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
  216. case PTRACE_CONT: { /* restart after signal. */
  217. long tmp;
  218. ret = -EIO;
  219. if ((unsigned long) data > _NSIG)
  220. break;
  221. if (request == PTRACE_SYSCALL)
  222. child->ptrace |= PT_TRACESYS;
  223. else
  224. child->ptrace &= ~PT_TRACESYS;
  225. child->exit_code = data;
  226. /* make sure the single step bit is not set. */
  227. tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
  228. put_reg(child, PT_SR, tmp);
  229. wake_up_process(child);
  230. ret = 0;
  231. break;
  232. }
  233. /*
  234.  * make the child exit.  Best I can do is send it a sigkill. 
  235.  * perhaps it should be put in the status that it wants to 
  236.  * exit.
  237.  */
  238. case PTRACE_KILL: {
  239. long tmp;
  240. ret = 0;
  241. if (child->state == TASK_ZOMBIE) /* already dead */
  242. break;
  243. child->exit_code = SIGKILL;
  244. /* make sure the single step bit is not set. */
  245. tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
  246. put_reg(child, PT_SR, tmp);
  247. wake_up_process(child);
  248. break;
  249. }
  250. case PTRACE_SINGLESTEP: {  /* set the trap flag. */
  251. long tmp;
  252. ret = -EIO;
  253. if ((unsigned long) data > _NSIG)
  254. break;
  255. child->ptrace &= ~PT_TRACESYS;
  256. tmp = get_reg(child, PT_SR) | (TRACE_BITS << 16);
  257. put_reg(child, PT_SR, tmp);
  258. child->exit_code = data;
  259. /* give it a chance to run. */
  260. wake_up_process(child);
  261. ret = 0;
  262. break;
  263. }
  264. case PTRACE_DETACH: /* detach a process that was attached. */
  265. ret = ptrace_detach(child, data);
  266. break;
  267. case PTRACE_GETREGS: { /* Get all gp regs from the child. */
  268.    int i;
  269. unsigned long tmp;
  270. for (i = 0; i < 19; i++) {
  271.     tmp = get_reg(child, i);
  272.     if (i == PT_SR)
  273. tmp >>= 16;
  274.     if (put_user(tmp, (unsigned long *) data)) {
  275. ret = -EFAULT;
  276. break;
  277.     }
  278.     data += sizeof(long);
  279. }
  280. ret = 0;
  281. break;
  282. }
  283. case PTRACE_SETREGS: { /* Set all gp regs in the child. */
  284. int i;
  285. unsigned long tmp;
  286. for (i = 0; i < 19; i++) {
  287.     if (get_user(tmp, (unsigned long *) data)) {
  288. ret = -EFAULT;
  289. break;
  290.     }
  291.     if (i == PT_SR) {
  292. tmp &= SR_MASK;
  293. tmp <<= 16;
  294. tmp |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
  295.     }
  296.     put_reg(child, i, tmp);
  297.     data += sizeof(long);
  298. }
  299. ret = 0;
  300. break;
  301. }
  302. case PTRACE_GETFPREGS: { /* Get the child FPU state. */
  303. ret = 0;
  304. if (copy_to_user((void *)data, &child->thread.fp,
  305.  sizeof(struct user_m68kfp_struct)))
  306. ret = -EFAULT;
  307. break;
  308. }
  309. case PTRACE_SETFPREGS: { /* Set the child FPU state. */
  310. ret = 0;
  311. if (copy_from_user(&child->thread.fp, (void *)data,
  312.    sizeof(struct user_m68kfp_struct)))
  313. ret = -EFAULT;
  314. break;
  315. }
  316. default:
  317. ret = -EIO;
  318. break;
  319. }
  320. out_tsk:
  321. free_task_struct(child);
  322. out:
  323. unlock_kernel();
  324. return ret;
  325. }
  326. asmlinkage void syscall_trace(void)
  327. {
  328. if ((current->ptrace & (PT_PTRACED|PT_TRACESYS))
  329. != (PT_PTRACED|PT_TRACESYS))
  330. return;
  331. current->exit_code = SIGTRAP;
  332. current->state = TASK_STOPPED;
  333. notify_parent(current, SIGCHLD);
  334. schedule();
  335. /*
  336.  * this isn't the same as continuing with a signal, but it will do
  337.  * for normal use.  strace only continues with a signal if the
  338.  * stopping signal is not SIGTRAP.  -brl
  339.  */
  340. if (current->exit_code) {
  341. send_sig(current->exit_code, current, 1);
  342. current->exit_code = 0;
  343. }
  344. }