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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/kernel/ptrace.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
  7.  *
  8.  *  Based on PowerPC version 
  9.  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  10.  *
  11.  *  Derived from "arch/m68k/kernel/ptrace.c"
  12.  *  Copyright (C) 1994 by Hamish Macdonald
  13.  *  Taken from linux/kernel/ptrace.c and modified for M680x0.
  14.  *  linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
  15.  *
  16.  * Modified by Cort Dougan (cort@cs.nmt.edu) 
  17.  *
  18.  *
  19.  * This file is subject to the terms and conditions of the GNU General
  20.  * Public License.  See the file README.legal in the main directory of
  21.  * this archive for more details.
  22.  */
  23. #include <stddef.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/mm.h>
  27. #include <linux/smp.h>
  28. #include <linux/smp_lock.h>
  29. #include <linux/errno.h>
  30. #include <linux/ptrace.h>
  31. #include <linux/user.h>
  32. #include <asm/segment.h>
  33. #include <asm/page.h>
  34. #include <asm/pgtable.h>
  35. #include <asm/pgalloc.h>
  36. #include <asm/system.h>
  37. #include <asm/uaccess.h>
  38. void FixPerRegisters(struct task_struct *task)
  39. {
  40. struct pt_regs *regs = __KSTK_PTREGS(task);
  41. per_struct *per_info=
  42. (per_struct *)&task->thread.per_info;
  43. per_info->control_regs.bits.em_instruction_fetch=
  44. per_info->single_step|per_info->instruction_fetch;
  45. if(per_info->single_step)
  46. {
  47. per_info->control_regs.bits.starting_addr=0;
  48. per_info->control_regs.bits.ending_addr=0x7fffffffUL;
  49. }
  50. else
  51. {
  52. per_info->control_regs.bits.starting_addr=
  53. per_info->starting_addr;
  54. per_info->control_regs.bits.ending_addr=
  55. per_info->ending_addr;
  56. }
  57. /* if any of the control reg tracing bits are on 
  58.    we switch on per in the psw */
  59. if(per_info->control_regs.words.cr[0]&PER_EM_MASK)
  60. regs->psw.mask |=PSW_PER_MASK;
  61. else
  62. regs->psw.mask &= ~PSW_PER_MASK;
  63. if (per_info->control_regs.bits.em_storage_alteration)
  64. {
  65. per_info->control_regs.bits.storage_alt_space_ctl=1;
  66. //((pgd_t *)__pa(task->mm->pgd))->pgd |= USER_STD_MASK;
  67. }
  68. else
  69. {
  70. per_info->control_regs.bits.storage_alt_space_ctl=0;
  71. //((pgd_t *)__pa(task->mm->pgd))->pgd &= ~USER_STD_MASK;
  72. }
  73. }
  74. void set_single_step(struct task_struct *task)
  75. {
  76. per_struct *per_info=
  77. (per_struct *)&task->thread.per_info;
  78. per_info->single_step=1;  /* Single step */
  79. FixPerRegisters(task);
  80. }
  81. void clear_single_step(struct task_struct *task)
  82. {
  83. per_struct *per_info=
  84. (per_struct *)&task->thread.per_info;
  85. per_info->single_step=0;
  86. FixPerRegisters(task);
  87. }
  88. int ptrace_usercopy(addr_t realuseraddr,addr_t copyaddr,int len,int tofromuser,int writeuser,u32 mask)
  89. {
  90. u32  tempuser;
  91. int  retval=0;
  92. if(writeuser&&realuseraddr==(addr_t)NULL)
  93. return(0);
  94. if(mask!=0xffffffff)
  95. {
  96. tempuser=*((u32 *)realuseraddr);
  97. if(!writeuser)
  98. {
  99. tempuser&=mask;
  100. realuseraddr=(addr_t)&tempuser;
  101. }
  102. }
  103. if(tofromuser)
  104. {
  105. if(writeuser)
  106. {
  107. retval=copy_from_user((void *)realuseraddr,(void *)copyaddr,len);
  108. }
  109. else
  110. {
  111. if(realuseraddr==(addr_t)NULL)
  112. retval=(clear_user((void *)copyaddr,len)==-EFAULT ? -EIO:0);
  113. else
  114. retval=(copy_to_user((void *)copyaddr,(void *)realuseraddr,len)==-EFAULT ? -EIO:0);
  115. }      
  116. }
  117. else
  118. {
  119. if(writeuser)
  120. memcpy((void *)realuseraddr,(void *)copyaddr,len);
  121. else
  122. memcpy((void *)copyaddr,(void *)realuseraddr,len);
  123. }
  124. if(mask!=0xffffffff&&writeuser)
  125. (*((u32 *)realuseraddr))=(((*((u32 *)realuseraddr))&mask)|(tempuser&~mask));
  126. return(retval);
  127. }
  128. int copy_user(struct task_struct *task,saddr_t useraddr,addr_t copyaddr,int len,int tofromuser,int writingtouser)
  129. {
  130. int copylen=0,copymax;
  131. addr_t  realuseraddr;
  132. saddr_t enduseraddr=useraddr+len;
  133. u32 mask;
  134. if (useraddr < 0 || enduseraddr > sizeof(struct user)||
  135.    (useraddr < PT_ENDREGS && (useraddr&3))||
  136.    (enduseraddr < PT_ENDREGS && (enduseraddr&3)))
  137. return (-EIO);
  138. while(len>0)
  139. {
  140. mask=0xffffffff;
  141. if(useraddr<PT_FPC)
  142. {
  143. realuseraddr=((addr_t) __KSTK_PTREGS(task)) + useraddr;
  144. if(useraddr<PT_PSWMASK)
  145. {
  146. copymax=PT_PSWMASK;
  147. }
  148. else if(useraddr<(PT_PSWMASK+4))
  149. {
  150. copymax=(PT_PSWMASK+4);
  151. if(writingtouser)
  152. mask=PSW_MASK_DEBUGCHANGE;
  153. }
  154. else if(useraddr<(PT_PSWADDR+4))
  155. {
  156. copymax=PT_PSWADDR+4;
  157. mask=PSW_ADDR_DEBUGCHANGE;
  158. }
  159. else
  160. copymax=PT_FPC;
  161. }
  162. else if(useraddr<(PT_FPR15_LO+4))
  163. {
  164. copymax=(PT_FPR15_LO+4);
  165. realuseraddr=(addr_t)&(((u8 *)&task->thread.fp_regs)[useraddr-PT_FPC]);
  166. }
  167. else if(useraddr<sizeof(struct user_regs_struct))
  168. {
  169. copymax=sizeof(struct user_regs_struct);
  170. realuseraddr=(addr_t)&(((u8 *)&task->thread.per_info)[useraddr-PT_CR_9]);
  171. }
  172. else 
  173. {
  174. copymax=sizeof(struct user);
  175. realuseraddr=(addr_t)NULL;
  176. }
  177. copylen=copymax-useraddr;
  178. copylen=(copylen>len ? len:copylen);
  179. if(ptrace_usercopy(realuseraddr,copyaddr,copylen,tofromuser,writingtouser,mask))
  180. return (-EIO);
  181. copyaddr+=copylen;
  182. len-=copylen;
  183. useraddr+=copylen;
  184. }
  185. FixPerRegisters(task);
  186. return(0);
  187. }
  188. /*
  189.  * Called by kernel/ptrace.c when detaching..
  190.  *
  191.  * Make sure single step bits etc are not set.
  192.  */
  193. void ptrace_disable(struct task_struct *child)
  194. {
  195. /* make sure the single step bit is not set. */
  196. clear_single_step(child);
  197. }
  198. asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
  199. {
  200. struct task_struct *child;
  201. int ret = -EPERM;
  202. unsigned long tmp;
  203. int copied;
  204. ptrace_area   parea; 
  205. lock_kernel();
  206. if (request == PTRACE_TRACEME) 
  207. {
  208. /* are we already being traced? */
  209. if (current->ptrace & PT_PTRACED)
  210. goto out;
  211. /* set the ptrace bit in the process flags. */
  212. current->ptrace |= PT_PTRACED;
  213. ret = 0;
  214. goto out;
  215. }
  216. ret = -ESRCH;
  217. read_lock(&tasklist_lock);
  218. child = find_task_by_pid(pid);
  219. read_unlock(&tasklist_lock);
  220. if (!child)
  221. goto out;
  222. ret = -EPERM;
  223. if (pid == 1) /* you may not mess with init */
  224. goto out;
  225. if (request == PTRACE_ATTACH) 
  226. {
  227. ret = ptrace_attach(child);
  228. goto out;
  229. }
  230. ret = -ESRCH;
  231. // printk("child=%lX child->flags=%lX",child,child->flags);
  232. /* I added child!=current line so we can get the */
  233. /* ieee_instruction_pointer from the user structure DJB */
  234. if(child!=current)
  235. {
  236. if (!(child->ptrace & PT_PTRACED))
  237. goto out;
  238. if (child->state != TASK_STOPPED) 
  239. {
  240. if (request != PTRACE_KILL)
  241. goto out;
  242. }
  243. if (child->p_pptr != current)
  244. goto out;
  245. }
  246. switch (request) 
  247. {
  248. /* If I and D space are separate, these will need to be fixed. */
  249. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  250. case PTRACE_PEEKDATA: 
  251. copied = access_process_vm(child,ADDR_BITS_REMOVE(addr), &tmp, sizeof(tmp), 0);
  252. ret = -EIO;
  253. if (copied != sizeof(tmp))
  254. goto out;
  255. ret = put_user(tmp,(unsigned long *) data);
  256. goto out;
  257. /* read the word at location addr in the USER area. */
  258. case PTRACE_PEEKUSR:
  259. ret=copy_user(child,addr,data,sizeof(unsigned long),1,0);
  260. break;
  261. /* If I and D space are separate, this will have to be fixed. */
  262. case PTRACE_POKETEXT: /* write the word at location addr. */
  263. case PTRACE_POKEDATA:
  264. ret = 0;
  265. if (access_process_vm(child,ADDR_BITS_REMOVE(addr), &data, sizeof(data), 1) == sizeof(data))
  266. goto out;
  267. ret = -EIO;
  268. goto out;
  269. break;
  270. case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
  271. ret=copy_user(child,addr,(addr_t)&data,sizeof(unsigned long),0,1);
  272. break;
  273. case PTRACE_SYSCALL:  /* continue and stop at next (return from) syscall */
  274. case PTRACE_CONT:   /* restart after signal. */
  275. ret = -EIO;
  276. if ((unsigned long) data >= _NSIG)
  277. break;
  278. if (request == PTRACE_SYSCALL)
  279. child->ptrace |= PT_TRACESYS;
  280. else
  281. child->ptrace &= ~PT_TRACESYS;
  282. child->exit_code = data;
  283. /* make sure the single step bit is not set. */
  284. clear_single_step(child);
  285. wake_up_process(child);
  286. ret = 0;
  287. break;
  288. /*
  289.  * make the child exit.  Best I can do is send it a sigkill. 
  290.  * perhaps it should be put in the status that it wants to 
  291.  * exit.
  292.  */
  293. case PTRACE_KILL:
  294. ret = 0;
  295. if (child->state == TASK_ZOMBIE) /* already dead */
  296. break;
  297. child->exit_code = SIGKILL;
  298. clear_single_step(child);
  299. wake_up_process(child);
  300. /* make sure the single step bit is not set. */
  301. break;
  302. case PTRACE_SINGLESTEP:  /* set the trap flag. */
  303. ret = -EIO;
  304. if ((unsigned long) data >= _NSIG)
  305. break;
  306. child->ptrace &= ~PT_TRACESYS;
  307. child->exit_code = data;
  308. set_single_step(child);
  309. /* give it a chance to run. */
  310. wake_up_process(child);
  311. ret = 0;
  312. break;
  313. case PTRACE_DETACH:  /* detach a process that was attached. */
  314. ret = ptrace_detach(child, data);
  315. break;
  316. case PTRACE_PEEKUSR_AREA:
  317. case PTRACE_POKEUSR_AREA:
  318. if((ret=copy_from_user(&parea,(void *)addr,sizeof(parea)))==0)  
  319.    ret=copy_user(child,parea.kernel_addr,parea.process_addr,
  320.  parea.len,1,(request==PTRACE_POKEUSR_AREA));
  321. break;
  322. default:
  323. ret = -EIO;
  324. break;
  325. }
  326.  out:
  327. unlock_kernel();
  328. return ret;
  329. }
  330. asmlinkage void syscall_trace(void)
  331. {
  332. lock_kernel();
  333. if ((current->ptrace & (PT_PTRACED|PT_TRACESYS))
  334.     != (PT_PTRACED|PT_TRACESYS))
  335. goto out;
  336. current->exit_code = SIGTRAP;
  337. set_current_state(TASK_STOPPED);
  338. notify_parent(current, SIGCHLD);
  339. schedule();
  340. /*
  341.  * this isn't the same as continuing with a signal, but it will do
  342.  * for normal use.  strace only continues with a signal if the
  343.  * stopping signal is not SIGTRAP.  -brl
  344.  */
  345. if (current->exit_code) {
  346. send_sig(current->exit_code, current, 1);
  347. current->exit_code = 0;
  348. }
  349.  out:
  350. unlock_kernel();
  351. }