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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1992 Ross Biro
  7.  * Copyright (C) Linus Torvalds
  8.  * Copyright (C) 1994, 95, 96, 97, 98, 2000 Ralf Baechle
  9.  * Copyright (C) 1996 David S. Miller
  10.  * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  11.  * Copyright (C) 1999 MIPS Technologies, Inc.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/kernel.h>
  15. #include <linux/sched.h>
  16. #include <linux/mm.h>
  17. #include <linux/errno.h>
  18. #include <linux/ptrace.h>
  19. #include <linux/smp.h>
  20. #include <linux/smp_lock.h>
  21. #include <linux/user.h>
  22. #include <asm/fp.h>
  23. #include <asm/mipsregs.h>
  24. #include <asm/pgtable.h>
  25. #include <asm/page.h>
  26. #include <asm/system.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/bootinfo.h>
  29. #include <asm/cpu.h>
  30. /*
  31.  * Called by kernel/ptrace.c when detaching..
  32.  *
  33.  * Make sure single step bits etc are not set.
  34.  */
  35. void ptrace_disable(struct task_struct *child)
  36. {
  37. /* Nothing to do.. */
  38. }
  39. asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
  40. {
  41. struct task_struct *child;
  42. int res;
  43. extern void save_fp(struct task_struct *);
  44. lock_kernel();
  45. #if 0
  46. printk("ptrace(r=%d,pid=%d,addr=%08lx,data=%08lx)n",
  47.        (int) request, (int) pid, (unsigned long) addr,
  48.        (unsigned long) data);
  49. #endif
  50. if (request == PTRACE_TRACEME) {
  51. /* are we already being traced? */
  52. if (current->ptrace & PT_PTRACED) {
  53. res = -EPERM;
  54. goto out;
  55. }
  56. /* set the ptrace bit in the process flags. */
  57. current->ptrace |= PT_PTRACED;
  58. res = 0;
  59. goto out;
  60. }
  61. res = -ESRCH;
  62. read_lock(&tasklist_lock);
  63. child = find_task_by_pid(pid);
  64. if (child)
  65. get_task_struct(child);
  66. read_unlock(&tasklist_lock);
  67. if (!child)
  68. goto out;
  69. res = -EPERM;
  70. if (pid == 1) /* you may not mess with init */
  71. goto out;
  72. if (request == PTRACE_ATTACH) {
  73. res = ptrace_attach(child);
  74. goto out_tsk;
  75. }
  76. res = -ESRCH;
  77. if (!(child->ptrace & PT_PTRACED))
  78. goto out_tsk;
  79. if (child->state != TASK_STOPPED) {
  80. if (request != PTRACE_KILL)
  81. goto out_tsk;
  82. }
  83. if (child->p_pptr != current)
  84. goto out_tsk;
  85. switch (request) {
  86. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  87. case PTRACE_PEEKDATA: {
  88. unsigned long tmp;
  89. int copied;
  90. copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
  91. res = -EIO;
  92. if (copied != sizeof(tmp))
  93. break;
  94. res = put_user(tmp,(unsigned long *) data);
  95. goto out;
  96. }
  97. /* Read the word at location addr in the USER area.  */
  98. case PTRACE_PEEKUSR: {
  99. struct pt_regs *regs;
  100. unsigned long tmp;
  101. regs = (struct pt_regs *) ((unsigned long) child +
  102.        KERNEL_STACK_SIZE - 32 - sizeof(struct pt_regs));
  103. tmp = 0;  /* Default return value. */
  104. switch(addr) {
  105. case 0 ... 31:
  106. tmp = regs->regs[addr];
  107. break;
  108. case FPR_BASE ... FPR_BASE + 31:
  109. if (child->used_math) {
  110.         unsigned long long *fregs
  111. = (unsigned long long *)
  112.     &child->thread.fpu.hard.fp_regs[0];
  113.   if(!(mips_cpu.options & MIPS_CPU_FPU)) {
  114. fregs = (unsigned long long *)
  115. child->thread.fpu.soft.regs;
  116. } else 
  117. if (last_task_used_math == child) {
  118. enable_cp1();
  119. save_fp(child);
  120. disable_cp1();
  121. last_task_used_math = NULL;
  122. regs->cp0_status &= ~ST0_CU1;
  123. }
  124. /*
  125.  * The odd registers are actually the high
  126.  * order bits of the values stored in the even
  127.  * registers - unless we're using r2k_switch.S.
  128.  */
  129. #ifdef CONFIG_CPU_R3000
  130. if (mips_cpu.options & MIPS_CPU_FPU)
  131. tmp = *(unsigned long *)(fregs + addr);
  132. else
  133. #endif
  134. if (addr & 1)
  135. tmp = (unsigned long) (fregs[((addr & ~1) - 32)] >> 32);
  136. else
  137. tmp = (unsigned long) (fregs[(addr - 32)] & 0xffffffff);
  138. } else {
  139. tmp = -1; /* FP not yet used  */
  140. }
  141. break;
  142. case PC:
  143. tmp = regs->cp0_epc;
  144. break;
  145. case CAUSE:
  146. tmp = regs->cp0_cause;
  147. break;
  148. case BADVADDR:
  149. tmp = regs->cp0_badvaddr;
  150. break;
  151. case MMHI:
  152. tmp = regs->hi;
  153. break;
  154. case MMLO:
  155. tmp = regs->lo;
  156. break;
  157. case FPC_CSR:
  158. if (!(mips_cpu.options & MIPS_CPU_FPU))
  159. tmp = child->thread.fpu.soft.sr;
  160. else
  161. tmp = child->thread.fpu.hard.control;
  162. break;
  163. case FPC_EIR: { /* implementation / version register */
  164. unsigned int flags;
  165. __save_flags(flags);
  166. enable_cp1();
  167. __asm__ __volatile__("cfc1t%0,$0": "=r" (tmp));
  168. __restore_flags(flags);
  169. break;
  170. }
  171. default:
  172. tmp = 0;
  173. res = -EIO;
  174. goto out;
  175. }
  176. res = put_user(tmp, (unsigned long *) data);
  177. goto out;
  178. }
  179. case PTRACE_POKETEXT: /* write the word at location addr. */
  180. case PTRACE_POKEDATA:
  181. res = 0;
  182. if (access_process_vm(child, addr, &data, sizeof(data), 1)
  183.     == sizeof(data))
  184. break;
  185. res = -EIO;
  186. goto out;
  187. case PTRACE_POKEUSR: {
  188. struct pt_regs *regs;
  189. res = 0;
  190. regs = (struct pt_regs *) ((unsigned long) child +
  191.        KERNEL_STACK_SIZE - 32 - sizeof(struct pt_regs));
  192. switch (addr) {
  193. case 0 ... 31:
  194. regs->regs[addr] = data;
  195. break;
  196. case FPR_BASE ... FPR_BASE + 31: {
  197. unsigned long long *fregs;
  198. fregs = (unsigned long long *)&child->thread.fpu.hard.fp_regs[0];
  199. if (child->used_math) {
  200. if (last_task_used_math == child) {
  201. if(!(mips_cpu.options & MIPS_CPU_FPU)) {
  202. fregs = (unsigned long long *)
  203. child->thread.fpu.soft.regs;
  204. } else {
  205. enable_cp1();
  206. save_fp(child);
  207. disable_cp1();
  208. last_task_used_math = NULL;
  209. regs->cp0_status &= ~ST0_CU1;
  210. }
  211. }
  212. } else {
  213. /* FP not yet used  */
  214. memset(&child->thread.fpu.hard, ~0,
  215.        sizeof(child->thread.fpu.hard));
  216. child->thread.fpu.hard.control = 0;
  217. }
  218. /*
  219.  * The odd registers are actually the high order bits
  220.  * of the values stored in the even registers - unless
  221.  * we're using r2k_switch.S.
  222.  */
  223. #ifdef CONFIG_CPU_R3000
  224. if (mips_cpu.options & MIPS_CPU_FPU)
  225. *(unsigned long *)(fregs + addr) = data;
  226. else
  227. #endif
  228. if (addr & 1) {
  229. fregs[(addr & ~1) - FPR_BASE] &= 0xffffffff;
  230. fregs[(addr & ~1) - FPR_BASE] |= ((unsigned long long) data) << 32;
  231. } else {
  232. fregs[addr - FPR_BASE] &= ~0xffffffffLL;
  233. fregs[addr - FPR_BASE] |= data;
  234. }
  235. break;
  236. }
  237. case PC:
  238. regs->cp0_epc = data;
  239. break;
  240. case MMHI:
  241. regs->hi = data;
  242. break;
  243. case MMLO:
  244. regs->lo = data;
  245. break;
  246. case FPC_CSR:
  247. if (!(mips_cpu.options & MIPS_CPU_FPU)) 
  248. child->thread.fpu.soft.sr = data;
  249. else
  250. child->thread.fpu.hard.control = data;
  251. break;
  252. default:
  253. /* The rest are not allowed. */
  254. res = -EIO;
  255. break;
  256. }
  257. break;
  258. }
  259. case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
  260. case PTRACE_CONT: { /* restart after signal. */
  261. res = -EIO;
  262. if ((unsigned long) data > _NSIG)
  263. break;
  264. if (request == PTRACE_SYSCALL)
  265. child->ptrace |= PT_TRACESYS;
  266. else
  267. child->ptrace &= ~PT_TRACESYS;
  268. child->exit_code = data;
  269. wake_up_process(child);
  270. res = 0;
  271. break;
  272. }
  273. /*
  274.  * make the child exit.  Best I can do is send it a sigkill. 
  275.  * perhaps it should be put in the status that it wants to 
  276.  * exit.
  277.  */
  278. case PTRACE_KILL:
  279. res = 0;
  280. if (child->state == TASK_ZOMBIE) /* already dead */
  281. break;
  282. child->exit_code = SIGKILL;
  283. wake_up_process(child);
  284. break;
  285. case PTRACE_DETACH: /* detach a process that was attached. */
  286. res = ptrace_detach(child, data);
  287. break;
  288. case PTRACE_SETOPTIONS:
  289. if (data & PTRACE_O_TRACESYSGOOD)
  290. child->ptrace |= PT_TRACESYSGOOD;
  291. else
  292. child->ptrace &= ~PT_TRACESYSGOOD;
  293. res = 0;
  294. break;
  295. default:
  296. res = -EIO;
  297. goto out;
  298. }
  299. out_tsk:
  300. free_task_struct(child);
  301. out:
  302. unlock_kernel();
  303. return res;
  304. }
  305. asmlinkage void syscall_trace(void)
  306. {
  307. if ((current->ptrace & (PT_PTRACED|PT_TRACESYS))
  308. != (PT_PTRACED|PT_TRACESYS))
  309. return;
  310. /* The 0x80 provides a way for the tracing parent to distinguish
  311.    between a syscall stop and SIGTRAP delivery */
  312. current->exit_code = SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
  313.                                 ? 0x80 : 0);
  314. current->state = TASK_STOPPED;
  315. notify_parent(current, SIGCHLD);
  316. schedule();
  317. /*
  318.  * this isn't the same as continuing with a signal, but it will do
  319.  * for normal use.  strace only continues with a signal if the
  320.  * stopping signal is not SIGTRAP.  -brl
  321.  */
  322. if (current->exit_code) {
  323. send_sig(current->exit_code, current, 1);
  324. current->exit_code = 0;
  325. }
  326. }