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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/cris/mm/fault.c
  3.  *
  4.  *  Copyright (C) 2000, 2001  Axis Communications AB
  5.  *
  6.  *  Authors:  Bjorn Wesen 
  7.  * 
  8.  *  $Log: fault.c,v $
  9.  *  Revision 1.21  2002/05/28 14:24:56  bjornw
  10.  *  Corrected typo
  11.  *
  12.  *  Revision 1.20  2001/11/22 13:34:06  bjornw
  13.  *  * Bug workaround (LX TR89): force a rerun of the whole of an interrupted
  14.  *    unaligned write, because the second half of the write will be corrupted
  15.  *    otherwise. Affected unaligned writes spanning not-yet mapped pages.
  16.  *  * Optimization: use the wr_rd bit in R_MMU_CAUSE to know whether a miss
  17.  *    was due to a read or a write (before we didn't know this until the next
  18.  *    restart of the interrupted instruction, thus wasting one fault-irq)
  19.  *
  20.  *  Revision 1.19  2001/11/12 19:02:10  pkj
  21.  *  Fixed compiler warnings.
  22.  *
  23.  *  Revision 1.18  2001/07/18 22:14:32  bjornw
  24.  *  Enable interrupts in the bulk of do_page_fault
  25.  *
  26.  *  Revision 1.17  2001/07/18 13:07:23  bjornw
  27.  *  * Detect non-existant PTE's in vmalloc pmd synchronization
  28.  *  * Remove comment about fast-paths for VMALLOC_START etc, because all that
  29.  *    was totally bogus anyway it turned out :)
  30.  *  * Fix detection of vmalloc-area synchronization
  31.  *  * Add some comments
  32.  *
  33.  *  Revision 1.16  2001/06/13 00:06:08  bjornw
  34.  *  current_pgd should be volatile
  35.  *
  36.  *  Revision 1.15  2001/06/13 00:02:23  bjornw
  37.  *  Use a separate variable to store the current pgd to avoid races in schedule
  38.  *
  39.  *  Revision 1.14  2001/05/16 17:41:07  hp
  40.  *  Last comment tweak further tweaked.
  41.  *
  42.  *  Revision 1.13  2001/05/15 00:58:44  hp
  43.  *  Expand a bit on the comment why we compare address >= TASK_SIZE rather
  44.  *  than >= VMALLOC_START.
  45.  *
  46.  *  Revision 1.12  2001/04/04 10:51:14  bjornw
  47.  *  mmap_sem is grabbed for reading
  48.  *
  49.  *  Revision 1.11  2001/03/23 07:36:07  starvik
  50.  *  Corrected according to review remarks
  51.  *
  52.  *  Revision 1.10  2001/03/21 16:10:11  bjornw
  53.  *  CRIS_FRAME_FIXUP not needed anymore, use FRAME_NORMAL
  54.  *
  55.  *  Revision 1.9  2001/03/05 13:22:20  bjornw
  56.  *  Spell-fix and fix in vmalloc_fault handling
  57.  *
  58.  *  Revision 1.8  2000/11/22 14:45:31  bjornw
  59.  *  * 2.4.0-test10 removed the set_pgdir instantaneous kernel global mapping
  60.  *    into all processes. Instead we fill in the missing PTE entries on demand.
  61.  *
  62.  *  Revision 1.7  2000/11/21 16:39:09  bjornw
  63.  *  fixup switches frametype
  64.  *
  65.  *  Revision 1.6  2000/11/17 16:54:08  bjornw
  66.  *  More detailed siginfo reporting
  67.  *
  68.  *
  69.  */
  70. #include <linux/signal.h>
  71. #include <linux/sched.h>
  72. #include <linux/kernel.h>
  73. #include <linux/errno.h>
  74. #include <linux/string.h>
  75. #include <linux/types.h>
  76. #include <linux/ptrace.h>
  77. #include <linux/mman.h>
  78. #include <linux/mm.h>
  79. #include <linux/interrupt.h>
  80. #include <asm/system.h>
  81. #include <asm/segment.h>
  82. #include <asm/pgtable.h>
  83. #include <asm/uaccess.h>
  84. #include <asm/svinto.h>
  85. extern void die_if_kernel(const char *,struct pt_regs *,long);
  86. asmlinkage void do_invalid_op (struct pt_regs *, unsigned long);
  87. asmlinkage void do_page_fault(unsigned long address, struct pt_regs *regs,
  88.       int error_code);
  89. /* debug of low-level TLB reload */
  90. #undef DEBUG
  91. #ifdef DEBUG
  92. #define D(x) x
  93. #else
  94. #define D(x)
  95. #endif
  96. /* debug of higher-level faults */
  97. #define DPG(x)
  98. /* current active page directory */
  99. volatile pgd_t *current_pgd;
  100. /* fast TLB-fill fault handler
  101.  * this is called from entry.S with interrupts disabled
  102.  */
  103. void
  104. handle_mmu_bus_fault(struct pt_regs *regs)
  105. {
  106. int cause, select;
  107. #ifdef DEBUG
  108. int index;
  109. int page_id;
  110. int acc, inv;
  111. #endif
  112. int miss, we, writeac;
  113. pmd_t *pmd;
  114. pte_t pte;
  115. int errcode;
  116. unsigned long address;
  117. cause = *R_MMU_CAUSE;
  118. select = *R_TLB_SELECT;
  119. address = cause & PAGE_MASK; /* get faulting address */
  120. #ifdef DEBUG
  121. page_id = IO_EXTRACT(R_MMU_CAUSE,  page_id,   cause);
  122. acc     = IO_EXTRACT(R_MMU_CAUSE,  acc_excp,  cause);
  123. inv     = IO_EXTRACT(R_MMU_CAUSE,  inv_excp,  cause);  
  124. index   = IO_EXTRACT(R_TLB_SELECT, index,     select);
  125. #endif
  126. miss    = IO_EXTRACT(R_MMU_CAUSE,  miss_excp, cause);
  127. we      = IO_EXTRACT(R_MMU_CAUSE,  we_excp,   cause);
  128. writeac = IO_EXTRACT(R_MMU_CAUSE,  wr_rd,     cause);
  129. /* ETRAX 100LX TR89 bugfix: if the second half of an unaligned
  130.  * write causes a MMU-fault, it will not be restarted correctly.
  131.  * This could happen if a write crosses a page-boundary and the
  132.  * second page is not yet COW'ed or even loaded. The workaround
  133.  * is to clear the unaligned bit in the CPU status record, so 
  134.  * that the CPU will rerun both the first and second halves of
  135.  * the instruction. This will not have any sideeffects unless
  136.  * the first half goes to any device or memory that can't be
  137.  * written twice, and which is mapped through the MMU.
  138.  *
  139.  * We only need to do this for writes.
  140.  */
  141. if(writeac)
  142. regs->csrinstr &= ~(1 << 5);
  143. /* Set errcode's R/W flag according to the mode which caused the
  144.  * fault
  145.  */
  146. errcode = writeac << 1;
  147. D(printk("bus_fault from IRP 0x%lx: addr 0x%lx, miss %d, inv %d, we %d, acc %d, dx %d pid %dn",
  148.  regs->irp, address, miss, inv, we, acc, index, page_id));
  149. /* for a miss, we need to reload the TLB entry */
  150. if (miss) {
  151. /* see if the pte exists at all
  152.  * refer through current_pgd, dont use mm->pgd
  153.  */
  154. pmd = (pmd_t *)(current_pgd + pgd_index(address));
  155. if (pmd_none(*pmd))
  156. goto dofault;
  157. if (pmd_bad(*pmd)) {
  158. printk("bad pgdir entry 0x%lx at 0x%pn", *(unsigned long*)pmd, pmd);
  159. pmd_clear(pmd);
  160. return;
  161. }
  162. pte = *pte_offset(pmd, address);
  163. if (!pte_present(pte))
  164. goto dofault;
  165. #ifdef DEBUG
  166. printk(" found pte %lx pg %p ", pte_val(pte), pte_page(pte));
  167. if (pte_val(pte) & _PAGE_SILENT_WRITE)
  168. printk("Silent-W ");
  169. if (pte_val(pte) & _PAGE_KERNEL)
  170. printk("Kernel ");
  171. if (pte_val(pte) & _PAGE_SILENT_READ)
  172. printk("Silent-R ");
  173. if (pte_val(pte) & _PAGE_GLOBAL)
  174. printk("Global ");
  175. if (pte_val(pte) & _PAGE_PRESENT)
  176. printk("Present ");
  177. if (pte_val(pte) & _PAGE_ACCESSED)
  178. printk("Accessed ");
  179. if (pte_val(pte) & _PAGE_MODIFIED)
  180. printk("Modified ");
  181. if (pte_val(pte) & _PAGE_READ)
  182. printk("Readable ");
  183. if (pte_val(pte) & _PAGE_WRITE)
  184. printk("Writeable ");
  185. printk("n");
  186. #endif
  187. /* load up the chosen TLB entry
  188.  * this assumes the pte format is the same as the TLB_LO layout.
  189.  *
  190.  * the write to R_TLB_LO also writes the vpn and page_id fields from
  191.  * R_MMU_CAUSE, which we in this case obviously want to keep
  192.  */
  193. *R_TLB_LO = pte_val(pte);
  194. return;
  195. errcode = 1 | (we << 1);
  196.  dofault:
  197. /* leave it to the MM system fault handler below */
  198. D(printk("do_page_fault %lx errcode %dn", address, errcode));
  199. do_page_fault(address, regs, errcode);
  200. }
  201. /*
  202.  * This routine handles page faults.  It determines the address,
  203.  * and the problem, and then passes it off to one of the appropriate
  204.  * routines.
  205.  *
  206.  * Notice that the address we're given is aligned to the page the fault
  207.  * occurred in, since we only get the PFN in R_MMU_CAUSE not the complete
  208.  * address.
  209.  *
  210.  * error_code:
  211.  * bit 0 == 0 means no page found, 1 means protection fault
  212.  * bit 1 == 0 means read, 1 means write
  213.  *
  214.  * If this routine detects a bad access, it returns 1, otherwise it
  215.  * returns 0.
  216.  */
  217. asmlinkage void
  218. do_page_fault(unsigned long address, struct pt_regs *regs,
  219.       int error_code)
  220. {
  221. struct task_struct *tsk;
  222. struct mm_struct *mm;
  223. struct vm_area_struct * vma;
  224. int writeaccess;
  225. unsigned long fixup;
  226. siginfo_t info;
  227. tsk = current;
  228. /*
  229.  * We fault-in kernel-space virtual memory on-demand. The
  230.  * 'reference' page table is init_mm.pgd.
  231.  *
  232.  * NOTE! We MUST NOT take any locks for this case. We may
  233.  * be in an interrupt or a critical region, and should
  234.  * only copy the information from the master page table,
  235.  * nothing more.
  236.  *
  237.  * NOTE2: This is done so that, when updating the vmalloc
  238.  * mappings we don't have to walk all processes pgdirs and
  239.  * add the high mappings all at once. Instead we do it as they
  240.  * are used. However vmalloc'ed page entries have the PAGE_GLOBAL
  241.  * bit set so sometimes the TLB can use a lingering entry.
  242.  *
  243.  * This verifies that the fault happens in kernel space
  244.  * and that the fault was not a protection error (error_code & 1).
  245.  */
  246. if (address >= VMALLOC_START &&
  247.     !(error_code & 1) &&
  248.     !user_mode(regs))
  249. goto vmalloc_fault;
  250. /* we can and should enable interrupts at this point */
  251. sti();
  252. mm = tsk->mm;
  253. writeaccess = error_code & 2;
  254. info.si_code = SEGV_MAPERR;
  255. /*
  256.  * If we're in an interrupt or have no user
  257.  * context, we must not take the fault..
  258.  */
  259. if (in_interrupt() || !mm)
  260. goto no_context;
  261. down_read(&mm->mmap_sem);
  262. vma = find_vma(mm, address);
  263. if (!vma)
  264. goto bad_area;
  265. if (vma->vm_start <= address)
  266. goto good_area;
  267. if (!(vma->vm_flags & VM_GROWSDOWN))
  268. goto bad_area;
  269. if (user_mode(regs)) {
  270. /*
  271.  * accessing the stack below usp is always a bug.
  272.  * we get page-aligned addresses so we can only check
  273.  * if we're within a page from usp, but that might be
  274.  * enough to catch brutal errors at least.
  275.  */
  276. if (address + PAGE_SIZE < rdusp())
  277. goto bad_area;
  278. }
  279. if (expand_stack(vma, address))
  280. goto bad_area;
  281. /*
  282.  * Ok, we have a good vm_area for this memory access, so
  283.  * we can handle it..
  284.  */
  285.  good_area:
  286. info.si_code = SEGV_ACCERR;
  287. /* first do some preliminary protection checks */
  288. if (writeaccess) {
  289. if (!(vma->vm_flags & VM_WRITE))
  290. goto bad_area;
  291. } else {
  292. if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
  293. goto bad_area;
  294. }
  295. /*
  296.  * If for any reason at all we couldn't handle the fault,
  297.  * make sure we exit gracefully rather than endlessly redo
  298.  * the fault.
  299.  */
  300. switch (handle_mm_fault(mm, vma, address, writeaccess)) {
  301. case 1:
  302. tsk->min_flt++;
  303. break;
  304. case 2:
  305. tsk->maj_flt++;
  306. break;
  307. case 0:
  308. goto do_sigbus;
  309. default:
  310. goto out_of_memory;
  311. }
  312. up_read(&mm->mmap_sem);
  313. return;
  314. /*
  315.  * Something tried to access memory that isn't in our memory map..
  316.  * Fix it, but check if it's kernel or user first..
  317.  */
  318.  bad_area:
  319. up_read(&mm->mmap_sem);
  320.  bad_area_nosemaphore:
  321. DPG(show_registers(regs));
  322. /* User mode accesses just cause a SIGSEGV */
  323. if (user_mode(regs)) {
  324. info.si_signo = SIGSEGV;
  325. info.si_errno = 0;
  326. /* info.si_code has been set above */
  327. info.si_addr = (void *)address;
  328. force_sig_info(SIGSEGV, &info, tsk);
  329. return;
  330. }
  331.  no_context:
  332. /* Are we prepared to handle this kernel fault?
  333.  *
  334.  * (The kernel has valid exception-points in the source 
  335.  *  when it acesses user-memory. When it fails in one
  336.  *  of those points, we find it in a table and do a jump
  337.  *  to some fixup code that loads an appropriate error
  338.  *  code)
  339.  */
  340. if ((fixup = search_exception_table(regs->irp)) != 0) {
  341. /* Adjust the instruction pointer in the stackframe */
  342. regs->irp = fixup;
  343. /* We do not want to return by restoring the CPU-state
  344.  * anymore, so switch frame-types (see ptrace.h)
  345.  */
  346. regs->frametype = CRIS_FRAME_NORMAL;
  347. D(printk("doing fixup to 0x%lxn", fixup));
  348. return;
  349. }
  350. /*
  351.  * Oops. The kernel tried to access some bad page. We'll have to
  352.  * terminate things with extreme prejudice.
  353.  */
  354. if ((unsigned long) (address) < PAGE_SIZE)
  355. printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
  356. else
  357. printk(KERN_ALERT "Unable to handle kernel access");
  358. printk(" at virtual address %08lxn",address);
  359. die_if_kernel("Oops", regs, error_code);
  360. do_exit(SIGKILL);
  361. /*
  362.  * We ran out of memory, or some other thing happened to us that made
  363.  * us unable to handle the page fault gracefully.
  364.  */
  365.  out_of_memory:
  366. up_read(&mm->mmap_sem);
  367. printk("VM: killing process %sn", tsk->comm);
  368. if (user_mode(regs))
  369. do_exit(SIGKILL);
  370. goto no_context;
  371.  do_sigbus:
  372. up_read(&mm->mmap_sem);
  373. /*
  374.  * Send a sigbus, regardless of whether we were in kernel
  375.  * or user mode.
  376.  */
  377. info.si_signo = SIGBUS;
  378. info.si_errno = 0;
  379. info.si_code = BUS_ADRERR;
  380. info.si_addr = (void *)address;
  381. force_sig_info(SIGBUS, &info, tsk);
  382. /* Kernel mode? Handle exceptions or die */
  383. if (!user_mode(regs))
  384. goto no_context;
  385. return;
  386. vmalloc_fault:
  387. {
  388. /*
  389.  * Synchronize this task's top level page-table
  390.  * with the 'reference' page table.
  391.  *
  392.  * Use current_pgd instead of tsk->active_mm->pgd
  393.  * since the latter might be unavailable if this
  394.  * code is executed in a misfortunately run irq
  395.  * (like inside schedule() between switch_mm and
  396.  *  switch_to...).
  397.  */
  398. int offset = pgd_index(address);
  399. pgd_t *pgd, *pgd_k;
  400. pmd_t *pmd, *pmd_k;
  401. pte_t *pte_k;
  402. pgd = (pgd_t *)current_pgd + offset;
  403. pgd_k = init_mm.pgd + offset;
  404. /* Since we're two-level, we don't need to do both
  405.  * set_pgd and set_pmd (they do the same thing). If
  406.  * we go three-level at some point, do the right thing
  407.  * with pgd_present and set_pgd here. 
  408.  * 
  409.  * Also, since the vmalloc area is global, we don't
  410.  * need to copy individual PTE's, it is enough to
  411.  * copy the pgd pointer into the pte page of the
  412.  * root task. If that is there, we'll find our pte if
  413.  * it exists.
  414.  */
  415. pmd = pmd_offset(pgd, address);
  416. pmd_k = pmd_offset(pgd_k, address);
  417. if (!pmd_present(*pmd_k))
  418. goto bad_area_nosemaphore;
  419. set_pmd(pmd, *pmd_k);
  420. /* Make sure the actual PTE exists as well to
  421.  * catch kernel vmalloc-area accesses to non-mapped
  422.  * addresses. If we don't do this, this will just
  423.  * silently loop forever.
  424.  */
  425. pte_k = pte_offset(pmd_k, address);
  426. if (!pte_present(*pte_k))
  427. goto no_context;
  428. return;
  429. }
  430. }