vm_fault.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. * Memory fault handling for Hexagon
  3. *
  4. * Copyright (c) 2010-2011 The Linux Foundation. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 and
  8. * only version 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  18. * 02110-1301, USA.
  19. */
  20. /*
  21. * Page fault handling for the Hexagon Virtual Machine.
  22. * Can also be called by a native port emulating the HVM
  23. * execptions.
  24. */
  25. #include <asm/pgtable.h>
  26. #include <asm/traps.h>
  27. #include <asm/uaccess.h>
  28. #include <linux/mm.h>
  29. #include <linux/signal.h>
  30. #include <linux/module.h>
  31. #include <linux/hardirq.h>
  32. /*
  33. * Decode of hardware exception sends us to one of several
  34. * entry points. At each, we generate canonical arguments
  35. * for handling by the abstract memory management code.
  36. */
  37. #define FLT_IFETCH -1
  38. #define FLT_LOAD 0
  39. #define FLT_STORE 1
  40. /*
  41. * Canonical page fault handler
  42. */
  43. void do_page_fault(unsigned long address, long cause, struct pt_regs *regs)
  44. {
  45. struct vm_area_struct *vma;
  46. struct mm_struct *mm = current->mm;
  47. siginfo_t info;
  48. int si_code = SEGV_MAPERR;
  49. int fault;
  50. const struct exception_table_entry *fixup;
  51. /*
  52. * If we're in an interrupt or have no user context,
  53. * then must not take the fault.
  54. */
  55. if (unlikely(in_interrupt() || !mm))
  56. goto no_context;
  57. local_irq_enable();
  58. down_read(&mm->mmap_sem);
  59. vma = find_vma(mm, address);
  60. if (!vma)
  61. goto bad_area;
  62. if (vma->vm_start <= address)
  63. goto good_area;
  64. if (!(vma->vm_flags & VM_GROWSDOWN))
  65. goto bad_area;
  66. if (expand_stack(vma, address))
  67. goto bad_area;
  68. good_area:
  69. /* Address space is OK. Now check access rights. */
  70. si_code = SEGV_ACCERR;
  71. switch (cause) {
  72. case FLT_IFETCH:
  73. if (!(vma->vm_flags & VM_EXEC))
  74. goto bad_area;
  75. break;
  76. case FLT_LOAD:
  77. if (!(vma->vm_flags & VM_READ))
  78. goto bad_area;
  79. break;
  80. case FLT_STORE:
  81. if (!(vma->vm_flags & VM_WRITE))
  82. goto bad_area;
  83. break;
  84. }
  85. fault = handle_mm_fault(mm, vma, address, (cause > 0));
  86. /* The most common case -- we are done. */
  87. if (likely(!(fault & VM_FAULT_ERROR))) {
  88. if (fault & VM_FAULT_MAJOR)
  89. current->maj_flt++;
  90. else
  91. current->min_flt++;
  92. up_read(&mm->mmap_sem);
  93. return;
  94. }
  95. up_read(&mm->mmap_sem);
  96. /* Handle copyin/out exception cases */
  97. if (!user_mode(regs))
  98. goto no_context;
  99. if (fault & VM_FAULT_OOM) {
  100. pagefault_out_of_memory();
  101. return;
  102. }
  103. /* User-mode address is in the memory map, but we are
  104. * unable to fix up the page fault.
  105. */
  106. if (fault & VM_FAULT_SIGBUS) {
  107. info.si_signo = SIGBUS;
  108. info.si_code = BUS_ADRERR;
  109. }
  110. /* Address is not in the memory map */
  111. else {
  112. info.si_signo = SIGSEGV;
  113. info.si_code = SEGV_ACCERR;
  114. }
  115. info.si_errno = 0;
  116. info.si_addr = (void __user *)address;
  117. force_sig_info(info.si_code, &info, current);
  118. return;
  119. bad_area:
  120. up_read(&mm->mmap_sem);
  121. if (user_mode(regs)) {
  122. info.si_signo = SIGSEGV;
  123. info.si_errno = 0;
  124. info.si_code = si_code;
  125. info.si_addr = (void *)address;
  126. force_sig_info(SIGSEGV, &info, current);
  127. return;
  128. }
  129. /* Kernel-mode fault falls through */
  130. no_context:
  131. fixup = search_exception_tables(pt_elr(regs));
  132. if (fixup) {
  133. pt_set_elr(regs, fixup->fixup);
  134. return;
  135. }
  136. /* Things are looking very, very bad now */
  137. bust_spinlocks(1);
  138. printk(KERN_EMERG "Unable to handle kernel paging request at "
  139. "virtual address 0x%08lx, regs %p\n", address, regs);
  140. die("Bad Kernel VA", regs, SIGKILL);
  141. }
  142. void read_protection_fault(struct pt_regs *regs)
  143. {
  144. unsigned long badvadr = pt_badva(regs);
  145. do_page_fault(badvadr, FLT_LOAD, regs);
  146. }
  147. void write_protection_fault(struct pt_regs *regs)
  148. {
  149. unsigned long badvadr = pt_badva(regs);
  150. do_page_fault(badvadr, FLT_STORE, regs);
  151. }
  152. void execute_protection_fault(struct pt_regs *regs)
  153. {
  154. unsigned long badvadr = pt_badva(regs);
  155. do_page_fault(badvadr, FLT_IFETCH, regs);
  156. }