fault.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. /*
  2. * linux/arch/arm/mm/fault.c
  3. *
  4. * Copyright (C) 1995 Linus Torvalds
  5. * Modifications for ARM processor (c) 1995-2004 Russell King
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/extable.h>
  12. #include <linux/signal.h>
  13. #include <linux/mm.h>
  14. #include <linux/hardirq.h>
  15. #include <linux/init.h>
  16. #include <linux/kprobes.h>
  17. #include <linux/uaccess.h>
  18. #include <linux/page-flags.h>
  19. #include <linux/sched/signal.h>
  20. #include <linux/sched/debug.h>
  21. #include <linux/highmem.h>
  22. #include <linux/perf_event.h>
  23. #include <asm/exception.h>
  24. #include <asm/pgtable.h>
  25. #include <asm/system_misc.h>
  26. #include <asm/system_info.h>
  27. #include <asm/tlbflush.h>
  28. #include "fault.h"
  29. #ifdef CONFIG_MMU
  30. #ifdef CONFIG_KPROBES
  31. static inline int notify_page_fault(struct pt_regs *regs, unsigned int fsr)
  32. {
  33. int ret = 0;
  34. if (!user_mode(regs)) {
  35. /* kprobe_running() needs smp_processor_id() */
  36. preempt_disable();
  37. if (kprobe_running() && kprobe_fault_handler(regs, fsr))
  38. ret = 1;
  39. preempt_enable();
  40. }
  41. return ret;
  42. }
  43. #else
  44. static inline int notify_page_fault(struct pt_regs *regs, unsigned int fsr)
  45. {
  46. return 0;
  47. }
  48. #endif
  49. /*
  50. * This is useful to dump out the page tables associated with
  51. * 'addr' in mm 'mm'.
  52. */
  53. void show_pte(struct mm_struct *mm, unsigned long addr)
  54. {
  55. pgd_t *pgd;
  56. if (!mm)
  57. mm = &init_mm;
  58. pr_alert("pgd = %p\n", mm->pgd);
  59. pgd = pgd_offset(mm, addr);
  60. pr_alert("[%08lx] *pgd=%08llx",
  61. addr, (long long)pgd_val(*pgd));
  62. do {
  63. pud_t *pud;
  64. pmd_t *pmd;
  65. pte_t *pte;
  66. if (pgd_none(*pgd))
  67. break;
  68. if (pgd_bad(*pgd)) {
  69. pr_cont("(bad)");
  70. break;
  71. }
  72. pud = pud_offset(pgd, addr);
  73. if (PTRS_PER_PUD != 1)
  74. pr_cont(", *pud=%08llx", (long long)pud_val(*pud));
  75. if (pud_none(*pud))
  76. break;
  77. if (pud_bad(*pud)) {
  78. pr_cont("(bad)");
  79. break;
  80. }
  81. pmd = pmd_offset(pud, addr);
  82. if (PTRS_PER_PMD != 1)
  83. pr_cont(", *pmd=%08llx", (long long)pmd_val(*pmd));
  84. if (pmd_none(*pmd))
  85. break;
  86. if (pmd_bad(*pmd)) {
  87. pr_cont("(bad)");
  88. break;
  89. }
  90. /* We must not map this if we have highmem enabled */
  91. if (PageHighMem(pfn_to_page(pmd_val(*pmd) >> PAGE_SHIFT)))
  92. break;
  93. pte = pte_offset_map(pmd, addr);
  94. pr_cont(", *pte=%08llx", (long long)pte_val(*pte));
  95. #ifndef CONFIG_ARM_LPAE
  96. pr_cont(", *ppte=%08llx",
  97. (long long)pte_val(pte[PTE_HWTABLE_PTRS]));
  98. #endif
  99. pte_unmap(pte);
  100. } while(0);
  101. pr_cont("\n");
  102. }
  103. #else /* CONFIG_MMU */
  104. void show_pte(struct mm_struct *mm, unsigned long addr)
  105. { }
  106. #endif /* CONFIG_MMU */
  107. /*
  108. * Oops. The kernel tried to access some page that wasn't present.
  109. */
  110. static void
  111. __do_kernel_fault(struct mm_struct *mm, unsigned long addr, unsigned int fsr,
  112. struct pt_regs *regs)
  113. {
  114. /*
  115. * Are we prepared to handle this kernel fault?
  116. */
  117. if (fixup_exception(regs))
  118. return;
  119. /*
  120. * No handler, we'll have to terminate things with extreme prejudice.
  121. */
  122. bust_spinlocks(1);
  123. pr_alert("Unable to handle kernel %s at virtual address %08lx\n",
  124. (addr < PAGE_SIZE) ? "NULL pointer dereference" :
  125. "paging request", addr);
  126. show_pte(mm, addr);
  127. die("Oops", regs, fsr);
  128. bust_spinlocks(0);
  129. do_exit(SIGKILL);
  130. }
  131. /*
  132. * Something tried to access memory that isn't in our memory map..
  133. * User mode accesses just cause a SIGSEGV
  134. */
  135. static void
  136. __do_user_fault(struct task_struct *tsk, unsigned long addr,
  137. unsigned int fsr, unsigned int sig, int code,
  138. struct pt_regs *regs)
  139. {
  140. struct siginfo si;
  141. #ifdef CONFIG_DEBUG_USER
  142. if (((user_debug & UDBG_SEGV) && (sig == SIGSEGV)) ||
  143. ((user_debug & UDBG_BUS) && (sig == SIGBUS))) {
  144. printk(KERN_DEBUG "%s: unhandled page fault (%d) at 0x%08lx, code 0x%03x\n",
  145. tsk->comm, sig, addr, fsr);
  146. show_pte(tsk->mm, addr);
  147. show_regs(regs);
  148. }
  149. #endif
  150. tsk->thread.address = addr;
  151. tsk->thread.error_code = fsr;
  152. tsk->thread.trap_no = 14;
  153. si.si_signo = sig;
  154. si.si_errno = 0;
  155. si.si_code = code;
  156. si.si_addr = (void __user *)addr;
  157. force_sig_info(sig, &si, tsk);
  158. }
  159. void do_bad_area(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  160. {
  161. struct task_struct *tsk = current;
  162. struct mm_struct *mm = tsk->active_mm;
  163. /*
  164. * If we are in kernel mode at this point, we
  165. * have no context to handle this fault with.
  166. */
  167. if (user_mode(regs))
  168. __do_user_fault(tsk, addr, fsr, SIGSEGV, SEGV_MAPERR, regs);
  169. else
  170. __do_kernel_fault(mm, addr, fsr, regs);
  171. }
  172. #ifdef CONFIG_MMU
  173. #define VM_FAULT_BADMAP 0x010000
  174. #define VM_FAULT_BADACCESS 0x020000
  175. /*
  176. * Check that the permissions on the VMA allow for the fault which occurred.
  177. * If we encountered a write fault, we must have write permission, otherwise
  178. * we allow any permission.
  179. */
  180. static inline bool access_error(unsigned int fsr, struct vm_area_struct *vma)
  181. {
  182. unsigned int mask = VM_READ | VM_WRITE | VM_EXEC;
  183. if (fsr & FSR_WRITE)
  184. mask = VM_WRITE;
  185. if (fsr & FSR_LNX_PF)
  186. mask = VM_EXEC;
  187. return vma->vm_flags & mask ? false : true;
  188. }
  189. static int __kprobes
  190. __do_page_fault(struct mm_struct *mm, unsigned long addr, unsigned int fsr,
  191. unsigned int flags, struct task_struct *tsk)
  192. {
  193. struct vm_area_struct *vma;
  194. int fault;
  195. vma = find_vma(mm, addr);
  196. fault = VM_FAULT_BADMAP;
  197. if (unlikely(!vma))
  198. goto out;
  199. if (unlikely(vma->vm_start > addr))
  200. goto check_stack;
  201. /*
  202. * Ok, we have a good vm_area for this
  203. * memory access, so we can handle it.
  204. */
  205. good_area:
  206. if (access_error(fsr, vma)) {
  207. fault = VM_FAULT_BADACCESS;
  208. goto out;
  209. }
  210. return handle_mm_fault(vma, addr & PAGE_MASK, flags);
  211. check_stack:
  212. /* Don't allow expansion below FIRST_USER_ADDRESS */
  213. if (vma->vm_flags & VM_GROWSDOWN &&
  214. addr >= FIRST_USER_ADDRESS && !expand_stack(vma, addr))
  215. goto good_area;
  216. out:
  217. return fault;
  218. }
  219. static int __kprobes
  220. do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  221. {
  222. struct task_struct *tsk;
  223. struct mm_struct *mm;
  224. int fault, sig, code;
  225. unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;
  226. if (notify_page_fault(regs, fsr))
  227. return 0;
  228. tsk = current;
  229. mm = tsk->mm;
  230. /* Enable interrupts if they were enabled in the parent context. */
  231. if (interrupts_enabled(regs))
  232. local_irq_enable();
  233. /*
  234. * If we're in an interrupt or have no user
  235. * context, we must not take the fault..
  236. */
  237. if (faulthandler_disabled() || !mm)
  238. goto no_context;
  239. if (user_mode(regs))
  240. flags |= FAULT_FLAG_USER;
  241. if (fsr & FSR_WRITE)
  242. flags |= FAULT_FLAG_WRITE;
  243. /*
  244. * As per x86, we may deadlock here. However, since the kernel only
  245. * validly references user space from well defined areas of the code,
  246. * we can bug out early if this is from code which shouldn't.
  247. */
  248. if (!down_read_trylock(&mm->mmap_sem)) {
  249. if (!user_mode(regs) && !search_exception_tables(regs->ARM_pc))
  250. goto no_context;
  251. retry:
  252. down_read(&mm->mmap_sem);
  253. } else {
  254. /*
  255. * The above down_read_trylock() might have succeeded in
  256. * which case, we'll have missed the might_sleep() from
  257. * down_read()
  258. */
  259. might_sleep();
  260. #ifdef CONFIG_DEBUG_VM
  261. if (!user_mode(regs) &&
  262. !search_exception_tables(regs->ARM_pc))
  263. goto no_context;
  264. #endif
  265. }
  266. fault = __do_page_fault(mm, addr, fsr, flags, tsk);
  267. /* If we need to retry but a fatal signal is pending, handle the
  268. * signal first. We do not need to release the mmap_sem because
  269. * it would already be released in __lock_page_or_retry in
  270. * mm/filemap.c. */
  271. if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) {
  272. if (!user_mode(regs))
  273. goto no_context;
  274. return 0;
  275. }
  276. /*
  277. * Major/minor page fault accounting is only done on the
  278. * initial attempt. If we go through a retry, it is extremely
  279. * likely that the page will be found in page cache at that point.
  280. */
  281. perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
  282. if (!(fault & VM_FAULT_ERROR) && flags & FAULT_FLAG_ALLOW_RETRY) {
  283. if (fault & VM_FAULT_MAJOR) {
  284. tsk->maj_flt++;
  285. perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1,
  286. regs, addr);
  287. } else {
  288. tsk->min_flt++;
  289. perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1,
  290. regs, addr);
  291. }
  292. if (fault & VM_FAULT_RETRY) {
  293. /* Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk
  294. * of starvation. */
  295. flags &= ~FAULT_FLAG_ALLOW_RETRY;
  296. flags |= FAULT_FLAG_TRIED;
  297. goto retry;
  298. }
  299. }
  300. up_read(&mm->mmap_sem);
  301. /*
  302. * Handle the "normal" case first - VM_FAULT_MAJOR
  303. */
  304. if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP | VM_FAULT_BADACCESS))))
  305. return 0;
  306. /*
  307. * If we are in kernel mode at this point, we
  308. * have no context to handle this fault with.
  309. */
  310. if (!user_mode(regs))
  311. goto no_context;
  312. if (fault & VM_FAULT_OOM) {
  313. /*
  314. * We ran out of memory, call the OOM killer, and return to
  315. * userspace (which will retry the fault, or kill us if we
  316. * got oom-killed)
  317. */
  318. pagefault_out_of_memory();
  319. return 0;
  320. }
  321. if (fault & VM_FAULT_SIGBUS) {
  322. /*
  323. * We had some memory, but were unable to
  324. * successfully fix up this page fault.
  325. */
  326. sig = SIGBUS;
  327. code = BUS_ADRERR;
  328. } else {
  329. /*
  330. * Something tried to access memory that
  331. * isn't in our memory map..
  332. */
  333. sig = SIGSEGV;
  334. code = fault == VM_FAULT_BADACCESS ?
  335. SEGV_ACCERR : SEGV_MAPERR;
  336. }
  337. __do_user_fault(tsk, addr, fsr, sig, code, regs);
  338. return 0;
  339. no_context:
  340. __do_kernel_fault(mm, addr, fsr, regs);
  341. return 0;
  342. }
  343. #else /* CONFIG_MMU */
  344. static int
  345. do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  346. {
  347. return 0;
  348. }
  349. #endif /* CONFIG_MMU */
  350. /*
  351. * First Level Translation Fault Handler
  352. *
  353. * We enter here because the first level page table doesn't contain
  354. * a valid entry for the address.
  355. *
  356. * If the address is in kernel space (>= TASK_SIZE), then we are
  357. * probably faulting in the vmalloc() area.
  358. *
  359. * If the init_task's first level page tables contains the relevant
  360. * entry, we copy the it to this task. If not, we send the process
  361. * a signal, fixup the exception, or oops the kernel.
  362. *
  363. * NOTE! We MUST NOT take any locks for this case. We may be in an
  364. * interrupt or a critical region, and should only copy the information
  365. * from the master page table, nothing more.
  366. */
  367. #ifdef CONFIG_MMU
  368. static int __kprobes
  369. do_translation_fault(unsigned long addr, unsigned int fsr,
  370. struct pt_regs *regs)
  371. {
  372. unsigned int index;
  373. pgd_t *pgd, *pgd_k;
  374. pud_t *pud, *pud_k;
  375. pmd_t *pmd, *pmd_k;
  376. if (addr < TASK_SIZE)
  377. return do_page_fault(addr, fsr, regs);
  378. if (user_mode(regs))
  379. goto bad_area;
  380. index = pgd_index(addr);
  381. pgd = cpu_get_pgd() + index;
  382. pgd_k = init_mm.pgd + index;
  383. if (pgd_none(*pgd_k))
  384. goto bad_area;
  385. if (!pgd_present(*pgd))
  386. set_pgd(pgd, *pgd_k);
  387. pud = pud_offset(pgd, addr);
  388. pud_k = pud_offset(pgd_k, addr);
  389. if (pud_none(*pud_k))
  390. goto bad_area;
  391. if (!pud_present(*pud))
  392. set_pud(pud, *pud_k);
  393. pmd = pmd_offset(pud, addr);
  394. pmd_k = pmd_offset(pud_k, addr);
  395. #ifdef CONFIG_ARM_LPAE
  396. /*
  397. * Only one hardware entry per PMD with LPAE.
  398. */
  399. index = 0;
  400. #else
  401. /*
  402. * On ARM one Linux PGD entry contains two hardware entries (see page
  403. * tables layout in pgtable.h). We normally guarantee that we always
  404. * fill both L1 entries. But create_mapping() doesn't follow the rule.
  405. * It can create inidividual L1 entries, so here we have to call
  406. * pmd_none() check for the entry really corresponded to address, not
  407. * for the first of pair.
  408. */
  409. index = (addr >> SECTION_SHIFT) & 1;
  410. #endif
  411. if (pmd_none(pmd_k[index]))
  412. goto bad_area;
  413. copy_pmd(pmd, pmd_k);
  414. return 0;
  415. bad_area:
  416. do_bad_area(addr, fsr, regs);
  417. return 0;
  418. }
  419. #else /* CONFIG_MMU */
  420. static int
  421. do_translation_fault(unsigned long addr, unsigned int fsr,
  422. struct pt_regs *regs)
  423. {
  424. return 0;
  425. }
  426. #endif /* CONFIG_MMU */
  427. /*
  428. * Some section permission faults need to be handled gracefully.
  429. * They can happen due to a __{get,put}_user during an oops.
  430. */
  431. #ifndef CONFIG_ARM_LPAE
  432. static int
  433. do_sect_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  434. {
  435. do_bad_area(addr, fsr, regs);
  436. return 0;
  437. }
  438. #endif /* CONFIG_ARM_LPAE */
  439. /*
  440. * This abort handler always returns "fault".
  441. */
  442. static int
  443. do_bad(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  444. {
  445. return 1;
  446. }
  447. struct fsr_info {
  448. int (*fn)(unsigned long addr, unsigned int fsr, struct pt_regs *regs);
  449. int sig;
  450. int code;
  451. const char *name;
  452. };
  453. /* FSR definition */
  454. #ifdef CONFIG_ARM_LPAE
  455. #include "fsr-3level.c"
  456. #else
  457. #include "fsr-2level.c"
  458. #endif
  459. void __init
  460. hook_fault_code(int nr, int (*fn)(unsigned long, unsigned int, struct pt_regs *),
  461. int sig, int code, const char *name)
  462. {
  463. if (nr < 0 || nr >= ARRAY_SIZE(fsr_info))
  464. BUG();
  465. fsr_info[nr].fn = fn;
  466. fsr_info[nr].sig = sig;
  467. fsr_info[nr].code = code;
  468. fsr_info[nr].name = name;
  469. }
  470. /*
  471. * Dispatch a data abort to the relevant handler.
  472. */
  473. asmlinkage void __exception
  474. do_DataAbort(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  475. {
  476. const struct fsr_info *inf = fsr_info + fsr_fs(fsr);
  477. struct siginfo info;
  478. if (!inf->fn(addr, fsr & ~FSR_LNX_PF, regs))
  479. return;
  480. pr_alert("Unhandled fault: %s (0x%03x) at 0x%08lx\n",
  481. inf->name, fsr, addr);
  482. show_pte(current->mm, addr);
  483. info.si_signo = inf->sig;
  484. info.si_errno = 0;
  485. info.si_code = inf->code;
  486. info.si_addr = (void __user *)addr;
  487. arm_notify_die("", regs, &info, fsr, 0);
  488. }
  489. void __init
  490. hook_ifault_code(int nr, int (*fn)(unsigned long, unsigned int, struct pt_regs *),
  491. int sig, int code, const char *name)
  492. {
  493. if (nr < 0 || nr >= ARRAY_SIZE(ifsr_info))
  494. BUG();
  495. ifsr_info[nr].fn = fn;
  496. ifsr_info[nr].sig = sig;
  497. ifsr_info[nr].code = code;
  498. ifsr_info[nr].name = name;
  499. }
  500. asmlinkage void __exception
  501. do_PrefetchAbort(unsigned long addr, unsigned int ifsr, struct pt_regs *regs)
  502. {
  503. const struct fsr_info *inf = ifsr_info + fsr_fs(ifsr);
  504. struct siginfo info;
  505. if (!inf->fn(addr, ifsr | FSR_LNX_PF, regs))
  506. return;
  507. pr_alert("Unhandled prefetch abort: %s (0x%03x) at 0x%08lx\n",
  508. inf->name, ifsr, addr);
  509. info.si_signo = inf->sig;
  510. info.si_errno = 0;
  511. info.si_code = inf->code;
  512. info.si_addr = (void __user *)addr;
  513. arm_notify_die("", regs, &info, ifsr, 0);
  514. }
  515. /*
  516. * Abort handler to be used only during first unmasking of asynchronous aborts
  517. * on the boot CPU. This makes sure that the machine will not die if the
  518. * firmware/bootloader left an imprecise abort pending for us to trip over.
  519. */
  520. static int __init early_abort_handler(unsigned long addr, unsigned int fsr,
  521. struct pt_regs *regs)
  522. {
  523. pr_warn("Hit pending asynchronous external abort (FSR=0x%08x) during "
  524. "first unmask, this is most likely caused by a "
  525. "firmware/bootloader bug.\n", fsr);
  526. return 0;
  527. }
  528. void __init early_abt_enable(void)
  529. {
  530. fsr_info[FSR_FS_AEA].fn = early_abort_handler;
  531. local_abt_enable();
  532. fsr_info[FSR_FS_AEA].fn = do_bad;
  533. }
  534. #ifndef CONFIG_ARM_LPAE
  535. static int __init exceptions_init(void)
  536. {
  537. if (cpu_architecture() >= CPU_ARCH_ARMv6) {
  538. hook_fault_code(4, do_translation_fault, SIGSEGV, SEGV_MAPERR,
  539. "I-cache maintenance fault");
  540. }
  541. if (cpu_architecture() >= CPU_ARCH_ARMv7) {
  542. /*
  543. * TODO: Access flag faults introduced in ARMv6K.
  544. * Runtime check for 'K' extension is needed
  545. */
  546. hook_fault_code(3, do_bad, SIGSEGV, SEGV_MAPERR,
  547. "section access flag fault");
  548. hook_fault_code(6, do_bad, SIGSEGV, SEGV_MAPERR,
  549. "section access flag fault");
  550. }
  551. return 0;
  552. }
  553. arch_initcall(exceptions_init);
  554. #endif