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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * MMU fault handling support.
  3.  *
  4.  * Copyright (C) 1998-2001 Hewlett-Packard Co
  5.  * David Mosberger-Tang <davidm@hpl.hp.com>
  6.  */
  7. #include <linux/sched.h>
  8. #include <linux/kernel.h>
  9. #include <linux/mm.h>
  10. #include <linux/smp_lock.h>
  11. #include <linux/interrupt.h>
  12. #include <asm/pgtable.h>
  13. #include <asm/processor.h>
  14. #include <asm/system.h>
  15. #include <asm/uaccess.h>
  16. #include <asm/hardirq.h>
  17. extern void die (char *, struct pt_regs *, long);
  18. /*
  19.  * This routine is analogous to expand_stack() but instead grows the
  20.  * register backing store (which grows towards higher addresses).
  21.  * Since the register backing store is access sequentially, we
  22.  * disallow growing the RBS by more than a page at a time.  Note that
  23.  * the VM_GROWSUP flag can be set on any VM area but that's fine
  24.  * because the total process size is still limited by RLIMIT_STACK and
  25.  * RLIMIT_AS.
  26.  */
  27. static inline long
  28. expand_backing_store (struct vm_area_struct *vma, unsigned long address)
  29. {
  30. unsigned long grow;
  31. grow = PAGE_SIZE >> PAGE_SHIFT;
  32. if (address - vma->vm_start > current->rlim[RLIMIT_STACK].rlim_cur
  33.     || (((vma->vm_mm->total_vm + grow) << PAGE_SHIFT) > current->rlim[RLIMIT_AS].rlim_cur))
  34. return -ENOMEM;
  35. vma->vm_end += PAGE_SIZE;
  36. vma->vm_mm->total_vm += grow;
  37. if (vma->vm_flags & VM_LOCKED)
  38. vma->vm_mm->locked_vm += grow;
  39. return 0;
  40. }
  41. void
  42. ia64_do_page_fault (unsigned long address, unsigned long isr, struct pt_regs *regs)
  43. {
  44. int signal = SIGSEGV, code = SEGV_MAPERR;
  45. struct vm_area_struct *vma, *prev_vma;
  46. struct mm_struct *mm = current->mm;
  47. struct exception_fixup fix;
  48. struct siginfo si;
  49. unsigned long mask;
  50. /*
  51.  * If we're in an interrupt or have no user context, we must not take the fault..
  52.  */
  53. if (in_interrupt() || !mm)
  54. goto no_context;
  55. down_read(&mm->mmap_sem);
  56. vma = find_vma_prev(mm, address, &prev_vma);
  57. if (!vma)
  58. goto bad_area;
  59. /* find_vma_prev() returns vma such that address < vma->vm_end or NULL */
  60. if (address < vma->vm_start)
  61. goto check_expansion;
  62.   good_area:
  63. code = SEGV_ACCERR;
  64. /* OK, we've got a good vm_area for this memory area.  Check the access permissions: */
  65. # define VM_READ_BIT 0
  66. # define VM_WRITE_BIT 1
  67. # define VM_EXEC_BIT 2
  68. # if (((1 << VM_READ_BIT) != VM_READ || (1 << VM_WRITE_BIT) != VM_WRITE) 
  69.     || (1 << VM_EXEC_BIT) != VM_EXEC)
  70. # error File is out of sync with <linux/mm.h>.  Pleaes update.
  71. # endif
  72. mask = (  (((isr >> IA64_ISR_X_BIT) & 1UL) << VM_EXEC_BIT)
  73. | (((isr >> IA64_ISR_W_BIT) & 1UL) << VM_WRITE_BIT)
  74. | (((isr >> IA64_ISR_R_BIT) & 1UL) << VM_READ_BIT));
  75. if ((vma->vm_flags & mask) != mask)
  76. goto bad_area;
  77.   survive:
  78. /*
  79.  * If for any reason at all we couldn't handle the fault, make
  80.  * sure we exit gracefully rather than endlessly redo the
  81.  * fault.
  82.  */
  83. switch (handle_mm_fault(mm, vma, address, mask)) {
  84.       case 1:
  85. ++current->min_flt;
  86. break;
  87.       case 2:
  88. ++current->maj_flt;
  89. break;
  90.       case 0:
  91. /*
  92.  * We ran out of memory, or some other thing happened
  93.  * to us that made us unable to handle the page fault
  94.  * gracefully.
  95.  */
  96. signal = SIGBUS;
  97. goto bad_area;
  98.       default:
  99. goto out_of_memory;
  100. }
  101. up_read(&mm->mmap_sem);
  102. return;
  103.   check_expansion:
  104. if (!(prev_vma && (prev_vma->vm_flags & VM_GROWSUP) && (address == prev_vma->vm_end))) {
  105. if (!(vma->vm_flags & VM_GROWSDOWN))
  106. goto bad_area;
  107. if (rgn_index(address) != rgn_index(vma->vm_start)
  108.     || rgn_offset(address) >= RGN_MAP_LIMIT)
  109. goto bad_area;
  110. if (expand_stack(vma, address))
  111. goto bad_area;
  112. } else {
  113. vma = prev_vma;
  114. if (rgn_index(address) != rgn_index(vma->vm_start)
  115.     || rgn_offset(address) >= RGN_MAP_LIMIT)
  116. goto bad_area;
  117. if (expand_backing_store(vma, address))
  118. goto bad_area;
  119. }
  120. goto good_area;
  121.   bad_area:
  122. up_read(&mm->mmap_sem);
  123. if (isr & IA64_ISR_SP) {
  124. /*
  125.  * This fault was due to a speculative load set the "ed" bit in the psr to
  126.  * ensure forward progress (target register will get a NaT).
  127.  */
  128. ia64_psr(regs)->ed = 1;
  129. return;
  130. }
  131. if (user_mode(regs)) {
  132. si.si_signo = signal;
  133. si.si_errno = 0;
  134. si.si_code = code;
  135. si.si_addr = (void *) address;
  136. force_sig_info(signal, &si, current);
  137. return;
  138. }
  139.   no_context:
  140. if (isr & IA64_ISR_SP) {
  141. /*
  142.  * This fault was due to a speculative load set the "ed" bit in the psr to
  143.  * ensure forward progress (target register will get a NaT).
  144.  */
  145. ia64_psr(regs)->ed = 1;
  146. return;
  147. }
  148. #ifdef GAS_HAS_LOCAL_TAGS
  149. fix = search_exception_table(regs->cr_iip + ia64_psr(regs)->ri);
  150. #else
  151. fix = search_exception_table(regs->cr_iip);
  152. #endif
  153. if (fix.cont) {
  154. handle_exception(regs, fix);
  155. return;
  156. }
  157. /*
  158.  * Oops. The kernel tried to access some bad page. We'll have to terminate things
  159.  * with extreme prejudice.
  160.  */
  161. bust_spinlocks(1);
  162. if (address < PAGE_SIZE)
  163. printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
  164. else
  165. printk(KERN_ALERT "Unable to handle kernel paging request at "
  166.        "virtual address %016lxn", address);
  167. die("Oops", regs, isr);
  168. bust_spinlocks(0);
  169. do_exit(SIGKILL);
  170. return;
  171.   out_of_memory:
  172. up_read(&mm->mmap_sem);
  173. if (current->pid == 1) {
  174. current->policy |= SCHED_YIELD;
  175. schedule();
  176. down_read(&mm->mmap_sem);
  177. goto survive;
  178. }
  179. printk("VM: killing process %sn", current->comm);
  180. if (user_mode(regs))
  181. do_exit(SIGKILL);
  182. goto no_context;
  183. }