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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * MMU fault handling support.
  3.  *
  4.  * Copyright (C) 1998-2002 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 siginfo si;
  48. unsigned long mask;
  49. /*
  50.  * If we're in an interrupt or have no user context, we must not take the fault..
  51.  */
  52. if (in_interrupt() || !mm)
  53. goto no_context;
  54. #ifdef CONFIG_VIRTUAL_MEM_MAP
  55. /*
  56.  * If fault is in region 5 and we are in the kernel, we may already
  57.          * have the mmap_sem (VALID_PAGE macro is called during mmap). There
  58.  * should be no vma for region 5 addr's anyway, so skip getting the
  59.  * semaphore and go directly to the code that handles a bad area.
  60.     */
  61. if ((REGION_NUMBER(address) == 5) && !user_mode(regs))
  62. goto bad_area_no_up;
  63. #endif
  64. down_read(&mm->mmap_sem);
  65. vma = find_vma_prev(mm, address, &prev_vma);
  66. if (!vma)
  67. goto bad_area;
  68. /* find_vma_prev() returns vma such that address < vma->vm_end or NULL */
  69. if (address < vma->vm_start)
  70. goto check_expansion;
  71.   good_area:
  72. code = SEGV_ACCERR;
  73. /* OK, we've got a good vm_area for this memory area.  Check the access permissions: */
  74. # define VM_READ_BIT 0
  75. # define VM_WRITE_BIT 1
  76. # define VM_EXEC_BIT 2
  77. # if (((1 << VM_READ_BIT) != VM_READ || (1 << VM_WRITE_BIT) != VM_WRITE) 
  78.     || (1 << VM_EXEC_BIT) != VM_EXEC)
  79. # error File is out of sync with <linux/mm.h>.  Pleaes update.
  80. # endif
  81. mask = (  (((isr >> IA64_ISR_X_BIT) & 1UL) << VM_EXEC_BIT)
  82. | (((isr >> IA64_ISR_W_BIT) & 1UL) << VM_WRITE_BIT)
  83. | (((isr >> IA64_ISR_R_BIT) & 1UL) << VM_READ_BIT));
  84. if ((vma->vm_flags & mask) != mask)
  85. goto bad_area;
  86.   survive:
  87. /*
  88.  * If for any reason at all we couldn't handle the fault, make
  89.  * sure we exit gracefully rather than endlessly redo the
  90.  * fault.
  91.  */
  92. switch (handle_mm_fault(mm, vma, address, (mask & VM_WRITE) != 0)) {
  93.       case 1:
  94. ++current->min_flt;
  95. break;
  96.       case 2:
  97. ++current->maj_flt;
  98. break;
  99.       case 0:
  100. /*
  101.  * We ran out of memory, or some other thing happened
  102.  * to us that made us unable to handle the page fault
  103.  * gracefully.
  104.  */
  105. signal = SIGBUS;
  106. goto bad_area;
  107.       default:
  108. goto out_of_memory;
  109. }
  110. up_read(&mm->mmap_sem);
  111. return;
  112.   check_expansion:
  113. if (!(prev_vma && (prev_vma->vm_flags & VM_GROWSUP) && (address == prev_vma->vm_end))) {
  114. if (!(vma->vm_flags & VM_GROWSDOWN))
  115. goto bad_area;
  116. if (rgn_index(address) != rgn_index(vma->vm_start)
  117.     || rgn_offset(address) >= RGN_MAP_LIMIT)
  118. goto bad_area;
  119. if (expand_stack(vma, address))
  120. goto bad_area;
  121. } else {
  122. vma = prev_vma;
  123. if (rgn_index(address) != rgn_index(vma->vm_start)
  124.     || rgn_offset(address) >= RGN_MAP_LIMIT)
  125. goto bad_area;
  126. if (expand_backing_store(vma, address))
  127. goto bad_area;
  128. }
  129. goto good_area;
  130.   bad_area:
  131. up_read(&mm->mmap_sem);
  132. #ifdef CONFIG_VIRTUAL_MEM_MAP
  133.   bad_area_no_up:
  134. #endif
  135. if ((isr & IA64_ISR_SP)
  136.     || ((isr & IA64_ISR_NA) && (isr & IA64_ISR_CODE_MASK) == IA64_ISR_CODE_LFETCH))
  137. {
  138. /*
  139.  * This fault was due to a speculative load or lfetch.fault, set the "ed"
  140.  * bit in the psr to ensure forward progress.  (Target register will get a
  141.  * NaT for ld.s, lfetch will be canceled.)
  142.  */
  143. ia64_psr(regs)->ed = 1;
  144. return;
  145. }
  146. if (user_mode(regs)) {
  147. si.si_signo = signal;
  148. si.si_errno = 0;
  149. si.si_code = code;
  150. si.si_addr = (void *) address;
  151. si.si_isr = isr;
  152. si.si_flags = __ISR_VALID;
  153. force_sig_info(signal, &si, current);
  154. return;
  155. }
  156.   no_context:
  157. if (isr & IA64_ISR_SP) {
  158. /*
  159.  * This fault was due to a speculative load set the "ed" bit in the psr to
  160.  * ensure forward progress (target register will get a NaT).
  161.  */
  162. ia64_psr(regs)->ed = 1;
  163. return;
  164. }
  165. if (done_with_exception(regs))
  166. return;
  167. /*
  168.  * Oops. The kernel tried to access some bad page. We'll have to terminate things
  169.  * with extreme prejudice.
  170.  */
  171. bust_spinlocks(1);
  172. if (address < PAGE_SIZE)
  173. printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
  174. else
  175. printk(KERN_ALERT "Unable to handle kernel paging request at "
  176.        "virtual address %016lxn", address);
  177. die("Oops", regs, isr);
  178. bust_spinlocks(0);
  179. do_exit(SIGKILL);
  180. return;
  181.   out_of_memory:
  182. if (current->pid == 1) {
  183. yield();
  184. goto survive;
  185. }
  186. up_read(&mm->mmap_sem);
  187. printk("VM: killing process %sn", current->comm);
  188. if (user_mode(regs))
  189. do_exit(SIGKILL);
  190. goto no_context;
  191. }