ptrace.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

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. int ret;
  95. lock_kernel();
  96. ret = -EPERM;
  97. if (request == PTRACE_TRACEME) {
  98. /* are we already being traced? */
  99. if (current->ptrace & PT_PTRACED)
  100. goto out;
  101. /* set the ptrace bit in the process flags. */
  102. current->ptrace |= PT_PTRACED;
  103. ret = 0;
  104. goto out;
  105. }
  106. ret = -ESRCH;
  107. read_lock(&tasklist_lock);
  108. child = find_task_by_pid(pid);
  109. if (child)
  110. get_task_struct(child);
  111. read_unlock(&tasklist_lock);
  112. if (!child)
  113. goto out;
  114. ret = -EPERM;
  115. if (pid == 1) /* you may not mess with init */
  116. goto out_tsk;
  117. if (request == PTRACE_ATTACH) {
  118. ret = ptrace_attach(child);
  119. goto out_tsk;
  120. }
  121. ret = -ESRCH;
  122. if (!(child->ptrace & PT_PTRACED))
  123. goto out_tsk;
  124. if (child->state != TASK_STOPPED) {
  125. if (request != PTRACE_KILL)
  126. goto out_tsk;
  127. }
  128. if (child->p_pptr != current)
  129. goto out_tsk;
  130. switch (request) {
  131. /* when I and D space are separate, these will need to be fixed. */
  132. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  133. case PTRACE_PEEKDATA: {
  134. unsigned long tmp;
  135. int copied;
  136. copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
  137. ret = -EIO;
  138. if (copied != sizeof(tmp))
  139. break;
  140. ret = put_user(tmp,(unsigned long *) data);
  141. break;
  142. }
  143. /* read the word at location addr in the USER area. */
  144. case PTRACE_PEEKUSR: {
  145. unsigned long tmp;
  146. ret = -EIO;
  147. if ((addr & 3) || addr < 0 ||
  148.     addr > sizeof(struct user) - 3)
  149. break;
  150. tmp = 0;  /* Default return condition */
  151. addr = addr >> 2; /* temporary hack. */
  152. ret = -EIO;
  153. if (addr < 19) {
  154. tmp = get_reg(child, addr);
  155. if (addr == PT_SR)
  156. tmp >>= 16;
  157. } else if (addr >= 21 && addr < 49) {
  158. tmp = child->thread.fp[addr - 21];
  159. #ifdef CONFIG_M68KFPU_EMU
  160. /* Convert internal fpu reg representation
  161.  * into long double format
  162.  */
  163. if (FPU_IS_EMU && (addr < 45) && !(addr % 3))
  164. tmp = ((tmp & 0xffff0000) << 15) |
  165.       ((tmp & 0x0000ffff) << 16);
  166. #endif
  167. } else
  168. break;
  169. ret = put_user(tmp,(unsigned long *) data);
  170. break;
  171. }
  172.       /* when I and D space are separate, this will have to be fixed. */
  173. case PTRACE_POKETEXT: /* write the word at location addr. */
  174. case PTRACE_POKEDATA:
  175. ret = 0;
  176. if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
  177. break;
  178. ret = -EIO;
  179. break;
  180. case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
  181. ret = -EIO;
  182. if ((addr & 3) || addr < 0 ||
  183.     addr > sizeof(struct user) - 3)
  184. break;
  185. addr = addr >> 2; /* temporary hack. */
  186.     
  187. if (addr == PT_SR) {
  188. data &= SR_MASK;
  189. data <<= 16;
  190. data |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
  191. }
  192. if (addr < 19) {
  193. if (put_reg(child, addr, data))
  194. break;
  195. ret = 0;
  196. break;
  197. }
  198. if (addr >= 21 && addr < 48)
  199. {
  200. #ifdef CONFIG_M68KFPU_EMU
  201. /* Convert long double format
  202.  * into internal fpu reg representation
  203.  */
  204. if (FPU_IS_EMU && (addr < 45) && !(addr % 3)) {
  205. data = (unsigned long)data << 15;
  206. data = (data & 0xffff0000) |
  207.        ((data & 0x0000ffff) >> 1);
  208. }
  209. #endif
  210. child->thread.fp[addr - 21] = data;
  211. ret = 0;
  212. }
  213. break;
  214. case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
  215. case PTRACE_CONT: { /* restart after signal. */
  216. long tmp;
  217. ret = -EIO;
  218. if ((unsigned long) data > _NSIG)
  219. break;
  220. if (request == PTRACE_SYSCALL)
  221. child->ptrace |= PT_TRACESYS;
  222. else
  223. child->ptrace &= ~PT_TRACESYS;
  224. child->exit_code = data;
  225. /* make sure the single step bit is not set. */
  226. tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
  227. put_reg(child, PT_SR, tmp);
  228. wake_up_process(child);
  229. ret = 0;
  230. break;
  231. }
  232. /*
  233.  * make the child exit.  Best I can do is send it a sigkill. 
  234.  * perhaps it should be put in the status that it wants to 
  235.  * exit.
  236.  */
  237. case PTRACE_KILL: {
  238. long tmp;
  239. ret = 0;
  240. if (child->state == TASK_ZOMBIE) /* already dead */
  241. break;
  242. child->exit_code = SIGKILL;
  243. /* make sure the single step bit is not set. */
  244. tmp = get_reg(child, PT_SR) & ~(TRACE_BITS << 16);
  245. put_reg(child, PT_SR, tmp);
  246. wake_up_process(child);
  247. break;
  248. }
  249. case PTRACE_SINGLESTEP: {  /* set the trap flag. */
  250. long tmp;
  251. ret = -EIO;
  252. if ((unsigned long) data > _NSIG)
  253. break;
  254. child->ptrace &= ~PT_TRACESYS;
  255. tmp = get_reg(child, PT_SR) | (TRACE_BITS << 16);
  256. put_reg(child, PT_SR, tmp);
  257. child->exit_code = data;
  258. /* give it a chance to run. */
  259. wake_up_process(child);
  260. ret = 0;
  261. break;
  262. }
  263. case PTRACE_DETACH: /* detach a process that was attached. */
  264. ret = ptrace_detach(child, data);
  265. break;
  266. case PTRACE_GETREGS: { /* Get all gp regs from the child. */
  267.    int i;
  268. unsigned long tmp;
  269. for (i = 0; i < 19; i++) {
  270.     tmp = get_reg(child, i);
  271.     if (i == PT_SR)
  272. tmp >>= 16;
  273.     if (put_user(tmp, (unsigned long *) data)) {
  274. ret = -EFAULT;
  275. break;
  276.     }
  277.     data += sizeof(long);
  278. }
  279. ret = 0;
  280. break;
  281. }
  282. case PTRACE_SETREGS: { /* Set all gp regs in the child. */
  283. int i;
  284. unsigned long tmp;
  285. for (i = 0; i < 19; i++) {
  286.     if (get_user(tmp, (unsigned long *) data)) {
  287. ret = -EFAULT;
  288. break;
  289.     }
  290.     if (i == PT_SR) {
  291. tmp &= SR_MASK;
  292. tmp <<= 16;
  293. tmp |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
  294.     }
  295.     put_reg(child, i, tmp);
  296.     data += sizeof(long);
  297. }
  298. ret = 0;
  299. break;
  300. }
  301. case PTRACE_GETFPREGS: { /* Get the child FPU state. */
  302. ret = 0;
  303. if (copy_to_user((void *)data, &child->thread.fp,
  304.  sizeof(struct user_m68kfp_struct)))
  305. ret = -EFAULT;
  306. break;
  307. }
  308. case PTRACE_SETFPREGS: { /* Set the child FPU state. */
  309. ret = 0;
  310. if (copy_from_user(&child->thread.fp, (void *)data,
  311.    sizeof(struct user_m68kfp_struct)))
  312. ret = -EFAULT;
  313. break;
  314. }
  315. default:
  316. ret = -EIO;
  317. break;
  318. }
  319. out_tsk:
  320. free_task_struct(child);
  321. out:
  322. unlock_kernel();
  323. return ret;
  324. }
  325. asmlinkage void syscall_trace(void)
  326. {
  327. if ((current->ptrace & (PT_PTRACED|PT_TRACESYS))
  328. != (PT_PTRACED|PT_TRACESYS))
  329. return;
  330. current->exit_code = SIGTRAP;
  331. current->state = TASK_STOPPED;
  332. notify_parent(current, SIGCHLD);
  333. schedule();
  334. /*
  335.  * this isn't the same as continuing with a signal, but it will do
  336.  * for normal use.  strace only continues with a signal if the
  337.  * stopping signal is not SIGTRAP.  -brl
  338.  */
  339. if (current->exit_code) {
  340. send_sig(current->exit_code, current, 1);
  341. current->exit_code = 0;
  342. }
  343. }