2 * Copyright (C) 2008, 2009 Intel Corporation
3 * Authors: Andi Kleen, Fengguang Wu
5 * This software may be redistributed and/or modified under the terms of
6 * the GNU General Public License ("GPL") version 2 only as published by the
7 * Free Software Foundation.
9 * High level machine check handler. Handles pages reported by the
10 * hardware as being corrupted usually due to a 2bit ECC memory or cache
13 * Handles page cache pages in various states. The tricky part
14 * here is that we can access any page asynchronous to other VM
15 * users, because memory failures could happen anytime and anywhere,
16 * possibly violating some of their assumptions. This is why this code
17 * has to be extremely careful. Generally it tries to use normal locking
18 * rules, as in get the standard locks, even if that means the
19 * error handling takes potentially a long time.
21 * The operation to map back from RMAP chains to processes has to walk
22 * the complete process list and has non linear complexity with the number
23 * mappings. In short it can be quite slow. But since memory corruptions
24 * are rare we hope to get away with this.
29 * - hugetlb needs more code
30 * - kcore/oldmem/vmcore/mem/kmem check for hwpoison pages
31 * - pass bad pages to kdump next kernel
33 #define DEBUG 1 /* remove me in 2.6.34 */
34 #include <linux/kernel.h>
36 #include <linux/page-flags.h>
37 #include <linux/sched.h>
38 #include <linux/ksm.h>
39 #include <linux/rmap.h>
40 #include <linux/pagemap.h>
41 #include <linux/swap.h>
42 #include <linux/backing-dev.h>
45 int sysctl_memory_failure_early_kill __read_mostly
= 0;
47 int sysctl_memory_failure_recovery __read_mostly
= 1;
49 atomic_long_t mce_bad_pages __read_mostly
= ATOMIC_LONG_INIT(0);
52 * Send all the processes who have the page mapped an ``action optional''
55 static int kill_proc_ao(struct task_struct
*t
, unsigned long addr
, int trapno
,
62 "MCE %#lx: Killing %s:%d early due to hardware memory corruption\n",
63 pfn
, t
->comm
, t
->pid
);
66 si
.si_code
= BUS_MCEERR_AO
;
67 si
.si_addr
= (void *)addr
;
68 #ifdef __ARCH_SI_TRAPNO
69 si
.si_trapno
= trapno
;
71 si
.si_addr_lsb
= PAGE_SHIFT
;
73 * Don't use force here, it's convenient if the signal
74 * can be temporarily blocked.
75 * This could cause a loop when the user sets SIGBUS
76 * to SIG_IGN, but hopefully noone will do that?
78 ret
= send_sig_info(SIGBUS
, &si
, t
); /* synchronous? */
80 printk(KERN_INFO
"MCE: Error sending signal to %s:%d: %d\n",
81 t
->comm
, t
->pid
, ret
);
86 * Kill all processes that have a poisoned page mapped and then isolate
90 * Find all processes having the page mapped and kill them.
91 * But we keep a page reference around so that the page is not
93 * Then stash the page away
95 * There's no convenient way to get back to mapped processes
96 * from the VMAs. So do a brute-force search over all
99 * Remember that machine checks are not common (or rather
100 * if they are common you have other problems), so this shouldn't
101 * be a performance issue.
103 * Also there are some races possible while we get from the
104 * error detection to actually handle it.
109 struct task_struct
*tsk
;
111 unsigned addr_valid
:1;
115 * Failure handling: if we can't find or can't kill a process there's
116 * not much we can do. We just print a message and ignore otherwise.
120 * Schedule a process for later kill.
121 * Uses GFP_ATOMIC allocations to avoid potential recursions in the VM.
122 * TBD would GFP_NOIO be enough?
124 static void add_to_kill(struct task_struct
*tsk
, struct page
*p
,
125 struct vm_area_struct
*vma
,
126 struct list_head
*to_kill
,
127 struct to_kill
**tkc
)
135 tk
= kmalloc(sizeof(struct to_kill
), GFP_ATOMIC
);
138 "MCE: Out of memory while machine check handling\n");
142 tk
->addr
= page_address_in_vma(p
, vma
);
146 * In theory we don't have to kill when the page was
147 * munmaped. But it could be also a mremap. Since that's
148 * likely very rare kill anyways just out of paranoia, but use
149 * a SIGKILL because the error is not contained anymore.
151 if (tk
->addr
== -EFAULT
) {
152 pr_debug("MCE: Unable to find user space address %lx in %s\n",
153 page_to_pfn(p
), tsk
->comm
);
156 get_task_struct(tsk
);
158 list_add_tail(&tk
->nd
, to_kill
);
162 * Kill the processes that have been collected earlier.
164 * Only do anything when DOIT is set, otherwise just free the list
165 * (this is used for clean pages which do not need killing)
166 * Also when FAIL is set do a force kill because something went
169 static void kill_procs_ao(struct list_head
*to_kill
, int doit
, int trapno
,
170 int fail
, unsigned long pfn
)
172 struct to_kill
*tk
, *next
;
174 list_for_each_entry_safe (tk
, next
, to_kill
, nd
) {
177 * In case something went wrong with munmaping
178 * make sure the process doesn't catch the
179 * signal and then access the memory. Just kill it.
180 * the signal handlers
182 if (fail
|| tk
->addr_valid
== 0) {
184 "MCE %#lx: forcibly killing %s:%d because of failure to unmap corrupted page\n",
185 pfn
, tk
->tsk
->comm
, tk
->tsk
->pid
);
186 force_sig(SIGKILL
, tk
->tsk
);
190 * In theory the process could have mapped
191 * something else on the address in-between. We could
192 * check for that, but we need to tell the
195 else if (kill_proc_ao(tk
->tsk
, tk
->addr
, trapno
,
198 "MCE %#lx: Cannot send advisory machine check signal to %s:%d\n",
199 pfn
, tk
->tsk
->comm
, tk
->tsk
->pid
);
201 put_task_struct(tk
->tsk
);
206 static int task_early_kill(struct task_struct
*tsk
)
210 if (tsk
->flags
& PF_MCE_PROCESS
)
211 return !!(tsk
->flags
& PF_MCE_EARLY
);
212 return sysctl_memory_failure_early_kill
;
216 * Collect processes when the error hit an anonymous page.
218 static void collect_procs_anon(struct page
*page
, struct list_head
*to_kill
,
219 struct to_kill
**tkc
)
221 struct vm_area_struct
*vma
;
222 struct task_struct
*tsk
;
225 read_lock(&tasklist_lock
);
226 av
= page_lock_anon_vma(page
);
227 if (av
== NULL
) /* Not actually mapped anymore */
229 for_each_process (tsk
) {
230 if (!task_early_kill(tsk
))
232 list_for_each_entry (vma
, &av
->head
, anon_vma_node
) {
233 if (!page_mapped_in_vma(page
, vma
))
235 if (vma
->vm_mm
== tsk
->mm
)
236 add_to_kill(tsk
, page
, vma
, to_kill
, tkc
);
239 page_unlock_anon_vma(av
);
241 read_unlock(&tasklist_lock
);
245 * Collect processes when the error hit a file mapped page.
247 static void collect_procs_file(struct page
*page
, struct list_head
*to_kill
,
248 struct to_kill
**tkc
)
250 struct vm_area_struct
*vma
;
251 struct task_struct
*tsk
;
252 struct prio_tree_iter iter
;
253 struct address_space
*mapping
= page
->mapping
;
256 * A note on the locking order between the two locks.
257 * We don't rely on this particular order.
258 * If you have some other code that needs a different order
259 * feel free to switch them around. Or add a reverse link
260 * from mm_struct to task_struct, then this could be all
261 * done without taking tasklist_lock and looping over all tasks.
264 read_lock(&tasklist_lock
);
265 spin_lock(&mapping
->i_mmap_lock
);
266 for_each_process(tsk
) {
267 pgoff_t pgoff
= page
->index
<< (PAGE_CACHE_SHIFT
- PAGE_SHIFT
);
269 if (!task_early_kill(tsk
))
272 vma_prio_tree_foreach(vma
, &iter
, &mapping
->i_mmap
, pgoff
,
275 * Send early kill signal to tasks where a vma covers
276 * the page but the corrupted page is not necessarily
277 * mapped it in its pte.
278 * Assume applications who requested early kill want
279 * to be informed of all such data corruptions.
281 if (vma
->vm_mm
== tsk
->mm
)
282 add_to_kill(tsk
, page
, vma
, to_kill
, tkc
);
285 spin_unlock(&mapping
->i_mmap_lock
);
286 read_unlock(&tasklist_lock
);
290 * Collect the processes who have the corrupted page mapped to kill.
291 * This is done in two steps for locking reasons.
292 * First preallocate one tokill structure outside the spin locks,
293 * so that we can kill at least one process reasonably reliable.
295 static void collect_procs(struct page
*page
, struct list_head
*tokill
)
302 tk
= kmalloc(sizeof(struct to_kill
), GFP_NOIO
);
306 collect_procs_anon(page
, tokill
, &tk
);
308 collect_procs_file(page
, tokill
, &tk
);
313 * Error handlers for various types of pages.
317 FAILED
, /* Error handling failed */
318 DELAYED
, /* Will be handled later */
319 IGNORED
, /* Error safely ignored */
320 RECOVERED
, /* Successfully recovered */
323 static const char *action_name
[] = {
325 [DELAYED
] = "Delayed",
326 [IGNORED
] = "Ignored",
327 [RECOVERED
] = "Recovered",
331 * Error hit kernel page.
332 * Do nothing, try to be lucky and not touch this instead. For a few cases we
333 * could be more sophisticated.
335 static int me_kernel(struct page
*p
, unsigned long pfn
)
341 * Already poisoned page.
343 static int me_ignore(struct page
*p
, unsigned long pfn
)
349 * Page in unknown state. Do nothing.
351 static int me_unknown(struct page
*p
, unsigned long pfn
)
353 printk(KERN_ERR
"MCE %#lx: Unknown page state\n", pfn
);
360 static int me_free(struct page
*p
, unsigned long pfn
)
366 * Clean (or cleaned) page cache page.
368 static int me_pagecache_clean(struct page
*p
, unsigned long pfn
)
372 struct address_space
*mapping
;
375 * For anonymous pages we're done the only reference left
376 * should be the one m_f() holds.
382 * Now truncate the page in the page cache. This is really
383 * more like a "temporary hole punch"
384 * Don't do this for block devices when someone else
385 * has a reference, because it could be file system metadata
386 * and that's not safe to truncate.
388 mapping
= page_mapping(p
);
391 * Page has been teared down in the meanwhile
397 * Truncation is a bit tricky. Enable it per file system for now.
399 * Open: to take i_mutex or not for this? Right now we don't.
401 if (mapping
->a_ops
->error_remove_page
) {
402 err
= mapping
->a_ops
->error_remove_page(mapping
, p
);
404 printk(KERN_INFO
"MCE %#lx: Failed to punch page: %d\n",
406 } else if (page_has_private(p
) &&
407 !try_to_release_page(p
, GFP_NOIO
)) {
408 pr_debug("MCE %#lx: failed to release buffers\n", pfn
);
414 * If the file system doesn't support it just invalidate
415 * This fails on dirty or anything with private pages
417 if (invalidate_inode_page(p
))
420 printk(KERN_INFO
"MCE %#lx: Failed to invalidate\n",
427 * Dirty cache page page
428 * Issues: when the error hit a hole page the error is not properly
431 static int me_pagecache_dirty(struct page
*p
, unsigned long pfn
)
433 struct address_space
*mapping
= page_mapping(p
);
436 /* TBD: print more information about the file. */
439 * IO error will be reported by write(), fsync(), etc.
440 * who check the mapping.
441 * This way the application knows that something went
442 * wrong with its dirty file data.
444 * There's one open issue:
446 * The EIO will be only reported on the next IO
447 * operation and then cleared through the IO map.
448 * Normally Linux has two mechanisms to pass IO error
449 * first through the AS_EIO flag in the address space
450 * and then through the PageError flag in the page.
451 * Since we drop pages on memory failure handling the
452 * only mechanism open to use is through AS_AIO.
454 * This has the disadvantage that it gets cleared on
455 * the first operation that returns an error, while
456 * the PageError bit is more sticky and only cleared
457 * when the page is reread or dropped. If an
458 * application assumes it will always get error on
459 * fsync, but does other operations on the fd before
460 * and the page is dropped inbetween then the error
461 * will not be properly reported.
463 * This can already happen even without hwpoisoned
464 * pages: first on metadata IO errors (which only
465 * report through AS_EIO) or when the page is dropped
468 * So right now we assume that the application DTRT on
469 * the first EIO, but we're not worse than other parts
472 mapping_set_error(mapping
, EIO
);
475 return me_pagecache_clean(p
, pfn
);
479 * Clean and dirty swap cache.
481 * Dirty swap cache page is tricky to handle. The page could live both in page
482 * cache and swap cache(ie. page is freshly swapped in). So it could be
483 * referenced concurrently by 2 types of PTEs:
484 * normal PTEs and swap PTEs. We try to handle them consistently by calling
485 * try_to_unmap(TTU_IGNORE_HWPOISON) to convert the normal PTEs to swap PTEs,
487 * - clear dirty bit to prevent IO
489 * - but keep in the swap cache, so that when we return to it on
490 * a later page fault, we know the application is accessing
491 * corrupted data and shall be killed (we installed simple
492 * interception code in do_swap_page to catch it).
494 * Clean swap cache pages can be directly isolated. A later page fault will
495 * bring in the known good data from disk.
497 static int me_swapcache_dirty(struct page
*p
, unsigned long pfn
)
500 /* Trigger EIO in shmem: */
501 ClearPageUptodate(p
);
506 static int me_swapcache_clean(struct page
*p
, unsigned long pfn
)
508 delete_from_swap_cache(p
);
514 * Huge pages. Needs work.
516 * No rmap support so we cannot find the original mapper. In theory could walk
517 * all MMs and look for the mappings, but that would be non atomic and racy.
518 * Need rmap for hugepages for this. Alternatively we could employ a heuristic,
519 * like just walking the current process and hoping it has it mapped (that
520 * should be usually true for the common "shared database cache" case)
521 * Should handle free huge pages and dequeue them too, but this needs to
522 * handle huge page accounting correctly.
524 static int me_huge_page(struct page
*p
, unsigned long pfn
)
530 * Various page states we can handle.
532 * A page state is defined by its current page->flags bits.
533 * The table matches them in order and calls the right handler.
535 * This is quite tricky because we can access page at any time
536 * in its live cycle, so all accesses have to be extremly careful.
538 * This is not complete. More states could be added.
539 * For any missing state don't attempt recovery.
542 #define dirty (1UL << PG_dirty)
543 #define sc (1UL << PG_swapcache)
544 #define unevict (1UL << PG_unevictable)
545 #define mlock (1UL << PG_mlocked)
546 #define writeback (1UL << PG_writeback)
547 #define lru (1UL << PG_lru)
548 #define swapbacked (1UL << PG_swapbacked)
549 #define head (1UL << PG_head)
550 #define tail (1UL << PG_tail)
551 #define compound (1UL << PG_compound)
552 #define slab (1UL << PG_slab)
553 #define buddy (1UL << PG_buddy)
554 #define reserved (1UL << PG_reserved)
556 static struct page_state
{
560 int (*action
)(struct page
*p
, unsigned long pfn
);
562 { reserved
, reserved
, "reserved kernel", me_ignore
},
563 { buddy
, buddy
, "free kernel", me_free
},
566 * Could in theory check if slab page is free or if we can drop
567 * currently unused objects without touching them. But just
568 * treat it as standard kernel for now.
570 { slab
, slab
, "kernel slab", me_kernel
},
572 #ifdef CONFIG_PAGEFLAGS_EXTENDED
573 { head
, head
, "huge", me_huge_page
},
574 { tail
, tail
, "huge", me_huge_page
},
576 { compound
, compound
, "huge", me_huge_page
},
579 { sc
|dirty
, sc
|dirty
, "swapcache", me_swapcache_dirty
},
580 { sc
|dirty
, sc
, "swapcache", me_swapcache_clean
},
582 { unevict
|dirty
, unevict
|dirty
, "unevictable LRU", me_pagecache_dirty
},
583 { unevict
, unevict
, "unevictable LRU", me_pagecache_clean
},
585 #ifdef CONFIG_HAVE_MLOCKED_PAGE_BIT
586 { mlock
|dirty
, mlock
|dirty
, "mlocked LRU", me_pagecache_dirty
},
587 { mlock
, mlock
, "mlocked LRU", me_pagecache_clean
},
590 { lru
|dirty
, lru
|dirty
, "LRU", me_pagecache_dirty
},
591 { lru
|dirty
, lru
, "clean LRU", me_pagecache_clean
},
594 * Catchall entry: must be at end.
596 { 0, 0, "unknown page state", me_unknown
},
599 static void action_result(unsigned long pfn
, char *msg
, int result
)
601 struct page
*page
= NULL
;
603 page
= pfn_to_page(pfn
);
605 printk(KERN_ERR
"MCE %#lx: %s%s page recovery: %s\n",
607 page
&& PageDirty(page
) ? "dirty " : "",
608 msg
, action_name
[result
]);
611 static int page_action(struct page_state
*ps
, struct page
*p
,
612 unsigned long pfn
, int ref
)
617 result
= ps
->action(p
, pfn
);
618 action_result(pfn
, ps
->msg
, result
);
620 count
= page_count(p
) - 1 - ref
;
623 "MCE %#lx: %s page still referenced by %d users\n",
624 pfn
, ps
->msg
, count
);
626 /* Could do more checks here if page looks ok */
628 * Could adjust zone counters here to correct for the missing page.
631 return result
== RECOVERED
? 0 : -EBUSY
;
634 #define N_UNMAP_TRIES 5
637 * Do all that is necessary to remove user space mappings. Unmap
638 * the pages and send SIGBUS to the processes if the data was dirty.
640 static int hwpoison_user_mappings(struct page
*p
, unsigned long pfn
,
643 enum ttu_flags ttu
= TTU_UNMAP
| TTU_IGNORE_MLOCK
| TTU_IGNORE_ACCESS
;
644 struct address_space
*mapping
;
650 if (PageReserved(p
) || PageSlab(p
))
654 * This check implies we don't kill processes if their pages
655 * are in the swap cache early. Those are always late kills.
660 if (PageCompound(p
) || PageKsm(p
))
663 if (PageSwapCache(p
)) {
665 "MCE %#lx: keeping poisoned page in swap cache\n", pfn
);
666 ttu
|= TTU_IGNORE_HWPOISON
;
670 * Propagate the dirty bit from PTEs to struct page first, because we
671 * need this to decide if we should kill or just drop the page.
673 mapping
= page_mapping(p
);
674 if (!PageDirty(p
) && mapping
&& mapping_cap_writeback_dirty(mapping
)) {
675 if (page_mkclean(p
)) {
679 ttu
|= TTU_IGNORE_HWPOISON
;
681 "MCE %#lx: corrupted page was clean: dropped without side effects\n",
687 * First collect all the processes that have the page
688 * mapped in dirty form. This has to be done before try_to_unmap,
689 * because ttu takes the rmap data structures down.
691 * Error handling: We ignore errors here because
692 * there's nothing that can be done.
695 collect_procs(p
, &tokill
);
698 * try_to_unmap can fail temporarily due to races.
699 * Try a few times (RED-PEN better strategy?)
701 for (i
= 0; i
< N_UNMAP_TRIES
; i
++) {
702 ret
= try_to_unmap(p
, ttu
);
703 if (ret
== SWAP_SUCCESS
)
705 pr_debug("MCE %#lx: try_to_unmap retry needed %d\n", pfn
, ret
);
708 if (ret
!= SWAP_SUCCESS
)
709 printk(KERN_ERR
"MCE %#lx: failed to unmap page (mapcount=%d)\n",
710 pfn
, page_mapcount(p
));
713 * Now that the dirty bit has been propagated to the
714 * struct page and all unmaps done we can decide if
715 * killing is needed or not. Only kill when the page
716 * was dirty, otherwise the tokill list is merely
717 * freed. When there was a problem unmapping earlier
718 * use a more force-full uncatchable kill to prevent
719 * any accesses to the poisoned memory.
721 kill_procs_ao(&tokill
, !!PageDirty(p
), trapno
,
722 ret
!= SWAP_SUCCESS
, pfn
);
727 int __memory_failure(unsigned long pfn
, int trapno
, int ref
)
729 unsigned long lru_flag
;
730 struct page_state
*ps
;
734 if (!sysctl_memory_failure_recovery
)
735 panic("Memory failure from trap %d on page %lx", trapno
, pfn
);
737 if (!pfn_valid(pfn
)) {
738 action_result(pfn
, "memory outside kernel control", IGNORED
);
742 p
= pfn_to_page(pfn
);
743 if (TestSetPageHWPoison(p
)) {
744 action_result(pfn
, "already hardware poisoned", IGNORED
);
748 atomic_long_add(1, &mce_bad_pages
);
751 * We need/can do nothing about count=0 pages.
752 * 1) it's a free page, and therefore in safe hand:
753 * prep_new_page() will be the gate keeper.
754 * 2) it's part of a non-compound high order page.
755 * Implies some kernel user: cannot stop them from
756 * R/W the page; let's pray that the page has been
757 * used and will be freed some time later.
758 * In fact it's dangerous to directly bump up page count from 0,
759 * that may make page_freeze_refs()/page_unfreeze_refs() mismatch.
761 if (!get_page_unless_zero(compound_head(p
))) {
762 action_result(pfn
, "free or high order kernel", IGNORED
);
763 return PageBuddy(compound_head(p
)) ? 0 : -EBUSY
;
767 * We ignore non-LRU pages for good reasons.
768 * - PG_locked is only well defined for LRU pages and a few others
769 * - to avoid races with __set_page_locked()
770 * - to avoid races with __SetPageSlab*() (and more non-atomic ops)
771 * The check (unnecessarily) ignores LRU pages being isolated and
772 * walked by the page reclaim code, however that's not a big loss.
776 lru_flag
= p
->flags
& lru
;
777 if (isolate_lru_page(p
)) {
778 action_result(pfn
, "non LRU", IGNORED
);
782 page_cache_release(p
);
785 * Lock the page and wait for writeback to finish.
786 * It's very difficult to mess with pages currently under IO
787 * and in many cases impossible, so we just avoid it here.
790 wait_on_page_writeback(p
);
793 * Now take care of user space mappings.
794 * Abort on fail: __remove_from_page_cache() assumes unmapped page.
796 if (hwpoison_user_mappings(p
, pfn
, trapno
) != SWAP_SUCCESS
) {
797 printk(KERN_ERR
"MCE %#lx: cannot unmap page, give up\n", pfn
);
803 * Torn down by someone else?
805 if ((lru_flag
& lru
) && !PageSwapCache(p
) && p
->mapping
== NULL
) {
806 action_result(pfn
, "already truncated LRU", IGNORED
);
812 for (ps
= error_states
;; ps
++) {
813 if (((p
->flags
| lru_flag
)& ps
->mask
) == ps
->res
) {
814 res
= page_action(ps
, p
, pfn
, ref
);
822 EXPORT_SYMBOL_GPL(__memory_failure
);
825 * memory_failure - Handle memory failure of a page.
826 * @pfn: Page Number of the corrupted page
827 * @trapno: Trap number reported in the signal to user space.
829 * This function is called by the low level machine check code
830 * of an architecture when it detects hardware memory corruption
831 * of a page. It tries its best to recover, which includes
832 * dropping pages, killing processes etc.
834 * The function is primarily of use for corruptions that
835 * happen outside the current execution context (e.g. when
836 * detected by a background scrubber)
838 * Must run in process context (e.g. a work queue) with interrupts
839 * enabled and no spinlocks hold.
841 void memory_failure(unsigned long pfn
, int trapno
)
843 __memory_failure(pfn
, trapno
, 0);