• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * This file contains common KASAN error reporting code.
4  *
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  * Author: Andrey Ryabinin <ryabinin.a.a@gmail.com>
7  *
8  * Some code borrowed from https://github.com/xairy/kasan-prototype by
9  *        Andrey Konovalov <andreyknvl@gmail.com>
10  */
11 
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>
18 #include <linux/mm.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/vmalloc.h>
27 #include <linux/kasan.h>
28 #include <linux/module.h>
29 #include <linux/sched/task_stack.h>
30 #include <linux/uaccess.h>
31 #include <trace/events/error_report.h>
32 
33 #include <asm/sections.h>
34 
35 #include "kasan.h"
36 #include "../slab.h"
37 
38 static unsigned long kasan_flags;
39 
40 #define KASAN_BIT_REPORTED	0
41 #define KASAN_BIT_MULTI_SHOT	1
42 
43 enum kasan_arg_fault {
44 	KASAN_ARG_FAULT_DEFAULT,
45 	KASAN_ARG_FAULT_REPORT,
46 	KASAN_ARG_FAULT_PANIC,
47 	KASAN_ARG_FAULT_PANIC_ON_WRITE,
48 };
49 
50 static enum kasan_arg_fault kasan_arg_fault __ro_after_init = KASAN_ARG_FAULT_DEFAULT;
51 
52 /* kasan.fault=report/panic */
early_kasan_fault(char * arg)53 static int __init early_kasan_fault(char *arg)
54 {
55 	if (!arg)
56 		return -EINVAL;
57 
58 	if (!strcmp(arg, "report"))
59 		kasan_arg_fault = KASAN_ARG_FAULT_REPORT;
60 	else if (!strcmp(arg, "panic"))
61 		kasan_arg_fault = KASAN_ARG_FAULT_PANIC;
62 	else if (!strcmp(arg, "panic_on_write"))
63 		kasan_arg_fault = KASAN_ARG_FAULT_PANIC_ON_WRITE;
64 	else
65 		return -EINVAL;
66 
67 	return 0;
68 }
69 early_param("kasan.fault", early_kasan_fault);
70 
kasan_set_multi_shot(char * str)71 static int __init kasan_set_multi_shot(char *str)
72 {
73 	set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
74 	return 1;
75 }
76 __setup("kasan_multi_shot", kasan_set_multi_shot);
77 
78 /*
79  * This function is used to check whether KASAN reports are suppressed for
80  * software KASAN modes via kasan_disable/enable_current() critical sections.
81  *
82  * This is done to avoid:
83  * 1. False-positive reports when accessing slab metadata,
84  * 2. Deadlocking when poisoned memory is accessed by the reporting code.
85  *
86  * Hardware Tag-Based KASAN instead relies on:
87  * For #1: Resetting tags via kasan_reset_tag().
88  * For #2: Suppression of tag checks via CPU, see report_suppress_start/end().
89  */
report_suppressed_sw(void)90 static bool report_suppressed_sw(void)
91 {
92 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)
93 	if (current->kasan_depth)
94 		return true;
95 #endif
96 	return false;
97 }
98 
report_suppress_start(void)99 static void report_suppress_start(void)
100 {
101 #ifdef CONFIG_KASAN_HW_TAGS
102 	/*
103 	 * Disable preemption for the duration of printing a KASAN report, as
104 	 * hw_suppress_tag_checks_start() disables checks on the current CPU.
105 	 */
106 	preempt_disable();
107 	hw_suppress_tag_checks_start();
108 #else
109 	kasan_disable_current();
110 #endif
111 }
112 
report_suppress_stop(void)113 static void report_suppress_stop(void)
114 {
115 #ifdef CONFIG_KASAN_HW_TAGS
116 	hw_suppress_tag_checks_stop();
117 	preempt_enable();
118 #else
119 	kasan_enable_current();
120 #endif
121 }
122 
123 /*
124  * Used to avoid reporting more than one KASAN bug unless kasan_multi_shot
125  * is enabled. Note that KASAN tests effectively enable kasan_multi_shot
126  * for their duration.
127  */
report_enabled(void)128 static bool report_enabled(void)
129 {
130 	if (test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
131 		return true;
132 	return !test_and_set_bit(KASAN_BIT_REPORTED, &kasan_flags);
133 }
134 
135 #if IS_ENABLED(CONFIG_KASAN_KUNIT_TEST) || IS_ENABLED(CONFIG_KASAN_MODULE_TEST)
136 
kasan_save_enable_multi_shot(void)137 bool kasan_save_enable_multi_shot(void)
138 {
139 	return test_and_set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
140 }
141 EXPORT_SYMBOL_GPL(kasan_save_enable_multi_shot);
142 
kasan_restore_multi_shot(bool enabled)143 void kasan_restore_multi_shot(bool enabled)
144 {
145 	if (!enabled)
146 		clear_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
147 }
148 EXPORT_SYMBOL_GPL(kasan_restore_multi_shot);
149 
150 #endif
151 
152 #if IS_ENABLED(CONFIG_KASAN_KUNIT_TEST)
153 
154 /*
155  * Whether the KASAN KUnit test suite is currently being executed.
156  * Updated in kasan_test.c.
157  */
158 static bool kasan_kunit_executing;
159 
kasan_kunit_test_suite_start(void)160 void kasan_kunit_test_suite_start(void)
161 {
162 	WRITE_ONCE(kasan_kunit_executing, true);
163 }
164 EXPORT_SYMBOL_GPL(kasan_kunit_test_suite_start);
165 
kasan_kunit_test_suite_end(void)166 void kasan_kunit_test_suite_end(void)
167 {
168 	WRITE_ONCE(kasan_kunit_executing, false);
169 }
170 EXPORT_SYMBOL_GPL(kasan_kunit_test_suite_end);
171 
kasan_kunit_test_suite_executing(void)172 static bool kasan_kunit_test_suite_executing(void)
173 {
174 	return READ_ONCE(kasan_kunit_executing);
175 }
176 
177 #else /* CONFIG_KASAN_KUNIT_TEST */
178 
kasan_kunit_test_suite_executing(void)179 static inline bool kasan_kunit_test_suite_executing(void) { return false; }
180 
181 #endif /* CONFIG_KASAN_KUNIT_TEST */
182 
183 #if IS_ENABLED(CONFIG_KUNIT)
184 
fail_non_kasan_kunit_test(void)185 static void fail_non_kasan_kunit_test(void)
186 {
187 	struct kunit *test;
188 
189 	if (kasan_kunit_test_suite_executing())
190 		return;
191 
192 	test = current->kunit_test;
193 	if (test)
194 		kunit_set_failure(test);
195 }
196 
197 #else /* CONFIG_KUNIT */
198 
fail_non_kasan_kunit_test(void)199 static inline void fail_non_kasan_kunit_test(void) { }
200 
201 #endif /* CONFIG_KUNIT */
202 
203 static DEFINE_RAW_SPINLOCK(report_lock);
204 
start_report(unsigned long * flags,bool sync)205 static void start_report(unsigned long *flags, bool sync)
206 {
207 	fail_non_kasan_kunit_test();
208 	/* Respect the /proc/sys/kernel/traceoff_on_warning interface. */
209 	disable_trace_on_warning();
210 	/* Do not allow LOCKDEP mangling KASAN reports. */
211 	lockdep_off();
212 	/* Make sure we don't end up in loop. */
213 	report_suppress_start();
214 	raw_spin_lock_irqsave(&report_lock, *flags);
215 	pr_err("==================================================================\n");
216 }
217 
end_report(unsigned long * flags,const void * addr,bool is_write)218 static void end_report(unsigned long *flags, const void *addr, bool is_write)
219 {
220 	if (addr)
221 		trace_error_report_end(ERROR_DETECTOR_KASAN,
222 				       (unsigned long)addr);
223 	pr_err("==================================================================\n");
224 	raw_spin_unlock_irqrestore(&report_lock, *flags);
225 	if (!test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
226 		check_panic_on_warn("KASAN");
227 	switch (kasan_arg_fault) {
228 	case KASAN_ARG_FAULT_DEFAULT:
229 	case KASAN_ARG_FAULT_REPORT:
230 		break;
231 	case KASAN_ARG_FAULT_PANIC:
232 		panic("kasan.fault=panic set ...\n");
233 		break;
234 	case KASAN_ARG_FAULT_PANIC_ON_WRITE:
235 		if (is_write)
236 			panic("kasan.fault=panic_on_write set ...\n");
237 		break;
238 	}
239 	add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
240 	lockdep_on();
241 	report_suppress_stop();
242 }
243 
print_error_description(struct kasan_report_info * info)244 static void print_error_description(struct kasan_report_info *info)
245 {
246 	pr_err("BUG: KASAN: %s in %pS\n", info->bug_type, (void *)info->ip);
247 
248 	if (info->type != KASAN_REPORT_ACCESS) {
249 		pr_err("Free of addr %px by task %s/%d\n",
250 			info->access_addr, current->comm, task_pid_nr(current));
251 		return;
252 	}
253 
254 	if (info->access_size)
255 		pr_err("%s of size %zu at addr %px by task %s/%d\n",
256 			info->is_write ? "Write" : "Read", info->access_size,
257 			info->access_addr, current->comm, task_pid_nr(current));
258 	else
259 		pr_err("%s at addr %px by task %s/%d\n",
260 			info->is_write ? "Write" : "Read",
261 			info->access_addr, current->comm, task_pid_nr(current));
262 }
263 
print_track(struct kasan_track * track,const char * prefix)264 static void print_track(struct kasan_track *track, const char *prefix)
265 {
266 #ifdef CONFIG_KASAN_EXTRA_INFO
267 	u64 ts_nsec = track->timestamp;
268 	unsigned long rem_usec;
269 
270 	ts_nsec <<= 9;
271 	rem_usec = do_div(ts_nsec, NSEC_PER_SEC) / 1000;
272 
273 	pr_err("%s by task %u on cpu %d at %lu.%06lus:\n",
274 			prefix, track->pid, track->cpu,
275 			(unsigned long)ts_nsec, rem_usec);
276 #else
277 	pr_err("%s by task %u:\n", prefix, track->pid);
278 #endif /* CONFIG_KASAN_EXTRA_INFO */
279 	if (track->stack)
280 		stack_depot_print(track->stack);
281 	else
282 		pr_err("(stack is not available)\n");
283 }
284 
addr_to_page(const void * addr)285 static inline struct page *addr_to_page(const void *addr)
286 {
287 	if (virt_addr_valid(addr))
288 		return virt_to_head_page(addr);
289 	return NULL;
290 }
291 
describe_object_addr(const void * addr,struct kasan_report_info * info)292 static void describe_object_addr(const void *addr, struct kasan_report_info *info)
293 {
294 	unsigned long access_addr = (unsigned long)addr;
295 	unsigned long object_addr = (unsigned long)info->object;
296 	const char *rel_type, *region_state = "";
297 	int rel_bytes;
298 
299 	pr_err("The buggy address belongs to the object at %px\n"
300 	       " which belongs to the cache %s of size %d\n",
301 		info->object, info->cache->name, info->cache->object_size);
302 
303 	if (access_addr < object_addr) {
304 		rel_type = "to the left";
305 		rel_bytes = object_addr - access_addr;
306 	} else if (access_addr >= object_addr + info->alloc_size) {
307 		rel_type = "to the right";
308 		rel_bytes = access_addr - (object_addr + info->alloc_size);
309 	} else {
310 		rel_type = "inside";
311 		rel_bytes = access_addr - object_addr;
312 	}
313 
314 	/*
315 	 * Tag-Based modes use the stack ring to infer the bug type, but the
316 	 * memory region state description is generated based on the metadata.
317 	 * Thus, defining the region state as below can contradict the metadata.
318 	 * Fixing this requires further improvements, so only infer the state
319 	 * for the Generic mode.
320 	 */
321 	if (IS_ENABLED(CONFIG_KASAN_GENERIC)) {
322 		if (strcmp(info->bug_type, "slab-out-of-bounds") == 0)
323 			region_state = "allocated ";
324 		else if (strcmp(info->bug_type, "slab-use-after-free") == 0)
325 			region_state = "freed ";
326 	}
327 
328 	pr_err("The buggy address is located %d bytes %s of\n"
329 	       " %s%zu-byte region [%px, %px)\n",
330 	       rel_bytes, rel_type, region_state, info->alloc_size,
331 	       (void *)object_addr, (void *)(object_addr + info->alloc_size));
332 }
333 
describe_object_stacks(struct kasan_report_info * info)334 static void describe_object_stacks(struct kasan_report_info *info)
335 {
336 	if (info->alloc_track.stack) {
337 		print_track(&info->alloc_track, "Allocated");
338 		pr_err("\n");
339 	}
340 
341 	if (info->free_track.stack) {
342 		print_track(&info->free_track, "Freed");
343 		pr_err("\n");
344 	}
345 
346 	kasan_print_aux_stacks(info->cache, info->object);
347 }
348 
describe_object(const void * addr,struct kasan_report_info * info)349 static void describe_object(const void *addr, struct kasan_report_info *info)
350 {
351 	if (kasan_stack_collection_enabled())
352 		describe_object_stacks(info);
353 	describe_object_addr(addr, info);
354 }
355 
kernel_or_module_addr(const void * addr)356 static inline bool kernel_or_module_addr(const void *addr)
357 {
358 	if (is_kernel((unsigned long)addr))
359 		return true;
360 	if (is_module_address((unsigned long)addr))
361 		return true;
362 	return false;
363 }
364 
init_task_stack_addr(const void * addr)365 static inline bool init_task_stack_addr(const void *addr)
366 {
367 	return addr >= (void *)&init_thread_union.stack &&
368 		(addr <= (void *)&init_thread_union.stack +
369 			sizeof(init_thread_union.stack));
370 }
371 
print_address_description(void * addr,u8 tag,struct kasan_report_info * info)372 static void print_address_description(void *addr, u8 tag,
373 				      struct kasan_report_info *info)
374 {
375 	struct page *page = addr_to_page(addr);
376 
377 	dump_stack_lvl(KERN_ERR);
378 	pr_err("\n");
379 
380 	if (info->cache && info->object) {
381 		describe_object(addr, info);
382 		pr_err("\n");
383 	}
384 
385 	if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) {
386 		pr_err("The buggy address belongs to the variable:\n");
387 		pr_err(" %pS\n", addr);
388 		pr_err("\n");
389 	}
390 
391 	if (object_is_on_stack(addr)) {
392 		/*
393 		 * Currently, KASAN supports printing frame information only
394 		 * for accesses to the task's own stack.
395 		 */
396 		kasan_print_address_stack_frame(addr);
397 		pr_err("\n");
398 	}
399 
400 	if (is_vmalloc_addr(addr)) {
401 		pr_err("The buggy address belongs to a");
402 		if (!vmalloc_dump_obj(addr))
403 			pr_cont(" vmalloc virtual mapping\n");
404 		page = vmalloc_to_page(addr);
405 	}
406 
407 	if (page) {
408 		pr_err("The buggy address belongs to the physical page:\n");
409 		dump_page(page, "kasan: bad access detected");
410 		pr_err("\n");
411 	}
412 }
413 
meta_row_is_guilty(const void * row,const void * addr)414 static bool meta_row_is_guilty(const void *row, const void *addr)
415 {
416 	return (row <= addr) && (addr < row + META_MEM_BYTES_PER_ROW);
417 }
418 
meta_pointer_offset(const void * row,const void * addr)419 static int meta_pointer_offset(const void *row, const void *addr)
420 {
421 	/*
422 	 * Memory state around the buggy address:
423 	 *  ff00ff00ff00ff00: 00 00 00 05 fe fe fe fe fe fe fe fe fe fe fe fe
424 	 *  ...
425 	 *
426 	 * The length of ">ff00ff00ff00ff00: " is
427 	 *    3 + (BITS_PER_LONG / 8) * 2 chars.
428 	 * The length of each granule metadata is 2 bytes
429 	 *    plus 1 byte for space.
430 	 */
431 	return 3 + (BITS_PER_LONG / 8) * 2 +
432 		(addr - row) / KASAN_GRANULE_SIZE * 3 + 1;
433 }
434 
print_memory_metadata(const void * addr)435 static void print_memory_metadata(const void *addr)
436 {
437 	int i;
438 	void *row;
439 
440 	row = (void *)round_down((unsigned long)addr, META_MEM_BYTES_PER_ROW)
441 			- META_ROWS_AROUND_ADDR * META_MEM_BYTES_PER_ROW;
442 
443 	pr_err("Memory state around the buggy address:\n");
444 
445 	for (i = -META_ROWS_AROUND_ADDR; i <= META_ROWS_AROUND_ADDR; i++) {
446 		char buffer[4 + (BITS_PER_LONG / 8) * 2];
447 		char metadata[META_BYTES_PER_ROW];
448 
449 		snprintf(buffer, sizeof(buffer),
450 				(i == 0) ? ">%px: " : " %px: ", row);
451 
452 		/*
453 		 * We should not pass a shadow pointer to generic
454 		 * function, because generic functions may try to
455 		 * access kasan mapping for the passed address.
456 		 */
457 		kasan_metadata_fetch_row(&metadata[0], row);
458 
459 		print_hex_dump(KERN_ERR, buffer,
460 			DUMP_PREFIX_NONE, META_BYTES_PER_ROW, 1,
461 			metadata, META_BYTES_PER_ROW, 0);
462 
463 		if (meta_row_is_guilty(row, addr))
464 			pr_err("%*c\n", meta_pointer_offset(row, addr), '^');
465 
466 		row += META_MEM_BYTES_PER_ROW;
467 	}
468 }
469 
print_report(struct kasan_report_info * info)470 static void print_report(struct kasan_report_info *info)
471 {
472 	void *addr = kasan_reset_tag((void *)info->access_addr);
473 	u8 tag = get_tag((void *)info->access_addr);
474 
475 	print_error_description(info);
476 	if (addr_has_metadata(addr))
477 		kasan_print_tags(tag, info->first_bad_addr);
478 	pr_err("\n");
479 
480 	if (addr_has_metadata(addr)) {
481 		print_address_description(addr, tag, info);
482 		print_memory_metadata(info->first_bad_addr);
483 	} else {
484 		dump_stack_lvl(KERN_ERR);
485 	}
486 }
487 
complete_report_info(struct kasan_report_info * info)488 static void complete_report_info(struct kasan_report_info *info)
489 {
490 	void *addr = kasan_reset_tag((void *)info->access_addr);
491 	struct slab *slab;
492 
493 	if (info->type == KASAN_REPORT_ACCESS)
494 		info->first_bad_addr = kasan_find_first_bad_addr(
495 					(void *)info->access_addr, info->access_size);
496 	else
497 		info->first_bad_addr = addr;
498 
499 	slab = kasan_addr_to_slab(addr);
500 	if (slab) {
501 		info->cache = slab->slab_cache;
502 		info->object = nearest_obj(info->cache, slab, addr);
503 
504 		/* Try to determine allocation size based on the metadata. */
505 		info->alloc_size = kasan_get_alloc_size(info->object, info->cache);
506 		/* Fallback to the object size if failed. */
507 		if (!info->alloc_size)
508 			info->alloc_size = info->cache->object_size;
509 	} else
510 		info->cache = info->object = NULL;
511 
512 	switch (info->type) {
513 	case KASAN_REPORT_INVALID_FREE:
514 		info->bug_type = "invalid-free";
515 		break;
516 	case KASAN_REPORT_DOUBLE_FREE:
517 		info->bug_type = "double-free";
518 		break;
519 	default:
520 		/* bug_type filled in by kasan_complete_mode_report_info. */
521 		break;
522 	}
523 
524 	/* Fill in mode-specific report info fields. */
525 	kasan_complete_mode_report_info(info);
526 }
527 
kasan_report_invalid_free(void * ptr,unsigned long ip,enum kasan_report_type type)528 void kasan_report_invalid_free(void *ptr, unsigned long ip, enum kasan_report_type type)
529 {
530 	unsigned long flags;
531 	struct kasan_report_info info;
532 
533 	/*
534 	 * Do not check report_suppressed_sw(), as an invalid-free cannot be
535 	 * caused by accessing poisoned memory and thus should not be suppressed
536 	 * by kasan_disable/enable_current() critical sections.
537 	 *
538 	 * Note that for Hardware Tag-Based KASAN, kasan_report_invalid_free()
539 	 * is triggered by explicit tag checks and not by the ones performed by
540 	 * the CPU. Thus, reporting invalid-free is not suppressed as well.
541 	 */
542 	if (unlikely(!report_enabled()))
543 		return;
544 
545 	start_report(&flags, true);
546 
547 	__memset(&info, 0, sizeof(info));
548 	info.type = type;
549 	info.access_addr = ptr;
550 	info.access_size = 0;
551 	info.is_write = false;
552 	info.ip = ip;
553 
554 	complete_report_info(&info);
555 
556 	print_report(&info);
557 
558 	/*
559 	 * Invalid free is considered a "write" since the allocator's metadata
560 	 * updates involves writes.
561 	 */
562 	end_report(&flags, ptr, true);
563 }
564 
565 /*
566  * kasan_report() is the only reporting function that uses
567  * user_access_save/restore(): kasan_report_invalid_free() cannot be called
568  * from a UACCESS region, and kasan_report_async() is not used on x86.
569  */
kasan_report(const void * addr,size_t size,bool is_write,unsigned long ip)570 bool kasan_report(const void *addr, size_t size, bool is_write,
571 			unsigned long ip)
572 {
573 	bool ret = true;
574 	unsigned long ua_flags = user_access_save();
575 	unsigned long irq_flags;
576 	struct kasan_report_info info;
577 
578 	if (unlikely(report_suppressed_sw()) || unlikely(!report_enabled())) {
579 		ret = false;
580 		goto out;
581 	}
582 
583 	start_report(&irq_flags, true);
584 
585 	__memset(&info, 0, sizeof(info));
586 	info.type = KASAN_REPORT_ACCESS;
587 	info.access_addr = addr;
588 	info.access_size = size;
589 	info.is_write = is_write;
590 	info.ip = ip;
591 
592 	complete_report_info(&info);
593 
594 	print_report(&info);
595 
596 	end_report(&irq_flags, (void *)addr, is_write);
597 
598 out:
599 	user_access_restore(ua_flags);
600 
601 	return ret;
602 }
603 
604 #ifdef CONFIG_KASAN_HW_TAGS
kasan_report_async(void)605 void kasan_report_async(void)
606 {
607 	unsigned long flags;
608 
609 	/*
610 	 * Do not check report_suppressed_sw(), as
611 	 * kasan_disable/enable_current() critical sections do not affect
612 	 * Hardware Tag-Based KASAN.
613 	 */
614 	if (unlikely(!report_enabled()))
615 		return;
616 
617 	start_report(&flags, false);
618 	pr_err("BUG: KASAN: invalid-access\n");
619 	pr_err("Asynchronous fault: no details available\n");
620 	pr_err("\n");
621 	dump_stack_lvl(KERN_ERR);
622 	/*
623 	 * Conservatively set is_write=true, because no details are available.
624 	 * In this mode, kasan.fault=panic_on_write is like kasan.fault=panic.
625 	 */
626 	end_report(&flags, NULL, true);
627 }
628 #endif /* CONFIG_KASAN_HW_TAGS */
629 
630 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)
631 /*
632  * With compiler-based KASAN modes, accesses to bogus pointers (outside of the
633  * mapped kernel address space regions) cause faults when KASAN tries to check
634  * the shadow memory before the actual memory access. This results in cryptic
635  * GPF reports, which are hard for users to interpret. This hook helps users to
636  * figure out what the original bogus pointer was.
637  */
kasan_non_canonical_hook(unsigned long addr)638 void kasan_non_canonical_hook(unsigned long addr)
639 {
640 	unsigned long orig_addr;
641 	const char *bug_type;
642 
643 	/*
644 	 * All addresses that came as a result of the memory-to-shadow mapping
645 	 * (even for bogus pointers) must be >= KASAN_SHADOW_OFFSET.
646 	 */
647 	if (addr < KASAN_SHADOW_OFFSET)
648 		return;
649 
650 	orig_addr = (unsigned long)kasan_shadow_to_mem((void *)addr);
651 
652 	/*
653 	 * For faults near the shadow address for NULL, we can be fairly certain
654 	 * that this is a KASAN shadow memory access.
655 	 * For faults that correspond to the shadow for low or high canonical
656 	 * addresses, we can still be pretty sure: these shadow regions are a
657 	 * fairly narrow chunk of the address space.
658 	 * But the shadow for non-canonical addresses is a really large chunk
659 	 * of the address space. For this case, we still print the decoded
660 	 * address, but make it clear that this is not necessarily what's
661 	 * actually going on.
662 	 */
663 	if (orig_addr < PAGE_SIZE)
664 		bug_type = "null-ptr-deref";
665 	else if (orig_addr < TASK_SIZE)
666 		bug_type = "probably user-memory-access";
667 	else if (addr_in_shadow((void *)addr))
668 		bug_type = "probably wild-memory-access";
669 	else
670 		bug_type = "maybe wild-memory-access";
671 	pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type,
672 		 orig_addr, orig_addr + KASAN_GRANULE_SIZE - 1);
673 }
674 #endif
675