1 // TODO VM_EXEC flag work-around, cache aliasing
3 * arch/xtensa/mm/fault.c
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * Copyright (C) 2001 - 2010 Tensilica Inc.
11 * Chris Zankel <chris@zankel.net>
12 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
16 #include <linux/extable.h>
17 #include <linux/hardirq.h>
18 #include <linux/perf_event.h>
19 #include <linux/uaccess.h>
20 #include <asm/mmu_context.h>
21 #include <asm/cacheflush.h>
22 #include <asm/hardirq.h>
24 DEFINE_PER_CPU(unsigned long, asid_cache
) = ASID_USER_FIRST
;
25 void bad_page_fault(struct pt_regs
*, unsigned long, int);
28 * This routine handles page faults. It determines the address,
29 * and the problem, and then passes it off to one of the appropriate
32 * Note: does not handle Miss and MultiHit.
35 void do_page_fault(struct pt_regs
*regs
)
37 struct vm_area_struct
* vma
;
38 struct mm_struct
*mm
= current
->mm
;
39 unsigned int exccause
= regs
->exccause
;
40 unsigned int address
= regs
->excvaddr
;
43 int is_write
, is_exec
;
45 unsigned int flags
= FAULT_FLAG_DEFAULT
;
49 /* We fault-in kernel-space virtual memory on-demand. The
50 * 'reference' page table is init_mm.pgd.
52 if (address
>= TASK_SIZE
&& !user_mode(regs
))
55 /* If we're in an interrupt or have no user
56 * context, we must not take the fault..
58 if (faulthandler_disabled() || !mm
) {
59 bad_page_fault(regs
, address
, SIGSEGV
);
63 is_write
= (exccause
== EXCCAUSE_STORE_CACHE_ATTRIBUTE
) ? 1 : 0;
64 is_exec
= (exccause
== EXCCAUSE_ITLB_PRIVILEGE
||
65 exccause
== EXCCAUSE_ITLB_MISS
||
66 exccause
== EXCCAUSE_FETCH_CACHE_ATTRIBUTE
) ? 1 : 0;
68 pr_debug("[%s:%d:%08x:%d:%08lx:%s%s]\n",
69 current
->comm
, current
->pid
,
70 address
, exccause
, regs
->pc
,
71 is_write
? "w" : "", is_exec
? "x" : "");
74 flags
|= FAULT_FLAG_USER
;
76 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS
, 1, regs
, address
);
80 vma
= find_vma(mm
, address
);
84 if (vma
->vm_start
<= address
)
86 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
88 if (expand_stack(vma
, address
))
91 /* Ok, we have a good vm_area for this memory access, so
99 if (!(vma
->vm_flags
& VM_WRITE
))
101 flags
|= FAULT_FLAG_WRITE
;
102 } else if (is_exec
) {
103 if (!(vma
->vm_flags
& VM_EXEC
))
105 } else /* Allow read even from write-only pages. */
106 if (!(vma
->vm_flags
& (VM_READ
| VM_WRITE
)))
109 /* If for any reason at all we couldn't handle the fault,
110 * make sure we exit gracefully rather than endlessly redo
113 fault
= handle_mm_fault(vma
, address
, flags
, regs
);
115 if (fault_signal_pending(fault
, regs
))
118 if (unlikely(fault
& VM_FAULT_ERROR
)) {
119 if (fault
& VM_FAULT_OOM
)
121 else if (fault
& VM_FAULT_SIGSEGV
)
123 else if (fault
& VM_FAULT_SIGBUS
)
127 if (flags
& FAULT_FLAG_ALLOW_RETRY
) {
128 if (fault
& VM_FAULT_RETRY
) {
129 flags
|= FAULT_FLAG_TRIED
;
131 /* No need to mmap_read_unlock(mm) as we would
132 * have already released it in __lock_page_or_retry
140 mmap_read_unlock(mm
);
143 /* Something tried to access memory that isn't in our memory map..
144 * Fix it, but check if it's kernel or user first..
147 mmap_read_unlock(mm
);
148 if (user_mode(regs
)) {
149 current
->thread
.bad_vaddr
= address
;
150 current
->thread
.error_code
= is_write
;
151 force_sig_fault(SIGSEGV
, code
, (void *) address
);
154 bad_page_fault(regs
, address
, SIGSEGV
);
158 /* We ran out of memory, or some other thing happened to us that made
159 * us unable to handle the page fault gracefully.
162 mmap_read_unlock(mm
);
163 if (!user_mode(regs
))
164 bad_page_fault(regs
, address
, SIGKILL
);
166 pagefault_out_of_memory();
170 mmap_read_unlock(mm
);
172 /* Send a sigbus, regardless of whether we were in kernel
175 current
->thread
.bad_vaddr
= address
;
176 force_sig_fault(SIGBUS
, BUS_ADRERR
, (void *) address
);
178 /* Kernel mode? Handle exceptions or die */
179 if (!user_mode(regs
))
180 bad_page_fault(regs
, address
, SIGBUS
);
185 /* Synchronize this task's top level page-table
186 * with the 'reference' page table.
188 struct mm_struct
*act_mm
= current
->active_mm
;
189 int index
= pgd_index(address
);
199 pgd
= act_mm
->pgd
+ index
;
200 pgd_k
= init_mm
.pgd
+ index
;
202 if (!pgd_present(*pgd_k
))
205 pgd_val(*pgd
) = pgd_val(*pgd_k
);
207 p4d
= p4d_offset(pgd
, address
);
208 p4d_k
= p4d_offset(pgd_k
, address
);
209 if (!p4d_present(*p4d
) || !p4d_present(*p4d_k
))
212 pud
= pud_offset(p4d
, address
);
213 pud_k
= pud_offset(p4d_k
, address
);
214 if (!pud_present(*pud
) || !pud_present(*pud_k
))
217 pmd
= pmd_offset(pud
, address
);
218 pmd_k
= pmd_offset(pud_k
, address
);
219 if (!pmd_present(*pmd
) || !pmd_present(*pmd_k
))
222 pmd_val(*pmd
) = pmd_val(*pmd_k
);
223 pte_k
= pte_offset_kernel(pmd_k
, address
);
225 if (!pte_present(*pte_k
))
230 bad_page_fault(regs
, address
, SIGKILL
);
236 bad_page_fault(struct pt_regs
*regs
, unsigned long address
, int sig
)
238 extern void die(const char*, struct pt_regs
*, long);
239 const struct exception_table_entry
*entry
;
241 /* Are we prepared to handle this kernel fault? */
242 if ((entry
= search_exception_tables(regs
->pc
)) != NULL
) {
243 pr_debug("%s: Exception at pc=%#010lx (%lx)\n",
244 current
->comm
, regs
->pc
, entry
->fixup
);
245 current
->thread
.bad_uaddr
= address
;
246 regs
->pc
= entry
->fixup
;
250 /* Oops. The kernel tried to access some bad page. We'll have to
251 * terminate things with extreme prejudice.
253 pr_alert("Unable to handle kernel paging request at virtual "
254 "address %08lx\n pc = %08lx, ra = %08lx\n",
255 address
, regs
->pc
, regs
->areg
[0]);
256 die("Oops", regs
, sig
);