Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * This file contains common generic and tag-based 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 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 */
16
17#include <linux/bitops.h>
18#include <linux/ftrace.h>
19#include <linux/init.h>
20#include <linux/kernel.h>
21#include <linux/mm.h>
22#include <linux/printk.h>
23#include <linux/sched.h>
24#include <linux/slab.h>
25#include <linux/stackdepot.h>
26#include <linux/stacktrace.h>
27#include <linux/string.h>
28#include <linux/types.h>
29#include <linux/kasan.h>
30#include <linux/module.h>
31#include <linux/sched/task_stack.h>
32#include <linux/uaccess.h>
33
34#include <asm/sections.h>
35
36#include "kasan.h"
37#include "../slab.h"
38
39/* Shadow layout customization. */
40#define SHADOW_BYTES_PER_BLOCK 1
41#define SHADOW_BLOCKS_PER_ROW 16
42#define SHADOW_BYTES_PER_ROW (SHADOW_BLOCKS_PER_ROW * SHADOW_BYTES_PER_BLOCK)
43#define SHADOW_ROWS_AROUND_ADDR 2
44
45static unsigned long kasan_flags;
46
47#define KASAN_BIT_REPORTED 0
48#define KASAN_BIT_MULTI_SHOT 1
49
50bool kasan_save_enable_multi_shot(void)
51{
52 return test_and_set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
53}
54EXPORT_SYMBOL_GPL(kasan_save_enable_multi_shot);
55
56void kasan_restore_multi_shot(bool enabled)
57{
58 if (!enabled)
59 clear_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
60}
61EXPORT_SYMBOL_GPL(kasan_restore_multi_shot);
62
63static int __init kasan_set_multi_shot(char *str)
64{
65 set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
66 return 1;
67}
68__setup("kasan_multi_shot", kasan_set_multi_shot);
69
70static void print_error_description(struct kasan_access_info *info)
71{
72 pr_err("BUG: KASAN: %s in %pS\n",
73 get_bug_type(info), (void *)info->ip);
74 pr_err("%s of size %zu at addr %px by task %s/%d\n",
75 info->is_write ? "Write" : "Read", info->access_size,
76 info->access_addr, current->comm, task_pid_nr(current));
77}
78
79static DEFINE_SPINLOCK(report_lock);
80
81static void start_report(unsigned long *flags)
82{
83 /*
84 * Make sure we don't end up in loop.
85 */
86 kasan_disable_current();
87 spin_lock_irqsave(&report_lock, *flags);
88 pr_err("==================================================================\n");
89}
90
91static void end_report(unsigned long *flags)
92{
93 pr_err("==================================================================\n");
94 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
95 spin_unlock_irqrestore(&report_lock, *flags);
96 if (panic_on_warn) {
97 /*
98 * This thread may hit another WARN() in the panic path.
99 * Resetting this prevents additional WARN() from panicking the
100 * system on this thread. Other threads are blocked by the
101 * panic_mutex in panic().
102 */
103 panic_on_warn = 0;
104 panic("panic_on_warn set ...\n");
105 }
106 kasan_enable_current();
107}
108
109static void print_stack(depot_stack_handle_t stack)
110{
111 unsigned long *entries;
112 unsigned int nr_entries;
113
114 nr_entries = stack_depot_fetch(stack, &entries);
115 stack_trace_print(entries, nr_entries, 0);
116}
117
118static void print_track(struct kasan_track *track, const char *prefix)
119{
120 pr_err("%s by task %u:\n", prefix, track->pid);
121 if (track->stack) {
122 print_stack(track->stack);
123 } else {
124 pr_err("(stack is not available)\n");
125 }
126}
127
128struct page *kasan_addr_to_page(const void *addr)
129{
130 if ((addr >= (void *)PAGE_OFFSET) &&
131 (addr < high_memory))
132 return virt_to_head_page(addr);
133 return NULL;
134}
135
136static void describe_object_addr(struct kmem_cache *cache, void *object,
137 const void *addr)
138{
139 unsigned long access_addr = (unsigned long)addr;
140 unsigned long object_addr = (unsigned long)object;
141 const char *rel_type;
142 int rel_bytes;
143
144 pr_err("The buggy address belongs to the object at %px\n"
145 " which belongs to the cache %s of size %d\n",
146 object, cache->name, cache->object_size);
147
148 if (!addr)
149 return;
150
151 if (access_addr < object_addr) {
152 rel_type = "to the left";
153 rel_bytes = object_addr - access_addr;
154 } else if (access_addr >= object_addr + cache->object_size) {
155 rel_type = "to the right";
156 rel_bytes = access_addr - (object_addr + cache->object_size);
157 } else {
158 rel_type = "inside";
159 rel_bytes = access_addr - object_addr;
160 }
161
162 pr_err("The buggy address is located %d bytes %s of\n"
163 " %d-byte region [%px, %px)\n",
164 rel_bytes, rel_type, cache->object_size, (void *)object_addr,
165 (void *)(object_addr + cache->object_size));
166}
167
168static void describe_object(struct kmem_cache *cache, void *object,
169 const void *addr, u8 tag)
170{
171 struct kasan_alloc_meta *alloc_info = get_alloc_info(cache, object);
172
173 if (cache->flags & SLAB_KASAN) {
174 struct kasan_track *free_track;
175
176 print_track(&alloc_info->alloc_track, "Allocated");
177 pr_err("\n");
178 free_track = kasan_get_free_track(cache, object, tag);
179 if (free_track) {
180 print_track(free_track, "Freed");
181 pr_err("\n");
182 }
183
184#ifdef CONFIG_KASAN_GENERIC
185 if (alloc_info->aux_stack[0]) {
186 pr_err("Last call_rcu():\n");
187 print_stack(alloc_info->aux_stack[0]);
188 pr_err("\n");
189 }
190 if (alloc_info->aux_stack[1]) {
191 pr_err("Second to last call_rcu():\n");
192 print_stack(alloc_info->aux_stack[1]);
193 pr_err("\n");
194 }
195#endif
196 }
197
198 describe_object_addr(cache, object, addr);
199}
200
201static inline bool kernel_or_module_addr(const void *addr)
202{
203 if (addr >= (void *)_stext && addr < (void *)_end)
204 return true;
205 if (is_module_address((unsigned long)addr))
206 return true;
207 return false;
208}
209
210static inline bool init_task_stack_addr(const void *addr)
211{
212 return addr >= (void *)&init_thread_union.stack &&
213 (addr <= (void *)&init_thread_union.stack +
214 sizeof(init_thread_union.stack));
215}
216
217static bool __must_check tokenize_frame_descr(const char **frame_descr,
218 char *token, size_t max_tok_len,
219 unsigned long *value)
220{
221 const char *sep = strchr(*frame_descr, ' ');
222
223 if (sep == NULL)
224 sep = *frame_descr + strlen(*frame_descr);
225
226 if (token != NULL) {
227 const size_t tok_len = sep - *frame_descr;
228
229 if (tok_len + 1 > max_tok_len) {
230 pr_err("KASAN internal error: frame description too long: %s\n",
231 *frame_descr);
232 return false;
233 }
234
235 /* Copy token (+ 1 byte for '\0'). */
236 strlcpy(token, *frame_descr, tok_len + 1);
237 }
238
239 /* Advance frame_descr past separator. */
240 *frame_descr = sep + 1;
241
242 if (value != NULL && kstrtoul(token, 10, value)) {
243 pr_err("KASAN internal error: not a valid number: %s\n", token);
244 return false;
245 }
246
247 return true;
248}
249
250static void print_decoded_frame_descr(const char *frame_descr)
251{
252 /*
253 * We need to parse the following string:
254 * "n alloc_1 alloc_2 ... alloc_n"
255 * where alloc_i looks like
256 * "offset size len name"
257 * or "offset size len name:line".
258 */
259
260 char token[64];
261 unsigned long num_objects;
262
263 if (!tokenize_frame_descr(&frame_descr, token, sizeof(token),
264 &num_objects))
265 return;
266
267 pr_err("\n");
268 pr_err("this frame has %lu %s:\n", num_objects,
269 num_objects == 1 ? "object" : "objects");
270
271 while (num_objects--) {
272 unsigned long offset;
273 unsigned long size;
274
275 /* access offset */
276 if (!tokenize_frame_descr(&frame_descr, token, sizeof(token),
277 &offset))
278 return;
279 /* access size */
280 if (!tokenize_frame_descr(&frame_descr, token, sizeof(token),
281 &size))
282 return;
283 /* name length (unused) */
284 if (!tokenize_frame_descr(&frame_descr, NULL, 0, NULL))
285 return;
286 /* object name */
287 if (!tokenize_frame_descr(&frame_descr, token, sizeof(token),
288 NULL))
289 return;
290
291 /* Strip line number; without filename it's not very helpful. */
292 strreplace(token, ':', '\0');
293
294 /* Finally, print object information. */
295 pr_err(" [%lu, %lu) '%s'", offset, offset + size, token);
296 }
297}
298
299static bool __must_check get_address_stack_frame_info(const void *addr,
300 unsigned long *offset,
301 const char **frame_descr,
302 const void **frame_pc)
303{
304 unsigned long aligned_addr;
305 unsigned long mem_ptr;
306 const u8 *shadow_bottom;
307 const u8 *shadow_ptr;
308 const unsigned long *frame;
309
310 BUILD_BUG_ON(IS_ENABLED(CONFIG_STACK_GROWSUP));
311
312 /*
313 * NOTE: We currently only support printing frame information for
314 * accesses to the task's own stack.
315 */
316 if (!object_is_on_stack(addr))
317 return false;
318
319 aligned_addr = round_down((unsigned long)addr, sizeof(long));
320 mem_ptr = round_down(aligned_addr, KASAN_SHADOW_SCALE_SIZE);
321 shadow_ptr = kasan_mem_to_shadow((void *)aligned_addr);
322 shadow_bottom = kasan_mem_to_shadow(end_of_stack(current));
323
324 while (shadow_ptr >= shadow_bottom && *shadow_ptr != KASAN_STACK_LEFT) {
325 shadow_ptr--;
326 mem_ptr -= KASAN_SHADOW_SCALE_SIZE;
327 }
328
329 while (shadow_ptr >= shadow_bottom && *shadow_ptr == KASAN_STACK_LEFT) {
330 shadow_ptr--;
331 mem_ptr -= KASAN_SHADOW_SCALE_SIZE;
332 }
333
334 if (shadow_ptr < shadow_bottom)
335 return false;
336
337 frame = (const unsigned long *)(mem_ptr + KASAN_SHADOW_SCALE_SIZE);
338 if (frame[0] != KASAN_CURRENT_STACK_FRAME_MAGIC) {
339 pr_err("KASAN internal error: frame info validation failed; invalid marker: %lu\n",
340 frame[0]);
341 return false;
342 }
343
344 *offset = (unsigned long)addr - (unsigned long)frame;
345 *frame_descr = (const char *)frame[1];
346 *frame_pc = (void *)frame[2];
347
348 return true;
349}
350
351static void print_address_stack_frame(const void *addr)
352{
353 unsigned long offset;
354 const char *frame_descr;
355 const void *frame_pc;
356
357 if (IS_ENABLED(CONFIG_KASAN_SW_TAGS))
358 return;
359
360 if (!get_address_stack_frame_info(addr, &offset, &frame_descr,
361 &frame_pc))
362 return;
363
364 /*
365 * get_address_stack_frame_info only returns true if the given addr is
366 * on the current task's stack.
367 */
368 pr_err("\n");
369 pr_err("addr %px is located in stack of task %s/%d at offset %lu in frame:\n",
370 addr, current->comm, task_pid_nr(current), offset);
371 pr_err(" %pS\n", frame_pc);
372
373 if (!frame_descr)
374 return;
375
376 print_decoded_frame_descr(frame_descr);
377}
378
379static void print_address_description(void *addr, u8 tag)
380{
381 struct page *page = kasan_addr_to_page(addr);
382
383 dump_stack();
384 pr_err("\n");
385
386 if (page && PageSlab(page)) {
387 struct kmem_cache *cache = page->slab_cache;
388 void *object = nearest_obj(cache, page, addr);
389
390 describe_object(cache, object, addr, tag);
391 }
392
393 if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) {
394 pr_err("The buggy address belongs to the variable:\n");
395 pr_err(" %pS\n", addr);
396 }
397
398 if (page) {
399 pr_err("The buggy address belongs to the page:\n");
400 dump_page(page, "kasan: bad access detected");
401 }
402
403 print_address_stack_frame(addr);
404}
405
406static bool row_is_guilty(const void *row, const void *guilty)
407{
408 return (row <= guilty) && (guilty < row + SHADOW_BYTES_PER_ROW);
409}
410
411static int shadow_pointer_offset(const void *row, const void *shadow)
412{
413 /* The length of ">ff00ff00ff00ff00: " is
414 * 3 + (BITS_PER_LONG/8)*2 chars.
415 */
416 return 3 + (BITS_PER_LONG/8)*2 + (shadow - row)*2 +
417 (shadow - row) / SHADOW_BYTES_PER_BLOCK + 1;
418}
419
420static void print_shadow_for_address(const void *addr)
421{
422 int i;
423 const void *shadow = kasan_mem_to_shadow(addr);
424 const void *shadow_row;
425
426 shadow_row = (void *)round_down((unsigned long)shadow,
427 SHADOW_BYTES_PER_ROW)
428 - SHADOW_ROWS_AROUND_ADDR * SHADOW_BYTES_PER_ROW;
429
430 pr_err("Memory state around the buggy address:\n");
431
432 for (i = -SHADOW_ROWS_AROUND_ADDR; i <= SHADOW_ROWS_AROUND_ADDR; i++) {
433 const void *kaddr = kasan_shadow_to_mem(shadow_row);
434 char buffer[4 + (BITS_PER_LONG/8)*2];
435 char shadow_buf[SHADOW_BYTES_PER_ROW];
436
437 snprintf(buffer, sizeof(buffer),
438 (i == 0) ? ">%px: " : " %px: ", kaddr);
439 /*
440 * We should not pass a shadow pointer to generic
441 * function, because generic functions may try to
442 * access kasan mapping for the passed address.
443 */
444 memcpy(shadow_buf, shadow_row, SHADOW_BYTES_PER_ROW);
445 print_hex_dump(KERN_ERR, buffer,
446 DUMP_PREFIX_NONE, SHADOW_BYTES_PER_ROW, 1,
447 shadow_buf, SHADOW_BYTES_PER_ROW, 0);
448
449 if (row_is_guilty(shadow_row, shadow))
450 pr_err("%*c\n",
451 shadow_pointer_offset(shadow_row, shadow),
452 '^');
453
454 shadow_row += SHADOW_BYTES_PER_ROW;
455 }
456}
457
458static bool report_enabled(void)
459{
460 if (current->kasan_depth)
461 return false;
462 if (test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
463 return true;
464 return !test_and_set_bit(KASAN_BIT_REPORTED, &kasan_flags);
465}
466
467void kasan_report_invalid_free(void *object, unsigned long ip)
468{
469 unsigned long flags;
470 u8 tag = get_tag(object);
471
472 object = reset_tag(object);
473 start_report(&flags);
474 pr_err("BUG: KASAN: double-free or invalid-free in %pS\n", (void *)ip);
475 print_tags(tag, object);
476 pr_err("\n");
477 print_address_description(object, tag);
478 pr_err("\n");
479 print_shadow_for_address(object);
480 end_report(&flags);
481}
482
483static void __kasan_report(unsigned long addr, size_t size, bool is_write,
484 unsigned long ip)
485{
486 struct kasan_access_info info;
487 void *tagged_addr;
488 void *untagged_addr;
489 unsigned long flags;
490
491 disable_trace_on_warning();
492
493 tagged_addr = (void *)addr;
494 untagged_addr = reset_tag(tagged_addr);
495
496 info.access_addr = tagged_addr;
497 if (addr_has_shadow(untagged_addr))
498 info.first_bad_addr = find_first_bad_addr(tagged_addr, size);
499 else
500 info.first_bad_addr = untagged_addr;
501 info.access_size = size;
502 info.is_write = is_write;
503 info.ip = ip;
504
505 start_report(&flags);
506
507 print_error_description(&info);
508 if (addr_has_shadow(untagged_addr))
509 print_tags(get_tag(tagged_addr), info.first_bad_addr);
510 pr_err("\n");
511
512 if (addr_has_shadow(untagged_addr)) {
513 print_address_description(untagged_addr, get_tag(tagged_addr));
514 pr_err("\n");
515 print_shadow_for_address(info.first_bad_addr);
516 } else {
517 dump_stack();
518 }
519
520 end_report(&flags);
521}
522
523bool kasan_report(unsigned long addr, size_t size, bool is_write,
524 unsigned long ip)
525{
526 unsigned long flags = user_access_save();
527 bool ret = false;
528
529 if (likely(report_enabled())) {
530 __kasan_report(addr, size, is_write, ip);
531 ret = true;
532 }
533
534 user_access_restore(flags);
535
536 return ret;
537}
538
539#ifdef CONFIG_KASAN_INLINE
540/*
541 * With CONFIG_KASAN_INLINE, accesses to bogus pointers (outside the high
542 * canonical half of the address space) cause out-of-bounds shadow memory reads
543 * before the actual access. For addresses in the low canonical half of the
544 * address space, as well as most non-canonical addresses, that out-of-bounds
545 * shadow memory access lands in the non-canonical part of the address space.
546 * Help the user figure out what the original bogus pointer was.
547 */
548void kasan_non_canonical_hook(unsigned long addr)
549{
550 unsigned long orig_addr;
551 const char *bug_type;
552
553 if (addr < KASAN_SHADOW_OFFSET)
554 return;
555
556 orig_addr = (addr - KASAN_SHADOW_OFFSET) << KASAN_SHADOW_SCALE_SHIFT;
557 /*
558 * For faults near the shadow address for NULL, we can be fairly certain
559 * that this is a KASAN shadow memory access.
560 * For faults that correspond to shadow for low canonical addresses, we
561 * can still be pretty sure - that shadow region is a fairly narrow
562 * chunk of the non-canonical address space.
563 * But faults that look like shadow for non-canonical addresses are a
564 * really large chunk of the address space. In that case, we still
565 * print the decoded address, but make it clear that this is not
566 * necessarily what's actually going on.
567 */
568 if (orig_addr < PAGE_SIZE)
569 bug_type = "null-ptr-deref";
570 else if (orig_addr < TASK_SIZE)
571 bug_type = "probably user-memory-access";
572 else
573 bug_type = "maybe wild-memory-access";
574 pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type,
575 orig_addr, orig_addr + KASAN_SHADOW_MASK);
576}
577#endif
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
38static unsigned long kasan_flags;
39
40#define KASAN_BIT_REPORTED 0
41#define KASAN_BIT_MULTI_SHOT 1
42
43enum 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
50static enum kasan_arg_fault kasan_arg_fault __ro_after_init = KASAN_ARG_FAULT_DEFAULT;
51
52/* kasan.fault=report/panic */
53static 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}
69early_param("kasan.fault", early_kasan_fault);
70
71static 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 */
90static 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
99static 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
113static 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 */
128static 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
137bool kasan_save_enable_multi_shot(void)
138{
139 return test_and_set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
140}
141EXPORT_SYMBOL_GPL(kasan_save_enable_multi_shot);
142
143void kasan_restore_multi_shot(bool enabled)
144{
145 if (!enabled)
146 clear_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
147}
148EXPORT_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 */
158static bool kasan_kunit_executing;
159
160void kasan_kunit_test_suite_start(void)
161{
162 WRITE_ONCE(kasan_kunit_executing, true);
163}
164EXPORT_SYMBOL_GPL(kasan_kunit_test_suite_start);
165
166void kasan_kunit_test_suite_end(void)
167{
168 WRITE_ONCE(kasan_kunit_executing, false);
169}
170EXPORT_SYMBOL_GPL(kasan_kunit_test_suite_end);
171
172static bool kasan_kunit_test_suite_executing(void)
173{
174 return READ_ONCE(kasan_kunit_executing);
175}
176
177#else /* CONFIG_KASAN_KUNIT_TEST */
178
179static 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
185static 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
199static inline void fail_non_kasan_kunit_test(void) { }
200
201#endif /* CONFIG_KUNIT */
202
203static DEFINE_SPINLOCK(report_lock);
204
205static 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 spin_lock_irqsave(&report_lock, *flags);
215 pr_err("==================================================================\n");
216}
217
218static 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 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
244static 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
264static 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 <<= 3;
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
285static 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
292static 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
334static 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
349static 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
356static 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
365static 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
372static 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 struct vm_struct *va = find_vm_area(addr);
402
403 if (va) {
404 pr_err("The buggy address belongs to the virtual mapping at\n"
405 " [%px, %px) created by:\n"
406 " %pS\n",
407 va->addr, va->addr + va->size, va->caller);
408 pr_err("\n");
409
410 page = vmalloc_to_page(addr);
411 }
412 }
413
414 if (page) {
415 pr_err("The buggy address belongs to the physical page:\n");
416 dump_page(page, "kasan: bad access detected");
417 pr_err("\n");
418 }
419}
420
421static bool meta_row_is_guilty(const void *row, const void *addr)
422{
423 return (row <= addr) && (addr < row + META_MEM_BYTES_PER_ROW);
424}
425
426static int meta_pointer_offset(const void *row, const void *addr)
427{
428 /*
429 * Memory state around the buggy address:
430 * ff00ff00ff00ff00: 00 00 00 05 fe fe fe fe fe fe fe fe fe fe fe fe
431 * ...
432 *
433 * The length of ">ff00ff00ff00ff00: " is
434 * 3 + (BITS_PER_LONG / 8) * 2 chars.
435 * The length of each granule metadata is 2 bytes
436 * plus 1 byte for space.
437 */
438 return 3 + (BITS_PER_LONG / 8) * 2 +
439 (addr - row) / KASAN_GRANULE_SIZE * 3 + 1;
440}
441
442static void print_memory_metadata(const void *addr)
443{
444 int i;
445 void *row;
446
447 row = (void *)round_down((unsigned long)addr, META_MEM_BYTES_PER_ROW)
448 - META_ROWS_AROUND_ADDR * META_MEM_BYTES_PER_ROW;
449
450 pr_err("Memory state around the buggy address:\n");
451
452 for (i = -META_ROWS_AROUND_ADDR; i <= META_ROWS_AROUND_ADDR; i++) {
453 char buffer[4 + (BITS_PER_LONG / 8) * 2];
454 char metadata[META_BYTES_PER_ROW];
455
456 snprintf(buffer, sizeof(buffer),
457 (i == 0) ? ">%px: " : " %px: ", row);
458
459 /*
460 * We should not pass a shadow pointer to generic
461 * function, because generic functions may try to
462 * access kasan mapping for the passed address.
463 */
464 kasan_metadata_fetch_row(&metadata[0], row);
465
466 print_hex_dump(KERN_ERR, buffer,
467 DUMP_PREFIX_NONE, META_BYTES_PER_ROW, 1,
468 metadata, META_BYTES_PER_ROW, 0);
469
470 if (meta_row_is_guilty(row, addr))
471 pr_err("%*c\n", meta_pointer_offset(row, addr), '^');
472
473 row += META_MEM_BYTES_PER_ROW;
474 }
475}
476
477static void print_report(struct kasan_report_info *info)
478{
479 void *addr = kasan_reset_tag((void *)info->access_addr);
480 u8 tag = get_tag((void *)info->access_addr);
481
482 print_error_description(info);
483 if (addr_has_metadata(addr))
484 kasan_print_tags(tag, info->first_bad_addr);
485 pr_err("\n");
486
487 if (addr_has_metadata(addr)) {
488 print_address_description(addr, tag, info);
489 print_memory_metadata(info->first_bad_addr);
490 } else {
491 dump_stack_lvl(KERN_ERR);
492 }
493}
494
495static void complete_report_info(struct kasan_report_info *info)
496{
497 void *addr = kasan_reset_tag((void *)info->access_addr);
498 struct slab *slab;
499
500 if (info->type == KASAN_REPORT_ACCESS)
501 info->first_bad_addr = kasan_find_first_bad_addr(
502 (void *)info->access_addr, info->access_size);
503 else
504 info->first_bad_addr = addr;
505
506 slab = kasan_addr_to_slab(addr);
507 if (slab) {
508 info->cache = slab->slab_cache;
509 info->object = nearest_obj(info->cache, slab, addr);
510
511 /* Try to determine allocation size based on the metadata. */
512 info->alloc_size = kasan_get_alloc_size(info->object, info->cache);
513 /* Fallback to the object size if failed. */
514 if (!info->alloc_size)
515 info->alloc_size = info->cache->object_size;
516 } else
517 info->cache = info->object = NULL;
518
519 switch (info->type) {
520 case KASAN_REPORT_INVALID_FREE:
521 info->bug_type = "invalid-free";
522 break;
523 case KASAN_REPORT_DOUBLE_FREE:
524 info->bug_type = "double-free";
525 break;
526 default:
527 /* bug_type filled in by kasan_complete_mode_report_info. */
528 break;
529 }
530
531 /* Fill in mode-specific report info fields. */
532 kasan_complete_mode_report_info(info);
533}
534
535void kasan_report_invalid_free(void *ptr, unsigned long ip, enum kasan_report_type type)
536{
537 unsigned long flags;
538 struct kasan_report_info info;
539
540 /*
541 * Do not check report_suppressed_sw(), as an invalid-free cannot be
542 * caused by accessing poisoned memory and thus should not be suppressed
543 * by kasan_disable/enable_current() critical sections.
544 *
545 * Note that for Hardware Tag-Based KASAN, kasan_report_invalid_free()
546 * is triggered by explicit tag checks and not by the ones performed by
547 * the CPU. Thus, reporting invalid-free is not suppressed as well.
548 */
549 if (unlikely(!report_enabled()))
550 return;
551
552 start_report(&flags, true);
553
554 __memset(&info, 0, sizeof(info));
555 info.type = type;
556 info.access_addr = ptr;
557 info.access_size = 0;
558 info.is_write = false;
559 info.ip = ip;
560
561 complete_report_info(&info);
562
563 print_report(&info);
564
565 /*
566 * Invalid free is considered a "write" since the allocator's metadata
567 * updates involves writes.
568 */
569 end_report(&flags, ptr, true);
570}
571
572/*
573 * kasan_report() is the only reporting function that uses
574 * user_access_save/restore(): kasan_report_invalid_free() cannot be called
575 * from a UACCESS region, and kasan_report_async() is not used on x86.
576 */
577bool kasan_report(const void *addr, size_t size, bool is_write,
578 unsigned long ip)
579{
580 bool ret = true;
581 unsigned long ua_flags = user_access_save();
582 unsigned long irq_flags;
583 struct kasan_report_info info;
584
585 if (unlikely(report_suppressed_sw()) || unlikely(!report_enabled())) {
586 ret = false;
587 goto out;
588 }
589
590 start_report(&irq_flags, true);
591
592 __memset(&info, 0, sizeof(info));
593 info.type = KASAN_REPORT_ACCESS;
594 info.access_addr = addr;
595 info.access_size = size;
596 info.is_write = is_write;
597 info.ip = ip;
598
599 complete_report_info(&info);
600
601 print_report(&info);
602
603 end_report(&irq_flags, (void *)addr, is_write);
604
605out:
606 user_access_restore(ua_flags);
607
608 return ret;
609}
610
611#ifdef CONFIG_KASAN_HW_TAGS
612void kasan_report_async(void)
613{
614 unsigned long flags;
615
616 /*
617 * Do not check report_suppressed_sw(), as
618 * kasan_disable/enable_current() critical sections do not affect
619 * Hardware Tag-Based KASAN.
620 */
621 if (unlikely(!report_enabled()))
622 return;
623
624 start_report(&flags, false);
625 pr_err("BUG: KASAN: invalid-access\n");
626 pr_err("Asynchronous fault: no details available\n");
627 pr_err("\n");
628 dump_stack_lvl(KERN_ERR);
629 /*
630 * Conservatively set is_write=true, because no details are available.
631 * In this mode, kasan.fault=panic_on_write is like kasan.fault=panic.
632 */
633 end_report(&flags, NULL, true);
634}
635#endif /* CONFIG_KASAN_HW_TAGS */
636
637#if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)
638/*
639 * With compiler-based KASAN modes, accesses to bogus pointers (outside of the
640 * mapped kernel address space regions) cause faults when KASAN tries to check
641 * the shadow memory before the actual memory access. This results in cryptic
642 * GPF reports, which are hard for users to interpret. This hook helps users to
643 * figure out what the original bogus pointer was.
644 */
645void kasan_non_canonical_hook(unsigned long addr)
646{
647 unsigned long orig_addr;
648 const char *bug_type;
649
650 /*
651 * All addresses that came as a result of the memory-to-shadow mapping
652 * (even for bogus pointers) must be >= KASAN_SHADOW_OFFSET.
653 */
654 if (addr < KASAN_SHADOW_OFFSET)
655 return;
656
657 orig_addr = (unsigned long)kasan_shadow_to_mem((void *)addr);
658
659 /*
660 * For faults near the shadow address for NULL, we can be fairly certain
661 * that this is a KASAN shadow memory access.
662 * For faults that correspond to the shadow for low or high canonical
663 * addresses, we can still be pretty sure: these shadow regions are a
664 * fairly narrow chunk of the address space.
665 * But the shadow for non-canonical addresses is a really large chunk
666 * of the address space. For this case, we still print the decoded
667 * address, but make it clear that this is not necessarily what's
668 * actually going on.
669 */
670 if (orig_addr < PAGE_SIZE)
671 bug_type = "null-ptr-deref";
672 else if (orig_addr < TASK_SIZE)
673 bug_type = "probably user-memory-access";
674 else if (addr_in_shadow((void *)addr))
675 bug_type = "probably wild-memory-access";
676 else
677 bug_type = "maybe wild-memory-access";
678 pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type,
679 orig_addr, orig_addr + KASAN_GRANULE_SIZE - 1);
680}
681#endif