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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: fault.c,v 1.5 2000/01/26 16:20:29 jsm Exp $
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  *
  8.  * Copyright (C) 1995, 1996, 1997, 1998 by Ralf Baechle
  9.  * Copyright 1999 SuSE GmbH (Philipp Rumpf, prumpf@tux.org)
  10.  * Copyright 1999 Hewlett Packard Co.
  11.  *
  12.  */
  13. #include <linux/mm.h>
  14. #include <linux/ptrace.h>
  15. #include <linux/sched.h>
  16. #include <linux/interrupt.h>
  17. #include <asm/uaccess.h>
  18. #include <asm/traps.h>
  19. #define PRINT_USER_FAULTS /* (turn this on if you want user faults to be */
  20.  /*  dumped to the console via printk)          */
  21. /* Defines for parisc_acctyp() */
  22. #define READ 0
  23. #define WRITE 1
  24. /* Various important other fields */
  25. #define bit22set(x) (x & 0x00000200)
  26. #define bits23_25set(x) (x & 0x000001c0)
  27. #define isGraphicsFlushRead(x) ((x & 0xfc003fdf) == 0x04001a80)
  28. /* extended opcode is 0x6a */
  29. #define BITSSET 0x1c0 /* for identifying LDCW */
  30. /*
  31.  * parisc_acctyp(unsigned int inst) --
  32.  *    Given a PA-RISC memory access instruction, determine if the
  33.  *    the instruction would perform a memory read or memory write
  34.  *    operation.
  35.  *
  36.  *    This function assumes that the given instruction is a memory access
  37.  *    instruction (i.e. you should really only call it if you know that
  38.  *    the instruction has generated some sort of a memory access fault).
  39.  *
  40.  * Returns:
  41.  *   VM_READ  if read operation
  42.  *   VM_WRITE if write operation
  43.  *   VM_EXEC  if execute operation
  44.  */
  45. static unsigned long
  46. parisc_acctyp(unsigned long code, unsigned int inst)
  47. {
  48. if (code == 6 || code == 16)
  49.     return VM_EXEC;
  50. switch (inst & 0xf0000000) {
  51. case 0x40000000: /* load */
  52. case 0x50000000: /* new load */
  53. return VM_READ;
  54. case 0x60000000: /* store */
  55. case 0x70000000: /* new store */
  56. return VM_WRITE;
  57. case 0x20000000: /* coproc */
  58. case 0x30000000: /* coproc2 */
  59. if (bit22set(inst))
  60. return VM_WRITE;
  61. case 0x0: /* indexed/memory management */
  62. if (bit22set(inst)) {
  63. /*
  64.  * Check for the 'Graphics Flush Read' instruction.
  65.  * It resembles an FDC instruction, except for bits
  66.  * 20 and 21. Any combination other than zero will
  67.  * utilize the block mover functionality on some
  68.  * older PA-RISC platforms.  The case where a block
  69.  * move is performed from VM to graphics IO space
  70.  * should be treated as a READ.
  71.  *
  72.  * The significance of bits 20,21 in the FDC
  73.  * instruction is:
  74.  *
  75.  *   00  Flush data cache (normal instruction behavior)
  76.  *   01  Graphics flush write  (IO space -> VM)
  77.  *   10  Graphics flush read   (VM -> IO space)
  78.  *   11  Graphics flush read/write (VM <-> IO space)
  79.  */
  80. if (isGraphicsFlushRead(inst))
  81. return VM_READ;
  82. return VM_WRITE;
  83. } else {
  84. /*
  85.  * Check for LDCWX and LDCWS (semaphore instructions).
  86.  * If bits 23 through 25 are all 1's it is one of
  87.  * the above two instructions and is a write.
  88.  *
  89.  * Note: With the limited bits we are looking at,
  90.  * this will also catch PROBEW and PROBEWI. However,
  91.  * these should never get in here because they don't
  92.  * generate exceptions of the type:
  93.  *   Data TLB miss fault/data page fault
  94.  *   Data memory protection trap
  95.  */
  96. if (bits23_25set(inst) == BITSSET)
  97. return VM_WRITE;
  98. }
  99. return VM_READ; /* Default */
  100. }
  101. return VM_READ; /* Default */
  102. }
  103. #undef bit22set
  104. #undef bits23_25set
  105. #undef isGraphicsFlushRead
  106. #undef BITSSET
  107. #if 0
  108. /* This is the treewalk to find a vma which is the highest that has
  109.  * a start < addr.  We're using find_vma_prev instead right now, but
  110.  * we might want to use this at some point in the future.  Probably
  111.  * not, but I want it committed to CVS so I don't lose it :-)
  112.  */
  113. while (tree != vm_avl_empty) {
  114. if (tree->vm_start > addr) {
  115. tree = tree->vm_avl_left;
  116. } else {
  117. prev = tree;
  118. if (prev->vm_next == NULL)
  119. break;
  120. if (prev->vm_next->vm_start > addr)
  121. break;
  122. tree = tree->vm_avl_right;
  123. }
  124. }
  125. #endif
  126. void do_page_fault(struct pt_regs *regs, unsigned long code,
  127.       unsigned long address)
  128. {
  129. struct vm_area_struct *vma, *prev_vma;
  130. struct task_struct *tsk = current;
  131. struct mm_struct *mm = tsk->mm;
  132. const struct exception_table_entry *fix;
  133. unsigned long acc_type;
  134. if (in_interrupt() || !mm)
  135. goto no_context;
  136. down_read(&mm->mmap_sem);
  137. vma = find_vma_prev(mm, address, &prev_vma);
  138. if (!vma || address < vma->vm_start)
  139. goto check_expansion;
  140. /*
  141.  * Ok, we have a good vm_area for this memory access. We still need to
  142.  * check the access permissions.
  143.  */
  144. good_area:
  145. acc_type = parisc_acctyp(code,regs->iir);
  146. if ((vma->vm_flags & acc_type) != acc_type)
  147. goto bad_area;
  148. /*
  149.  * If for any reason at all we couldn't handle the fault, make
  150.  * sure we exit gracefully rather than endlessly redo the
  151.  * fault.
  152.  */
  153. switch (handle_mm_fault(mm, vma, address, (acc_type & VM_WRITE) != 0)) {
  154.       case 1:
  155. ++current->min_flt;
  156. break;
  157.       case 2:
  158. ++current->maj_flt;
  159. break;
  160.       case 0:
  161. /*
  162.  * We ran out of memory, or some other thing happened
  163.  * to us that made us unable to handle the page fault
  164.  * gracefully.
  165.  */
  166. goto bad_area;
  167.       default:
  168. goto out_of_memory;
  169. }
  170. up_read(&mm->mmap_sem);
  171. return;
  172. check_expansion:
  173. vma = prev_vma;
  174. if (vma && (expand_stack(vma, address) == 0))
  175. goto good_area;
  176. /*
  177.  * Something tried to access memory that isn't in our memory map..
  178.  */
  179. bad_area:
  180. up_read(&mm->mmap_sem);
  181. if (user_mode(regs)) {
  182. struct siginfo si;
  183. #ifdef PRINT_USER_FAULTS
  184. printk(KERN_DEBUG "n");
  185. printk(KERN_DEBUG "do_page_fault() pid=%d command='%s' type=%lu address=0x%08lxn",
  186.     tsk->pid, tsk->comm, code, address);
  187. if (vma) {
  188. printk(KERN_DEBUG "vm_start = 0x%08lx, vm_end = 0x%08lxn",
  189. vma->vm_start, vma->vm_end);
  190. }
  191. show_regs(regs);
  192. #endif
  193. /* FIXME: actually we need to get the signo and code correct */
  194. si.si_signo = SIGSEGV;
  195. si.si_errno = 0;
  196. si.si_code = SEGV_MAPERR;
  197. si.si_addr = (void *) address;
  198. force_sig_info(SIGSEGV, &si, current);
  199. return;
  200. }
  201. no_context:
  202. if (!user_mode(regs)) {
  203. fix = search_exception_table(regs->iaoq[0]);
  204. if (fix) {
  205. if (fix->skip & 1) 
  206. regs->gr[8] = -EFAULT;
  207. if (fix->skip & 2)
  208. regs->gr[9] = 0;
  209. regs->iaoq[0] += ((fix->skip) & ~3);
  210. /*
  211.  * NOTE: In some cases the faulting instruction
  212.  * may be in the delay slot of a branch. We
  213.  * don't want to take the branch, so we don't
  214.  * increment iaoq[1], instead we set it to be
  215.  * iaoq[0]+4, and clear the B bit in the PSW
  216.  */
  217. regs->iaoq[1] = regs->iaoq[0] + 4;
  218. regs->gr[0] &= ~PSW_B; /* IPSW in gr[0] */
  219. return;
  220. }
  221. }
  222. parisc_terminate("Bad Address (null pointer deref?)", regs, code, address);
  223.   out_of_memory:
  224. up_read(&mm->mmap_sem);
  225. printk(KERN_CRIT "VM: killing process %sn", current->comm);
  226. if (user_mode(regs))
  227. do_exit(SIGKILL);
  228. goto no_context;
  229. }