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

Linux/Unix编程

开发平台:

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);
  113. else
  114. retval=copy_to_user((void *)copyaddr,(void *)realuseraddr,len);
  115. }      
  116. retval = retval ? -EFAULT : 0;
  117. }
  118. else
  119. {
  120. if(writeuser)
  121. memcpy((void *)realuseraddr,(void *)copyaddr,len);
  122. else
  123. memcpy((void *)copyaddr,(void *)realuseraddr,len);
  124. }
  125. if(mask!=0xffffffff&&writeuser)
  126. (*((u32 *)realuseraddr))=(((*((u32 *)realuseraddr))&mask)|(tempuser&~mask));
  127. return(retval);
  128. }
  129. int copy_user(struct task_struct *task,saddr_t useraddr,addr_t copyaddr,int len,int tofromuser,int writingtouser)
  130. {
  131. int copylen=0,copymax;
  132. addr_t  realuseraddr;
  133. saddr_t enduseraddr=useraddr+len;
  134. u32 mask;
  135. if (useraddr < 0 || enduseraddr > sizeof(struct user)||
  136.    (useraddr < PT_ENDREGS && (useraddr&3))||
  137.    (enduseraddr < PT_ENDREGS && (enduseraddr&3)))
  138. return (-EIO);
  139. while(len>0)
  140. {
  141. mask=0xffffffff;
  142. if(useraddr<PT_FPC)
  143. {
  144. realuseraddr=((addr_t) __KSTK_PTREGS(task)) + useraddr;
  145. if(useraddr<PT_PSWMASK)
  146. {
  147. copymax=PT_PSWMASK;
  148. }
  149. else if(useraddr<(PT_PSWMASK+4))
  150. {
  151. copymax=(PT_PSWMASK+4);
  152. if(writingtouser)
  153. mask=PSW_MASK_DEBUGCHANGE;
  154. }
  155. else if(useraddr<(PT_PSWADDR+4))
  156. {
  157. copymax=PT_PSWADDR+4;
  158. mask=PSW_ADDR_DEBUGCHANGE;
  159. }
  160. else
  161. copymax=PT_FPC;
  162. }
  163. else if(useraddr<(PT_FPR15_LO+4))
  164. {
  165. copymax=(PT_FPR15_LO+4);
  166. realuseraddr=(addr_t)&(((u8 *)&task->thread.fp_regs)[useraddr-PT_FPC]);
  167. }
  168. else if(useraddr<sizeof(struct user_regs_struct))
  169. {
  170. copymax=sizeof(struct user_regs_struct);
  171. realuseraddr=(addr_t)&(((u8 *)&task->thread.per_info)[useraddr-PT_CR_9]);
  172. }
  173. else 
  174. {
  175. copymax=sizeof(struct user);
  176. realuseraddr=(addr_t)NULL;
  177. }
  178. copylen=copymax-useraddr;
  179. copylen=(copylen>len ? len:copylen);
  180. if(ptrace_usercopy(realuseraddr,copyaddr,copylen,tofromuser,writingtouser,mask))
  181. return (-EIO);
  182. copyaddr+=copylen;
  183. len-=copylen;
  184. useraddr+=copylen;
  185. }
  186. FixPerRegisters(task);
  187. return(0);
  188. }
  189. /*
  190.  * Called by kernel/ptrace.c when detaching..
  191.  *
  192.  * Make sure single step bits etc are not set.
  193.  */
  194. void ptrace_disable(struct task_struct *child)
  195. {
  196. /* make sure the single step bit is not set. */
  197. clear_single_step(child);
  198. }
  199. asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
  200. {
  201. struct task_struct *child;
  202. int ret = -EPERM;
  203. unsigned long tmp;
  204. int copied;
  205. ptrace_area   parea; 
  206. lock_kernel();
  207. if (request == PTRACE_TRACEME) 
  208. {
  209. /* are we already being traced? */
  210. if (current->ptrace & PT_PTRACED)
  211. goto out;
  212. /* set the ptrace bit in the process flags. */
  213. current->ptrace |= PT_PTRACED;
  214. ret = 0;
  215. goto out;
  216. }
  217. ret = -ESRCH;
  218. read_lock(&tasklist_lock);
  219. child = find_task_by_pid(pid);
  220. if (child)
  221. get_task_struct(child);
  222. read_unlock(&tasklist_lock);
  223. if (!child)
  224. goto out;
  225. ret = -EPERM;
  226. if (pid == 1) /* you may not mess with init */
  227. goto out_tsk;
  228. if (request == PTRACE_ATTACH) 
  229. {
  230. ret = ptrace_attach(child);
  231. goto out_tsk;
  232. }
  233. ret = -ESRCH;
  234. // printk("child=%lX child->flags=%lX",child,child->flags);
  235. /* I added child!=current line so we can get the */
  236. /* ieee_instruction_pointer from the user structure DJB */
  237. if(child!=current)
  238. {
  239. if (!(child->ptrace & PT_PTRACED))
  240. goto out_tsk;
  241. if (child->state != TASK_STOPPED) 
  242. {
  243. if (request != PTRACE_KILL)
  244. goto out_tsk;
  245. }
  246. if (child->p_pptr != current)
  247. goto out_tsk;
  248. }
  249. switch (request) 
  250. {
  251. /* If I and D space are separate, these will need to be fixed. */
  252. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  253. case PTRACE_PEEKDATA: 
  254. copied = access_process_vm(child,ADDR_BITS_REMOVE(addr), &tmp, sizeof(tmp), 0);
  255. ret = -EIO;
  256. if (copied != sizeof(tmp))
  257. break;
  258. ret = put_user(tmp,(unsigned long *) data);
  259. break;
  260. /* read the word at location addr in the USER area. */
  261. case PTRACE_PEEKUSR:
  262. ret=copy_user(child,addr,data,sizeof(unsigned long),1,0);
  263. break;
  264. /* If I and D space are separate, this will have to be fixed. */
  265. case PTRACE_POKETEXT: /* write the word at location addr. */
  266. case PTRACE_POKEDATA:
  267. ret = 0;
  268. if (access_process_vm(child,ADDR_BITS_REMOVE(addr), &data, sizeof(data), 1) == sizeof(data))
  269. break;
  270. ret = -EIO;
  271. break;
  272. case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
  273. ret=copy_user(child,addr,(addr_t)&data,sizeof(unsigned long),0,1);
  274. break;
  275. case PTRACE_SYSCALL:  /* continue and stop at next (return from) syscall */
  276. case PTRACE_CONT:   /* restart after signal. */
  277. ret = -EIO;
  278. if ((unsigned long) data >= _NSIG)
  279. break;
  280. if (request == PTRACE_SYSCALL)
  281. child->ptrace |= PT_TRACESYS;
  282. else
  283. child->ptrace &= ~PT_TRACESYS;
  284. child->exit_code = data;
  285. /* make sure the single step bit is not set. */
  286. clear_single_step(child);
  287. wake_up_process(child);
  288. ret = 0;
  289. break;
  290. /*
  291.  * make the child exit.  Best I can do is send it a sigkill. 
  292.  * perhaps it should be put in the status that it wants to 
  293.  * exit.
  294.  */
  295. case PTRACE_KILL:
  296. ret = 0;
  297. if (child->state == TASK_ZOMBIE) /* already dead */
  298. break;
  299. child->exit_code = SIGKILL;
  300. clear_single_step(child);
  301. wake_up_process(child);
  302. /* make sure the single step bit is not set. */
  303. break;
  304. case PTRACE_SINGLESTEP:  /* set the trap flag. */
  305. ret = -EIO;
  306. if ((unsigned long) data >= _NSIG)
  307. break;
  308. child->ptrace &= ~PT_TRACESYS;
  309. child->exit_code = data;
  310. set_single_step(child);
  311. /* give it a chance to run. */
  312. wake_up_process(child);
  313. ret = 0;
  314. break;
  315. case PTRACE_DETACH:  /* detach a process that was attached. */
  316. ret = ptrace_detach(child, data);
  317. break;
  318. case PTRACE_PEEKUSR_AREA:
  319. case PTRACE_POKEUSR_AREA:
  320. if(copy_from_user(&parea,(void *)addr,sizeof(parea))==0)  
  321. ret=copy_user(child,parea.kernel_addr,parea.process_addr,
  322.       parea.len,1,(request==PTRACE_POKEUSR_AREA));
  323. else ret = -EFAULT;
  324. break;
  325. default:
  326. ret = -EIO;
  327. break;
  328. }
  329.  out_tsk:
  330. free_task_struct(child);
  331.  out:
  332. unlock_kernel();
  333. return ret;
  334. }
  335. asmlinkage void syscall_trace(void)
  336. {
  337. lock_kernel();
  338. if ((current->ptrace & (PT_PTRACED|PT_TRACESYS))
  339.     != (PT_PTRACED|PT_TRACESYS))
  340. goto out;
  341. current->exit_code = SIGTRAP;
  342. set_current_state(TASK_STOPPED);
  343. notify_parent(current, SIGCHLD);
  344. schedule();
  345. /*
  346.  * this isn't the same as continuing with a signal, but it will do
  347.  * for normal use.  strace only continues with a signal if the
  348.  * stopping signal is not SIGTRAP.  -brl
  349.  */
  350. if (current->exit_code) {
  351. send_sig(current->exit_code, current, 1);
  352. current->exit_code = 0;
  353. }
  354.  out:
  355. unlock_kernel();
  356. }