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>
23 #include <asm/pgalloc.h>
25 DEFINE_PER_CPU(unsigned long, asid_cache
) = ASID_USER_FIRST
;
26 void bad_page_fault(struct pt_regs
*, unsigned long, int);
29 * This routine handles page faults. It determines the address,
30 * and the problem, and then passes it off to one of the appropriate
33 * Note: does not handle Miss and MultiHit.
36 void do_page_fault(struct pt_regs
*regs
)
38 struct vm_area_struct
* vma
;
39 struct mm_struct
*mm
= current
->mm
;
40 unsigned int exccause
= regs
->exccause
;
41 unsigned int address
= regs
->excvaddr
;
44 int is_write
, is_exec
;
46 unsigned int flags
= FAULT_FLAG_ALLOW_RETRY
| FAULT_FLAG_KILLABLE
;
48 info
.si_code
= SEGV_MAPERR
;
50 /* We fault-in kernel-space virtual memory on-demand. The
51 * 'reference' page table is init_mm.pgd.
53 if (address
>= TASK_SIZE
&& !user_mode(regs
))
56 /* If we're in an interrupt or have no user
57 * context, we must not take the fault..
59 if (faulthandler_disabled() || !mm
) {
60 bad_page_fault(regs
, address
, SIGSEGV
);
64 is_write
= (exccause
== EXCCAUSE_STORE_CACHE_ATTRIBUTE
) ? 1 : 0;
65 is_exec
= (exccause
== EXCCAUSE_ITLB_PRIVILEGE
||
66 exccause
== EXCCAUSE_ITLB_MISS
||
67 exccause
== EXCCAUSE_FETCH_CACHE_ATTRIBUTE
) ? 1 : 0;
69 pr_debug("[%s:%d:%08x:%d:%08lx:%s%s]\n",
70 current
->comm
, current
->pid
,
71 address
, exccause
, regs
->pc
,
72 is_write
? "w" : "", is_exec
? "x" : "");
75 flags
|= FAULT_FLAG_USER
;
77 down_read(&mm
->mmap_sem
);
78 vma
= find_vma(mm
, address
);
82 if (vma
->vm_start
<= address
)
84 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
86 if (expand_stack(vma
, address
))
89 /* Ok, we have a good vm_area for this memory access, so
94 info
.si_code
= SEGV_ACCERR
;
97 if (!(vma
->vm_flags
& VM_WRITE
))
99 flags
|= FAULT_FLAG_WRITE
;
100 } else if (is_exec
) {
101 if (!(vma
->vm_flags
& VM_EXEC
))
103 } else /* Allow read even from write-only pages. */
104 if (!(vma
->vm_flags
& (VM_READ
| VM_WRITE
)))
107 /* If for any reason at all we couldn't handle the fault,
108 * make sure we exit gracefully rather than endlessly redo
111 fault
= handle_mm_fault(vma
, address
, flags
);
113 if ((fault
& VM_FAULT_RETRY
) && fatal_signal_pending(current
))
116 if (unlikely(fault
& VM_FAULT_ERROR
)) {
117 if (fault
& VM_FAULT_OOM
)
119 else if (fault
& VM_FAULT_SIGSEGV
)
121 else if (fault
& VM_FAULT_SIGBUS
)
125 if (flags
& FAULT_FLAG_ALLOW_RETRY
) {
126 if (fault
& VM_FAULT_MAJOR
)
130 if (fault
& VM_FAULT_RETRY
) {
131 flags
&= ~FAULT_FLAG_ALLOW_RETRY
;
132 flags
|= FAULT_FLAG_TRIED
;
134 /* No need to up_read(&mm->mmap_sem) as we would
135 * have already released it in __lock_page_or_retry
143 up_read(&mm
->mmap_sem
);
144 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS
, 1, regs
, address
);
145 if (flags
& VM_FAULT_MAJOR
)
146 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ
, 1, regs
, address
);
148 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN
, 1, regs
, address
);
152 /* Something tried to access memory that isn't in our memory map..
153 * Fix it, but check if it's kernel or user first..
156 up_read(&mm
->mmap_sem
);
157 if (user_mode(regs
)) {
158 current
->thread
.bad_vaddr
= address
;
159 current
->thread
.error_code
= is_write
;
160 info
.si_signo
= SIGSEGV
;
162 /* info.si_code has been set above */
163 info
.si_addr
= (void *) address
;
164 force_sig_info(SIGSEGV
, &info
, current
);
167 bad_page_fault(regs
, address
, SIGSEGV
);
171 /* We ran out of memory, or some other thing happened to us that made
172 * us unable to handle the page fault gracefully.
175 up_read(&mm
->mmap_sem
);
176 if (!user_mode(regs
))
177 bad_page_fault(regs
, address
, SIGKILL
);
179 pagefault_out_of_memory();
183 up_read(&mm
->mmap_sem
);
185 /* Send a sigbus, regardless of whether we were in kernel
188 current
->thread
.bad_vaddr
= address
;
189 info
.si_code
= SIGBUS
;
191 info
.si_code
= BUS_ADRERR
;
192 info
.si_addr
= (void *) address
;
193 force_sig_info(SIGBUS
, &info
, current
);
195 /* Kernel mode? Handle exceptions or die */
196 if (!user_mode(regs
))
197 bad_page_fault(regs
, address
, SIGBUS
);
202 /* Synchronize this task's top level page-table
203 * with the 'reference' page table.
205 struct mm_struct
*act_mm
= current
->active_mm
;
206 int index
= pgd_index(address
);
214 pgd
= act_mm
->pgd
+ index
;
215 pgd_k
= init_mm
.pgd
+ index
;
217 if (!pgd_present(*pgd_k
))
220 pgd_val(*pgd
) = pgd_val(*pgd_k
);
222 pmd
= pmd_offset(pgd
, address
);
223 pmd_k
= pmd_offset(pgd_k
, address
);
224 if (!pmd_present(*pmd
) || !pmd_present(*pmd_k
))
227 pmd_val(*pmd
) = pmd_val(*pmd_k
);
228 pte_k
= pte_offset_kernel(pmd_k
, address
);
230 if (!pte_present(*pte_k
))
235 bad_page_fault(regs
, address
, SIGKILL
);
241 bad_page_fault(struct pt_regs
*regs
, unsigned long address
, int sig
)
243 extern void die(const char*, struct pt_regs
*, long);
244 const struct exception_table_entry
*entry
;
246 /* Are we prepared to handle this kernel fault? */
247 if ((entry
= search_exception_tables(regs
->pc
)) != NULL
) {
248 pr_debug("%s: Exception at pc=%#010lx (%lx)\n",
249 current
->comm
, regs
->pc
, entry
->fixup
);
250 current
->thread
.bad_uaddr
= address
;
251 regs
->pc
= entry
->fixup
;
255 /* Oops. The kernel tried to access some bad page. We'll have to
256 * terminate things with extreme prejudice.
258 pr_alert("Unable to handle kernel paging request at virtual "
259 "address %08lx\n pc = %08lx, ra = %08lx\n",
260 address
, regs
->pc
, regs
->areg
[0]);
261 die("Oops", regs
, sig
);