blob: 8b9b6f44bb06093199da82d6c8ec34cab12e8c27 [file] [log] [blame]
Chris Zankel3f65ce42005-06-23 22:01:24 -07001// 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 *
Marc Gauthier1bbedc32012-10-15 03:55:36 +04009 * Copyright (C) 2001 - 2010 Tensilica Inc.
Chris Zankel3f65ce42005-06-23 22:01:24 -070010 *
11 * Chris Zankel <chris@zankel.net>
12 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
13 */
14
15#include <linux/mm.h>
Paul Gortmaker6cc306e2016-07-23 14:01:45 -040016#include <linux/extable.h>
Alexey Dobriyan5a891ed2009-03-10 12:55:49 -070017#include <linux/hardirq.h>
Max Filippovaf885de2015-06-04 13:42:22 +030018#include <linux/perf_event.h>
David Hildenbrand70ffdb92015-05-11 17:52:11 +020019#include <linux/uaccess.h>
Chris Zankel3f65ce42005-06-23 22:01:24 -070020#include <asm/mmu_context.h>
21#include <asm/cacheflush.h>
22#include <asm/hardirq.h>
Chris Zankel3f65ce42005-06-23 22:01:24 -070023#include <asm/pgalloc.h>
24
Max Filippovf6151362013-10-17 02:42:26 +040025DEFINE_PER_CPU(unsigned long, asid_cache) = ASID_USER_FIRST;
Chris Zankel3f65ce42005-06-23 22:01:24 -070026void 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;
42 siginfo_t info;
43
44 int is_write, is_exec;
Nick Piggin83c54072007-07-19 01:47:05 -070045 int fault;
Kautuk Consulf1077012012-07-30 14:39:21 -070046 unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
Chris Zankel3f65ce42005-06-23 22:01:24 -070047
48 info.si_code = SEGV_MAPERR;
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 */
David Hildenbrand70ffdb92015-05-11 17:52:11 +020059 if (faulthandler_disabled() || !mm) {
Chris Zankel3f65ce42005-06-23 22:01:24 -070060 bad_page_fault(regs, address, SIGSEGV);
61 return;
62 }
63
Chris Zankel173d6682006-12-10 02:18:48 -080064 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;
Chris Zankel3f65ce42005-06-23 22:01:24 -070068
Max Filippovc130d3b2017-12-15 12:00:30 -080069 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" : "");
Chris Zankel3f65ce42005-06-23 22:01:24 -070073
Johannes Weiner759496b2013-09-12 15:13:39 -070074 if (user_mode(regs))
75 flags |= FAULT_FLAG_USER;
Kautuk Consulf1077012012-07-30 14:39:21 -070076retry:
Chris Zankel3f65ce42005-06-23 22:01:24 -070077 down_read(&mm->mmap_sem);
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:
94 info.si_code = SEGV_ACCERR;
95
96 if (is_write) {
97 if (!(vma->vm_flags & VM_WRITE))
98 goto bad_area;
Kautuk Consulf1077012012-07-30 14:39:21 -070099 flags |= FAULT_FLAG_WRITE;
Chris Zankel3f65ce42005-06-23 22:01:24 -0700100 } 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 */
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -0700111 fault = handle_mm_fault(vma, address, flags);
Kautuk Consulf1077012012-07-30 14:39:21 -0700112
113 if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current))
114 return;
115
Nick Piggin83c54072007-07-19 01:47:05 -0700116 if (unlikely(fault & VM_FAULT_ERROR)) {
117 if (fault & VM_FAULT_OOM)
118 goto out_of_memory;
Linus Torvalds33692f22015-01-29 10:51:32 -0800119 else if (fault & VM_FAULT_SIGSEGV)
120 goto bad_area;
Nick Piggin83c54072007-07-19 01:47:05 -0700121 else if (fault & VM_FAULT_SIGBUS)
122 goto do_sigbus;
Chris Zankel3f65ce42005-06-23 22:01:24 -0700123 BUG();
124 }
Kautuk Consulf1077012012-07-30 14:39:21 -0700125 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) {
131 flags &= ~FAULT_FLAG_ALLOW_RETRY;
Shaohua Li45cac652012-10-08 16:32:19 -0700132 flags |= FAULT_FLAG_TRIED;
Kautuk Consulf1077012012-07-30 14:39:21 -0700133
134 /* No need to up_read(&mm->mmap_sem) as we would
135 * have already released it in __lock_page_or_retry
136 * in mm/filemap.c.
137 */
138
139 goto retry;
140 }
141 }
Chris Zankel3f65ce42005-06-23 22:01:24 -0700142
143 up_read(&mm->mmap_sem);
Max Filippovaf885de2015-06-04 13:42:22 +0300144 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);
Jan Kara0e8fb932016-03-17 14:19:55 -0700147 else
Max Filippovaf885de2015-06-04 13:42:22 +0300148 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1, regs, address);
149
Chris Zankel3f65ce42005-06-23 22:01:24 -0700150 return;
151
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..
154 */
155bad_area:
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;
161 info.si_errno = 0;
162 /* info.si_code has been set above */
163 info.si_addr = (void *) address;
164 force_sig_info(SIGSEGV, &info, current);
165 return;
166 }
167 bad_page_fault(regs, address, SIGSEGV);
168 return;
169
170
171 /* We ran out of memory, or some other thing happened to us that made
172 * us unable to handle the page fault gracefully.
173 */
174out_of_memory:
175 up_read(&mm->mmap_sem);
Nick Pigginf76f5d72010-06-04 14:14:51 -0700176 if (!user_mode(regs))
177 bad_page_fault(regs, address, SIGKILL);
178 else
179 pagefault_out_of_memory();
Chris Zankel3f65ce42005-06-23 22:01:24 -0700180 return;
181
182do_sigbus:
183 up_read(&mm->mmap_sem);
184
185 /* Send a sigbus, regardless of whether we were in kernel
186 * or user mode.
187 */
188 current->thread.bad_vaddr = address;
189 info.si_code = SIGBUS;
190 info.si_errno = 0;
191 info.si_code = BUS_ADRERR;
192 info.si_addr = (void *) address;
193 force_sig_info(SIGBUS, &info, current);
194
195 /* Kernel mode? Handle exceptions or die */
196 if (!user_mode(regs))
197 bad_page_fault(regs, address, SIGBUS);
Marc Gauthier1bbedc32012-10-15 03:55:36 +0400198 return;
Chris Zankel3f65ce42005-06-23 22:01:24 -0700199
200vmalloc_fault:
201 {
202 /* Synchronize this task's top level page-table
203 * with the 'reference' page table.
204 */
205 struct mm_struct *act_mm = current->active_mm;
206 int index = pgd_index(address);
207 pgd_t *pgd, *pgd_k;
208 pmd_t *pmd, *pmd_k;
209 pte_t *pte_k;
210
211 if (act_mm == NULL)
212 goto bad_page_fault;
213
214 pgd = act_mm->pgd + index;
215 pgd_k = init_mm.pgd + index;
216
217 if (!pgd_present(*pgd_k))
218 goto bad_page_fault;
219
220 pgd_val(*pgd) = pgd_val(*pgd_k);
221
222 pmd = pmd_offset(pgd, address);
223 pmd_k = pmd_offset(pgd_k, address);
224 if (!pmd_present(*pmd) || !pmd_present(*pmd_k))
225 goto bad_page_fault;
226
227 pmd_val(*pmd) = pmd_val(*pmd_k);
228 pte_k = pte_offset_kernel(pmd_k, address);
229
230 if (!pte_present(*pte_k))
231 goto bad_page_fault;
232 return;
233 }
234bad_page_fault:
235 bad_page_fault(regs, address, SIGKILL);
236 return;
237}
238
239
240void
241bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
242{
243 extern void die(const char*, struct pt_regs*, long);
244 const struct exception_table_entry *entry;
245
246 /* Are we prepared to handle this kernel fault? */
247 if ((entry = search_exception_tables(regs->pc)) != NULL) {
Max Filippovc130d3b2017-12-15 12:00:30 -0800248 pr_debug("%s: Exception at pc=%#010lx (%lx)\n",
249 current->comm, regs->pc, entry->fixup);
Chris Zankel3f65ce42005-06-23 22:01:24 -0700250 current->thread.bad_uaddr = address;
251 regs->pc = entry->fixup;
252 return;
253 }
254
255 /* Oops. The kernel tried to access some bad page. We'll have to
256 * terminate things with extreme prejudice.
257 */
Max Filippovc130d3b2017-12-15 12:00:30 -0800258 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]);
Chris Zankel3f65ce42005-06-23 22:01:24 -0700261 die("Oops", regs, sig);
262 do_exit(sig);
263}