1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include <linux/extable.h>
21#include <linux/signal.h>
22#include <linux/sched.h>
23#include <linux/kernel.h>
24#include <linux/errno.h>
25#include <linux/string.h>
26#include <linux/types.h>
27#include <linux/ptrace.h>
28#include <linux/mman.h>
29#include <linux/mm.h>
30#include <linux/interrupt.h>
31#include <linux/perf_event.h>
32
33#include <asm/page.h>
34#include <asm/mmu.h>
35#include <linux/mmu_context.h>
36#include <linux/uaccess.h>
37#include <asm/exceptions.h>
38
39static unsigned long pte_misses;
40static unsigned long pte_errors;
41
42
43
44
45
46static int store_updates_sp(struct pt_regs *regs)
47{
48 unsigned int inst;
49
50 if (get_user(inst, (unsigned int __user *)regs->pc))
51 return 0;
52
53 if (((inst >> 21) & 0x1f) != 1)
54 return 0;
55
56 if ((inst & 0xd0000000) == 0xd0000000)
57 return 1;
58 return 0;
59}
60
61
62
63
64
65
66
67void bad_page_fault(struct pt_regs *regs, unsigned long address, int sig)
68{
69 const struct exception_table_entry *fixup;
70
71
72 fixup = search_exception_tables(regs->pc);
73 if (fixup) {
74 regs->pc = fixup->fixup;
75 return;
76 }
77
78
79 die("kernel access of bad area", regs, sig);
80}
81
82
83
84
85
86void do_page_fault(struct pt_regs *regs, unsigned long address,
87 unsigned long error_code)
88{
89 struct vm_area_struct *vma;
90 struct mm_struct *mm = current->mm;
91 int code = SEGV_MAPERR;
92 int is_write = error_code & ESR_S;
93 vm_fault_t fault;
94 unsigned int flags = FAULT_FLAG_DEFAULT;
95
96 regs->ear = address;
97 regs->esr = error_code;
98
99
100 if (unlikely(kernel_mode(regs) && (address >= TASK_SIZE))) {
101 pr_warn("kernel task_size exceed");
102 _exception(SIGSEGV, regs, code, address);
103 }
104
105
106 if ((error_code & 0x13) == 0x13 || (error_code & 0x11) == 0x11)
107 is_write = 0;
108
109 if (unlikely(faulthandler_disabled() || !mm)) {
110 if (kernel_mode(regs))
111 goto bad_area_nosemaphore;
112
113
114
115 pr_emerg("Page fault in user mode with faulthandler_disabled(), mm = %p\n",
116 mm);
117 pr_emerg("r15 = %lx MSR = %lx\n",
118 regs->r15, regs->msr);
119 die("Weird page fault", regs, SIGSEGV);
120 }
121
122 if (user_mode(regs))
123 flags |= FAULT_FLAG_USER;
124
125 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, address);
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142 if (unlikely(!mmap_read_trylock(mm))) {
143 if (kernel_mode(regs) && !search_exception_tables(regs->pc))
144 goto bad_area_nosemaphore;
145
146retry:
147 mmap_read_lock(mm);
148 }
149
150 vma = find_vma(mm, address);
151 if (unlikely(!vma))
152 goto bad_area;
153
154 if (vma->vm_start <= address)
155 goto good_area;
156
157 if (unlikely(!(vma->vm_flags & VM_GROWSDOWN)))
158 goto bad_area;
159
160 if (unlikely(!is_write))
161 goto bad_area;
162
163
164
165
166
167
168
169
170
171
172 if (unlikely(address + 0x100000 < vma->vm_end)) {
173
174
175 struct pt_regs *uregs = current->thread.regs;
176 if (uregs == NULL)
177 goto bad_area;
178
179
180
181
182
183
184
185
186
187
188
189
190
191 if (address + 2048 < uregs->r1
192 && (kernel_mode(regs) || !store_updates_sp(regs)))
193 goto bad_area;
194 }
195 if (expand_stack(vma, address))
196 goto bad_area;
197
198good_area:
199 code = SEGV_ACCERR;
200
201
202 if (unlikely(is_write)) {
203 if (unlikely(!(vma->vm_flags & VM_WRITE)))
204 goto bad_area;
205 flags |= FAULT_FLAG_WRITE;
206
207 } else {
208
209 if (unlikely(error_code & 0x08000000))
210 goto bad_area;
211 if (unlikely(!(vma->vm_flags & (VM_READ | VM_EXEC))))
212 goto bad_area;
213 }
214
215
216
217
218
219
220 fault = handle_mm_fault(vma, address, flags, regs);
221
222 if (fault_signal_pending(fault, regs))
223 return;
224
225 if (unlikely(fault & VM_FAULT_ERROR)) {
226 if (fault & VM_FAULT_OOM)
227 goto out_of_memory;
228 else if (fault & VM_FAULT_SIGSEGV)
229 goto bad_area;
230 else if (fault & VM_FAULT_SIGBUS)
231 goto do_sigbus;
232 BUG();
233 }
234
235 if (flags & FAULT_FLAG_ALLOW_RETRY) {
236 if (fault & VM_FAULT_RETRY) {
237 flags |= FAULT_FLAG_TRIED;
238
239
240
241
242
243
244
245 goto retry;
246 }
247 }
248
249 mmap_read_unlock(mm);
250
251
252
253
254
255
256 pte_misses++;
257 return;
258
259bad_area:
260 mmap_read_unlock(mm);
261
262bad_area_nosemaphore:
263 pte_errors++;
264
265
266 if (user_mode(regs)) {
267 _exception(SIGSEGV, regs, code, address);
268 return;
269 }
270
271 bad_page_fault(regs, address, SIGSEGV);
272 return;
273
274
275
276
277
278out_of_memory:
279 mmap_read_unlock(mm);
280 if (!user_mode(regs))
281 bad_page_fault(regs, address, SIGKILL);
282 else
283 pagefault_out_of_memory();
284 return;
285
286do_sigbus:
287 mmap_read_unlock(mm);
288 if (user_mode(regs)) {
289 force_sig_fault(SIGBUS, BUS_ADRERR, (void __user *)address);
290 return;
291 }
292 bad_page_fault(regs, address, SIGBUS);
293}
294