2 * MMU fault handling support.
4 * Copyright (C) 1998-2002 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
7 #include <linux/sched.h>
8 #include <linux/kernel.h>
10 #include <linux/smp_lock.h>
11 #include <linux/interrupt.h>
13 #include <asm/pgtable.h>
14 #include <asm/processor.h>
15 #include <asm/system.h>
16 #include <asm/uaccess.h>
18 extern void die (char *, struct pt_regs
*, long);
21 * This routine is analogous to expand_stack() but instead grows the
22 * register backing store (which grows towards higher addresses).
23 * Since the register backing store is access sequentially, we
24 * disallow growing the RBS by more than a page at a time. Note that
25 * the VM_GROWSUP flag can be set on any VM area but that's fine
26 * because the total process size is still limited by RLIMIT_STACK and
30 expand_backing_store (struct vm_area_struct
*vma
, unsigned long address
)
34 grow
= PAGE_SIZE
>> PAGE_SHIFT
;
35 if (address
- vma
->vm_start
> current
->signal
->rlim
[RLIMIT_STACK
].rlim_cur
36 || (((vma
->vm_mm
->total_vm
+ grow
) << PAGE_SHIFT
) > current
->signal
->rlim
[RLIMIT_AS
].rlim_cur
))
38 vma
->vm_end
+= PAGE_SIZE
;
39 vma
->vm_mm
->total_vm
+= grow
;
40 if (vma
->vm_flags
& VM_LOCKED
)
41 vma
->vm_mm
->locked_vm
+= grow
;
42 __vm_stat_account(vma
->vm_mm
, vma
->vm_flags
, vma
->vm_file
, grow
);
47 * Return TRUE if ADDRESS points at a page in the kernel's mapped segment
48 * (inside region 5, on ia64) and that page is present.
51 mapped_kernel_page_is_present (unsigned long address
)
58 pgd
= pgd_offset_k(address
);
59 if (pgd_none(*pgd
) || pgd_bad(*pgd
))
62 pud
= pud_offset(pgd
, address
);
63 if (pud_none(*pud
) || pud_bad(*pud
))
66 pmd
= pmd_offset(pud
, address
);
67 if (pmd_none(*pmd
) || pmd_bad(*pmd
))
70 ptep
= pte_offset_kernel(pmd
, address
);
75 return pte_present(pte
);
79 ia64_do_page_fault (unsigned long address
, unsigned long isr
, struct pt_regs
*regs
)
81 int signal
= SIGSEGV
, code
= SEGV_MAPERR
;
82 struct vm_area_struct
*vma
, *prev_vma
;
83 struct mm_struct
*mm
= current
->mm
;
88 * If we're in an interrupt or have no user context, we must not take the fault..
90 if (in_atomic() || !mm
)
93 #ifdef CONFIG_VIRTUAL_MEM_MAP
95 * If fault is in region 5 and we are in the kernel, we may already
96 * have the mmap_sem (pfn_valid macro is called during mmap). There
97 * is no vma for region 5 addr's anyway, so skip getting the semaphore
98 * and go directly to the exception handling code.
101 if ((REGION_NUMBER(address
) == 5) && !user_mode(regs
))
105 down_read(&mm
->mmap_sem
);
107 vma
= find_vma_prev(mm
, address
, &prev_vma
);
111 /* find_vma_prev() returns vma such that address < vma->vm_end or NULL */
112 if (address
< vma
->vm_start
)
113 goto check_expansion
;
118 /* OK, we've got a good vm_area for this memory area. Check the access permissions: */
120 # define VM_READ_BIT 0
121 # define VM_WRITE_BIT 1
122 # define VM_EXEC_BIT 2
124 # if (((1 << VM_READ_BIT) != VM_READ || (1 << VM_WRITE_BIT) != VM_WRITE) \
125 || (1 << VM_EXEC_BIT) != VM_EXEC)
126 # error File is out of sync with <linux/mm.h>. Please update.
129 mask
= ( (((isr
>> IA64_ISR_X_BIT
) & 1UL) << VM_EXEC_BIT
)
130 | (((isr
>> IA64_ISR_W_BIT
) & 1UL) << VM_WRITE_BIT
)
131 | (((isr
>> IA64_ISR_R_BIT
) & 1UL) << VM_READ_BIT
));
133 if ((vma
->vm_flags
& mask
) != mask
)
138 * If for any reason at all we couldn't handle the fault, make
139 * sure we exit gracefully rather than endlessly redo the
142 switch (handle_mm_fault(mm
, vma
, address
, (mask
& VM_WRITE
) != 0)) {
149 case VM_FAULT_SIGBUS
:
151 * We ran out of memory, or some other thing happened
152 * to us that made us unable to handle the page fault
162 up_read(&mm
->mmap_sem
);
166 if (!(prev_vma
&& (prev_vma
->vm_flags
& VM_GROWSUP
) && (address
== prev_vma
->vm_end
))) {
167 if (!(vma
->vm_flags
& VM_GROWSDOWN
))
169 if (REGION_NUMBER(address
) != REGION_NUMBER(vma
->vm_start
)
170 || REGION_OFFSET(address
) >= RGN_MAP_LIMIT
)
172 if (expand_stack(vma
, address
))
176 if (REGION_NUMBER(address
) != REGION_NUMBER(vma
->vm_start
)
177 || REGION_OFFSET(address
) >= RGN_MAP_LIMIT
)
179 if (expand_backing_store(vma
, address
))
185 up_read(&mm
->mmap_sem
);
186 #ifdef CONFIG_VIRTUAL_MEM_MAP
189 if ((isr
& IA64_ISR_SP
)
190 || ((isr
& IA64_ISR_NA
) && (isr
& IA64_ISR_CODE_MASK
) == IA64_ISR_CODE_LFETCH
))
193 * This fault was due to a speculative load or lfetch.fault, set the "ed"
194 * bit in the psr to ensure forward progress. (Target register will get a
195 * NaT for ld.s, lfetch will be canceled.)
197 ia64_psr(regs
)->ed
= 1;
200 if (user_mode(regs
)) {
201 si
.si_signo
= signal
;
204 si
.si_addr
= (void __user
*) address
;
206 si
.si_flags
= __ISR_VALID
;
207 force_sig_info(signal
, &si
, current
);
212 if ((isr
& IA64_ISR_SP
)
213 || ((isr
& IA64_ISR_NA
) && (isr
& IA64_ISR_CODE_MASK
) == IA64_ISR_CODE_LFETCH
))
216 * This fault was due to a speculative load or lfetch.fault, set the "ed"
217 * bit in the psr to ensure forward progress. (Target register will get a
218 * NaT for ld.s, lfetch will be canceled.)
220 ia64_psr(regs
)->ed
= 1;
224 if (ia64_done_with_exception(regs
))
228 * Since we have no vma's for region 5, we might get here even if the address is
229 * valid, due to the VHPT walker inserting a non present translation that becomes
230 * stale. If that happens, the non present fault handler already purged the stale
231 * translation, which fixed the problem. So, we check to see if the translation is
232 * valid, and return if it is.
234 if (REGION_NUMBER(address
) == 5 && mapped_kernel_page_is_present(address
))
238 * Oops. The kernel tried to access some bad page. We'll have to terminate things
239 * with extreme prejudice.
243 if (address
< PAGE_SIZE
)
244 printk(KERN_ALERT
"Unable to handle kernel NULL pointer dereference (address %016lx)\n", address
);
246 printk(KERN_ALERT
"Unable to handle kernel paging request at "
247 "virtual address %016lx\n", address
);
248 die("Oops", regs
, isr
);
254 up_read(&mm
->mmap_sem
);
255 if (current
->pid
== 1) {
257 down_read(&mm
->mmap_sem
);
260 printk(KERN_CRIT
"VM: killing process %s\n", current
->comm
);