blob: 68cf65f597e8d7f95a00542244c718054c4e380e [file] [log] [blame]
Gennady Sharapovea2ba7d2006-01-08 01:01:31 -08001/*
Jeff Dike4c9e1382007-10-16 01:26:54 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
Jeff Dike4c9e1382007-10-16 01:26:54 -07006#include <linux/mm.h>
7#include <linux/sched.h>
8#include <linux/hardirq.h>
Al Viro73395a02011-08-18 20:14:10 +01009#include <linux/module.h>
Peter Zijlstrafbc9f162015-05-19 13:53:29 +020010#include <linux/uaccess.h>
Jeff Dike4c9e1382007-10-16 01:26:54 -070011#include <asm/current.h>
12#include <asm/pgtable.h>
13#include <asm/tlbflush.h>
Al Viro37185b32012-10-08 03:27:32 +010014#include <arch.h>
15#include <as-layout.h>
16#include <kern_util.h>
17#include <os.h>
18#include <skas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Jeff Dike4c9e1382007-10-16 01:26:54 -070020/*
21 * Note this is constrained to return 0, -EFAULT, -EACCESS, -ENOMEM by
22 * segv().
23 */
Jeff Dike1d3468a2006-07-10 04:45:13 -070024int handle_page_fault(unsigned long address, unsigned long ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 int is_write, int is_user, int *code_out)
26{
27 struct mm_struct *mm = current->mm;
28 struct vm_area_struct *vma;
29 pgd_t *pgd;
30 pud_t *pud;
31 pmd_t *pmd;
32 pte_t *pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 int err = -EFAULT;
Johannes Weiner759496b2013-09-12 15:13:39 -070034 unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36 *code_out = SEGV_MAPERR;
Paolo 'Blaisorblade' Giarrussofea03cb2005-09-22 21:44:20 -070037
Jeff Dike4c9e1382007-10-16 01:26:54 -070038 /*
David Hildenbrand70ffdb92015-05-11 17:52:11 +020039 * If the fault was with pagefaults disabled, don't take the fault, just
Jeff Dike4c9e1382007-10-16 01:26:54 -070040 * fail.
41 */
David Hildenbrand70ffdb92015-05-11 17:52:11 +020042 if (faulthandler_disabled())
Paolo 'Blaisorblade' Giarrussofea03cb2005-09-22 21:44:20 -070043 goto out_nosemaphore;
44
Johannes Weiner759496b2013-09-12 15:13:39 -070045 if (is_user)
46 flags |= FAULT_FLAG_USER;
Kautuk Consul1cefe282012-05-31 16:26:03 -070047retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 down_read(&mm->mmap_sem);
49 vma = find_vma(mm, address);
Jeff Dike4c9e1382007-10-16 01:26:54 -070050 if (!vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 goto out;
Jeff Dike4c9e1382007-10-16 01:26:54 -070052 else if (vma->vm_start <= address)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 goto good_area;
Jeff Dike4c9e1382007-10-16 01:26:54 -070054 else if (!(vma->vm_flags & VM_GROWSDOWN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 goto out;
Jeff Dike4c9e1382007-10-16 01:26:54 -070056 else if (is_user && !ARCH_IS_STACKGROW(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 goto out;
Jeff Dike4c9e1382007-10-16 01:26:54 -070058 else if (expand_stack(vma, address))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 goto out;
60
Paolo 'Blaisorblade' Giarrusso3b521662005-09-03 15:57:26 -070061good_area:
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *code_out = SEGV_ACCERR;
Johannes Weiner759496b2013-09-12 15:13:39 -070063 if (is_write) {
64 if (!(vma->vm_flags & VM_WRITE))
65 goto out;
66 flags |= FAULT_FLAG_WRITE;
67 } else {
68 /* Don't require VM_READ|VM_EXEC for write faults! */
69 if (!(vma->vm_flags & (VM_READ | VM_EXEC)))
70 goto out;
71 }
Jeff Dike13479d52005-05-20 13:59:08 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 do {
Nick Piggin83c54072007-07-19 01:47:05 -070074 int fault;
Nick Piggin1c0fe6e2009-01-06 14:38:59 -080075
Kirill A. Shutemovdcddffd2016-07-26 15:25:18 -070076 fault = handle_mm_fault(vma, address, flags);
Kautuk Consul1cefe282012-05-31 16:26:03 -070077
78 if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current))
79 goto out_nosemaphore;
80
Nick Piggin83c54072007-07-19 01:47:05 -070081 if (unlikely(fault & VM_FAULT_ERROR)) {
82 if (fault & VM_FAULT_OOM) {
Nick Piggin83c54072007-07-19 01:47:05 -070083 goto out_of_memory;
Linus Torvalds33692f22015-01-29 10:51:32 -080084 } else if (fault & VM_FAULT_SIGSEGV) {
85 goto out;
Nick Piggin83c54072007-07-19 01:47:05 -070086 } else if (fault & VM_FAULT_SIGBUS) {
87 err = -EACCES;
88 goto out;
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 BUG();
91 }
Kautuk Consul1cefe282012-05-31 16:26:03 -070092 if (flags & FAULT_FLAG_ALLOW_RETRY) {
93 if (fault & VM_FAULT_MAJOR)
94 current->maj_flt++;
95 else
96 current->min_flt++;
97 if (fault & VM_FAULT_RETRY) {
98 flags &= ~FAULT_FLAG_ALLOW_RETRY;
Shaohua Li45cac652012-10-08 16:32:19 -070099 flags |= FAULT_FLAG_TRIED;
Kautuk Consul1cefe282012-05-31 16:26:03 -0700100
101 goto retry;
102 }
103 }
Nick Piggin83c54072007-07-19 01:47:05 -0700104
Paolo 'Blaisorblade' Giarrusso3b521662005-09-03 15:57:26 -0700105 pgd = pgd_offset(mm, address);
106 pud = pud_offset(pgd, address);
107 pmd = pmd_offset(pud, address);
108 pte = pte_offset_kernel(pmd, address);
Jeff Dike4c9e1382007-10-16 01:26:54 -0700109 } while (!pte_present(*pte));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 err = 0;
Jeff Dike4c9e1382007-10-16 01:26:54 -0700111 /*
112 * The below warning was added in place of
Paolo 'Blaisorblade' Giarrussocbc24af2005-11-13 16:07:04 -0800113 * pte_mkyoung(); if (is_write) pte_mkdirty();
114 * If it's triggered, we'd see normally a hang here (a clean pte is
115 * marked read-only to emulate the dirty bit).
116 * However, the generic code can mark a PTE writable but clean on a
117 * concurrent read fault, triggering this harmlessly. So comment it out.
118 */
119#if 0
Paolo 'Blaisorblade' Giarrusso16b03672005-09-10 19:44:58 +0200120 WARN_ON(!pte_young(*pte) || (is_write && !pte_dirty(*pte)));
Paolo 'Blaisorblade' Giarrussocbc24af2005-11-13 16:07:04 -0800121#endif
Paolo 'Blaisorblade' Giarrusso3b521662005-09-03 15:57:26 -0700122 flush_tlb_page(vma, address);
123out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 up_read(&mm->mmap_sem);
Paolo 'Blaisorblade' Giarrussofea03cb2005-09-22 21:44:20 -0700125out_nosemaphore:
Jeff Dike4c9e1382007-10-16 01:26:54 -0700126 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128out_of_memory:
Nick Piggin1c0fe6e2009-01-06 14:38:59 -0800129 /*
130 * We ran out of memory, call the OOM killer, and return the userspace
131 * (which will retry the fault, or kill us if we got oom-killed).
132 */
133 up_read(&mm->mmap_sem);
Johannes Weiner87134102013-09-12 15:13:38 -0700134 if (!is_user)
135 goto out_nosemaphore;
Nick Piggin1c0fe6e2009-01-06 14:38:59 -0800136 pagefault_out_of_memory();
137 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
Al Viro73395a02011-08-18 20:14:10 +0100139EXPORT_SYMBOL(handle_page_fault);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Richard Weinberger3ef61302011-05-24 17:13:03 -0700141static void show_segv_info(struct uml_pt_regs *regs)
142{
143 struct task_struct *tsk = current;
144 struct faultinfo *fi = UPT_FAULTINFO(regs);
145
146 if (!unhandled_signal(tsk, SIGSEGV))
147 return;
148
149 if (!printk_ratelimit())
150 return;
151
Kees Cook4d800a62017-12-19 13:52:23 -0800152 printk("%s%s[%d]: segfault at %lx ip %px sp %px error %x",
Richard Weinberger3ef61302011-05-24 17:13:03 -0700153 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
154 tsk->comm, task_pid_nr(tsk), FAULT_ADDRESS(*fi),
155 (void *)UPT_IP(regs), (void *)UPT_SP(regs),
156 fi->error_code);
157
158 print_vma_addr(KERN_CONT " in ", UPT_IP(regs));
159 printk(KERN_CONT "\n");
160}
161
Jeff Dike27aa6ef2007-02-10 01:44:14 -0800162static void bad_segv(struct faultinfo fi, unsigned long ip)
163{
164 struct siginfo si;
165
166 si.si_signo = SIGSEGV;
167 si.si_code = SEGV_ACCERR;
168 si.si_addr = (void __user *) FAULT_ADDRESS(fi);
169 current->thread.arch.faultinfo = fi;
170 force_sig_info(SIGSEGV, &si, current);
171}
172
Jeff Dike3e6f2ac2008-02-04 22:30:58 -0800173void fatal_sigsegv(void)
174{
175 force_sigsegv(SIGSEGV, current);
Ingo Molnarccaee5f2015-07-03 12:44:20 -0700176 do_signal(&current->thread.regs);
Jeff Dike3e6f2ac2008-02-04 22:30:58 -0800177 /*
178 * This is to tell gcc that we're not returning - do_signal
179 * can, in general, return, but in this case, it's not, since
180 * we just got a fatal SIGSEGV queued.
181 */
182 os_dump_core();
183}
184
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200185void segv_handler(int sig, struct siginfo *unused_si, struct uml_pt_regs *regs)
Gennady Sharapovc66fdd52006-01-08 01:01:32 -0800186{
187 struct faultinfo * fi = UPT_FAULTINFO(regs);
188
Jeff Dike4c9e1382007-10-16 01:26:54 -0700189 if (UPT_IS_USER(regs) && !SEGV_IS_FIXABLE(fi)) {
Richard Weinberger3ef61302011-05-24 17:13:03 -0700190 show_segv_info(regs);
Gennady Sharapovc66fdd52006-01-08 01:01:32 -0800191 bad_segv(*fi, UPT_IP(regs));
192 return;
193 }
194 segv(*fi, UPT_IP(regs), UPT_IS_USER(regs), regs);
195}
196
Bodo Stroesserc5784552005-05-05 16:15:31 -0700197/*
198 * We give a *copy* of the faultinfo in the regs to segv.
199 * This must be done, since nesting SEGVs could overwrite
200 * the info in the regs. A pointer to the info then would
201 * give us bad data!
202 */
Jeff Dike5d864562007-05-06 14:51:24 -0700203unsigned long segv(struct faultinfo fi, unsigned long ip, int is_user,
Jeff Dike77bf4402007-10-16 01:26:58 -0700204 struct uml_pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 struct siginfo si;
Jeff Dikefab95c52007-10-16 01:27:05 -0700207 jmp_buf *catcher;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 int err;
Jeff Dike5d864562007-05-06 14:51:24 -0700209 int is_write = FAULT_WRITE(fi);
210 unsigned long address = FAULT_ADDRESS(fi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Richard Weinbergerbb6a1b22014-07-20 13:39:27 +0200212 if (!is_user && regs)
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200213 current->thread.segv_regs = container_of(regs, struct pt_regs, regs);
214
Jeff Dike4c9e1382007-10-16 01:26:54 -0700215 if (!is_user && (address >= start_vm) && (address < end_vm)) {
Jeff Dike5d864562007-05-06 14:51:24 -0700216 flush_tlb_kernel_vm();
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200217 goto out;
Jeff Dike5d864562007-05-06 14:51:24 -0700218 }
Jeff Dike4c9e1382007-10-16 01:26:54 -0700219 else if (current->mm == NULL) {
Jeff Dike377fad32007-05-06 14:51:25 -0700220 show_regs(container_of(regs, struct pt_regs, regs));
Jeff Dike4c9e1382007-10-16 01:26:54 -0700221 panic("Segfault with no mm");
Jeff Dike377fad32007-05-06 14:51:25 -0700222 }
Richard Weinberger56b88a32015-08-09 22:26:33 +0200223 else if (!is_user && address > PAGE_SIZE && address < TASK_SIZE) {
Richard Weinbergerd2313082015-05-31 19:21:51 +0200224 show_regs(container_of(regs, struct pt_regs, regs));
225 panic("Kernel tried to access user memory at addr 0x%lx, ip 0x%lx",
226 address, ip);
227 }
Paolo 'Blaisorblade' Giarrusso546fe1c2005-09-22 21:44:16 -0700228
Richard Weinbergerd0b5e152015-03-18 21:31:27 +0100229 if (SEGV_IS_FIXABLE(&fi))
Jeff Dike4c9e1382007-10-16 01:26:54 -0700230 err = handle_page_fault(address, ip, is_write, is_user,
231 &si.si_code);
Paolo 'Blaisorblade' Giarrusso546fe1c2005-09-22 21:44:16 -0700232 else {
233 err = -EFAULT;
Jeff Dike4c9e1382007-10-16 01:26:54 -0700234 /*
235 * A thread accessed NULL, we get a fault, but CR2 is invalid.
236 * This code is used in __do_copy_from_user() of TT mode.
237 * XXX tt mode is gone, so maybe this isn't needed any more
238 */
Paolo 'Blaisorblade' Giarrusso546fe1c2005-09-22 21:44:16 -0700239 address = 0;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 catcher = current->thread.fault_catcher;
Jeff Dike4c9e1382007-10-16 01:26:54 -0700243 if (!err)
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200244 goto out;
Jeff Dike4c9e1382007-10-16 01:26:54 -0700245 else if (catcher != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 current->thread.fault_addr = (void *) address;
Jeff Dikefab95c52007-10-16 01:27:05 -0700247 UML_LONGJMP(catcher, 1);
Jeff Dike1d3468a2006-07-10 04:45:13 -0700248 }
Jeff Dike4c9e1382007-10-16 01:26:54 -0700249 else if (current->thread.fault_addr != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 panic("fault_addr set but no fault catcher");
Jeff Dike4c9e1382007-10-16 01:26:54 -0700251 else if (!is_user && arch_fixup(ip, regs))
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200252 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Jeff Dike4c9e1382007-10-16 01:26:54 -0700254 if (!is_user) {
Jeff Dike377fad32007-05-06 14:51:25 -0700255 show_regs(container_of(regs, struct pt_regs, regs));
Jeff Dike1d3468a2006-07-10 04:45:13 -0700256 panic("Kernel mode fault at addr 0x%lx, ip 0x%lx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 address, ip);
Jeff Dike377fad32007-05-06 14:51:25 -0700258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Richard Weinberger3ef61302011-05-24 17:13:03 -0700260 show_segv_info(regs);
261
Paolo 'Blaisorblade' Giarrusso3b521662005-09-03 15:57:26 -0700262 if (err == -EACCES) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 si.si_signo = SIGBUS;
264 si.si_errno = 0;
265 si.si_code = BUS_ADRERR;
Al Viro4d338e12006-03-31 02:30:15 -0800266 si.si_addr = (void __user *)address;
Jeff Dike5d864562007-05-06 14:51:24 -0700267 current->thread.arch.faultinfo = fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 force_sig_info(SIGBUS, &si, current);
Paolo 'Blaisorblade' Giarrusso3b521662005-09-03 15:57:26 -0700269 } else {
270 BUG_ON(err != -EFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 si.si_signo = SIGSEGV;
Al Viro4d338e12006-03-31 02:30:15 -0800272 si.si_addr = (void __user *) address;
Jeff Dike5d864562007-05-06 14:51:24 -0700273 current->thread.arch.faultinfo = fi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 force_sig_info(SIGSEGV, &si, current);
275 }
Richard Weinbergerf72c22e2013-09-23 17:38:02 +0200276
277out:
278 if (regs)
279 current->thread.segv_regs = NULL;
280
Jeff Dike5d864562007-05-06 14:51:24 -0700281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200284void relay_signal(int sig, struct siginfo *si, struct uml_pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200286 struct faultinfo *fi;
287 struct siginfo clean_si;
288
Jeff Dike4c9e1382007-10-16 01:26:54 -0700289 if (!UPT_IS_USER(regs)) {
290 if (sig == SIGBUS)
291 printk(KERN_ERR "Bus error - the host /dev/shm or /tmp "
292 "mount likely just ran out of space\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 panic("Kernel mode signal %d", sig);
Jeff Dike6edf4282006-09-25 23:33:03 -0700294 }
295
Jeff Dike9226b832008-02-04 22:30:40 -0800296 arch_examine_signal(sig, regs);
297
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200298 memset(&clean_si, 0, sizeof(clean_si));
299 clean_si.si_signo = si->si_signo;
300 clean_si.si_errno = si->si_errno;
301 clean_si.si_code = si->si_code;
302 switch (sig) {
303 case SIGILL:
304 case SIGFPE:
305 case SIGSEGV:
306 case SIGBUS:
307 case SIGTRAP:
308 fi = UPT_FAULTINFO(regs);
309 clean_si.si_addr = (void __user *) FAULT_ADDRESS(*fi);
310 current->thread.arch.faultinfo = *fi;
311#ifdef __ARCH_SI_TRAPNO
312 clean_si.si_trapno = si->si_trapno;
313#endif
314 break;
315 default:
316 printk(KERN_ERR "Attempted to relay unknown signal %d (si_code = %d)\n",
317 sig, si->si_code);
318 }
319
320 force_sig_info(sig, &clean_si, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200323void bus_handler(int sig, struct siginfo *si, struct uml_pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Jeff Dike4c9e1382007-10-16 01:26:54 -0700325 if (current->thread.fault_catcher != NULL)
Jeff Dikefab95c52007-10-16 01:27:05 -0700326 UML_LONGJMP(current->thread.fault_catcher, 1);
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200327 else
328 relay_signal(sig, si, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Martin Pärteld3c1cfc2012-08-02 00:49:17 +0200331void winch(int sig, struct siginfo *unused_si, struct uml_pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 do_IRQ(WINCH_IRQ, regs);
334}
335
336void trap_init(void)
337{
338}