1 // SPDX-License-Identifier: GPL-2.0
3 * This file contains common KASAN error reporting code.
5 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 * Author: Andrey Ryabinin <ryabinin.a.a@gmail.com>
8 * Some code borrowed from https://github.com/xairy/kasan-prototype by
9 * Andrey Konovalov <andreyknvl@gmail.com>
12 #include <kunit/test.h>
13 #include <linux/bitops.h>
14 #include <linux/ftrace.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/lockdep.h>
19 #include <linux/printk.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/stackdepot.h>
23 #include <linux/stacktrace.h>
24 #include <linux/string.h>
25 #include <linux/types.h>
26 #include <linux/kasan.h>
27 #include <linux/module.h>
28 #include <linux/sched/task_stack.h>
29 #include <linux/uaccess.h>
30 #include <trace/events/error_report.h>
32 #include <asm/sections.h>
37 static unsigned long kasan_flags;
39 #define KASAN_BIT_REPORTED 0
40 #define KASAN_BIT_MULTI_SHOT 1
42 enum kasan_arg_fault {
43 KASAN_ARG_FAULT_DEFAULT,
44 KASAN_ARG_FAULT_REPORT,
45 KASAN_ARG_FAULT_PANIC,
48 static enum kasan_arg_fault kasan_arg_fault __ro_after_init = KASAN_ARG_FAULT_DEFAULT;
50 /* kasan.fault=report/panic */
51 static int __init early_kasan_fault(char *arg)
56 if (!strcmp(arg, "report"))
57 kasan_arg_fault = KASAN_ARG_FAULT_REPORT;
58 else if (!strcmp(arg, "panic"))
59 kasan_arg_fault = KASAN_ARG_FAULT_PANIC;
65 early_param("kasan.fault", early_kasan_fault);
67 static int __init kasan_set_multi_shot(char *str)
69 set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
72 __setup("kasan_multi_shot", kasan_set_multi_shot);
75 * Used to suppress reports within kasan_disable/enable_current() critical
76 * sections, which are used for marking accesses to slab metadata.
78 static bool report_suppressed(void)
80 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)
81 if (current->kasan_depth)
88 * Used to avoid reporting more than one KASAN bug unless kasan_multi_shot
89 * is enabled. Note that KASAN tests effectively enable kasan_multi_shot
92 static bool report_enabled(void)
94 if (test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
96 return !test_and_set_bit(KASAN_BIT_REPORTED, &kasan_flags);
99 #if IS_ENABLED(CONFIG_KASAN_KUNIT_TEST) || IS_ENABLED(CONFIG_KASAN_MODULE_TEST)
101 bool kasan_save_enable_multi_shot(void)
103 return test_and_set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
105 EXPORT_SYMBOL_GPL(kasan_save_enable_multi_shot);
107 void kasan_restore_multi_shot(bool enabled)
110 clear_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
112 EXPORT_SYMBOL_GPL(kasan_restore_multi_shot);
116 #if IS_ENABLED(CONFIG_KASAN_KUNIT_TEST)
119 * Whether the KASAN KUnit test suite is currently being executed.
120 * Updated in kasan_test.c.
122 bool kasan_kunit_executing;
124 void kasan_kunit_test_suite_start(void)
126 WRITE_ONCE(kasan_kunit_executing, true);
128 EXPORT_SYMBOL_GPL(kasan_kunit_test_suite_start);
130 void kasan_kunit_test_suite_end(void)
132 WRITE_ONCE(kasan_kunit_executing, false);
134 EXPORT_SYMBOL_GPL(kasan_kunit_test_suite_end);
136 static bool kasan_kunit_test_suite_executing(void)
138 return READ_ONCE(kasan_kunit_executing);
141 #else /* CONFIG_KASAN_KUNIT_TEST */
143 static inline bool kasan_kunit_test_suite_executing(void) { return false; }
145 #endif /* CONFIG_KASAN_KUNIT_TEST */
147 #if IS_ENABLED(CONFIG_KUNIT)
149 static void fail_non_kasan_kunit_test(void)
153 if (kasan_kunit_test_suite_executing())
156 test = current->kunit_test;
158 kunit_set_failure(test);
161 #else /* CONFIG_KUNIT */
163 static inline void fail_non_kasan_kunit_test(void) { }
165 #endif /* CONFIG_KUNIT */
167 static DEFINE_SPINLOCK(report_lock);
169 static void start_report(unsigned long *flags, bool sync)
171 fail_non_kasan_kunit_test();
172 /* Respect the /proc/sys/kernel/traceoff_on_warning interface. */
173 disable_trace_on_warning();
174 /* Do not allow LOCKDEP mangling KASAN reports. */
176 /* Make sure we don't end up in loop. */
177 kasan_disable_current();
178 spin_lock_irqsave(&report_lock, *flags);
179 pr_err("==================================================================\n");
182 static void end_report(unsigned long *flags, void *addr)
185 trace_error_report_end(ERROR_DETECTOR_KASAN,
186 (unsigned long)addr);
187 pr_err("==================================================================\n");
188 spin_unlock_irqrestore(&report_lock, *flags);
189 if (!test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
190 check_panic_on_warn("KASAN");
191 if (kasan_arg_fault == KASAN_ARG_FAULT_PANIC)
192 panic("kasan.fault=panic set ...\n");
193 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
195 kasan_enable_current();
198 static void print_error_description(struct kasan_report_info *info)
200 pr_err("BUG: KASAN: %s in %pS\n", info->bug_type, (void *)info->ip);
202 if (info->type != KASAN_REPORT_ACCESS) {
203 pr_err("Free of addr %px by task %s/%d\n",
204 info->access_addr, current->comm, task_pid_nr(current));
208 if (info->access_size)
209 pr_err("%s of size %zu at addr %px by task %s/%d\n",
210 info->is_write ? "Write" : "Read", info->access_size,
211 info->access_addr, current->comm, task_pid_nr(current));
213 pr_err("%s at addr %px by task %s/%d\n",
214 info->is_write ? "Write" : "Read",
215 info->access_addr, current->comm, task_pid_nr(current));
218 static void print_track(struct kasan_track *track, const char *prefix)
220 pr_err("%s by task %u:\n", prefix, track->pid);
222 stack_depot_print(track->stack);
224 pr_err("(stack is not available)\n");
227 static inline struct page *addr_to_page(const void *addr)
229 if (virt_addr_valid(addr))
230 return virt_to_head_page(addr);
234 static void describe_object_addr(const void *addr, struct kmem_cache *cache,
237 unsigned long access_addr = (unsigned long)addr;
238 unsigned long object_addr = (unsigned long)object;
239 const char *rel_type;
242 pr_err("The buggy address belongs to the object at %px\n"
243 " which belongs to the cache %s of size %d\n",
244 object, cache->name, cache->object_size);
246 if (access_addr < object_addr) {
247 rel_type = "to the left";
248 rel_bytes = object_addr - access_addr;
249 } else if (access_addr >= object_addr + cache->object_size) {
250 rel_type = "to the right";
251 rel_bytes = access_addr - (object_addr + cache->object_size);
254 rel_bytes = access_addr - object_addr;
257 pr_err("The buggy address is located %d bytes %s of\n"
258 " %d-byte region [%px, %px)\n",
259 rel_bytes, rel_type, cache->object_size, (void *)object_addr,
260 (void *)(object_addr + cache->object_size));
263 static void describe_object_stacks(struct kasan_report_info *info)
265 if (info->alloc_track.stack) {
266 print_track(&info->alloc_track, "Allocated");
270 if (info->free_track.stack) {
271 print_track(&info->free_track, "Freed");
275 kasan_print_aux_stacks(info->cache, info->object);
278 static void describe_object(const void *addr, struct kasan_report_info *info)
280 if (kasan_stack_collection_enabled())
281 describe_object_stacks(info);
282 describe_object_addr(addr, info->cache, info->object);
285 static inline bool kernel_or_module_addr(const void *addr)
287 if (is_kernel((unsigned long)addr))
289 if (is_module_address((unsigned long)addr))
294 static inline bool init_task_stack_addr(const void *addr)
296 return addr >= (void *)&init_thread_union.stack &&
297 (addr <= (void *)&init_thread_union.stack +
298 sizeof(init_thread_union.stack));
301 static void print_address_description(void *addr, u8 tag,
302 struct kasan_report_info *info)
304 struct page *page = addr_to_page(addr);
306 dump_stack_lvl(KERN_ERR);
309 if (info->cache && info->object) {
310 describe_object(addr, info);
314 if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) {
315 pr_err("The buggy address belongs to the variable:\n");
316 pr_err(" %pS\n", addr);
320 if (object_is_on_stack(addr)) {
322 * Currently, KASAN supports printing frame information only
323 * for accesses to the task's own stack.
325 kasan_print_address_stack_frame(addr);
329 if (is_vmalloc_addr(addr)) {
330 struct vm_struct *va = find_vm_area(addr);
333 pr_err("The buggy address belongs to the virtual mapping at\n"
334 " [%px, %px) created by:\n"
336 va->addr, va->addr + va->size, va->caller);
339 page = vmalloc_to_page(addr);
344 pr_err("The buggy address belongs to the physical page:\n");
345 dump_page(page, "kasan: bad access detected");
350 static bool meta_row_is_guilty(const void *row, const void *addr)
352 return (row <= addr) && (addr < row + META_MEM_BYTES_PER_ROW);
355 static int meta_pointer_offset(const void *row, const void *addr)
358 * Memory state around the buggy address:
359 * ff00ff00ff00ff00: 00 00 00 05 fe fe fe fe fe fe fe fe fe fe fe fe
362 * The length of ">ff00ff00ff00ff00: " is
363 * 3 + (BITS_PER_LONG / 8) * 2 chars.
364 * The length of each granule metadata is 2 bytes
365 * plus 1 byte for space.
367 return 3 + (BITS_PER_LONG / 8) * 2 +
368 (addr - row) / KASAN_GRANULE_SIZE * 3 + 1;
371 static void print_memory_metadata(const void *addr)
376 row = (void *)round_down((unsigned long)addr, META_MEM_BYTES_PER_ROW)
377 - META_ROWS_AROUND_ADDR * META_MEM_BYTES_PER_ROW;
379 pr_err("Memory state around the buggy address:\n");
381 for (i = -META_ROWS_AROUND_ADDR; i <= META_ROWS_AROUND_ADDR; i++) {
382 char buffer[4 + (BITS_PER_LONG / 8) * 2];
383 char metadata[META_BYTES_PER_ROW];
385 snprintf(buffer, sizeof(buffer),
386 (i == 0) ? ">%px: " : " %px: ", row);
389 * We should not pass a shadow pointer to generic
390 * function, because generic functions may try to
391 * access kasan mapping for the passed address.
393 kasan_metadata_fetch_row(&metadata[0], row);
395 print_hex_dump(KERN_ERR, buffer,
396 DUMP_PREFIX_NONE, META_BYTES_PER_ROW, 1,
397 metadata, META_BYTES_PER_ROW, 0);
399 if (meta_row_is_guilty(row, addr))
400 pr_err("%*c\n", meta_pointer_offset(row, addr), '^');
402 row += META_MEM_BYTES_PER_ROW;
406 static void print_report(struct kasan_report_info *info)
408 void *addr = kasan_reset_tag(info->access_addr);
409 u8 tag = get_tag(info->access_addr);
411 print_error_description(info);
412 if (addr_has_metadata(addr))
413 kasan_print_tags(tag, info->first_bad_addr);
416 if (addr_has_metadata(addr)) {
417 print_address_description(addr, tag, info);
418 print_memory_metadata(info->first_bad_addr);
420 dump_stack_lvl(KERN_ERR);
424 static void complete_report_info(struct kasan_report_info *info)
426 void *addr = kasan_reset_tag(info->access_addr);
429 if (info->type == KASAN_REPORT_ACCESS)
430 info->first_bad_addr = kasan_find_first_bad_addr(
431 info->access_addr, info->access_size);
433 info->first_bad_addr = addr;
435 slab = kasan_addr_to_slab(addr);
437 info->cache = slab->slab_cache;
438 info->object = nearest_obj(info->cache, slab, addr);
440 info->cache = info->object = NULL;
442 switch (info->type) {
443 case KASAN_REPORT_INVALID_FREE:
444 info->bug_type = "invalid-free";
446 case KASAN_REPORT_DOUBLE_FREE:
447 info->bug_type = "double-free";
450 /* bug_type filled in by kasan_complete_mode_report_info. */
454 /* Fill in mode-specific report info fields. */
455 kasan_complete_mode_report_info(info);
458 void kasan_report_invalid_free(void *ptr, unsigned long ip, enum kasan_report_type type)
461 struct kasan_report_info info;
464 * Do not check report_suppressed(), as an invalid-free cannot be
465 * caused by accessing slab metadata and thus should not be
466 * suppressed by kasan_disable/enable_current() critical sections.
468 if (unlikely(!report_enabled()))
471 start_report(&flags, true);
473 memset(&info, 0, sizeof(info));
475 info.access_addr = ptr;
476 info.access_size = 0;
477 info.is_write = false;
480 complete_report_info(&info);
484 end_report(&flags, ptr);
488 * kasan_report() is the only reporting function that uses
489 * user_access_save/restore(): kasan_report_invalid_free() cannot be called
490 * from a UACCESS region, and kasan_report_async() is not used on x86.
492 bool kasan_report(unsigned long addr, size_t size, bool is_write,
496 void *ptr = (void *)addr;
497 unsigned long ua_flags = user_access_save();
498 unsigned long irq_flags;
499 struct kasan_report_info info;
501 if (unlikely(report_suppressed()) || unlikely(!report_enabled())) {
506 start_report(&irq_flags, true);
508 memset(&info, 0, sizeof(info));
509 info.type = KASAN_REPORT_ACCESS;
510 info.access_addr = ptr;
511 info.access_size = size;
512 info.is_write = is_write;
515 complete_report_info(&info);
519 end_report(&irq_flags, ptr);
522 user_access_restore(ua_flags);
527 #ifdef CONFIG_KASAN_HW_TAGS
528 void kasan_report_async(void)
533 * Do not check report_suppressed(), as kasan_disable/enable_current()
534 * critical sections do not affect Hardware Tag-Based KASAN.
536 if (unlikely(!report_enabled()))
539 start_report(&flags, false);
540 pr_err("BUG: KASAN: invalid-access\n");
541 pr_err("Asynchronous fault: no details available\n");
543 dump_stack_lvl(KERN_ERR);
544 end_report(&flags, NULL);
546 #endif /* CONFIG_KASAN_HW_TAGS */
548 #ifdef CONFIG_KASAN_INLINE
550 * With CONFIG_KASAN_INLINE, accesses to bogus pointers (outside the high
551 * canonical half of the address space) cause out-of-bounds shadow memory reads
552 * before the actual access. For addresses in the low canonical half of the
553 * address space, as well as most non-canonical addresses, that out-of-bounds
554 * shadow memory access lands in the non-canonical part of the address space.
555 * Help the user figure out what the original bogus pointer was.
557 void kasan_non_canonical_hook(unsigned long addr)
559 unsigned long orig_addr;
560 const char *bug_type;
562 if (addr < KASAN_SHADOW_OFFSET)
565 orig_addr = (addr - KASAN_SHADOW_OFFSET) << KASAN_SHADOW_SCALE_SHIFT;
567 * For faults near the shadow address for NULL, we can be fairly certain
568 * that this is a KASAN shadow memory access.
569 * For faults that correspond to shadow for low canonical addresses, we
570 * can still be pretty sure - that shadow region is a fairly narrow
571 * chunk of the non-canonical address space.
572 * But faults that look like shadow for non-canonical addresses are a
573 * really large chunk of the address space. In that case, we still
574 * print the decoded address, but make it clear that this is not
575 * necessarily what's actually going on.
577 if (orig_addr < PAGE_SIZE)
578 bug_type = "null-ptr-deref";
579 else if (orig_addr < TASK_SIZE)
580 bug_type = "probably user-memory-access";
582 bug_type = "maybe wild-memory-access";
583 pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type,
584 orig_addr, orig_addr + KASAN_GRANULE_SIZE - 1);