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 - 2005 Tensilica Inc.
11 * Chris Zankel <chris@zankel.net>
12 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
16 #include <linux/module.h>
17 #include <asm/mmu_context.h>
18 #include <asm/cacheflush.h>
19 #include <asm/hardirq.h>
20 #include <asm/uaccess.h>
21 #include <asm/system.h>
22 #include <asm/pgalloc.h>
24 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;
46 info.si_code = SEGV_MAPERR;
48 /* We fault-in kernel-space virtual memory on-demand. The
49 * 'reference' page table is init_mm.pgd.
51 if (address >= TASK_SIZE && !user_mode(regs))
54 /* If we're in an interrupt or have no user
55 * context, we must not take the fault..
57 if (in_atomic() || !mm) {
58 bad_page_fault(regs, address, SIGSEGV);
62 is_write = (exccause == EXCCAUSE_STORE_CACHE_ATTRIBUTE) ? 1 : 0;
63 is_exec = (exccause == EXCCAUSE_ITLB_PRIVILEGE ||
64 exccause == EXCCAUSE_ITLB_MISS ||
65 exccause == EXCCAUSE_FETCH_CACHE_ATTRIBUTE) ? 1 : 0;
68 printk("[%s:%d:%08x:%d:%08x:%s%s]\n", current->comm, current->pid,
69 address, exccause, regs->pc, is_write? "w":"", is_exec? "x":"");
72 down_read(&mm->mmap_sem);
73 vma = find_vma(mm, address);
77 if (vma->vm_start <= address)
79 if (!(vma->vm_flags & VM_GROWSDOWN))
81 if (expand_stack(vma, address))
84 /* Ok, we have a good vm_area for this memory access, so
89 info.si_code = SEGV_ACCERR;
92 if (!(vma->vm_flags & VM_WRITE))
95 if (!(vma->vm_flags & VM_EXEC))
97 } else /* Allow read even from write-only pages. */
98 if (!(vma->vm_flags & (VM_READ | VM_WRITE)))
101 /* If for any reason at all we couldn't handle the fault,
102 * make sure we exit gracefully rather than endlessly redo
106 fault = handle_mm_fault(mm, vma, address, is_write);
107 if (unlikely(fault & VM_FAULT_ERROR)) {
108 if (fault & VM_FAULT_OOM)
110 else if (fault & VM_FAULT_SIGBUS)
114 if (fault & VM_FAULT_MAJOR)
119 up_read(&mm->mmap_sem);
122 /* Something tried to access memory that isn't in our memory map..
123 * Fix it, but check if it's kernel or user first..
126 up_read(&mm->mmap_sem);
127 if (user_mode(regs)) {
128 current->thread.bad_vaddr = address;
129 current->thread.error_code = is_write;
130 info.si_signo = SIGSEGV;
132 /* info.si_code has been set above */
133 info.si_addr = (void *) address;
134 force_sig_info(SIGSEGV, &info, current);
137 bad_page_fault(regs, address, SIGSEGV);
141 /* We ran out of memory, or some other thing happened to us that made
142 * us unable to handle the page fault gracefully.
145 up_read(&mm->mmap_sem);
146 if (is_init(current)) {
148 down_read(&mm->mmap_sem);
151 printk("VM: killing process %s\n", current->comm);
154 bad_page_fault(regs, address, SIGKILL);
158 up_read(&mm->mmap_sem);
160 /* Send a sigbus, regardless of whether we were in kernel
163 current->thread.bad_vaddr = address;
164 info.si_code = SIGBUS;
166 info.si_code = BUS_ADRERR;
167 info.si_addr = (void *) address;
168 force_sig_info(SIGBUS, &info, current);
170 /* Kernel mode? Handle exceptions or die */
171 if (!user_mode(regs))
172 bad_page_fault(regs, address, SIGBUS);
176 /* Synchronize this task's top level page-table
177 * with the 'reference' page table.
179 struct mm_struct *act_mm = current->active_mm;
180 int index = pgd_index(address);
188 pgd = act_mm->pgd + index;
189 pgd_k = init_mm.pgd + index;
191 if (!pgd_present(*pgd_k))
194 pgd_val(*pgd) = pgd_val(*pgd_k);
196 pmd = pmd_offset(pgd, address);
197 pmd_k = pmd_offset(pgd_k, address);
198 if (!pmd_present(*pmd) || !pmd_present(*pmd_k))
201 pmd_val(*pmd) = pmd_val(*pmd_k);
202 pte_k = pte_offset_kernel(pmd_k, address);
204 if (!pte_present(*pte_k))
209 bad_page_fault(regs, address, SIGKILL);
215 bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
217 extern void die(const char*, struct pt_regs*, long);
218 const struct exception_table_entry *entry;
220 /* Are we prepared to handle this kernel fault? */
221 if ((entry = search_exception_tables(regs->pc)) != NULL) {
223 printk(KERN_DEBUG "%s: Exception at pc=%#010lx (%lx)\n",
224 current->comm, regs->pc, entry->fixup);
226 current->thread.bad_uaddr = address;
227 regs->pc = entry->fixup;
231 /* Oops. The kernel tried to access some bad page. We'll have to
232 * terminate things with extreme prejudice.
234 printk(KERN_ALERT "Unable to handle kernel paging request at virtual "
235 "address %08lx\n pc = %08lx, ra = %08lx\n",
236 address, regs->pc, regs->areg[0]);
237 die("Oops", regs, sig);