2 * linux/arch/cris/mm/fault.c
4 * Copyright (C) 2000, 2001 Axis Communications AB
9 * Revision 1.11 2004/05/14 07:58:05 starvik
10 * Merge of changes from 2.4
12 * Revision 1.10 2003/10/27 14:51:24 starvik
15 * Revision 1.9 2003/10/27 14:50:42 starvik
16 * Changed do_page_fault signature
18 * Revision 1.8 2003/07/04 13:02:48 tobiasa
19 * Moved code snippet from arch/cris/mm/fault.c that searches for fixup code
20 * to seperate function in arch-specific files.
22 * Revision 1.7 2003/01/22 06:48:38 starvik
23 * Fixed warnings issued by GCC 3.2.1
25 * Revision 1.6 2003/01/09 14:42:52 starvik
26 * Merge of Linux 2.5.55
28 * Revision 1.5 2002/12/11 14:44:48 starvik
29 * Extracted v10 (ETRAX 100LX) specific stuff to arch/cris/arch-v10/mm
31 * Revision 1.4 2002/11/13 15:10:28 starvik
32 * pte_offset has been renamed to pte_offset_kernel
34 * Revision 1.3 2002/11/05 06:45:13 starvik
35 * Merge of Linux 2.5.45
37 * Revision 1.2 2001/12/18 13:35:22 bjornw
38 * Applied the 2.4.13->2.4.16 CRIS patch to 2.5.1 (is a copy of 2.4.15).
40 * Revision 1.20 2001/11/22 13:34:06 bjornw
41 * * Bug workaround (LX TR89): force a rerun of the whole of an interrupted
42 * unaligned write, because the second half of the write will be corrupted
43 * otherwise. Affected unaligned writes spanning not-yet mapped pages.
44 * * Optimization: use the wr_rd bit in R_MMU_CAUSE to know whether a miss
45 * was due to a read or a write (before we didn't know this until the next
46 * restart of the interrupted instruction, thus wasting one fault-irq)
48 * Revision 1.19 2001/11/12 19:02:10 pkj
49 * Fixed compiler warnings.
51 * Revision 1.18 2001/07/18 22:14:32 bjornw
52 * Enable interrupts in the bulk of do_page_fault
54 * Revision 1.17 2001/07/18 13:07:23 bjornw
55 * * Detect non-existant PTE's in vmalloc pmd synchronization
56 * * Remove comment about fast-paths for VMALLOC_START etc, because all that
57 * was totally bogus anyway it turned out :)
58 * * Fix detection of vmalloc-area synchronization
61 * Revision 1.16 2001/06/13 00:06:08 bjornw
62 * current_pgd should be volatile
64 * Revision 1.15 2001/06/13 00:02:23 bjornw
65 * Use a separate variable to store the current pgd to avoid races in schedule
67 * Revision 1.14 2001/05/16 17:41:07 hp
68 * Last comment tweak further tweaked.
70 * Revision 1.13 2001/05/15 00:58:44 hp
71 * Expand a bit on the comment why we compare address >= TASK_SIZE rather
72 * than >= VMALLOC_START.
74 * Revision 1.12 2001/04/04 10:51:14 bjornw
75 * mmap_sem is grabbed for reading
77 * Revision 1.11 2001/03/23 07:36:07 starvik
78 * Corrected according to review remarks
80 * Revision 1.10 2001/03/21 16:10:11 bjornw
81 * CRIS_FRAME_FIXUP not needed anymore, use FRAME_NORMAL
83 * Revision 1.9 2001/03/05 13:22:20 bjornw
84 * Spell-fix and fix in vmalloc_fault handling
86 * Revision 1.8 2000/11/22 14:45:31 bjornw
87 * * 2.4.0-test10 removed the set_pgdir instantaneous kernel global mapping
88 * into all processes. Instead we fill in the missing PTE entries on demand.
90 * Revision 1.7 2000/11/21 16:39:09 bjornw
91 * fixup switches frametype
93 * Revision 1.6 2000/11/17 16:54:08 bjornw
94 * More detailed siginfo reporting
100 #include <linux/interrupt.h>
101 #include <linux/module.h>
102 #include <asm/uaccess.h>
104 extern int find_fixup_code(struct pt_regs
*);
105 extern void die_if_kernel(const char *, struct pt_regs
*, long);
107 /* debug of low-level TLB reload */
116 /* debug of higher-level faults */
119 /* current active page directory */
121 volatile pgd_t
*current_pgd
;
124 * This routine handles page faults. It determines the address,
125 * and the problem, and then passes it off to one of the appropriate
128 * Notice that the address we're given is aligned to the page the fault
129 * occurred in, since we only get the PFN in R_MMU_CAUSE not the complete
133 * bit 0 == 0 means no page found, 1 means protection fault
134 * bit 1 == 0 means read, 1 means write
136 * If this routine detects a bad access, it returns 1, otherwise it
141 do_page_fault(unsigned long address
, struct pt_regs
*regs
,
142 int protection
, int writeaccess
)
144 struct task_struct
*tsk
;
145 struct mm_struct
*mm
;
146 struct vm_area_struct
* vma
;
149 D(printk("Page fault for %X at %X, prot %d write %d\n",
150 address
, regs
->erp
, protection
, writeaccess
));
155 * We fault-in kernel-space virtual memory on-demand. The
156 * 'reference' page table is init_mm.pgd.
158 * NOTE! We MUST NOT take any locks for this case. We may
159 * be in an interrupt or a critical region, and should
160 * only copy the information from the master page table,
163 * NOTE2: This is done so that, when updating the vmalloc
164 * mappings we don't have to walk all processes pgdirs and
165 * add the high mappings all at once. Instead we do it as they
166 * are used. However vmalloc'ed page entries have the PAGE_GLOBAL
167 * bit set so sometimes the TLB can use a lingering entry.
169 * This verifies that the fault happens in kernel space
170 * and that the fault was not a protection error (error_code & 1).
173 if (address
>= VMALLOC_START
&&
178 /* we can and should enable interrupts at this point */
182 info
.si_code
= SEGV_MAPERR
;
185 * If we're in an interrupt or have no user
186 * context, we must not take the fault..
189 if (in_interrupt() || !mm
)
192 down_read(&mm
->mmap_sem
);
193 vma
= find_vma(mm
, address
);
196 if (vma
->vm_start
<= address
)
198 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
200 if (user_mode(regs
)) {
202 * accessing the stack below usp is always a bug.
203 * we get page-aligned addresses so we can only check
204 * if we're within a page from usp, but that might be
205 * enough to catch brutal errors at least.
207 if (address
+ PAGE_SIZE
< rdusp())
210 if (expand_stack(vma
, address
))
214 * Ok, we have a good vm_area for this memory access, so
219 info
.si_code
= SEGV_ACCERR
;
221 /* first do some preliminary protection checks */
224 if (!(vma
->vm_flags
& VM_WRITE
))
227 if (!(vma
->vm_flags
& (VM_READ
| VM_EXEC
)))
232 * If for any reason at all we couldn't handle the fault,
233 * make sure we exit gracefully rather than endlessly redo
237 switch (handle_mm_fault(mm
, vma
, address
, writeaccess
)) {
250 up_read(&mm
->mmap_sem
);
254 * Something tried to access memory that isn't in our memory map..
255 * Fix it, but check if it's kernel or user first..
259 up_read(&mm
->mmap_sem
);
261 bad_area_nosemaphore
:
262 DPG(show_registers(regs
));
264 /* User mode accesses just cause a SIGSEGV */
266 if (user_mode(regs
)) {
267 info
.si_signo
= SIGSEGV
;
269 /* info.si_code has been set above */
270 info
.si_addr
= (void *)address
;
271 force_sig_info(SIGSEGV
, &info
, tsk
);
277 /* Are we prepared to handle this kernel fault?
279 * (The kernel has valid exception-points in the source
280 * when it acesses user-memory. When it fails in one
281 * of those points, we find it in a table and do a jump
282 * to some fixup code that loads an appropriate error
286 if (find_fixup_code(regs
))
290 * Oops. The kernel tried to access some bad page. We'll have to
291 * terminate things with extreme prejudice.
294 if ((unsigned long) (address
) < PAGE_SIZE
)
295 printk(KERN_ALERT
"Unable to handle kernel NULL pointer dereference");
297 printk(KERN_ALERT
"Unable to handle kernel access");
298 printk(" at virtual address %08lx\n",address
);
300 die_if_kernel("Oops", regs
, (writeaccess
<< 1) | protection
);
305 * We ran out of memory, or some other thing happened to us that made
306 * us unable to handle the page fault gracefully.
310 up_read(&mm
->mmap_sem
);
311 printk("VM: killing process %s\n", tsk
->comm
);
317 up_read(&mm
->mmap_sem
);
320 * Send a sigbus, regardless of whether we were in kernel
323 info
.si_signo
= SIGBUS
;
325 info
.si_code
= BUS_ADRERR
;
326 info
.si_addr
= (void *)address
;
327 force_sig_info(SIGBUS
, &info
, tsk
);
329 /* Kernel mode? Handle exceptions or die */
330 if (!user_mode(regs
))
337 * Synchronize this task's top level page-table
338 * with the 'reference' page table.
340 * Use current_pgd instead of tsk->active_mm->pgd
341 * since the latter might be unavailable if this
342 * code is executed in a misfortunately run irq
343 * (like inside schedule() between switch_mm and
347 int offset
= pgd_index(address
);
352 pgd
= (pgd_t
*)current_pgd
+ offset
;
353 pgd_k
= init_mm
.pgd
+ offset
;
355 /* Since we're two-level, we don't need to do both
356 * set_pgd and set_pmd (they do the same thing). If
357 * we go three-level at some point, do the right thing
358 * with pgd_present and set_pgd here.
360 * Also, since the vmalloc area is global, we don't
361 * need to copy individual PTE's, it is enough to
362 * copy the pgd pointer into the pte page of the
363 * root task. If that is there, we'll find our pte if
367 pmd
= pmd_offset(pgd
, address
);
368 pmd_k
= pmd_offset(pgd_k
, address
);
370 if (!pmd_present(*pmd_k
))
371 goto bad_area_nosemaphore
;
373 set_pmd(pmd
, *pmd_k
);
375 /* Make sure the actual PTE exists as well to
376 * catch kernel vmalloc-area accesses to non-mapped
377 * addresses. If we don't do this, this will just
378 * silently loop forever.
381 pte_k
= pte_offset_kernel(pmd_k
, address
);
382 if (!pte_present(*pte_k
))