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

嵌入式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/config.h>
  25. #include <linux/kernel.h>
  26. #include <linux/sched.h>
  27. #include <linux/mm.h>
  28. #include <linux/smp.h>
  29. #include <linux/smp_lock.h>
  30. #include <linux/errno.h>
  31. #include <linux/ptrace.h>
  32. #include <linux/user.h>
  33. #include <asm/segment.h>
  34. #include <asm/page.h>
  35. #include <asm/pgtable.h>
  36. #include <asm/pgalloc.h>
  37. #include <asm/system.h>
  38. #include <asm/uaccess.h>
  39. void FixPerRegisters(struct task_struct *task)
  40. {
  41. struct pt_regs *regs = __KSTK_PTREGS(task);
  42. per_struct *per_info=
  43. (per_struct *)&task->thread.per_info;
  44. per_info->control_regs.bits.em_instruction_fetch =
  45.         per_info->single_step | per_info->instruction_fetch;
  46. if (per_info->single_step) {
  47. per_info->control_regs.bits.starting_addr=0;
  48. #ifdef CONFIG_S390_SUPPORT
  49. if (current->thread.flags & S390_FLAG_31BIT) {
  50. per_info->control_regs.bits.ending_addr=0x7fffffffUL;
  51.         }
  52. else 
  53. #endif      
  54. {
  55. per_info->control_regs.bits.ending_addr=-1L;
  56. }
  57. } else {
  58. per_info->control_regs.bits.starting_addr=
  59.         per_info->starting_addr;
  60. per_info->control_regs.bits.ending_addr=
  61.         per_info->ending_addr;
  62. }
  63. /* if any of the control reg tracing bits are on 
  64.    we switch on per in the psw */
  65. if (per_info->control_regs.words.cr[0] & PER_EM_MASK)
  66. regs->psw.mask |= PSW_PER_MASK;
  67. else
  68. regs->psw.mask &= ~PSW_PER_MASK;
  69. if (per_info->control_regs.bits.storage_alt_space_ctl)
  70. task->thread.user_seg |= USER_STD_MASK;
  71. else
  72. task->thread.user_seg &= ~USER_STD_MASK;
  73. }
  74. void set_single_step(struct task_struct *task)
  75. {
  76. per_struct *per_info= (per_struct *) &task->thread.per_info;
  77. per_info->single_step = 1;  /* Single step */
  78. FixPerRegisters (task);
  79. }
  80. void clear_single_step(struct task_struct *task)
  81. {
  82. per_struct *per_info= (per_struct *) &task->thread.per_info;
  83. per_info->single_step = 0;
  84. FixPerRegisters (task);
  85. }
  86. int ptrace_usercopy(addr_t realuseraddr, addr_t copyaddr, int len,
  87.                     int tofromuser, int writeuser, unsigned long mask)
  88. {
  89.         unsigned long *realuserptr, *copyptr;
  90. unsigned long tempuser;
  91. int retval;
  92.         retval = 0;
  93.         realuserptr = (unsigned long *) realuseraddr;
  94.         copyptr = (unsigned long *) copyaddr;
  95. if (writeuser && realuserptr == NULL)
  96. return 0;
  97. if (mask != -1L) {
  98. tempuser = *realuserptr;
  99. if (!writeuser) {
  100. tempuser &= mask;
  101. realuserptr = &tempuser;
  102. }
  103. }
  104. if (tofromuser) {
  105. if (writeuser) {
  106. retval = copy_from_user(realuserptr, copyptr, len);
  107. } else {
  108. if (realuserptr == NULL)
  109. retval = clear_user(copyptr, len);
  110. else
  111. retval = copy_to_user(copyptr,realuserptr,len);
  112.                         retval = (retval == -EFAULT) ? -EIO : 0;
  113. }      
  114. } else {
  115. if (writeuser)
  116. memcpy(realuserptr, copyptr, len);
  117. else
  118. memcpy(copyptr, realuserptr, len);
  119. }
  120. if (mask != -1L && writeuser)
  121.                 *realuserptr = (*realuserptr & mask) | (tempuser & ~mask);
  122. return retval;
  123. }
  124. int copy_user(struct task_struct *task,saddr_t useraddr, addr_t copyaddr,
  125.               int len, int tofromuser, int writingtouser)
  126. {
  127. int copylen=0,copymax;
  128. addr_t  realuseraddr;
  129. saddr_t enduseraddr;
  130. unsigned long mask;
  131. #ifdef CONFIG_S390_SUPPORT
  132. if (current->thread.flags & S390_FLAG_31BIT) {
  133. /* adjust user offsets to 64 bit structure */
  134. if (useraddr < PT_PSWADDR / 2)
  135. useraddr = 2 * useraddr;
  136. else if(useraddr < PT_ACR0 / 2)
  137. useraddr = 2 * useraddr + sizeof(addr_t) / 2;
  138. else if(useraddr < PT_ACR0 / 2 + (PT_ORIGGPR2 - PT_ACR0))
  139. useraddr = useraddr + PT_ACR0 / 2;
  140. else if(useraddr < PT_ACR0 / 2 + (sizeof(struct user_regs_struct) - sizeof(addr_t) / 2 - PT_ACR0))
  141. useraddr = useraddr + PT_ACR0 / 2 + sizeof(addr_t) / 2; 
  142.         }
  143. #endif  
  144.     
  145. enduseraddr=useraddr+len;
  146. if (useraddr < 0 || enduseraddr > sizeof(struct user)||
  147.    (useraddr < PT_ENDREGS && (useraddr&3))||
  148.    (enduseraddr < PT_ENDREGS && (enduseraddr&3)))
  149. return (-EIO);
  150. while(len>0)
  151. {
  152. mask=PSW_ADDR_MASK;
  153. if(useraddr<PT_FPC)
  154. {
  155. realuseraddr=((addr_t) __KSTK_PTREGS(task)) + useraddr;
  156. if(useraddr<PT_PSWMASK)
  157. {
  158. copymax=PT_PSWMASK;
  159. }
  160. else if(useraddr<(PT_PSWMASK+8))
  161. {
  162. copymax=(PT_PSWMASK+8);
  163. if(writingtouser)
  164. mask=PSW_MASK_DEBUGCHANGE;
  165. }
  166. else if(useraddr<(PT_PSWADDR+8))
  167. {
  168. copymax=PT_PSWADDR+8;
  169. mask=PSW_ADDR_DEBUGCHANGE;
  170. }
  171. else
  172. copymax=PT_FPC;
  173. }
  174. else if(useraddr<(PT_FPR15+sizeof(freg_t)))
  175. {
  176. copymax=(PT_FPR15+sizeof(freg_t));
  177. realuseraddr=(addr_t)&(((u8 *)&task->thread.fp_regs)[useraddr-PT_FPC]);
  178. }
  179. else if(useraddr<sizeof(struct user_regs_struct))
  180. {
  181. copymax=sizeof(struct user_regs_struct);
  182. realuseraddr=(addr_t)&(((u8 *)&task->thread.per_info)[useraddr-PT_CR_9]);
  183. }
  184. else 
  185. {
  186. copymax=sizeof(struct user);
  187. realuseraddr=(addr_t)NULL;
  188. }
  189. copylen=copymax-useraddr;
  190. copylen=(copylen>len ? len:copylen);
  191. if(ptrace_usercopy(realuseraddr,copyaddr,copylen,tofromuser,writingtouser,mask))
  192. return (-EIO);
  193. copyaddr+=copylen;
  194. len-=copylen;
  195. useraddr+=copylen;
  196. }
  197. FixPerRegisters(task);
  198. return(0);
  199. }
  200. /*
  201.  * Called by kernel/ptrace.c when detaching..
  202.  *
  203.  * Make sure single step bits etc are not set.
  204.  */
  205. void ptrace_disable(struct task_struct *child)
  206. {
  207. /* make sure the single step bit is not set. */
  208. clear_single_step(child);
  209. }
  210. asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
  211. {
  212. struct task_struct *child;
  213. int ret = -EPERM;
  214. unsigned long flags;
  215. unsigned long tmp;
  216. int copied;
  217. ptrace_area   parea; 
  218. lock_kernel();
  219. if (request == PTRACE_TRACEME) 
  220. {
  221. /* are we already being traced? */
  222. if (current->ptrace & PT_PTRACED)
  223. goto out;
  224. /* set the ptrace bit in the process flags. */
  225. current->ptrace |= PT_PTRACED;
  226. ret = 0;
  227. goto out;
  228. }
  229. ret = -ESRCH;
  230. read_lock(&tasklist_lock);
  231. child = find_task_by_pid(pid);
  232. read_unlock(&tasklist_lock);
  233. if (!child)
  234. goto out;
  235. ret = -EPERM;
  236. if (pid == 1) /* you may not mess with init */
  237. goto out;
  238. if (request == PTRACE_ATTACH) 
  239. {
  240. ret = ptrace_attach(child);
  241. goto out;
  242. }
  243. ret = -ESRCH;
  244. // printk("child=%lX child->flags=%lX",child,child->flags);
  245. /* I added child!=current line so we can get the */
  246. /* ieee_instruction_pointer from the user structure DJB */
  247. if(child!=current)
  248. {
  249. if (!(child->ptrace & PT_PTRACED))
  250. goto out;
  251. if (child->state != TASK_STOPPED) 
  252. {
  253. if (request != PTRACE_KILL)
  254. goto out;
  255. }
  256. if (child->p_pptr != current)
  257. goto out;
  258. }
  259. switch (request) 
  260. {
  261. /* If I and D space are separate, these will need to be fixed. */
  262. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  263. case PTRACE_PEEKDATA: 
  264. copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
  265. ret = -EIO;
  266. if (copied != sizeof(tmp))
  267. goto out;
  268. ret = put_user(tmp,(unsigned long *) data);
  269. goto out;
  270. /* read the word at location addr in the USER area. */
  271. case PTRACE_PEEKUSR:
  272. ret=copy_user(child,addr,data,sizeof(unsigned long),1,0);
  273. break;
  274. /* If I and D space are separate, this will have to be fixed. */
  275. case PTRACE_POKETEXT: /* write the word at location addr. */
  276. case PTRACE_POKEDATA:
  277. ret = 0;
  278. if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
  279. goto out;
  280. ret = -EIO;
  281. goto out;
  282. break;
  283. case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
  284. ret=copy_user(child,addr,(addr_t)&data,sizeof(unsigned long),0,1);
  285. break;
  286. case PTRACE_SYSCALL:  /* continue and stop at next (return from) syscall */
  287. case PTRACE_CONT:   /* restart after signal. */
  288. ret = -EIO;
  289. if ((unsigned long) data >= _NSIG)
  290. break;
  291. if (request == PTRACE_SYSCALL)
  292. child->ptrace |= PT_TRACESYS;
  293. else
  294. child->ptrace &= ~PT_TRACESYS;
  295. child->exit_code = data;
  296. /* make sure the single step bit is not set. */
  297. clear_single_step(child);
  298. wake_up_process(child);
  299. ret = 0;
  300. break;
  301. /*
  302.  * make the child exit.  Best I can do is send it a sigkill. 
  303.  * perhaps it should be put in the status that it wants to 
  304.  * exit.
  305.  */
  306. case PTRACE_KILL:
  307. ret = 0;
  308. if (child->state == TASK_ZOMBIE) /* already dead */
  309. break;
  310. child->exit_code = SIGKILL;
  311. clear_single_step(child);
  312. wake_up_process(child);
  313. /* make sure the single step bit is not set. */
  314. break;
  315. case PTRACE_SINGLESTEP:  /* set the trap flag. */
  316. ret = -EIO;
  317. if ((unsigned long) data >= _NSIG)
  318. break;
  319. child->ptrace &= ~PT_TRACESYS;
  320. child->exit_code = data;
  321. set_single_step(child);
  322. /* give it a chance to run. */
  323. wake_up_process(child);
  324. ret = 0;
  325. break;
  326. case PTRACE_DETACH:  /* detach a process that was attached. */
  327. ret = ptrace_detach(child, data);
  328. break;
  329. case PTRACE_PEEKUSR_AREA:
  330. case PTRACE_POKEUSR_AREA:
  331. if((ret=copy_from_user(&parea,(void *)addr,sizeof(parea)))==0)  
  332.    ret=copy_user(child,parea.kernel_addr,parea.process_addr,
  333.  parea.len,1,(request==PTRACE_POKEUSR_AREA));
  334. break;
  335. default:
  336. ret = -EIO;
  337. break;
  338. }
  339.  out:
  340. unlock_kernel();
  341. return ret;
  342. }
  343. typedef struct
  344. {
  345. __u32 len;
  346. __u32 kernel_addr;
  347. __u32 process_addr;
  348. } ptrace_area_emu31;
  349. asmlinkage int sys32_ptrace(long request, long pid, long addr, s32 data)
  350. {
  351. struct task_struct *child;
  352. int ret = -EPERM;
  353. unsigned long flags;
  354. u32 tmp;
  355. int copied;
  356. ptrace_area   parea; 
  357. lock_kernel();
  358. if (request == PTRACE_TRACEME) 
  359. {
  360. /* are we already being traced? */
  361. if (current->ptrace & PT_PTRACED)
  362. goto out;
  363. /* set the ptrace bit in the process flags. */
  364. current->ptrace |= PT_PTRACED;
  365. ret = 0;
  366. goto out;
  367. }
  368. ret = -ESRCH;
  369. read_lock(&tasklist_lock);
  370. child = find_task_by_pid(pid);
  371. read_unlock(&tasklist_lock);
  372. if (!child)
  373. goto out;
  374. ret = -EPERM;
  375. if (pid == 1) /* you may not mess with init */
  376. goto out;
  377. if (request == PTRACE_ATTACH) 
  378. {
  379. ret = ptrace_attach(child);
  380. goto out;
  381. }
  382. ret = -ESRCH;
  383. // printk("child=%lX child->flags=%lX",child,child->flags);
  384. /* I added child!=current line so we can get the */
  385. /* ieee_instruction_pointer from the user structure DJB */
  386. if(child!=current)
  387. {
  388. if (!(child->ptrace & PT_PTRACED))
  389. goto out;
  390. if (child->state != TASK_STOPPED) 
  391. {
  392. if (request != PTRACE_KILL)
  393. goto out;
  394. }
  395. if (child->p_pptr != current)
  396. goto out;
  397. }
  398. switch (request) 
  399. {
  400. /* If I and D space are separate, these will need to be fixed. */
  401. case PTRACE_PEEKTEXT: /* read word at location addr. */ 
  402. case PTRACE_PEEKDATA: 
  403. copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
  404. ret = -EIO;
  405. if (copied != sizeof(tmp))
  406. goto out;
  407. ret = put_user(tmp,(u32 *)(unsigned long)data);
  408. goto out;
  409. /* read the word at location addr in the USER area. */
  410. case PTRACE_PEEKUSR:
  411. ret=copy_user(child,addr,data,sizeof(u32),1,0);
  412. break;
  413. /* If I and D space are separate, this will have to be fixed. */
  414. case PTRACE_POKETEXT: /* write the word at location addr. */
  415. case PTRACE_POKEDATA:
  416. ret = 0;
  417. if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
  418. goto out;
  419. ret = -EIO;
  420. goto out;
  421. break;
  422. case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
  423. ret=copy_user(child,addr,(addr_t)&data,sizeof(u32),0,1);
  424. break;
  425. case PTRACE_SYSCALL:  /* continue and stop at next (return from) syscall */
  426. case PTRACE_CONT:   /* restart after signal. */
  427. ret = -EIO;
  428. if ((unsigned long) data >= _NSIG)
  429. break;
  430. if (request == PTRACE_SYSCALL)
  431. child->ptrace |= PT_TRACESYS;
  432. else
  433. child->ptrace &= ~PT_TRACESYS;
  434. child->exit_code = data;
  435. /* make sure the single step bit is not set. */
  436. clear_single_step(child);
  437. wake_up_process(child);
  438. ret = 0;
  439. break;
  440. /*
  441.  * make the child exit.  Best I can do is send it a sigkill. 
  442.  * perhaps it should be put in the status that it wants to 
  443.  * exit.
  444.  */
  445. case PTRACE_KILL:
  446. ret = 0;
  447. if (child->state == TASK_ZOMBIE) /* already dead */
  448. break;
  449. child->exit_code = SIGKILL;
  450. clear_single_step(child);
  451. wake_up_process(child);
  452. /* make sure the single step bit is not set. */
  453. break;
  454. case PTRACE_SINGLESTEP:  /* set the trap flag. */
  455. ret = -EIO;
  456. if ((unsigned long) data >= _NSIG)
  457. break;
  458. child->ptrace &= ~PT_TRACESYS;
  459. child->exit_code = data;
  460. set_single_step(child);
  461. /* give it a chance to run. */
  462. wake_up_process(child);
  463. ret = 0;
  464. break;
  465. case PTRACE_DETACH:  /* detach a process that was attached. */
  466. ret = -EIO;
  467. if ((unsigned long) data >= _NSIG)
  468. break;
  469. child->ptrace &= ~(PT_PTRACED|PT_TRACESYS);
  470. child->exit_code = data;
  471. write_lock_irqsave(&tasklist_lock, flags);
  472. REMOVE_LINKS(child);
  473. child->p_pptr = child->p_opptr;
  474. SET_LINKS(child);
  475. write_unlock_irqrestore(&tasklist_lock, flags);
  476. /* make sure the single step bit is not set. */
  477. clear_single_step(child);
  478. wake_up_process(child);
  479. ret = 0;
  480. break;
  481. case PTRACE_PEEKUSR_AREA:
  482. case PTRACE_POKEUSR_AREA:
  483. {
  484. ptrace_area_emu31 * parea31 = (void *)addr;
  485. if (!access_ok(VERIFY_READ, parea31, sizeof(*parea31)))
  486. return(-EFAULT);
  487. ret = __get_user(parea.len, &parea31->len);
  488. ret |= __get_user(parea.kernel_addr, &parea31->kernel_addr);
  489. ret |= __get_user(parea.process_addr, &parea31->process_addr);
  490. if(ret==0)  
  491.    ret=copy_user(child,parea.kernel_addr,parea.process_addr,
  492.  parea.len,1,(request==PTRACE_POKEUSR_AREA));
  493. break;
  494. }
  495. default:
  496. ret = -EIO;
  497. break;
  498. }
  499.  out:
  500. unlock_kernel();
  501. return ret;
  502. }
  503. asmlinkage void syscall_trace(void)
  504. {
  505. lock_kernel();
  506. if ((current->ptrace & (PT_PTRACED|PT_TRACESYS))
  507.     != (PT_PTRACED|PT_TRACESYS))
  508. goto out;
  509. current->exit_code = SIGTRAP;
  510. set_current_state(TASK_STOPPED);
  511. notify_parent(current, SIGCHLD);
  512. schedule();
  513. /*
  514.  * this isn't the same as continuing with a signal, but it will do
  515.  * for normal use.  strace only continues with a signal if the
  516.  * stopping signal is not SIGTRAP.  -brl
  517.  */
  518. if (current->exit_code) {
  519. send_sig(current->exit_code, current, 1);
  520. current->exit_code = 0;
  521. }
  522.  out:
  523. unlock_kernel();
  524. }