]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/xtensa/mm/fault.c
mmap locking API: use coccinelle to convert mmap_sem rwsem call sites
[mirror_ubuntu-kernels.git] / arch / xtensa / mm / fault.c
CommitLineData
3f65ce4d
CZ
1// TODO VM_EXEC flag work-around, cache aliasing
2/*
3 * arch/xtensa/mm/fault.c
4 *
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
7 * for more details.
8 *
1bbedc3a 9 * Copyright (C) 2001 - 2010 Tensilica Inc.
3f65ce4d
CZ
10 *
11 * Chris Zankel <chris@zankel.net>
12 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
13 */
14
15#include <linux/mm.h>
6cc306ea 16#include <linux/extable.h>
5a891ed5 17#include <linux/hardirq.h>
af885de8 18#include <linux/perf_event.h>
70ffdb93 19#include <linux/uaccess.h>
3f65ce4d
CZ
20#include <asm/mmu_context.h>
21#include <asm/cacheflush.h>
22#include <asm/hardirq.h>
3f65ce4d
CZ
23#include <asm/pgalloc.h>
24
f615136c 25DEFINE_PER_CPU(unsigned long, asid_cache) = ASID_USER_FIRST;
3f65ce4d
CZ
26void bad_page_fault(struct pt_regs*, unsigned long, int);
27
28/*
29 * This routine handles page faults. It determines the address,
30 * and the problem, and then passes it off to one of the appropriate
31 * routines.
32 *
33 * Note: does not handle Miss and MultiHit.
34 */
35
36void do_page_fault(struct pt_regs *regs)
37{
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;
91810105 42 int code;
3f65ce4d
CZ
43
44 int is_write, is_exec;
50a7ca3c 45 vm_fault_t fault;
dde16072 46 unsigned int flags = FAULT_FLAG_DEFAULT;
3f65ce4d 47
91810105 48 code = SEGV_MAPERR;
3f65ce4d
CZ
49
50 /* We fault-in kernel-space virtual memory on-demand. The
51 * 'reference' page table is init_mm.pgd.
52 */
53 if (address >= TASK_SIZE && !user_mode(regs))
54 goto vmalloc_fault;
55
56 /* If we're in an interrupt or have no user
57 * context, we must not take the fault..
58 */
70ffdb93 59 if (faulthandler_disabled() || !mm) {
3f65ce4d
CZ
60 bad_page_fault(regs, address, SIGSEGV);
61 return;
62 }
63
173d6681
CZ
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;
3f65ce4d 68
c130d3be
MF
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" : "");
3f65ce4d 73
759496ba
JW
74 if (user_mode(regs))
75 flags |= FAULT_FLAG_USER;
f107701f 76retry:
d8ed45c5 77 mmap_read_lock(mm);
3f65ce4d
CZ
78 vma = find_vma(mm, address);
79
80 if (!vma)
81 goto bad_area;
82 if (vma->vm_start <= address)
83 goto good_area;
84 if (!(vma->vm_flags & VM_GROWSDOWN))
85 goto bad_area;
86 if (expand_stack(vma, address))
87 goto bad_area;
88
89 /* Ok, we have a good vm_area for this memory access, so
90 * we can handle it..
91 */
92
93good_area:
91810105 94 code = SEGV_ACCERR;
3f65ce4d
CZ
95
96 if (is_write) {
97 if (!(vma->vm_flags & VM_WRITE))
98 goto bad_area;
f107701f 99 flags |= FAULT_FLAG_WRITE;
3f65ce4d
CZ
100 } else if (is_exec) {
101 if (!(vma->vm_flags & VM_EXEC))
102 goto bad_area;
103 } else /* Allow read even from write-only pages. */
104 if (!(vma->vm_flags & (VM_READ | VM_WRITE)))
105 goto bad_area;
106
107 /* If for any reason at all we couldn't handle the fault,
108 * make sure we exit gracefully rather than endlessly redo
109 * the fault.
110 */
dcddffd4 111 fault = handle_mm_fault(vma, address, flags);
f107701f 112
4ef87322 113 if (fault_signal_pending(fault, regs))
f107701f
KC
114 return;
115
83c54070
NP
116 if (unlikely(fault & VM_FAULT_ERROR)) {
117 if (fault & VM_FAULT_OOM)
118 goto out_of_memory;
33692f27
LT
119 else if (fault & VM_FAULT_SIGSEGV)
120 goto bad_area;
83c54070
NP
121 else if (fault & VM_FAULT_SIGBUS)
122 goto do_sigbus;
3f65ce4d
CZ
123 BUG();
124 }
f107701f
KC
125 if (flags & FAULT_FLAG_ALLOW_RETRY) {
126 if (fault & VM_FAULT_MAJOR)
127 current->maj_flt++;
128 else
129 current->min_flt++;
130 if (fault & VM_FAULT_RETRY) {
45cac65b 131 flags |= FAULT_FLAG_TRIED;
f107701f
KC
132
133 /* No need to up_read(&mm->mmap_sem) as we would
134 * have already released it in __lock_page_or_retry
135 * in mm/filemap.c.
136 */
137
138 goto retry;
139 }
140 }
3f65ce4d 141
d8ed45c5 142 mmap_read_unlock(mm);
af885de8
MF
143 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address);
144 if (flags & VM_FAULT_MAJOR)
145 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1, regs, address);
0e8fb931 146 else
af885de8
MF
147 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, address);
148
3f65ce4d
CZ
149 return;
150
151 /* Something tried to access memory that isn't in our memory map..
152 * Fix it, but check if it's kernel or user first..
153 */
154bad_area:
d8ed45c5 155 mmap_read_unlock(mm);
3f65ce4d
CZ
156 if (user_mode(regs)) {
157 current->thread.bad_vaddr = address;
158 current->thread.error_code = is_write;
2e1661d2 159 force_sig_fault(SIGSEGV, code, (void *) address);
3f65ce4d
CZ
160 return;
161 }
162 bad_page_fault(regs, address, SIGSEGV);
163 return;
164
165
166 /* We ran out of memory, or some other thing happened to us that made
167 * us unable to handle the page fault gracefully.
168 */
169out_of_memory:
d8ed45c5 170 mmap_read_unlock(mm);
f76f5d71
NP
171 if (!user_mode(regs))
172 bad_page_fault(regs, address, SIGKILL);
173 else
174 pagefault_out_of_memory();
3f65ce4d
CZ
175 return;
176
177do_sigbus:
d8ed45c5 178 mmap_read_unlock(mm);
3f65ce4d
CZ
179
180 /* Send a sigbus, regardless of whether we were in kernel
181 * or user mode.
182 */
183 current->thread.bad_vaddr = address;
2e1661d2 184 force_sig_fault(SIGBUS, BUS_ADRERR, (void *) address);
3f65ce4d
CZ
185
186 /* Kernel mode? Handle exceptions or die */
187 if (!user_mode(regs))
188 bad_page_fault(regs, address, SIGBUS);
1bbedc3a 189 return;
3f65ce4d
CZ
190
191vmalloc_fault:
192 {
193 /* Synchronize this task's top level page-table
194 * with the 'reference' page table.
195 */
196 struct mm_struct *act_mm = current->active_mm;
197 int index = pgd_index(address);
198 pgd_t *pgd, *pgd_k;
f5ee2567 199 p4d_t *p4d, *p4d_k;
f0d1eab8 200 pud_t *pud, *pud_k;
3f65ce4d
CZ
201 pmd_t *pmd, *pmd_k;
202 pte_t *pte_k;
203
204 if (act_mm == NULL)
205 goto bad_page_fault;
206
207 pgd = act_mm->pgd + index;
208 pgd_k = init_mm.pgd + index;
209
210 if (!pgd_present(*pgd_k))
211 goto bad_page_fault;
212
213 pgd_val(*pgd) = pgd_val(*pgd_k);
214
f5ee2567
MR
215 p4d = p4d_offset(pgd, address);
216 p4d_k = p4d_offset(pgd_k, address);
217 if (!p4d_present(*p4d) || !p4d_present(*p4d_k))
218 goto bad_page_fault;
219
220 pud = pud_offset(p4d, address);
221 pud_k = pud_offset(p4d_k, address);
f0d1eab8
MR
222 if (!pud_present(*pud) || !pud_present(*pud_k))
223 goto bad_page_fault;
224
225 pmd = pmd_offset(pud, address);
226 pmd_k = pmd_offset(pud_k, address);
3f65ce4d
CZ
227 if (!pmd_present(*pmd) || !pmd_present(*pmd_k))
228 goto bad_page_fault;
229
230 pmd_val(*pmd) = pmd_val(*pmd_k);
231 pte_k = pte_offset_kernel(pmd_k, address);
232
233 if (!pte_present(*pte_k))
234 goto bad_page_fault;
235 return;
236 }
237bad_page_fault:
238 bad_page_fault(regs, address, SIGKILL);
239 return;
240}
241
242
243void
244bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
245{
246 extern void die(const char*, struct pt_regs*, long);
247 const struct exception_table_entry *entry;
248
249 /* Are we prepared to handle this kernel fault? */
250 if ((entry = search_exception_tables(regs->pc)) != NULL) {
c130d3be
MF
251 pr_debug("%s: Exception at pc=%#010lx (%lx)\n",
252 current->comm, regs->pc, entry->fixup);
3f65ce4d
CZ
253 current->thread.bad_uaddr = address;
254 regs->pc = entry->fixup;
255 return;
256 }
257
258 /* Oops. The kernel tried to access some bad page. We'll have to
259 * terminate things with extreme prejudice.
260 */
c130d3be
MF
261 pr_alert("Unable to handle kernel paging request at virtual "
262 "address %08lx\n pc = %08lx, ra = %08lx\n",
263 address, regs->pc, regs->areg[0]);
3f65ce4d
CZ
264 die("Oops", regs, sig);
265 do_exit(sig);
266}