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

嵌入式Linux

开发平台:

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